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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $38.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="Exquisite Blood" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/e/0e8ccfa7-4178-476a-a155-0ca1c98556c9.jpg?1783913874" />

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Exquisite Blood" src="https://cards.scryfall.io/large/front/0/e/0e8ccfa7-4178-476a-a155-0ca1c98556c9.jpg?1783913874" />
    </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">
                $38.77
              </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">$27.00</span>
              <span class="text-xs text-grey-text">Credit: $35.10</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-12&quot;:39.07},{&quot;2026-06-13&quot;:38.83},{&quot;2026-06-14&quot;:39.29},{&quot;2026-06-15&quot;:39.27},{&quot;2026-06-16&quot;:39.23},{&quot;2026-06-17&quot;:39.31},{&quot;2026-06-18&quot;:38.57},{&quot;2026-06-19&quot;:37.45},{&quot;2026-06-20&quot;:37.09},{&quot;2026-06-21&quot;:36.38},{&quot;2026-06-22&quot;:36.52},{&quot;2026-06-23&quot;:36.15},{&quot;2026-06-24&quot;:36.43},{&quot;2026-06-25&quot;:36.1},{&quot;2026-06-26&quot;:35.86},{&quot;2026-06-27&quot;:36.0},{&quot;2026-06-28&quot;:34.97},{&quot;2026-06-29&quot;:36.55},{&quot;2026-06-30&quot;:36.28},{&quot;2026-07-01&quot;:36.17},{&quot;2026-07-02&quot;:36.04},{&quot;2026-07-03&quot;:36.14},{&quot;2026-07-04&quot;:36.42},{&quot;2026-07-05&quot;:36.8},{&quot;2026-07-06&quot;:36.41},{&quot;2026-07-07&quot;:36.56},{&quot;2026-07-08&quot;:36.44},{&quot;2026-07-09&quot;:36.85},{&quot;2026-07-10&quot;:37.29},{&quot;2026-07-11&quot;:37.19},{&quot;2026-07-12&quot;:37.56},{&quot;2026-07-13&quot;:36.98},{&quot;2026-07-14&quot;:36.68},{&quot;2026-07-15&quot;:36.69},{&quot;2026-07-16&quot;:36.57},{&quot;2026-07-17&quot;:36.99},{&quot;2026-07-18&quot;:37.11},{&quot;2026-07-19&quot;:37.24},{&quot;2026-07-20&quot;:37.05},{&quot;2026-07-21&quot;:37.1},{&quot;2026-07-23&quot;:36.77},{&quot;2026-07-24&quot;:36.61},{&quot;2026-07-25&quot;:37.22},{&quot;2026-07-26&quot;:37.02},{&quot;2026-07-27&quot;:36.9},{&quot;2026-07-28&quot;:36.45},{&quot;2026-07-29&quot;:36.38},{&quot;2026-07-30&quot;:36.37},{&quot;2026-07-31&quot;:35.45},{&quot;2026-08-01&quot;:35.61},{&quot;2026-08-02&quot;:36.51},{&quot;2026-08-03&quot;:36.68},{&quot;2026-08-04&quot;:36.52},{&quot;2026-08-05&quot;:36.77},{&quot;2026-08-07&quot;:36.92},{&quot;2026-08-08&quot;:36.6},{&quot;2026-08-09&quot;:36.6},{&quot;2026-08-10&quot;:36.85},{&quot;2026-08-11&quot;:36.64},{&quot;2026-08-12&quot;:36.63},{&quot;2026-08-13&quot;:35.9},{&quot;2026-08-14&quot;:36.38},{&quot;2026-08-15&quot;:36.45},{&quot;2026-08-16&quot;:36.49},{&quot;2026-08-17&quot;:36.91},{&quot;2026-08-18&quot;:36.75},{&quot;2026-08-19&quot;:37.0},{&quot;2026-08-20&quot;:37.0},{&quot;2026-08-21&quot;:37.52},{&quot;2026-08-22&quot;:37.78},{&quot;2026-08-23&quot;:38.97},{&quot;2026-08-24&quot;:38.8},{&quot;2026-08-25&quot;:38.84},{&quot;2026-08-26&quot;:38.64},{&quot;2026-08-27&quot;:38.35},{&quot;2026-08-28&quot;:38.4},{&quot;2026-08-29&quot;:38.4},{&quot;2026-08-30&quot;:39.48},{&quot;2026-08-31&quot;:38.96},{&quot;2026-09-01&quot;:38.06},{&quot;2026-09-02&quot;:38.82},{&quot;2026-09-03&quot;:38.13},{&quot;2026-09-04&quot;:38.26},{&quot;2026-09-05&quot;:38.5},{&quot;2026-09-06&quot;:38.49},{&quot;2026-09-07&quot;:36.25},{&quot;2026-09-08&quot;:36.46},{&quot;2026-09-09&quot;:36.32},{&quot;2026-09-10&quot;:37.44},{&quot;2026-09-11&quot;:38.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="75322"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Charismatic Conqueror" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/5/9/599c934d-bfff-43ce-a545-6e3cde124515.jpg?1783913915" />

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Charismatic Conqueror" src="https://cards.scryfall.io/large/front/5/9/599c934d-bfff-43ce-a545-6e3cde124515.jpg?1783913915" />
    </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">
                $23.25
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:22.26},{&quot;2026-06-11&quot;:22.77},{&quot;2026-06-12&quot;:22.89},{&quot;2026-06-13&quot;:22.71},{&quot;2026-06-14&quot;:22.94},{&quot;2026-06-15&quot;:22.96},{&quot;2026-06-16&quot;:22.72},{&quot;2026-06-17&quot;:22.45},{&quot;2026-06-18&quot;:22.28},{&quot;2026-06-19&quot;:21.91},{&quot;2026-06-20&quot;:22.1},{&quot;2026-06-21&quot;:21.97},{&quot;2026-06-22&quot;:21.99},{&quot;2026-06-23&quot;:22.21},{&quot;2026-06-24&quot;:22.09},{&quot;2026-06-25&quot;:22.31},{&quot;2026-06-26&quot;:22.34},{&quot;2026-06-27&quot;:22.48},{&quot;2026-06-28&quot;:22.5},{&quot;2026-06-29&quot;:22.56},{&quot;2026-06-30&quot;:22.12},{&quot;2026-07-01&quot;:21.67},{&quot;2026-07-02&quot;:21.69},{&quot;2026-07-03&quot;:21.61},{&quot;2026-07-04&quot;:22.26},{&quot;2026-07-05&quot;:22.24},{&quot;2026-07-06&quot;:21.9},{&quot;2026-07-07&quot;:21.94},{&quot;2026-07-08&quot;:22.02},{&quot;2026-07-09&quot;:21.89},{&quot;2026-07-10&quot;:22.05},{&quot;2026-07-11&quot;:21.87},{&quot;2026-07-12&quot;:21.86},{&quot;2026-07-13&quot;:21.84},{&quot;2026-07-14&quot;:21.75},{&quot;2026-07-15&quot;:22.12},{&quot;2026-07-16&quot;:22.25},{&quot;2026-07-17&quot;:22.19},{&quot;2026-07-18&quot;:22.32},{&quot;2026-07-19&quot;:22.52},{&quot;2026-07-20&quot;:22.25},{&quot;2026-07-21&quot;:22.04},{&quot;2026-07-23&quot;:22.2},{&quot;2026-07-25&quot;:21.97},{&quot;2026-07-26&quot;:22.19},{&quot;2026-07-27&quot;:21.97},{&quot;2026-07-29&quot;:21.72},{&quot;2026-07-30&quot;:21.58},{&quot;2026-07-31&quot;:21.65},{&quot;2026-08-01&quot;:21.74},{&quot;2026-08-02&quot;:22.35},{&quot;2026-08-03&quot;:22.27},{&quot;2026-08-04&quot;:21.73},{&quot;2026-08-05&quot;:21.65},{&quot;2026-08-07&quot;:22.12},{&quot;2026-08-08&quot;:21.96},{&quot;2026-08-09&quot;:21.78},{&quot;2026-08-10&quot;:21.49},{&quot;2026-08-11&quot;:21.62},{&quot;2026-08-12&quot;:21.54},{&quot;2026-08-13&quot;:21.4},{&quot;2026-08-14&quot;:22.07},{&quot;2026-08-15&quot;:21.76},{&quot;2026-08-16&quot;:21.92},{&quot;2026-08-17&quot;:22.11},{&quot;2026-08-18&quot;:22.14},{&quot;2026-08-19&quot;:22.25},{&quot;2026-08-20&quot;:22.25},{&quot;2026-08-21&quot;:22.7},{&quot;2026-08-22&quot;:23.26},{&quot;2026-08-23&quot;:23.5},{&quot;2026-08-24&quot;:23.58},{&quot;2026-08-25&quot;:23.58},{&quot;2026-08-26&quot;:22.93},{&quot;2026-08-27&quot;:22.9},{&quot;2026-08-28&quot;:23.8},{&quot;2026-08-29&quot;:23.8},{&quot;2026-08-30&quot;:24.43},{&quot;2026-08-31&quot;:23.76},{&quot;2026-09-01&quot;:23.76},{&quot;2026-09-02&quot;:23.76},{&quot;2026-09-03&quot;:23.52},{&quot;2026-09-04&quot;:23.45},{&quot;2026-09-05&quot;:22.86},{&quot;2026-09-06&quot;:23.2},{&quot;2026-09-07&quot;:22.92},{&quot;2026-09-08&quot;:23.05},{&quot;2026-09-09&quot;:22.39},{&quot;2026-09-10&quot;:22.67},{&quot;2026-09-11&quot;:23.25}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $7.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="Blade of the Bloodchief" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/3/4/34e7bebf-1844-476c-a947-978393908fa2.jpg?1783913842" />

        <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">
            Blade of the Bloodchief
        </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="Blade of the Bloodchief" src="https://cards.scryfall.io/large/front/3/4/34e7bebf-1844-476c-a947-978393908fa2.jpg?1783913842" />
    </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.43
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:3.88},{&quot;2026-06-14&quot;:3.9},{&quot;2026-06-15&quot;:4.02},{&quot;2026-06-16&quot;:4.27},{&quot;2026-06-17&quot;:3.8},{&quot;2026-06-18&quot;:3.73},{&quot;2026-06-19&quot;:3.67},{&quot;2026-06-20&quot;:3.4},{&quot;2026-06-21&quot;:3.46},{&quot;2026-06-22&quot;:3.34},{&quot;2026-06-23&quot;:3.48},{&quot;2026-06-24&quot;:3.63},{&quot;2026-06-25&quot;:3.56},{&quot;2026-06-26&quot;:3.52},{&quot;2026-06-27&quot;:3.54},{&quot;2026-06-28&quot;:3.53},{&quot;2026-06-29&quot;:3.68},{&quot;2026-06-30&quot;:3.8},{&quot;2026-07-01&quot;:3.85},{&quot;2026-07-02&quot;:3.83},{&quot;2026-07-03&quot;:3.66},{&quot;2026-07-04&quot;:3.68},{&quot;2026-07-05&quot;:3.67},{&quot;2026-07-06&quot;:3.72},{&quot;2026-07-07&quot;:3.89},{&quot;2026-07-08&quot;:3.85},{&quot;2026-07-09&quot;:3.83},{&quot;2026-07-10&quot;:3.81},{&quot;2026-07-11&quot;:3.87},{&quot;2026-07-12&quot;:4.0},{&quot;2026-07-13&quot;:3.98},{&quot;2026-07-14&quot;:3.89},{&quot;2026-07-15&quot;:3.91},{&quot;2026-07-16&quot;:4.0},{&quot;2026-07-17&quot;:3.78},{&quot;2026-07-18&quot;:3.82},{&quot;2026-07-19&quot;:3.95},{&quot;2026-07-20&quot;:3.99},{&quot;2026-07-21&quot;:4.05},{&quot;2026-07-22&quot;:4.01},{&quot;2026-07-23&quot;:4.12},{&quot;2026-07-24&quot;:4.34},{&quot;2026-07-25&quot;:4.34},{&quot;2026-07-26&quot;:4.3},{&quot;2026-07-27&quot;:4.29},{&quot;2026-07-28&quot;:4.36},{&quot;2026-07-29&quot;:4.52},{&quot;2026-07-30&quot;:4.77},{&quot;2026-07-31&quot;:5.04},{&quot;2026-08-01&quot;:5.11},{&quot;2026-08-02&quot;:5.18},{&quot;2026-08-03&quot;:5.18},{&quot;2026-08-04&quot;:5.15},{&quot;2026-08-05&quot;:5.13},{&quot;2026-08-07&quot;:5.25},{&quot;2026-08-08&quot;:5.12},{&quot;2026-08-09&quot;:5.1},{&quot;2026-08-10&quot;:5.1},{&quot;2026-08-11&quot;:5.19},{&quot;2026-08-12&quot;:5.21},{&quot;2026-08-13&quot;:5.52},{&quot;2026-08-14&quot;:5.49},{&quot;2026-08-15&quot;:5.43},{&quot;2026-08-16&quot;:5.46},{&quot;2026-08-17&quot;:6.14},{&quot;2026-08-18&quot;:6.37},{&quot;2026-08-19&quot;:6.45},{&quot;2026-08-20&quot;:6.36},{&quot;2026-08-21&quot;:6.42},{&quot;2026-08-22&quot;:6.2},{&quot;2026-08-23&quot;:6.08},{&quot;2026-08-24&quot;:6.21},{&quot;2026-08-25&quot;:6.2},{&quot;2026-08-26&quot;:6.49},{&quot;2026-08-27&quot;:6.42},{&quot;2026-08-28&quot;:6.64},{&quot;2026-08-29&quot;:6.64},{&quot;2026-08-30&quot;:7.04},{&quot;2026-08-31&quot;:7.47},{&quot;2026-09-01&quot;:7.79},{&quot;2026-09-02&quot;:7.7},{&quot;2026-09-03&quot;:7.7},{&quot;2026-09-04&quot;:7.61},{&quot;2026-09-05&quot;:7.75},{&quot;2026-09-06&quot;:7.57},{&quot;2026-09-07&quot;:7.63},{&quot;2026-09-08&quot;:7.63},{&quot;2026-09-09&quot;:7.44},{&quot;2026-09-10&quot;:7.63},{&quot;2026-09-11&quot;:7.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="75326"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $4.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="Elenda&#39;s Hierophant" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/1/d12f728a-1bbb-4bee-96d4-d721292997ba.jpg?1783913913" />

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

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Elenda&#39;s Hierophant" src="https://cards.scryfall.io/large/front/d/1/d12f728a-1bbb-4bee-96d4-d721292997ba.jpg?1783913913" />
    </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.81
              </span>

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

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$2.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;normal&quot;:[{&quot;2026-06-11&quot;:4.78},{&quot;2026-06-12&quot;:4.68},{&quot;2026-06-13&quot;:4.67},{&quot;2026-06-14&quot;:4.67},{&quot;2026-06-15&quot;:4.65},{&quot;2026-06-16&quot;:4.55},{&quot;2026-06-17&quot;:4.79},{&quot;2026-06-18&quot;:4.87},{&quot;2026-06-19&quot;:5.09},{&quot;2026-06-20&quot;:5.0},{&quot;2026-06-21&quot;:5.01},{&quot;2026-06-22&quot;:4.87},{&quot;2026-06-23&quot;:4.91},{&quot;2026-06-24&quot;:4.84},{&quot;2026-06-25&quot;:4.66},{&quot;2026-06-26&quot;:4.65},{&quot;2026-06-27&quot;:4.64},{&quot;2026-06-28&quot;:4.54},{&quot;2026-06-29&quot;:4.57},{&quot;2026-06-30&quot;:4.42},{&quot;2026-07-01&quot;:4.34},{&quot;2026-07-02&quot;:4.24},{&quot;2026-07-03&quot;:4.25},{&quot;2026-07-04&quot;:4.24},{&quot;2026-07-05&quot;:4.21},{&quot;2026-07-06&quot;:4.14},{&quot;2026-07-07&quot;:4.14},{&quot;2026-07-08&quot;:4.12},{&quot;2026-07-09&quot;:4.11},{&quot;2026-07-10&quot;:4.12},{&quot;2026-07-11&quot;:4.21},{&quot;2026-07-12&quot;:4.22},{&quot;2026-07-13&quot;:4.23},{&quot;2026-07-14&quot;:4.22},{&quot;2026-07-15&quot;:4.13},{&quot;2026-07-16&quot;:4.17},{&quot;2026-07-17&quot;:4.29},{&quot;2026-07-18&quot;:4.28},{&quot;2026-07-19&quot;:4.38},{&quot;2026-07-20&quot;:4.39},{&quot;2026-07-21&quot;:4.54},{&quot;2026-07-23&quot;:4.81},{&quot;2026-07-25&quot;:4.96},{&quot;2026-07-26&quot;:4.94},{&quot;2026-07-27&quot;:4.88},{&quot;2026-07-28&quot;:4.78},{&quot;2026-07-29&quot;:4.64},{&quot;2026-07-30&quot;:4.61},{&quot;2026-07-31&quot;:4.62},{&quot;2026-08-01&quot;:4.65},{&quot;2026-08-02&quot;:4.64},{&quot;2026-08-03&quot;:4.76},{&quot;2026-08-04&quot;:4.83},{&quot;2026-08-05&quot;:4.81},{&quot;2026-08-07&quot;:4.81},{&quot;2026-08-08&quot;:4.78},{&quot;2026-08-09&quot;:4.7},{&quot;2026-08-10&quot;:4.88},{&quot;2026-08-11&quot;:5.01},{&quot;2026-08-12&quot;:4.83},{&quot;2026-08-13&quot;:4.74},{&quot;2026-08-14&quot;:4.67},{&quot;2026-08-15&quot;:4.55},{&quot;2026-08-16&quot;:4.6},{&quot;2026-08-17&quot;:4.4},{&quot;2026-08-18&quot;:4.4},{&quot;2026-08-19&quot;:4.41},{&quot;2026-08-20&quot;:4.41},{&quot;2026-08-21&quot;:4.03},{&quot;2026-08-22&quot;:3.98},{&quot;2026-08-23&quot;:3.97},{&quot;2026-08-24&quot;:4.05},{&quot;2026-08-25&quot;:4.03},{&quot;2026-08-26&quot;:4.18},{&quot;2026-08-27&quot;:4.25},{&quot;2026-08-28&quot;:4.35},{&quot;2026-08-29&quot;:4.35},{&quot;2026-08-30&quot;:4.46},{&quot;2026-08-31&quot;:4.47},{&quot;2026-09-01&quot;:4.68},{&quot;2026-09-02&quot;:4.86},{&quot;2026-09-03&quot;:4.67},{&quot;2026-09-04&quot;:4.79},{&quot;2026-09-05&quot;:5.07},{&quot;2026-09-06&quot;:5.01},{&quot;2026-09-07&quot;:5.0},{&quot;2026-09-08&quot;:4.78},{&quot;2026-09-09&quot;:4.65},{&quot;2026-09-10&quot;:4.67},{&quot;2026-09-11&quot;:4.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="75360"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $3.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="Master of Dark Rites" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/6/3/6394a522-37bb-4cf3-b434-5121c8000ac6.jpg?1783913910" />

        <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">
            Master of Dark Rites
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Master of Dark Rites" src="https://cards.scryfall.io/large/front/6/3/6394a522-37bb-4cf3-b434-5121c8000ac6.jpg?1783913910" />
    </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.79
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:3.47},{&quot;2026-06-14&quot;:3.37},{&quot;2026-06-15&quot;:3.53},{&quot;2026-06-16&quot;:3.37},{&quot;2026-06-17&quot;:3.23},{&quot;2026-06-18&quot;:3.08},{&quot;2026-06-19&quot;:3.08},{&quot;2026-06-20&quot;:3.04},{&quot;2026-06-21&quot;:3.05},{&quot;2026-06-22&quot;:2.86},{&quot;2026-06-23&quot;:2.84},{&quot;2026-06-24&quot;:2.79},{&quot;2026-06-25&quot;:2.69},{&quot;2026-06-26&quot;:2.81},{&quot;2026-06-27&quot;:2.77},{&quot;2026-06-28&quot;:2.89},{&quot;2026-06-29&quot;:2.92},{&quot;2026-06-30&quot;:2.88},{&quot;2026-07-01&quot;:2.92},{&quot;2026-07-02&quot;:2.97},{&quot;2026-07-03&quot;:3.0},{&quot;2026-07-04&quot;:2.99},{&quot;2026-07-05&quot;:3.07},{&quot;2026-07-06&quot;:3.28},{&quot;2026-07-07&quot;:3.26},{&quot;2026-07-08&quot;:3.23},{&quot;2026-07-09&quot;:3.49},{&quot;2026-07-10&quot;:3.47},{&quot;2026-07-11&quot;:3.33},{&quot;2026-07-12&quot;:3.37},{&quot;2026-07-13&quot;:3.47},{&quot;2026-07-14&quot;:3.67},{&quot;2026-07-15&quot;:3.77},{&quot;2026-07-16&quot;:3.6},{&quot;2026-07-17&quot;:3.41},{&quot;2026-07-18&quot;:3.43},{&quot;2026-07-19&quot;:3.44},{&quot;2026-07-20&quot;:3.25},{&quot;2026-07-21&quot;:3.23},{&quot;2026-07-22&quot;:3.34},{&quot;2026-07-23&quot;:3.41},{&quot;2026-07-24&quot;:3.57},{&quot;2026-07-25&quot;:3.53},{&quot;2026-07-26&quot;:3.53},{&quot;2026-07-27&quot;:3.67},{&quot;2026-07-28&quot;:3.74},{&quot;2026-07-29&quot;:3.78},{&quot;2026-07-30&quot;:3.75},{&quot;2026-07-31&quot;:3.61},{&quot;2026-08-01&quot;:3.76},{&quot;2026-08-02&quot;:3.65},{&quot;2026-08-03&quot;:3.53},{&quot;2026-08-04&quot;:3.42},{&quot;2026-08-05&quot;:3.39},{&quot;2026-08-07&quot;:3.25},{&quot;2026-08-08&quot;:3.21},{&quot;2026-08-09&quot;:3.28},{&quot;2026-08-10&quot;:3.28},{&quot;2026-08-11&quot;:3.34},{&quot;2026-08-12&quot;:3.23},{&quot;2026-08-13&quot;:3.28},{&quot;2026-08-14&quot;:3.26},{&quot;2026-08-15&quot;:3.13},{&quot;2026-08-16&quot;:3.1},{&quot;2026-08-17&quot;:3.05},{&quot;2026-08-18&quot;:3.03},{&quot;2026-08-19&quot;:3.42},{&quot;2026-08-20&quot;:3.39},{&quot;2026-08-21&quot;:3.27},{&quot;2026-08-22&quot;:3.39},{&quot;2026-08-23&quot;:3.41},{&quot;2026-08-24&quot;:3.34},{&quot;2026-08-25&quot;:3.05},{&quot;2026-08-26&quot;:3.09},{&quot;2026-08-27&quot;:3.13},{&quot;2026-08-28&quot;:2.99},{&quot;2026-08-29&quot;:2.99},{&quot;2026-08-30&quot;:3.4},{&quot;2026-08-31&quot;:3.52},{&quot;2026-09-01&quot;:3.53},{&quot;2026-09-02&quot;:3.85},{&quot;2026-09-03&quot;:3.9},{&quot;2026-09-04&quot;:4.29},{&quot;2026-09-05&quot;:5.21},{&quot;2026-09-06&quot;:5.54},{&quot;2026-09-07&quot;:5.18},{&quot;2026-09-08&quot;:4.72},{&quot;2026-09-09&quot;:4.13},{&quot;2026-09-10&quot;:4.21},{&quot;2026-09-11&quot;:3.79}]}"
        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="75527"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Welcoming Vampire" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/e/2ea7710e-2eae-47e7-bcb1-3465f8b62728.jpg?1783913892" />

        <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">
            Welcoming Vampire
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Creature — Vampire</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="Welcoming Vampire" src="https://cards.scryfall.io/large/front/2/e/2ea7710e-2eae-47e7-bcb1-3465f8b62728.jpg?1783913892" />
    </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.73
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:3.21},{&quot;2026-06-11&quot;:3.12},{&quot;2026-06-12&quot;:2.98},{&quot;2026-06-13&quot;:3.03},{&quot;2026-06-14&quot;:3.23},{&quot;2026-06-15&quot;:3.26},{&quot;2026-06-16&quot;:3.36},{&quot;2026-06-17&quot;:3.33},{&quot;2026-06-18&quot;:3.41},{&quot;2026-06-19&quot;:3.48},{&quot;2026-06-20&quot;:3.38},{&quot;2026-06-21&quot;:3.42},{&quot;2026-06-22&quot;:3.62},{&quot;2026-06-23&quot;:3.68},{&quot;2026-06-24&quot;:3.68},{&quot;2026-06-25&quot;:3.69},{&quot;2026-06-26&quot;:3.65},{&quot;2026-06-27&quot;:3.78},{&quot;2026-06-28&quot;:3.64},{&quot;2026-06-29&quot;:3.63},{&quot;2026-06-30&quot;:3.62},{&quot;2026-07-01&quot;:3.59},{&quot;2026-07-02&quot;:3.47},{&quot;2026-07-03&quot;:3.47},{&quot;2026-07-04&quot;:3.44},{&quot;2026-07-05&quot;:3.45},{&quot;2026-07-06&quot;:3.53},{&quot;2026-07-07&quot;:3.55},{&quot;2026-07-08&quot;:3.61},{&quot;2026-07-09&quot;:3.61},{&quot;2026-07-10&quot;:3.84},{&quot;2026-07-11&quot;:3.88},{&quot;2026-07-12&quot;:3.96},{&quot;2026-07-13&quot;:3.96},{&quot;2026-07-14&quot;:3.96},{&quot;2026-07-15&quot;:3.76},{&quot;2026-07-16&quot;:3.66},{&quot;2026-07-17&quot;:3.62},{&quot;2026-07-18&quot;:3.51},{&quot;2026-07-19&quot;:3.62},{&quot;2026-07-20&quot;:3.58},{&quot;2026-07-21&quot;:3.71},{&quot;2026-07-23&quot;:3.69},{&quot;2026-07-25&quot;:3.74},{&quot;2026-07-26&quot;:3.75},{&quot;2026-07-27&quot;:3.52},{&quot;2026-07-29&quot;:3.65},{&quot;2026-07-30&quot;:3.73},{&quot;2026-07-31&quot;:3.88},{&quot;2026-08-01&quot;:4.07},{&quot;2026-08-02&quot;:3.97},{&quot;2026-08-03&quot;:3.97},{&quot;2026-08-04&quot;:3.99},{&quot;2026-08-05&quot;:3.99},{&quot;2026-08-07&quot;:4.02},{&quot;2026-08-08&quot;:3.75},{&quot;2026-08-09&quot;:3.72},{&quot;2026-08-10&quot;:3.41},{&quot;2026-08-11&quot;:3.69},{&quot;2026-08-12&quot;:3.85},{&quot;2026-08-13&quot;:3.93},{&quot;2026-08-14&quot;:3.77},{&quot;2026-08-15&quot;:3.83},{&quot;2026-08-16&quot;:3.83},{&quot;2026-08-17&quot;:3.55},{&quot;2026-08-18&quot;:3.51},{&quot;2026-08-19&quot;:3.57},{&quot;2026-08-20&quot;:3.57},{&quot;2026-08-21&quot;:3.94},{&quot;2026-08-22&quot;:3.94},{&quot;2026-08-23&quot;:3.95},{&quot;2026-08-24&quot;:4.01},{&quot;2026-08-25&quot;:4.01},{&quot;2026-08-26&quot;:3.99},{&quot;2026-08-27&quot;:3.99},{&quot;2026-08-28&quot;:3.78},{&quot;2026-08-29&quot;:3.78},{&quot;2026-08-30&quot;:3.67},{&quot;2026-08-31&quot;:3.78},{&quot;2026-09-01&quot;:3.78},{&quot;2026-09-02&quot;:3.67},{&quot;2026-09-03&quot;:3.69},{&quot;2026-09-04&quot;:3.77},{&quot;2026-09-05&quot;:3.81},{&quot;2026-09-06&quot;:4.01},{&quot;2026-09-07&quot;:3.81},{&quot;2026-09-08&quot;:3.66},{&quot;2026-09-09&quot;:3.66},{&quot;2026-09-10&quot;:3.63},{&quot;2026-09-11&quot;:3.73}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Blood Artist" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/7/b7f1c316-cf2f-4bbf-89a1-79c8043bdd96.jpg?1783913878" />

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Blood Artist" src="https://cards.scryfall.io/large/front/b/7/b7f1c316-cf2f-4bbf-89a1-79c8043bdd96.jpg?1783913878" />
    </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.47
              </span>

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

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$1.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;normal&quot;:[{&quot;2026-06-13&quot;:3.28},{&quot;2026-06-14&quot;:3.25},{&quot;2026-06-15&quot;:3.65},{&quot;2026-06-16&quot;:3.65},{&quot;2026-06-17&quot;:3.65},{&quot;2026-06-18&quot;:3.45},{&quot;2026-06-19&quot;:3.57},{&quot;2026-06-20&quot;:3.45},{&quot;2026-06-21&quot;:3.45},{&quot;2026-06-22&quot;:3.06},{&quot;2026-06-23&quot;:3.18},{&quot;2026-06-24&quot;:3.15},{&quot;2026-06-25&quot;:3.14},{&quot;2026-06-26&quot;:3.04},{&quot;2026-06-27&quot;:2.91},{&quot;2026-06-28&quot;:2.61},{&quot;2026-06-29&quot;:3.06},{&quot;2026-06-30&quot;:3.31},{&quot;2026-07-01&quot;:3.34},{&quot;2026-07-02&quot;:3.34},{&quot;2026-07-03&quot;:3.26},{&quot;2026-07-04&quot;:3.19},{&quot;2026-07-05&quot;:3.18},{&quot;2026-07-06&quot;:2.87},{&quot;2026-07-07&quot;:2.96},{&quot;2026-07-08&quot;:2.95},{&quot;2026-07-09&quot;:3.16},{&quot;2026-07-10&quot;:3.13},{&quot;2026-07-11&quot;:3.12},{&quot;2026-07-12&quot;:3.28},{&quot;2026-07-13&quot;:3.21},{&quot;2026-07-14&quot;:3.08},{&quot;2026-07-15&quot;:3.12},{&quot;2026-07-16&quot;:3.05},{&quot;2026-07-17&quot;:3.15},{&quot;2026-07-18&quot;:3.19},{&quot;2026-07-19&quot;:3.24},{&quot;2026-07-20&quot;:3.11},{&quot;2026-07-21&quot;:3.12},{&quot;2026-07-22&quot;:3.07},{&quot;2026-07-23&quot;:3.0},{&quot;2026-07-24&quot;:2.96},{&quot;2026-07-25&quot;:2.85},{&quot;2026-07-26&quot;:2.85},{&quot;2026-07-27&quot;:2.82},{&quot;2026-07-28&quot;:3.2},{&quot;2026-07-29&quot;:3.24},{&quot;2026-07-30&quot;:3.24},{&quot;2026-07-31&quot;:3.41},{&quot;2026-08-01&quot;:3.31},{&quot;2026-08-02&quot;:3.31},{&quot;2026-08-03&quot;:3.27},{&quot;2026-08-04&quot;:3.37},{&quot;2026-08-05&quot;:3.52},{&quot;2026-08-07&quot;:3.73},{&quot;2026-08-08&quot;:3.73},{&quot;2026-08-09&quot;:3.64},{&quot;2026-08-10&quot;:3.56},{&quot;2026-08-11&quot;:3.31},{&quot;2026-08-12&quot;:3.29},{&quot;2026-08-13&quot;:3.28},{&quot;2026-08-14&quot;:3.13},{&quot;2026-08-15&quot;:3.03},{&quot;2026-08-16&quot;:2.91},{&quot;2026-08-17&quot;:2.79},{&quot;2026-08-18&quot;:2.75},{&quot;2026-08-19&quot;:2.71},{&quot;2026-08-20&quot;:2.57},{&quot;2026-08-21&quot;:2.54},{&quot;2026-08-22&quot;:2.8},{&quot;2026-08-23&quot;:2.89},{&quot;2026-08-24&quot;:2.93},{&quot;2026-08-25&quot;:3.08},{&quot;2026-08-26&quot;:3.13},{&quot;2026-08-27&quot;:3.19},{&quot;2026-08-28&quot;:3.19},{&quot;2026-08-29&quot;:3.19},{&quot;2026-08-30&quot;:3.57},{&quot;2026-08-31&quot;:3.64},{&quot;2026-09-01&quot;:3.59},{&quot;2026-09-02&quot;:3.56},{&quot;2026-09-03&quot;:3.49},{&quot;2026-09-04&quot;:3.4},{&quot;2026-09-05&quot;:3.15},{&quot;2026-09-06&quot;:3.16},{&quot;2026-09-07&quot;:3.05},{&quot;2026-09-08&quot;:3.25},{&quot;2026-09-09&quot;:3.37},{&quot;2026-09-10&quot;:3.46},{&quot;2026-09-11&quot;:3.47}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Swiftfoot Boots" src="https://cards.scryfall.io/large/front/a/3/a3b1da84-9c26-4c3c-b90f-43a0b2b20103.jpg?1783913836" />
    </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.96
              </span>

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

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$1.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-12&quot;:2.54},{&quot;2026-06-13&quot;:2.71},{&quot;2026-06-14&quot;:2.62},{&quot;2026-06-15&quot;:3.28},{&quot;2026-06-16&quot;:3.55},{&quot;2026-06-17&quot;:3.5},{&quot;2026-06-18&quot;:3.24},{&quot;2026-06-19&quot;:3.2},{&quot;2026-06-20&quot;:3.05},{&quot;2026-06-21&quot;:2.99},{&quot;2026-06-22&quot;:2.87},{&quot;2026-06-23&quot;:2.79},{&quot;2026-06-24&quot;:2.82},{&quot;2026-06-25&quot;:2.76},{&quot;2026-06-26&quot;:2.71},{&quot;2026-06-27&quot;:2.54},{&quot;2026-06-28&quot;:2.59},{&quot;2026-06-29&quot;:2.66},{&quot;2026-06-30&quot;:2.72},{&quot;2026-07-01&quot;:2.79},{&quot;2026-07-02&quot;:2.86},{&quot;2026-07-03&quot;:2.79},{&quot;2026-07-04&quot;:2.78},{&quot;2026-07-05&quot;:3.57},{&quot;2026-07-06&quot;:3.6},{&quot;2026-07-07&quot;:3.37},{&quot;2026-07-08&quot;:3.03},{&quot;2026-07-09&quot;:2.99},{&quot;2026-07-10&quot;:2.88},{&quot;2026-07-11&quot;:2.87},{&quot;2026-07-12&quot;:2.91},{&quot;2026-07-13&quot;:3.47},{&quot;2026-07-14&quot;:3.47},{&quot;2026-07-15&quot;:3.32},{&quot;2026-07-16&quot;:3.32},{&quot;2026-07-17&quot;:3.08},{&quot;2026-07-18&quot;:3.06},{&quot;2026-07-19&quot;:3.28},{&quot;2026-07-20&quot;:3.52},{&quot;2026-07-21&quot;:3.31},{&quot;2026-07-23&quot;:3.22},{&quot;2026-07-24&quot;:3.09},{&quot;2026-07-25&quot;:3.04},{&quot;2026-07-26&quot;:3.04},{&quot;2026-07-27&quot;:2.86},{&quot;2026-07-28&quot;:3.32},{&quot;2026-07-29&quot;:3.4},{&quot;2026-07-30&quot;:3.24},{&quot;2026-07-31&quot;:3.22},{&quot;2026-08-01&quot;:3.18},{&quot;2026-08-02&quot;:3.08},{&quot;2026-08-03&quot;:2.98},{&quot;2026-08-04&quot;:3.19},{&quot;2026-08-05&quot;:3.32},{&quot;2026-08-07&quot;:3.33},{&quot;2026-08-08&quot;:3.45},{&quot;2026-08-09&quot;:3.38},{&quot;2026-08-10&quot;:3.43},{&quot;2026-08-11&quot;:3.6},{&quot;2026-08-12&quot;:3.53},{&quot;2026-08-13&quot;:3.43},{&quot;2026-08-14&quot;:3.39},{&quot;2026-08-15&quot;:3.37},{&quot;2026-08-16&quot;:3.36},{&quot;2026-08-17&quot;:2.76},{&quot;2026-08-18&quot;:2.74},{&quot;2026-08-19&quot;:2.61},{&quot;2026-08-20&quot;:2.61},{&quot;2026-08-21&quot;:2.83},{&quot;2026-08-22&quot;:2.69},{&quot;2026-08-23&quot;:2.69},{&quot;2026-08-24&quot;:2.75},{&quot;2026-08-25&quot;:2.74},{&quot;2026-08-26&quot;:2.83},{&quot;2026-08-27&quot;:2.83},{&quot;2026-08-28&quot;:2.89},{&quot;2026-08-29&quot;:2.89},{&quot;2026-08-30&quot;:2.65},{&quot;2026-08-31&quot;:2.49},{&quot;2026-09-01&quot;:2.49},{&quot;2026-09-02&quot;:2.44},{&quot;2026-09-03&quot;:2.49},{&quot;2026-09-04&quot;:2.54},{&quot;2026-09-05&quot;:2.61},{&quot;2026-09-06&quot;:2.6},{&quot;2026-09-07&quot;:2.77},{&quot;2026-09-08&quot;:2.69},{&quot;2026-09-09&quot;:2.86},{&quot;2026-09-10&quot;:3.06},{&quot;2026-09-11&quot;:2.96}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

        <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">
            Cordial Vampire
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Cordial Vampire" src="https://cards.scryfall.io/large/front/0/d/0d91e61d-e3bf-4ddc-9f01-18b1abe35a61.jpg?1783913876" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

                <span class="text-xs text-accent-50">
                  ↑
                  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;normal&quot;:[{&quot;2026-06-08&quot;:1.84},{&quot;2026-06-10&quot;:1.76},{&quot;2026-06-11&quot;:1.81},{&quot;2026-06-12&quot;:1.53},{&quot;2026-06-13&quot;:1.58},{&quot;2026-06-14&quot;:1.78},{&quot;2026-06-15&quot;:1.93},{&quot;2026-06-16&quot;:1.99},{&quot;2026-06-17&quot;:1.99},{&quot;2026-06-18&quot;:2.0},{&quot;2026-06-19&quot;:2.01},{&quot;2026-06-20&quot;:2.0},{&quot;2026-06-21&quot;:2.01},{&quot;2026-06-22&quot;:2.13},{&quot;2026-06-24&quot;:2.18},{&quot;2026-06-25&quot;:2.24},{&quot;2026-06-26&quot;:2.29},{&quot;2026-06-27&quot;:2.19},{&quot;2026-06-28&quot;:2.17},{&quot;2026-06-29&quot;:2.11},{&quot;2026-06-30&quot;:2.07},{&quot;2026-07-01&quot;:2.01},{&quot;2026-07-02&quot;:1.98},{&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;:1.86},{&quot;2026-07-07&quot;:1.89},{&quot;2026-07-08&quot;:1.89},{&quot;2026-07-09&quot;:1.91},{&quot;2026-07-10&quot;:1.91},{&quot;2026-07-11&quot;:1.93},{&quot;2026-07-12&quot;:1.96},{&quot;2026-07-13&quot;:1.97},{&quot;2026-07-14&quot;:2.02},{&quot;2026-07-15&quot;:2.04},{&quot;2026-07-16&quot;:2.02},{&quot;2026-07-17&quot;:2.09},{&quot;2026-07-18&quot;:2.0},{&quot;2026-07-19&quot;:2.08},{&quot;2026-07-20&quot;:1.98},{&quot;2026-07-21&quot;:1.91},{&quot;2026-07-23&quot;:1.89},{&quot;2026-07-25&quot;:1.86},{&quot;2026-07-26&quot;:1.91},{&quot;2026-07-27&quot;:1.99},{&quot;2026-07-29&quot;:2.21},{&quot;2026-07-30&quot;:2.3},{&quot;2026-07-31&quot;:2.27},{&quot;2026-08-01&quot;:2.24},{&quot;2026-08-02&quot;:2.32},{&quot;2026-08-03&quot;:2.19},{&quot;2026-08-04&quot;:2.08},{&quot;2026-08-05&quot;:1.88},{&quot;2026-08-07&quot;:1.8},{&quot;2026-08-08&quot;:1.87},{&quot;2026-08-09&quot;:1.95},{&quot;2026-08-10&quot;:2.0},{&quot;2026-08-11&quot;:2.0},{&quot;2026-08-12&quot;:1.97},{&quot;2026-08-13&quot;:1.99},{&quot;2026-08-14&quot;:1.98},{&quot;2026-08-15&quot;:1.98},{&quot;2026-08-16&quot;:1.98},{&quot;2026-08-17&quot;:1.8},{&quot;2026-08-18&quot;:1.57},{&quot;2026-08-19&quot;:1.58},{&quot;2026-08-20&quot;:1.58},{&quot;2026-08-21&quot;:1.69},{&quot;2026-08-22&quot;:1.84},{&quot;2026-08-23&quot;:1.97},{&quot;2026-08-24&quot;:2.13},{&quot;2026-08-25&quot;:2.13},{&quot;2026-08-26&quot;:2.16},{&quot;2026-08-27&quot;:2.03},{&quot;2026-08-28&quot;:2.05},{&quot;2026-08-29&quot;:2.05},{&quot;2026-08-30&quot;:1.87},{&quot;2026-08-31&quot;:1.82},{&quot;2026-09-01&quot;:1.82},{&quot;2026-09-02&quot;:2.12},{&quot;2026-09-03&quot;:2.21},{&quot;2026-09-04&quot;:2.22},{&quot;2026-09-05&quot;:2.14},{&quot;2026-09-06&quot;:2.15},{&quot;2026-09-07&quot;:2.16},{&quot;2026-09-08&quot;:2.33},{&quot;2026-09-09&quot;:2.46},{&quot;2026-09-10&quot;:2.39},{&quot;2026-09-11&quot;:2.32}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $2.01
          </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="Damn" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/4/84056124-1a6f-4274-bee2-74cf0debddb5.jpg?1783913875" />

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Damn" src="https://cards.scryfall.io/large/front/8/4/84056124-1a6f-4274-bee2-74cf0debddb5.jpg?1783913875" />
    </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.01
              </span>

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

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$1.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-08&quot;:2.37},{&quot;2026-06-10&quot;:2.53},{&quot;2026-06-11&quot;:2.55},{&quot;2026-06-12&quot;:2.45},{&quot;2026-06-13&quot;:2.43},{&quot;2026-06-14&quot;:2.55},{&quot;2026-06-15&quot;:2.53},{&quot;2026-06-16&quot;:2.47},{&quot;2026-06-17&quot;:2.58},{&quot;2026-06-18&quot;:2.69},{&quot;2026-06-19&quot;:2.85},{&quot;2026-06-20&quot;:2.73},{&quot;2026-06-21&quot;:2.96},{&quot;2026-06-22&quot;:2.97},{&quot;2026-06-24&quot;:2.91},{&quot;2026-06-25&quot;:3.04},{&quot;2026-06-26&quot;:3.04},{&quot;2026-06-27&quot;:3.06},{&quot;2026-06-28&quot;:3.06},{&quot;2026-06-29&quot;:3.09},{&quot;2026-06-30&quot;:3.1},{&quot;2026-07-01&quot;:2.91},{&quot;2026-07-02&quot;:2.72},{&quot;2026-07-03&quot;:2.72},{&quot;2026-07-04&quot;:2.85},{&quot;2026-07-05&quot;:2.7},{&quot;2026-07-06&quot;:2.5},{&quot;2026-07-07&quot;:2.49},{&quot;2026-07-08&quot;:2.5},{&quot;2026-07-09&quot;:2.5},{&quot;2026-07-10&quot;:2.47},{&quot;2026-07-11&quot;:2.33},{&quot;2026-07-12&quot;:2.21},{&quot;2026-07-13&quot;:2.14},{&quot;2026-07-14&quot;:2.07},{&quot;2026-07-15&quot;:1.89},{&quot;2026-07-16&quot;:1.89},{&quot;2026-07-17&quot;:1.87},{&quot;2026-07-18&quot;:1.84},{&quot;2026-07-19&quot;:1.8},{&quot;2026-07-20&quot;:1.78},{&quot;2026-07-21&quot;:1.81},{&quot;2026-07-23&quot;:1.77},{&quot;2026-07-25&quot;:1.79},{&quot;2026-07-26&quot;:1.78},{&quot;2026-07-27&quot;:1.78},{&quot;2026-07-29&quot;:1.8},{&quot;2026-07-30&quot;:1.81},{&quot;2026-07-31&quot;:1.82},{&quot;2026-08-01&quot;:1.82},{&quot;2026-08-02&quot;:1.86},{&quot;2026-08-03&quot;:1.87},{&quot;2026-08-04&quot;:2.02},{&quot;2026-08-05&quot;:1.98},{&quot;2026-08-07&quot;:2.02},{&quot;2026-08-08&quot;:2.02},{&quot;2026-08-09&quot;:2.02},{&quot;2026-08-10&quot;:2.02},{&quot;2026-08-11&quot;:1.99},{&quot;2026-08-12&quot;:1.97},{&quot;2026-08-13&quot;:1.97},{&quot;2026-08-14&quot;:2.07},{&quot;2026-08-15&quot;:1.92},{&quot;2026-08-16&quot;:2.0},{&quot;2026-08-17&quot;:2.0},{&quot;2026-08-18&quot;:1.96},{&quot;2026-08-19&quot;:2.05},{&quot;2026-08-20&quot;:2.05},{&quot;2026-08-21&quot;:2.02},{&quot;2026-08-22&quot;:1.98},{&quot;2026-08-23&quot;:1.96},{&quot;2026-08-24&quot;:2.02},{&quot;2026-08-25&quot;:2.02},{&quot;2026-08-26&quot;:1.94},{&quot;2026-08-27&quot;:1.91},{&quot;2026-08-28&quot;:1.95},{&quot;2026-08-29&quot;:1.95},{&quot;2026-08-30&quot;:2.05},{&quot;2026-08-31&quot;:2.13},{&quot;2026-09-01&quot;:2.13},{&quot;2026-09-02&quot;:2.23},{&quot;2026-09-03&quot;:2.26},{&quot;2026-09-04&quot;:2.32},{&quot;2026-09-05&quot;:2.3},{&quot;2026-09-06&quot;:2.22},{&quot;2026-09-07&quot;:2.0},{&quot;2026-09-08&quot;:1.95},{&quot;2026-09-09&quot;:2.05},{&quot;2026-09-10&quot;:2.09},{&quot;2026-09-11&quot;:2.01}]}"
        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="75884"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-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">
            Cruel Celebrant
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Cruel Celebrant
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Creature — Vampire</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><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Cruel Celebrant" src="https://cards.scryfall.io/large/front/b/3/b3f8be99-a398-4664-beb6-3e98d6e62a32.jpg?1783913853" />
    </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.97
              </span>

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

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$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;:0.93},{&quot;2026-06-14&quot;:0.92},{&quot;2026-06-15&quot;:0.95},{&quot;2026-06-16&quot;:0.92},{&quot;2026-06-17&quot;:0.95},{&quot;2026-06-18&quot;:0.97},{&quot;2026-06-19&quot;:1.02},{&quot;2026-06-20&quot;:1.01},{&quot;2026-06-21&quot;:1.01},{&quot;2026-06-22&quot;:0.99},{&quot;2026-06-23&quot;:1.02},{&quot;2026-06-24&quot;:1.01},{&quot;2026-06-25&quot;:1.04},{&quot;2026-06-26&quot;:1.04},{&quot;2026-06-27&quot;:1.11},{&quot;2026-06-28&quot;:1.12},{&quot;2026-06-29&quot;:1.08},{&quot;2026-06-30&quot;:1.11},{&quot;2026-07-01&quot;:1.13},{&quot;2026-07-02&quot;:1.13},{&quot;2026-07-03&quot;:1.1},{&quot;2026-07-04&quot;:1.08},{&quot;2026-07-05&quot;:1.03},{&quot;2026-07-06&quot;:1.03},{&quot;2026-07-07&quot;:1.01},{&quot;2026-07-08&quot;:1.0},{&quot;2026-07-09&quot;:1.0},{&quot;2026-07-10&quot;:0.98},{&quot;2026-07-11&quot;:0.97},{&quot;2026-07-12&quot;:0.97},{&quot;2026-07-13&quot;:0.94},{&quot;2026-07-14&quot;:0.93},{&quot;2026-07-15&quot;:0.96},{&quot;2026-07-16&quot;:0.96},{&quot;2026-07-17&quot;:0.97},{&quot;2026-07-18&quot;:0.93},{&quot;2026-07-19&quot;:0.93},{&quot;2026-07-20&quot;:0.93},{&quot;2026-07-21&quot;:0.95},{&quot;2026-07-22&quot;:0.93},{&quot;2026-07-23&quot;:0.94},{&quot;2026-07-24&quot;:0.92},{&quot;2026-07-25&quot;:0.94},{&quot;2026-07-26&quot;:0.97},{&quot;2026-07-27&quot;:1.06},{&quot;2026-07-28&quot;:1.09},{&quot;2026-07-29&quot;:1.18},{&quot;2026-07-30&quot;:1.27},{&quot;2026-07-31&quot;:1.24},{&quot;2026-08-01&quot;:1.24},{&quot;2026-08-02&quot;:1.27},{&quot;2026-08-03&quot;:1.24},{&quot;2026-08-04&quot;:1.24},{&quot;2026-08-05&quot;:1.27},{&quot;2026-08-07&quot;:1.23},{&quot;2026-08-08&quot;:1.21},{&quot;2026-08-09&quot;:1.24},{&quot;2026-08-10&quot;:1.22},{&quot;2026-08-11&quot;:1.28},{&quot;2026-08-12&quot;:1.28},{&quot;2026-08-13&quot;:1.26},{&quot;2026-08-14&quot;:1.14},{&quot;2026-08-15&quot;:1.16},{&quot;2026-08-16&quot;:1.19},{&quot;2026-08-17&quot;:1.24},{&quot;2026-08-18&quot;:1.19},{&quot;2026-08-19&quot;:1.22},{&quot;2026-08-20&quot;:1.3},{&quot;2026-08-21&quot;:1.43},{&quot;2026-08-22&quot;:1.45},{&quot;2026-08-23&quot;:1.45},{&quot;2026-08-24&quot;:1.45},{&quot;2026-08-25&quot;:1.48},{&quot;2026-08-26&quot;:1.5},{&quot;2026-08-27&quot;:1.66},{&quot;2026-08-28&quot;:1.59},{&quot;2026-08-29&quot;:1.59},{&quot;2026-08-30&quot;:1.65},{&quot;2026-08-31&quot;:1.77},{&quot;2026-09-01&quot;:1.9},{&quot;2026-09-02&quot;:1.85},{&quot;2026-09-03&quot;:1.85},{&quot;2026-09-04&quot;:1.82},{&quot;2026-09-05&quot;:1.79},{&quot;2026-09-06&quot;:1.81},{&quot;2026-09-07&quot;:1.71},{&quot;2026-09-08&quot;:1.7},{&quot;2026-09-09&quot;:1.57},{&quot;2026-09-10&quot;:1.72},{&quot;2026-09-11&quot;:1.97}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Swords to Plowshares" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/c/7cdee412-3519-4626-80ca-e3e431a604f0.jpg?1783913893" />

        <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">
            Swords to Plowshares
        </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="Swords to Plowshares" src="https://cards.scryfall.io/large/front/7/c/7cdee412-3519-4626-80ca-e3e431a604f0.jpg?1783913893" />
    </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.92
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.54},{&quot;2026-06-14&quot;:1.53},{&quot;2026-06-15&quot;:1.54},{&quot;2026-06-16&quot;:1.61},{&quot;2026-06-17&quot;:1.63},{&quot;2026-06-18&quot;:1.64},{&quot;2026-06-19&quot;:1.64},{&quot;2026-06-20&quot;:1.67},{&quot;2026-06-21&quot;:1.7},{&quot;2026-06-22&quot;:1.66},{&quot;2026-06-23&quot;:1.66},{&quot;2026-06-24&quot;:1.67},{&quot;2026-06-25&quot;:1.69},{&quot;2026-06-26&quot;:1.66},{&quot;2026-06-27&quot;:1.66},{&quot;2026-06-28&quot;:1.64},{&quot;2026-06-29&quot;:1.62},{&quot;2026-06-30&quot;:1.57},{&quot;2026-07-01&quot;:1.57},{&quot;2026-07-02&quot;:1.55},{&quot;2026-07-03&quot;:1.5},{&quot;2026-07-04&quot;:1.51},{&quot;2026-07-05&quot;:1.45},{&quot;2026-07-06&quot;:1.43},{&quot;2026-07-07&quot;:1.43},{&quot;2026-07-08&quot;:1.51},{&quot;2026-07-09&quot;:1.51},{&quot;2026-07-10&quot;:1.54},{&quot;2026-07-11&quot;:1.55},{&quot;2026-07-12&quot;:1.58},{&quot;2026-07-13&quot;:1.58},{&quot;2026-07-14&quot;:1.58},{&quot;2026-07-15&quot;:1.62},{&quot;2026-07-16&quot;:1.62},{&quot;2026-07-17&quot;:1.63},{&quot;2026-07-18&quot;:1.62},{&quot;2026-07-19&quot;:1.55},{&quot;2026-07-20&quot;:1.55},{&quot;2026-07-21&quot;:1.56},{&quot;2026-07-22&quot;:1.55},{&quot;2026-07-23&quot;:1.53},{&quot;2026-07-24&quot;:1.58},{&quot;2026-07-25&quot;:1.57},{&quot;2026-07-26&quot;:1.55},{&quot;2026-07-27&quot;:1.52},{&quot;2026-07-28&quot;:1.55},{&quot;2026-07-29&quot;:1.55},{&quot;2026-07-30&quot;:1.55},{&quot;2026-07-31&quot;:1.55},{&quot;2026-08-01&quot;:1.55},{&quot;2026-08-02&quot;:1.54},{&quot;2026-08-03&quot;:1.57},{&quot;2026-08-04&quot;:1.58},{&quot;2026-08-05&quot;:1.58},{&quot;2026-08-07&quot;:1.53},{&quot;2026-08-08&quot;:1.56},{&quot;2026-08-09&quot;:1.57},{&quot;2026-08-10&quot;:1.55},{&quot;2026-08-11&quot;:1.52},{&quot;2026-08-12&quot;:1.51},{&quot;2026-08-13&quot;:1.54},{&quot;2026-08-14&quot;:1.53},{&quot;2026-08-15&quot;:1.51},{&quot;2026-08-16&quot;:1.49},{&quot;2026-08-17&quot;:1.47},{&quot;2026-08-18&quot;:1.5},{&quot;2026-08-19&quot;:1.56},{&quot;2026-08-20&quot;:1.62},{&quot;2026-08-21&quot;:1.6},{&quot;2026-08-22&quot;:1.61},{&quot;2026-08-23&quot;:1.61},{&quot;2026-08-24&quot;:1.61},{&quot;2026-08-25&quot;:1.61},{&quot;2026-08-26&quot;:1.64},{&quot;2026-08-27&quot;:1.62},{&quot;2026-08-28&quot;:1.62},{&quot;2026-08-29&quot;:1.62},{&quot;2026-08-30&quot;:1.6},{&quot;2026-08-31&quot;:1.62},{&quot;2026-09-01&quot;:1.65},{&quot;2026-09-02&quot;:1.67},{&quot;2026-09-03&quot;:1.67},{&quot;2026-09-04&quot;:1.65},{&quot;2026-09-05&quot;:1.59},{&quot;2026-09-06&quot;:1.46},{&quot;2026-09-07&quot;:1.79},{&quot;2026-09-08&quot;:1.95},{&quot;2026-09-09&quot;:1.96},{&quot;2026-09-10&quot;:1.98},{&quot;2026-09-11&quot;:1.92}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

          <span class="text-sm font-medium text-nine-white">
            $1.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="Sol Ring" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/d/2d47121d-8b90-4d28-9ffa-0a640b9dd611.jpg?1783913836" />

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Sol Ring" src="https://cards.scryfall.io/large/front/2/d/2d47121d-8b90-4d28-9ffa-0a640b9dd611.jpg?1783913836" />
    </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.77
              </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.90</span>
              <span class="text-xs text-grey-text">Credit: $1.17</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-12&quot;:1.68},{&quot;2026-06-13&quot;:1.69},{&quot;2026-06-14&quot;:1.71},{&quot;2026-06-15&quot;:1.77},{&quot;2026-06-16&quot;:1.84},{&quot;2026-06-17&quot;:1.81},{&quot;2026-06-18&quot;:1.82},{&quot;2026-06-19&quot;:1.66},{&quot;2026-06-20&quot;:1.62},{&quot;2026-06-21&quot;:1.62},{&quot;2026-06-22&quot;:1.52},{&quot;2026-06-23&quot;:1.48},{&quot;2026-06-24&quot;:1.55},{&quot;2026-06-25&quot;:1.7},{&quot;2026-06-26&quot;:1.55},{&quot;2026-06-27&quot;:1.59},{&quot;2026-06-28&quot;:1.61},{&quot;2026-06-29&quot;:1.85},{&quot;2026-06-30&quot;:1.73},{&quot;2026-07-01&quot;:1.62},{&quot;2026-07-02&quot;:1.55},{&quot;2026-07-03&quot;:1.54},{&quot;2026-07-04&quot;:1.56},{&quot;2026-07-05&quot;:1.65},{&quot;2026-07-06&quot;:1.7},{&quot;2026-07-07&quot;:1.81},{&quot;2026-07-08&quot;:1.68},{&quot;2026-07-09&quot;:1.79},{&quot;2026-07-10&quot;:1.74},{&quot;2026-07-11&quot;:1.57},{&quot;2026-07-12&quot;:1.69},{&quot;2026-07-13&quot;:1.8},{&quot;2026-07-14&quot;:1.7},{&quot;2026-07-15&quot;:1.62},{&quot;2026-07-16&quot;:1.57},{&quot;2026-07-17&quot;:1.48},{&quot;2026-07-18&quot;:1.53},{&quot;2026-07-19&quot;:1.58},{&quot;2026-07-20&quot;:1.66},{&quot;2026-07-21&quot;:1.77},{&quot;2026-07-23&quot;:1.77},{&quot;2026-07-24&quot;:1.77},{&quot;2026-07-25&quot;:1.66},{&quot;2026-07-26&quot;:1.6},{&quot;2026-07-27&quot;:1.6},{&quot;2026-07-28&quot;:1.6},{&quot;2026-07-29&quot;:1.63},{&quot;2026-07-30&quot;:1.58},{&quot;2026-07-31&quot;:1.64},{&quot;2026-08-01&quot;:1.93},{&quot;2026-08-02&quot;:1.85},{&quot;2026-08-03&quot;:1.72},{&quot;2026-08-04&quot;:1.57},{&quot;2026-08-05&quot;:1.5},{&quot;2026-08-07&quot;:1.54},{&quot;2026-08-08&quot;:1.63},{&quot;2026-08-09&quot;:1.88},{&quot;2026-08-10&quot;:1.64},{&quot;2026-08-11&quot;:1.56},{&quot;2026-08-12&quot;:1.49},{&quot;2026-08-13&quot;:1.59},{&quot;2026-08-14&quot;:1.57},{&quot;2026-08-15&quot;:1.52},{&quot;2026-08-16&quot;:1.5},{&quot;2026-08-17&quot;:1.52},{&quot;2026-08-18&quot;:1.53},{&quot;2026-08-19&quot;:1.53},{&quot;2026-08-20&quot;:1.53},{&quot;2026-08-21&quot;:2.04},{&quot;2026-08-22&quot;:1.95},{&quot;2026-08-23&quot;:1.97},{&quot;2026-08-24&quot;:1.84},{&quot;2026-08-25&quot;:1.73},{&quot;2026-08-26&quot;:1.87},{&quot;2026-08-27&quot;:1.88},{&quot;2026-08-28&quot;:2.0},{&quot;2026-08-29&quot;:2.0},{&quot;2026-08-30&quot;:1.95},{&quot;2026-08-31&quot;:1.93},{&quot;2026-09-01&quot;:1.87},{&quot;2026-09-02&quot;:1.92},{&quot;2026-09-03&quot;:1.9},{&quot;2026-09-04&quot;:1.84},{&quot;2026-09-05&quot;:1.84},{&quot;2026-09-06&quot;:1.72},{&quot;2026-09-07&quot;:1.57},{&quot;2026-09-08&quot;:1.54},{&quot;2026-09-09&quot;:1.6},{&quot;2026-09-10&quot;:1.6},{&quot;2026-09-11&quot;:1.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="75732"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-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">
            Twilight Prophet
        </span>


      </div>

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

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

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

          <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="Twilight Prophet" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/1/41f90e2b-cdbb-4a7c-aba0-c72055b414ed.jpg?1783913869" />

        <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">
            Twilight Prophet
        </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 — Vampire Cleric</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Twilight Prophet" src="https://cards.scryfall.io/large/front/4/1/41f90e2b-cdbb-4a7c-aba0-c72055b414ed.jpg?1783913869" />
    </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>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.34},{&quot;2026-06-14&quot;:1.42},{&quot;2026-06-15&quot;:1.42},{&quot;2026-06-16&quot;:1.39},{&quot;2026-06-17&quot;:1.42},{&quot;2026-06-18&quot;:1.45},{&quot;2026-06-19&quot;:1.34},{&quot;2026-06-20&quot;:1.37},{&quot;2026-06-21&quot;:1.39},{&quot;2026-06-22&quot;:1.42},{&quot;2026-06-23&quot;:1.41},{&quot;2026-06-24&quot;:1.45},{&quot;2026-06-25&quot;:1.54},{&quot;2026-06-26&quot;:1.68},{&quot;2026-06-27&quot;:1.87},{&quot;2026-06-28&quot;:2.19},{&quot;2026-06-29&quot;:2.33},{&quot;2026-06-30&quot;:2.47},{&quot;2026-07-01&quot;:2.38},{&quot;2026-07-02&quot;:2.32},{&quot;2026-07-03&quot;:2.27},{&quot;2026-07-04&quot;:2.27},{&quot;2026-07-05&quot;:2.07},{&quot;2026-07-06&quot;:1.94},{&quot;2026-07-07&quot;:1.85},{&quot;2026-07-08&quot;:1.78},{&quot;2026-07-09&quot;:1.66},{&quot;2026-07-10&quot;:1.54},{&quot;2026-07-11&quot;:1.56},{&quot;2026-07-12&quot;:2.03},{&quot;2026-07-13&quot;:2.26},{&quot;2026-07-14&quot;:2.3},{&quot;2026-07-15&quot;:2.28},{&quot;2026-07-16&quot;:2.23},{&quot;2026-07-17&quot;:2.2},{&quot;2026-07-18&quot;:2.18},{&quot;2026-07-19&quot;:2.2},{&quot;2026-07-20&quot;:2.14},{&quot;2026-07-21&quot;:2.0},{&quot;2026-07-22&quot;:1.94},{&quot;2026-07-23&quot;:2.06},{&quot;2026-07-24&quot;:2.22},{&quot;2026-07-25&quot;:2.3},{&quot;2026-07-26&quot;:2.34},{&quot;2026-07-27&quot;:2.39},{&quot;2026-07-28&quot;:2.42},{&quot;2026-07-29&quot;:2.45},{&quot;2026-07-30&quot;:2.45},{&quot;2026-07-31&quot;:2.52},{&quot;2026-08-01&quot;:2.52},{&quot;2026-08-02&quot;:2.52},{&quot;2026-08-03&quot;:2.42},{&quot;2026-08-04&quot;:2.51},{&quot;2026-08-05&quot;:2.54},{&quot;2026-08-07&quot;:2.44},{&quot;2026-08-08&quot;:2.48},{&quot;2026-08-09&quot;:2.5},{&quot;2026-08-10&quot;:2.54},{&quot;2026-08-11&quot;:2.62},{&quot;2026-08-12&quot;:2.77},{&quot;2026-08-13&quot;:2.74},{&quot;2026-08-14&quot;:2.66},{&quot;2026-08-15&quot;:2.57},{&quot;2026-08-16&quot;:2.42},{&quot;2026-08-17&quot;:2.42},{&quot;2026-08-18&quot;:2.34},{&quot;2026-08-19&quot;:2.11},{&quot;2026-08-20&quot;:1.81},{&quot;2026-08-21&quot;:1.77},{&quot;2026-08-22&quot;:1.73},{&quot;2026-08-23&quot;:1.65},{&quot;2026-08-24&quot;:1.65},{&quot;2026-08-25&quot;:1.67},{&quot;2026-08-26&quot;:1.61},{&quot;2026-08-27&quot;:1.62},{&quot;2026-08-28&quot;:1.64},{&quot;2026-08-29&quot;:1.64},{&quot;2026-08-30&quot;:1.91},{&quot;2026-08-31&quot;:1.85},{&quot;2026-09-01&quot;:1.77},{&quot;2026-09-02&quot;:1.77},{&quot;2026-09-03&quot;:1.85},{&quot;2026-09-04&quot;:1.78},{&quot;2026-09-05&quot;:1.77},{&quot;2026-09-06&quot;:1.72},{&quot;2026-09-07&quot;:1.71},{&quot;2026-09-08&quot;:1.63},{&quot;2026-09-09&quot;:1.6},{&quot;2026-09-10&quot;:1.61},{&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="76035"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-common ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $1.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="Bojuka Bog" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/c/0c7d4fbe-fa7a-4b34-b339-197f08409cbf.jpg?1783913835" />

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Bojuka Bog" src="https://cards.scryfall.io/large/front/0/c/0c7d4fbe-fa7a-4b34-b339-197f08409cbf.jpg?1783913835" />
    </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.49
              </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-11&quot;:1.02},{&quot;2026-06-12&quot;:1.02},{&quot;2026-06-13&quot;:1.02},{&quot;2026-06-14&quot;:1.02},{&quot;2026-06-15&quot;:1.02},{&quot;2026-06-16&quot;:1.01},{&quot;2026-06-17&quot;:1.0},{&quot;2026-06-18&quot;:0.99},{&quot;2026-06-19&quot;:0.99},{&quot;2026-06-20&quot;:0.99},{&quot;2026-06-21&quot;:0.99},{&quot;2026-06-22&quot;:0.98},{&quot;2026-06-23&quot;:0.98},{&quot;2026-06-24&quot;:0.98},{&quot;2026-06-25&quot;:0.98},{&quot;2026-06-26&quot;:0.99},{&quot;2026-06-27&quot;:1.0},{&quot;2026-06-28&quot;:0.99},{&quot;2026-06-29&quot;:0.99},{&quot;2026-06-30&quot;:0.98},{&quot;2026-07-01&quot;:0.98},{&quot;2026-07-02&quot;:0.98},{&quot;2026-07-03&quot;:0.97},{&quot;2026-07-04&quot;:0.95},{&quot;2026-07-05&quot;:0.92},{&quot;2026-07-06&quot;:0.92},{&quot;2026-07-07&quot;:0.91},{&quot;2026-07-08&quot;:0.89},{&quot;2026-07-09&quot;:0.9},{&quot;2026-07-10&quot;:0.87},{&quot;2026-07-11&quot;:0.82},{&quot;2026-07-12&quot;:0.83},{&quot;2026-07-13&quot;:0.85},{&quot;2026-07-14&quot;:0.87},{&quot;2026-07-15&quot;:0.88},{&quot;2026-07-16&quot;:0.91},{&quot;2026-07-17&quot;:0.92},{&quot;2026-07-18&quot;:0.93},{&quot;2026-07-19&quot;:0.93},{&quot;2026-07-20&quot;:0.95},{&quot;2026-07-21&quot;:0.96},{&quot;2026-07-23&quot;:1.04},{&quot;2026-07-25&quot;:1.12},{&quot;2026-07-26&quot;:1.08},{&quot;2026-07-27&quot;:1.07},{&quot;2026-07-28&quot;:1.06},{&quot;2026-07-29&quot;:1.06},{&quot;2026-07-30&quot;:1.0},{&quot;2026-07-31&quot;:0.94},{&quot;2026-08-01&quot;:0.94},{&quot;2026-08-02&quot;:0.95},{&quot;2026-08-03&quot;:0.96},{&quot;2026-08-04&quot;:1.05},{&quot;2026-08-05&quot;:1.05},{&quot;2026-08-07&quot;:1.11},{&quot;2026-08-08&quot;:1.15},{&quot;2026-08-09&quot;:1.15},{&quot;2026-08-10&quot;:1.17},{&quot;2026-08-11&quot;:1.13},{&quot;2026-08-12&quot;:1.14},{&quot;2026-08-13&quot;:1.18},{&quot;2026-08-14&quot;:1.18},{&quot;2026-08-15&quot;:1.19},{&quot;2026-08-16&quot;:1.2},{&quot;2026-08-17&quot;:1.2},{&quot;2026-08-18&quot;:1.21},{&quot;2026-08-19&quot;:1.24},{&quot;2026-08-20&quot;:1.24},{&quot;2026-08-21&quot;:1.27},{&quot;2026-08-22&quot;:1.27},{&quot;2026-08-23&quot;:1.27},{&quot;2026-08-24&quot;:1.27},{&quot;2026-08-25&quot;:1.27},{&quot;2026-08-26&quot;:1.33},{&quot;2026-08-27&quot;:1.36},{&quot;2026-08-28&quot;:1.41},{&quot;2026-08-29&quot;:1.41},{&quot;2026-08-30&quot;:1.47},{&quot;2026-08-31&quot;:1.47},{&quot;2026-09-01&quot;:1.47},{&quot;2026-09-02&quot;:1.51},{&quot;2026-09-03&quot;:1.54},{&quot;2026-09-04&quot;:1.54},{&quot;2026-09-05&quot;:1.54},{&quot;2026-09-06&quot;:1.56},{&quot;2026-09-07&quot;:1.55},{&quot;2026-09-08&quot;:1.52},{&quot;2026-09-09&quot;:1.5},{&quot;2026-09-10&quot;:1.48},{&quot;2026-09-11&quot;:1.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="75652"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Bloodghast" src="https://cards.scryfall.io/large/front/0/8/08e01310-d192-41e9-a6f0-0edbd6fb3cfb.jpg?1783913878" />
    </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.36
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:2.01},{&quot;2026-06-14&quot;:2.01},{&quot;2026-06-15&quot;:1.97},{&quot;2026-06-16&quot;:1.9},{&quot;2026-06-17&quot;:1.9},{&quot;2026-06-18&quot;:1.76},{&quot;2026-06-19&quot;:1.66},{&quot;2026-06-20&quot;:1.53},{&quot;2026-06-21&quot;:1.52},{&quot;2026-06-22&quot;:1.51},{&quot;2026-06-23&quot;:1.41},{&quot;2026-06-24&quot;:1.34},{&quot;2026-06-25&quot;:1.31},{&quot;2026-06-26&quot;:1.31},{&quot;2026-06-27&quot;:1.34},{&quot;2026-06-28&quot;:1.28},{&quot;2026-06-29&quot;:1.23},{&quot;2026-06-30&quot;:1.19},{&quot;2026-07-01&quot;:1.2},{&quot;2026-07-02&quot;:1.14},{&quot;2026-07-03&quot;:1.16},{&quot;2026-07-04&quot;:1.16},{&quot;2026-07-05&quot;:1.14},{&quot;2026-07-06&quot;:1.11},{&quot;2026-07-07&quot;:1.11},{&quot;2026-07-08&quot;:1.04},{&quot;2026-07-09&quot;:1.04},{&quot;2026-07-10&quot;:1.03},{&quot;2026-07-11&quot;:1.04},{&quot;2026-07-12&quot;:1.08},{&quot;2026-07-13&quot;:1.12},{&quot;2026-07-14&quot;:1.08},{&quot;2026-07-15&quot;:1.14},{&quot;2026-07-16&quot;:1.16},{&quot;2026-07-17&quot;:1.18},{&quot;2026-07-18&quot;:1.15},{&quot;2026-07-19&quot;:1.14},{&quot;2026-07-20&quot;:1.1},{&quot;2026-07-21&quot;:1.09},{&quot;2026-07-22&quot;:1.07},{&quot;2026-07-23&quot;:1.07},{&quot;2026-07-24&quot;:1.13},{&quot;2026-07-25&quot;:1.12},{&quot;2026-07-26&quot;:1.14},{&quot;2026-07-27&quot;:1.15},{&quot;2026-07-28&quot;:1.12},{&quot;2026-07-29&quot;:1.08},{&quot;2026-07-30&quot;:1.05},{&quot;2026-07-31&quot;:0.98},{&quot;2026-08-01&quot;:0.98},{&quot;2026-08-02&quot;:0.96},{&quot;2026-08-03&quot;:0.95},{&quot;2026-08-04&quot;:0.98},{&quot;2026-08-05&quot;:1.01},{&quot;2026-08-07&quot;:1.07},{&quot;2026-08-08&quot;:1.07},{&quot;2026-08-09&quot;:1.05},{&quot;2026-08-10&quot;:1.04},{&quot;2026-08-11&quot;:1.05},{&quot;2026-08-12&quot;:1.05},{&quot;2026-08-13&quot;:1.1},{&quot;2026-08-14&quot;:1.16},{&quot;2026-08-15&quot;:1.17},{&quot;2026-08-16&quot;:1.21},{&quot;2026-08-17&quot;:1.24},{&quot;2026-08-18&quot;:1.27},{&quot;2026-08-19&quot;:1.29},{&quot;2026-08-20&quot;:1.36},{&quot;2026-08-21&quot;:1.41},{&quot;2026-08-22&quot;:1.39},{&quot;2026-08-23&quot;:1.39},{&quot;2026-08-24&quot;:1.39},{&quot;2026-08-25&quot;:1.34},{&quot;2026-08-26&quot;:1.33},{&quot;2026-08-27&quot;:1.34},{&quot;2026-08-28&quot;:1.31},{&quot;2026-08-29&quot;:1.31},{&quot;2026-08-30&quot;:1.34},{&quot;2026-08-31&quot;:1.37},{&quot;2026-09-01&quot;:1.38},{&quot;2026-09-02&quot;:1.38},{&quot;2026-09-03&quot;:1.35},{&quot;2026-09-04&quot;:1.34},{&quot;2026-09-05&quot;:1.34},{&quot;2026-09-06&quot;:1.27},{&quot;2026-09-07&quot;:1.27},{&quot;2026-09-08&quot;:1.33},{&quot;2026-09-09&quot;:1.41},{&quot;2026-09-10&quot;:1.36},{&quot;2026-09-11&quot;:1.36}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Drana, Liberator of Malakir" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/8/0850b41d-3589-40cd-ae22-cc5b4ddee1c4.jpg?1783913874" />

        <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">
            Drana, Liberator of Malakir
        </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 — Vampire Ally</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Drana, Liberator of Malakir" src="https://cards.scryfall.io/large/front/0/8/0850b41d-3589-40cd-ae22-cc5b4ddee1c4.jpg?1783913874" />
    </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.83
              </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.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;:0.56},{&quot;2026-06-14&quot;:0.56},{&quot;2026-06-15&quot;:0.56},{&quot;2026-06-16&quot;:0.56},{&quot;2026-06-17&quot;:0.56},{&quot;2026-06-18&quot;:0.57},{&quot;2026-06-19&quot;:0.57},{&quot;2026-06-20&quot;:0.57},{&quot;2026-06-21&quot;:0.57},{&quot;2026-06-22&quot;:0.59},{&quot;2026-06-23&quot;:0.61},{&quot;2026-06-24&quot;:0.64},{&quot;2026-06-25&quot;:0.65},{&quot;2026-06-26&quot;:0.62},{&quot;2026-06-27&quot;:0.63},{&quot;2026-06-28&quot;:0.63},{&quot;2026-06-29&quot;:0.63},{&quot;2026-06-30&quot;:0.63},{&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.62},{&quot;2026-07-05&quot;:0.68},{&quot;2026-07-06&quot;:0.68},{&quot;2026-07-07&quot;:0.71},{&quot;2026-07-08&quot;:0.71},{&quot;2026-07-09&quot;:0.71},{&quot;2026-07-10&quot;:0.71},{&quot;2026-07-11&quot;:0.71},{&quot;2026-07-12&quot;:0.71},{&quot;2026-07-13&quot;:0.66},{&quot;2026-07-14&quot;:0.66},{&quot;2026-07-15&quot;:0.67},{&quot;2026-07-16&quot;:0.66},{&quot;2026-07-17&quot;:0.64},{&quot;2026-07-18&quot;:0.64},{&quot;2026-07-19&quot;:0.64},{&quot;2026-07-20&quot;:0.64},{&quot;2026-07-21&quot;:0.65},{&quot;2026-07-22&quot;:0.64},{&quot;2026-07-23&quot;:0.63},{&quot;2026-07-24&quot;:0.61},{&quot;2026-07-25&quot;:0.61},{&quot;2026-07-26&quot;:0.62},{&quot;2026-07-27&quot;:0.63},{&quot;2026-07-28&quot;:0.64},{&quot;2026-07-29&quot;:0.64},{&quot;2026-07-30&quot;:0.64},{&quot;2026-07-31&quot;:0.73},{&quot;2026-08-01&quot;:0.73},{&quot;2026-08-02&quot;:0.73},{&quot;2026-08-03&quot;:0.73},{&quot;2026-08-04&quot;:0.77},{&quot;2026-08-05&quot;:0.77},{&quot;2026-08-07&quot;:0.8},{&quot;2026-08-08&quot;:0.8},{&quot;2026-08-09&quot;:0.76},{&quot;2026-08-10&quot;:0.76},{&quot;2026-08-11&quot;:0.77},{&quot;2026-08-12&quot;:0.82},{&quot;2026-08-13&quot;:0.83},{&quot;2026-08-14&quot;:0.83},{&quot;2026-08-15&quot;:0.81},{&quot;2026-08-16&quot;:0.77},{&quot;2026-08-17&quot;:0.78},{&quot;2026-08-18&quot;:0.78},{&quot;2026-08-19&quot;:0.79},{&quot;2026-08-20&quot;:0.78},{&quot;2026-08-21&quot;:0.79},{&quot;2026-08-22&quot;:0.8},{&quot;2026-08-23&quot;:0.8},{&quot;2026-08-24&quot;:0.8},{&quot;2026-08-25&quot;:0.8},{&quot;2026-08-26&quot;:0.81},{&quot;2026-08-27&quot;:0.84},{&quot;2026-08-28&quot;:0.84},{&quot;2026-08-29&quot;:0.84},{&quot;2026-08-30&quot;:0.84},{&quot;2026-08-31&quot;:0.86},{&quot;2026-09-01&quot;:0.84},{&quot;2026-09-02&quot;:0.89},{&quot;2026-09-03&quot;:0.87},{&quot;2026-09-04&quot;:0.89},{&quot;2026-09-05&quot;:0.82},{&quot;2026-09-06&quot;:0.78},{&quot;2026-09-07&quot;:0.78},{&quot;2026-09-08&quot;:0.77},{&quot;2026-09-09&quot;:0.79},{&quot;2026-09-10&quot;:0.82},{&quot;2026-09-11&quot;:0.83}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.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="Vault of the Archangel" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/3/03a91bc2-bf45-45f3-8a14-911b6148720b.jpg?1783913818" />

        <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">
            Vault of the Archangel
        </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="Vault of the Archangel" src="https://cards.scryfall.io/large/front/0/3/03a91bc2-bf45-45f3-8a14-911b6148720b.jpg?1783913818" />
    </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.77
              </span>

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

      </div>

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

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

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

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Pact of the Serpent
        </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">
              ↑
              36%
            </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="Pact of the Serpent" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/8/481d268a-848c-4ccd-95ff-eed77dc20776.jpg?1783913870" />

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Pact of the Serpent" src="https://cards.scryfall.io/large/front/4/8/481d268a-848c-4ccd-95ff-eed77dc20776.jpg?1783913870" />
    </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">
                  ↑
                  36%
                </span>
            </div>
          </div>

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.63},{&quot;2026-06-14&quot;:0.62},{&quot;2026-06-15&quot;:0.71},{&quot;2026-06-16&quot;:0.7},{&quot;2026-06-17&quot;:0.71},{&quot;2026-06-18&quot;:0.7},{&quot;2026-06-19&quot;:0.66},{&quot;2026-06-20&quot;:0.66},{&quot;2026-06-21&quot;:0.67},{&quot;2026-06-22&quot;:0.81},{&quot;2026-06-23&quot;:0.82},{&quot;2026-06-24&quot;:0.84},{&quot;2026-06-25&quot;:0.85},{&quot;2026-06-26&quot;:0.84},{&quot;2026-06-27&quot;:0.83},{&quot;2026-06-28&quot;:0.84},{&quot;2026-06-29&quot;:0.86},{&quot;2026-06-30&quot;:0.86},{&quot;2026-07-01&quot;:0.87},{&quot;2026-07-02&quot;:0.74},{&quot;2026-07-03&quot;:0.75},{&quot;2026-07-04&quot;:0.76},{&quot;2026-07-05&quot;:0.75},{&quot;2026-07-06&quot;:0.75},{&quot;2026-07-07&quot;:0.78},{&quot;2026-07-08&quot;:0.78},{&quot;2026-07-09&quot;:0.77},{&quot;2026-07-10&quot;:0.77},{&quot;2026-07-11&quot;:0.75},{&quot;2026-07-12&quot;:0.71},{&quot;2026-07-13&quot;:0.71},{&quot;2026-07-14&quot;:0.71},{&quot;2026-07-15&quot;:0.69},{&quot;2026-07-16&quot;:0.7},{&quot;2026-07-17&quot;:0.71},{&quot;2026-07-18&quot;:0.72},{&quot;2026-07-19&quot;:0.73},{&quot;2026-07-20&quot;:0.73},{&quot;2026-07-21&quot;:0.74},{&quot;2026-07-22&quot;:0.75},{&quot;2026-07-23&quot;:0.75},{&quot;2026-07-24&quot;:0.73},{&quot;2026-07-25&quot;:0.73},{&quot;2026-07-26&quot;:0.73},{&quot;2026-07-27&quot;:0.7},{&quot;2026-07-28&quot;:0.69},{&quot;2026-07-29&quot;:0.69},{&quot;2026-07-30&quot;:0.68},{&quot;2026-07-31&quot;:0.68},{&quot;2026-08-01&quot;:0.68},{&quot;2026-08-02&quot;:0.78},{&quot;2026-08-03&quot;:0.81},{&quot;2026-08-04&quot;:0.89},{&quot;2026-08-05&quot;:0.9},{&quot;2026-08-07&quot;:0.96},{&quot;2026-08-08&quot;:1.18},{&quot;2026-08-09&quot;:1.16},{&quot;2026-08-10&quot;:1.13},{&quot;2026-08-11&quot;:1.15},{&quot;2026-08-12&quot;:1.13},{&quot;2026-08-13&quot;:1.13},{&quot;2026-08-14&quot;:1.13},{&quot;2026-08-15&quot;:1.12},{&quot;2026-08-16&quot;:1.06},{&quot;2026-08-17&quot;:0.89},{&quot;2026-08-18&quot;:0.91},{&quot;2026-08-19&quot;:0.86},{&quot;2026-08-20&quot;:0.76},{&quot;2026-08-21&quot;:0.64},{&quot;2026-08-22&quot;:0.55},{&quot;2026-08-23&quot;:0.52},{&quot;2026-08-24&quot;:0.5},{&quot;2026-08-25&quot;:0.56},{&quot;2026-08-26&quot;:0.59},{&quot;2026-08-27&quot;:0.6},{&quot;2026-08-28&quot;:0.6},{&quot;2026-08-29&quot;:0.6},{&quot;2026-08-30&quot;:0.57},{&quot;2026-08-31&quot;:0.58},{&quot;2026-09-01&quot;:0.54},{&quot;2026-09-02&quot;:0.55},{&quot;2026-09-03&quot;:0.59},{&quot;2026-09-04&quot;:0.58},{&quot;2026-09-05&quot;:0.56},{&quot;2026-09-06&quot;:0.58},{&quot;2026-09-07&quot;:0.61},{&quot;2026-09-08&quot;:0.62},{&quot;2026-09-09&quot;:0.65},{&quot;2026-09-10&quot;:0.74},{&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="75096"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-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">
            Clavileño, First of the Blessed
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Clavileño, First of the Blessed" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/f/9f55b648-b1ec-407a-a0c7-7647755793d1.jpg?1783913936" />

        <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">
            Clavileño, First of the Blessed
        </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 — Vampire Cleric</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Clavileño, First of the Blessed" src="https://cards.scryfall.io/large/front/9/f/9f55b648-b1ec-407a-a0c7-7647755793d1.jpg?1783913936" />
    </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.70
              </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">
                $0.71
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  58%
                </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-13&quot;:0.43},{&quot;2026-06-14&quot;:0.44},{&quot;2026-06-15&quot;:0.43},{&quot;2026-06-16&quot;:0.42},{&quot;2026-06-17&quot;:0.42},{&quot;2026-06-18&quot;:0.4},{&quot;2026-06-19&quot;:0.39},{&quot;2026-06-20&quot;:0.39},{&quot;2026-06-21&quot;:0.38},{&quot;2026-06-22&quot;:0.39},{&quot;2026-06-23&quot;:0.37},{&quot;2026-06-24&quot;:0.39},{&quot;2026-06-25&quot;:0.38},{&quot;2026-06-26&quot;:0.38},{&quot;2026-06-27&quot;:0.38},{&quot;2026-06-28&quot;:0.38},{&quot;2026-06-29&quot;:0.38},{&quot;2026-06-30&quot;:0.38},{&quot;2026-07-01&quot;:0.37},{&quot;2026-07-02&quot;:0.37},{&quot;2026-07-03&quot;:0.36},{&quot;2026-07-04&quot;:0.36},{&quot;2026-07-05&quot;:0.37},{&quot;2026-07-06&quot;:0.4},{&quot;2026-07-07&quot;:0.4},{&quot;2026-07-08&quot;:0.42},{&quot;2026-07-09&quot;:0.43},{&quot;2026-07-10&quot;:0.44},{&quot;2026-07-11&quot;:0.45},{&quot;2026-07-12&quot;:0.42},{&quot;2026-07-13&quot;:0.4},{&quot;2026-07-14&quot;:0.4},{&quot;2026-07-15&quot;:0.39},{&quot;2026-07-16&quot;:0.39},{&quot;2026-07-17&quot;:0.39},{&quot;2026-07-18&quot;:0.38},{&quot;2026-07-19&quot;:0.38},{&quot;2026-07-20&quot;:0.37},{&quot;2026-07-21&quot;:0.37},{&quot;2026-07-22&quot;:0.37},{&quot;2026-07-23&quot;:0.37},{&quot;2026-07-24&quot;:0.42},{&quot;2026-07-25&quot;:0.41},{&quot;2026-07-26&quot;:0.42},{&quot;2026-07-27&quot;:0.43},{&quot;2026-07-28&quot;:0.43},{&quot;2026-07-29&quot;:0.43},{&quot;2026-07-30&quot;:0.43},{&quot;2026-07-31&quot;:0.43},{&quot;2026-08-01&quot;:0.43},{&quot;2026-08-02&quot;:0.43},{&quot;2026-08-03&quot;:0.43},{&quot;2026-08-04&quot;:0.43},{&quot;2026-08-05&quot;:0.4},{&quot;2026-08-07&quot;:0.4},{&quot;2026-08-08&quot;:0.39},{&quot;2026-08-09&quot;:0.39},{&quot;2026-08-10&quot;:0.39},{&quot;2026-08-11&quot;:0.39},{&quot;2026-08-12&quot;:0.39},{&quot;2026-08-13&quot;:0.39},{&quot;2026-08-14&quot;:0.39},{&quot;2026-08-15&quot;:0.38},{&quot;2026-08-16&quot;:0.39},{&quot;2026-08-17&quot;:0.4},{&quot;2026-08-18&quot;:0.4},{&quot;2026-08-19&quot;:0.39},{&quot;2026-08-20&quot;:0.39},{&quot;2026-08-21&quot;:0.38},{&quot;2026-08-22&quot;:0.38},{&quot;2026-08-23&quot;:0.49},{&quot;2026-08-24&quot;:0.5},{&quot;2026-08-25&quot;:0.49},{&quot;2026-08-26&quot;:0.48},{&quot;2026-08-27&quot;:0.48},{&quot;2026-08-28&quot;:0.48},{&quot;2026-08-29&quot;:0.48},{&quot;2026-08-30&quot;:0.49},{&quot;2026-08-31&quot;:0.54},{&quot;2026-09-01&quot;:0.45},{&quot;2026-09-02&quot;:0.44},{&quot;2026-09-03&quot;:0.48},{&quot;2026-09-04&quot;:0.49},{&quot;2026-09-05&quot;:0.45},{&quot;2026-09-06&quot;:0.45},{&quot;2026-09-07&quot;:0.42},{&quot;2026-09-08&quot;:0.42},{&quot;2026-09-09&quot;:0.41},{&quot;2026-09-10&quot;:0.41},{&quot;2026-09-11&quot;:0.71}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.62},{&quot;2026-06-14&quot;:0.62},{&quot;2026-06-15&quot;:0.62},{&quot;2026-06-16&quot;:0.62},{&quot;2026-06-17&quot;:0.62},{&quot;2026-06-18&quot;:0.62},{&quot;2026-06-19&quot;:0.62},{&quot;2026-06-20&quot;:0.62},{&quot;2026-06-21&quot;:0.62},{&quot;2026-06-22&quot;:0.62},{&quot;2026-06-23&quot;:0.62},{&quot;2026-06-24&quot;:0.62},{&quot;2026-06-25&quot;:0.62},{&quot;2026-06-26&quot;:0.62},{&quot;2026-06-27&quot;:0.62},{&quot;2026-06-28&quot;:0.62},{&quot;2026-06-29&quot;:0.62},{&quot;2026-06-30&quot;:0.62},{&quot;2026-07-01&quot;:0.62},{&quot;2026-07-02&quot;:0.63},{&quot;2026-07-03&quot;:0.63},{&quot;2026-07-04&quot;:0.63},{&quot;2026-07-05&quot;:0.63},{&quot;2026-07-06&quot;:0.63},{&quot;2026-07-07&quot;:0.69},{&quot;2026-07-08&quot;:0.69},{&quot;2026-07-09&quot;:0.69},{&quot;2026-07-10&quot;:0.69},{&quot;2026-07-11&quot;:0.69},{&quot;2026-07-12&quot;:0.69},{&quot;2026-07-13&quot;:0.69},{&quot;2026-07-14&quot;:0.69},{&quot;2026-07-15&quot;:0.69},{&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.69},{&quot;2026-07-22&quot;:0.69},{&quot;2026-07-23&quot;:0.69},{&quot;2026-07-24&quot;:0.69},{&quot;2026-07-25&quot;:0.67},{&quot;2026-07-26&quot;:0.65},{&quot;2026-07-27&quot;:0.65},{&quot;2026-07-28&quot;:0.65},{&quot;2026-07-29&quot;:0.65},{&quot;2026-07-30&quot;:0.65},{&quot;2026-07-31&quot;:0.65},{&quot;2026-08-01&quot;:0.65},{&quot;2026-08-02&quot;:0.65},{&quot;2026-08-03&quot;:0.66},{&quot;2026-08-04&quot;:0.66},{&quot;2026-08-05&quot;:0.66},{&quot;2026-08-07&quot;:0.66},{&quot;2026-08-08&quot;:0.66},{&quot;2026-08-09&quot;:0.66},{&quot;2026-08-10&quot;:0.66},{&quot;2026-08-11&quot;:0.67},{&quot;2026-08-12&quot;:0.67},{&quot;2026-08-13&quot;:0.67},{&quot;2026-08-14&quot;:0.67},{&quot;2026-08-15&quot;:0.67},{&quot;2026-08-16&quot;:0.65},{&quot;2026-08-17&quot;:0.65},{&quot;2026-08-18&quot;:0.65},{&quot;2026-08-19&quot;:0.65},{&quot;2026-08-20&quot;:0.65},{&quot;2026-08-21&quot;:0.65},{&quot;2026-08-22&quot;:0.65},{&quot;2026-08-23&quot;:0.65},{&quot;2026-08-24&quot;:0.65},{&quot;2026-08-25&quot;:0.68},{&quot;2026-08-26&quot;:0.68},{&quot;2026-08-27&quot;:0.68},{&quot;2026-08-28&quot;:0.68},{&quot;2026-08-29&quot;:0.68},{&quot;2026-08-30&quot;:0.68},{&quot;2026-08-31&quot;:0.75},{&quot;2026-09-01&quot;:0.79},{&quot;2026-09-02&quot;:0.73},{&quot;2026-09-03&quot;:0.73},{&quot;2026-09-04&quot;:0.73},{&quot;2026-09-05&quot;:0.73},{&quot;2026-09-06&quot;:0.73},{&quot;2026-09-07&quot;:0.77},{&quot;2026-09-08&quot;:0.77},{&quot;2026-09-09&quot;:0.78},{&quot;2026-09-10&quot;:0.78},{&quot;2026-09-11&quot;:0.7}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.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="Viscera Seer" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/8/486fd8a2-dd97-4082-84ef-4795c7e559a0.jpg?1783913867" />

        <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">
            Viscera Seer
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Viscera Seer" src="https://cards.scryfall.io/large/front/4/8/486fd8a2-dd97-4082-84ef-4795c7e559a0.jpg?1783913867" />
    </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.67
              </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.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-12&quot;:0.54},{&quot;2026-06-13&quot;:0.55},{&quot;2026-06-14&quot;:0.55},{&quot;2026-06-15&quot;:0.56},{&quot;2026-06-16&quot;:0.56},{&quot;2026-06-17&quot;:0.57},{&quot;2026-06-18&quot;:0.56},{&quot;2026-06-19&quot;:0.56},{&quot;2026-06-20&quot;:0.55},{&quot;2026-06-21&quot;:0.55},{&quot;2026-06-22&quot;:0.55},{&quot;2026-06-23&quot;:0.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.58},{&quot;2026-06-28&quot;:0.63},{&quot;2026-06-29&quot;:0.65},{&quot;2026-06-30&quot;:0.65},{&quot;2026-07-01&quot;:0.65},{&quot;2026-07-02&quot;:0.63},{&quot;2026-07-03&quot;:0.73},{&quot;2026-07-04&quot;:0.72},{&quot;2026-07-05&quot;:0.71},{&quot;2026-07-06&quot;:0.68},{&quot;2026-07-07&quot;:0.78},{&quot;2026-07-08&quot;:0.78},{&quot;2026-07-09&quot;:0.7},{&quot;2026-07-10&quot;:0.68},{&quot;2026-07-11&quot;:0.55},{&quot;2026-07-12&quot;:0.62},{&quot;2026-07-13&quot;:0.64},{&quot;2026-07-14&quot;:0.64},{&quot;2026-07-15&quot;:0.65},{&quot;2026-07-16&quot;:0.63},{&quot;2026-07-17&quot;:0.6},{&quot;2026-07-18&quot;:0.56},{&quot;2026-07-19&quot;:0.54},{&quot;2026-07-20&quot;:0.53},{&quot;2026-07-21&quot;:0.54},{&quot;2026-07-23&quot;:0.54},{&quot;2026-07-24&quot;:0.61},{&quot;2026-07-25&quot;:0.7},{&quot;2026-07-26&quot;:0.71},{&quot;2026-07-27&quot;:0.69},{&quot;2026-07-28&quot;:0.69},{&quot;2026-07-29&quot;:0.68},{&quot;2026-07-30&quot;:0.67},{&quot;2026-07-31&quot;:0.64},{&quot;2026-08-01&quot;:0.62},{&quot;2026-08-02&quot;:0.62},{&quot;2026-08-03&quot;:0.62},{&quot;2026-08-04&quot;:0.6},{&quot;2026-08-05&quot;:0.57},{&quot;2026-08-07&quot;:0.65},{&quot;2026-08-08&quot;:0.69},{&quot;2026-08-09&quot;:0.69},{&quot;2026-08-10&quot;:0.71},{&quot;2026-08-11&quot;:0.74},{&quot;2026-08-12&quot;:0.75},{&quot;2026-08-13&quot;:0.78},{&quot;2026-08-14&quot;:0.8},{&quot;2026-08-15&quot;:0.8},{&quot;2026-08-16&quot;:0.83},{&quot;2026-08-17&quot;:0.84},{&quot;2026-08-18&quot;:0.85},{&quot;2026-08-19&quot;:0.85},{&quot;2026-08-20&quot;:0.85},{&quot;2026-08-21&quot;:0.92},{&quot;2026-08-22&quot;:0.84},{&quot;2026-08-23&quot;:0.78},{&quot;2026-08-24&quot;:0.83},{&quot;2026-08-25&quot;:0.84},{&quot;2026-08-26&quot;:0.82},{&quot;2026-08-27&quot;:0.83},{&quot;2026-08-28&quot;:0.84},{&quot;2026-08-29&quot;:0.84},{&quot;2026-08-30&quot;:0.76},{&quot;2026-08-31&quot;:0.75},{&quot;2026-09-01&quot;:0.7},{&quot;2026-09-02&quot;:0.67},{&quot;2026-09-03&quot;:0.67},{&quot;2026-09-04&quot;:0.63},{&quot;2026-09-05&quot;:0.64},{&quot;2026-09-06&quot;:0.7},{&quot;2026-09-07&quot;:0.68},{&quot;2026-09-08&quot;:0.67},{&quot;2026-09-09&quot;:0.67},{&quot;2026-09-10&quot;:0.66},{&quot;2026-09-11&quot;:0.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="75975"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-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-50 text-badge-text">
              ↑
              18%
            </span>

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

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

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

        <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/f/c/fc6c69a0-ac24-4486-8893-a6303d08fc6e.jpg?1783913841" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Carmen, Cruel Skymarcher" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/0/c0e07f8a-5290-47c4-a93d-0c3a14afebd3.jpg?1783913936" />

        <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">
            Carmen, Cruel Skymarcher
        </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 — Vampire Soldier</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Carmen, Cruel Skymarcher" src="https://cards.scryfall.io/large/front/c/0/c0e07f8a-5290-47c4-a93d-0c3a14afebd3.jpg?1783913936" />
    </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.20
              </span>

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-11&quot;:0.54},{&quot;2026-06-12&quot;:0.52},{&quot;2026-06-13&quot;:0.52},{&quot;2026-06-14&quot;:0.53},{&quot;2026-06-15&quot;:0.53},{&quot;2026-06-16&quot;:0.54},{&quot;2026-06-17&quot;:0.53},{&quot;2026-06-18&quot;:0.5},{&quot;2026-06-19&quot;:0.54},{&quot;2026-06-20&quot;:0.53},{&quot;2026-06-21&quot;:0.53},{&quot;2026-06-22&quot;:0.52},{&quot;2026-06-23&quot;:0.53},{&quot;2026-06-24&quot;:0.54},{&quot;2026-06-25&quot;:0.52},{&quot;2026-06-26&quot;:0.54},{&quot;2026-06-27&quot;:0.59},{&quot;2026-06-28&quot;:0.58},{&quot;2026-06-29&quot;:0.59},{&quot;2026-06-30&quot;:0.57},{&quot;2026-07-01&quot;:0.58},{&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.52},{&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.51},{&quot;2026-07-10&quot;:0.51},{&quot;2026-07-11&quot;:0.51},{&quot;2026-07-12&quot;:0.51},{&quot;2026-07-13&quot;:0.5},{&quot;2026-07-14&quot;:0.5},{&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.49},{&quot;2026-07-20&quot;:0.5},{&quot;2026-07-21&quot;:0.5},{&quot;2026-07-23&quot;:0.51},{&quot;2026-07-25&quot;:0.53},{&quot;2026-07-26&quot;:0.61},{&quot;2026-07-27&quot;:0.6},{&quot;2026-07-28&quot;:0.6},{&quot;2026-07-29&quot;:0.59},{&quot;2026-07-30&quot;:0.58},{&quot;2026-07-31&quot;:0.53},{&quot;2026-08-01&quot;:0.54},{&quot;2026-08-02&quot;:0.54},{&quot;2026-08-03&quot;:0.54},{&quot;2026-08-04&quot;:0.62},{&quot;2026-08-05&quot;:0.61},{&quot;2026-08-07&quot;:0.59},{&quot;2026-08-08&quot;:0.62},{&quot;2026-08-09&quot;:0.62},{&quot;2026-08-10&quot;:0.64},{&quot;2026-08-11&quot;:0.68},{&quot;2026-08-12&quot;:0.67},{&quot;2026-08-13&quot;:0.67},{&quot;2026-08-14&quot;:0.67},{&quot;2026-08-15&quot;:0.67},{&quot;2026-08-16&quot;:0.67},{&quot;2026-08-17&quot;:0.66},{&quot;2026-08-18&quot;:0.66},{&quot;2026-08-19&quot;:0.65},{&quot;2026-08-20&quot;:0.65},{&quot;2026-08-21&quot;:0.65},{&quot;2026-08-22&quot;:0.67},{&quot;2026-08-23&quot;:0.62},{&quot;2026-08-24&quot;:0.61},{&quot;2026-08-25&quot;:0.61},{&quot;2026-08-26&quot;:0.67},{&quot;2026-08-27&quot;:0.72},{&quot;2026-08-28&quot;:0.74},{&quot;2026-08-29&quot;:0.74},{&quot;2026-08-30&quot;:0.79},{&quot;2026-08-31&quot;:0.67},{&quot;2026-09-01&quot;:0.67},{&quot;2026-09-02&quot;:0.62},{&quot;2026-09-03&quot;:0.57},{&quot;2026-09-04&quot;:0.59},{&quot;2026-09-05&quot;:0.61},{&quot;2026-09-06&quot;:0.62},{&quot;2026-09-07&quot;:0.63},{&quot;2026-09-08&quot;:0.64},{&quot;2026-09-09&quot;:0.63},{&quot;2026-09-10&quot;:0.6},{&quot;2026-09-11&quot;:0.59}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:2.58},{&quot;2026-06-12&quot;:2.58},{&quot;2026-06-13&quot;:2.58},{&quot;2026-06-14&quot;:2.64},{&quot;2026-06-15&quot;:2.64},{&quot;2026-06-16&quot;:2.64},{&quot;2026-06-17&quot;:2.64},{&quot;2026-06-18&quot;:2.64},{&quot;2026-06-19&quot;:2.64},{&quot;2026-06-20&quot;:2.64},{&quot;2026-06-21&quot;:2.64},{&quot;2026-06-22&quot;:2.64},{&quot;2026-06-23&quot;:2.64},{&quot;2026-06-24&quot;:2.64},{&quot;2026-06-25&quot;:2.57},{&quot;2026-06-26&quot;:2.63},{&quot;2026-06-27&quot;:2.63},{&quot;2026-06-28&quot;:2.63},{&quot;2026-06-29&quot;:2.59},{&quot;2026-06-30&quot;:2.59},{&quot;2026-07-01&quot;:2.63},{&quot;2026-07-02&quot;:2.63},{&quot;2026-07-03&quot;:2.63},{&quot;2026-07-04&quot;:2.63},{&quot;2026-07-05&quot;:2.57},{&quot;2026-07-06&quot;:2.57},{&quot;2026-07-07&quot;:2.57},{&quot;2026-07-08&quot;:2.57},{&quot;2026-07-09&quot;:2.57},{&quot;2026-07-10&quot;:2.58},{&quot;2026-07-11&quot;:2.58},{&quot;2026-07-12&quot;:2.97},{&quot;2026-07-13&quot;:2.97},{&quot;2026-07-14&quot;:3.12},{&quot;2026-07-15&quot;:3.12},{&quot;2026-07-16&quot;:3.12},{&quot;2026-07-17&quot;:3.12},{&quot;2026-07-18&quot;:3.12},{&quot;2026-07-19&quot;:3.12},{&quot;2026-07-20&quot;:3.12},{&quot;2026-07-21&quot;:3.12},{&quot;2026-07-23&quot;:3.12},{&quot;2026-07-25&quot;:3.26},{&quot;2026-07-26&quot;:3.26},{&quot;2026-07-27&quot;:3.22},{&quot;2026-07-28&quot;:3.19},{&quot;2026-07-29&quot;:3.2},{&quot;2026-07-30&quot;:3.2},{&quot;2026-07-31&quot;:3.81},{&quot;2026-08-01&quot;:3.81},{&quot;2026-08-02&quot;:4.82},{&quot;2026-08-03&quot;:4.82},{&quot;2026-08-04&quot;:4.75},{&quot;2026-08-05&quot;:4.75},{&quot;2026-08-07&quot;:4.75},{&quot;2026-08-08&quot;:4.75},{&quot;2026-08-09&quot;:4.75},{&quot;2026-08-10&quot;:4.75},{&quot;2026-08-11&quot;:4.75},{&quot;2026-08-12&quot;:4.75},{&quot;2026-08-13&quot;:4.75},{&quot;2026-08-14&quot;:4.75},{&quot;2026-08-15&quot;:4.75},{&quot;2026-08-16&quot;:4.73},{&quot;2026-08-17&quot;:4.71},{&quot;2026-08-18&quot;:4.75},{&quot;2026-08-19&quot;:4.75},{&quot;2026-08-20&quot;:4.75},{&quot;2026-08-21&quot;:5.55},{&quot;2026-08-22&quot;:5.66},{&quot;2026-08-23&quot;:5.66},{&quot;2026-08-24&quot;:5.66},{&quot;2026-08-25&quot;:5.66},{&quot;2026-08-26&quot;:5.6},{&quot;2026-08-27&quot;:5.6},{&quot;2026-08-28&quot;:5.6},{&quot;2026-08-29&quot;:5.6},{&quot;2026-08-30&quot;:5.6},{&quot;2026-08-31&quot;:5.6},{&quot;2026-09-01&quot;:5.6},{&quot;2026-09-02&quot;:6.05},{&quot;2026-09-03&quot;:6.05},{&quot;2026-09-04&quot;:6.11},{&quot;2026-09-05&quot;:6.25},{&quot;2026-09-06&quot;:6.25},{&quot;2026-09-07&quot;:6.25},{&quot;2026-09-08&quot;:6.51},{&quot;2026-09-09&quot;:5.7},{&quot;2026-09-10&quot;:5.7},{&quot;2026-09-11&quot;:5.2}]}"
        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="76020"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Talisman of Hierarchy" src="https://cards.scryfall.io/large/front/1/6/16d49e21-dbe6-41da-b4b0-fd587e3326a5.jpg?1783913836" />
    </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.56
              </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.25</span>
              <span class="text-xs text-grey-text">Credit: $0.33</span>
            </div>
        </div>

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

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

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

    <!-- Quick Actions -->

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Austere Command" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/f/cf1f630e-8b55-4f5a-a7f2-3161801de767.jpg?1783913897" />

        <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">
            Austere Command
        </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="Austere Command" src="https://cards.scryfall.io/large/front/c/f/cf1f630e-8b55-4f5a-a7f2-3161801de767.jpg?1783913897" />
    </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.47
              </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.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;normal&quot;:[{&quot;2026-06-12&quot;:0.55},{&quot;2026-06-13&quot;:0.55},{&quot;2026-06-14&quot;:0.52},{&quot;2026-06-15&quot;:0.51},{&quot;2026-06-16&quot;:0.51},{&quot;2026-06-17&quot;:0.49},{&quot;2026-06-18&quot;:0.47},{&quot;2026-06-19&quot;:0.47},{&quot;2026-06-20&quot;:0.47},{&quot;2026-06-21&quot;:0.48},{&quot;2026-06-22&quot;:0.5},{&quot;2026-06-23&quot;:0.5},{&quot;2026-06-24&quot;:0.5},{&quot;2026-06-25&quot;:0.5},{&quot;2026-06-26&quot;:0.5},{&quot;2026-06-27&quot;:0.5},{&quot;2026-06-28&quot;:0.5},{&quot;2026-06-29&quot;:0.56},{&quot;2026-06-30&quot;:0.55},{&quot;2026-07-01&quot;:0.55},{&quot;2026-07-02&quot;:0.54},{&quot;2026-07-03&quot;:0.54},{&quot;2026-07-04&quot;:0.54},{&quot;2026-07-05&quot;:0.54},{&quot;2026-07-06&quot;:0.55},{&quot;2026-07-07&quot;:0.53},{&quot;2026-07-08&quot;:0.53},{&quot;2026-07-09&quot;:0.55},{&quot;2026-07-10&quot;:0.46},{&quot;2026-07-11&quot;:0.44},{&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.39},{&quot;2026-07-16&quot;:0.4},{&quot;2026-07-17&quot;:0.4},{&quot;2026-07-18&quot;:0.4},{&quot;2026-07-19&quot;:0.4},{&quot;2026-07-20&quot;:0.39},{&quot;2026-07-21&quot;:0.4},{&quot;2026-07-23&quot;:0.42},{&quot;2026-07-24&quot;:0.43},{&quot;2026-07-25&quot;:0.43},{&quot;2026-07-26&quot;:0.44},{&quot;2026-07-27&quot;:0.44},{&quot;2026-07-28&quot;:0.45},{&quot;2026-07-29&quot;:0.44},{&quot;2026-07-30&quot;:0.47},{&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.43},{&quot;2026-08-08&quot;:0.43},{&quot;2026-08-09&quot;:0.41},{&quot;2026-08-10&quot;:0.46},{&quot;2026-08-11&quot;:0.47},{&quot;2026-08-12&quot;:0.47},{&quot;2026-08-13&quot;:0.47},{&quot;2026-08-14&quot;:0.49},{&quot;2026-08-15&quot;:0.49},{&quot;2026-08-16&quot;:0.49},{&quot;2026-08-17&quot;:0.53},{&quot;2026-08-18&quot;:0.53},{&quot;2026-08-19&quot;:0.53},{&quot;2026-08-20&quot;:0.53},{&quot;2026-08-21&quot;:0.53},{&quot;2026-08-22&quot;:0.54},{&quot;2026-08-23&quot;:0.54},{&quot;2026-08-24&quot;:0.54},{&quot;2026-08-25&quot;:0.54},{&quot;2026-08-26&quot;:0.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.5},{&quot;2026-09-01&quot;:0.49},{&quot;2026-09-02&quot;:0.48},{&quot;2026-09-03&quot;:0.48},{&quot;2026-09-04&quot;:0.48},{&quot;2026-09-05&quot;:0.47},{&quot;2026-09-06&quot;:0.47},{&quot;2026-09-07&quot;:0.47},{&quot;2026-09-08&quot;:0.47},{&quot;2026-09-09&quot;:0.47},{&quot;2026-09-10&quot;:0.47},{&quot;2026-09-11&quot;:0.47}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-50 text-badge-text">
              ↑
              39%
            </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="Legion Lieutenant" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/5/85c6bd7d-537a-42fe-9c68-742bdf2e7025.jpg?1783913849" />

        <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">
            Legion Lieutenant
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Creature — Vampire Knight</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><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Legion Lieutenant" src="https://cards.scryfall.io/large/front/8/5/85c6bd7d-537a-42fe-9c68-742bdf2e7025.jpg?1783913849" />
    </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">
                  ↑
                  39%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$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.36},{&quot;2026-06-11&quot;:0.37},{&quot;2026-06-12&quot;:0.35},{&quot;2026-06-13&quot;:0.35},{&quot;2026-06-14&quot;:0.36},{&quot;2026-06-15&quot;:0.36},{&quot;2026-06-16&quot;:0.37},{&quot;2026-06-17&quot;:0.36},{&quot;2026-06-18&quot;:0.37},{&quot;2026-06-19&quot;:0.37},{&quot;2026-06-20&quot;:0.37},{&quot;2026-06-21&quot;:0.39},{&quot;2026-06-22&quot;:0.38},{&quot;2026-06-23&quot;:0.38},{&quot;2026-06-24&quot;:0.38},{&quot;2026-06-25&quot;:0.38},{&quot;2026-06-26&quot;:0.37},{&quot;2026-06-27&quot;:0.38},{&quot;2026-06-28&quot;:0.36},{&quot;2026-06-29&quot;:0.36},{&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.45},{&quot;2026-07-04&quot;:0.45},{&quot;2026-07-05&quot;:0.45},{&quot;2026-07-06&quot;:0.46},{&quot;2026-07-07&quot;:0.47},{&quot;2026-07-08&quot;:0.37},{&quot;2026-07-09&quot;:0.35},{&quot;2026-07-10&quot;:0.35},{&quot;2026-07-11&quot;:0.36},{&quot;2026-07-12&quot;:0.36},{&quot;2026-07-13&quot;:0.36},{&quot;2026-07-14&quot;:0.36},{&quot;2026-07-15&quot;:0.36},{&quot;2026-07-16&quot;:0.36},{&quot;2026-07-17&quot;:0.38},{&quot;2026-07-18&quot;:0.37},{&quot;2026-07-19&quot;:0.37},{&quot;2026-07-20&quot;:0.36},{&quot;2026-07-21&quot;:0.37},{&quot;2026-07-23&quot;:0.37},{&quot;2026-07-25&quot;:0.37},{&quot;2026-07-26&quot;:0.37},{&quot;2026-07-27&quot;:0.35},{&quot;2026-07-29&quot;:0.36},{&quot;2026-07-30&quot;:0.36},{&quot;2026-07-31&quot;:0.35},{&quot;2026-08-01&quot;:0.35},{&quot;2026-08-02&quot;:0.35},{&quot;2026-08-03&quot;:0.35},{&quot;2026-08-04&quot;:0.34},{&quot;2026-08-05&quot;:0.33},{&quot;2026-08-07&quot;:0.34},{&quot;2026-08-08&quot;:0.34},{&quot;2026-08-09&quot;:0.34},{&quot;2026-08-10&quot;:0.34},{&quot;2026-08-11&quot;:0.34},{&quot;2026-08-12&quot;:0.34},{&quot;2026-08-13&quot;:0.34},{&quot;2026-08-14&quot;:0.35},{&quot;2026-08-15&quot;:0.34},{&quot;2026-08-16&quot;:0.35},{&quot;2026-08-17&quot;:0.33},{&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.34},{&quot;2026-08-22&quot;:0.34},{&quot;2026-08-23&quot;:0.34},{&quot;2026-08-24&quot;:0.34},{&quot;2026-08-25&quot;:0.34},{&quot;2026-08-26&quot;:0.33},{&quot;2026-08-27&quot;:0.33},{&quot;2026-08-28&quot;:0.34},{&quot;2026-08-29&quot;:0.34},{&quot;2026-08-30&quot;:0.34},{&quot;2026-08-31&quot;:0.33},{&quot;2026-09-01&quot;:0.33},{&quot;2026-09-02&quot;:0.34},{&quot;2026-09-03&quot;:0.34},{&quot;2026-09-04&quot;:0.32},{&quot;2026-09-05&quot;:0.33},{&quot;2026-09-06&quot;:0.34},{&quot;2026-09-07&quot;:0.33},{&quot;2026-09-08&quot;:0.33},{&quot;2026-09-09&quot;:0.33},{&quot;2026-09-10&quot;:0.46},{&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
  data-controller="mobile-card"
  data-mobile-card-card-id-value="76082"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-rare ss-fw ss-2x flex-shrink-0"></i>

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

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

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

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

        <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">
            Isolated Chapel
        </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="Isolated Chapel" src="https://cards.scryfall.io/large/front/c/6/c688891e-0a25-4630-acfc-c3a0bed2b2f2.jpg?1783913830" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

                <span class="text-xs text-accent-50">
                  ↑
                  22%
                </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-13&quot;:0.35},{&quot;2026-06-14&quot;:0.36},{&quot;2026-06-15&quot;:0.37},{&quot;2026-06-16&quot;:0.37},{&quot;2026-06-17&quot;:0.36},{&quot;2026-06-18&quot;:0.35},{&quot;2026-06-19&quot;:0.35},{&quot;2026-06-20&quot;:0.36},{&quot;2026-06-21&quot;:0.38},{&quot;2026-06-22&quot;:0.36},{&quot;2026-06-23&quot;:0.34},{&quot;2026-06-24&quot;:0.35},{&quot;2026-06-25&quot;:0.35},{&quot;2026-06-26&quot;:0.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.36},{&quot;2026-07-01&quot;:0.35},{&quot;2026-07-02&quot;:0.36},{&quot;2026-07-03&quot;:0.36},{&quot;2026-07-04&quot;:0.35},{&quot;2026-07-05&quot;:0.35},{&quot;2026-07-06&quot;:0.32},{&quot;2026-07-07&quot;:0.35},{&quot;2026-07-08&quot;:0.33},{&quot;2026-07-09&quot;:0.33},{&quot;2026-07-10&quot;:0.33},{&quot;2026-07-11&quot;:0.34},{&quot;2026-07-12&quot;:0.36},{&quot;2026-07-13&quot;:0.36},{&quot;2026-07-14&quot;:0.34},{&quot;2026-07-15&quot;:0.36},{&quot;2026-07-16&quot;:0.35},{&quot;2026-07-17&quot;:0.35},{&quot;2026-07-18&quot;:0.35},{&quot;2026-07-19&quot;:0.36},{&quot;2026-07-20&quot;:0.36},{&quot;2026-07-21&quot;:0.36},{&quot;2026-07-22&quot;:0.35},{&quot;2026-07-23&quot;:0.35},{&quot;2026-07-24&quot;:0.36},{&quot;2026-07-25&quot;:0.35},{&quot;2026-07-26&quot;:0.36},{&quot;2026-07-27&quot;:0.36},{&quot;2026-07-28&quot;:0.35},{&quot;2026-07-29&quot;:0.35},{&quot;2026-07-30&quot;:0.35},{&quot;2026-07-31&quot;:0.35},{&quot;2026-08-01&quot;:0.36},{&quot;2026-08-02&quot;:0.37},{&quot;2026-08-03&quot;:0.38},{&quot;2026-08-04&quot;:0.38},{&quot;2026-08-05&quot;:0.38},{&quot;2026-08-07&quot;:0.34},{&quot;2026-08-08&quot;:0.33},{&quot;2026-08-09&quot;:0.33},{&quot;2026-08-10&quot;:0.33},{&quot;2026-08-11&quot;:0.33},{&quot;2026-08-12&quot;:0.34},{&quot;2026-08-13&quot;:0.33},{&quot;2026-08-14&quot;:0.34},{&quot;2026-08-15&quot;:0.34},{&quot;2026-08-16&quot;:0.35},{&quot;2026-08-17&quot;:0.36},{&quot;2026-08-18&quot;:0.37},{&quot;2026-08-19&quot;:0.36},{&quot;2026-08-20&quot;:0.37},{&quot;2026-08-21&quot;:0.37},{&quot;2026-08-22&quot;:0.37},{&quot;2026-08-23&quot;:0.37},{&quot;2026-08-24&quot;:0.37},{&quot;2026-08-25&quot;:0.37},{&quot;2026-08-26&quot;:0.37},{&quot;2026-08-27&quot;:0.37},{&quot;2026-08-28&quot;:0.38},{&quot;2026-08-29&quot;:0.38},{&quot;2026-08-30&quot;:0.38},{&quot;2026-08-31&quot;:0.36},{&quot;2026-09-01&quot;:0.36},{&quot;2026-09-02&quot;:0.36},{&quot;2026-09-03&quot;:0.36},{&quot;2026-09-04&quot;:0.36},{&quot;2026-09-05&quot;:0.36},{&quot;2026-09-06&quot;:0.34},{&quot;2026-09-07&quot;:0.34},{&quot;2026-09-08&quot;:0.35},{&quot;2026-09-09&quot;:0.35},{&quot;2026-09-10&quot;:0.45},{&quot;2026-09-11&quot;:0.44}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.42
          </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/a/7/a7dc75a8-c500-4b50-aff9-32ce36566104.jpg?1783913824" />

        <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/a/7/a7dc75a8-c500-4b50-aff9-32ce36566104.jpg?1783913824" />
    </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.42
              </span>

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

      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Olivia&#39;s Wrath" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/3/e/3eb5cc8d-a198-43cd-a2bd-9c9414d815b2.jpg?1783913871" />

        <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">
            Olivia&#39;s Wrath
        </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-b'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Olivia&#39;s Wrath" src="https://cards.scryfall.io/large/front/3/e/3eb5cc8d-a198-43cd-a2bd-9c9414d815b2.jpg?1783913871" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Sorin, Lord of Innistrad" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/b/ab98caf7-cc24-4027-ad8a-026150b61858.jpg?1783913845" />

        <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">
            Sorin, Lord of Innistrad
        </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 — Sorin</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Sorin, Lord of Innistrad" src="https://cards.scryfall.io/large/front/a/b/ab98caf7-cc24-4027-ad8a-026150b61858.jpg?1783913845" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Temple of the False God" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/6/96a31b2d-ee3f-48e5-b0dd-481a0c3efea2.jpg?1783913821" />

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

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Temple of the False God
        </h3>

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Temple of the False God" src="https://cards.scryfall.io/large/front/9/6/96a31b2d-ee3f-48e5-b0dd-481a0c3efea2.jpg?1783913821" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Mavren Fein, Dusk Apostle" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/f/d/fdc3e998-760b-41ca-9f92-270aaa82f3fb.jpg?1783913894" />

        <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">
            Mavren Fein, Dusk Apostle
        </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 — Vampire Cleric</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Mavren Fein, Dusk Apostle" src="https://cards.scryfall.io/large/front/f/d/fdc3e998-760b-41ca-9f92-270aaa82f3fb.jpg?1783913894" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

    <!-- Quick Actions -->

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

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

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

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

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

        <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">
            Unclaimed Territory
        </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="Unclaimed Territory" src="https://cards.scryfall.io/large/front/e/7/e7bd3aaa-864c-4cbb-bbab-68d87c824e3d.jpg?1783913819" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

        <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">
            Kindred Boon
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Kindred Boon" src="https://cards.scryfall.io/large/front/a/9/a9d21710-3006-45a0-9af2-275159bb5315.jpg?1783913895" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

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

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

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

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

        <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">
            Bloodline Necromancer
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Bloodline Necromancer" src="https://cards.scryfall.io/large/front/6/b/6b1e719c-4679-4cf0-8ca4-ae740eb0ba92.jpg?1783913877" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

        <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">
            Sanctum Seeker
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Sanctum Seeker" src="https://cards.scryfall.io/large/front/8/9/893279fb-6f51-4d1e-b2fd-a0cdb603785f.jpg?1783913869" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Mind Stone" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/6/8615e46e-56c3-49f6-b4ad-44ec25be5f05.jpg?1783913837" />

        <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">
            Mind Stone
        </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="Mind Stone" src="https://cards.scryfall.io/large/front/8/6/8615e46e-56c3-49f6-b4ad-44ec25be5f05.jpg?1783913837" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

    <!-- Quick Actions -->

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

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

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

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

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

        <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">
            Tainted Field
        </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="Tainted Field" src="https://cards.scryfall.io/large/front/2/9/299b3b1d-4c31-4701-870e-15ee1ef85cd2.jpg?1783913822" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

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

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

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

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

        <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">
            Secluded Courtyard
        </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="Secluded Courtyard" src="https://cards.scryfall.io/large/front/2/6/26c40b2a-cb27-4fad-a9b2-1fb065d44d77.jpg?1783913824" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="New Blood" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/6/e/6ee669ab-0ae6-43e5-86fd-f0dcb621e478.jpg?1783913872" />

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="New Blood" src="https://cards.scryfall.io/large/front/6/e/6ee669ab-0ae6-43e5-86fd-f0dcb621e478.jpg?1783913872" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

        <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.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;normal&quot;:[{&quot;2026-06-10&quot;:0.34},{&quot;2026-06-11&quot;:0.36},{&quot;2026-06-12&quot;:0.36},{&quot;2026-06-13&quot;:0.37},{&quot;2026-06-14&quot;:0.36},{&quot;2026-06-15&quot;:0.36},{&quot;2026-06-16&quot;:0.34},{&quot;2026-06-17&quot;:0.34},{&quot;2026-06-18&quot;:0.33},{&quot;2026-06-19&quot;:0.31},{&quot;2026-06-20&quot;:0.31},{&quot;2026-06-21&quot;:0.31},{&quot;2026-06-22&quot;:0.3},{&quot;2026-06-23&quot;:0.3},{&quot;2026-06-24&quot;:0.3},{&quot;2026-06-25&quot;:0.31},{&quot;2026-06-26&quot;:0.3},{&quot;2026-06-27&quot;:0.31},{&quot;2026-06-28&quot;:0.31},{&quot;2026-06-29&quot;:0.32},{&quot;2026-06-30&quot;:0.32},{&quot;2026-07-01&quot;:0.32},{&quot;2026-07-02&quot;:0.31},{&quot;2026-07-03&quot;:0.3},{&quot;2026-07-04&quot;:0.3},{&quot;2026-07-05&quot;:0.3},{&quot;2026-07-06&quot;:0.31},{&quot;2026-07-07&quot;:0.32},{&quot;2026-07-08&quot;:0.31},{&quot;2026-07-09&quot;:0.33},{&quot;2026-07-10&quot;:0.33},{&quot;2026-07-11&quot;:0.34},{&quot;2026-07-12&quot;:0.34},{&quot;2026-07-13&quot;:0.34},{&quot;2026-07-14&quot;:0.34},{&quot;2026-07-15&quot;:0.33},{&quot;2026-07-16&quot;:0.33},{&quot;2026-07-17&quot;:0.32},{&quot;2026-07-18&quot;:0.33},{&quot;2026-07-19&quot;:0.32},{&quot;2026-07-20&quot;:0.33},{&quot;2026-07-21&quot;:0.33},{&quot;2026-07-23&quot;:0.35},{&quot;2026-07-25&quot;:0.35},{&quot;2026-07-26&quot;:0.35},{&quot;2026-07-27&quot;:0.36},{&quot;2026-07-29&quot;:0.37},{&quot;2026-07-30&quot;:0.38},{&quot;2026-07-31&quot;:0.36},{&quot;2026-08-01&quot;:0.37},{&quot;2026-08-02&quot;:0.37},{&quot;2026-08-03&quot;:0.36},{&quot;2026-08-04&quot;:0.36},{&quot;2026-08-05&quot;:0.36},{&quot;2026-08-07&quot;:0.36},{&quot;2026-08-08&quot;:0.36},{&quot;2026-08-09&quot;:0.36},{&quot;2026-08-10&quot;:0.36},{&quot;2026-08-11&quot;:0.34},{&quot;2026-08-12&quot;:0.34},{&quot;2026-08-13&quot;:0.34},{&quot;2026-08-14&quot;:0.33},{&quot;2026-08-15&quot;:0.33},{&quot;2026-08-16&quot;:0.32},{&quot;2026-08-17&quot;:0.3},{&quot;2026-08-18&quot;:0.29},{&quot;2026-08-19&quot;:0.3},{&quot;2026-08-20&quot;:0.3},{&quot;2026-08-21&quot;:0.28},{&quot;2026-08-22&quot;:0.3},{&quot;2026-08-23&quot;:0.29},{&quot;2026-08-24&quot;:0.31},{&quot;2026-08-25&quot;:0.31},{&quot;2026-08-26&quot;:0.33},{&quot;2026-08-27&quot;:0.33},{&quot;2026-08-28&quot;:0.33},{&quot;2026-08-29&quot;:0.33},{&quot;2026-08-30&quot;:0.35},{&quot;2026-08-31&quot;:0.36},{&quot;2026-09-01&quot;:0.36},{&quot;2026-09-02&quot;:0.33},{&quot;2026-09-03&quot;:0.33},{&quot;2026-09-04&quot;:0.34},{&quot;2026-09-05&quot;:0.34},{&quot;2026-09-06&quot;:0.34},{&quot;2026-09-07&quot;:0.34},{&quot;2026-09-08&quot;:0.34},{&quot;2026-09-09&quot;:0.32},{&quot;2026-09-10&quot;:0.32},{&quot;2026-09-11&quot;:0.33}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Vona, Butcher of Magan" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/7/27beed9c-a42e-46de-8fbc-885da337ae75.jpg?1783913842" />

        <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">
            Vona, Butcher of Magan
        </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 — Vampire Knight</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-b'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Vona, Butcher of Magan" src="https://cards.scryfall.io/large/front/2/7/27beed9c-a42e-46de-8fbc-885da337ae75.jpg?1783913842" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="74476"
  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-lci 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">
            Bartolomé del Presidio
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Bartolomé del Presidio" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/6/9/690ccdc7-6c43-4902-9d11-2f07b7a36b11.jpg?1783913734" />

        <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">
            Bartolomé del Presidio
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Legendary Creature — Vampire Knight</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><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Bartolomé del Presidio" src="https://cards.scryfall.io/large/front/6/9/690ccdc7-6c43-4902-9d11-2f07b7a36b11.jpg?1783913734" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Redemption Choir" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/8/981dcacb-24a3-43bb-bb64-2b227f31dc3e.jpg?1783913912" />

        <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">
            Redemption Choir
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Redemption Choir" src="https://cards.scryfall.io/large/front/9/8/981dcacb-24a3-43bb-bb64-2b227f31dc3e.jpg?1783913912" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

        <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">
            Nighthawk Scavenger
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Nighthawk Scavenger" src="https://cards.scryfall.io/large/front/e/b/ebc64d89-4fa0-40fc-9d93-154d50deaaa1.jpg?1783913872" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

        <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">
            Utter End
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Utter End" src="https://cards.scryfall.io/large/front/b/7/b7d2161e-8ef5-463d-a84f-966e4419fc6c.jpg?1783913842" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

                <span class="text-xs text-accent-100">
                  ↓
                  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.03</span>
              <span class="text-xs text-grey-text">Credit: $0.04</span>
            </div>
        </div>

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

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

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Orzhov Signet" src="https://cards.scryfall.io/large/front/0/f/0f0d3c9c-7b3d-4dd1-bf0a-41652e2e1f94.jpg?1783913836" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

    <!-- Quick Actions -->

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Wayfarer&#39;s Bauble" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/e/2eb513b3-9c9e-4837-8f58-67d698677041.jpg?1783913836" />

        <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">
            Wayfarer&#39;s Bauble
        </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="Wayfarer&#39;s Bauble" src="https://cards.scryfall.io/large/front/2/e/2eb513b3-9c9e-4837-8f58-67d698677041.jpg?1783913836" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.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="Butcher of Malakir" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/d/9d805499-0739-403e-8447-ed2707dc9eb2.jpg?1783913878" />

        <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">
            Butcher of Malakir
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Butcher of Malakir" src="https://cards.scryfall.io/large/front/9/d/9d805499-0739-403e-8447-ed2707dc9eb2.jpg?1783913878" />
    </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.31
              </span>

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

      </div>

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.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="Etchings of the Chosen" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/9/496e4759-9d6b-42fa-833c-1fff2c9d03f2.jpg?1783913851" />

        <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">
            Etchings of the Chosen
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Etchings of the Chosen" src="https://cards.scryfall.io/large/front/4/9/496e4759-9d6b-42fa-833c-1fff2c9d03f2.jpg?1783913851" />
    </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.31
              </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.11</span>
              <span class="text-xs text-grey-text">Credit: $0.14</span>
            </div>
        </div>

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

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

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.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="Orzhov Basilica" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/3/1/315107f2-3c1c-43b5-aa23-80ec8f722861.jpg?1783913825" />

        <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">
            Orzhov Basilica
        </h3>

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Orzhov Basilica" src="https://cards.scryfall.io/large/front/3/1/315107f2-3c1c-43b5-aa23-80ec8f722861.jpg?1783913825" />
    </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.31
              </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.03</span>
              <span class="text-xs text-grey-text">Credit: $0.04</span>
            </div>
        </div>

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

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

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

    <!-- Quick Actions -->

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


    <div
      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 81 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=78&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next">2</a><a href="/load_collection?collection_id=78&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=78&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=78&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=78&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=78&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=78&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=78&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=78&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=78&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=78&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="75684"
          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">
              195
            </td>

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


            </td>

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $38.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">
                $27.00
            </td>

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

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

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

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

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


            </td>

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

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

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

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

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75978"
          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-lcc ss-rare ss-fw ss-2x mr-4"></i>
              Blade of the Bloodchief


            </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">
                  $7.43

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.20
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="75978"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_75978" src="/boxset_card/75978?collection_id=78&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75326"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              71
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-rare ss-fw ss-2x mr-4"></i>
              Elenda&#39;s Hierophant


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Vampire Cleric
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $4.81

                    <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">
                $2.80
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.25
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="75326"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_75326" src="/boxset_card/75326?collection_id=78&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75360"
          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">
              83
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-rare ss-fw ss-2x mr-4"></i>
              Master of Dark Rites


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Vampire Cleric
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.79

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      27%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $3.70
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.22
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="75360"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_75360" src="/boxset_card/75360?collection_id=78&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75527"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              140
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-rare ss-fw ss-2x mr-4"></i>
              Welcoming Vampire


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Vampire
            </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">
                  $3.73

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $2.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.22
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="75527"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_75527" src="/boxset_card/75527?collection_id=78&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75646"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              182
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-uncommon ss-fw ss-2x mr-4"></i>
              Blood Artist


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Vampire
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.47

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      10%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.80
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.56
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="75646"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_75646" src="/boxset_card/75646?collection_id=78&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="76017"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              314
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-uncommon ss-fw ss-2x mr-4"></i>
              Swiftfoot Boots


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact — Equipment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.96

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      13%
                    </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.38
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="76017"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_76017" src="/boxset_card/76017?collection_id=78&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75667"
          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">
              189
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-rare ss-fw ss-2x mr-4"></i>
              Cordial Vampire


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Vampire
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.32

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      8%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.42
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="75667"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_75667" src="/boxset_card/75667?collection_id=78&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75673"
          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">
              191
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-rare ss-fw ss-2x mr-4"></i>
              Damn


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.01

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      13%
                    </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.36
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="75673"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_75673" src="/boxset_card/75673?collection_id=78&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75884"
          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-lcc ss-uncommon ss-fw ss-2x mr-4"></i>
              Cruel Celebrant


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Vampire
            </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><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.97

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      10%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $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.32
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="75884"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_75884" src="/boxset_card/75884?collection_id=78&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75519"
          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">
              137
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-uncommon ss-fw ss-2x mr-4"></i>
              Swords to Plowshares


            </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">
                  $1.92

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      21%
                    </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.45
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="75519"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_75519" src="/boxset_card/75519?collection_id=78&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="76014"
          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">
              313
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-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.77

                    <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.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">
                1.46
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="76014"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_76014" src="/boxset_card/76014?collection_id=78&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75732"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              211
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-mythic ss-fw ss-2x mr-4"></i>
              Twilight Prophet


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Vampire Cleric
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.51

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      15%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.95
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.29
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="75732"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_75732" src="/boxset_card/75732?collection_id=78&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="76035"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              320
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-common ss-fw ss-2x mr-4"></i>
              Bojuka Bog


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.49

                    <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">
                0.45
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="76035"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_76035" src="/boxset_card/76035?collection_id=78&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75652"
          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">
              184
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-rare ss-fw ss-2x mr-4"></i>
              Bloodghast


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Vampire Spirit
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.36

                    <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.27
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="75652"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_75652" src="/boxset_card/75652?collection_id=78&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75679"
          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">
              193
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-mythic ss-fw ss-2x mr-4"></i>
              Drana, Liberator of Malakir


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Vampire Ally
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.83

                    <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.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.19
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="75679"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_75679" src="/boxset_card/75679?collection_id=78&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="76166"
          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">
              367
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-rare ss-fw ss-2x mr-4"></i>
              Vault of the Archangel


            </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.77

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      10%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.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.24
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="76166"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_76166" src="/boxset_card/76166?collection_id=78&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75718"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              206
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-rare ss-fw ss-2x mr-4"></i>
              Pact of the Serpent


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.76

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      36%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.80
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.20
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="75718"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_75718" src="/boxset_card/75718?collection_id=78&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75096"
          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">
              2
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-mythic ss-fw ss-2x mr-4"></i>
              Clavileño, First of the Blessed


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Vampire Cleric
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.71

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      58%
                    </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.36
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="75096"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_75096" src="/boxset_card/75096?collection_id=78&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75738"
          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">
              213
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-common ss-fw ss-2x mr-4"></i>
              Viscera Seer


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Vampire Wizard
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.67

                    <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.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.40
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="75738"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_75738" src="/boxset_card/75738?collection_id=78&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75975"
          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-lcc 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.66

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      18%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.24
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="75975"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_75975" src="/boxset_card/75975?collection_id=78&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75106"
          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">
              5
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-mythic ss-fw ss-2x mr-4"></i>
              Carmen, Cruel Skymarcher


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Vampire Soldier
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.59

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.45
            </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="75106"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_75106" src="/boxset_card/75106?collection_id=78&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="76020"
          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">
              315
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-uncommon ss-fw ss-2x mr-4"></i>
              Talisman of Hierarchy


            </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.56

                    <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.25
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.27
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="76020"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_76020" src="/boxset_card/76020?collection_id=78&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75489"
          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">
              126
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-rare ss-fw ss-2x mr-4"></i>
              Austere Command


            </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">
                <div class="flex items-center gap-2">
                  $0.47

                </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="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.70
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="75489"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_75489" src="/boxset_card/75489?collection_id=78&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75906"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              275
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-uncommon ss-fw ss-2x mr-4"></i>
              Legion Lieutenant


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Vampire Knight
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.46

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      39%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.05
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.11
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="75906"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_75906" src="/boxset_card/75906?collection_id=78&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="76082"
          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">
              337
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-rare ss-fw ss-2x mr-4"></i>
              Isolated Chapel


            </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.44

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      22%
                    </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.17
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="76082"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_76082" src="/boxset_card/76082?collection_id=78&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="76114"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              349
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc 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.42

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      16%
                    </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.35
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="76114"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_76114" src="/boxset_card/76114?collection_id=78&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75714"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              205
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-rare ss-fw ss-2x mr-4"></i>
              Olivia&#39;s Wrath


            </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-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.41

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.25
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.29
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="75714"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_75714" src="/boxset_card/75714?collection_id=78&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75947"
          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">
              289
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-mythic ss-fw ss-2x mr-4"></i>
              Sorin, Lord of Innistrad


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Planeswalker — Sorin
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.41

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      5%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.33
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.48
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="75947"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_75947" src="/boxset_card/75947?collection_id=78&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="76142"
          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">
              359
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-uncommon ss-fw ss-2x mr-4"></i>
              Temple of the False God


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.38

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      23%
                    </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.02
            </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="76142"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_76142" src="/boxset_card/76142?collection_id=78&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75508"
          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">
              133
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-rare ss-fw ss-2x mr-4"></i>
              Mavren Fein, Dusk Apostle


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Vampire Cleric
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.37

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      14%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.23
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="75508"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_75508" src="/boxset_card/75508?collection_id=78&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="76163"
          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">
              366
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-uncommon ss-fw ss-2x mr-4"></i>
              Unclaimed Territory


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.36

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      13%
                    </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.02
            </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.10
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="76163"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_76163" src="/boxset_card/76163?collection_id=78&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75498"
          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">
              129
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-rare ss-fw ss-2x mr-4"></i>
              Kindred Boon


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Enchantment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-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.35

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      5%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.44
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="75498"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_75498" src="/boxset_card/75498?collection_id=78&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75655"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              185
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-uncommon ss-fw ss-2x mr-4"></i>
              Bloodline Necromancer


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Vampire Wizard
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-4'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.35

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.27
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="75655"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_75655" src="/boxset_card/75655?collection_id=78&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75726"
          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">
              209
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-rare ss-fw ss-2x mr-4"></i>
              Sanctum Seeker


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Vampire Knight
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.35

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      17%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.06
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.28
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="75726"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_75726" src="/boxset_card/75726?collection_id=78&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="76002"
          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">
              309
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-common ss-fw ss-2x mr-4"></i>
              Mind Stone


            </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.35

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="76002"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_76002" src="/boxset_card/76002?collection_id=78&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="76133"
          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">
              356
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-uncommon ss-fw ss-2x mr-4"></i>
              Tainted Field


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.35

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      5%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.52
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.01
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="76133"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_76133" src="/boxset_card/76133?collection_id=78&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="76117"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              350
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-uncommon ss-fw ss-2x mr-4"></i>
              Secluded Courtyard


            </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.34

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      13%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.08
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.02
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="76117"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_76117" src="/boxset_card/76117?collection_id=78&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75705"
          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">
              202
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-rare ss-fw ss-2x mr-4"></i>
              New Blood


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.33

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.42
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="75705"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_75705" src="/boxset_card/75705?collection_id=78&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75958"
          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-lcc ss-mythic ss-fw ss-2x mr-4"></i>
              Vona, Butcher of Magan


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Vampire Knight
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.33

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      49%
                    </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.10
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.50
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="75958"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_75958" src="/boxset_card/75958?collection_id=78&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="74476"
          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">
              224
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lci ss-uncommon ss-fw ss-2x mr-4"></i>
              Bartolomé del Presidio


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Vampire Knight
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.32

                    <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.06
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.18
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="74476"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_74476" src="/boxset_card/74476?collection_id=78&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75335"
          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">
              74
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-rare ss-fw ss-2x mr-4"></i>
              Redemption Choir


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Vampire Cleric
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-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.32

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      10%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.33
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.13
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="75335"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_75335" src="/boxset_card/75335?collection_id=78&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75708"
          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">
              203
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-rare ss-fw ss-2x mr-4"></i>
              Nighthawk Scavenger


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Vampire Rogue
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.32

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      20%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.25
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.21
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="75708"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_75708" src="/boxset_card/75708?collection_id=78&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75955"
          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-lcc ss-rare ss-fw ss-2x mr-4"></i>
              Utter End


            </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><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.32

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      9%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.03
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.20
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="75955"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_75955" src="/boxset_card/75955?collection_id=78&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="76006"
          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">
              310
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-uncommon ss-fw ss-2x mr-4"></i>
              Orzhov 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.32

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      10%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $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.12
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="76006"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_76006" src="/boxset_card/76006?collection_id=78&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="76026"
          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">
              317
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-common ss-fw ss-2x mr-4"></i>
              Wayfarer&#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-1'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.32

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.08
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.08
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="76026"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_76026" src="/boxset_card/76026?collection_id=78&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75661"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              187
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-rare ss-fw ss-2x mr-4"></i>
              Butcher of Malakir


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Vampire Warrior
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-5'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.31

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      9%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.20
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="75661"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_75661" src="/boxset_card/75661?collection_id=78&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75890"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              269
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-uncommon ss-fw ss-2x mr-4"></i>
              Etchings of the Chosen


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Enchantment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.31

                    <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.11
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.16
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="75890"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_75890" src="/boxset_card/75890?collection_id=78&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="76103"
          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">
              345
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-common ss-fw ss-2x mr-4"></i>
              Orzhov Basilica


            </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.31

                    <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.03
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.12
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="76103"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_76103" src="/boxset_card/76103?collection_id=78&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 81 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=78&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next">2</a><a href="/load_collection?collection_id=78&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next" aria-label="Next">&gt;</a></nav>
    </div>
</div>

</template></turbo-stream>