<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="312" 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="30546"
  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-4ed 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">
            Mana Vault
        </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">
            2 owned
          </div>

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

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

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

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

        <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">
            Mana Vault
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-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="Mana Vault" src="https://cards.scryfall.io/large/front/3/b/3be9942c-89b3-422f-bb9d-b55f51a22a37.jpg?1783947798" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$55.00</span>
              <span class="text-xs text-grey-text">Credit: $71.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;:95.69},{&quot;2026-06-14&quot;:97.42},{&quot;2026-06-15&quot;:97.86},{&quot;2026-06-16&quot;:97.86},{&quot;2026-06-17&quot;:98.86},{&quot;2026-06-18&quot;:98.62},{&quot;2026-06-19&quot;:98.62},{&quot;2026-06-20&quot;:98.62},{&quot;2026-06-21&quot;:98.62},{&quot;2026-06-22&quot;:98.62},{&quot;2026-06-23&quot;:98.62},{&quot;2026-06-24&quot;:98.62},{&quot;2026-06-25&quot;:98.62},{&quot;2026-06-26&quot;:98.63},{&quot;2026-06-27&quot;:98.63},{&quot;2026-06-28&quot;:98.63},{&quot;2026-06-29&quot;:98.63},{&quot;2026-06-30&quot;:98.63},{&quot;2026-07-01&quot;:98.63},{&quot;2026-07-02&quot;:98.63},{&quot;2026-07-03&quot;:98.64},{&quot;2026-07-04&quot;:99.19},{&quot;2026-07-05&quot;:99.19},{&quot;2026-07-06&quot;:99.19},{&quot;2026-07-07&quot;:99.19},{&quot;2026-07-08&quot;:99.19},{&quot;2026-07-09&quot;:99.19},{&quot;2026-07-10&quot;:99.19},{&quot;2026-07-11&quot;:99.19},{&quot;2026-07-12&quot;:98.82},{&quot;2026-07-13&quot;:98.82},{&quot;2026-07-14&quot;:98.82},{&quot;2026-07-15&quot;:98.52},{&quot;2026-07-16&quot;:98.52},{&quot;2026-07-17&quot;:96.9},{&quot;2026-07-18&quot;:96.9},{&quot;2026-07-19&quot;:96.9},{&quot;2026-07-20&quot;:96.9},{&quot;2026-07-21&quot;:96.9},{&quot;2026-07-22&quot;:96.9},{&quot;2026-07-23&quot;:96.9},{&quot;2026-07-24&quot;:96.63},{&quot;2026-07-25&quot;:96.63},{&quot;2026-07-26&quot;:96.63},{&quot;2026-07-27&quot;:96.44},{&quot;2026-07-28&quot;:96.19},{&quot;2026-07-29&quot;:96.19},{&quot;2026-07-30&quot;:96.19},{&quot;2026-07-31&quot;:96.19},{&quot;2026-08-01&quot;:96.19},{&quot;2026-08-02&quot;:96.19},{&quot;2026-08-03&quot;:96.33},{&quot;2026-08-04&quot;:95.91},{&quot;2026-08-05&quot;:96.33},{&quot;2026-08-07&quot;:96.33},{&quot;2026-08-08&quot;:96.33},{&quot;2026-08-09&quot;:96.33},{&quot;2026-08-10&quot;:96.41},{&quot;2026-08-11&quot;:96.41},{&quot;2026-08-12&quot;:96.41},{&quot;2026-08-13&quot;:96.41},{&quot;2026-08-14&quot;:96.41},{&quot;2026-08-15&quot;:93.52},{&quot;2026-08-16&quot;:93.52},{&quot;2026-08-17&quot;:93.52},{&quot;2026-08-18&quot;:93.52},{&quot;2026-08-19&quot;:93.52},{&quot;2026-08-20&quot;:93.52},{&quot;2026-08-21&quot;:91.07},{&quot;2026-08-22&quot;:91.07},{&quot;2026-08-23&quot;:91.07},{&quot;2026-08-24&quot;:91.05},{&quot;2026-08-25&quot;:88.06},{&quot;2026-08-26&quot;:88.06},{&quot;2026-08-27&quot;:88.06},{&quot;2026-08-28&quot;:87.81},{&quot;2026-08-29&quot;:87.81},{&quot;2026-08-30&quot;:87.68},{&quot;2026-08-31&quot;:88.07},{&quot;2026-09-01&quot;:88.22},{&quot;2026-09-02&quot;:87.8},{&quot;2026-09-03&quot;:87.31},{&quot;2026-09-04&quot;:87.31},{&quot;2026-09-05&quot;:87.31},{&quot;2026-09-06&quot;:87.31},{&quot;2026-09-07&quot;:86.84},{&quot;2026-09-08&quot;:86.84},{&quot;2026-09-09&quot;:86.84},{&quot;2026-09-10&quot;:86.84},{&quot;2026-09-11&quot;:86.84}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="33969"
  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-ice 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">
            Necropotence
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Necropotence
        </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-b'></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="Necropotence" src="https://cards.scryfall.io/large/front/5/4/54d7a0c1-efb4-4a8d-ad92-a96d43835052.jpg?1783947497" />
    </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">
                $47.40
              </span>

            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$35.00</span>
              <span class="text-xs text-grey-text">Credit: $45.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;:51.9},{&quot;2026-06-14&quot;:51.8},{&quot;2026-06-15&quot;:50.64},{&quot;2026-06-16&quot;:50.64},{&quot;2026-06-17&quot;:50.64},{&quot;2026-06-18&quot;:51.32},{&quot;2026-06-19&quot;:51.32},{&quot;2026-06-20&quot;:51.32},{&quot;2026-06-21&quot;:50.11},{&quot;2026-06-22&quot;:50.11},{&quot;2026-06-23&quot;:50.99},{&quot;2026-06-24&quot;:50.99},{&quot;2026-06-25&quot;:50.99},{&quot;2026-06-26&quot;:50.99},{&quot;2026-06-27&quot;:50.99},{&quot;2026-06-28&quot;:50.99},{&quot;2026-06-29&quot;:50.84},{&quot;2026-06-30&quot;:50.94},{&quot;2026-07-01&quot;:50.94},{&quot;2026-07-02&quot;:50.94},{&quot;2026-07-03&quot;:50.94},{&quot;2026-07-04&quot;:50.94},{&quot;2026-07-05&quot;:50.94},{&quot;2026-07-06&quot;:50.94},{&quot;2026-07-07&quot;:50.94},{&quot;2026-07-08&quot;:50.94},{&quot;2026-07-09&quot;:50.94},{&quot;2026-07-10&quot;:50.94},{&quot;2026-07-11&quot;:50.94},{&quot;2026-07-12&quot;:50.94},{&quot;2026-07-13&quot;:50.94},{&quot;2026-07-14&quot;:50.94},{&quot;2026-07-15&quot;:50.76},{&quot;2026-07-16&quot;:50.76},{&quot;2026-07-17&quot;:50.76},{&quot;2026-07-18&quot;:50.76},{&quot;2026-07-19&quot;:50.76},{&quot;2026-07-20&quot;:50.54},{&quot;2026-07-21&quot;:50.54},{&quot;2026-07-22&quot;:50.17},{&quot;2026-07-23&quot;:50.41},{&quot;2026-07-24&quot;:50.41},{&quot;2026-07-25&quot;:50.41},{&quot;2026-07-26&quot;:50.41},{&quot;2026-07-27&quot;:50.41},{&quot;2026-07-28&quot;:50.41},{&quot;2026-07-29&quot;:50.41},{&quot;2026-07-30&quot;:50.41},{&quot;2026-07-31&quot;:50.41},{&quot;2026-08-01&quot;:50.09},{&quot;2026-08-02&quot;:50.09},{&quot;2026-08-03&quot;:49.85},{&quot;2026-08-04&quot;:50.5},{&quot;2026-08-05&quot;:50.5},{&quot;2026-08-07&quot;:50.5},{&quot;2026-08-08&quot;:50.5},{&quot;2026-08-09&quot;:50.5},{&quot;2026-08-10&quot;:50.5},{&quot;2026-08-11&quot;:50.5},{&quot;2026-08-12&quot;:49.85},{&quot;2026-08-13&quot;:50.53},{&quot;2026-08-14&quot;:50.47},{&quot;2026-08-15&quot;:50.47},{&quot;2026-08-16&quot;:50.47},{&quot;2026-08-17&quot;:50.34},{&quot;2026-08-18&quot;:50.34},{&quot;2026-08-19&quot;:50.34},{&quot;2026-08-20&quot;:50.34},{&quot;2026-08-21&quot;:49.74},{&quot;2026-08-22&quot;:49.71},{&quot;2026-08-23&quot;:49.71},{&quot;2026-08-24&quot;:49.71},{&quot;2026-08-25&quot;:49.71},{&quot;2026-08-26&quot;:49.77},{&quot;2026-08-27&quot;:49.67},{&quot;2026-08-28&quot;:49.67},{&quot;2026-08-29&quot;:49.67},{&quot;2026-08-30&quot;:49.42},{&quot;2026-08-31&quot;:49.1},{&quot;2026-09-01&quot;:49.1},{&quot;2026-09-02&quot;:49.1},{&quot;2026-09-03&quot;:48.34},{&quot;2026-09-04&quot;:48.34},{&quot;2026-09-05&quot;:47.38},{&quot;2026-09-06&quot;:47.38},{&quot;2026-09-07&quot;:47.38},{&quot;2026-09-08&quot;:47.38},{&quot;2026-09-09&quot;:47.38},{&quot;2026-09-10&quot;:47.38},{&quot;2026-09-11&quot;:47.4}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Concordant Crossroads" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/3/13cfca5f-e25a-432e-8679-54704eeeecc8.jpg?1783947363" />

        <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">
            Concordant Crossroads
        </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">World Enchantment</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Concordant Crossroads" src="https://cards.scryfall.io/large/front/1/3/13cfca5f-e25a-432e-8679-54704eeeecc8.jpg?1783947363" />
    </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">
                $33.24
              </span>

            </div>
          </div>

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:23.29},{&quot;2026-06-14&quot;:23.17},{&quot;2026-06-15&quot;:23.03},{&quot;2026-06-16&quot;:23.03},{&quot;2026-06-17&quot;:23.32},{&quot;2026-06-18&quot;:23.6},{&quot;2026-06-19&quot;:24.13},{&quot;2026-06-20&quot;:24.25},{&quot;2026-06-21&quot;:24.39},{&quot;2026-06-22&quot;:24.21},{&quot;2026-06-23&quot;:24.04},{&quot;2026-06-24&quot;:23.78},{&quot;2026-06-25&quot;:24.0},{&quot;2026-06-26&quot;:24.76},{&quot;2026-06-27&quot;:24.89},{&quot;2026-06-28&quot;:25.01},{&quot;2026-06-29&quot;:25.01},{&quot;2026-06-30&quot;:25.01},{&quot;2026-07-01&quot;:25.68},{&quot;2026-07-02&quot;:25.68},{&quot;2026-07-03&quot;:25.36},{&quot;2026-07-04&quot;:25.86},{&quot;2026-07-05&quot;:25.86},{&quot;2026-07-06&quot;:25.86},{&quot;2026-07-07&quot;:25.86},{&quot;2026-07-08&quot;:25.86},{&quot;2026-07-09&quot;:26.11},{&quot;2026-07-10&quot;:26.36},{&quot;2026-07-11&quot;:26.42},{&quot;2026-07-12&quot;:26.86},{&quot;2026-07-13&quot;:27.12},{&quot;2026-07-14&quot;:27.12},{&quot;2026-07-15&quot;:27.68},{&quot;2026-07-16&quot;:27.68},{&quot;2026-07-17&quot;:28.04},{&quot;2026-07-18&quot;:28.22},{&quot;2026-07-19&quot;:28.22},{&quot;2026-07-20&quot;:28.22},{&quot;2026-07-21&quot;:28.22},{&quot;2026-07-22&quot;:28.22},{&quot;2026-07-23&quot;:29.29},{&quot;2026-07-24&quot;:29.29},{&quot;2026-07-25&quot;:29.31},{&quot;2026-07-26&quot;:29.8},{&quot;2026-07-27&quot;:29.98},{&quot;2026-07-28&quot;:30.17},{&quot;2026-07-29&quot;:30.4},{&quot;2026-07-30&quot;:30.4},{&quot;2026-07-31&quot;:30.76},{&quot;2026-08-01&quot;:30.76},{&quot;2026-08-02&quot;:30.71},{&quot;2026-08-03&quot;:31.36},{&quot;2026-08-04&quot;:31.42},{&quot;2026-08-05&quot;:31.42},{&quot;2026-08-07&quot;:31.26},{&quot;2026-08-08&quot;:31.15},{&quot;2026-08-09&quot;:31.75},{&quot;2026-08-10&quot;:31.75},{&quot;2026-08-11&quot;:31.75},{&quot;2026-08-12&quot;:31.14},{&quot;2026-08-13&quot;:31.14},{&quot;2026-08-14&quot;:31.14},{&quot;2026-08-15&quot;:31.14},{&quot;2026-08-16&quot;:31.14},{&quot;2026-08-17&quot;:31.13},{&quot;2026-08-18&quot;:31.13},{&quot;2026-08-19&quot;:31.18},{&quot;2026-08-20&quot;:31.2},{&quot;2026-08-21&quot;:31.5},{&quot;2026-08-22&quot;:31.5},{&quot;2026-08-23&quot;:31.5},{&quot;2026-08-24&quot;:31.82},{&quot;2026-08-25&quot;:31.82},{&quot;2026-08-26&quot;:31.82},{&quot;2026-08-27&quot;:32.2},{&quot;2026-08-28&quot;:32.2},{&quot;2026-08-29&quot;:32.2},{&quot;2026-08-30&quot;:32.2},{&quot;2026-08-31&quot;:32.44},{&quot;2026-09-01&quot;:32.44},{&quot;2026-09-02&quot;:32.99},{&quot;2026-09-03&quot;:32.99},{&quot;2026-09-04&quot;:32.99},{&quot;2026-09-05&quot;:33.24},{&quot;2026-09-06&quot;:33.24},{&quot;2026-09-07&quot;:33.24},{&quot;2026-09-08&quot;:33.24},{&quot;2026-09-09&quot;:33.24},{&quot;2026-09-10&quot;:33.24},{&quot;2026-09-11&quot;:33.24}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="33531"
  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-hml 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">
            Didgeridoo
        </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">
              ↑
              16%
            </span>

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

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

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

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

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-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="Didgeridoo" src="https://cards.scryfall.io/large/front/8/2/828f8f68-abe2-4e39-b3e4-991dceacd5d9.jpg?1783947274" />
    </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">
                $20.50
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  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">$11.50</span>
              <span class="text-xs text-grey-text">Credit: $14.95</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-08&quot;:14.24},{&quot;2026-06-10&quot;:14.24},{&quot;2026-06-11&quot;:14.2},{&quot;2026-06-12&quot;:14.2},{&quot;2026-06-13&quot;:14.2},{&quot;2026-06-14&quot;:14.13},{&quot;2026-06-15&quot;:14.13},{&quot;2026-06-16&quot;:14.13},{&quot;2026-06-17&quot;:14.13},{&quot;2026-06-18&quot;:14.13},{&quot;2026-06-19&quot;:14.13},{&quot;2026-06-20&quot;:14.13},{&quot;2026-06-21&quot;:14.13},{&quot;2026-06-22&quot;:14.13},{&quot;2026-06-24&quot;:14.04},{&quot;2026-06-25&quot;:14.04},{&quot;2026-06-26&quot;:14.04},{&quot;2026-06-27&quot;:14.04},{&quot;2026-06-28&quot;:14.04},{&quot;2026-06-29&quot;:13.74},{&quot;2026-06-30&quot;:13.79},{&quot;2026-07-01&quot;:13.94},{&quot;2026-07-02&quot;:13.94},{&quot;2026-07-03&quot;:13.94},{&quot;2026-07-04&quot;:13.94},{&quot;2026-07-05&quot;:13.98},{&quot;2026-07-06&quot;:14.07},{&quot;2026-07-07&quot;:14.76},{&quot;2026-07-08&quot;:14.76},{&quot;2026-07-09&quot;:14.76},{&quot;2026-07-10&quot;:14.76},{&quot;2026-07-11&quot;:14.69},{&quot;2026-07-12&quot;:14.69},{&quot;2026-07-13&quot;:14.69},{&quot;2026-07-14&quot;:14.69},{&quot;2026-07-15&quot;:14.79},{&quot;2026-07-16&quot;:14.87},{&quot;2026-07-17&quot;:14.87},{&quot;2026-07-18&quot;:14.87},{&quot;2026-07-19&quot;:15.0},{&quot;2026-07-20&quot;:15.08},{&quot;2026-07-21&quot;:15.1},{&quot;2026-07-23&quot;:15.1},{&quot;2026-07-25&quot;:15.1},{&quot;2026-07-26&quot;:15.1},{&quot;2026-07-27&quot;:15.1},{&quot;2026-07-29&quot;:15.25},{&quot;2026-07-30&quot;:15.25},{&quot;2026-07-31&quot;:15.25},{&quot;2026-08-01&quot;:15.25},{&quot;2026-08-02&quot;:15.25},{&quot;2026-08-03&quot;:15.53},{&quot;2026-08-04&quot;:15.53},{&quot;2026-08-05&quot;:16.32},{&quot;2026-08-07&quot;:16.32},{&quot;2026-08-08&quot;:16.32},{&quot;2026-08-09&quot;:16.32},{&quot;2026-08-10&quot;:16.32},{&quot;2026-08-11&quot;:16.32},{&quot;2026-08-12&quot;:16.32},{&quot;2026-08-13&quot;:16.32},{&quot;2026-08-14&quot;:16.32},{&quot;2026-08-15&quot;:17.29},{&quot;2026-08-16&quot;:17.65},{&quot;2026-08-17&quot;:17.65},{&quot;2026-08-18&quot;:17.65},{&quot;2026-08-19&quot;:17.26},{&quot;2026-08-20&quot;:17.26},{&quot;2026-08-21&quot;:17.26},{&quot;2026-08-22&quot;:17.63},{&quot;2026-08-23&quot;:18.01},{&quot;2026-08-24&quot;:18.01},{&quot;2026-08-25&quot;:18.01},{&quot;2026-08-26&quot;:18.01},{&quot;2026-08-27&quot;:18.01},{&quot;2026-08-28&quot;:18.01},{&quot;2026-08-29&quot;:18.01},{&quot;2026-08-30&quot;:18.01},{&quot;2026-08-31&quot;:18.01},{&quot;2026-09-01&quot;:18.01},{&quot;2026-09-02&quot;:18.01},{&quot;2026-09-03&quot;:18.01},{&quot;2026-09-04&quot;:17.67},{&quot;2026-09-05&quot;:17.67},{&quot;2026-09-06&quot;:17.67},{&quot;2026-09-07&quot;:17.67},{&quot;2026-09-08&quot;:17.67},{&quot;2026-09-09&quot;:17.67},{&quot;2026-09-10&quot;:19.39},{&quot;2026-09-11&quot;:20.5}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="29596"
  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-4ed 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">
            Armageddon
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $17.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="Armageddon" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/7/0794bc35-a8e1-4268-87b2-af5483ca6e5e.jpg?1783947875" />

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

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
          </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="Armageddon" src="https://cards.scryfall.io/large/front/0/7/0794bc35-a8e1-4268-87b2-af5483ca6e5e.jpg?1783947875" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-12&quot;:18.04},{&quot;2026-06-13&quot;:18.3},{&quot;2026-06-14&quot;:18.3},{&quot;2026-06-15&quot;:18.3},{&quot;2026-06-16&quot;:18.3},{&quot;2026-06-17&quot;:18.3},{&quot;2026-06-18&quot;:18.3},{&quot;2026-06-19&quot;:18.3},{&quot;2026-06-20&quot;:18.3},{&quot;2026-06-21&quot;:18.3},{&quot;2026-06-22&quot;:18.3},{&quot;2026-06-23&quot;:18.3},{&quot;2026-06-24&quot;:18.3},{&quot;2026-06-25&quot;:18.3},{&quot;2026-06-26&quot;:18.3},{&quot;2026-06-27&quot;:18.3},{&quot;2026-06-28&quot;:18.3},{&quot;2026-06-29&quot;:18.3},{&quot;2026-06-30&quot;:18.3},{&quot;2026-07-01&quot;:18.3},{&quot;2026-07-02&quot;:18.3},{&quot;2026-07-03&quot;:18.3},{&quot;2026-07-04&quot;:18.48},{&quot;2026-07-05&quot;:18.48},{&quot;2026-07-06&quot;:18.48},{&quot;2026-07-07&quot;:18.48},{&quot;2026-07-08&quot;:18.48},{&quot;2026-07-09&quot;:18.48},{&quot;2026-07-10&quot;:18.48},{&quot;2026-07-11&quot;:18.48},{&quot;2026-07-12&quot;:18.52},{&quot;2026-07-13&quot;:18.52},{&quot;2026-07-14&quot;:18.52},{&quot;2026-07-15&quot;:18.52},{&quot;2026-07-16&quot;:18.52},{&quot;2026-07-17&quot;:18.52},{&quot;2026-07-18&quot;:18.52},{&quot;2026-07-19&quot;:18.52},{&quot;2026-07-20&quot;:18.52},{&quot;2026-07-21&quot;:18.52},{&quot;2026-07-23&quot;:18.52},{&quot;2026-07-24&quot;:18.52},{&quot;2026-07-25&quot;:18.52},{&quot;2026-07-26&quot;:18.52},{&quot;2026-07-27&quot;:18.52},{&quot;2026-07-28&quot;:18.73},{&quot;2026-07-29&quot;:18.99},{&quot;2026-07-30&quot;:18.99},{&quot;2026-07-31&quot;:18.99},{&quot;2026-08-01&quot;:18.99},{&quot;2026-08-02&quot;:18.99},{&quot;2026-08-03&quot;:18.99},{&quot;2026-08-04&quot;:18.99},{&quot;2026-08-05&quot;:18.99},{&quot;2026-08-07&quot;:18.99},{&quot;2026-08-08&quot;:18.99},{&quot;2026-08-09&quot;:18.99},{&quot;2026-08-10&quot;:18.99},{&quot;2026-08-11&quot;:19.23},{&quot;2026-08-12&quot;:19.23},{&quot;2026-08-13&quot;:19.23},{&quot;2026-08-14&quot;:19.17},{&quot;2026-08-15&quot;:19.49},{&quot;2026-08-16&quot;:19.49},{&quot;2026-08-17&quot;:19.49},{&quot;2026-08-18&quot;:19.52},{&quot;2026-08-19&quot;:19.52},{&quot;2026-08-20&quot;:19.52},{&quot;2026-08-21&quot;:19.87},{&quot;2026-08-22&quot;:20.11},{&quot;2026-08-23&quot;:19.48},{&quot;2026-08-24&quot;:19.48},{&quot;2026-08-25&quot;:19.48},{&quot;2026-08-26&quot;:19.48},{&quot;2026-08-27&quot;:19.48},{&quot;2026-08-28&quot;:19.2},{&quot;2026-08-29&quot;:19.2},{&quot;2026-08-30&quot;:19.09},{&quot;2026-08-31&quot;:19.09},{&quot;2026-09-01&quot;:19.09},{&quot;2026-09-02&quot;:19.09},{&quot;2026-09-03&quot;:19.09},{&quot;2026-09-04&quot;:19.09},{&quot;2026-09-05&quot;:19.35},{&quot;2026-09-06&quot;:19.35},{&quot;2026-09-07&quot;:17.82},{&quot;2026-09-08&quot;:17.82},{&quot;2026-09-09&quot;:17.82},{&quot;2026-09-10&quot;:17.97},{&quot;2026-09-11&quot;:17.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="30629"
  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-4ed 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">
            Strip Mine
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $16.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="Strip Mine" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/5/a5899b46-226b-4be6-8e80-d2396f54210d.jpg?1783947790" />

        <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">
            Strip Mine
        </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="Strip Mine" src="https://cards.scryfall.io/large/front/a/5/a5899b46-226b-4be6-8e80-d2396f54210d.jpg?1783947790" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:21.7},{&quot;2026-06-11&quot;:21.7},{&quot;2026-06-12&quot;:21.7},{&quot;2026-06-13&quot;:21.7},{&quot;2026-06-14&quot;:21.7},{&quot;2026-06-15&quot;:21.17},{&quot;2026-06-16&quot;:21.17},{&quot;2026-06-17&quot;:21.38},{&quot;2026-06-18&quot;:21.38},{&quot;2026-06-19&quot;:21.38},{&quot;2026-06-20&quot;:21.38},{&quot;2026-06-21&quot;:21.38},{&quot;2026-06-22&quot;:21.38},{&quot;2026-06-23&quot;:21.38},{&quot;2026-06-24&quot;:21.38},{&quot;2026-06-25&quot;:21.15},{&quot;2026-06-26&quot;:21.19},{&quot;2026-06-27&quot;:21.05},{&quot;2026-06-28&quot;:21.05},{&quot;2026-06-29&quot;:21.05},{&quot;2026-06-30&quot;:21.06},{&quot;2026-07-01&quot;:21.06},{&quot;2026-07-02&quot;:21.06},{&quot;2026-07-03&quot;:21.06},{&quot;2026-07-04&quot;:20.61},{&quot;2026-07-05&quot;:20.3},{&quot;2026-07-06&quot;:20.3},{&quot;2026-07-07&quot;:20.3},{&quot;2026-07-08&quot;:20.4},{&quot;2026-07-09&quot;:19.77},{&quot;2026-07-10&quot;:19.08},{&quot;2026-07-11&quot;:18.45},{&quot;2026-07-12&quot;:18.45},{&quot;2026-07-13&quot;:18.45},{&quot;2026-07-14&quot;:17.83},{&quot;2026-07-15&quot;:17.24},{&quot;2026-07-16&quot;:17.24},{&quot;2026-07-17&quot;:17.24},{&quot;2026-07-18&quot;:17.21},{&quot;2026-07-19&quot;:17.21},{&quot;2026-07-20&quot;:17.42},{&quot;2026-07-21&quot;:17.42},{&quot;2026-07-23&quot;:17.42},{&quot;2026-07-25&quot;:17.33},{&quot;2026-07-26&quot;:17.39},{&quot;2026-07-27&quot;:17.45},{&quot;2026-07-29&quot;:17.25},{&quot;2026-07-30&quot;:17.28},{&quot;2026-07-31&quot;:17.18},{&quot;2026-08-01&quot;:17.18},{&quot;2026-08-02&quot;:17.15},{&quot;2026-08-03&quot;:17.15},{&quot;2026-08-04&quot;:17.23},{&quot;2026-08-05&quot;:17.18},{&quot;2026-08-07&quot;:17.22},{&quot;2026-08-08&quot;:17.22},{&quot;2026-08-09&quot;:17.22},{&quot;2026-08-10&quot;:17.28},{&quot;2026-08-11&quot;:17.2},{&quot;2026-08-12&quot;:17.2},{&quot;2026-08-13&quot;:17.24},{&quot;2026-08-14&quot;:17.24},{&quot;2026-08-15&quot;:17.24},{&quot;2026-08-16&quot;:17.03},{&quot;2026-08-17&quot;:17.03},{&quot;2026-08-18&quot;:16.59},{&quot;2026-08-19&quot;:16.69},{&quot;2026-08-20&quot;:16.69},{&quot;2026-08-21&quot;:16.69},{&quot;2026-08-22&quot;:16.57},{&quot;2026-08-23&quot;:16.57},{&quot;2026-08-24&quot;:16.65},{&quot;2026-08-25&quot;:16.65},{&quot;2026-08-26&quot;:16.6},{&quot;2026-08-27&quot;:16.96},{&quot;2026-08-28&quot;:16.91},{&quot;2026-08-29&quot;:16.91},{&quot;2026-08-30&quot;:16.79},{&quot;2026-08-31&quot;:16.79},{&quot;2026-09-01&quot;:16.79},{&quot;2026-09-02&quot;:16.8},{&quot;2026-09-03&quot;:16.76},{&quot;2026-09-04&quot;:16.76},{&quot;2026-09-05&quot;:16.77},{&quot;2026-09-06&quot;:16.77},{&quot;2026-09-07&quot;:16.77},{&quot;2026-09-08&quot;:16.73},{&quot;2026-09-09&quot;:16.73},{&quot;2026-09-10&quot;:16.67},{&quot;2026-09-11&quot;:16.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="6452"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-chr ss-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">
            Ashnod&#39;s Altar
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Ashnod&#39;s Altar" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/5/d5e1a75e-1369-4f28-bb7d-e7ea2e6087e9.jpg?1783947356" />

        <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">
            Ashnod&#39;s Altar
        </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-3'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Ashnod&#39;s Altar" src="https://cards.scryfall.io/large/front/d/5/d5e1a75e-1369-4f28-bb7d-e7ea2e6087e9.jpg?1783947356" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:14.16},{&quot;2026-06-14&quot;:14.16},{&quot;2026-06-15&quot;:14.13},{&quot;2026-06-16&quot;:14.05},{&quot;2026-06-17&quot;:13.64},{&quot;2026-06-18&quot;:13.7},{&quot;2026-06-19&quot;:13.18},{&quot;2026-06-20&quot;:14.56},{&quot;2026-06-21&quot;:14.28},{&quot;2026-06-22&quot;:14.19},{&quot;2026-06-23&quot;:14.19},{&quot;2026-06-24&quot;:14.21},{&quot;2026-06-25&quot;:14.21},{&quot;2026-06-26&quot;:15.05},{&quot;2026-06-27&quot;:15.54},{&quot;2026-06-28&quot;:15.58},{&quot;2026-06-29&quot;:15.58},{&quot;2026-06-30&quot;:16.61},{&quot;2026-07-01&quot;:17.01},{&quot;2026-07-02&quot;:15.93},{&quot;2026-07-03&quot;:16.0},{&quot;2026-07-04&quot;:15.74},{&quot;2026-07-05&quot;:15.26},{&quot;2026-07-06&quot;:14.86},{&quot;2026-07-07&quot;:14.74},{&quot;2026-07-08&quot;:15.93},{&quot;2026-07-09&quot;:16.07},{&quot;2026-07-10&quot;:16.07},{&quot;2026-07-11&quot;:16.1},{&quot;2026-07-12&quot;:16.1},{&quot;2026-07-13&quot;:16.6},{&quot;2026-07-14&quot;:16.67},{&quot;2026-07-15&quot;:16.71},{&quot;2026-07-16&quot;:17.45},{&quot;2026-07-17&quot;:17.46},{&quot;2026-07-18&quot;:17.01},{&quot;2026-07-19&quot;:16.65},{&quot;2026-07-20&quot;:15.26},{&quot;2026-07-21&quot;:15.92},{&quot;2026-07-22&quot;:15.92},{&quot;2026-07-23&quot;:15.8},{&quot;2026-07-24&quot;:15.84},{&quot;2026-07-25&quot;:15.42},{&quot;2026-07-26&quot;:15.41},{&quot;2026-07-27&quot;:15.51},{&quot;2026-07-28&quot;:15.59},{&quot;2026-07-29&quot;:15.33},{&quot;2026-07-30&quot;:15.39},{&quot;2026-07-31&quot;:15.53},{&quot;2026-08-01&quot;:15.76},{&quot;2026-08-02&quot;:15.66},{&quot;2026-08-03&quot;:15.16},{&quot;2026-08-04&quot;:15.12},{&quot;2026-08-05&quot;:15.12},{&quot;2026-08-07&quot;:14.94},{&quot;2026-08-08&quot;:14.82},{&quot;2026-08-09&quot;:14.85},{&quot;2026-08-10&quot;:14.75},{&quot;2026-08-11&quot;:14.43},{&quot;2026-08-12&quot;:14.43},{&quot;2026-08-13&quot;:14.16},{&quot;2026-08-14&quot;:14.16},{&quot;2026-08-15&quot;:13.79},{&quot;2026-08-16&quot;:13.79},{&quot;2026-08-17&quot;:13.75},{&quot;2026-08-18&quot;:13.44},{&quot;2026-08-19&quot;:14.14},{&quot;2026-08-20&quot;:14.49},{&quot;2026-08-21&quot;:15.07},{&quot;2026-08-22&quot;:15.07},{&quot;2026-08-23&quot;:15.34},{&quot;2026-08-24&quot;:15.37},{&quot;2026-08-25&quot;:15.55},{&quot;2026-08-26&quot;:15.56},{&quot;2026-08-27&quot;:15.56},{&quot;2026-08-28&quot;:14.84},{&quot;2026-08-29&quot;:14.84},{&quot;2026-08-30&quot;:15.07},{&quot;2026-08-31&quot;:14.95},{&quot;2026-09-01&quot;:14.81},{&quot;2026-09-02&quot;:14.71},{&quot;2026-09-03&quot;:14.48},{&quot;2026-09-04&quot;:14.36},{&quot;2026-09-05&quot;:14.47},{&quot;2026-09-06&quot;:14.68},{&quot;2026-09-07&quot;:15.53},{&quot;2026-09-08&quot;:15.41},{&quot;2026-09-09&quot;:15.21},{&quot;2026-09-10&quot;:15.4},{&quot;2026-09-11&quot;:15.24}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="29890"
  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-4ed 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">
            Stasis
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $11.57
          </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="Stasis" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/f/3/f3d29fed-248d-4547-9455-3d69b1f2787d.jpg?1783947853" />

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

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
          </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="Stasis" src="https://cards.scryfall.io/large/front/f/3/f3d29fed-248d-4547-9455-3d69b1f2787d.jpg?1783947853" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:13.2},{&quot;2026-06-14&quot;:13.2},{&quot;2026-06-15&quot;:13.2},{&quot;2026-06-16&quot;:12.98},{&quot;2026-06-17&quot;:12.98},{&quot;2026-06-18&quot;:12.98},{&quot;2026-06-19&quot;:12.98},{&quot;2026-06-20&quot;:13.3},{&quot;2026-06-21&quot;:13.41},{&quot;2026-06-22&quot;:13.52},{&quot;2026-06-23&quot;:13.52},{&quot;2026-06-24&quot;:13.52},{&quot;2026-06-25&quot;:13.52},{&quot;2026-06-26&quot;:13.52},{&quot;2026-06-27&quot;:13.52},{&quot;2026-06-28&quot;:13.52},{&quot;2026-06-29&quot;:13.52},{&quot;2026-06-30&quot;:13.52},{&quot;2026-07-01&quot;:13.66},{&quot;2026-07-02&quot;:13.66},{&quot;2026-07-03&quot;:13.62},{&quot;2026-07-04&quot;:13.54},{&quot;2026-07-05&quot;:13.54},{&quot;2026-07-06&quot;:13.54},{&quot;2026-07-07&quot;:13.54},{&quot;2026-07-08&quot;:13.54},{&quot;2026-07-09&quot;:13.54},{&quot;2026-07-10&quot;:13.54},{&quot;2026-07-11&quot;:13.54},{&quot;2026-07-12&quot;:13.54},{&quot;2026-07-13&quot;:13.54},{&quot;2026-07-14&quot;:13.68},{&quot;2026-07-15&quot;:13.68},{&quot;2026-07-16&quot;:13.68},{&quot;2026-07-17&quot;:13.68},{&quot;2026-07-18&quot;:13.68},{&quot;2026-07-19&quot;:13.68},{&quot;2026-07-20&quot;:13.68},{&quot;2026-07-21&quot;:13.68},{&quot;2026-07-22&quot;:13.68},{&quot;2026-07-23&quot;:13.56},{&quot;2026-07-24&quot;:13.56},{&quot;2026-07-25&quot;:13.38},{&quot;2026-07-26&quot;:13.38},{&quot;2026-07-27&quot;:13.38},{&quot;2026-07-28&quot;:13.38},{&quot;2026-07-29&quot;:13.38},{&quot;2026-07-30&quot;:13.28},{&quot;2026-07-31&quot;:13.28},{&quot;2026-08-01&quot;:13.28},{&quot;2026-08-02&quot;:13.28},{&quot;2026-08-03&quot;:13.28},{&quot;2026-08-04&quot;:13.28},{&quot;2026-08-05&quot;:13.28},{&quot;2026-08-07&quot;:13.2},{&quot;2026-08-08&quot;:13.2},{&quot;2026-08-09&quot;:13.2},{&quot;2026-08-10&quot;:13.2},{&quot;2026-08-11&quot;:13.2},{&quot;2026-08-12&quot;:13.0},{&quot;2026-08-13&quot;:13.0},{&quot;2026-08-14&quot;:12.76},{&quot;2026-08-15&quot;:12.76},{&quot;2026-08-16&quot;:12.75},{&quot;2026-08-17&quot;:12.75},{&quot;2026-08-18&quot;:12.75},{&quot;2026-08-19&quot;:12.75},{&quot;2026-08-20&quot;:12.75},{&quot;2026-08-21&quot;:12.75},{&quot;2026-08-22&quot;:12.75},{&quot;2026-08-23&quot;:12.75},{&quot;2026-08-24&quot;:11.12},{&quot;2026-08-25&quot;:11.12},{&quot;2026-08-26&quot;:11.12},{&quot;2026-08-27&quot;:11.12},{&quot;2026-08-28&quot;:11.12},{&quot;2026-08-29&quot;:11.12},{&quot;2026-08-30&quot;:11.32},{&quot;2026-08-31&quot;:11.25},{&quot;2026-09-01&quot;:11.28},{&quot;2026-09-02&quot;:11.28},{&quot;2026-09-03&quot;:11.28},{&quot;2026-09-04&quot;:11.28},{&quot;2026-09-05&quot;:11.28},{&quot;2026-09-06&quot;:11.51},{&quot;2026-09-07&quot;:11.51},{&quot;2026-09-08&quot;:11.83},{&quot;2026-09-09&quot;:11.57},{&quot;2026-09-10&quot;:11.57},{&quot;2026-09-11&quot;:11.57}]}"
        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="1542"
  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-all 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">
            Diminishing Returns
        </span>


      </div>

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Diminishing Returns" src="https://cards.scryfall.io/large/front/a/3/a375ec24-4841-4792-ad58-f29cdf0d1bbb.jpg?1783947195" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $10.85
              </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">$6.50</span>
              <span class="text-xs text-grey-text">Credit: $8.45</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;:16.35},{&quot;2026-06-14&quot;:16.35},{&quot;2026-06-15&quot;:16.35},{&quot;2026-06-16&quot;:16.35},{&quot;2026-06-17&quot;:16.35},{&quot;2026-06-18&quot;:16.45},{&quot;2026-06-19&quot;:16.45},{&quot;2026-06-20&quot;:16.22},{&quot;2026-06-21&quot;:16.22},{&quot;2026-06-22&quot;:16.22},{&quot;2026-06-23&quot;:16.22},{&quot;2026-06-24&quot;:16.22},{&quot;2026-06-25&quot;:16.22},{&quot;2026-06-26&quot;:16.22},{&quot;2026-06-27&quot;:16.22},{&quot;2026-06-28&quot;:16.22},{&quot;2026-06-29&quot;:16.22},{&quot;2026-06-30&quot;:16.22},{&quot;2026-07-01&quot;:16.22},{&quot;2026-07-02&quot;:16.22},{&quot;2026-07-03&quot;:16.22},{&quot;2026-07-04&quot;:16.22},{&quot;2026-07-05&quot;:16.22},{&quot;2026-07-06&quot;:16.22},{&quot;2026-07-07&quot;:16.22},{&quot;2026-07-08&quot;:16.22},{&quot;2026-07-09&quot;:16.22},{&quot;2026-07-10&quot;:16.22},{&quot;2026-07-11&quot;:16.22},{&quot;2026-07-12&quot;:16.22},{&quot;2026-07-13&quot;:16.22},{&quot;2026-07-14&quot;:16.22},{&quot;2026-07-15&quot;:15.86},{&quot;2026-07-16&quot;:15.86},{&quot;2026-07-17&quot;:15.86},{&quot;2026-07-18&quot;:15.5},{&quot;2026-07-19&quot;:15.5},{&quot;2026-07-20&quot;:15.5},{&quot;2026-07-21&quot;:15.5},{&quot;2026-07-22&quot;:15.52},{&quot;2026-07-23&quot;:15.53},{&quot;2026-07-24&quot;:15.53},{&quot;2026-07-25&quot;:15.15},{&quot;2026-07-26&quot;:15.3},{&quot;2026-07-27&quot;:15.3},{&quot;2026-07-28&quot;:15.3},{&quot;2026-07-29&quot;:15.34},{&quot;2026-07-30&quot;:15.34},{&quot;2026-07-31&quot;:15.34},{&quot;2026-08-01&quot;:15.34},{&quot;2026-08-02&quot;:15.38},{&quot;2026-08-03&quot;:15.38},{&quot;2026-08-04&quot;:14.26},{&quot;2026-08-05&quot;:14.26},{&quot;2026-08-07&quot;:14.26},{&quot;2026-08-08&quot;:14.26},{&quot;2026-08-09&quot;:14.26},{&quot;2026-08-10&quot;:14.26},{&quot;2026-08-11&quot;:14.26},{&quot;2026-08-12&quot;:14.26},{&quot;2026-08-13&quot;:14.26},{&quot;2026-08-14&quot;:14.26},{&quot;2026-08-15&quot;:13.24},{&quot;2026-08-16&quot;:13.24},{&quot;2026-08-17&quot;:13.24},{&quot;2026-08-18&quot;:13.24},{&quot;2026-08-19&quot;:12.56},{&quot;2026-08-20&quot;:12.56},{&quot;2026-08-21&quot;:12.56},{&quot;2026-08-22&quot;:12.56},{&quot;2026-08-23&quot;:12.05},{&quot;2026-08-24&quot;:12.05},{&quot;2026-08-25&quot;:12.05},{&quot;2026-08-26&quot;:12.05},{&quot;2026-08-27&quot;:12.05},{&quot;2026-08-28&quot;:12.05},{&quot;2026-08-29&quot;:12.05},{&quot;2026-08-30&quot;:12.05},{&quot;2026-08-31&quot;:12.05},{&quot;2026-09-01&quot;:12.05},{&quot;2026-09-02&quot;:12.05},{&quot;2026-09-03&quot;:11.34},{&quot;2026-09-04&quot;:11.34},{&quot;2026-09-05&quot;:11.34},{&quot;2026-09-06&quot;:11.34},{&quot;2026-09-07&quot;:11.34},{&quot;2026-09-08&quot;:10.85},{&quot;2026-09-09&quot;:10.85},{&quot;2026-09-10&quot;:10.85},{&quot;2026-09-11&quot;:10.85}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="33757"
  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-ice 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">
            Mystic Remora
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $10.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="Mystic Remora" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/5/8/58e93dff-b774-4765-b7bd-d3957e42ff4a.jpg?1783947511" />

        <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">
            Mystic Remora
        </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">Enchantment</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Mystic Remora" src="https://cards.scryfall.io/large/front/5/8/58e93dff-b774-4765-b7bd-d3957e42ff4a.jpg?1783947511" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:9.79},{&quot;2026-06-11&quot;:9.58},{&quot;2026-06-12&quot;:9.56},{&quot;2026-06-13&quot;:9.7},{&quot;2026-06-14&quot;:9.4},{&quot;2026-06-15&quot;:9.54},{&quot;2026-06-16&quot;:9.79},{&quot;2026-06-17&quot;:9.79},{&quot;2026-06-18&quot;:9.76},{&quot;2026-06-19&quot;:9.84},{&quot;2026-06-20&quot;:9.9},{&quot;2026-06-21&quot;:9.9},{&quot;2026-06-22&quot;:10.17},{&quot;2026-06-23&quot;:10.59},{&quot;2026-06-24&quot;:10.68},{&quot;2026-06-25&quot;:10.87},{&quot;2026-06-26&quot;:10.51},{&quot;2026-06-27&quot;:10.85},{&quot;2026-06-28&quot;:10.71},{&quot;2026-06-29&quot;:10.3},{&quot;2026-06-30&quot;:10.3},{&quot;2026-07-01&quot;:9.24},{&quot;2026-07-02&quot;:9.62},{&quot;2026-07-03&quot;:9.39},{&quot;2026-07-04&quot;:9.39},{&quot;2026-07-05&quot;:9.69},{&quot;2026-07-06&quot;:9.31},{&quot;2026-07-07&quot;:8.61},{&quot;2026-07-08&quot;:8.63},{&quot;2026-07-09&quot;:8.63},{&quot;2026-07-10&quot;:8.88},{&quot;2026-07-11&quot;:8.83},{&quot;2026-07-12&quot;:8.71},{&quot;2026-07-13&quot;:8.56},{&quot;2026-07-14&quot;:9.38},{&quot;2026-07-15&quot;:9.06},{&quot;2026-07-16&quot;:9.09},{&quot;2026-07-17&quot;:8.62},{&quot;2026-07-18&quot;:8.85},{&quot;2026-07-19&quot;:9.14},{&quot;2026-07-20&quot;:9.16},{&quot;2026-07-21&quot;:9.16},{&quot;2026-07-23&quot;:8.9},{&quot;2026-07-25&quot;:9.12},{&quot;2026-07-26&quot;:9.21},{&quot;2026-07-27&quot;:9.05},{&quot;2026-07-29&quot;:8.73},{&quot;2026-07-30&quot;:9.11},{&quot;2026-07-31&quot;:9.98},{&quot;2026-08-01&quot;:10.68},{&quot;2026-08-02&quot;:11.02},{&quot;2026-08-03&quot;:11.02},{&quot;2026-08-04&quot;:11.23},{&quot;2026-08-05&quot;:10.92},{&quot;2026-08-07&quot;:10.47},{&quot;2026-08-08&quot;:10.29},{&quot;2026-08-09&quot;:10.29},{&quot;2026-08-10&quot;:9.72},{&quot;2026-08-11&quot;:9.8},{&quot;2026-08-12&quot;:9.73},{&quot;2026-08-13&quot;:9.75},{&quot;2026-08-14&quot;:9.45},{&quot;2026-08-15&quot;:9.36},{&quot;2026-08-16&quot;:9.21},{&quot;2026-08-17&quot;:9.06},{&quot;2026-08-18&quot;:10.1},{&quot;2026-08-19&quot;:9.9},{&quot;2026-08-20&quot;:9.9},{&quot;2026-08-21&quot;:10.64},{&quot;2026-08-22&quot;:10.68},{&quot;2026-08-23&quot;:10.73},{&quot;2026-08-24&quot;:11.65},{&quot;2026-08-25&quot;:11.65},{&quot;2026-08-26&quot;:11.73},{&quot;2026-08-27&quot;:11.8},{&quot;2026-08-28&quot;:11.6},{&quot;2026-08-29&quot;:11.6},{&quot;2026-08-30&quot;:10.91},{&quot;2026-08-31&quot;:9.63},{&quot;2026-09-01&quot;:9.63},{&quot;2026-09-02&quot;:8.45},{&quot;2026-09-03&quot;:8.77},{&quot;2026-09-04&quot;:9.56},{&quot;2026-09-05&quot;:9.88},{&quot;2026-09-06&quot;:9.78},{&quot;2026-09-07&quot;:10.1},{&quot;2026-09-08&quot;:10.39},{&quot;2026-09-09&quot;:9.84},{&quot;2026-09-10&quot;:10.19},{&quot;2026-09-11&quot;:10.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="1923"
  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-all 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">
            Phelddagrif
        </span>


      </div>

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Phelddagrif" src="https://cards.scryfall.io/large/front/d/9/d9631cb2-d53b-4401-b53b-29d27bdefc44.jpg?1783947164" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $10.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">$4.00</span>
              <span class="text-xs text-grey-text">Credit: $5.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-08&quot;:9.23},{&quot;2026-06-10&quot;:9.16},{&quot;2026-06-11&quot;:9.16},{&quot;2026-06-12&quot;:9.24},{&quot;2026-06-13&quot;:9.38},{&quot;2026-06-14&quot;:9.38},{&quot;2026-06-15&quot;:9.38},{&quot;2026-06-16&quot;:9.44},{&quot;2026-06-17&quot;:9.44},{&quot;2026-06-18&quot;:9.44},{&quot;2026-06-19&quot;:9.44},{&quot;2026-06-20&quot;:9.44},{&quot;2026-06-21&quot;:9.44},{&quot;2026-06-22&quot;:9.44},{&quot;2026-06-24&quot;:9.44},{&quot;2026-06-25&quot;:9.44},{&quot;2026-06-26&quot;:9.44},{&quot;2026-06-27&quot;:9.3},{&quot;2026-06-28&quot;:9.3},{&quot;2026-06-29&quot;:9.3},{&quot;2026-06-30&quot;:9.3},{&quot;2026-07-01&quot;:9.3},{&quot;2026-07-02&quot;:9.3},{&quot;2026-07-03&quot;:9.3},{&quot;2026-07-04&quot;:9.3},{&quot;2026-07-05&quot;:9.3},{&quot;2026-07-06&quot;:9.25},{&quot;2026-07-07&quot;:9.25},{&quot;2026-07-08&quot;:9.25},{&quot;2026-07-09&quot;:9.26},{&quot;2026-07-10&quot;:9.21},{&quot;2026-07-11&quot;:9.21},{&quot;2026-07-12&quot;:9.28},{&quot;2026-07-13&quot;:9.28},{&quot;2026-07-14&quot;:9.28},{&quot;2026-07-15&quot;:9.28},{&quot;2026-07-16&quot;:9.28},{&quot;2026-07-17&quot;:9.12},{&quot;2026-07-18&quot;:9.16},{&quot;2026-07-19&quot;:9.16},{&quot;2026-07-20&quot;:9.16},{&quot;2026-07-21&quot;:9.16},{&quot;2026-07-23&quot;:9.16},{&quot;2026-07-25&quot;:9.16},{&quot;2026-07-26&quot;:9.16},{&quot;2026-07-27&quot;:9.21},{&quot;2026-07-29&quot;:9.23},{&quot;2026-07-30&quot;:9.22},{&quot;2026-07-31&quot;:9.22},{&quot;2026-08-01&quot;:9.22},{&quot;2026-08-02&quot;:9.22},{&quot;2026-08-03&quot;:9.27},{&quot;2026-08-04&quot;:9.44},{&quot;2026-08-05&quot;:9.7},{&quot;2026-08-07&quot;:9.84},{&quot;2026-08-08&quot;:9.84},{&quot;2026-08-09&quot;:9.84},{&quot;2026-08-10&quot;:9.84},{&quot;2026-08-11&quot;:9.84},{&quot;2026-08-12&quot;:9.84},{&quot;2026-08-13&quot;:9.84},{&quot;2026-08-14&quot;:9.84},{&quot;2026-08-15&quot;:9.84},{&quot;2026-08-16&quot;:9.84},{&quot;2026-08-17&quot;:9.84},{&quot;2026-08-18&quot;:9.84},{&quot;2026-08-19&quot;:9.84},{&quot;2026-08-20&quot;:9.84},{&quot;2026-08-21&quot;:9.84},{&quot;2026-08-22&quot;:9.84},{&quot;2026-08-23&quot;:9.84},{&quot;2026-08-24&quot;:9.84},{&quot;2026-08-25&quot;:9.84},{&quot;2026-08-26&quot;:10.07},{&quot;2026-08-27&quot;:10.07},{&quot;2026-08-28&quot;:10.07},{&quot;2026-08-29&quot;:10.07},{&quot;2026-08-30&quot;:10.15},{&quot;2026-08-31&quot;:10.14},{&quot;2026-09-01&quot;:10.14},{&quot;2026-09-02&quot;:10.14},{&quot;2026-09-03&quot;:10.18},{&quot;2026-09-04&quot;:10.18},{&quot;2026-09-05&quot;:10.18},{&quot;2026-09-06&quot;:10.18},{&quot;2026-09-07&quot;:10.18},{&quot;2026-09-08&quot;:10.18},{&quot;2026-09-09&quot;:10.18},{&quot;2026-09-10&quot;:10.18},{&quot;2026-09-11&quot;:10.18}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="29751"
  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-4ed 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">
            Wrath of God
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Wrath of God
        </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-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="Wrath of God" src="https://cards.scryfall.io/large/front/4/5/4566f6a3-4d25-4df0-84be-fe4201138955.jpg?1783947863" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $9.95
              </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">$4.40</span>
              <span class="text-xs text-grey-text">Credit: $5.72</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;:8.2},{&quot;2026-06-10&quot;:8.2},{&quot;2026-06-11&quot;:8.2},{&quot;2026-06-12&quot;:8.2},{&quot;2026-06-13&quot;:8.2},{&quot;2026-06-14&quot;:8.2},{&quot;2026-06-15&quot;:8.2},{&quot;2026-06-16&quot;:8.2},{&quot;2026-06-17&quot;:8.2},{&quot;2026-06-18&quot;:8.2},{&quot;2026-06-19&quot;:8.2},{&quot;2026-06-20&quot;:8.2},{&quot;2026-06-21&quot;:8.2},{&quot;2026-06-22&quot;:8.2},{&quot;2026-06-24&quot;:8.2},{&quot;2026-06-25&quot;:8.2},{&quot;2026-06-26&quot;:8.2},{&quot;2026-06-27&quot;:8.2},{&quot;2026-06-28&quot;:8.2},{&quot;2026-06-29&quot;:8.2},{&quot;2026-06-30&quot;:8.2},{&quot;2026-07-01&quot;:8.2},{&quot;2026-07-02&quot;:8.2},{&quot;2026-07-03&quot;:8.2},{&quot;2026-07-04&quot;:8.57},{&quot;2026-07-05&quot;:8.42},{&quot;2026-07-06&quot;:8.42},{&quot;2026-07-07&quot;:8.42},{&quot;2026-07-08&quot;:8.92},{&quot;2026-07-09&quot;:8.92},{&quot;2026-07-10&quot;:8.92},{&quot;2026-07-11&quot;:8.92},{&quot;2026-07-12&quot;:8.92},{&quot;2026-07-13&quot;:8.92},{&quot;2026-07-14&quot;:8.92},{&quot;2026-07-15&quot;:9.02},{&quot;2026-07-16&quot;:9.02},{&quot;2026-07-17&quot;:9.02},{&quot;2026-07-18&quot;:9.02},{&quot;2026-07-19&quot;:9.02},{&quot;2026-07-20&quot;:9.02},{&quot;2026-07-21&quot;:9.02},{&quot;2026-07-23&quot;:9.02},{&quot;2026-07-25&quot;:9.02},{&quot;2026-07-26&quot;:9.02},{&quot;2026-07-27&quot;:9.02},{&quot;2026-07-29&quot;:8.52},{&quot;2026-07-30&quot;:8.52},{&quot;2026-07-31&quot;:8.52},{&quot;2026-08-01&quot;:8.52},{&quot;2026-08-02&quot;:8.52},{&quot;2026-08-03&quot;:8.52},{&quot;2026-08-04&quot;:8.52},{&quot;2026-08-05&quot;:8.59},{&quot;2026-08-07&quot;:8.59},{&quot;2026-08-08&quot;:8.59},{&quot;2026-08-09&quot;:8.76},{&quot;2026-08-10&quot;:8.76},{&quot;2026-08-11&quot;:8.77},{&quot;2026-08-12&quot;:8.77},{&quot;2026-08-13&quot;:8.77},{&quot;2026-08-14&quot;:8.84},{&quot;2026-08-15&quot;:8.84},{&quot;2026-08-16&quot;:8.82},{&quot;2026-08-17&quot;:8.82},{&quot;2026-08-18&quot;:8.82},{&quot;2026-08-19&quot;:8.82},{&quot;2026-08-20&quot;:8.82},{&quot;2026-08-21&quot;:8.82},{&quot;2026-08-22&quot;:8.82},{&quot;2026-08-23&quot;:9.04},{&quot;2026-08-24&quot;:9.04},{&quot;2026-08-25&quot;:9.04},{&quot;2026-08-26&quot;:9.04},{&quot;2026-08-27&quot;:8.95},{&quot;2026-08-28&quot;:8.95},{&quot;2026-08-29&quot;:8.95},{&quot;2026-08-30&quot;:9.24},{&quot;2026-08-31&quot;:9.73},{&quot;2026-09-01&quot;:9.73},{&quot;2026-09-02&quot;:9.63},{&quot;2026-09-03&quot;:9.63},{&quot;2026-09-04&quot;:9.72},{&quot;2026-09-05&quot;:9.72},{&quot;2026-09-06&quot;:9.72},{&quot;2026-09-07&quot;:9.83},{&quot;2026-09-08&quot;:9.83},{&quot;2026-09-09&quot;:9.83},{&quot;2026-09-10&quot;:9.83},{&quot;2026-09-11&quot;:9.95}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="34148"
  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-ice 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">
            Pyroblast
        </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">
            4 owned
          </div>

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

          <span class="text-sm font-medium text-nine-white">
            $9.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="Pyroblast" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/3/c342cac5-08ae-4428-9c2c-f6c5904e54d2.jpg?1783947483" />

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Pyroblast" src="https://cards.scryfall.io/large/front/c/3/c342cac5-08ae-4428-9c2c-f6c5904e54d2.jpg?1783947483" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:8.14},{&quot;2026-06-14&quot;:8.27},{&quot;2026-06-15&quot;:8.47},{&quot;2026-06-16&quot;:8.27},{&quot;2026-06-17&quot;:8.21},{&quot;2026-06-18&quot;:8.2},{&quot;2026-06-19&quot;:8.08},{&quot;2026-06-20&quot;:8.03},{&quot;2026-06-21&quot;:8.03},{&quot;2026-06-22&quot;:7.96},{&quot;2026-06-23&quot;:7.96},{&quot;2026-06-24&quot;:7.88},{&quot;2026-06-25&quot;:7.64},{&quot;2026-06-26&quot;:7.64},{&quot;2026-06-27&quot;:7.68},{&quot;2026-06-28&quot;:7.8},{&quot;2026-06-29&quot;:7.76},{&quot;2026-06-30&quot;:7.75},{&quot;2026-07-01&quot;:7.73},{&quot;2026-07-02&quot;:7.84},{&quot;2026-07-03&quot;:7.76},{&quot;2026-07-04&quot;:7.74},{&quot;2026-07-05&quot;:7.69},{&quot;2026-07-06&quot;:7.71},{&quot;2026-07-07&quot;:7.74},{&quot;2026-07-08&quot;:7.71},{&quot;2026-07-09&quot;:7.67},{&quot;2026-07-10&quot;:7.57},{&quot;2026-07-11&quot;:7.66},{&quot;2026-07-12&quot;:7.68},{&quot;2026-07-13&quot;:7.69},{&quot;2026-07-14&quot;:7.64},{&quot;2026-07-15&quot;:7.68},{&quot;2026-07-16&quot;:7.68},{&quot;2026-07-17&quot;:7.6},{&quot;2026-07-18&quot;:7.86},{&quot;2026-07-19&quot;:7.86},{&quot;2026-07-20&quot;:7.91},{&quot;2026-07-21&quot;:7.96},{&quot;2026-07-22&quot;:7.97},{&quot;2026-07-23&quot;:8.71},{&quot;2026-07-24&quot;:8.74},{&quot;2026-07-25&quot;:8.79},{&quot;2026-07-26&quot;:8.78},{&quot;2026-07-27&quot;:8.76},{&quot;2026-07-28&quot;:8.77},{&quot;2026-07-29&quot;:9.02},{&quot;2026-07-30&quot;:9.25},{&quot;2026-07-31&quot;:9.46},{&quot;2026-08-01&quot;:9.42},{&quot;2026-08-02&quot;:9.39},{&quot;2026-08-03&quot;:9.23},{&quot;2026-08-04&quot;:9.01},{&quot;2026-08-05&quot;:9.06},{&quot;2026-08-07&quot;:9.18},{&quot;2026-08-08&quot;:8.63},{&quot;2026-08-09&quot;:8.99},{&quot;2026-08-10&quot;:8.79},{&quot;2026-08-11&quot;:8.93},{&quot;2026-08-12&quot;:9.1},{&quot;2026-08-13&quot;:9.15},{&quot;2026-08-14&quot;:9.52},{&quot;2026-08-15&quot;:9.44},{&quot;2026-08-16&quot;:9.44},{&quot;2026-08-17&quot;:9.44},{&quot;2026-08-18&quot;:9.33},{&quot;2026-08-19&quot;:9.37},{&quot;2026-08-20&quot;:9.98},{&quot;2026-08-21&quot;:9.97},{&quot;2026-08-22&quot;:9.88},{&quot;2026-08-23&quot;:9.88},{&quot;2026-08-24&quot;:9.71},{&quot;2026-08-25&quot;:9.71},{&quot;2026-08-26&quot;:9.62},{&quot;2026-08-27&quot;:9.54},{&quot;2026-08-28&quot;:9.26},{&quot;2026-08-29&quot;:9.26},{&quot;2026-08-30&quot;:9.09},{&quot;2026-08-31&quot;:9.23},{&quot;2026-09-01&quot;:9.25},{&quot;2026-09-02&quot;:9.34},{&quot;2026-09-03&quot;:9.34},{&quot;2026-09-04&quot;:9.44},{&quot;2026-09-05&quot;:9.54},{&quot;2026-09-06&quot;:9.48},{&quot;2026-09-07&quot;:9.71},{&quot;2026-09-08&quot;:9.51},{&quot;2026-09-09&quot;:9.51},{&quot;2026-09-10&quot;:9.45},{&quot;2026-09-11&quot;:9.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="34548"
  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-ice 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">
            Urza&#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="text-sm font-medium text-nine-white">
            $9.28
          </span>
        </div>
      </div>
    </div>

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Urza&#39;s Bauble" src="https://cards.scryfall.io/large/front/5/8/58c9e9a7-e170-4361-b7d5-22fc0771c489.jpg?1783947454" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:8.43},{&quot;2026-06-14&quot;:8.43},{&quot;2026-06-15&quot;:8.45},{&quot;2026-06-16&quot;:8.68},{&quot;2026-06-17&quot;:8.68},{&quot;2026-06-18&quot;:8.68},{&quot;2026-06-19&quot;:8.68},{&quot;2026-06-20&quot;:8.65},{&quot;2026-06-21&quot;:8.65},{&quot;2026-06-22&quot;:8.65},{&quot;2026-06-23&quot;:8.65},{&quot;2026-06-24&quot;:8.61},{&quot;2026-06-25&quot;:8.7},{&quot;2026-06-26&quot;:8.56},{&quot;2026-06-27&quot;:8.56},{&quot;2026-06-28&quot;:8.56},{&quot;2026-06-29&quot;:8.55},{&quot;2026-06-30&quot;:8.47},{&quot;2026-07-01&quot;:8.47},{&quot;2026-07-02&quot;:8.42},{&quot;2026-07-03&quot;:8.57},{&quot;2026-07-04&quot;:8.57},{&quot;2026-07-05&quot;:8.57},{&quot;2026-07-06&quot;:8.57},{&quot;2026-07-07&quot;:8.41},{&quot;2026-07-08&quot;:8.41},{&quot;2026-07-09&quot;:8.42},{&quot;2026-07-10&quot;:8.42},{&quot;2026-07-11&quot;:8.41},{&quot;2026-07-12&quot;:8.64},{&quot;2026-07-13&quot;:8.54},{&quot;2026-07-14&quot;:8.72},{&quot;2026-07-15&quot;:8.72},{&quot;2026-07-16&quot;:8.72},{&quot;2026-07-17&quot;:8.72},{&quot;2026-07-18&quot;:8.72},{&quot;2026-07-19&quot;:8.72},{&quot;2026-07-20&quot;:8.72},{&quot;2026-07-21&quot;:8.72},{&quot;2026-07-22&quot;:8.68},{&quot;2026-07-23&quot;:8.68},{&quot;2026-07-24&quot;:8.68},{&quot;2026-07-25&quot;:8.68},{&quot;2026-07-26&quot;:8.68},{&quot;2026-07-27&quot;:8.64},{&quot;2026-07-28&quot;:8.64},{&quot;2026-07-29&quot;:8.68},{&quot;2026-07-30&quot;:8.68},{&quot;2026-07-31&quot;:8.7},{&quot;2026-08-01&quot;:8.7},{&quot;2026-08-02&quot;:8.7},{&quot;2026-08-03&quot;:8.59},{&quot;2026-08-04&quot;:8.59},{&quot;2026-08-05&quot;:8.73},{&quot;2026-08-07&quot;:8.76},{&quot;2026-08-08&quot;:8.76},{&quot;2026-08-09&quot;:8.94},{&quot;2026-08-10&quot;:8.94},{&quot;2026-08-11&quot;:8.94},{&quot;2026-08-12&quot;:8.96},{&quot;2026-08-13&quot;:8.96},{&quot;2026-08-14&quot;:8.96},{&quot;2026-08-15&quot;:8.96},{&quot;2026-08-16&quot;:8.96},{&quot;2026-08-17&quot;:8.88},{&quot;2026-08-18&quot;:8.81},{&quot;2026-08-19&quot;:8.81},{&quot;2026-08-20&quot;:8.88},{&quot;2026-08-21&quot;:8.88},{&quot;2026-08-22&quot;:8.88},{&quot;2026-08-23&quot;:8.8},{&quot;2026-08-24&quot;:8.8},{&quot;2026-08-25&quot;:8.94},{&quot;2026-08-26&quot;:8.94},{&quot;2026-08-27&quot;:8.92},{&quot;2026-08-28&quot;:8.92},{&quot;2026-08-29&quot;:8.92},{&quot;2026-08-30&quot;:8.8},{&quot;2026-08-31&quot;:8.8},{&quot;2026-09-01&quot;:9.02},{&quot;2026-09-02&quot;:9.04},{&quot;2026-09-03&quot;:9.22},{&quot;2026-09-04&quot;:9.26},{&quot;2026-09-05&quot;:9.26},{&quot;2026-09-06&quot;:9.28},{&quot;2026-09-07&quot;:9.28},{&quot;2026-09-08&quot;:9.28},{&quot;2026-09-09&quot;:9.28},{&quot;2026-09-10&quot;:9.26},{&quot;2026-09-11&quot;:9.28}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $8.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="Mishra&#39;s Factory" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/f/aff8d4f1-eaad-4afb-9097-2afab133f707.jpg?1783947791" />

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

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Mishra&#39;s Factory
        </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="Mishra&#39;s Factory" src="https://cards.scryfall.io/large/front/a/f/aff8d4f1-eaad-4afb-9097-2afab133f707.jpg?1783947791" />
    </div>

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

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

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

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

          <span class="text-lg font-medium text-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">
                $8.79
              </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">$4.60</span>
              <span class="text-xs text-grey-text">Credit: $5.98</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;:9.47},{&quot;2026-06-14&quot;:9.46},{&quot;2026-06-15&quot;:9.46},{&quot;2026-06-16&quot;:9.46},{&quot;2026-06-17&quot;:9.46},{&quot;2026-06-18&quot;:9.56},{&quot;2026-06-19&quot;:9.46},{&quot;2026-06-20&quot;:9.56},{&quot;2026-06-21&quot;:9.5},{&quot;2026-06-22&quot;:9.56},{&quot;2026-06-23&quot;:9.56},{&quot;2026-06-24&quot;:9.5},{&quot;2026-06-25&quot;:9.5},{&quot;2026-06-26&quot;:9.49},{&quot;2026-06-27&quot;:9.49},{&quot;2026-06-28&quot;:9.49},{&quot;2026-06-29&quot;:9.49},{&quot;2026-06-30&quot;:9.49},{&quot;2026-07-01&quot;:9.49},{&quot;2026-07-02&quot;:9.49},{&quot;2026-07-03&quot;:9.49},{&quot;2026-07-04&quot;:9.28},{&quot;2026-07-05&quot;:9.28},{&quot;2026-07-06&quot;:9.28},{&quot;2026-07-07&quot;:9.28},{&quot;2026-07-08&quot;:9.28},{&quot;2026-07-09&quot;:9.28},{&quot;2026-07-10&quot;:9.28},{&quot;2026-07-11&quot;:9.28},{&quot;2026-07-12&quot;:9.28},{&quot;2026-07-13&quot;:9.28},{&quot;2026-07-14&quot;:9.28},{&quot;2026-07-15&quot;:9.21},{&quot;2026-07-16&quot;:9.21},{&quot;2026-07-17&quot;:9.21},{&quot;2026-07-18&quot;:9.21},{&quot;2026-07-19&quot;:9.21},{&quot;2026-07-20&quot;:9.21},{&quot;2026-07-21&quot;:9.21},{&quot;2026-07-22&quot;:9.21},{&quot;2026-07-23&quot;:9.21},{&quot;2026-07-24&quot;:9.29},{&quot;2026-07-25&quot;:9.29},{&quot;2026-07-26&quot;:9.29},{&quot;2026-07-27&quot;:9.29},{&quot;2026-07-28&quot;:9.29},{&quot;2026-07-29&quot;:9.43},{&quot;2026-07-30&quot;:9.41},{&quot;2026-07-31&quot;:9.41},{&quot;2026-08-01&quot;:9.41},{&quot;2026-08-02&quot;:9.41},{&quot;2026-08-03&quot;:9.41},{&quot;2026-08-04&quot;:9.41},{&quot;2026-08-05&quot;:9.41},{&quot;2026-08-07&quot;:9.38},{&quot;2026-08-08&quot;:9.38},{&quot;2026-08-09&quot;:9.38},{&quot;2026-08-10&quot;:9.38},{&quot;2026-08-11&quot;:9.38},{&quot;2026-08-12&quot;:9.34},{&quot;2026-08-13&quot;:9.34},{&quot;2026-08-14&quot;:9.34},{&quot;2026-08-15&quot;:8.79},{&quot;2026-08-16&quot;:8.79},{&quot;2026-08-17&quot;:8.79},{&quot;2026-08-18&quot;:8.78},{&quot;2026-08-19&quot;:8.78},{&quot;2026-08-20&quot;:8.79},{&quot;2026-08-21&quot;:8.79},{&quot;2026-08-22&quot;:8.79},{&quot;2026-08-23&quot;:8.79},{&quot;2026-08-24&quot;:8.72},{&quot;2026-08-25&quot;:8.72},{&quot;2026-08-26&quot;:8.72},{&quot;2026-08-27&quot;:8.72},{&quot;2026-08-28&quot;:8.72},{&quot;2026-08-29&quot;:8.72},{&quot;2026-08-30&quot;:8.72},{&quot;2026-08-31&quot;:8.72},{&quot;2026-09-01&quot;:8.72},{&quot;2026-09-02&quot;:8.74},{&quot;2026-09-03&quot;:8.74},{&quot;2026-09-04&quot;:8.74},{&quot;2026-09-05&quot;:8.74},{&quot;2026-09-06&quot;:8.74},{&quot;2026-09-07&quot;:8.74},{&quot;2026-09-08&quot;:8.81},{&quot;2026-09-09&quot;:8.81},{&quot;2026-09-10&quot;:8.79},{&quot;2026-09-11&quot;:8.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="30168"
  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-4ed ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Goblin King" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/2/92dd4aef-6d15-4d74-96cf-1cc51812b541.jpg?1783947830" />

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Goblin King" src="https://cards.scryfall.io/large/front/9/2/92dd4aef-6d15-4d74-96cf-1cc51812b541.jpg?1783947830" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:8.37},{&quot;2026-06-14&quot;:8.37},{&quot;2026-06-15&quot;:8.37},{&quot;2026-06-16&quot;:8.37},{&quot;2026-06-17&quot;:8.37},{&quot;2026-06-18&quot;:8.37},{&quot;2026-06-19&quot;:8.31},{&quot;2026-06-20&quot;:8.31},{&quot;2026-06-21&quot;:8.31},{&quot;2026-06-22&quot;:8.31},{&quot;2026-06-23&quot;:8.31},{&quot;2026-06-24&quot;:8.35},{&quot;2026-06-25&quot;:8.29},{&quot;2026-06-26&quot;:8.42},{&quot;2026-06-27&quot;:8.42},{&quot;2026-06-28&quot;:8.42},{&quot;2026-06-29&quot;:8.98},{&quot;2026-06-30&quot;:8.98},{&quot;2026-07-01&quot;:8.79},{&quot;2026-07-02&quot;:8.79},{&quot;2026-07-03&quot;:9.3},{&quot;2026-07-04&quot;:9.35},{&quot;2026-07-05&quot;:9.35},{&quot;2026-07-06&quot;:9.35},{&quot;2026-07-07&quot;:9.35},{&quot;2026-07-08&quot;:9.37},{&quot;2026-07-09&quot;:9.37},{&quot;2026-07-10&quot;:9.37},{&quot;2026-07-11&quot;:9.37},{&quot;2026-07-12&quot;:9.37},{&quot;2026-07-13&quot;:9.37},{&quot;2026-07-14&quot;:9.38},{&quot;2026-07-15&quot;:9.26},{&quot;2026-07-16&quot;:9.26},{&quot;2026-07-17&quot;:9.15},{&quot;2026-07-18&quot;:8.96},{&quot;2026-07-19&quot;:8.93},{&quot;2026-07-20&quot;:8.93},{&quot;2026-07-21&quot;:8.56},{&quot;2026-07-22&quot;:8.56},{&quot;2026-07-23&quot;:8.93},{&quot;2026-07-24&quot;:8.93},{&quot;2026-07-25&quot;:8.93},{&quot;2026-07-26&quot;:8.46},{&quot;2026-07-27&quot;:8.46},{&quot;2026-07-28&quot;:8.46},{&quot;2026-07-29&quot;:8.48},{&quot;2026-07-30&quot;:8.48},{&quot;2026-07-31&quot;:8.48},{&quot;2026-08-01&quot;:8.48},{&quot;2026-08-02&quot;:8.48},{&quot;2026-08-03&quot;:8.48},{&quot;2026-08-04&quot;:8.5},{&quot;2026-08-05&quot;:8.5},{&quot;2026-08-07&quot;:8.5},{&quot;2026-08-08&quot;:8.64},{&quot;2026-08-09&quot;:8.77},{&quot;2026-08-10&quot;:8.86},{&quot;2026-08-11&quot;:8.86},{&quot;2026-08-12&quot;:8.84},{&quot;2026-08-13&quot;:8.63},{&quot;2026-08-14&quot;:8.63},{&quot;2026-08-15&quot;:8.63},{&quot;2026-08-16&quot;:8.63},{&quot;2026-08-17&quot;:8.63},{&quot;2026-08-18&quot;:8.63},{&quot;2026-08-19&quot;:8.63},{&quot;2026-08-20&quot;:8.5},{&quot;2026-08-21&quot;:8.54},{&quot;2026-08-22&quot;:8.54},{&quot;2026-08-23&quot;:8.54},{&quot;2026-08-24&quot;:8.54},{&quot;2026-08-25&quot;:8.54},{&quot;2026-08-26&quot;:8.54},{&quot;2026-08-27&quot;:8.54},{&quot;2026-08-28&quot;:8.54},{&quot;2026-08-29&quot;:8.54},{&quot;2026-08-30&quot;:8.46},{&quot;2026-08-31&quot;:8.44},{&quot;2026-09-01&quot;:8.44},{&quot;2026-09-02&quot;:8.44},{&quot;2026-09-03&quot;:8.44},{&quot;2026-09-04&quot;:8.44},{&quot;2026-09-05&quot;:8.44},{&quot;2026-09-06&quot;:8.44},{&quot;2026-09-07&quot;:8.44},{&quot;2026-09-08&quot;:8.44},{&quot;2026-09-09&quot;:8.5},{&quot;2026-09-10&quot;:8.5},{&quot;2026-09-11&quot;:8.5}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="29931"
  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-4ed 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">
            Animate Dead
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $8.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="Animate Dead" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/c/cc1dc456-1f64-4f24-a646-84c57e641b3b.jpg?1783947849" />

        <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">
            Animate Dead
        </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 — Aura</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="Animate Dead" src="https://cards.scryfall.io/large/front/c/c/cc1dc456-1f64-4f24-a646-84c57e641b3b.jpg?1783947849" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $8.47
              </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">$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;:10.58},{&quot;2026-06-14&quot;:10.58},{&quot;2026-06-15&quot;:10.58},{&quot;2026-06-16&quot;:10.58},{&quot;2026-06-17&quot;:10.79},{&quot;2026-06-18&quot;:10.79},{&quot;2026-06-19&quot;:10.56},{&quot;2026-06-20&quot;:10.56},{&quot;2026-06-21&quot;:10.56},{&quot;2026-06-22&quot;:10.56},{&quot;2026-06-23&quot;:10.56},{&quot;2026-06-24&quot;:10.56},{&quot;2026-06-25&quot;:10.56},{&quot;2026-06-26&quot;:10.56},{&quot;2026-06-27&quot;:10.56},{&quot;2026-06-28&quot;:10.45},{&quot;2026-06-29&quot;:9.97},{&quot;2026-06-30&quot;:9.97},{&quot;2026-07-01&quot;:9.97},{&quot;2026-07-02&quot;:9.97},{&quot;2026-07-03&quot;:9.97},{&quot;2026-07-04&quot;:9.97},{&quot;2026-07-05&quot;:9.84},{&quot;2026-07-06&quot;:9.84},{&quot;2026-07-07&quot;:9.31},{&quot;2026-07-08&quot;:9.31},{&quot;2026-07-09&quot;:9.31},{&quot;2026-07-10&quot;:9.31},{&quot;2026-07-11&quot;:9.31},{&quot;2026-07-12&quot;:9.02},{&quot;2026-07-13&quot;:9.02},{&quot;2026-07-14&quot;:8.81},{&quot;2026-07-15&quot;:8.39},{&quot;2026-07-16&quot;:7.99},{&quot;2026-07-17&quot;:8.29},{&quot;2026-07-18&quot;:8.11},{&quot;2026-07-19&quot;:8.03},{&quot;2026-07-20&quot;:8.03},{&quot;2026-07-21&quot;:7.89},{&quot;2026-07-22&quot;:7.89},{&quot;2026-07-23&quot;:7.89},{&quot;2026-07-24&quot;:7.89},{&quot;2026-07-25&quot;:7.89},{&quot;2026-07-26&quot;:7.76},{&quot;2026-07-27&quot;:7.76},{&quot;2026-07-28&quot;:7.6},{&quot;2026-07-29&quot;:7.6},{&quot;2026-07-30&quot;:7.36},{&quot;2026-07-31&quot;:7.08},{&quot;2026-08-01&quot;:7.08},{&quot;2026-08-02&quot;:7.08},{&quot;2026-08-03&quot;:7.08},{&quot;2026-08-04&quot;:6.53},{&quot;2026-08-05&quot;:6.64},{&quot;2026-08-07&quot;:6.67},{&quot;2026-08-08&quot;:6.67},{&quot;2026-08-09&quot;:6.87},{&quot;2026-08-10&quot;:6.97},{&quot;2026-08-11&quot;:7.4},{&quot;2026-08-12&quot;:7.4},{&quot;2026-08-13&quot;:7.4},{&quot;2026-08-14&quot;:7.4},{&quot;2026-08-15&quot;:7.4},{&quot;2026-08-16&quot;:7.4},{&quot;2026-08-17&quot;:7.3},{&quot;2026-08-18&quot;:7.36},{&quot;2026-08-19&quot;:7.36},{&quot;2026-08-20&quot;:7.36},{&quot;2026-08-21&quot;:7.36},{&quot;2026-08-22&quot;:7.36},{&quot;2026-08-23&quot;:7.36},{&quot;2026-08-24&quot;:7.36},{&quot;2026-08-25&quot;:7.36},{&quot;2026-08-26&quot;:7.36},{&quot;2026-08-27&quot;:7.36},{&quot;2026-08-28&quot;:7.32},{&quot;2026-08-29&quot;:7.32},{&quot;2026-08-30&quot;:8.01},{&quot;2026-08-31&quot;:8.13},{&quot;2026-09-01&quot;:8.13},{&quot;2026-09-02&quot;:8.13},{&quot;2026-09-03&quot;:8.24},{&quot;2026-09-04&quot;:8.24},{&quot;2026-09-05&quot;:8.24},{&quot;2026-09-06&quot;:8.24},{&quot;2026-09-07&quot;:8.24},{&quot;2026-09-08&quot;:8.24},{&quot;2026-09-09&quot;:8.24},{&quot;2026-09-10&quot;:8.47},{&quot;2026-09-11&quot;:8.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="30229"
  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-4ed ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $8.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="Shivan Dragon" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/0/70846483-9c23-42c4-9f9f-1fc5cda17c77.jpg?1783947825" />

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Shivan Dragon" src="https://cards.scryfall.io/large/front/7/0/70846483-9c23-42c4-9f9f-1fc5cda17c77.jpg?1783947825" />
    </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">
                $8.42
              </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-13&quot;:5.5},{&quot;2026-06-14&quot;:5.5},{&quot;2026-06-15&quot;:5.5},{&quot;2026-06-16&quot;:5.5},{&quot;2026-06-17&quot;:5.5},{&quot;2026-06-18&quot;:5.49},{&quot;2026-06-19&quot;:5.49},{&quot;2026-06-20&quot;:5.49},{&quot;2026-06-21&quot;:5.49},{&quot;2026-06-22&quot;:5.49},{&quot;2026-06-23&quot;:5.49},{&quot;2026-06-24&quot;:5.49},{&quot;2026-06-25&quot;:5.49},{&quot;2026-06-26&quot;:5.49},{&quot;2026-06-27&quot;:5.49},{&quot;2026-06-28&quot;:5.49},{&quot;2026-06-29&quot;:5.49},{&quot;2026-06-30&quot;:5.49},{&quot;2026-07-01&quot;:5.49},{&quot;2026-07-02&quot;:5.49},{&quot;2026-07-03&quot;:5.49},{&quot;2026-07-04&quot;:5.49},{&quot;2026-07-05&quot;:5.49},{&quot;2026-07-06&quot;:5.49},{&quot;2026-07-07&quot;:5.49},{&quot;2026-07-08&quot;:5.62},{&quot;2026-07-09&quot;:5.62},{&quot;2026-07-10&quot;:5.62},{&quot;2026-07-11&quot;:5.62},{&quot;2026-07-12&quot;:5.99},{&quot;2026-07-13&quot;:6.06},{&quot;2026-07-14&quot;:6.06},{&quot;2026-07-15&quot;:6.67},{&quot;2026-07-16&quot;:6.67},{&quot;2026-07-17&quot;:6.67},{&quot;2026-07-18&quot;:6.67},{&quot;2026-07-19&quot;:6.67},{&quot;2026-07-20&quot;:6.67},{&quot;2026-07-21&quot;:6.67},{&quot;2026-07-22&quot;:6.67},{&quot;2026-07-23&quot;:6.67},{&quot;2026-07-24&quot;:6.76},{&quot;2026-07-25&quot;:6.76},{&quot;2026-07-26&quot;:6.76},{&quot;2026-07-27&quot;:6.76},{&quot;2026-07-28&quot;:6.76},{&quot;2026-07-29&quot;:6.76},{&quot;2026-07-30&quot;:6.76},{&quot;2026-07-31&quot;:6.76},{&quot;2026-08-01&quot;:6.76},{&quot;2026-08-02&quot;:6.76},{&quot;2026-08-03&quot;:6.89},{&quot;2026-08-04&quot;:6.89},{&quot;2026-08-05&quot;:6.89},{&quot;2026-08-07&quot;:6.89},{&quot;2026-08-08&quot;:6.89},{&quot;2026-08-09&quot;:6.89},{&quot;2026-08-10&quot;:6.89},{&quot;2026-08-11&quot;:6.89},{&quot;2026-08-12&quot;:8.27},{&quot;2026-08-13&quot;:8.27},{&quot;2026-08-14&quot;:8.42},{&quot;2026-08-15&quot;:8.42},{&quot;2026-08-16&quot;:8.42},{&quot;2026-08-17&quot;:8.42},{&quot;2026-08-18&quot;:8.42},{&quot;2026-08-19&quot;:8.42},{&quot;2026-08-20&quot;:8.42},{&quot;2026-08-21&quot;:8.42},{&quot;2026-08-22&quot;:8.42},{&quot;2026-08-23&quot;:8.42},{&quot;2026-08-24&quot;:8.42},{&quot;2026-08-25&quot;:8.42},{&quot;2026-08-26&quot;:8.42},{&quot;2026-08-27&quot;:8.42},{&quot;2026-08-28&quot;:8.42},{&quot;2026-08-29&quot;:8.42},{&quot;2026-08-30&quot;:8.42},{&quot;2026-08-31&quot;:8.42},{&quot;2026-09-01&quot;:8.42},{&quot;2026-09-02&quot;:8.42},{&quot;2026-09-03&quot;:8.42},{&quot;2026-09-04&quot;:8.42},{&quot;2026-09-05&quot;:8.42},{&quot;2026-09-06&quot;:8.42},{&quot;2026-09-07&quot;:8.42},{&quot;2026-09-08&quot;:8.42},{&quot;2026-09-09&quot;:8.42},{&quot;2026-09-10&quot;:8.42},{&quot;2026-09-11&quot;:8.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="30103"
  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-4ed 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">
            Ball Lightning
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Elemental
      </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">
            $8.30
          </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="Ball Lightning" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/6/b/6bccf9a0-8d93-4b5e-ada0-1f19f260e5a8.jpg?1783947834" />

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Ball Lightning" src="https://cards.scryfall.io/large/front/6/b/6bccf9a0-8d93-4b5e-ada0-1f19f260e5a8.jpg?1783947834" />
    </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">
                $8.30
              </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.60</span>
              <span class="text-xs text-grey-text">Credit: $4.68</span>
            </div>
        </div>

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

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Blood Moon" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/9/49673567-c358-4de8-99eb-1a61b7198d46.jpg?1783947366" />

        <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 Moon
        </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-r'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Blood Moon" src="https://cards.scryfall.io/large/front/4/9/49673567-c358-4de8-99eb-1a61b7198d46.jpg?1783947366" />
    </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">
                $8.24
              </span>

            </div>
          </div>

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:8.83},{&quot;2026-06-14&quot;:8.83},{&quot;2026-06-15&quot;:8.83},{&quot;2026-06-16&quot;:8.91},{&quot;2026-06-17&quot;:8.91},{&quot;2026-06-18&quot;:8.91},{&quot;2026-06-19&quot;:8.91},{&quot;2026-06-20&quot;:8.91},{&quot;2026-06-21&quot;:8.91},{&quot;2026-06-22&quot;:8.91},{&quot;2026-06-23&quot;:8.91},{&quot;2026-06-24&quot;:8.91},{&quot;2026-06-25&quot;:8.91},{&quot;2026-06-26&quot;:8.93},{&quot;2026-06-27&quot;:8.93},{&quot;2026-06-28&quot;:8.93},{&quot;2026-06-29&quot;:8.93},{&quot;2026-06-30&quot;:8.93},{&quot;2026-07-01&quot;:8.94},{&quot;2026-07-02&quot;:8.94},{&quot;2026-07-03&quot;:8.89},{&quot;2026-07-04&quot;:8.89},{&quot;2026-07-05&quot;:8.89},{&quot;2026-07-06&quot;:8.89},{&quot;2026-07-07&quot;:8.67},{&quot;2026-07-08&quot;:8.67},{&quot;2026-07-09&quot;:8.67},{&quot;2026-07-10&quot;:8.67},{&quot;2026-07-11&quot;:8.58},{&quot;2026-07-12&quot;:8.58},{&quot;2026-07-13&quot;:8.58},{&quot;2026-07-14&quot;:8.44},{&quot;2026-07-15&quot;:8.44},{&quot;2026-07-16&quot;:8.44},{&quot;2026-07-17&quot;:8.38},{&quot;2026-07-18&quot;:8.38},{&quot;2026-07-19&quot;:8.38},{&quot;2026-07-20&quot;:8.33},{&quot;2026-07-21&quot;:8.08},{&quot;2026-07-22&quot;:8.08},{&quot;2026-07-23&quot;:8.08},{&quot;2026-07-24&quot;:8.08},{&quot;2026-07-25&quot;:8.08},{&quot;2026-07-26&quot;:8.08},{&quot;2026-07-27&quot;:8.09},{&quot;2026-07-28&quot;:8.09},{&quot;2026-07-29&quot;:8.06},{&quot;2026-07-30&quot;:8.06},{&quot;2026-07-31&quot;:8.06},{&quot;2026-08-01&quot;:8.06},{&quot;2026-08-02&quot;:8.06},{&quot;2026-08-03&quot;:8.04},{&quot;2026-08-04&quot;:8.04},{&quot;2026-08-05&quot;:8.04},{&quot;2026-08-07&quot;:8.15},{&quot;2026-08-08&quot;:8.21},{&quot;2026-08-09&quot;:8.21},{&quot;2026-08-10&quot;:8.21},{&quot;2026-08-11&quot;:8.21},{&quot;2026-08-12&quot;:8.21},{&quot;2026-08-13&quot;:8.15},{&quot;2026-08-14&quot;:8.15},{&quot;2026-08-15&quot;:8.21},{&quot;2026-08-16&quot;:8.21},{&quot;2026-08-17&quot;:8.21},{&quot;2026-08-18&quot;:8.21},{&quot;2026-08-19&quot;:8.21},{&quot;2026-08-20&quot;:8.21},{&quot;2026-08-21&quot;:8.21},{&quot;2026-08-22&quot;:8.25},{&quot;2026-08-23&quot;:8.25},{&quot;2026-08-24&quot;:8.25},{&quot;2026-08-25&quot;:8.25},{&quot;2026-08-26&quot;:8.25},{&quot;2026-08-27&quot;:8.25},{&quot;2026-08-28&quot;:8.25},{&quot;2026-08-29&quot;:8.25},{&quot;2026-08-30&quot;:8.25},{&quot;2026-08-31&quot;:8.25},{&quot;2026-09-01&quot;:8.27},{&quot;2026-09-02&quot;:8.27},{&quot;2026-09-03&quot;:8.27},{&quot;2026-09-04&quot;:8.24},{&quot;2026-09-05&quot;:8.24},{&quot;2026-09-06&quot;:8.24},{&quot;2026-09-07&quot;:8.24},{&quot;2026-09-08&quot;:8.24},{&quot;2026-09-09&quot;:8.24},{&quot;2026-09-10&quot;:8.24},{&quot;2026-09-11&quot;:8.24}]}"
        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="29735"
  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-4ed 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="text-sm font-medium text-nine-white">
            $7.23
          </span>
        </div>
      </div>
    </div>

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

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

        <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/8/b/8bd501ae-5814-4336-a45b-2b88cb85d29e.jpg?1783947864" />
    </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.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">$4.40</span>
              <span class="text-xs text-grey-text">Credit: $5.72</span>
            </div>
        </div>

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="30264"
  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-4ed 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">
            Winds of Change
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $7.19
          </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="Winds of Change" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/7/77071f4c-d00b-4c79-a2e6-6be0720af36b.jpg?1783947821" />

        <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">
            Winds of Change
        </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-r'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Winds of Change" src="https://cards.scryfall.io/large/front/7/7/77071f4c-d00b-4c79-a2e6-6be0720af36b.jpg?1783947821" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $7.19
              </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.30</span>
              <span class="text-xs text-grey-text">Credit: $5.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;normal&quot;:[{&quot;2026-06-08&quot;:7.72},{&quot;2026-06-10&quot;:7.72},{&quot;2026-06-11&quot;:7.69},{&quot;2026-06-12&quot;:7.69},{&quot;2026-06-13&quot;:7.65},{&quot;2026-06-14&quot;:7.72},{&quot;2026-06-15&quot;:7.72},{&quot;2026-06-16&quot;:7.72},{&quot;2026-06-17&quot;:7.72},{&quot;2026-06-18&quot;:7.72},{&quot;2026-06-19&quot;:7.72},{&quot;2026-06-20&quot;:7.72},{&quot;2026-06-21&quot;:7.72},{&quot;2026-06-22&quot;:7.72},{&quot;2026-06-24&quot;:7.72},{&quot;2026-06-25&quot;:7.68},{&quot;2026-06-26&quot;:7.68},{&quot;2026-06-27&quot;:7.68},{&quot;2026-06-28&quot;:7.68},{&quot;2026-06-29&quot;:7.68},{&quot;2026-06-30&quot;:7.68},{&quot;2026-07-01&quot;:7.68},{&quot;2026-07-02&quot;:7.68},{&quot;2026-07-03&quot;:7.63},{&quot;2026-07-04&quot;:7.59},{&quot;2026-07-05&quot;:7.82},{&quot;2026-07-06&quot;:7.82},{&quot;2026-07-07&quot;:7.82},{&quot;2026-07-08&quot;:7.8},{&quot;2026-07-09&quot;:7.72},{&quot;2026-07-10&quot;:7.72},{&quot;2026-07-11&quot;:7.72},{&quot;2026-07-12&quot;:7.72},{&quot;2026-07-13&quot;:7.76},{&quot;2026-07-14&quot;:7.76},{&quot;2026-07-15&quot;:7.78},{&quot;2026-07-16&quot;:7.67},{&quot;2026-07-17&quot;:7.67},{&quot;2026-07-18&quot;:7.67},{&quot;2026-07-19&quot;:7.7},{&quot;2026-07-20&quot;:7.74},{&quot;2026-07-21&quot;:7.74},{&quot;2026-07-23&quot;:7.72},{&quot;2026-07-25&quot;:7.72},{&quot;2026-07-26&quot;:7.72},{&quot;2026-07-27&quot;:7.72},{&quot;2026-07-29&quot;:7.74},{&quot;2026-07-30&quot;:7.74},{&quot;2026-07-31&quot;:7.71},{&quot;2026-08-01&quot;:7.71},{&quot;2026-08-02&quot;:7.69},{&quot;2026-08-03&quot;:7.73},{&quot;2026-08-04&quot;:7.7},{&quot;2026-08-05&quot;:7.7},{&quot;2026-08-07&quot;:7.64},{&quot;2026-08-08&quot;:7.64},{&quot;2026-08-09&quot;:7.64},{&quot;2026-08-10&quot;:7.64},{&quot;2026-08-11&quot;:7.64},{&quot;2026-08-12&quot;:7.56},{&quot;2026-08-13&quot;:7.56},{&quot;2026-08-14&quot;:7.57},{&quot;2026-08-15&quot;:7.57},{&quot;2026-08-16&quot;:7.57},{&quot;2026-08-17&quot;:7.57},{&quot;2026-08-18&quot;:7.52},{&quot;2026-08-19&quot;:7.52},{&quot;2026-08-20&quot;:7.52},{&quot;2026-08-21&quot;:7.52},{&quot;2026-08-22&quot;:7.52},{&quot;2026-08-23&quot;:7.47},{&quot;2026-08-24&quot;:7.47},{&quot;2026-08-25&quot;:7.47},{&quot;2026-08-26&quot;:7.47},{&quot;2026-08-27&quot;:7.47},{&quot;2026-08-28&quot;:7.47},{&quot;2026-08-29&quot;:7.47},{&quot;2026-08-30&quot;:7.42},{&quot;2026-08-31&quot;:7.42},{&quot;2026-09-01&quot;:7.42},{&quot;2026-09-02&quot;:7.42},{&quot;2026-09-03&quot;:7.42},{&quot;2026-09-04&quot;:7.42},{&quot;2026-09-05&quot;:7.2},{&quot;2026-09-06&quot;:7.19},{&quot;2026-09-07&quot;:7.19},{&quot;2026-09-08&quot;:7.19},{&quot;2026-09-09&quot;:7.19},{&quot;2026-09-10&quot;:7.19},{&quot;2026-09-11&quot;:7.19}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="29721"
  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-4ed 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">
            Savannah Lions
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $7.15
          </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="Savannah Lions" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/2/a2ee9127-d007-48e8-b797-88ef72bc7c8b.jpg?1783947865" />

        <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">
            Savannah Lions
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-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="Savannah Lions" src="https://cards.scryfall.io/large/front/a/2/a2ee9127-d007-48e8-b797-88ef72bc7c8b.jpg?1783947865" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $6.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="Demonic Consultation" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/d/8d727b9b-6114-414d-9172-16b6e1db41cc.jpg?1783947504" />

        <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">
            Demonic Consultation
        </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-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="Demonic Consultation" src="https://cards.scryfall.io/large/front/8/d/8d727b9b-6114-414d-9172-16b6e1db41cc.jpg?1783947504" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-12&quot;:10.38},{&quot;2026-06-13&quot;:10.71},{&quot;2026-06-14&quot;:10.77},{&quot;2026-06-15&quot;:10.97},{&quot;2026-06-16&quot;:12.32},{&quot;2026-06-17&quot;:12.32},{&quot;2026-06-18&quot;:12.32},{&quot;2026-06-19&quot;:12.02},{&quot;2026-06-20&quot;:11.83},{&quot;2026-06-21&quot;:11.83},{&quot;2026-06-22&quot;:11.82},{&quot;2026-06-23&quot;:11.82},{&quot;2026-06-24&quot;:11.82},{&quot;2026-06-25&quot;:11.82},{&quot;2026-06-26&quot;:11.82},{&quot;2026-06-27&quot;:11.5},{&quot;2026-06-28&quot;:11.22},{&quot;2026-06-29&quot;:11.21},{&quot;2026-06-30&quot;:10.97},{&quot;2026-07-01&quot;:10.93},{&quot;2026-07-02&quot;:10.93},{&quot;2026-07-03&quot;:10.64},{&quot;2026-07-04&quot;:10.64},{&quot;2026-07-05&quot;:10.25},{&quot;2026-07-06&quot;:10.38},{&quot;2026-07-07&quot;:10.38},{&quot;2026-07-08&quot;:10.38},{&quot;2026-07-09&quot;:10.2},{&quot;2026-07-10&quot;:10.2},{&quot;2026-07-11&quot;:9.89},{&quot;2026-07-12&quot;:9.81},{&quot;2026-07-13&quot;:9.77},{&quot;2026-07-14&quot;:9.08},{&quot;2026-07-15&quot;:9.08},{&quot;2026-07-16&quot;:9.08},{&quot;2026-07-17&quot;:8.44},{&quot;2026-07-18&quot;:8.44},{&quot;2026-07-19&quot;:8.44},{&quot;2026-07-20&quot;:8.45},{&quot;2026-07-21&quot;:8.33},{&quot;2026-07-23&quot;:8.17},{&quot;2026-07-24&quot;:8.17},{&quot;2026-07-25&quot;:8.17},{&quot;2026-07-26&quot;:8.06},{&quot;2026-07-27&quot;:8.06},{&quot;2026-07-28&quot;:8.06},{&quot;2026-07-29&quot;:8.06},{&quot;2026-07-30&quot;:7.86},{&quot;2026-07-31&quot;:7.77},{&quot;2026-08-01&quot;:7.71},{&quot;2026-08-02&quot;:7.71},{&quot;2026-08-03&quot;:7.6},{&quot;2026-08-04&quot;:7.53},{&quot;2026-08-05&quot;:7.53},{&quot;2026-08-07&quot;:7.53},{&quot;2026-08-08&quot;:7.53},{&quot;2026-08-09&quot;:7.55},{&quot;2026-08-10&quot;:7.55},{&quot;2026-08-11&quot;:7.55},{&quot;2026-08-12&quot;:7.62},{&quot;2026-08-13&quot;:7.62},{&quot;2026-08-14&quot;:7.62},{&quot;2026-08-15&quot;:7.55},{&quot;2026-08-16&quot;:7.55},{&quot;2026-08-17&quot;:7.21},{&quot;2026-08-18&quot;:6.96},{&quot;2026-08-19&quot;:6.93},{&quot;2026-08-20&quot;:6.93},{&quot;2026-08-21&quot;:6.92},{&quot;2026-08-22&quot;:6.78},{&quot;2026-08-23&quot;:6.8},{&quot;2026-08-24&quot;:7.02},{&quot;2026-08-25&quot;:7.02},{&quot;2026-08-26&quot;:6.81},{&quot;2026-08-27&quot;:6.8},{&quot;2026-08-28&quot;:6.8},{&quot;2026-08-29&quot;:6.8},{&quot;2026-08-30&quot;:6.85},{&quot;2026-08-31&quot;:6.85},{&quot;2026-09-01&quot;:7.0},{&quot;2026-09-02&quot;:7.0},{&quot;2026-09-03&quot;:7.03},{&quot;2026-09-04&quot;:7.11},{&quot;2026-09-05&quot;:7.08},{&quot;2026-09-06&quot;:7.05},{&quot;2026-09-07&quot;:7.05},{&quot;2026-09-08&quot;:7.05},{&quot;2026-09-09&quot;:7.02},{&quot;2026-09-10&quot;:6.97},{&quot;2026-09-11&quot;:6.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="29963"
  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-4ed 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">
            Dark Ritual
        </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">
            6 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">
            $6.60
          </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="Dark Ritual" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/3/4/3477f601-5374-4316-a74e-b5e198af482b.jpg?1783947846" />

        <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">
            Dark Ritual
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-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="Dark Ritual" src="https://cards.scryfall.io/large/front/3/4/3477f601-5374-4316-a74e-b5e198af482b.jpg?1783947846" />
    </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">
            6
          </span>
        </div>

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:4.67},{&quot;2026-06-11&quot;:4.72},{&quot;2026-06-12&quot;:4.72},{&quot;2026-06-13&quot;:4.72},{&quot;2026-06-14&quot;:4.64},{&quot;2026-06-15&quot;:4.64},{&quot;2026-06-16&quot;:6.18},{&quot;2026-06-17&quot;:6.16},{&quot;2026-06-18&quot;:6.16},{&quot;2026-06-19&quot;:6.07},{&quot;2026-06-20&quot;:6.07},{&quot;2026-06-21&quot;:6.07},{&quot;2026-06-22&quot;:6.08},{&quot;2026-06-23&quot;:6.08},{&quot;2026-06-24&quot;:6.2},{&quot;2026-06-25&quot;:6.16},{&quot;2026-06-26&quot;:5.9},{&quot;2026-06-27&quot;:6.04},{&quot;2026-06-28&quot;:5.97},{&quot;2026-06-29&quot;:5.84},{&quot;2026-06-30&quot;:5.69},{&quot;2026-07-01&quot;:5.36},{&quot;2026-07-02&quot;:5.37},{&quot;2026-07-03&quot;:3.44},{&quot;2026-07-04&quot;:3.41},{&quot;2026-07-05&quot;:3.38},{&quot;2026-07-06&quot;:3.42},{&quot;2026-07-07&quot;:3.29},{&quot;2026-07-08&quot;:3.2},{&quot;2026-07-09&quot;:3.25},{&quot;2026-07-10&quot;:3.19},{&quot;2026-07-11&quot;:3.22},{&quot;2026-07-12&quot;:3.28},{&quot;2026-07-13&quot;:3.3},{&quot;2026-07-14&quot;:3.35},{&quot;2026-07-15&quot;:3.37},{&quot;2026-07-16&quot;:3.37},{&quot;2026-07-17&quot;:3.37},{&quot;2026-07-18&quot;:3.36},{&quot;2026-07-19&quot;:3.32},{&quot;2026-07-20&quot;:3.32},{&quot;2026-07-21&quot;:3.37},{&quot;2026-07-23&quot;:3.39},{&quot;2026-07-25&quot;:3.45},{&quot;2026-07-26&quot;:3.58},{&quot;2026-07-27&quot;:3.75},{&quot;2026-07-29&quot;:3.74},{&quot;2026-07-30&quot;:3.92},{&quot;2026-07-31&quot;:4.11},{&quot;2026-08-01&quot;:4.12},{&quot;2026-08-02&quot;:4.1},{&quot;2026-08-03&quot;:4.11},{&quot;2026-08-04&quot;:4.45},{&quot;2026-08-05&quot;:4.69},{&quot;2026-08-07&quot;:4.87},{&quot;2026-08-08&quot;:4.84},{&quot;2026-08-09&quot;:5.09},{&quot;2026-08-10&quot;:5.64},{&quot;2026-08-11&quot;:5.66},{&quot;2026-08-12&quot;:5.85},{&quot;2026-08-13&quot;:6.03},{&quot;2026-08-14&quot;:6.03},{&quot;2026-08-15&quot;:6.2},{&quot;2026-08-16&quot;:6.2},{&quot;2026-08-17&quot;:6.17},{&quot;2026-08-18&quot;:6.25},{&quot;2026-08-19&quot;:6.25},{&quot;2026-08-20&quot;:6.25},{&quot;2026-08-21&quot;:6.52},{&quot;2026-08-22&quot;:6.33},{&quot;2026-08-23&quot;:6.08},{&quot;2026-08-24&quot;:6.23},{&quot;2026-08-25&quot;:6.23},{&quot;2026-08-26&quot;:5.8},{&quot;2026-08-27&quot;:5.9},{&quot;2026-08-28&quot;:5.9},{&quot;2026-08-29&quot;:5.9},{&quot;2026-08-30&quot;:6.61},{&quot;2026-08-31&quot;:6.48},{&quot;2026-09-01&quot;:6.48},{&quot;2026-09-02&quot;:6.5},{&quot;2026-09-03&quot;:6.95},{&quot;2026-09-04&quot;:6.95},{&quot;2026-09-05&quot;:6.98},{&quot;2026-09-06&quot;:6.96},{&quot;2026-09-07&quot;:6.67},{&quot;2026-09-08&quot;:7.41},{&quot;2026-09-09&quot;:7.77},{&quot;2026-09-10&quot;:6.48},{&quot;2026-09-11&quot;:6.6}]}"
        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="34493"
  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-ice 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">
            Jeweled Amulet
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $6.19
          </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="Jeweled Amulet" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/3/4/34f7bad2-d28f-42d2-9246-fe3545ef49a7.jpg?1783947458" />

        <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">
            Jeweled Amulet
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Jeweled Amulet" src="https://cards.scryfall.io/large/front/3/4/34f7bad2-d28f-42d2-9246-fe3545ef49a7.jpg?1783947458" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:10.44},{&quot;2026-06-14&quot;:10.44},{&quot;2026-06-15&quot;:10.43},{&quot;2026-06-16&quot;:10.58},{&quot;2026-06-17&quot;:10.58},{&quot;2026-06-18&quot;:10.49},{&quot;2026-06-19&quot;:10.51},{&quot;2026-06-20&quot;:10.42},{&quot;2026-06-21&quot;:10.42},{&quot;2026-06-22&quot;:10.43},{&quot;2026-06-23&quot;:10.29},{&quot;2026-06-24&quot;:10.3},{&quot;2026-06-25&quot;:10.3},{&quot;2026-06-26&quot;:10.3},{&quot;2026-06-27&quot;:10.3},{&quot;2026-06-28&quot;:10.28},{&quot;2026-06-29&quot;:10.16},{&quot;2026-06-30&quot;:10.11},{&quot;2026-07-01&quot;:10.11},{&quot;2026-07-02&quot;:10.11},{&quot;2026-07-03&quot;:10.11},{&quot;2026-07-04&quot;:10.09},{&quot;2026-07-05&quot;:10.04},{&quot;2026-07-06&quot;:9.76},{&quot;2026-07-07&quot;:9.76},{&quot;2026-07-08&quot;:9.76},{&quot;2026-07-09&quot;:10.08},{&quot;2026-07-10&quot;:9.76},{&quot;2026-07-11&quot;:9.4},{&quot;2026-07-12&quot;:9.4},{&quot;2026-07-13&quot;:9.02},{&quot;2026-07-14&quot;:8.72},{&quot;2026-07-15&quot;:8.83},{&quot;2026-07-16&quot;:8.83},{&quot;2026-07-17&quot;:8.83},{&quot;2026-07-18&quot;:8.75},{&quot;2026-07-19&quot;:8.69},{&quot;2026-07-20&quot;:8.69},{&quot;2026-07-21&quot;:8.69},{&quot;2026-07-22&quot;:8.69},{&quot;2026-07-23&quot;:8.69},{&quot;2026-07-24&quot;:8.69},{&quot;2026-07-25&quot;:8.69},{&quot;2026-07-26&quot;:8.64},{&quot;2026-07-27&quot;:8.48},{&quot;2026-07-28&quot;:8.48},{&quot;2026-07-29&quot;:8.48},{&quot;2026-07-30&quot;:8.48},{&quot;2026-07-31&quot;:8.63},{&quot;2026-08-01&quot;:8.63},{&quot;2026-08-02&quot;:8.63},{&quot;2026-08-03&quot;:8.47},{&quot;2026-08-04&quot;:8.47},{&quot;2026-08-05&quot;:8.41},{&quot;2026-08-07&quot;:8.41},{&quot;2026-08-08&quot;:8.38},{&quot;2026-08-09&quot;:8.07},{&quot;2026-08-10&quot;:8.07},{&quot;2026-08-11&quot;:7.94},{&quot;2026-08-12&quot;:7.78},{&quot;2026-08-13&quot;:7.78},{&quot;2026-08-14&quot;:7.78},{&quot;2026-08-15&quot;:7.66},{&quot;2026-08-16&quot;:7.58},{&quot;2026-08-17&quot;:7.58},{&quot;2026-08-18&quot;:7.56},{&quot;2026-08-19&quot;:7.29},{&quot;2026-08-20&quot;:7.05},{&quot;2026-08-21&quot;:7.05},{&quot;2026-08-22&quot;:7.05},{&quot;2026-08-23&quot;:7.03},{&quot;2026-08-24&quot;:7.03},{&quot;2026-08-25&quot;:6.92},{&quot;2026-08-26&quot;:6.92},{&quot;2026-08-27&quot;:6.91},{&quot;2026-08-28&quot;:6.48},{&quot;2026-08-29&quot;:6.48},{&quot;2026-08-30&quot;:6.22},{&quot;2026-08-31&quot;:6.22},{&quot;2026-09-01&quot;:6.22},{&quot;2026-09-02&quot;:6.12},{&quot;2026-09-03&quot;:6.12},{&quot;2026-09-04&quot;:6.16},{&quot;2026-09-05&quot;:6.16},{&quot;2026-09-06&quot;:6.13},{&quot;2026-09-07&quot;:5.97},{&quot;2026-09-08&quot;:5.97},{&quot;2026-09-09&quot;:5.97},{&quot;2026-09-10&quot;:6.04},{&quot;2026-09-11&quot;:6.19}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="30521"
  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-4ed 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">
            Howling Mine
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Howling Mine
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Howling Mine" src="https://cards.scryfall.io/large/front/a/4/a4df1be4-364e-4582-929a-05f2905f8ce6.jpg?1783947800" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $5.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="Counterspell" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/e/8/e8493631-6c9c-40a8-b7de-ecf26ba6bf7d.jpg?1783947861" />

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Counterspell" src="https://cards.scryfall.io/large/front/e/8/e8493631-6c9c-40a8-b7de-ecf26ba6bf7d.jpg?1783947861" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$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-13&quot;:2.56},{&quot;2026-06-14&quot;:2.54},{&quot;2026-06-15&quot;:2.58},{&quot;2026-06-16&quot;:2.58},{&quot;2026-06-17&quot;:2.58},{&quot;2026-06-18&quot;:2.59},{&quot;2026-06-19&quot;:2.59},{&quot;2026-06-20&quot;:2.59},{&quot;2026-06-21&quot;:2.59},{&quot;2026-06-22&quot;:2.59},{&quot;2026-06-23&quot;:2.59},{&quot;2026-06-24&quot;:2.59},{&quot;2026-06-25&quot;:2.59},{&quot;2026-06-26&quot;:2.59},{&quot;2026-06-27&quot;:2.59},{&quot;2026-06-28&quot;:2.55},{&quot;2026-06-29&quot;:2.55},{&quot;2026-06-30&quot;:2.55},{&quot;2026-07-01&quot;:2.55},{&quot;2026-07-02&quot;:2.55},{&quot;2026-07-03&quot;:2.55},{&quot;2026-07-04&quot;:2.55},{&quot;2026-07-05&quot;:2.55},{&quot;2026-07-06&quot;:2.55},{&quot;2026-07-07&quot;:2.53},{&quot;2026-07-08&quot;:2.53},{&quot;2026-07-09&quot;:3.21},{&quot;2026-07-10&quot;:3.21},{&quot;2026-07-11&quot;:3.21},{&quot;2026-07-12&quot;:3.14},{&quot;2026-07-13&quot;:3.14},{&quot;2026-07-14&quot;:3.14},{&quot;2026-07-15&quot;:3.14},{&quot;2026-07-16&quot;:3.14},{&quot;2026-07-17&quot;:3.31},{&quot;2026-07-18&quot;:3.31},{&quot;2026-07-19&quot;:3.31},{&quot;2026-07-20&quot;:3.31},{&quot;2026-07-21&quot;:3.31},{&quot;2026-07-22&quot;:3.31},{&quot;2026-07-23&quot;:3.28},{&quot;2026-07-24&quot;:3.28},{&quot;2026-07-25&quot;:3.28},{&quot;2026-07-26&quot;:3.28},{&quot;2026-07-27&quot;:3.28},{&quot;2026-07-28&quot;:3.35},{&quot;2026-07-29&quot;:3.35},{&quot;2026-07-30&quot;:3.35},{&quot;2026-07-31&quot;:3.43},{&quot;2026-08-01&quot;:3.43},{&quot;2026-08-02&quot;:3.43},{&quot;2026-08-03&quot;:3.43},{&quot;2026-08-04&quot;:3.43},{&quot;2026-08-05&quot;:3.43},{&quot;2026-08-07&quot;:3.43},{&quot;2026-08-08&quot;:3.43},{&quot;2026-08-09&quot;:3.49},{&quot;2026-08-10&quot;:3.52},{&quot;2026-08-11&quot;:3.52},{&quot;2026-08-12&quot;:3.52},{&quot;2026-08-13&quot;:3.52},{&quot;2026-08-14&quot;:3.56},{&quot;2026-08-15&quot;:3.56},{&quot;2026-08-16&quot;:3.56},{&quot;2026-08-17&quot;:3.56},{&quot;2026-08-18&quot;:3.56},{&quot;2026-08-19&quot;:3.6},{&quot;2026-08-20&quot;:3.6},{&quot;2026-08-21&quot;:3.6},{&quot;2026-08-22&quot;:3.65},{&quot;2026-08-23&quot;:3.65},{&quot;2026-08-24&quot;:3.75},{&quot;2026-08-25&quot;:3.75},{&quot;2026-08-26&quot;:3.78},{&quot;2026-08-27&quot;:3.78},{&quot;2026-08-28&quot;:3.78},{&quot;2026-08-29&quot;:3.78},{&quot;2026-08-30&quot;:5.05},{&quot;2026-08-31&quot;:5.05},{&quot;2026-09-01&quot;:5.05},{&quot;2026-09-02&quot;:5.04},{&quot;2026-09-03&quot;:5.04},{&quot;2026-09-04&quot;:5.04},{&quot;2026-09-05&quot;:5.04},{&quot;2026-09-06&quot;:5.32},{&quot;2026-09-07&quot;:5.32},{&quot;2026-09-08&quot;:5.51},{&quot;2026-09-09&quot;:5.51},{&quot;2026-09-10&quot;:5.51},{&quot;2026-09-11&quot;:5.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="34106"
  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-ice 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">
            Márton Stromgald
        </span>


      </div>

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Márton Stromgald" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/8/7880e815-53e7-43e0-befd-e368f00a75d8.jpg?1783947487" />

        <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">
            Márton Stromgald
        </h3>

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Márton Stromgald" src="https://cards.scryfall.io/large/front/7/8/7880e815-53e7-43e0-befd-e368f00a75d8.jpg?1783947487" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:6.15},{&quot;2026-06-14&quot;:6.15},{&quot;2026-06-15&quot;:5.87},{&quot;2026-06-16&quot;:6.13},{&quot;2026-06-17&quot;:6.13},{&quot;2026-06-18&quot;:6.13},{&quot;2026-06-19&quot;:6.13},{&quot;2026-06-20&quot;:6.13},{&quot;2026-06-21&quot;:6.13},{&quot;2026-06-22&quot;:6.13},{&quot;2026-06-23&quot;:6.13},{&quot;2026-06-24&quot;:5.88},{&quot;2026-06-25&quot;:5.88},{&quot;2026-06-26&quot;:5.87},{&quot;2026-06-27&quot;:5.87},{&quot;2026-06-28&quot;:5.87},{&quot;2026-06-29&quot;:5.87},{&quot;2026-06-30&quot;:5.87},{&quot;2026-07-01&quot;:5.86},{&quot;2026-07-02&quot;:5.86},{&quot;2026-07-03&quot;:5.85},{&quot;2026-07-04&quot;:5.85},{&quot;2026-07-05&quot;:5.85},{&quot;2026-07-06&quot;:5.59},{&quot;2026-07-07&quot;:5.59},{&quot;2026-07-08&quot;:5.59},{&quot;2026-07-09&quot;:5.59},{&quot;2026-07-10&quot;:5.59},{&quot;2026-07-11&quot;:5.59},{&quot;2026-07-12&quot;:5.59},{&quot;2026-07-13&quot;:5.45},{&quot;2026-07-14&quot;:5.45},{&quot;2026-07-15&quot;:5.45},{&quot;2026-07-16&quot;:5.45},{&quot;2026-07-17&quot;:5.45},{&quot;2026-07-18&quot;:5.33},{&quot;2026-07-19&quot;:5.33},{&quot;2026-07-20&quot;:5.26},{&quot;2026-07-21&quot;:5.26},{&quot;2026-07-22&quot;:5.22},{&quot;2026-07-23&quot;:5.22},{&quot;2026-07-24&quot;:5.22},{&quot;2026-07-25&quot;:5.22},{&quot;2026-07-26&quot;:5.17},{&quot;2026-07-27&quot;:5.17},{&quot;2026-07-28&quot;:5.17},{&quot;2026-07-29&quot;:5.17},{&quot;2026-07-30&quot;:5.17},{&quot;2026-07-31&quot;:5.17},{&quot;2026-08-01&quot;:5.12},{&quot;2026-08-02&quot;:5.13},{&quot;2026-08-03&quot;:5.13},{&quot;2026-08-04&quot;:5.13},{&quot;2026-08-05&quot;:5.13},{&quot;2026-08-07&quot;:5.04},{&quot;2026-08-08&quot;:5.04},{&quot;2026-08-09&quot;:5.04},{&quot;2026-08-10&quot;:5.04},{&quot;2026-08-11&quot;:5.04},{&quot;2026-08-12&quot;:5.04},{&quot;2026-08-13&quot;:5.04},{&quot;2026-08-14&quot;:4.99},{&quot;2026-08-15&quot;:4.99},{&quot;2026-08-16&quot;:4.99},{&quot;2026-08-17&quot;:5.12},{&quot;2026-08-18&quot;:5.12},{&quot;2026-08-19&quot;:5.12},{&quot;2026-08-20&quot;:5.12},{&quot;2026-08-21&quot;:5.12},{&quot;2026-08-22&quot;:5.12},{&quot;2026-08-23&quot;:5.12},{&quot;2026-08-24&quot;:5.12},{&quot;2026-08-25&quot;:5.22},{&quot;2026-08-26&quot;:5.22},{&quot;2026-08-27&quot;:5.22},{&quot;2026-08-28&quot;:5.22},{&quot;2026-08-29&quot;:5.22},{&quot;2026-08-30&quot;:5.22},{&quot;2026-08-31&quot;:5.22},{&quot;2026-09-01&quot;:5.3},{&quot;2026-09-02&quot;:5.3},{&quot;2026-09-03&quot;:5.3},{&quot;2026-09-04&quot;:5.3},{&quot;2026-09-05&quot;:5.3},{&quot;2026-09-06&quot;:5.3},{&quot;2026-09-07&quot;:5.48},{&quot;2026-09-08&quot;:5.5},{&quot;2026-09-09&quot;:5.5},{&quot;2026-09-10&quot;:5.5},{&quot;2026-09-11&quot;:5.5}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="30004"
  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-4ed 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">
            Hypnotic Specter
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $5.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="Hypnotic Specter" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/5/b5900350-be08-4904-8f1b-cc180ed08485.jpg?1783947842" />

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Hypnotic Specter" src="https://cards.scryfall.io/large/front/b/5/b5900350-be08-4904-8f1b-cc180ed08485.jpg?1783947842" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:3.45},{&quot;2026-06-14&quot;:3.45},{&quot;2026-06-15&quot;:3.45},{&quot;2026-06-16&quot;:3.48},{&quot;2026-06-17&quot;:3.48},{&quot;2026-06-18&quot;:3.48},{&quot;2026-06-19&quot;:3.58},{&quot;2026-06-20&quot;:3.58},{&quot;2026-06-21&quot;:3.58},{&quot;2026-06-22&quot;:3.58},{&quot;2026-06-23&quot;:3.58},{&quot;2026-06-24&quot;:3.58},{&quot;2026-06-25&quot;:3.58},{&quot;2026-06-26&quot;:3.58},{&quot;2026-06-27&quot;:3.58},{&quot;2026-06-28&quot;:3.58},{&quot;2026-06-29&quot;:3.6},{&quot;2026-06-30&quot;:3.6},{&quot;2026-07-01&quot;:3.59},{&quot;2026-07-02&quot;:3.59},{&quot;2026-07-03&quot;:3.65},{&quot;2026-07-04&quot;:3.65},{&quot;2026-07-05&quot;:3.65},{&quot;2026-07-06&quot;:3.65},{&quot;2026-07-07&quot;:3.65},{&quot;2026-07-08&quot;:3.65},{&quot;2026-07-09&quot;:3.65},{&quot;2026-07-10&quot;:3.65},{&quot;2026-07-11&quot;:3.65},{&quot;2026-07-12&quot;:3.65},{&quot;2026-07-13&quot;:3.65},{&quot;2026-07-14&quot;:3.65},{&quot;2026-07-15&quot;:3.8},{&quot;2026-07-16&quot;:3.8},{&quot;2026-07-17&quot;:3.81},{&quot;2026-07-18&quot;:3.81},{&quot;2026-07-19&quot;:3.81},{&quot;2026-07-20&quot;:3.81},{&quot;2026-07-21&quot;:3.81},{&quot;2026-07-22&quot;:3.81},{&quot;2026-07-23&quot;:3.81},{&quot;2026-07-24&quot;:3.9},{&quot;2026-07-25&quot;:3.9},{&quot;2026-07-26&quot;:3.9},{&quot;2026-07-27&quot;:3.9},{&quot;2026-07-28&quot;:3.9},{&quot;2026-07-29&quot;:3.9},{&quot;2026-07-30&quot;:3.9},{&quot;2026-07-31&quot;:3.9},{&quot;2026-08-01&quot;:3.9},{&quot;2026-08-02&quot;:3.9},{&quot;2026-08-03&quot;:3.9},{&quot;2026-08-04&quot;:3.98},{&quot;2026-08-05&quot;:3.98},{&quot;2026-08-07&quot;:3.98},{&quot;2026-08-08&quot;:3.98},{&quot;2026-08-09&quot;:3.98},{&quot;2026-08-10&quot;:3.98},{&quot;2026-08-11&quot;:3.98},{&quot;2026-08-12&quot;:4.03},{&quot;2026-08-13&quot;:4.03},{&quot;2026-08-14&quot;:4.03},{&quot;2026-08-15&quot;:4.03},{&quot;2026-08-16&quot;:4.03},{&quot;2026-08-17&quot;:4.03},{&quot;2026-08-18&quot;:4.03},{&quot;2026-08-19&quot;:4.03},{&quot;2026-08-20&quot;:4.69},{&quot;2026-08-21&quot;:4.69},{&quot;2026-08-22&quot;:4.69},{&quot;2026-08-23&quot;:4.69},{&quot;2026-08-24&quot;:4.76},{&quot;2026-08-25&quot;:4.76},{&quot;2026-08-26&quot;:4.76},{&quot;2026-08-27&quot;:4.76},{&quot;2026-08-28&quot;:4.76},{&quot;2026-08-29&quot;:4.76},{&quot;2026-08-30&quot;:5.35},{&quot;2026-08-31&quot;:5.35},{&quot;2026-09-01&quot;:5.35},{&quot;2026-09-02&quot;:5.38},{&quot;2026-09-03&quot;:5.38},{&quot;2026-09-04&quot;:5.38},{&quot;2026-09-05&quot;:5.38},{&quot;2026-09-06&quot;:5.38},{&quot;2026-09-07&quot;:5.38},{&quot;2026-09-08&quot;:5.38},{&quot;2026-09-09&quot;:5.33},{&quot;2026-09-10&quot;:5.33},{&quot;2026-09-11&quot;:5.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="30019"
  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-4ed 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">
            Mind Twist
        </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">
            $5.22
          </span>
        </div>
      </div>
    </div>

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Mind Twist" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/b/bbb6765c-a052-46dc-a589-200b8ba8c99f.jpg?1783947842" />

        <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 Twist
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-x'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Mind Twist" src="https://cards.scryfall.io/large/front/b/b/bbb6765c-a052-46dc-a589-200b8ba8c99f.jpg?1783947842" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $5.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">$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-11&quot;:6.1},{&quot;2026-06-12&quot;:6.1},{&quot;2026-06-13&quot;:6.1},{&quot;2026-06-14&quot;:6.1},{&quot;2026-06-15&quot;:6.1},{&quot;2026-06-16&quot;:6.1},{&quot;2026-06-17&quot;:6.1},{&quot;2026-06-18&quot;:6.1},{&quot;2026-06-19&quot;:6.1},{&quot;2026-06-20&quot;:6.1},{&quot;2026-06-21&quot;:6.1},{&quot;2026-06-22&quot;:6.1},{&quot;2026-06-23&quot;:6.1},{&quot;2026-06-24&quot;:6.1},{&quot;2026-06-25&quot;:6.1},{&quot;2026-06-26&quot;:6.1},{&quot;2026-06-27&quot;:4.94},{&quot;2026-06-28&quot;:4.94},{&quot;2026-06-29&quot;:4.94},{&quot;2026-06-30&quot;:4.94},{&quot;2026-07-01&quot;:4.94},{&quot;2026-07-02&quot;:4.94},{&quot;2026-07-03&quot;:4.94},{&quot;2026-07-04&quot;:4.94},{&quot;2026-07-05&quot;:4.94},{&quot;2026-07-06&quot;:4.94},{&quot;2026-07-07&quot;:4.94},{&quot;2026-07-08&quot;:4.98},{&quot;2026-07-09&quot;:4.98},{&quot;2026-07-10&quot;:5.03},{&quot;2026-07-11&quot;:5.03},{&quot;2026-07-12&quot;:5.03},{&quot;2026-07-13&quot;:5.03},{&quot;2026-07-14&quot;:5.03},{&quot;2026-07-15&quot;:5.1},{&quot;2026-07-16&quot;:5.15},{&quot;2026-07-17&quot;:5.15},{&quot;2026-07-18&quot;:5.15},{&quot;2026-07-19&quot;:5.15},{&quot;2026-07-20&quot;:5.15},{&quot;2026-07-21&quot;:5.15},{&quot;2026-07-23&quot;:5.19},{&quot;2026-07-25&quot;:5.33},{&quot;2026-07-26&quot;:5.33},{&quot;2026-07-27&quot;:5.33},{&quot;2026-07-28&quot;:5.28},{&quot;2026-07-29&quot;:5.24},{&quot;2026-07-30&quot;:5.24},{&quot;2026-07-31&quot;:5.24},{&quot;2026-08-01&quot;:5.31},{&quot;2026-08-02&quot;:5.31},{&quot;2026-08-03&quot;:5.31},{&quot;2026-08-04&quot;:5.23},{&quot;2026-08-05&quot;:4.88},{&quot;2026-08-07&quot;:4.88},{&quot;2026-08-08&quot;:4.88},{&quot;2026-08-09&quot;:4.88},{&quot;2026-08-10&quot;:4.88},{&quot;2026-08-11&quot;:4.88},{&quot;2026-08-12&quot;:4.88},{&quot;2026-08-13&quot;:4.88},{&quot;2026-08-14&quot;:4.88},{&quot;2026-08-15&quot;:4.88},{&quot;2026-08-16&quot;:4.89},{&quot;2026-08-17&quot;:4.89},{&quot;2026-08-18&quot;:4.95},{&quot;2026-08-19&quot;:4.96},{&quot;2026-08-20&quot;:4.96},{&quot;2026-08-21&quot;:4.96},{&quot;2026-08-22&quot;:4.96},{&quot;2026-08-23&quot;:5.01},{&quot;2026-08-24&quot;:5.01},{&quot;2026-08-25&quot;:5.01},{&quot;2026-08-26&quot;:5.07},{&quot;2026-08-27&quot;:5.07},{&quot;2026-08-28&quot;:5.07},{&quot;2026-08-29&quot;:5.07},{&quot;2026-08-30&quot;:5.22},{&quot;2026-08-31&quot;:5.22},{&quot;2026-09-01&quot;:5.22},{&quot;2026-09-02&quot;:5.22},{&quot;2026-09-03&quot;:5.22},{&quot;2026-09-04&quot;:5.22},{&quot;2026-09-05&quot;:5.22},{&quot;2026-09-06&quot;:5.22},{&quot;2026-09-07&quot;:5.22},{&quot;2026-09-08&quot;:5.22},{&quot;2026-09-09&quot;:5.22},{&quot;2026-09-10&quot;:5.22},{&quot;2026-09-11&quot;:5.22}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="30048"
  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-4ed 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">
            Royal Assassin
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Royal Assassin
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Creature — Human Assassin</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="Royal Assassin" src="https://cards.scryfall.io/large/front/b/2/b2d51bdf-f118-4a1e-9060-bdf3c78697f2.jpg?1783947839" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="62252"
  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-3ed 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">
            Dark Ritual
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $4.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="Dark Ritual" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/8/48cb9467-657e-453f-afc8-1bf7121570ad.jpg?1783948325" />

        <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">
            Dark Ritual
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-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="Dark Ritual" src="https://cards.scryfall.io/large/front/4/8/48cb9467-657e-453f-afc8-1bf7121570ad.jpg?1783948325" />
    </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.79
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:5.1},{&quot;2026-06-14&quot;:5.02},{&quot;2026-06-15&quot;:5.07},{&quot;2026-06-16&quot;:5.07},{&quot;2026-06-17&quot;:5.07},{&quot;2026-06-18&quot;:4.99},{&quot;2026-06-19&quot;:4.99},{&quot;2026-06-20&quot;:5.05},{&quot;2026-06-21&quot;:5.05},{&quot;2026-06-22&quot;:5.12},{&quot;2026-06-23&quot;:5.12},{&quot;2026-06-24&quot;:5.25},{&quot;2026-06-25&quot;:5.25},{&quot;2026-06-26&quot;:5.25},{&quot;2026-06-27&quot;:5.31},{&quot;2026-06-28&quot;:5.36},{&quot;2026-06-29&quot;:5.36},{&quot;2026-06-30&quot;:5.36},{&quot;2026-07-01&quot;:5.36},{&quot;2026-07-02&quot;:5.33},{&quot;2026-07-03&quot;:5.33},{&quot;2026-07-04&quot;:5.33},{&quot;2026-07-05&quot;:5.33},{&quot;2026-07-06&quot;:5.33},{&quot;2026-07-07&quot;:5.33},{&quot;2026-07-08&quot;:5.33},{&quot;2026-07-09&quot;:5.33},{&quot;2026-07-10&quot;:5.33},{&quot;2026-07-11&quot;:5.33},{&quot;2026-07-12&quot;:5.33},{&quot;2026-07-13&quot;:5.33},{&quot;2026-07-14&quot;:5.25},{&quot;2026-07-15&quot;:5.25},{&quot;2026-07-16&quot;:5.11},{&quot;2026-07-17&quot;:4.91},{&quot;2026-07-18&quot;:4.91},{&quot;2026-07-19&quot;:4.86},{&quot;2026-07-20&quot;:4.66},{&quot;2026-07-21&quot;:4.66},{&quot;2026-07-22&quot;:4.66},{&quot;2026-07-23&quot;:4.64},{&quot;2026-07-24&quot;:4.63},{&quot;2026-07-25&quot;:4.63},{&quot;2026-07-26&quot;:4.63},{&quot;2026-07-27&quot;:4.59},{&quot;2026-07-28&quot;:4.59},{&quot;2026-07-29&quot;:4.59},{&quot;2026-07-30&quot;:4.55},{&quot;2026-07-31&quot;:4.53},{&quot;2026-08-01&quot;:4.51},{&quot;2026-08-02&quot;:4.52},{&quot;2026-08-03&quot;:4.52},{&quot;2026-08-04&quot;:4.48},{&quot;2026-08-05&quot;:4.52},{&quot;2026-08-07&quot;:4.53},{&quot;2026-08-08&quot;:4.44},{&quot;2026-08-09&quot;:4.55},{&quot;2026-08-10&quot;:4.54},{&quot;2026-08-11&quot;:4.48},{&quot;2026-08-12&quot;:4.49},{&quot;2026-08-13&quot;:4.44},{&quot;2026-08-14&quot;:4.41},{&quot;2026-08-15&quot;:4.52},{&quot;2026-08-16&quot;:4.47},{&quot;2026-08-17&quot;:4.59},{&quot;2026-08-18&quot;:4.62},{&quot;2026-08-19&quot;:4.61},{&quot;2026-08-20&quot;:4.69},{&quot;2026-08-21&quot;:4.82},{&quot;2026-08-22&quot;:4.99},{&quot;2026-08-23&quot;:4.89},{&quot;2026-08-24&quot;:4.78},{&quot;2026-08-25&quot;:4.53},{&quot;2026-08-26&quot;:4.4},{&quot;2026-08-27&quot;:4.42},{&quot;2026-08-28&quot;:4.29},{&quot;2026-08-29&quot;:4.29},{&quot;2026-08-30&quot;:4.26},{&quot;2026-08-31&quot;:4.28},{&quot;2026-09-01&quot;:4.85},{&quot;2026-09-02&quot;:4.85},{&quot;2026-09-03&quot;:4.96},{&quot;2026-09-04&quot;:4.98},{&quot;2026-09-05&quot;:4.61},{&quot;2026-09-06&quot;:4.65},{&quot;2026-09-07&quot;:4.65},{&quot;2026-09-08&quot;:4.65},{&quot;2026-09-09&quot;:4.7},{&quot;2026-09-10&quot;:4.72},{&quot;2026-09-11&quot;:4.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="30452"
  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-4ed 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">
            Black Vise
        </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">
            2 owned
          </div>

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Black Vise" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/9/196b83a1-2a25-498d-83b8-8faacd79909d.jpg?1783947806" />

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

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Black Vise
        </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="Black Vise" src="https://cards.scryfall.io/large/front/1/9/196b83a1-2a25-498d-83b8-8faacd79909d.jpg?1783947806" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

                <span class="text-xs text-accent-50">
                  ↑
                  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">$1.30</span>
              <span class="text-xs text-grey-text">Credit: $1.69</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-12&quot;:2.63},{&quot;2026-06-13&quot;:2.63},{&quot;2026-06-14&quot;:2.84},{&quot;2026-06-15&quot;:2.87},{&quot;2026-06-16&quot;:2.87},{&quot;2026-06-17&quot;:2.87},{&quot;2026-06-18&quot;:2.87},{&quot;2026-06-19&quot;:2.87},{&quot;2026-06-20&quot;:2.87},{&quot;2026-06-21&quot;:2.87},{&quot;2026-06-22&quot;:2.87},{&quot;2026-06-23&quot;:2.82},{&quot;2026-06-24&quot;:2.87},{&quot;2026-06-25&quot;:2.87},{&quot;2026-06-26&quot;:2.87},{&quot;2026-06-27&quot;:2.87},{&quot;2026-06-28&quot;:2.87},{&quot;2026-06-29&quot;:2.87},{&quot;2026-06-30&quot;:2.87},{&quot;2026-07-01&quot;:2.87},{&quot;2026-07-02&quot;:2.86},{&quot;2026-07-03&quot;:2.86},{&quot;2026-07-04&quot;:2.86},{&quot;2026-07-05&quot;:2.86},{&quot;2026-07-06&quot;:2.86},{&quot;2026-07-07&quot;:2.84},{&quot;2026-07-08&quot;:2.84},{&quot;2026-07-09&quot;:2.84},{&quot;2026-07-10&quot;:2.91},{&quot;2026-07-11&quot;:2.91},{&quot;2026-07-12&quot;:2.84},{&quot;2026-07-13&quot;:2.84},{&quot;2026-07-14&quot;:2.84},{&quot;2026-07-15&quot;:2.84},{&quot;2026-07-16&quot;:2.84},{&quot;2026-07-17&quot;:2.93},{&quot;2026-07-18&quot;:2.93},{&quot;2026-07-19&quot;:2.93},{&quot;2026-07-20&quot;:2.93},{&quot;2026-07-21&quot;:2.93},{&quot;2026-07-23&quot;:2.97},{&quot;2026-07-24&quot;:2.97},{&quot;2026-07-25&quot;:2.99},{&quot;2026-07-26&quot;:2.99},{&quot;2026-07-27&quot;:3.05},{&quot;2026-07-28&quot;:3.05},{&quot;2026-07-29&quot;:3.2},{&quot;2026-07-30&quot;:3.2},{&quot;2026-07-31&quot;:3.2},{&quot;2026-08-01&quot;:3.2},{&quot;2026-08-02&quot;:3.2},{&quot;2026-08-03&quot;:3.2},{&quot;2026-08-04&quot;:3.13},{&quot;2026-08-05&quot;:3.23},{&quot;2026-08-07&quot;:3.14},{&quot;2026-08-08&quot;:3.22},{&quot;2026-08-09&quot;:3.37},{&quot;2026-08-10&quot;:3.37},{&quot;2026-08-11&quot;:3.44},{&quot;2026-08-12&quot;:3.44},{&quot;2026-08-13&quot;:3.44},{&quot;2026-08-14&quot;:3.18},{&quot;2026-08-15&quot;:3.18},{&quot;2026-08-16&quot;:3.18},{&quot;2026-08-17&quot;:3.18},{&quot;2026-08-18&quot;:3.18},{&quot;2026-08-19&quot;:3.32},{&quot;2026-08-20&quot;:3.32},{&quot;2026-08-21&quot;:3.32},{&quot;2026-08-22&quot;:3.32},{&quot;2026-08-23&quot;:3.24},{&quot;2026-08-24&quot;:3.24},{&quot;2026-08-25&quot;:3.54},{&quot;2026-08-26&quot;:3.51},{&quot;2026-08-27&quot;:3.51},{&quot;2026-08-28&quot;:3.51},{&quot;2026-08-29&quot;:3.51},{&quot;2026-08-30&quot;:3.8},{&quot;2026-08-31&quot;:3.75},{&quot;2026-09-01&quot;:3.75},{&quot;2026-09-02&quot;:3.72},{&quot;2026-09-03&quot;:3.64},{&quot;2026-09-04&quot;:3.7},{&quot;2026-09-05&quot;:4.14},{&quot;2026-09-06&quot;:4.17},{&quot;2026-09-07&quot;:4.64},{&quot;2026-09-08&quot;:4.64},{&quot;2026-09-09&quot;:4.56},{&quot;2026-09-10&quot;:4.56},{&quot;2026-09-11&quot;:4.78}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="33709"
  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-ice 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">
            Hydroblast
        </span>


      </div>

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Hydroblast" src="https://cards.scryfall.io/large/front/f/6/f62716f0-fde2-49ef-b8a4-c1b03f451194.jpg?1783947514" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $4.74
              </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">$4.70</span>
              <span class="text-xs text-grey-text">Credit: $6.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-08&quot;:5.0},{&quot;2026-06-10&quot;:4.88},{&quot;2026-06-11&quot;:4.91},{&quot;2026-06-12&quot;:4.89},{&quot;2026-06-13&quot;:4.77},{&quot;2026-06-14&quot;:4.66},{&quot;2026-06-15&quot;:4.63},{&quot;2026-06-16&quot;:4.68},{&quot;2026-06-17&quot;:4.66},{&quot;2026-06-18&quot;:4.66},{&quot;2026-06-19&quot;:4.7},{&quot;2026-06-20&quot;:4.69},{&quot;2026-06-21&quot;:4.62},{&quot;2026-06-22&quot;:4.57},{&quot;2026-06-24&quot;:4.66},{&quot;2026-06-25&quot;:4.66},{&quot;2026-06-26&quot;:4.66},{&quot;2026-06-27&quot;:4.66},{&quot;2026-06-28&quot;:4.66},{&quot;2026-06-29&quot;:4.63},{&quot;2026-06-30&quot;:4.56},{&quot;2026-07-01&quot;:4.56},{&quot;2026-07-02&quot;:4.56},{&quot;2026-07-03&quot;:4.56},{&quot;2026-07-04&quot;:4.49},{&quot;2026-07-05&quot;:4.48},{&quot;2026-07-06&quot;:4.43},{&quot;2026-07-07&quot;:4.42},{&quot;2026-07-08&quot;:4.42},{&quot;2026-07-09&quot;:4.29},{&quot;2026-07-10&quot;:4.25},{&quot;2026-07-11&quot;:4.25},{&quot;2026-07-12&quot;:4.23},{&quot;2026-07-13&quot;:4.24},{&quot;2026-07-14&quot;:4.24},{&quot;2026-07-15&quot;:4.27},{&quot;2026-07-16&quot;:4.22},{&quot;2026-07-17&quot;:4.14},{&quot;2026-07-18&quot;:4.26},{&quot;2026-07-19&quot;:4.26},{&quot;2026-07-20&quot;:4.16},{&quot;2026-07-21&quot;:4.12},{&quot;2026-07-23&quot;:4.08},{&quot;2026-07-25&quot;:3.98},{&quot;2026-07-26&quot;:4.03},{&quot;2026-07-27&quot;:4.12},{&quot;2026-07-29&quot;:4.13},{&quot;2026-07-30&quot;:4.18},{&quot;2026-07-31&quot;:4.22},{&quot;2026-08-01&quot;:4.2},{&quot;2026-08-02&quot;:4.23},{&quot;2026-08-03&quot;:4.28},{&quot;2026-08-04&quot;:4.28},{&quot;2026-08-05&quot;:4.32},{&quot;2026-08-07&quot;:4.36},{&quot;2026-08-08&quot;:4.36},{&quot;2026-08-09&quot;:4.37},{&quot;2026-08-10&quot;:4.36},{&quot;2026-08-11&quot;:4.59},{&quot;2026-08-12&quot;:4.53},{&quot;2026-08-13&quot;:4.55},{&quot;2026-08-14&quot;:4.57},{&quot;2026-08-15&quot;:4.57},{&quot;2026-08-16&quot;:4.57},{&quot;2026-08-17&quot;:4.97},{&quot;2026-08-18&quot;:4.82},{&quot;2026-08-19&quot;:4.78},{&quot;2026-08-20&quot;:4.78},{&quot;2026-08-21&quot;:5.03},{&quot;2026-08-22&quot;:5.06},{&quot;2026-08-23&quot;:5.06},{&quot;2026-08-24&quot;:5.12},{&quot;2026-08-25&quot;:5.12},{&quot;2026-08-26&quot;:5.12},{&quot;2026-08-27&quot;:5.23},{&quot;2026-08-28&quot;:5.34},{&quot;2026-08-29&quot;:5.34},{&quot;2026-08-30&quot;:5.23},{&quot;2026-08-31&quot;:5.23},{&quot;2026-09-01&quot;:5.23},{&quot;2026-09-02&quot;:5.21},{&quot;2026-09-03&quot;:4.86},{&quot;2026-09-04&quot;:4.82},{&quot;2026-09-05&quot;:4.84},{&quot;2026-09-06&quot;:4.79},{&quot;2026-09-07&quot;:4.66},{&quot;2026-09-08&quot;:4.71},{&quot;2026-09-09&quot;:4.66},{&quot;2026-09-10&quot;:4.71},{&quot;2026-09-11&quot;:4.74}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="30505"
  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-4ed 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">
            Fellwar 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">
              ↑
              1%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $4.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="Fellwar Stone" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/6/f/6f7a41cc-277a-4d95-a30c-91bf5aa7ac11.jpg?1783947802" />

        <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">
            Fellwar Stone
        </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="Fellwar Stone" src="https://cards.scryfall.io/large/front/6/f/6f7a41cc-277a-4d95-a30c-91bf5aa7ac11.jpg?1783947802" />
    </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.56
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:3.54},{&quot;2026-06-14&quot;:3.74},{&quot;2026-06-15&quot;:3.69},{&quot;2026-06-16&quot;:3.69},{&quot;2026-06-17&quot;:3.49},{&quot;2026-06-18&quot;:3.49},{&quot;2026-06-19&quot;:3.49},{&quot;2026-06-20&quot;:3.49},{&quot;2026-06-21&quot;:3.49},{&quot;2026-06-22&quot;:3.49},{&quot;2026-06-23&quot;:3.49},{&quot;2026-06-24&quot;:3.36},{&quot;2026-06-25&quot;:3.36},{&quot;2026-06-26&quot;:3.36},{&quot;2026-06-27&quot;:3.36},{&quot;2026-06-28&quot;:3.35},{&quot;2026-06-29&quot;:3.35},{&quot;2026-06-30&quot;:3.35},{&quot;2026-07-01&quot;:3.3},{&quot;2026-07-02&quot;:3.28},{&quot;2026-07-03&quot;:3.28},{&quot;2026-07-04&quot;:3.28},{&quot;2026-07-05&quot;:3.28},{&quot;2026-07-06&quot;:3.28},{&quot;2026-07-07&quot;:3.28},{&quot;2026-07-08&quot;:3.28},{&quot;2026-07-09&quot;:3.28},{&quot;2026-07-10&quot;:3.28},{&quot;2026-07-11&quot;:3.28},{&quot;2026-07-12&quot;:3.28},{&quot;2026-07-13&quot;:3.28},{&quot;2026-07-14&quot;:3.32},{&quot;2026-07-15&quot;:3.26},{&quot;2026-07-16&quot;:3.18},{&quot;2026-07-17&quot;:3.18},{&quot;2026-07-18&quot;:3.18},{&quot;2026-07-19&quot;:3.18},{&quot;2026-07-20&quot;:3.18},{&quot;2026-07-21&quot;:3.26},{&quot;2026-07-22&quot;:3.23},{&quot;2026-07-23&quot;:3.23},{&quot;2026-07-24&quot;:3.2},{&quot;2026-07-25&quot;:3.25},{&quot;2026-07-26&quot;:3.23},{&quot;2026-07-27&quot;:3.23},{&quot;2026-07-28&quot;:3.35},{&quot;2026-07-29&quot;:3.35},{&quot;2026-07-30&quot;:3.35},{&quot;2026-07-31&quot;:3.97},{&quot;2026-08-01&quot;:3.97},{&quot;2026-08-02&quot;:3.79},{&quot;2026-08-03&quot;:3.79},{&quot;2026-08-04&quot;:3.64},{&quot;2026-08-05&quot;:3.64},{&quot;2026-08-07&quot;:3.51},{&quot;2026-08-08&quot;:3.51},{&quot;2026-08-09&quot;:3.53},{&quot;2026-08-10&quot;:3.53},{&quot;2026-08-11&quot;:3.53},{&quot;2026-08-12&quot;:3.53},{&quot;2026-08-13&quot;:3.53},{&quot;2026-08-14&quot;:3.53},{&quot;2026-08-15&quot;:3.53},{&quot;2026-08-16&quot;:3.55},{&quot;2026-08-17&quot;:3.55},{&quot;2026-08-18&quot;:3.55},{&quot;2026-08-19&quot;:3.57},{&quot;2026-08-20&quot;:3.53},{&quot;2026-08-21&quot;:3.58},{&quot;2026-08-22&quot;:3.58},{&quot;2026-08-23&quot;:3.58},{&quot;2026-08-24&quot;:3.58},{&quot;2026-08-25&quot;:3.7},{&quot;2026-08-26&quot;:3.86},{&quot;2026-08-27&quot;:3.86},{&quot;2026-08-28&quot;:3.86},{&quot;2026-08-29&quot;:3.86},{&quot;2026-08-30&quot;:4.51},{&quot;2026-08-31&quot;:4.51},{&quot;2026-09-01&quot;:4.51},{&quot;2026-09-02&quot;:4.51},{&quot;2026-09-03&quot;:4.51},{&quot;2026-09-04&quot;:4.51},{&quot;2026-09-05&quot;:4.51},{&quot;2026-09-06&quot;:4.51},{&quot;2026-09-07&quot;:4.51},{&quot;2026-09-08&quot;:4.51},{&quot;2026-09-09&quot;:4.56},{&quot;2026-09-10&quot;:4.56},{&quot;2026-09-11&quot;:4.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="1773"
  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-all 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">
            Pyrokinesis
        </span>


      </div>

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Pyrokinesis" src="https://cards.scryfall.io/large/front/d/b/db2a5e85-6cbc-43c1-9362-4056ad017ef0.jpg?1783947176" />
    </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.50
              </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">$4.00</span>
              <span class="text-xs text-grey-text">Credit: $5.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-08&quot;:4.86},{&quot;2026-06-10&quot;:4.84},{&quot;2026-06-11&quot;:4.89},{&quot;2026-06-12&quot;:4.89},{&quot;2026-06-13&quot;:4.88},{&quot;2026-06-14&quot;:4.88},{&quot;2026-06-15&quot;:4.88},{&quot;2026-06-16&quot;:4.88},{&quot;2026-06-17&quot;:4.88},{&quot;2026-06-18&quot;:4.8},{&quot;2026-06-19&quot;:4.8},{&quot;2026-06-20&quot;:4.76},{&quot;2026-06-21&quot;:4.77},{&quot;2026-06-22&quot;:4.77},{&quot;2026-06-24&quot;:4.87},{&quot;2026-06-25&quot;:4.78},{&quot;2026-06-26&quot;:4.78},{&quot;2026-06-27&quot;:4.78},{&quot;2026-06-28&quot;:4.78},{&quot;2026-06-29&quot;:4.87},{&quot;2026-06-30&quot;:4.87},{&quot;2026-07-01&quot;:4.82},{&quot;2026-07-02&quot;:4.82},{&quot;2026-07-03&quot;:4.75},{&quot;2026-07-04&quot;:4.75},{&quot;2026-07-05&quot;:4.75},{&quot;2026-07-06&quot;:4.73},{&quot;2026-07-07&quot;:4.73},{&quot;2026-07-08&quot;:4.75},{&quot;2026-07-09&quot;:4.78},{&quot;2026-07-10&quot;:4.78},{&quot;2026-07-11&quot;:4.75},{&quot;2026-07-12&quot;:4.75},{&quot;2026-07-13&quot;:4.75},{&quot;2026-07-14&quot;:4.75},{&quot;2026-07-15&quot;:4.75},{&quot;2026-07-16&quot;:4.78},{&quot;2026-07-17&quot;:4.86},{&quot;2026-07-18&quot;:4.9},{&quot;2026-07-19&quot;:4.94},{&quot;2026-07-20&quot;:4.94},{&quot;2026-07-21&quot;:4.79},{&quot;2026-07-23&quot;:4.74},{&quot;2026-07-25&quot;:4.8},{&quot;2026-07-26&quot;:4.8},{&quot;2026-07-27&quot;:4.86},{&quot;2026-07-29&quot;:5.34},{&quot;2026-07-30&quot;:5.59},{&quot;2026-07-31&quot;:5.57},{&quot;2026-08-01&quot;:5.57},{&quot;2026-08-02&quot;:5.55},{&quot;2026-08-03&quot;:5.45},{&quot;2026-08-04&quot;:5.45},{&quot;2026-08-05&quot;:5.47},{&quot;2026-08-07&quot;:5.43},{&quot;2026-08-08&quot;:5.43},{&quot;2026-08-09&quot;:5.37},{&quot;2026-08-10&quot;:5.37},{&quot;2026-08-11&quot;:5.39},{&quot;2026-08-12&quot;:5.39},{&quot;2026-08-13&quot;:5.47},{&quot;2026-08-14&quot;:5.37},{&quot;2026-08-15&quot;:5.29},{&quot;2026-08-16&quot;:5.06},{&quot;2026-08-17&quot;:4.98},{&quot;2026-08-18&quot;:4.98},{&quot;2026-08-19&quot;:5.02},{&quot;2026-08-20&quot;:5.02},{&quot;2026-08-21&quot;:5.02},{&quot;2026-08-22&quot;:5.02},{&quot;2026-08-23&quot;:5.01},{&quot;2026-08-24&quot;:5.01},{&quot;2026-08-25&quot;:5.01},{&quot;2026-08-26&quot;:5.04},{&quot;2026-08-27&quot;:5.04},{&quot;2026-08-28&quot;:5.04},{&quot;2026-08-29&quot;:5.04},{&quot;2026-08-30&quot;:5.02},{&quot;2026-08-31&quot;:5.02},{&quot;2026-09-01&quot;:5.02},{&quot;2026-09-02&quot;:5.02},{&quot;2026-09-03&quot;:5.02},{&quot;2026-09-04&quot;:4.85},{&quot;2026-09-05&quot;:4.6},{&quot;2026-09-06&quot;:4.35},{&quot;2026-09-07&quot;:4.35},{&quot;2026-09-08&quot;:4.35},{&quot;2026-09-09&quot;:4.49},{&quot;2026-09-10&quot;:4.5},{&quot;2026-09-11&quot;:4.5}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="34279"
  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-ice 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">
            Nature&#39;s Lore
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $4.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="Nature&#39;s Lore" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/6/6/668d2969-b6b7-4507-bdd4-20bbaa68035a.jpg?1783947474" />

        <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">
            Nature&#39;s Lore
        </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">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-g'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Nature&#39;s Lore" src="https://cards.scryfall.io/large/front/6/6/668d2969-b6b7-4507-bdd4-20bbaa68035a.jpg?1783947474" />
    </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.49
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:4.33},{&quot;2026-06-14&quot;:4.33},{&quot;2026-06-15&quot;:4.37},{&quot;2026-06-16&quot;:4.37},{&quot;2026-06-17&quot;:4.37},{&quot;2026-06-18&quot;:4.38},{&quot;2026-06-19&quot;:4.38},{&quot;2026-06-20&quot;:4.3},{&quot;2026-06-21&quot;:4.3},{&quot;2026-06-22&quot;:4.3},{&quot;2026-06-23&quot;:4.22},{&quot;2026-06-24&quot;:4.22},{&quot;2026-06-25&quot;:4.13},{&quot;2026-06-26&quot;:4.02},{&quot;2026-06-27&quot;:4.01},{&quot;2026-06-28&quot;:4.06},{&quot;2026-06-29&quot;:4.06},{&quot;2026-06-30&quot;:4.11},{&quot;2026-07-01&quot;:4.11},{&quot;2026-07-02&quot;:4.11},{&quot;2026-07-03&quot;:4.18},{&quot;2026-07-04&quot;:4.18},{&quot;2026-07-05&quot;:4.18},{&quot;2026-07-06&quot;:4.19},{&quot;2026-07-07&quot;:4.19},{&quot;2026-07-08&quot;:4.19},{&quot;2026-07-09&quot;:4.3},{&quot;2026-07-10&quot;:4.3},{&quot;2026-07-11&quot;:4.3},{&quot;2026-07-12&quot;:4.2},{&quot;2026-07-13&quot;:4.27},{&quot;2026-07-14&quot;:4.27},{&quot;2026-07-15&quot;:4.27},{&quot;2026-07-16&quot;:4.27},{&quot;2026-07-17&quot;:4.22},{&quot;2026-07-18&quot;:4.22},{&quot;2026-07-19&quot;:4.22},{&quot;2026-07-20&quot;:4.22},{&quot;2026-07-21&quot;:4.16},{&quot;2026-07-22&quot;:4.1},{&quot;2026-07-23&quot;:4.12},{&quot;2026-07-24&quot;:4.12},{&quot;2026-07-25&quot;:4.12},{&quot;2026-07-26&quot;:4.12},{&quot;2026-07-27&quot;:4.12},{&quot;2026-07-28&quot;:4.08},{&quot;2026-07-29&quot;:4.08},{&quot;2026-07-30&quot;:4.21},{&quot;2026-07-31&quot;:4.21},{&quot;2026-08-01&quot;:4.21},{&quot;2026-08-02&quot;:4.21},{&quot;2026-08-03&quot;:4.21},{&quot;2026-08-04&quot;:4.17},{&quot;2026-08-05&quot;:4.19},{&quot;2026-08-07&quot;:4.19},{&quot;2026-08-08&quot;:4.24},{&quot;2026-08-09&quot;:4.23},{&quot;2026-08-10&quot;:4.29},{&quot;2026-08-11&quot;:4.36},{&quot;2026-08-12&quot;:4.36},{&quot;2026-08-13&quot;:4.36},{&quot;2026-08-14&quot;:4.36},{&quot;2026-08-15&quot;:4.36},{&quot;2026-08-16&quot;:4.37},{&quot;2026-08-17&quot;:4.37},{&quot;2026-08-18&quot;:4.48},{&quot;2026-08-19&quot;:4.43},{&quot;2026-08-20&quot;:4.55},{&quot;2026-08-21&quot;:4.43},{&quot;2026-08-22&quot;:4.47},{&quot;2026-08-23&quot;:4.47},{&quot;2026-08-24&quot;:4.47},{&quot;2026-08-25&quot;:4.39},{&quot;2026-08-26&quot;:4.39},{&quot;2026-08-27&quot;:4.4},{&quot;2026-08-28&quot;:4.4},{&quot;2026-08-29&quot;:4.4},{&quot;2026-08-30&quot;:4.58},{&quot;2026-08-31&quot;:4.73},{&quot;2026-09-01&quot;:4.73},{&quot;2026-09-02&quot;:4.77},{&quot;2026-09-03&quot;:4.77},{&quot;2026-09-04&quot;:4.7},{&quot;2026-09-05&quot;:4.7},{&quot;2026-09-06&quot;:4.7},{&quot;2026-09-07&quot;:4.67},{&quot;2026-09-08&quot;:4.67},{&quot;2026-09-09&quot;:4.64},{&quot;2026-09-10&quot;:4.5},{&quot;2026-09-11&quot;:4.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="30556"
  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-4ed 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">
            Nevinyrral&#39;s Disk
        </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">
            2 owned
          </div>

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

          <span class="text-sm font-medium text-nine-white">
            $4.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="Nevinyrral&#39;s Disk" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/4/d427396c-f1ef-46ac-b130-ed1e51e826a3.jpg?1783947797" />

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Nevinyrral&#39;s Disk" src="https://cards.scryfall.io/large/front/d/4/d427396c-f1ef-46ac-b130-ed1e51e826a3.jpg?1783947797" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-11&quot;:3.1},{&quot;2026-06-12&quot;:3.1},{&quot;2026-06-13&quot;:3.1},{&quot;2026-06-14&quot;:3.1},{&quot;2026-06-15&quot;:3.1},{&quot;2026-06-16&quot;:3.1},{&quot;2026-06-17&quot;:3.1},{&quot;2026-06-18&quot;:3.1},{&quot;2026-06-19&quot;:3.13},{&quot;2026-06-20&quot;:3.13},{&quot;2026-06-21&quot;:3.13},{&quot;2026-06-22&quot;:3.13},{&quot;2026-06-23&quot;:3.13},{&quot;2026-06-24&quot;:3.13},{&quot;2026-06-25&quot;:3.13},{&quot;2026-06-26&quot;:3.13},{&quot;2026-06-27&quot;:3.13},{&quot;2026-06-28&quot;:3.13},{&quot;2026-06-29&quot;:3.13},{&quot;2026-06-30&quot;:3.13},{&quot;2026-07-01&quot;:3.13},{&quot;2026-07-02&quot;:3.15},{&quot;2026-07-03&quot;:3.15},{&quot;2026-07-04&quot;:3.15},{&quot;2026-07-05&quot;:3.15},{&quot;2026-07-06&quot;:3.15},{&quot;2026-07-07&quot;:3.15},{&quot;2026-07-08&quot;:3.33},{&quot;2026-07-09&quot;:3.33},{&quot;2026-07-10&quot;:3.33},{&quot;2026-07-11&quot;:3.33},{&quot;2026-07-12&quot;:3.33},{&quot;2026-07-13&quot;:3.33},{&quot;2026-07-14&quot;:3.33},{&quot;2026-07-15&quot;:3.33},{&quot;2026-07-16&quot;:3.33},{&quot;2026-07-17&quot;:3.33},{&quot;2026-07-18&quot;:3.33},{&quot;2026-07-19&quot;:3.33},{&quot;2026-07-20&quot;:3.33},{&quot;2026-07-21&quot;:3.33},{&quot;2026-07-23&quot;:3.33},{&quot;2026-07-25&quot;:3.4},{&quot;2026-07-26&quot;:3.4},{&quot;2026-07-27&quot;:3.4},{&quot;2026-07-28&quot;:3.4},{&quot;2026-07-29&quot;:3.4},{&quot;2026-07-30&quot;:3.4},{&quot;2026-07-31&quot;:3.4},{&quot;2026-08-01&quot;:3.4},{&quot;2026-08-02&quot;:3.4},{&quot;2026-08-03&quot;:3.4},{&quot;2026-08-04&quot;:3.43},{&quot;2026-08-05&quot;:3.43},{&quot;2026-08-07&quot;:3.43},{&quot;2026-08-08&quot;:3.43},{&quot;2026-08-09&quot;:3.43},{&quot;2026-08-10&quot;:3.43},{&quot;2026-08-11&quot;:3.43},{&quot;2026-08-12&quot;:3.43},{&quot;2026-08-13&quot;:3.39},{&quot;2026-08-14&quot;:3.39},{&quot;2026-08-15&quot;:3.39},{&quot;2026-08-16&quot;:3.39},{&quot;2026-08-17&quot;:3.43},{&quot;2026-08-18&quot;:3.39},{&quot;2026-08-19&quot;:3.39},{&quot;2026-08-20&quot;:3.39},{&quot;2026-08-21&quot;:3.52},{&quot;2026-08-22&quot;:3.52},{&quot;2026-08-23&quot;:3.41},{&quot;2026-08-24&quot;:3.41},{&quot;2026-08-25&quot;:3.41},{&quot;2026-08-26&quot;:3.41},{&quot;2026-08-27&quot;:3.39},{&quot;2026-08-28&quot;:3.39},{&quot;2026-08-29&quot;:3.39},{&quot;2026-08-30&quot;:3.46},{&quot;2026-08-31&quot;:3.46},{&quot;2026-09-01&quot;:3.46},{&quot;2026-09-02&quot;:3.46},{&quot;2026-09-03&quot;:3.5},{&quot;2026-09-04&quot;:3.5},{&quot;2026-09-05&quot;:3.5},{&quot;2026-09-06&quot;:4.22},{&quot;2026-09-07&quot;:4.31},{&quot;2026-09-08&quot;:4.31},{&quot;2026-09-09&quot;:4.31},{&quot;2026-09-10&quot;:4.31},{&quot;2026-09-11&quot;:4.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="29779"
  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-4ed 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">
            Drain Power
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $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="Drain Power" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/e/3/e3009237-fb96-497f-9a6e-b93b8115528a.jpg?1783947861" />

        <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">
            Drain Power
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-u'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
          </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="Drain Power" src="https://cards.scryfall.io/large/front/e/3/e3009237-fb96-497f-9a6e-b93b8115528a.jpg?1783947861" />
    </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-50">
                  ↑
                  3%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$1.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;:3.72},{&quot;2026-06-14&quot;:3.72},{&quot;2026-06-15&quot;:3.72},{&quot;2026-06-16&quot;:3.77},{&quot;2026-06-17&quot;:3.77},{&quot;2026-06-18&quot;:3.77},{&quot;2026-06-19&quot;:3.77},{&quot;2026-06-20&quot;:3.77},{&quot;2026-06-21&quot;:3.77},{&quot;2026-06-22&quot;:3.77},{&quot;2026-06-23&quot;:3.77},{&quot;2026-06-24&quot;:3.77},{&quot;2026-06-25&quot;:3.77},{&quot;2026-06-26&quot;:3.77},{&quot;2026-06-27&quot;:3.79},{&quot;2026-06-28&quot;:3.79},{&quot;2026-06-29&quot;:3.79},{&quot;2026-06-30&quot;:3.79},{&quot;2026-07-01&quot;:3.79},{&quot;2026-07-02&quot;:3.79},{&quot;2026-07-03&quot;:3.79},{&quot;2026-07-04&quot;:3.79},{&quot;2026-07-05&quot;:3.8},{&quot;2026-07-06&quot;:3.8},{&quot;2026-07-07&quot;:3.8},{&quot;2026-07-08&quot;:3.8},{&quot;2026-07-09&quot;:3.8},{&quot;2026-07-10&quot;:3.83},{&quot;2026-07-11&quot;:3.83},{&quot;2026-07-12&quot;:3.83},{&quot;2026-07-13&quot;:3.83},{&quot;2026-07-14&quot;:3.83},{&quot;2026-07-15&quot;:3.83},{&quot;2026-07-16&quot;:3.83},{&quot;2026-07-17&quot;:3.83},{&quot;2026-07-18&quot;:3.83},{&quot;2026-07-19&quot;:3.83},{&quot;2026-07-20&quot;:3.83},{&quot;2026-07-21&quot;:3.83},{&quot;2026-07-22&quot;:3.85},{&quot;2026-07-23&quot;:3.85},{&quot;2026-07-24&quot;:3.85},{&quot;2026-07-25&quot;:3.85},{&quot;2026-07-26&quot;:3.85},{&quot;2026-07-27&quot;:3.83},{&quot;2026-07-28&quot;:3.83},{&quot;2026-07-29&quot;:3.83},{&quot;2026-07-30&quot;:3.83},{&quot;2026-07-31&quot;:3.78},{&quot;2026-08-01&quot;:3.78},{&quot;2026-08-02&quot;:3.78},{&quot;2026-08-03&quot;:3.78},{&quot;2026-08-04&quot;:3.39},{&quot;2026-08-05&quot;:3.51},{&quot;2026-08-07&quot;:3.51},{&quot;2026-08-08&quot;:3.51},{&quot;2026-08-09&quot;:3.51},{&quot;2026-08-10&quot;:3.51},{&quot;2026-08-11&quot;:3.51},{&quot;2026-08-12&quot;:3.51},{&quot;2026-08-13&quot;:3.51},{&quot;2026-08-14&quot;:3.48},{&quot;2026-08-15&quot;:3.48},{&quot;2026-08-16&quot;:3.48},{&quot;2026-08-17&quot;:3.47},{&quot;2026-08-18&quot;:3.47},{&quot;2026-08-19&quot;:3.55},{&quot;2026-08-20&quot;:3.55},{&quot;2026-08-21&quot;:3.55},{&quot;2026-08-22&quot;:3.55},{&quot;2026-08-23&quot;:3.55},{&quot;2026-08-24&quot;:3.55},{&quot;2026-08-25&quot;:3.59},{&quot;2026-08-26&quot;:3.59},{&quot;2026-08-27&quot;:3.59},{&quot;2026-08-28&quot;:3.59},{&quot;2026-08-29&quot;:3.59},{&quot;2026-08-30&quot;:3.63},{&quot;2026-08-31&quot;:3.63},{&quot;2026-09-01&quot;:3.63},{&quot;2026-09-02&quot;:3.63},{&quot;2026-09-03&quot;:3.63},{&quot;2026-09-04&quot;:3.63},{&quot;2026-09-05&quot;:3.63},{&quot;2026-09-06&quot;:3.63},{&quot;2026-09-07&quot;:3.63},{&quot;2026-09-08&quot;:3.67},{&quot;2026-09-09&quot;:3.67},{&quot;2026-09-10&quot;:3.73},{&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="1692"
  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-all 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">
            Soldevi Adnate
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Soldevi Adnate
        </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 — Human Cleric</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-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="Soldevi Adnate" src="https://cards.scryfall.io/large/front/8/0/80812871-d9a7-40de-94a5-b854e55409db.jpg?1783947183" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-12&quot;:2.13},{&quot;2026-06-13&quot;:2.3},{&quot;2026-06-14&quot;:2.3},{&quot;2026-06-15&quot;:2.3},{&quot;2026-06-16&quot;:2.3},{&quot;2026-06-17&quot;:2.25},{&quot;2026-06-18&quot;:2.56},{&quot;2026-06-19&quot;:2.67},{&quot;2026-06-20&quot;:2.67},{&quot;2026-06-21&quot;:2.67},{&quot;2026-06-22&quot;:2.68},{&quot;2026-06-23&quot;:2.68},{&quot;2026-06-24&quot;:2.67},{&quot;2026-06-25&quot;:2.67},{&quot;2026-06-26&quot;:2.67},{&quot;2026-06-27&quot;:2.83},{&quot;2026-06-28&quot;:2.86},{&quot;2026-06-29&quot;:2.86},{&quot;2026-06-30&quot;:2.86},{&quot;2026-07-01&quot;:2.83},{&quot;2026-07-02&quot;:2.89},{&quot;2026-07-03&quot;:2.93},{&quot;2026-07-04&quot;:2.78},{&quot;2026-07-05&quot;:2.74},{&quot;2026-07-06&quot;:2.74},{&quot;2026-07-07&quot;:2.95},{&quot;2026-07-08&quot;:2.87},{&quot;2026-07-09&quot;:3.08},{&quot;2026-07-10&quot;:3.08},{&quot;2026-07-11&quot;:3.06},{&quot;2026-07-12&quot;:3.21},{&quot;2026-07-13&quot;:3.01},{&quot;2026-07-14&quot;:3.05},{&quot;2026-07-15&quot;:3.11},{&quot;2026-07-16&quot;:3.25},{&quot;2026-07-17&quot;:3.31},{&quot;2026-07-18&quot;:3.74},{&quot;2026-07-19&quot;:3.74},{&quot;2026-07-20&quot;:4.13},{&quot;2026-07-21&quot;:4.13},{&quot;2026-07-23&quot;:4.13},{&quot;2026-07-24&quot;:4.4},{&quot;2026-07-25&quot;:4.4},{&quot;2026-07-26&quot;:4.54},{&quot;2026-07-27&quot;:4.54},{&quot;2026-07-28&quot;:4.54},{&quot;2026-07-29&quot;:4.58},{&quot;2026-07-30&quot;:4.63},{&quot;2026-07-31&quot;:4.67},{&quot;2026-08-01&quot;:4.67},{&quot;2026-08-02&quot;:4.8},{&quot;2026-08-03&quot;:4.8},{&quot;2026-08-04&quot;:4.65},{&quot;2026-08-05&quot;:4.88},{&quot;2026-08-07&quot;:5.03},{&quot;2026-08-08&quot;:5.03},{&quot;2026-08-09&quot;:4.81},{&quot;2026-08-10&quot;:4.81},{&quot;2026-08-11&quot;:4.81},{&quot;2026-08-12&quot;:4.62},{&quot;2026-08-13&quot;:4.81},{&quot;2026-08-14&quot;:4.81},{&quot;2026-08-15&quot;:4.81},{&quot;2026-08-16&quot;:4.41},{&quot;2026-08-17&quot;:4.35},{&quot;2026-08-18&quot;:4.41},{&quot;2026-08-19&quot;:4.35},{&quot;2026-08-20&quot;:4.35},{&quot;2026-08-21&quot;:4.36},{&quot;2026-08-22&quot;:4.08},{&quot;2026-08-23&quot;:4.07},{&quot;2026-08-24&quot;:4.09},{&quot;2026-08-25&quot;:4.2},{&quot;2026-08-26&quot;:4.2},{&quot;2026-08-27&quot;:4.2},{&quot;2026-08-28&quot;:4.1},{&quot;2026-08-29&quot;:4.1},{&quot;2026-08-30&quot;:4.04},{&quot;2026-08-31&quot;:3.96},{&quot;2026-09-01&quot;:3.96},{&quot;2026-09-02&quot;:3.64},{&quot;2026-09-03&quot;:3.43},{&quot;2026-09-04&quot;:3.51},{&quot;2026-09-05&quot;:3.59},{&quot;2026-09-06&quot;:3.46},{&quot;2026-09-07&quot;:3.5},{&quot;2026-09-08&quot;:3.5},{&quot;2026-09-09&quot;:3.34},{&quot;2026-09-10&quot;:3.56},{&quot;2026-09-11&quot;:3.53}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="30543"
  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-4ed 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">
            Library of Leng
        </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">
            3 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">
            $3.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="Library of Leng" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/8/b811a515-87a2-4dee-8689-48bfba12e6c5.jpg?1783947797" />

        <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">
            Library of Leng
        </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="Library of Leng" src="https://cards.scryfall.io/large/front/b/8/b811a515-87a2-4dee-8689-48bfba12e6c5.jpg?1783947797" />
    </div>

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

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

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

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

          <span class="text-lg font-medium text-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.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;:4.74},{&quot;2026-06-14&quot;:4.74},{&quot;2026-06-15&quot;:4.62},{&quot;2026-06-16&quot;:4.37},{&quot;2026-06-17&quot;:4.11},{&quot;2026-06-18&quot;:3.96},{&quot;2026-06-19&quot;:3.96},{&quot;2026-06-20&quot;:3.96},{&quot;2026-06-21&quot;:3.84},{&quot;2026-06-22&quot;:3.84},{&quot;2026-06-23&quot;:3.84},{&quot;2026-06-24&quot;:3.84},{&quot;2026-06-25&quot;:3.84},{&quot;2026-06-26&quot;:3.84},{&quot;2026-06-27&quot;:3.84},{&quot;2026-06-28&quot;:3.84},{&quot;2026-06-29&quot;:3.84},{&quot;2026-06-30&quot;:3.84},{&quot;2026-07-01&quot;:3.84},{&quot;2026-07-02&quot;:3.71},{&quot;2026-07-03&quot;:3.71},{&quot;2026-07-04&quot;:3.71},{&quot;2026-07-05&quot;:3.71},{&quot;2026-07-06&quot;:3.71},{&quot;2026-07-07&quot;:3.74},{&quot;2026-07-08&quot;:3.74},{&quot;2026-07-09&quot;:3.74},{&quot;2026-07-10&quot;:3.74},{&quot;2026-07-11&quot;:3.74},{&quot;2026-07-12&quot;:3.74},{&quot;2026-07-13&quot;:3.65},{&quot;2026-07-14&quot;:3.65},{&quot;2026-07-15&quot;:3.65},{&quot;2026-07-16&quot;:3.65},{&quot;2026-07-17&quot;:3.68},{&quot;2026-07-18&quot;:3.68},{&quot;2026-07-19&quot;:3.68},{&quot;2026-07-20&quot;:3.68},{&quot;2026-07-21&quot;:3.68},{&quot;2026-07-22&quot;:3.68},{&quot;2026-07-23&quot;:3.68},{&quot;2026-07-24&quot;:3.62},{&quot;2026-07-25&quot;:3.65},{&quot;2026-07-26&quot;:3.68},{&quot;2026-07-27&quot;:3.64},{&quot;2026-07-28&quot;:3.64},{&quot;2026-07-29&quot;:3.64},{&quot;2026-07-30&quot;:3.49},{&quot;2026-07-31&quot;:3.49},{&quot;2026-08-01&quot;:3.41},{&quot;2026-08-02&quot;:3.41},{&quot;2026-08-03&quot;:3.39},{&quot;2026-08-04&quot;:3.39},{&quot;2026-08-05&quot;:3.39},{&quot;2026-08-07&quot;:3.29},{&quot;2026-08-08&quot;:3.39},{&quot;2026-08-09&quot;:3.39},{&quot;2026-08-10&quot;:3.39},{&quot;2026-08-11&quot;:3.39},{&quot;2026-08-12&quot;:3.39},{&quot;2026-08-13&quot;:3.39},{&quot;2026-08-14&quot;:3.11},{&quot;2026-08-15&quot;:3.13},{&quot;2026-08-16&quot;:3.1},{&quot;2026-08-17&quot;:3.2},{&quot;2026-08-18&quot;:3.3},{&quot;2026-08-19&quot;:3.3},{&quot;2026-08-20&quot;:3.31},{&quot;2026-08-21&quot;:3.31},{&quot;2026-08-22&quot;:3.31},{&quot;2026-08-23&quot;:3.31},{&quot;2026-08-24&quot;:3.37},{&quot;2026-08-25&quot;:3.43},{&quot;2026-08-26&quot;:3.39},{&quot;2026-08-27&quot;:3.41},{&quot;2026-08-28&quot;:3.41},{&quot;2026-08-29&quot;:3.41},{&quot;2026-08-30&quot;:3.37},{&quot;2026-08-31&quot;:3.37},{&quot;2026-09-01&quot;:3.36},{&quot;2026-09-02&quot;:3.36},{&quot;2026-09-03&quot;:3.36},{&quot;2026-09-04&quot;:3.36},{&quot;2026-09-05&quot;:3.36},{&quot;2026-09-06&quot;:3.36},{&quot;2026-09-07&quot;:3.36},{&quot;2026-09-08&quot;:3.36},{&quot;2026-09-09&quot;:3.36},{&quot;2026-09-10&quot;:3.36},{&quot;2026-09-11&quot;:3.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="30196"
  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-4ed 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">
            Lightning Bolt
        </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">
            5 owned
          </div>

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Lightning Bolt" src="https://cards.scryfall.io/large/front/9/5/9521375e-0bc1-45ef-b513-6d332a25f9d2.jpg?1783947826" />
    </div>

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

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

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

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

          <span class="text-lg font-medium text-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.26
              </span>

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

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$1.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-13&quot;:2.56},{&quot;2026-06-14&quot;:2.48},{&quot;2026-06-15&quot;:2.48},{&quot;2026-06-16&quot;:2.49},{&quot;2026-06-17&quot;:2.49},{&quot;2026-06-18&quot;:2.49},{&quot;2026-06-19&quot;:2.5},{&quot;2026-06-20&quot;:2.5},{&quot;2026-06-21&quot;:2.49},{&quot;2026-06-22&quot;:2.37},{&quot;2026-06-23&quot;:2.37},{&quot;2026-06-24&quot;:2.37},{&quot;2026-06-25&quot;:2.31},{&quot;2026-06-26&quot;:2.31},{&quot;2026-06-27&quot;:2.35},{&quot;2026-06-28&quot;:2.35},{&quot;2026-06-29&quot;:2.35},{&quot;2026-06-30&quot;:2.35},{&quot;2026-07-01&quot;:2.35},{&quot;2026-07-02&quot;:2.37},{&quot;2026-07-03&quot;:2.37},{&quot;2026-07-04&quot;:2.33},{&quot;2026-07-05&quot;:2.33},{&quot;2026-07-06&quot;:2.33},{&quot;2026-07-07&quot;:1.88},{&quot;2026-07-08&quot;:1.88},{&quot;2026-07-09&quot;:1.88},{&quot;2026-07-10&quot;:1.88},{&quot;2026-07-11&quot;:1.88},{&quot;2026-07-12&quot;:1.82},{&quot;2026-07-13&quot;:1.71},{&quot;2026-07-14&quot;:1.77},{&quot;2026-07-15&quot;:1.89},{&quot;2026-07-16&quot;:1.89},{&quot;2026-07-17&quot;:1.89},{&quot;2026-07-18&quot;:1.89},{&quot;2026-07-19&quot;:1.89},{&quot;2026-07-20&quot;:1.95},{&quot;2026-07-21&quot;:1.95},{&quot;2026-07-22&quot;:1.89},{&quot;2026-07-23&quot;:1.94},{&quot;2026-07-24&quot;:1.94},{&quot;2026-07-25&quot;:1.96},{&quot;2026-07-26&quot;:1.94},{&quot;2026-07-27&quot;:1.96},{&quot;2026-07-28&quot;:1.96},{&quot;2026-07-29&quot;:2.39},{&quot;2026-07-30&quot;:2.41},{&quot;2026-07-31&quot;:2.39},{&quot;2026-08-01&quot;:2.39},{&quot;2026-08-02&quot;:2.42},{&quot;2026-08-03&quot;:2.46},{&quot;2026-08-04&quot;:2.46},{&quot;2026-08-05&quot;:2.46},{&quot;2026-08-07&quot;:2.44},{&quot;2026-08-08&quot;:2.44},{&quot;2026-08-09&quot;:2.34},{&quot;2026-08-10&quot;:3.13},{&quot;2026-08-11&quot;:3.13},{&quot;2026-08-12&quot;:3.16},{&quot;2026-08-13&quot;:3.16},{&quot;2026-08-14&quot;:3.16},{&quot;2026-08-15&quot;:3.16},{&quot;2026-08-16&quot;:3.18},{&quot;2026-08-17&quot;:3.18},{&quot;2026-08-18&quot;:3.18},{&quot;2026-08-19&quot;:3.18},{&quot;2026-08-20&quot;:3.18},{&quot;2026-08-21&quot;:3.18},{&quot;2026-08-22&quot;:3.18},{&quot;2026-08-23&quot;:3.18},{&quot;2026-08-24&quot;:3.18},{&quot;2026-08-25&quot;:3.22},{&quot;2026-08-26&quot;:3.22},{&quot;2026-08-27&quot;:3.22},{&quot;2026-08-28&quot;:3.23},{&quot;2026-08-29&quot;:3.23},{&quot;2026-08-30&quot;:2.93},{&quot;2026-08-31&quot;:3.02},{&quot;2026-09-01&quot;:2.99},{&quot;2026-09-02&quot;:2.99},{&quot;2026-09-03&quot;:3.02},{&quot;2026-09-04&quot;:3.03},{&quot;2026-09-05&quot;:3.14},{&quot;2026-09-06&quot;:3.14},{&quot;2026-09-07&quot;:3.31},{&quot;2026-09-08&quot;:3.31},{&quot;2026-09-09&quot;:3.31},{&quot;2026-09-10&quot;:3.26},{&quot;2026-09-11&quot;:3.26}]}"
        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="33383"
  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-hml 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">
            An-Zerrin Ruins
        </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">
            $3.11
          </span>
        </div>
      </div>
    </div>

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

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

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

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            An-Zerrin Ruins
        </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-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="An-Zerrin Ruins" src="https://cards.scryfall.io/large/front/4/f/4f905d57-2f52-4179-8041-2667b1fb1baa.jpg?1783947286" />
    </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.11
              </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.70</span>
              <span class="text-xs text-grey-text">Credit: $0.91</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.07},{&quot;2026-06-14&quot;:3.09},{&quot;2026-06-15&quot;:3.09},{&quot;2026-06-16&quot;:3.09},{&quot;2026-06-17&quot;:3.09},{&quot;2026-06-18&quot;:3.09},{&quot;2026-06-19&quot;:3.09},{&quot;2026-06-20&quot;:3.09},{&quot;2026-06-21&quot;:3.08},{&quot;2026-06-22&quot;:3.08},{&quot;2026-06-23&quot;:3.08},{&quot;2026-06-24&quot;:3.08},{&quot;2026-06-25&quot;:3.09},{&quot;2026-06-26&quot;:3.09},{&quot;2026-06-27&quot;:3.09},{&quot;2026-06-28&quot;:3.09},{&quot;2026-06-29&quot;:3.09},{&quot;2026-06-30&quot;:3.09},{&quot;2026-07-01&quot;:3.09},{&quot;2026-07-02&quot;:3.09},{&quot;2026-07-03&quot;:3.09},{&quot;2026-07-04&quot;:3.13},{&quot;2026-07-05&quot;:3.13},{&quot;2026-07-06&quot;:3.13},{&quot;2026-07-07&quot;:3.09},{&quot;2026-07-08&quot;:3.09},{&quot;2026-07-09&quot;:3.09},{&quot;2026-07-10&quot;:3.09},{&quot;2026-07-11&quot;:3.09},{&quot;2026-07-12&quot;:3.09},{&quot;2026-07-13&quot;:3.09},{&quot;2026-07-14&quot;:3.09},{&quot;2026-07-15&quot;:3.09},{&quot;2026-07-16&quot;:3.09},{&quot;2026-07-17&quot;:3.09},{&quot;2026-07-18&quot;:3.09},{&quot;2026-07-19&quot;:3.09},{&quot;2026-07-20&quot;:3.09},{&quot;2026-07-21&quot;:3.09},{&quot;2026-07-22&quot;:3.09},{&quot;2026-07-23&quot;:3.1},{&quot;2026-07-24&quot;:3.1},{&quot;2026-07-25&quot;:2.99},{&quot;2026-07-26&quot;:2.96},{&quot;2026-07-27&quot;:2.96},{&quot;2026-07-28&quot;:2.96},{&quot;2026-07-29&quot;:2.96},{&quot;2026-07-30&quot;:2.96},{&quot;2026-07-31&quot;:2.96},{&quot;2026-08-01&quot;:2.96},{&quot;2026-08-02&quot;:2.96},{&quot;2026-08-03&quot;:2.96},{&quot;2026-08-04&quot;:2.96},{&quot;2026-08-05&quot;:2.96},{&quot;2026-08-07&quot;:2.98},{&quot;2026-08-08&quot;:2.98},{&quot;2026-08-09&quot;:2.98},{&quot;2026-08-10&quot;:2.98},{&quot;2026-08-11&quot;:2.98},{&quot;2026-08-12&quot;:2.98},{&quot;2026-08-13&quot;:3.0},{&quot;2026-08-14&quot;:3.07},{&quot;2026-08-15&quot;:3.07},{&quot;2026-08-16&quot;:3.07},{&quot;2026-08-17&quot;:3.07},{&quot;2026-08-18&quot;:3.07},{&quot;2026-08-19&quot;:3.06},{&quot;2026-08-20&quot;:3.06},{&quot;2026-08-21&quot;:3.06},{&quot;2026-08-22&quot;:3.06},{&quot;2026-08-23&quot;:3.05},{&quot;2026-08-24&quot;:3.05},{&quot;2026-08-25&quot;:3.05},{&quot;2026-08-26&quot;:3.04},{&quot;2026-08-27&quot;:3.04},{&quot;2026-08-28&quot;:3.04},{&quot;2026-08-29&quot;:3.04},{&quot;2026-08-30&quot;:3.04},{&quot;2026-08-31&quot;:3.04},{&quot;2026-09-01&quot;:3.04},{&quot;2026-09-02&quot;:3.04},{&quot;2026-09-03&quot;:3.04},{&quot;2026-09-04&quot;:3.04},{&quot;2026-09-05&quot;:3.07},{&quot;2026-09-06&quot;:3.07},{&quot;2026-09-07&quot;:3.07},{&quot;2026-09-08&quot;:3.04},{&quot;2026-09-09&quot;:3.07},{&quot;2026-09-10&quot;:3.07},{&quot;2026-09-11&quot;:3.11}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="1526"
  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-all 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 Denial
        </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">
              ↓
              3%
            </span>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Arcane Denial" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/1/415a3104-90e6-4235-b67f-69337c7fe714.jpg?1783947197" />

        <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 Denial
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Arcane Denial" src="https://cards.scryfall.io/large/front/4/1/415a3104-90e6-4235-b67f-69337c7fe714.jpg?1783947197" />
    </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.05
              </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">$2.30</span>
              <span class="text-xs text-grey-text">Credit: $2.99</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-12&quot;:3.41},{&quot;2026-06-13&quot;:3.44},{&quot;2026-06-14&quot;:3.38},{&quot;2026-06-15&quot;:3.38},{&quot;2026-06-16&quot;:3.38},{&quot;2026-06-17&quot;:3.38},{&quot;2026-06-18&quot;:3.38},{&quot;2026-06-19&quot;:3.4},{&quot;2026-06-20&quot;:3.4},{&quot;2026-06-21&quot;:3.4},{&quot;2026-06-22&quot;:3.4},{&quot;2026-06-23&quot;:3.4},{&quot;2026-06-24&quot;:3.4},{&quot;2026-06-25&quot;:3.4},{&quot;2026-06-26&quot;:3.46},{&quot;2026-06-27&quot;:3.46},{&quot;2026-06-28&quot;:3.46},{&quot;2026-06-29&quot;:3.43},{&quot;2026-06-30&quot;:3.43},{&quot;2026-07-01&quot;:3.39},{&quot;2026-07-02&quot;:3.41},{&quot;2026-07-03&quot;:3.43},{&quot;2026-07-04&quot;:3.43},{&quot;2026-07-05&quot;:3.45},{&quot;2026-07-06&quot;:3.45},{&quot;2026-07-07&quot;:3.5},{&quot;2026-07-08&quot;:3.5},{&quot;2026-07-09&quot;:3.5},{&quot;2026-07-10&quot;:3.5},{&quot;2026-07-11&quot;:3.5},{&quot;2026-07-12&quot;:3.5},{&quot;2026-07-13&quot;:3.53},{&quot;2026-07-14&quot;:3.64},{&quot;2026-07-15&quot;:3.64},{&quot;2026-07-16&quot;:3.64},{&quot;2026-07-17&quot;:3.64},{&quot;2026-07-18&quot;:3.58},{&quot;2026-07-19&quot;:3.57},{&quot;2026-07-20&quot;:3.55},{&quot;2026-07-21&quot;:3.48},{&quot;2026-07-23&quot;:3.47},{&quot;2026-07-24&quot;:3.49},{&quot;2026-07-25&quot;:3.49},{&quot;2026-07-26&quot;:3.49},{&quot;2026-07-27&quot;:3.49},{&quot;2026-07-28&quot;:3.49},{&quot;2026-07-29&quot;:3.49},{&quot;2026-07-30&quot;:3.49},{&quot;2026-07-31&quot;:3.49},{&quot;2026-08-01&quot;:3.17},{&quot;2026-08-02&quot;:3.17},{&quot;2026-08-03&quot;:3.17},{&quot;2026-08-04&quot;:3.17},{&quot;2026-08-05&quot;:3.19},{&quot;2026-08-07&quot;:3.22},{&quot;2026-08-08&quot;:3.22},{&quot;2026-08-09&quot;:3.24},{&quot;2026-08-10&quot;:3.24},{&quot;2026-08-11&quot;:3.24},{&quot;2026-08-12&quot;:3.23},{&quot;2026-08-13&quot;:3.22},{&quot;2026-08-14&quot;:3.22},{&quot;2026-08-15&quot;:3.22},{&quot;2026-08-16&quot;:3.22},{&quot;2026-08-17&quot;:3.24},{&quot;2026-08-18&quot;:3.24},{&quot;2026-08-19&quot;:3.25},{&quot;2026-08-20&quot;:3.25},{&quot;2026-08-21&quot;:3.28},{&quot;2026-08-22&quot;:3.28},{&quot;2026-08-23&quot;:3.28},{&quot;2026-08-24&quot;:3.22},{&quot;2026-08-25&quot;:3.22},{&quot;2026-08-26&quot;:3.25},{&quot;2026-08-27&quot;:3.24},{&quot;2026-08-28&quot;:3.24},{&quot;2026-08-29&quot;:3.24},{&quot;2026-08-30&quot;:3.28},{&quot;2026-08-31&quot;:3.27},{&quot;2026-09-01&quot;:3.27},{&quot;2026-09-02&quot;:3.27},{&quot;2026-09-03&quot;:3.22},{&quot;2026-09-04&quot;:3.16},{&quot;2026-09-05&quot;:3.16},{&quot;2026-09-06&quot;:3.16},{&quot;2026-09-07&quot;:3.16},{&quot;2026-09-08&quot;:3.08},{&quot;2026-09-09&quot;:3.08},{&quot;2026-09-10&quot;:3.05},{&quot;2026-09-11&quot;:3.05}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="30224"
  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-4ed 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">
            Red Elemental Blast
        </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">
            6 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">
            $3.04
          </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="Red Elemental Blast" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/5/a54246c9-5e5c-484e-a546-ae1f9fd020f3.jpg?1783947824" />

        <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">
            Red Elemental Blast
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Red Elemental Blast" src="https://cards.scryfall.io/large/front/a/5/a54246c9-5e5c-484e-a546-ae1f9fd020f3.jpg?1783947824" />
    </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">
            6
          </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.04
              </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">$3.50</span>
              <span class="text-xs text-grey-text">Credit: $4.55</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:5.66},{&quot;2026-06-14&quot;:5.73},{&quot;2026-06-15&quot;:5.73},{&quot;2026-06-16&quot;:5.74},{&quot;2026-06-17&quot;:5.7},{&quot;2026-06-18&quot;:5.59},{&quot;2026-06-19&quot;:5.59},{&quot;2026-06-20&quot;:5.55},{&quot;2026-06-21&quot;:5.55},{&quot;2026-06-22&quot;:5.44},{&quot;2026-06-23&quot;:5.2},{&quot;2026-06-24&quot;:5.14},{&quot;2026-06-25&quot;:5.14},{&quot;2026-06-26&quot;:4.93},{&quot;2026-06-27&quot;:4.82},{&quot;2026-06-28&quot;:4.71},{&quot;2026-06-29&quot;:4.41},{&quot;2026-06-30&quot;:4.23},{&quot;2026-07-01&quot;:4.24},{&quot;2026-07-02&quot;:4.21},{&quot;2026-07-03&quot;:3.93},{&quot;2026-07-04&quot;:3.81},{&quot;2026-07-05&quot;:3.79},{&quot;2026-07-06&quot;:3.75},{&quot;2026-07-07&quot;:3.82},{&quot;2026-07-08&quot;:3.82},{&quot;2026-07-09&quot;:3.73},{&quot;2026-07-10&quot;:3.77},{&quot;2026-07-11&quot;:3.76},{&quot;2026-07-12&quot;:3.67},{&quot;2026-07-13&quot;:3.62},{&quot;2026-07-14&quot;:3.43},{&quot;2026-07-15&quot;:3.47},{&quot;2026-07-16&quot;:3.49},{&quot;2026-07-17&quot;:3.44},{&quot;2026-07-18&quot;:3.38},{&quot;2026-07-19&quot;:3.31},{&quot;2026-07-20&quot;:3.44},{&quot;2026-07-21&quot;:3.39},{&quot;2026-07-22&quot;:3.37},{&quot;2026-07-23&quot;:3.41},{&quot;2026-07-24&quot;:3.4},{&quot;2026-07-25&quot;:3.3},{&quot;2026-07-26&quot;:3.3},{&quot;2026-07-27&quot;:3.28},{&quot;2026-07-28&quot;:3.51},{&quot;2026-07-29&quot;:3.45},{&quot;2026-07-30&quot;:3.43},{&quot;2026-07-31&quot;:3.42},{&quot;2026-08-01&quot;:3.42},{&quot;2026-08-02&quot;:3.54},{&quot;2026-08-03&quot;:3.46},{&quot;2026-08-04&quot;:3.46},{&quot;2026-08-05&quot;:3.51},{&quot;2026-08-07&quot;:3.46},{&quot;2026-08-08&quot;:3.46},{&quot;2026-08-09&quot;:3.46},{&quot;2026-08-10&quot;:3.46},{&quot;2026-08-11&quot;:3.58},{&quot;2026-08-12&quot;:3.63},{&quot;2026-08-13&quot;:3.61},{&quot;2026-08-14&quot;:3.64},{&quot;2026-08-15&quot;:3.58},{&quot;2026-08-16&quot;:3.61},{&quot;2026-08-17&quot;:3.63},{&quot;2026-08-18&quot;:3.59},{&quot;2026-08-19&quot;:3.58},{&quot;2026-08-20&quot;:3.51},{&quot;2026-08-21&quot;:3.45},{&quot;2026-08-22&quot;:3.3},{&quot;2026-08-23&quot;:3.26},{&quot;2026-08-24&quot;:3.17},{&quot;2026-08-25&quot;:3.11},{&quot;2026-08-26&quot;:3.11},{&quot;2026-08-27&quot;:3.14},{&quot;2026-08-28&quot;:3.14},{&quot;2026-08-29&quot;:3.14},{&quot;2026-08-30&quot;:3.14},{&quot;2026-08-31&quot;:3.31},{&quot;2026-09-01&quot;:3.29},{&quot;2026-09-02&quot;:3.23},{&quot;2026-09-03&quot;:3.21},{&quot;2026-09-04&quot;:3.21},{&quot;2026-09-05&quot;:3.21},{&quot;2026-09-06&quot;:3.21},{&quot;2026-09-07&quot;:3.22},{&quot;2026-09-08&quot;:3.11},{&quot;2026-09-09&quot;:3.11},{&quot;2026-09-10&quot;:3.14},{&quot;2026-09-11&quot;:3.04}]}"
        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="30511"
  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-4ed 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">
            Glasses of Urza
        </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">
            2 owned
          </div>

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

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

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

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

        <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">
            Glasses of Urza
        </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="Glasses of Urza" src="https://cards.scryfall.io/large/front/4/d/4d71a210-eb2c-4bcc-ae3b-f60a6fb615cb.jpg?1783947800" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.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-08&quot;:1.9},{&quot;2026-06-10&quot;:1.89},{&quot;2026-06-11&quot;:1.89},{&quot;2026-06-12&quot;:1.5},{&quot;2026-06-13&quot;:1.62},{&quot;2026-06-14&quot;:1.57},{&quot;2026-06-15&quot;:1.57},{&quot;2026-06-16&quot;:1.62},{&quot;2026-06-17&quot;:1.62},{&quot;2026-06-18&quot;:1.62},{&quot;2026-06-19&quot;:1.64},{&quot;2026-06-20&quot;:1.64},{&quot;2026-06-21&quot;:1.64},{&quot;2026-06-22&quot;:1.69},{&quot;2026-06-24&quot;:1.69},{&quot;2026-06-25&quot;:1.45},{&quot;2026-06-26&quot;:1.5},{&quot;2026-06-27&quot;:1.57},{&quot;2026-06-28&quot;:1.58},{&quot;2026-06-29&quot;:1.63},{&quot;2026-06-30&quot;:1.91},{&quot;2026-07-01&quot;:2.02},{&quot;2026-07-02&quot;:1.89},{&quot;2026-07-03&quot;:1.88},{&quot;2026-07-04&quot;:1.73},{&quot;2026-07-05&quot;:1.68},{&quot;2026-07-06&quot;:1.63},{&quot;2026-07-07&quot;:1.63},{&quot;2026-07-08&quot;:1.63},{&quot;2026-07-09&quot;:1.63},{&quot;2026-07-10&quot;:1.62},{&quot;2026-07-11&quot;:1.62},{&quot;2026-07-12&quot;:1.72},{&quot;2026-07-13&quot;:1.83},{&quot;2026-07-14&quot;:1.83},{&quot;2026-07-15&quot;:1.83},{&quot;2026-07-16&quot;:1.83},{&quot;2026-07-17&quot;:1.83},{&quot;2026-07-18&quot;:1.95},{&quot;2026-07-19&quot;:2.05},{&quot;2026-07-20&quot;:2.07},{&quot;2026-07-21&quot;:1.97},{&quot;2026-07-23&quot;:1.91},{&quot;2026-07-25&quot;:2.05},{&quot;2026-07-26&quot;:2.05},{&quot;2026-07-27&quot;:2.05},{&quot;2026-07-29&quot;:2.05},{&quot;2026-07-30&quot;:2.05},{&quot;2026-07-31&quot;:2.14},{&quot;2026-08-01&quot;:2.28},{&quot;2026-08-02&quot;:2.24},{&quot;2026-08-03&quot;:2.3},{&quot;2026-08-04&quot;:2.48},{&quot;2026-08-05&quot;:2.66},{&quot;2026-08-07&quot;:2.76},{&quot;2026-08-08&quot;:2.74},{&quot;2026-08-09&quot;:2.74},{&quot;2026-08-10&quot;:2.65},{&quot;2026-08-11&quot;:2.82},{&quot;2026-08-12&quot;:2.82},{&quot;2026-08-13&quot;:2.78},{&quot;2026-08-14&quot;:2.7},{&quot;2026-08-15&quot;:2.62},{&quot;2026-08-16&quot;:2.62},{&quot;2026-08-17&quot;:2.67},{&quot;2026-08-18&quot;:2.67},{&quot;2026-08-19&quot;:2.67},{&quot;2026-08-20&quot;:2.67},{&quot;2026-08-21&quot;:2.62},{&quot;2026-08-22&quot;:2.62},{&quot;2026-08-23&quot;:2.62},{&quot;2026-08-24&quot;:2.68},{&quot;2026-08-25&quot;:2.68},{&quot;2026-08-26&quot;:2.89},{&quot;2026-08-27&quot;:2.89},{&quot;2026-08-28&quot;:2.89},{&quot;2026-08-29&quot;:2.89},{&quot;2026-08-30&quot;:3.01},{&quot;2026-08-31&quot;:3.01},{&quot;2026-09-01&quot;:3.01},{&quot;2026-09-02&quot;:3.01},{&quot;2026-09-03&quot;:3.01},{&quot;2026-09-04&quot;:3.01},{&quot;2026-09-05&quot;:2.98},{&quot;2026-09-06&quot;:2.98},{&quot;2026-09-07&quot;:2.98},{&quot;2026-09-08&quot;:2.98},{&quot;2026-09-09&quot;:3.1},{&quot;2026-09-10&quot;:3.03},{&quot;2026-09-11&quot;:3.03}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="29828"
  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-4ed 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">
            Magical Hack
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Magical Hack
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Magical Hack" src="https://cards.scryfall.io/large/front/4/1/41c57f8a-6592-49b4-acb1-9b30500d1e8c.jpg?1783947857" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="34242"
  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-ice 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">
            Fyndhorn Elves
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Fyndhorn Elves
        </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 — Elf Druid</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Fyndhorn Elves" src="https://cards.scryfall.io/large/front/3/b/3ba95ffa-990a-4013-98b7-5d8c0b34e9c4.jpg?1783947476" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$1.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-08&quot;:6.05},{&quot;2026-06-10&quot;:6.01},{&quot;2026-06-11&quot;:6.01},{&quot;2026-06-12&quot;:5.21},{&quot;2026-06-13&quot;:5.21},{&quot;2026-06-14&quot;:5.2},{&quot;2026-06-15&quot;:4.94},{&quot;2026-06-16&quot;:4.94},{&quot;2026-06-17&quot;:4.88},{&quot;2026-06-18&quot;:4.88},{&quot;2026-06-19&quot;:4.88},{&quot;2026-06-20&quot;:4.56},{&quot;2026-06-21&quot;:4.85},{&quot;2026-06-22&quot;:4.85},{&quot;2026-06-24&quot;:4.61},{&quot;2026-06-25&quot;:4.61},{&quot;2026-06-26&quot;:4.61},{&quot;2026-06-27&quot;:4.61},{&quot;2026-06-28&quot;:4.33},{&quot;2026-06-29&quot;:4.33},{&quot;2026-06-30&quot;:4.33},{&quot;2026-07-01&quot;:3.78},{&quot;2026-07-02&quot;:3.78},{&quot;2026-07-03&quot;:3.45},{&quot;2026-07-04&quot;:3.45},{&quot;2026-07-05&quot;:3.47},{&quot;2026-07-06&quot;:3.36},{&quot;2026-07-07&quot;:3.12},{&quot;2026-07-08&quot;:3.12},{&quot;2026-07-09&quot;:3.12},{&quot;2026-07-10&quot;:3.12},{&quot;2026-07-11&quot;:3.36},{&quot;2026-07-12&quot;:3.2},{&quot;2026-07-13&quot;:3.22},{&quot;2026-07-14&quot;:3.19},{&quot;2026-07-15&quot;:3.22},{&quot;2026-07-16&quot;:3.18},{&quot;2026-07-17&quot;:3.18},{&quot;2026-07-18&quot;:3.18},{&quot;2026-07-19&quot;:2.98},{&quot;2026-07-20&quot;:3.02},{&quot;2026-07-21&quot;:3.0},{&quot;2026-07-23&quot;:3.02},{&quot;2026-07-25&quot;:3.02},{&quot;2026-07-26&quot;:2.94},{&quot;2026-07-27&quot;:2.94},{&quot;2026-07-29&quot;:2.98},{&quot;2026-07-30&quot;:2.98},{&quot;2026-07-31&quot;:2.99},{&quot;2026-08-01&quot;:2.99},{&quot;2026-08-02&quot;:2.99},{&quot;2026-08-03&quot;:2.92},{&quot;2026-08-04&quot;:2.99},{&quot;2026-08-05&quot;:2.94},{&quot;2026-08-07&quot;:2.96},{&quot;2026-08-08&quot;:2.9},{&quot;2026-08-09&quot;:2.9},{&quot;2026-08-10&quot;:2.9},{&quot;2026-08-11&quot;:2.9},{&quot;2026-08-12&quot;:2.86},{&quot;2026-08-13&quot;:2.76},{&quot;2026-08-14&quot;:2.76},{&quot;2026-08-15&quot;:2.73},{&quot;2026-08-16&quot;:2.71},{&quot;2026-08-17&quot;:2.7},{&quot;2026-08-18&quot;:2.69},{&quot;2026-08-19&quot;:2.68},{&quot;2026-08-20&quot;:2.68},{&quot;2026-08-21&quot;:2.69},{&quot;2026-08-22&quot;:2.71},{&quot;2026-08-23&quot;:2.74},{&quot;2026-08-24&quot;:2.78},{&quot;2026-08-25&quot;:2.78},{&quot;2026-08-26&quot;:2.82},{&quot;2026-08-27&quot;:2.82},{&quot;2026-08-28&quot;:2.89},{&quot;2026-08-29&quot;:2.89},{&quot;2026-08-30&quot;:2.88},{&quot;2026-08-31&quot;:2.88},{&quot;2026-09-01&quot;:2.88},{&quot;2026-09-02&quot;:2.88},{&quot;2026-09-03&quot;:2.88},{&quot;2026-09-04&quot;:2.88},{&quot;2026-09-05&quot;:2.88},{&quot;2026-09-06&quot;:2.88},{&quot;2026-09-07&quot;:2.88},{&quot;2026-09-08&quot;:2.88},{&quot;2026-09-09&quot;:2.89},{&quot;2026-09-10&quot;:2.88},{&quot;2026-09-11&quot;:2.85}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="33674"
  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-ice 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">
            Brainstorm
        </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">
            3 owned
          </div>

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

          <span class="text-sm font-medium text-nine-white">
            $2.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="Brainstorm" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/d/8d42d7aa-7f53-4cfc-842a-086aab2448d1.jpg?1783947518" />

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Brainstorm" src="https://cards.scryfall.io/large/front/8/d/8d42d7aa-7f53-4cfc-842a-086aab2448d1.jpg?1783947518" />
    </div>

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

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

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

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

          <span class="text-lg font-medium text-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.73
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:2.35},{&quot;2026-06-11&quot;:2.33},{&quot;2026-06-12&quot;:2.37},{&quot;2026-06-13&quot;:2.26},{&quot;2026-06-14&quot;:2.27},{&quot;2026-06-15&quot;:2.33},{&quot;2026-06-16&quot;:2.32},{&quot;2026-06-17&quot;:2.38},{&quot;2026-06-18&quot;:2.34},{&quot;2026-06-19&quot;:2.37},{&quot;2026-06-20&quot;:2.37},{&quot;2026-06-21&quot;:2.37},{&quot;2026-06-22&quot;:2.28},{&quot;2026-06-23&quot;:2.28},{&quot;2026-06-24&quot;:2.28},{&quot;2026-06-25&quot;:2.28},{&quot;2026-06-26&quot;:2.23},{&quot;2026-06-27&quot;:2.19},{&quot;2026-06-28&quot;:2.19},{&quot;2026-06-29&quot;:2.21},{&quot;2026-06-30&quot;:2.2},{&quot;2026-07-01&quot;:2.15},{&quot;2026-07-02&quot;:2.15},{&quot;2026-07-03&quot;:2.17},{&quot;2026-07-04&quot;:2.17},{&quot;2026-07-05&quot;:2.17},{&quot;2026-07-06&quot;:2.23},{&quot;2026-07-07&quot;:2.23},{&quot;2026-07-08&quot;:2.19},{&quot;2026-07-09&quot;:2.19},{&quot;2026-07-10&quot;:2.19},{&quot;2026-07-11&quot;:2.12},{&quot;2026-07-12&quot;:2.16},{&quot;2026-07-13&quot;:2.2},{&quot;2026-07-14&quot;:2.19},{&quot;2026-07-15&quot;:2.1},{&quot;2026-07-16&quot;:2.1},{&quot;2026-07-17&quot;:2.1},{&quot;2026-07-18&quot;:2.07},{&quot;2026-07-19&quot;:2.12},{&quot;2026-07-20&quot;:2.17},{&quot;2026-07-21&quot;:2.2},{&quot;2026-07-23&quot;:2.08},{&quot;2026-07-25&quot;:2.16},{&quot;2026-07-26&quot;:2.19},{&quot;2026-07-27&quot;:2.07},{&quot;2026-07-29&quot;:2.03},{&quot;2026-07-30&quot;:2.06},{&quot;2026-07-31&quot;:2.19},{&quot;2026-08-01&quot;:2.19},{&quot;2026-08-02&quot;:2.19},{&quot;2026-08-03&quot;:2.19},{&quot;2026-08-04&quot;:2.18},{&quot;2026-08-05&quot;:2.14},{&quot;2026-08-07&quot;:2.09},{&quot;2026-08-08&quot;:2.12},{&quot;2026-08-09&quot;:2.14},{&quot;2026-08-10&quot;:2.14},{&quot;2026-08-11&quot;:2.17},{&quot;2026-08-12&quot;:2.1},{&quot;2026-08-13&quot;:2.05},{&quot;2026-08-14&quot;:2.05},{&quot;2026-08-15&quot;:2.1},{&quot;2026-08-16&quot;:2.1},{&quot;2026-08-17&quot;:2.14},{&quot;2026-08-18&quot;:2.16},{&quot;2026-08-19&quot;:2.21},{&quot;2026-08-20&quot;:2.21},{&quot;2026-08-21&quot;:2.2},{&quot;2026-08-22&quot;:2.31},{&quot;2026-08-23&quot;:2.31},{&quot;2026-08-24&quot;:2.49},{&quot;2026-08-25&quot;:2.49},{&quot;2026-08-26&quot;:2.72},{&quot;2026-08-27&quot;:2.78},{&quot;2026-08-28&quot;:2.8},{&quot;2026-08-29&quot;:2.8},{&quot;2026-08-30&quot;:2.8},{&quot;2026-08-31&quot;:2.73},{&quot;2026-09-01&quot;:2.73},{&quot;2026-09-02&quot;:2.66},{&quot;2026-09-03&quot;:2.66},{&quot;2026-09-04&quot;:2.62},{&quot;2026-09-05&quot;:2.62},{&quot;2026-09-06&quot;:2.65},{&quot;2026-09-07&quot;:2.62},{&quot;2026-09-08&quot;:2.6},{&quot;2026-09-09&quot;:2.64},{&quot;2026-09-10&quot;:2.64},{&quot;2026-09-11&quot;:2.73}]}"
        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 713 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=312&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next">2</a><a href="/load_collection?collection_id=312&amp;direction=asc&amp;username=denvermullets&amp;page=3">3</a><a href="/load_collection?collection_id=312&amp;direction=asc&amp;username=denvermullets&amp;page=4">4</a><a href="/load_collection?collection_id=312&amp;direction=asc&amp;username=denvermullets&amp;page=5">5</a><a role="separator" aria-disabled="true">&hellip;</a><a href="/load_collection?collection_id=312&amp;direction=asc&amp;username=denvermullets&amp;page=15">15</a><a href="/load_collection?collection_id=312&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=312&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=312&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=312&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=312&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=312&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=312&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=312&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=312&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=312&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="30546"
          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">
              334
            </td>

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


            </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">
                  $86.84

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

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

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

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

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

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


            </td>

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

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

                </div>
            </td>

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

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

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

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

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


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              World 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-g'></i>
              </div>
            </td>

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

                </div>
            </td>

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

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

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

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

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

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

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


            </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">
                  $20.50

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 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">
                $11.50
            </td>

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

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

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

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


            </td>

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

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

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

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

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

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

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

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

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

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

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


            </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">
                  $16.67

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $11.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.48
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="30629"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_30629" src="/boxset_card/30629?collection_id=312&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="6452"
          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">
              92
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-chr ss-common ss-fw ss-2x mr-4"></i>
              Ashnod&#39;s Altar


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $15.24

                    <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">
                $7.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.12
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="6452"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_6452" src="/boxset_card/6452?collection_id=312&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="29890"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              104
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-4ed ss-rare ss-fw ss-2x mr-4"></i>
              Stasis


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Enchantment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $11.57

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $8.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                3.06
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="29890"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_29890" src="/boxset_card/29890?collection_id=312&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="1542"
          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">
              26
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-all ss-rare ss-fw ss-2x mr-4"></i>
              Diminishing Returns


            </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-u'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $10.85

                    <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">
                $6.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.74
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="1542"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_1542" src="/boxset_card/1542?collection_id=312&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="33757"
          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">
              87
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-ice ss-common ss-fw ss-2x mr-4"></i>
              Mystic Remora


            </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-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $10.42

                    <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">
                $8.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.54
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="33757"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_33757" src="/boxset_card/33757?collection_id=312&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="1923"
          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">
              115
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-all ss-rare ss-fw ss-2x mr-4"></i>
              Phelddagrif


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Phelddagrif
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $10.18

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $4.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.38
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="1923"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_1923" src="/boxset_card/1923?collection_id=312&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="29751"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              58
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-4ed ss-rare ss-fw ss-2x mr-4"></i>
              Wrath of God


            </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-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">
                  $9.95

                    <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">
                $4.40
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.45
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="29751"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_29751" src="/boxset_card/29751?collection_id=312&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="34148"
          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-ice ss-common ss-fw ss-2x mr-4"></i>
              Pyroblast


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $9.41

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $9.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.38
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="34148"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_34148" src="/boxset_card/34148?collection_id=312&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="34548"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              343
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-ice ss-uncommon ss-fw ss-2x mr-4"></i>
              Urza&#39;s Bauble


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-0'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $9.28

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $6.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.26
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="34548"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_34548" src="/boxset_card/34548?collection_id=312&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="30623"
          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">
              361
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-4ed ss-uncommon ss-fw ss-2x mr-4"></i>
              Mishra&#39;s Factory


            </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">
                  $8.79

                    <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">
                $4.60
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.11
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="30623"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_30623" src="/boxset_card/30623?collection_id=312&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="30168"
          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">
              198
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-4ed ss-rare ss-fw ss-2x mr-4"></i>
              Goblin King


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Goblin
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $8.50

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $3.80
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.34
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="30168"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_30168" src="/boxset_card/30168?collection_id=312&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="29931"
          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">
              118
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-4ed ss-uncommon ss-fw ss-2x mr-4"></i>
              Animate Dead


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Enchantment — Aura
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-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">
                  $8.47

                    <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">
                $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.55
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="29931"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_29931" src="/boxset_card/29931?collection_id=312&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="30229"
          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">
              220
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-4ed ss-rare ss-fw ss-2x mr-4"></i>
              Shivan Dragon


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Dragon
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-4'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $8.42

                </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.29
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="30229"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_30229" src="/boxset_card/30229?collection_id=312&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="30103"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              176
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-4ed ss-rare ss-fw ss-2x mr-4"></i>
              Ball Lightning


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Elemental
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $8.30

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $3.60
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.06
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="30103"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_30103" src="/boxset_card/30103?collection_id=312&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="6319"
          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">
              46
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-chr ss-rare ss-fw ss-2x mr-4"></i>
              Blood Moon


            </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-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $8.24

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $8.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                2.13
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="6319"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_6319" src="/boxset_card/6319?collection_id=312&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="29735"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              52
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-4ed 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">
                  $7.23

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $4.40
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.45
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="29735"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_29735" src="/boxset_card/29735?collection_id=312&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="30264"
          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">
              232
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-4ed ss-rare ss-fw ss-2x mr-4"></i>
              Winds of Change


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $7.19

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $4.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.81
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="30264"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_30264" src="/boxset_card/30264?collection_id=312&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="29721"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              48
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-4ed ss-rare ss-fw ss-2x mr-4"></i>
              Savannah Lions


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Cat
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $7.15

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.40
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.06
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="29721"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_29721" src="/boxset_card/29721?collection_id=312&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="33868"
          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">
              121
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-ice ss-uncommon ss-fw ss-2x mr-4"></i>
              Demonic Consultation


            </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-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $6.97

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $6.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.82
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="33868"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_33868" src="/boxset_card/33868?collection_id=312&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="29963"
          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-4ed ss-common ss-fw ss-2x mr-4"></i>
              Dark Ritual


            </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-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $6.60

                    <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.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.67
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="29963"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_29963" src="/boxset_card/29963?collection_id=312&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="34493"
          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">
              326
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-ice ss-uncommon ss-fw ss-2x mr-4"></i>
              Jeweled Amulet


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-0'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $6.19

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $5.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="34493"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_34493" src="/boxset_card/34493?collection_id=312&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="30521"
          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">
              325
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-4ed ss-rare ss-fw ss-2x mr-4"></i>
              Howling Mine


            </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">
                  $5.80

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $5.30
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.29
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="30521"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_30521" src="/boxset_card/30521?collection_id=312&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="29772"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              65
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-4ed ss-uncommon ss-fw ss-2x mr-4"></i>
              Counterspell


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-u'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $5.51

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      9%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $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.70
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="29772"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_29772" src="/boxset_card/29772?collection_id=312&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="34106"
          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">
              199
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-ice ss-rare ss-fw ss-2x mr-4"></i>
              Márton Stromgald


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Human 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-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $5.50

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      4%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $2.25
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.40
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="34106"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_34106" src="/boxset_card/34106?collection_id=312&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="30004"
          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">
              142
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-4ed ss-uncommon ss-fw ss-2x mr-4"></i>
              Hypnotic Specter


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Specter
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-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">
                  $5.33

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $3.10
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.05
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="30004"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_30004" src="/boxset_card/30004?collection_id=312&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="30019"
          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">
              147
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-4ed ss-rare ss-fw ss-2x mr-4"></i>
              Mind Twist


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-x'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $5.22

                </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">
                1.13
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="30019"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_30019" src="/boxset_card/30019?collection_id=312&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="30048"
          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">
              157
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-4ed ss-rare ss-fw ss-2x mr-4"></i>
              Royal Assassin


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Human Assassin
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-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">
                  $5.13

                    <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">
                $2.30
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.33
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="30048"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_30048" src="/boxset_card/30048?collection_id=312&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="62252"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              99
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-3ed ss-common ss-fw ss-2x mr-4"></i>
              Dark Ritual


            </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-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $4.79

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      4%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $2.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.67
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="62252"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_62252" src="/boxset_card/62252?collection_id=312&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="30452"
          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-4ed ss-uncommon ss-fw ss-2x mr-4"></i>
              Black Vise


            </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">
                  $4.78

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 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">
                $1.30
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.42
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="30452"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_30452" src="/boxset_card/30452?collection_id=312&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="33709"
          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">
              72
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-ice ss-common ss-fw ss-2x mr-4"></i>
              Hydroblast


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $4.74

                    <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">
                $4.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.33
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="33709"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_33709" src="/boxset_card/33709?collection_id=312&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="30505"
          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">
              319
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-4ed ss-uncommon ss-fw ss-2x mr-4"></i>
              Fellwar 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">
                  $4.56

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $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.18
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="30505"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_30505" src="/boxset_card/30505?collection_id=312&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="1773"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              78
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-all ss-uncommon ss-fw ss-2x mr-4"></i>
              Pyrokinesis


            </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-4'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $4.50

                    <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">
                $4.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.61
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="1773"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_1773" src="/boxset_card/1773?collection_id=312&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="34279"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              255
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-ice ss-uncommon ss-fw ss-2x mr-4"></i>
              Nature&#39;s Lore


            </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-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $4.49

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      4%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.20
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.24
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="34279"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_34279" src="/boxset_card/34279?collection_id=312&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="30556"
          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">
              338
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-4ed ss-rare ss-fw ss-2x mr-4"></i>
              Nevinyrral&#39;s Disk


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-4'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $4.31

                    <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">
                $3.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.75
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="30556"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_30556" src="/boxset_card/30556?collection_id=312&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="29779"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              67
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-4ed ss-rare ss-fw ss-2x mr-4"></i>
              Drain Power


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-u'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </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-50 text-badge-text">
                      ↑
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.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.80
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="29779"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_29779" src="/boxset_card/29779?collection_id=312&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="1692"
          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">
              60b
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-all ss-common ss-fw ss-2x mr-4"></i>
              Soldevi Adnate


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Human Cleric
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-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.53

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.20
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="1692"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_1692" src="/boxset_card/1692?collection_id=312&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="30543"
          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">
              333
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-4ed ss-uncommon ss-fw ss-2x mr-4"></i>
              Library of Leng


            </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">
                  $3.36

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.38
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="30543"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_30543" src="/boxset_card/30543?collection_id=312&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="30196"
          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">
              208
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-4ed ss-common ss-fw ss-2x mr-4"></i>
              Lightning Bolt


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.26

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      4%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.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.18
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="30196"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_30196" src="/boxset_card/30196?collection_id=312&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="33383"
          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">
              64
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-hml ss-rare ss-fw ss-2x mr-4"></i>
              An-Zerrin Ruins


            </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-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.11

                    <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.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">
                1.08
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="33383"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_33383" src="/boxset_card/33383?collection_id=312&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="1526"
          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">
              22b
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-all ss-common ss-fw ss-2x mr-4"></i>
              Arcane Denial


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.05

                    <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">
                $2.30
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.46
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="1526"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_1526" src="/boxset_card/1526?collection_id=312&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="30224"
          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">
              218
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-4ed ss-common ss-fw ss-2x mr-4"></i>
              Red Elemental Blast


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.04

                    <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">
                $3.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="30224"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_30224" src="/boxset_card/30224?collection_id=312&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="30511"
          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">
              321
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-4ed ss-uncommon ss-fw ss-2x mr-4"></i>
              Glasses of Urza


            </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">
                  $3.03

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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="30511"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_30511" src="/boxset_card/30511?collection_id=312&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="29828"
          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-4ed ss-rare ss-fw ss-2x mr-4"></i>
              Magical Hack


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.89

                    <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">
                $2.25
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.38
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="29828"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_29828" src="/boxset_card/29828?collection_id=312&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="34242"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              244
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-ice ss-common ss-fw ss-2x mr-4"></i>
              Fyndhorn Elves


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Elf Druid
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.85

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $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.16
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="34242"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_34242" src="/boxset_card/34242?collection_id=312&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="33674"
          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">
              61
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-ice ss-common ss-fw ss-2x mr-4"></i>
              Brainstorm


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.73

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      4%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.65
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.21
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="33674"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_33674" src="/boxset_card/33674?collection_id=312&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 713 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=312&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next">2</a><a href="/load_collection?collection_id=312&amp;direction=asc&amp;username=denvermullets&amp;page=3">3</a><a href="/load_collection?collection_id=312&amp;direction=asc&amp;username=denvermullets&amp;page=4">4</a><a href="/load_collection?collection_id=312&amp;direction=asc&amp;username=denvermullets&amp;page=5">5</a><a role="separator" aria-disabled="true">&hellip;</a><a href="/load_collection?collection_id=312&amp;direction=asc&amp;username=denvermullets&amp;page=15">15</a><a href="/load_collection?collection_id=312&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next" aria-label="Next">&gt;</a></nav>
    </div>
</div>

</template></turbo-stream>