<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="326" 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="108907"
  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-soc 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">
            Faerie Mastermind
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $11.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="Faerie Mastermind" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/c/bc9a7599-3c7d-4b83-bff3-e3d1f20f1b0f.jpg?1782683295" />

        <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">
            Faerie Mastermind
        </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 — Faerie Rogue</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Faerie Mastermind" src="https://cards.scryfall.io/large/front/b/c/bc9a7599-3c7d-4b83-bff3-e3d1f20f1b0f.jpg?1782683295" />
    </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">
                $11.80
              </span>

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $0.00
              </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-08&quot;:10.84},{&quot;2026-06-10&quot;:10.64},{&quot;2026-06-11&quot;:10.52},{&quot;2026-06-12&quot;:10.28},{&quot;2026-06-13&quot;:9.95},{&quot;2026-06-14&quot;:10.03},{&quot;2026-06-15&quot;:10.12},{&quot;2026-06-16&quot;:9.96},{&quot;2026-06-17&quot;:9.97},{&quot;2026-06-18&quot;:9.91},{&quot;2026-06-19&quot;:9.79},{&quot;2026-06-20&quot;:9.81},{&quot;2026-06-21&quot;:9.46},{&quot;2026-06-22&quot;:9.39},{&quot;2026-06-24&quot;:9.27},{&quot;2026-06-25&quot;:8.78},{&quot;2026-06-26&quot;:9.07},{&quot;2026-06-27&quot;:9.0},{&quot;2026-06-28&quot;:9.44},{&quot;2026-06-29&quot;:9.77},{&quot;2026-06-30&quot;:9.86},{&quot;2026-07-01&quot;:9.97},{&quot;2026-07-02&quot;:10.36},{&quot;2026-07-03&quot;:10.51},{&quot;2026-07-04&quot;:10.69},{&quot;2026-07-05&quot;:10.45},{&quot;2026-07-06&quot;:10.58},{&quot;2026-07-07&quot;:10.73},{&quot;2026-07-08&quot;:10.67},{&quot;2026-07-09&quot;:10.49},{&quot;2026-07-10&quot;:10.47},{&quot;2026-07-11&quot;:10.72},{&quot;2026-07-12&quot;:10.58},{&quot;2026-07-13&quot;:10.54},{&quot;2026-07-14&quot;:10.76},{&quot;2026-07-15&quot;:10.92},{&quot;2026-07-16&quot;:11.0},{&quot;2026-07-17&quot;:10.73},{&quot;2026-07-18&quot;:10.79},{&quot;2026-07-19&quot;:10.99},{&quot;2026-07-20&quot;:11.09},{&quot;2026-07-21&quot;:11.3},{&quot;2026-07-23&quot;:11.61},{&quot;2026-07-25&quot;:12.05},{&quot;2026-07-26&quot;:12.0},{&quot;2026-07-27&quot;:11.63},{&quot;2026-07-29&quot;:12.18},{&quot;2026-07-30&quot;:12.25},{&quot;2026-07-31&quot;:12.29},{&quot;2026-08-01&quot;:12.2},{&quot;2026-08-02&quot;:12.3},{&quot;2026-08-03&quot;:12.35},{&quot;2026-08-04&quot;:12.15},{&quot;2026-08-05&quot;:12.31},{&quot;2026-08-07&quot;:12.05},{&quot;2026-08-08&quot;:11.98},{&quot;2026-08-09&quot;:11.76},{&quot;2026-08-10&quot;:11.48},{&quot;2026-08-11&quot;:11.45},{&quot;2026-08-12&quot;:11.48},{&quot;2026-08-13&quot;:11.72},{&quot;2026-08-14&quot;:12.16},{&quot;2026-08-15&quot;:12.26},{&quot;2026-08-16&quot;:12.42},{&quot;2026-08-17&quot;:12.66},{&quot;2026-08-18&quot;:12.73},{&quot;2026-08-19&quot;:12.25},{&quot;2026-08-20&quot;:12.25},{&quot;2026-08-21&quot;:12.31},{&quot;2026-08-22&quot;:12.17},{&quot;2026-08-23&quot;:12.3},{&quot;2026-08-24&quot;:12.25},{&quot;2026-08-25&quot;:12.25},{&quot;2026-08-26&quot;:12.28},{&quot;2026-08-27&quot;:12.13},{&quot;2026-08-28&quot;:12.17},{&quot;2026-08-29&quot;:12.17},{&quot;2026-08-30&quot;:12.17},{&quot;2026-08-31&quot;:11.96},{&quot;2026-09-01&quot;:11.96},{&quot;2026-09-02&quot;:11.96},{&quot;2026-09-03&quot;:12.7},{&quot;2026-09-04&quot;:12.47},{&quot;2026-09-05&quot;:12.23},{&quot;2026-09-06&quot;:11.98},{&quot;2026-09-07&quot;:11.9},{&quot;2026-09-08&quot;:11.46},{&quot;2026-09-09&quot;:11.4},{&quot;2026-09-10&quot;:11.47},{&quot;2026-09-11&quot;:11.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="109036"
  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-soc ss-mythic ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Goldspan 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="px-1.5 py-0.5 text-xs rounded-full bg-accent-100 text-badge-text">
              ↓
              8%
            </span>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Goldspan Dragon" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/4/848c1951-90fa-4f01-9aed-76f1afcd9995.jpg?1782683200" />

        <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">
            Goldspan Dragon
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-3'></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="Goldspan Dragon" src="https://cards.scryfall.io/large/front/8/4/848c1951-90fa-4f01-9aed-76f1afcd9995.jpg?1782683200" />
    </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.65
              </span>

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $0.00
              </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;:5.86},{&quot;2026-06-14&quot;:5.75},{&quot;2026-06-15&quot;:5.47},{&quot;2026-06-16&quot;:5.47},{&quot;2026-06-17&quot;:5.1},{&quot;2026-06-18&quot;:5.49},{&quot;2026-06-19&quot;:5.79},{&quot;2026-06-20&quot;:5.72},{&quot;2026-06-21&quot;:5.69},{&quot;2026-06-22&quot;:5.84},{&quot;2026-06-23&quot;:6.05},{&quot;2026-06-24&quot;:5.94},{&quot;2026-06-25&quot;:5.92},{&quot;2026-06-26&quot;:5.74},{&quot;2026-06-27&quot;:5.49},{&quot;2026-06-28&quot;:5.56},{&quot;2026-06-29&quot;:5.6},{&quot;2026-06-30&quot;:5.54},{&quot;2026-07-01&quot;:5.6},{&quot;2026-07-02&quot;:5.73},{&quot;2026-07-03&quot;:5.62},{&quot;2026-07-04&quot;:5.75},{&quot;2026-07-05&quot;:5.8},{&quot;2026-07-06&quot;:5.72},{&quot;2026-07-07&quot;:5.66},{&quot;2026-07-08&quot;:5.61},{&quot;2026-07-09&quot;:5.62},{&quot;2026-07-10&quot;:5.24},{&quot;2026-07-11&quot;:5.15},{&quot;2026-07-12&quot;:5.13},{&quot;2026-07-13&quot;:5.11},{&quot;2026-07-14&quot;:5.15},{&quot;2026-07-15&quot;:5.2},{&quot;2026-07-16&quot;:5.07},{&quot;2026-07-17&quot;:4.79},{&quot;2026-07-18&quot;:5.51},{&quot;2026-07-19&quot;:5.69},{&quot;2026-07-20&quot;:5.74},{&quot;2026-07-21&quot;:5.83},{&quot;2026-07-22&quot;:5.84},{&quot;2026-07-23&quot;:5.94},{&quot;2026-07-24&quot;:6.08},{&quot;2026-07-25&quot;:6.19},{&quot;2026-07-26&quot;:5.99},{&quot;2026-07-27&quot;:6.14},{&quot;2026-07-28&quot;:6.17},{&quot;2026-07-29&quot;:6.49},{&quot;2026-07-30&quot;:6.38},{&quot;2026-07-31&quot;:6.45},{&quot;2026-08-01&quot;:6.59},{&quot;2026-08-02&quot;:6.74},{&quot;2026-08-03&quot;:6.77},{&quot;2026-08-04&quot;:6.64},{&quot;2026-08-05&quot;:6.83},{&quot;2026-08-07&quot;:6.73},{&quot;2026-08-08&quot;:7.12},{&quot;2026-08-09&quot;:7.33},{&quot;2026-08-10&quot;:7.37},{&quot;2026-08-11&quot;:7.35},{&quot;2026-08-12&quot;:7.67},{&quot;2026-08-13&quot;:7.55},{&quot;2026-08-14&quot;:7.99},{&quot;2026-08-15&quot;:8.37},{&quot;2026-08-16&quot;:8.73},{&quot;2026-08-17&quot;:8.63},{&quot;2026-08-18&quot;:8.65},{&quot;2026-08-19&quot;:8.78},{&quot;2026-08-20&quot;:8.73},{&quot;2026-08-21&quot;:8.74},{&quot;2026-08-22&quot;:9.4},{&quot;2026-08-23&quot;:9.65},{&quot;2026-08-24&quot;:9.68},{&quot;2026-08-25&quot;:11.09},{&quot;2026-08-26&quot;:9.43},{&quot;2026-08-27&quot;:10.17},{&quot;2026-08-28&quot;:10.23},{&quot;2026-08-29&quot;:10.23},{&quot;2026-08-30&quot;:10.26},{&quot;2026-08-31&quot;:10.3},{&quot;2026-09-01&quot;:10.12},{&quot;2026-09-02&quot;:10.9},{&quot;2026-09-03&quot;:11.46},{&quot;2026-09-04&quot;:10.93},{&quot;2026-09-05&quot;:11.63},{&quot;2026-09-06&quot;:11.91},{&quot;2026-09-07&quot;:12.78},{&quot;2026-09-08&quot;:12.96},{&quot;2026-09-09&quot;:11.81},{&quot;2026-09-10&quot;:10.68},{&quot;2026-09-11&quot;:10.65}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="108896"
  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-soc 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">
            Turbulent Springs
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Turbulent Springs
        </h3>

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Turbulent Springs" src="https://cards.scryfall.io/large/front/a/2/a25cb813-aa6d-469c-aa29-61ffa32267f2.jpg?1782683342" />
    </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.69
              </span>

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-11&quot;:4.95},{&quot;2026-06-12&quot;:4.99},{&quot;2026-06-13&quot;:4.93},{&quot;2026-06-14&quot;:4.64},{&quot;2026-06-15&quot;:4.58},{&quot;2026-06-16&quot;:4.68},{&quot;2026-06-17&quot;:4.48},{&quot;2026-06-18&quot;:4.59},{&quot;2026-06-19&quot;:4.58},{&quot;2026-06-20&quot;:4.59},{&quot;2026-06-21&quot;:4.41},{&quot;2026-06-22&quot;:4.27},{&quot;2026-06-23&quot;:4.36},{&quot;2026-06-24&quot;:4.4},{&quot;2026-06-25&quot;:4.44},{&quot;2026-06-26&quot;:4.5},{&quot;2026-06-27&quot;:4.46},{&quot;2026-06-28&quot;:4.44},{&quot;2026-06-29&quot;:4.41},{&quot;2026-06-30&quot;:4.55},{&quot;2026-07-01&quot;:4.44},{&quot;2026-07-02&quot;:4.41},{&quot;2026-07-03&quot;:4.46},{&quot;2026-07-04&quot;:4.59},{&quot;2026-07-05&quot;:4.71},{&quot;2026-07-06&quot;:4.93},{&quot;2026-07-07&quot;:4.94},{&quot;2026-07-08&quot;:4.96},{&quot;2026-07-09&quot;:4.92},{&quot;2026-07-10&quot;:5.24},{&quot;2026-07-11&quot;:5.34},{&quot;2026-07-12&quot;:5.15},{&quot;2026-07-13&quot;:5.07},{&quot;2026-07-14&quot;:5.0},{&quot;2026-07-15&quot;:4.88},{&quot;2026-07-16&quot;:4.87},{&quot;2026-07-17&quot;:4.93},{&quot;2026-07-18&quot;:4.92},{&quot;2026-07-19&quot;:4.93},{&quot;2026-07-20&quot;:4.4},{&quot;2026-07-21&quot;:4.27},{&quot;2026-07-23&quot;:4.33},{&quot;2026-07-25&quot;:4.4},{&quot;2026-07-26&quot;:4.35},{&quot;2026-07-27&quot;:4.59},{&quot;2026-07-28&quot;:4.76},{&quot;2026-07-29&quot;:4.97},{&quot;2026-07-30&quot;:4.94},{&quot;2026-07-31&quot;:5.26},{&quot;2026-08-01&quot;:5.34},{&quot;2026-08-02&quot;:5.43},{&quot;2026-08-03&quot;:5.52},{&quot;2026-08-04&quot;:5.65},{&quot;2026-08-05&quot;:5.59},{&quot;2026-08-07&quot;:5.54},{&quot;2026-08-08&quot;:5.28},{&quot;2026-08-09&quot;:5.37},{&quot;2026-08-10&quot;:5.36},{&quot;2026-08-11&quot;:5.45},{&quot;2026-08-12&quot;:5.47},{&quot;2026-08-13&quot;:5.42},{&quot;2026-08-14&quot;:5.35},{&quot;2026-08-15&quot;:5.09},{&quot;2026-08-16&quot;:5.07},{&quot;2026-08-17&quot;:5.54},{&quot;2026-08-18&quot;:5.93},{&quot;2026-08-19&quot;:5.99},{&quot;2026-08-20&quot;:5.99},{&quot;2026-08-21&quot;:6.02},{&quot;2026-08-22&quot;:6.0},{&quot;2026-08-23&quot;:5.91},{&quot;2026-08-24&quot;:5.86},{&quot;2026-08-25&quot;:5.86},{&quot;2026-08-26&quot;:5.15},{&quot;2026-08-27&quot;:5.06},{&quot;2026-08-28&quot;:5.1},{&quot;2026-08-29&quot;:5.1},{&quot;2026-08-30&quot;:5.2},{&quot;2026-08-31&quot;:5.08},{&quot;2026-09-01&quot;:5.08},{&quot;2026-09-02&quot;:4.88},{&quot;2026-09-03&quot;:4.84},{&quot;2026-09-04&quot;:4.86},{&quot;2026-09-05&quot;:5.06},{&quot;2026-09-06&quot;:5.22},{&quot;2026-09-07&quot;:5.35},{&quot;2026-09-08&quot;:4.97},{&quot;2026-09-09&quot;:4.89},{&quot;2026-09-10&quot;:4.75},{&quot;2026-09-11&quot;:4.69}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Lightning Greaves" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/8/08005be9-fbf4-43e6-a742-b1fb8196c4a5.jpg?1782683113" />

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Lightning Greaves" src="https://cards.scryfall.io/large/front/0/8/08005be9-fbf4-43e6-a742-b1fb8196c4a5.jpg?1782683113" />
    </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.54
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-08&quot;:4.47},{&quot;2026-06-10&quot;:4.12},{&quot;2026-06-11&quot;:4.13},{&quot;2026-06-12&quot;:4.27},{&quot;2026-06-13&quot;:4.18},{&quot;2026-06-14&quot;:4.27},{&quot;2026-06-15&quot;:4.28},{&quot;2026-06-16&quot;:4.32},{&quot;2026-06-17&quot;:4.3},{&quot;2026-06-18&quot;:4.25},{&quot;2026-06-19&quot;:4.3},{&quot;2026-06-20&quot;:4.41},{&quot;2026-06-21&quot;:4.28},{&quot;2026-06-22&quot;:4.13},{&quot;2026-06-24&quot;:3.9},{&quot;2026-06-25&quot;:4.07},{&quot;2026-06-26&quot;:3.87},{&quot;2026-06-27&quot;:4.23},{&quot;2026-06-28&quot;:4.45},{&quot;2026-06-29&quot;:4.47},{&quot;2026-06-30&quot;:4.51},{&quot;2026-07-01&quot;:4.49},{&quot;2026-07-02&quot;:4.48},{&quot;2026-07-03&quot;:4.55},{&quot;2026-07-04&quot;:4.38},{&quot;2026-07-05&quot;:4.41},{&quot;2026-07-06&quot;:4.36},{&quot;2026-07-07&quot;:4.38},{&quot;2026-07-08&quot;:4.24},{&quot;2026-07-09&quot;:4.19},{&quot;2026-07-10&quot;:4.2},{&quot;2026-07-11&quot;:4.12},{&quot;2026-07-12&quot;:3.9},{&quot;2026-07-13&quot;:3.92},{&quot;2026-07-14&quot;:3.96},{&quot;2026-07-15&quot;:3.98},{&quot;2026-07-16&quot;:3.95},{&quot;2026-07-17&quot;:3.9},{&quot;2026-07-18&quot;:3.87},{&quot;2026-07-19&quot;:4.02},{&quot;2026-07-20&quot;:4.01},{&quot;2026-07-21&quot;:4.1},{&quot;2026-07-23&quot;:4.3},{&quot;2026-07-25&quot;:4.47},{&quot;2026-07-26&quot;:4.43},{&quot;2026-07-27&quot;:4.5},{&quot;2026-07-29&quot;:4.59},{&quot;2026-07-30&quot;:4.55},{&quot;2026-07-31&quot;:4.58},{&quot;2026-08-01&quot;:4.58},{&quot;2026-08-02&quot;:4.42},{&quot;2026-08-03&quot;:4.15},{&quot;2026-08-04&quot;:4.17},{&quot;2026-08-05&quot;:4.43},{&quot;2026-08-07&quot;:4.58},{&quot;2026-08-08&quot;:4.46},{&quot;2026-08-09&quot;:4.52},{&quot;2026-08-10&quot;:4.45},{&quot;2026-08-11&quot;:4.37},{&quot;2026-08-12&quot;:4.38},{&quot;2026-08-13&quot;:4.44},{&quot;2026-08-14&quot;:4.53},{&quot;2026-08-15&quot;:4.42},{&quot;2026-08-16&quot;:4.53},{&quot;2026-08-17&quot;:4.64},{&quot;2026-08-18&quot;:4.72},{&quot;2026-08-19&quot;:4.82},{&quot;2026-08-20&quot;:4.82},{&quot;2026-08-21&quot;:4.77},{&quot;2026-08-22&quot;:4.56},{&quot;2026-08-23&quot;:4.25},{&quot;2026-08-24&quot;:4.01},{&quot;2026-08-25&quot;:4.01},{&quot;2026-08-26&quot;:4.26},{&quot;2026-08-27&quot;:4.19},{&quot;2026-08-28&quot;:4.35},{&quot;2026-08-29&quot;:4.35},{&quot;2026-08-30&quot;:4.5},{&quot;2026-08-31&quot;:4.38},{&quot;2026-09-01&quot;:4.38},{&quot;2026-09-02&quot;:4.77},{&quot;2026-09-03&quot;:4.59},{&quot;2026-09-04&quot;:4.69},{&quot;2026-09-05&quot;:4.64},{&quot;2026-09-06&quot;:4.7},{&quot;2026-09-07&quot;:4.83},{&quot;2026-09-08&quot;:4.68},{&quot;2026-09-09&quot;:4.55},{&quot;2026-09-10&quot;:4.59},{&quot;2026-09-11&quot;:4.54}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="109188"
  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-soc 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">
            Reliquary Tower
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $3.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="Reliquary Tower" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/e/2/e2a27742-08c1-4153-af7f-25a7a98f585e.jpg?1782683076" />

        <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">
            Reliquary Tower
        </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="Reliquary Tower" src="https://cards.scryfall.io/large/front/e/2/e2a27742-08c1-4153-af7f-25a7a98f585e.jpg?1782683076" />
    </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.78
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:2.98},{&quot;2026-06-14&quot;:2.92},{&quot;2026-06-15&quot;:3.02},{&quot;2026-06-16&quot;:2.98},{&quot;2026-06-17&quot;:2.77},{&quot;2026-06-18&quot;:2.81},{&quot;2026-06-19&quot;:2.95},{&quot;2026-06-20&quot;:2.93},{&quot;2026-06-21&quot;:2.92},{&quot;2026-06-22&quot;:3.09},{&quot;2026-06-23&quot;:2.91},{&quot;2026-06-24&quot;:3.04},{&quot;2026-06-25&quot;:3.1},{&quot;2026-06-26&quot;:3.03},{&quot;2026-06-27&quot;:3.09},{&quot;2026-06-28&quot;:3.06},{&quot;2026-06-29&quot;:3.07},{&quot;2026-06-30&quot;:3.12},{&quot;2026-07-01&quot;:3.22},{&quot;2026-07-02&quot;:3.14},{&quot;2026-07-03&quot;:3.14},{&quot;2026-07-04&quot;:3.11},{&quot;2026-07-05&quot;:3.13},{&quot;2026-07-06&quot;:3.07},{&quot;2026-07-07&quot;:3.38},{&quot;2026-07-08&quot;:2.97},{&quot;2026-07-09&quot;:2.99},{&quot;2026-07-10&quot;:3.36},{&quot;2026-07-11&quot;:3.32},{&quot;2026-07-12&quot;:3.41},{&quot;2026-07-13&quot;:3.21},{&quot;2026-07-14&quot;:3.39},{&quot;2026-07-15&quot;:3.49},{&quot;2026-07-16&quot;:3.38},{&quot;2026-07-17&quot;:3.14},{&quot;2026-07-18&quot;:3.21},{&quot;2026-07-19&quot;:3.21},{&quot;2026-07-20&quot;:3.53},{&quot;2026-07-21&quot;:3.54},{&quot;2026-07-22&quot;:3.85},{&quot;2026-07-23&quot;:3.86},{&quot;2026-07-24&quot;:4.08},{&quot;2026-07-25&quot;:3.82},{&quot;2026-07-26&quot;:3.8},{&quot;2026-07-27&quot;:3.67},{&quot;2026-07-28&quot;:3.67},{&quot;2026-07-29&quot;:3.85},{&quot;2026-07-30&quot;:4.1},{&quot;2026-07-31&quot;:4.25},{&quot;2026-08-01&quot;:4.22},{&quot;2026-08-02&quot;:4.2},{&quot;2026-08-03&quot;:4.05},{&quot;2026-08-04&quot;:4.07},{&quot;2026-08-05&quot;:4.28},{&quot;2026-08-07&quot;:4.64},{&quot;2026-08-08&quot;:4.52},{&quot;2026-08-09&quot;:4.79},{&quot;2026-08-10&quot;:4.89},{&quot;2026-08-11&quot;:4.74},{&quot;2026-08-12&quot;:5.0},{&quot;2026-08-13&quot;:5.05},{&quot;2026-08-14&quot;:5.09},{&quot;2026-08-15&quot;:5.08},{&quot;2026-08-16&quot;:5.18},{&quot;2026-08-17&quot;:5.22},{&quot;2026-08-18&quot;:4.98},{&quot;2026-08-19&quot;:4.49},{&quot;2026-08-20&quot;:4.35},{&quot;2026-08-21&quot;:3.87},{&quot;2026-08-22&quot;:3.62},{&quot;2026-08-23&quot;:3.54},{&quot;2026-08-24&quot;:3.48},{&quot;2026-08-25&quot;:3.53},{&quot;2026-08-26&quot;:3.55},{&quot;2026-08-27&quot;:3.7},{&quot;2026-08-28&quot;:3.58},{&quot;2026-08-29&quot;:3.58},{&quot;2026-08-30&quot;:3.82},{&quot;2026-08-31&quot;:3.56},{&quot;2026-09-01&quot;:3.43},{&quot;2026-09-02&quot;:3.49},{&quot;2026-09-03&quot;:3.58},{&quot;2026-09-04&quot;:3.57},{&quot;2026-09-05&quot;:3.71},{&quot;2026-09-06&quot;:3.89},{&quot;2026-09-07&quot;:3.64},{&quot;2026-09-08&quot;:3.68},{&quot;2026-09-09&quot;:3.63},{&quot;2026-09-10&quot;:3.61},{&quot;2026-09-11&quot;:3.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="108916"
  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-soc 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">
            Harmonic Prodigy
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $3.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="Harmonic Prodigy" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/6/3/63a565e3-d7a8-469d-898f-49fef634c107.jpg?1782683287" />

        <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">
            Harmonic Prodigy
        </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 Wizard</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Harmonic Prodigy" src="https://cards.scryfall.io/large/front/6/3/63a565e3-d7a8-469d-898f-49fef634c107.jpg?1782683287" />
    </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.19
              </span>

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $0.00
              </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.04},{&quot;2026-06-12&quot;:3.0},{&quot;2026-06-13&quot;:3.1},{&quot;2026-06-14&quot;:3.05},{&quot;2026-06-15&quot;:2.91},{&quot;2026-06-16&quot;:3.0},{&quot;2026-06-17&quot;:3.04},{&quot;2026-06-18&quot;:3.08},{&quot;2026-06-19&quot;:2.95},{&quot;2026-06-20&quot;:2.97},{&quot;2026-06-21&quot;:3.08},{&quot;2026-06-22&quot;:3.16},{&quot;2026-06-23&quot;:3.26},{&quot;2026-06-24&quot;:3.3},{&quot;2026-06-25&quot;:3.31},{&quot;2026-06-26&quot;:3.33},{&quot;2026-06-27&quot;:3.29},{&quot;2026-06-28&quot;:3.43},{&quot;2026-06-29&quot;:3.45},{&quot;2026-06-30&quot;:3.47},{&quot;2026-07-01&quot;:3.31},{&quot;2026-07-02&quot;:3.26},{&quot;2026-07-03&quot;:3.3},{&quot;2026-07-04&quot;:3.33},{&quot;2026-07-05&quot;:3.3},{&quot;2026-07-06&quot;:3.33},{&quot;2026-07-07&quot;:3.34},{&quot;2026-07-08&quot;:3.39},{&quot;2026-07-09&quot;:3.21},{&quot;2026-07-10&quot;:3.01},{&quot;2026-07-11&quot;:3.15},{&quot;2026-07-12&quot;:3.16},{&quot;2026-07-13&quot;:3.27},{&quot;2026-07-14&quot;:3.24},{&quot;2026-07-15&quot;:3.26},{&quot;2026-07-16&quot;:3.17},{&quot;2026-07-17&quot;:3.08},{&quot;2026-07-18&quot;:3.09},{&quot;2026-07-19&quot;:3.13},{&quot;2026-07-20&quot;:3.2},{&quot;2026-07-21&quot;:3.24},{&quot;2026-07-23&quot;:3.2},{&quot;2026-07-25&quot;:3.45},{&quot;2026-07-26&quot;:3.45},{&quot;2026-07-27&quot;:3.46},{&quot;2026-07-28&quot;:3.39},{&quot;2026-07-29&quot;:3.61},{&quot;2026-07-30&quot;:3.85},{&quot;2026-07-31&quot;:3.96},{&quot;2026-08-01&quot;:3.84},{&quot;2026-08-02&quot;:3.69},{&quot;2026-08-03&quot;:3.69},{&quot;2026-08-04&quot;:3.64},{&quot;2026-08-05&quot;:3.6},{&quot;2026-08-07&quot;:3.76},{&quot;2026-08-08&quot;:3.7},{&quot;2026-08-09&quot;:3.63},{&quot;2026-08-10&quot;:4.03},{&quot;2026-08-11&quot;:3.94},{&quot;2026-08-12&quot;:4.37},{&quot;2026-08-13&quot;:4.52},{&quot;2026-08-14&quot;:4.71},{&quot;2026-08-15&quot;:4.73},{&quot;2026-08-16&quot;:4.88},{&quot;2026-08-17&quot;:4.78},{&quot;2026-08-18&quot;:4.82},{&quot;2026-08-19&quot;:4.55},{&quot;2026-08-20&quot;:4.55},{&quot;2026-08-21&quot;:4.88},{&quot;2026-08-22&quot;:4.95},{&quot;2026-08-23&quot;:4.69},{&quot;2026-08-24&quot;:4.36},{&quot;2026-08-25&quot;:4.31},{&quot;2026-08-26&quot;:4.01},{&quot;2026-08-27&quot;:3.77},{&quot;2026-08-28&quot;:3.9},{&quot;2026-08-29&quot;:3.9},{&quot;2026-08-30&quot;:4.12},{&quot;2026-08-31&quot;:4.17},{&quot;2026-09-01&quot;:4.25},{&quot;2026-09-02&quot;:4.18},{&quot;2026-09-03&quot;:4.15},{&quot;2026-09-04&quot;:3.91},{&quot;2026-09-05&quot;:3.78},{&quot;2026-09-06&quot;:3.8},{&quot;2026-09-07&quot;:4.09},{&quot;2026-09-08&quot;:4.11},{&quot;2026-09-09&quot;:3.49},{&quot;2026-09-10&quot;:3.08},{&quot;2026-09-11&quot;:3.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="109038"
  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-soc 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">
            Mana Geyser
        </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">
              ↑
              71%
            </span>

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

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

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

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

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Mana Geyser" src="https://cards.scryfall.io/large/front/d/f/dfbda387-3c7d-4c80-97c3-60c9d4757244.jpg?1782683198" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $0.00
              </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;:1.21},{&quot;2026-06-14&quot;:1.15},{&quot;2026-06-15&quot;:1.14},{&quot;2026-06-16&quot;:1.19},{&quot;2026-06-17&quot;:1.14},{&quot;2026-06-18&quot;:1.14},{&quot;2026-06-19&quot;:1.47},{&quot;2026-06-20&quot;:1.51},{&quot;2026-06-21&quot;:1.57},{&quot;2026-06-22&quot;:1.56},{&quot;2026-06-23&quot;:1.26},{&quot;2026-06-24&quot;:1.33},{&quot;2026-06-25&quot;:1.39},{&quot;2026-06-26&quot;:1.32},{&quot;2026-06-27&quot;:1.18},{&quot;2026-06-28&quot;:1.07},{&quot;2026-06-29&quot;:1.03},{&quot;2026-06-30&quot;:1.13},{&quot;2026-07-01&quot;:1.07},{&quot;2026-07-02&quot;:1.11},{&quot;2026-07-03&quot;:1.17},{&quot;2026-07-04&quot;:1.16},{&quot;2026-07-05&quot;:1.15},{&quot;2026-07-06&quot;:1.09},{&quot;2026-07-07&quot;:1.06},{&quot;2026-07-08&quot;:1.03},{&quot;2026-07-09&quot;:1.04},{&quot;2026-07-10&quot;:1.02},{&quot;2026-07-11&quot;:1.03},{&quot;2026-07-12&quot;:1.08},{&quot;2026-07-13&quot;:1.07},{&quot;2026-07-14&quot;:1.06},{&quot;2026-07-15&quot;:1.06},{&quot;2026-07-16&quot;:1.05},{&quot;2026-07-17&quot;:1.05},{&quot;2026-07-18&quot;:1.06},{&quot;2026-07-19&quot;:1.06},{&quot;2026-07-20&quot;:1.08},{&quot;2026-07-21&quot;:1.08},{&quot;2026-07-22&quot;:1.08},{&quot;2026-07-23&quot;:1.08},{&quot;2026-07-24&quot;:1.08},{&quot;2026-07-25&quot;:1.09},{&quot;2026-07-26&quot;:1.13},{&quot;2026-07-27&quot;:1.23},{&quot;2026-07-28&quot;:1.23},{&quot;2026-07-29&quot;:1.22},{&quot;2026-07-30&quot;:1.15},{&quot;2026-07-31&quot;:1.53},{&quot;2026-08-01&quot;:1.55},{&quot;2026-08-02&quot;:1.57},{&quot;2026-08-03&quot;:1.3},{&quot;2026-08-04&quot;:1.26},{&quot;2026-08-05&quot;:1.26},{&quot;2026-08-07&quot;:1.26},{&quot;2026-08-08&quot;:1.23},{&quot;2026-08-09&quot;:1.22},{&quot;2026-08-10&quot;:1.18},{&quot;2026-08-11&quot;:1.2},{&quot;2026-08-12&quot;:1.2},{&quot;2026-08-13&quot;:1.17},{&quot;2026-08-14&quot;:1.21},{&quot;2026-08-15&quot;:1.23},{&quot;2026-08-16&quot;:1.26},{&quot;2026-08-17&quot;:1.24},{&quot;2026-08-18&quot;:1.25},{&quot;2026-08-19&quot;:1.24},{&quot;2026-08-20&quot;:1.25},{&quot;2026-08-21&quot;:1.24},{&quot;2026-08-22&quot;:1.23},{&quot;2026-08-23&quot;:1.21},{&quot;2026-08-24&quot;:1.14},{&quot;2026-08-25&quot;:1.17},{&quot;2026-08-26&quot;:1.18},{&quot;2026-08-27&quot;:1.17},{&quot;2026-08-28&quot;:1.15},{&quot;2026-08-29&quot;:1.15},{&quot;2026-08-30&quot;:1.14},{&quot;2026-08-31&quot;:1.13},{&quot;2026-09-01&quot;:1.12},{&quot;2026-09-02&quot;:1.13},{&quot;2026-09-03&quot;:1.13},{&quot;2026-09-04&quot;:1.1},{&quot;2026-09-05&quot;:1.08},{&quot;2026-09-06&quot;:1.07},{&quot;2026-09-07&quot;:1.11},{&quot;2026-09-08&quot;:1.09},{&quot;2026-09-09&quot;:1.12},{&quot;2026-09-10&quot;:1.48},{&quot;2026-09-11&quot;:1.85}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Talisman of Creativity" src="https://cards.scryfall.io/large/front/1/0/101e47ed-4afe-4d15-b6c3-4ab495965fde.jpg?1782683110" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $0.00
              </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.75</span>
              <span class="text-xs text-grey-text">Credit: $0.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-12&quot;:2.0},{&quot;2026-06-13&quot;:2.03},{&quot;2026-06-14&quot;:1.87},{&quot;2026-06-15&quot;:1.97},{&quot;2026-06-16&quot;:1.98},{&quot;2026-06-17&quot;:1.9},{&quot;2026-06-18&quot;:1.91},{&quot;2026-06-19&quot;:1.99},{&quot;2026-06-20&quot;:1.92},{&quot;2026-06-21&quot;:1.86},{&quot;2026-06-22&quot;:1.91},{&quot;2026-06-23&quot;:1.94},{&quot;2026-06-24&quot;:1.99},{&quot;2026-06-25&quot;:1.89},{&quot;2026-06-26&quot;:1.82},{&quot;2026-06-27&quot;:1.85},{&quot;2026-06-28&quot;:1.91},{&quot;2026-06-29&quot;:2.01},{&quot;2026-06-30&quot;:2.1},{&quot;2026-07-01&quot;:2.15},{&quot;2026-07-02&quot;:2.25},{&quot;2026-07-03&quot;:2.29},{&quot;2026-07-04&quot;:1.96},{&quot;2026-07-05&quot;:1.73},{&quot;2026-07-06&quot;:1.67},{&quot;2026-07-07&quot;:1.76},{&quot;2026-07-08&quot;:1.84},{&quot;2026-07-09&quot;:1.82},{&quot;2026-07-10&quot;:2.03},{&quot;2026-07-11&quot;:2.08},{&quot;2026-07-12&quot;:2.21},{&quot;2026-07-13&quot;:1.9},{&quot;2026-07-14&quot;:1.92},{&quot;2026-07-15&quot;:1.92},{&quot;2026-07-16&quot;:1.89},{&quot;2026-07-17&quot;:1.89},{&quot;2026-07-18&quot;:1.86},{&quot;2026-07-19&quot;:1.9},{&quot;2026-07-20&quot;:1.93},{&quot;2026-07-21&quot;:1.93},{&quot;2026-07-23&quot;:1.91},{&quot;2026-07-24&quot;:1.91},{&quot;2026-07-25&quot;:1.96},{&quot;2026-07-26&quot;:2.07},{&quot;2026-07-27&quot;:2.1},{&quot;2026-07-28&quot;:2.13},{&quot;2026-07-29&quot;:2.25},{&quot;2026-07-30&quot;:2.27},{&quot;2026-07-31&quot;:2.55},{&quot;2026-08-01&quot;:2.57},{&quot;2026-08-02&quot;:2.61},{&quot;2026-08-03&quot;:2.58},{&quot;2026-08-04&quot;:2.53},{&quot;2026-08-05&quot;:2.5},{&quot;2026-08-07&quot;:2.31},{&quot;2026-08-08&quot;:2.24},{&quot;2026-08-09&quot;:2.38},{&quot;2026-08-10&quot;:2.43},{&quot;2026-08-11&quot;:2.47},{&quot;2026-08-12&quot;:2.6},{&quot;2026-08-13&quot;:2.58},{&quot;2026-08-14&quot;:2.71},{&quot;2026-08-15&quot;:2.75},{&quot;2026-08-16&quot;:2.73},{&quot;2026-08-17&quot;:2.69},{&quot;2026-08-18&quot;:2.59},{&quot;2026-08-19&quot;:2.53},{&quot;2026-08-20&quot;:2.53},{&quot;2026-08-21&quot;:2.41},{&quot;2026-08-22&quot;:2.42},{&quot;2026-08-23&quot;:2.4},{&quot;2026-08-24&quot;:2.49},{&quot;2026-08-25&quot;:2.56},{&quot;2026-08-26&quot;:2.63},{&quot;2026-08-27&quot;:2.72},{&quot;2026-08-28&quot;:2.64},{&quot;2026-08-29&quot;:2.64},{&quot;2026-08-30&quot;:2.72},{&quot;2026-08-31&quot;:2.54},{&quot;2026-09-01&quot;:2.42},{&quot;2026-09-02&quot;:2.24},{&quot;2026-09-03&quot;:2.23},{&quot;2026-09-04&quot;:2.13},{&quot;2026-09-05&quot;:1.99},{&quot;2026-09-06&quot;:1.98},{&quot;2026-09-07&quot;:1.93},{&quot;2026-09-08&quot;:1.85},{&quot;2026-09-09&quot;:1.78},{&quot;2026-09-10&quot;:1.88},{&quot;2026-09-11&quot;:1.83}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $1.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="Veyran, Voice of Duality" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/c/1cb06c70-7ff2-4c88-9931-1bfe8a3226d9.jpg?1782683124" />

        <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">
            Veyran, Voice of Duality
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Veyran, Voice of Duality" src="https://cards.scryfall.io/large/front/1/c/1cb06c70-7ff2-4c88-9931-1bfe8a3226d9.jpg?1782683124" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $0.00
              </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-08&quot;:2.03},{&quot;2026-06-10&quot;:2.01},{&quot;2026-06-11&quot;:2.01},{&quot;2026-06-12&quot;:1.99},{&quot;2026-06-13&quot;:1.96},{&quot;2026-06-14&quot;:2.03},{&quot;2026-06-15&quot;:2.01},{&quot;2026-06-16&quot;:1.83},{&quot;2026-06-17&quot;:1.82},{&quot;2026-06-18&quot;:1.81},{&quot;2026-06-19&quot;:1.91},{&quot;2026-06-20&quot;:1.9},{&quot;2026-06-21&quot;:1.92},{&quot;2026-06-22&quot;:1.8},{&quot;2026-06-24&quot;:1.77},{&quot;2026-06-25&quot;:1.75},{&quot;2026-06-26&quot;:1.68},{&quot;2026-06-27&quot;:1.62},{&quot;2026-06-28&quot;:1.57},{&quot;2026-06-29&quot;:1.53},{&quot;2026-06-30&quot;:1.57},{&quot;2026-07-01&quot;:1.58},{&quot;2026-07-02&quot;:1.59},{&quot;2026-07-03&quot;:1.83},{&quot;2026-07-04&quot;:1.77},{&quot;2026-07-05&quot;:1.7},{&quot;2026-07-06&quot;:1.69},{&quot;2026-07-07&quot;:1.42},{&quot;2026-07-08&quot;:1.46},{&quot;2026-07-09&quot;:1.47},{&quot;2026-07-10&quot;:1.51},{&quot;2026-07-11&quot;:1.47},{&quot;2026-07-12&quot;:1.44},{&quot;2026-07-13&quot;:1.4},{&quot;2026-07-14&quot;:1.41},{&quot;2026-07-15&quot;:1.44},{&quot;2026-07-16&quot;:1.37},{&quot;2026-07-17&quot;:1.39},{&quot;2026-07-18&quot;:1.37},{&quot;2026-07-19&quot;:1.35},{&quot;2026-07-20&quot;:1.34},{&quot;2026-07-21&quot;:1.36},{&quot;2026-07-23&quot;:1.33},{&quot;2026-07-25&quot;:1.31},{&quot;2026-07-26&quot;:1.31},{&quot;2026-07-27&quot;:1.3},{&quot;2026-07-29&quot;:1.62},{&quot;2026-07-30&quot;:1.61},{&quot;2026-07-31&quot;:1.36},{&quot;2026-08-01&quot;:1.36},{&quot;2026-08-02&quot;:1.36},{&quot;2026-08-03&quot;:1.49},{&quot;2026-08-04&quot;:1.52},{&quot;2026-08-05&quot;:1.48},{&quot;2026-08-07&quot;:1.59},{&quot;2026-08-08&quot;:1.56},{&quot;2026-08-09&quot;:1.47},{&quot;2026-08-10&quot;:1.42},{&quot;2026-08-11&quot;:1.45},{&quot;2026-08-12&quot;:1.53},{&quot;2026-08-13&quot;:1.51},{&quot;2026-08-14&quot;:1.55},{&quot;2026-08-15&quot;:1.6},{&quot;2026-08-16&quot;:1.64},{&quot;2026-08-17&quot;:1.59},{&quot;2026-08-18&quot;:1.51},{&quot;2026-08-19&quot;:1.46},{&quot;2026-08-20&quot;:1.46},{&quot;2026-08-21&quot;:1.44},{&quot;2026-08-22&quot;:1.41},{&quot;2026-08-23&quot;:1.39},{&quot;2026-08-24&quot;:1.4},{&quot;2026-08-25&quot;:1.4},{&quot;2026-08-26&quot;:1.35},{&quot;2026-08-27&quot;:1.28},{&quot;2026-08-28&quot;:1.26},{&quot;2026-08-29&quot;:1.26},{&quot;2026-08-30&quot;:1.27},{&quot;2026-08-31&quot;:1.33},{&quot;2026-09-01&quot;:1.33},{&quot;2026-09-02&quot;:1.44},{&quot;2026-09-03&quot;:1.41},{&quot;2026-09-04&quot;:1.42},{&quot;2026-09-05&quot;:1.36},{&quot;2026-09-06&quot;:1.49},{&quot;2026-09-07&quot;:1.51},{&quot;2026-09-08&quot;:1.4},{&quot;2026-09-09&quot;:1.4},{&quot;2026-09-10&quot;:1.37},{&quot;2026-09-11&quot;:1.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="108979"
  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-soc 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">
              ↓
              5%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $1.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="Arcane Denial" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/9/4931aa7c-b77b-4002-bfb1-b75a1bac1deb.jpg?1782683244" />

        <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/9/4931aa7c-b77b-4002-bfb1-b75a1bac1deb.jpg?1782683244" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.47},{&quot;2026-06-14&quot;:1.46},{&quot;2026-06-15&quot;:1.43},{&quot;2026-06-16&quot;:1.44},{&quot;2026-06-17&quot;:1.41},{&quot;2026-06-18&quot;:1.41},{&quot;2026-06-19&quot;:1.43},{&quot;2026-06-20&quot;:1.44},{&quot;2026-06-21&quot;:1.51},{&quot;2026-06-22&quot;:1.5},{&quot;2026-06-23&quot;:1.52},{&quot;2026-06-24&quot;:1.53},{&quot;2026-06-25&quot;:1.48},{&quot;2026-06-26&quot;:1.5},{&quot;2026-06-27&quot;:1.55},{&quot;2026-06-28&quot;:1.6},{&quot;2026-06-29&quot;:1.6},{&quot;2026-06-30&quot;:1.54},{&quot;2026-07-01&quot;:1.54},{&quot;2026-07-02&quot;:1.61},{&quot;2026-07-03&quot;:1.59},{&quot;2026-07-04&quot;:1.59},{&quot;2026-07-05&quot;:1.57},{&quot;2026-07-06&quot;:1.55},{&quot;2026-07-07&quot;:1.52},{&quot;2026-07-08&quot;:1.5},{&quot;2026-07-09&quot;:1.57},{&quot;2026-07-10&quot;:1.54},{&quot;2026-07-11&quot;:1.51},{&quot;2026-07-12&quot;:1.54},{&quot;2026-07-13&quot;:1.6},{&quot;2026-07-14&quot;:1.7},{&quot;2026-07-15&quot;:1.73},{&quot;2026-07-16&quot;:1.65},{&quot;2026-07-17&quot;:1.66},{&quot;2026-07-18&quot;:1.64},{&quot;2026-07-19&quot;:1.69},{&quot;2026-07-20&quot;:1.69},{&quot;2026-07-21&quot;:1.61},{&quot;2026-07-22&quot;:1.6},{&quot;2026-07-23&quot;:1.56},{&quot;2026-07-24&quot;:1.66},{&quot;2026-07-25&quot;:1.74},{&quot;2026-07-26&quot;:1.74},{&quot;2026-07-27&quot;:1.73},{&quot;2026-07-28&quot;:1.78},{&quot;2026-07-29&quot;:1.82},{&quot;2026-07-30&quot;:1.85},{&quot;2026-07-31&quot;:1.98},{&quot;2026-08-01&quot;:1.98},{&quot;2026-08-02&quot;:2.07},{&quot;2026-08-03&quot;:2.07},{&quot;2026-08-04&quot;:2.04},{&quot;2026-08-05&quot;:2.05},{&quot;2026-08-07&quot;:2.05},{&quot;2026-08-08&quot;:1.98},{&quot;2026-08-09&quot;:1.9},{&quot;2026-08-10&quot;:1.84},{&quot;2026-08-11&quot;:1.88},{&quot;2026-08-12&quot;:2.19},{&quot;2026-08-13&quot;:2.63},{&quot;2026-08-14&quot;:2.61},{&quot;2026-08-15&quot;:2.6},{&quot;2026-08-16&quot;:2.6},{&quot;2026-08-17&quot;:2.55},{&quot;2026-08-18&quot;:2.43},{&quot;2026-08-19&quot;:2.43},{&quot;2026-08-20&quot;:2.49},{&quot;2026-08-21&quot;:2.45},{&quot;2026-08-22&quot;:2.41},{&quot;2026-08-23&quot;:2.13},{&quot;2026-08-24&quot;:1.91},{&quot;2026-08-25&quot;:1.85},{&quot;2026-08-26&quot;:1.76},{&quot;2026-08-27&quot;:1.75},{&quot;2026-08-28&quot;:1.88},{&quot;2026-08-29&quot;:1.88},{&quot;2026-08-30&quot;:1.83},{&quot;2026-08-31&quot;:1.87},{&quot;2026-09-01&quot;:1.93},{&quot;2026-09-02&quot;:1.92},{&quot;2026-09-03&quot;:1.86},{&quot;2026-09-04&quot;:1.81},{&quot;2026-09-05&quot;:1.83},{&quot;2026-09-06&quot;:1.8},{&quot;2026-09-07&quot;:1.81},{&quot;2026-09-08&quot;:1.77},{&quot;2026-09-09&quot;:1.71},{&quot;2026-09-10&quot;:1.7},{&quot;2026-09-11&quot;:1.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="109029"
  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-soc ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Blasphemous Act" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/7/175eb155-7262-4c2e-85c3-e0cc9be855e5.jpg?1782683205" />

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Blasphemous Act" src="https://cards.scryfall.io/large/front/1/7/175eb155-7262-4c2e-85c3-e0cc9be855e5.jpg?1782683205" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $0.00
              </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-10&quot;:0.83},{&quot;2026-06-11&quot;:0.82},{&quot;2026-06-12&quot;:0.79},{&quot;2026-06-13&quot;:0.73},{&quot;2026-06-14&quot;:0.68},{&quot;2026-06-15&quot;:0.63},{&quot;2026-06-16&quot;:0.66},{&quot;2026-06-17&quot;:0.68},{&quot;2026-06-18&quot;:0.67},{&quot;2026-06-19&quot;:0.68},{&quot;2026-06-20&quot;:0.73},{&quot;2026-06-21&quot;:0.8},{&quot;2026-06-22&quot;:0.8},{&quot;2026-06-23&quot;:0.78},{&quot;2026-06-24&quot;:0.73},{&quot;2026-06-25&quot;:0.7},{&quot;2026-06-26&quot;:0.73},{&quot;2026-06-27&quot;:0.75},{&quot;2026-06-28&quot;:0.76},{&quot;2026-06-29&quot;:0.8},{&quot;2026-06-30&quot;:0.8},{&quot;2026-07-01&quot;:0.75},{&quot;2026-07-02&quot;:0.81},{&quot;2026-07-03&quot;:0.8},{&quot;2026-07-04&quot;:0.78},{&quot;2026-07-05&quot;:0.78},{&quot;2026-07-06&quot;:0.76},{&quot;2026-07-07&quot;:0.79},{&quot;2026-07-08&quot;:0.79},{&quot;2026-07-09&quot;:0.75},{&quot;2026-07-10&quot;:0.73},{&quot;2026-07-11&quot;:0.73},{&quot;2026-07-12&quot;:0.75},{&quot;2026-07-13&quot;:0.76},{&quot;2026-07-14&quot;:0.74},{&quot;2026-07-15&quot;:0.75},{&quot;2026-07-16&quot;:0.75},{&quot;2026-07-17&quot;:0.77},{&quot;2026-07-18&quot;:0.78},{&quot;2026-07-19&quot;:0.76},{&quot;2026-07-20&quot;:0.75},{&quot;2026-07-21&quot;:0.74},{&quot;2026-07-23&quot;:0.74},{&quot;2026-07-25&quot;:0.73},{&quot;2026-07-26&quot;:0.74},{&quot;2026-07-27&quot;:0.74},{&quot;2026-07-29&quot;:0.81},{&quot;2026-07-30&quot;:0.85},{&quot;2026-07-31&quot;:0.83},{&quot;2026-08-01&quot;:0.83},{&quot;2026-08-02&quot;:0.84},{&quot;2026-08-03&quot;:0.84},{&quot;2026-08-04&quot;:0.82},{&quot;2026-08-05&quot;:0.82},{&quot;2026-08-07&quot;:0.82},{&quot;2026-08-08&quot;:0.8},{&quot;2026-08-09&quot;:0.82},{&quot;2026-08-10&quot;:0.82},{&quot;2026-08-11&quot;:0.82},{&quot;2026-08-12&quot;:0.83},{&quot;2026-08-13&quot;:0.86},{&quot;2026-08-14&quot;:0.87},{&quot;2026-08-15&quot;:0.88},{&quot;2026-08-16&quot;:0.89},{&quot;2026-08-17&quot;:0.89},{&quot;2026-08-18&quot;:0.89},{&quot;2026-08-19&quot;:0.86},{&quot;2026-08-20&quot;:0.86},{&quot;2026-08-21&quot;:0.86},{&quot;2026-08-22&quot;:0.85},{&quot;2026-08-23&quot;:0.86},{&quot;2026-08-24&quot;:0.87},{&quot;2026-08-25&quot;:0.87},{&quot;2026-08-26&quot;:0.89},{&quot;2026-08-27&quot;:0.88},{&quot;2026-08-28&quot;:0.77},{&quot;2026-08-29&quot;:0.77},{&quot;2026-08-30&quot;:0.76},{&quot;2026-08-31&quot;:0.81},{&quot;2026-09-01&quot;:0.81},{&quot;2026-09-02&quot;:0.79},{&quot;2026-09-03&quot;:0.8},{&quot;2026-09-04&quot;:0.78},{&quot;2026-09-05&quot;:0.78},{&quot;2026-09-06&quot;:0.86},{&quot;2026-09-07&quot;:0.88},{&quot;2026-09-08&quot;:0.92},{&quot;2026-09-09&quot;:0.88},{&quot;2026-09-10&quot;:1.56},{&quot;2026-09-11&quot;:1.58}]}"
        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="109046"
  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-soc 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">
            Storm-Kiln Artist
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $1.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="Storm-Kiln Artist" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/a/da7ae8e0-cb6b-4386-8a30-9527d1af9be5.jpg?1782683192" />

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Storm-Kiln Artist" src="https://cards.scryfall.io/large/front/d/a/da7ae8e0-cb6b-4386-8a30-9527d1af9be5.jpg?1782683192" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-08&quot;:1.45},{&quot;2026-06-10&quot;:1.79},{&quot;2026-06-11&quot;:1.49},{&quot;2026-06-12&quot;:1.48},{&quot;2026-06-13&quot;:1.42},{&quot;2026-06-14&quot;:1.47},{&quot;2026-06-15&quot;:1.39},{&quot;2026-06-16&quot;:1.34},{&quot;2026-06-17&quot;:1.31},{&quot;2026-06-18&quot;:1.35},{&quot;2026-06-19&quot;:1.33},{&quot;2026-06-20&quot;:1.32},{&quot;2026-06-21&quot;:1.31},{&quot;2026-06-22&quot;:1.32},{&quot;2026-06-24&quot;:1.42},{&quot;2026-06-25&quot;:1.48},{&quot;2026-06-26&quot;:1.49},{&quot;2026-06-27&quot;:1.42},{&quot;2026-06-28&quot;:1.73},{&quot;2026-06-29&quot;:1.73},{&quot;2026-06-30&quot;:1.77},{&quot;2026-07-01&quot;:1.83},{&quot;2026-07-02&quot;:1.58},{&quot;2026-07-03&quot;:1.6},{&quot;2026-07-04&quot;:1.52},{&quot;2026-07-05&quot;:1.52},{&quot;2026-07-06&quot;:1.5},{&quot;2026-07-07&quot;:1.49},{&quot;2026-07-08&quot;:1.49},{&quot;2026-07-09&quot;:1.47},{&quot;2026-07-10&quot;:1.31},{&quot;2026-07-11&quot;:1.32},{&quot;2026-07-12&quot;:1.36},{&quot;2026-07-13&quot;:1.37},{&quot;2026-07-14&quot;:1.39},{&quot;2026-07-15&quot;:1.38},{&quot;2026-07-16&quot;:1.34},{&quot;2026-07-17&quot;:1.29},{&quot;2026-07-18&quot;:1.26},{&quot;2026-07-19&quot;:1.3},{&quot;2026-07-20&quot;:1.3},{&quot;2026-07-21&quot;:1.32},{&quot;2026-07-23&quot;:1.43},{&quot;2026-07-25&quot;:1.39},{&quot;2026-07-26&quot;:1.39},{&quot;2026-07-27&quot;:1.39},{&quot;2026-07-29&quot;:1.4},{&quot;2026-07-30&quot;:1.45},{&quot;2026-07-31&quot;:1.55},{&quot;2026-08-01&quot;:1.57},{&quot;2026-08-02&quot;:1.55},{&quot;2026-08-03&quot;:1.52},{&quot;2026-08-04&quot;:1.5},{&quot;2026-08-05&quot;:1.53},{&quot;2026-08-07&quot;:1.54},{&quot;2026-08-08&quot;:1.58},{&quot;2026-08-09&quot;:1.62},{&quot;2026-08-10&quot;:1.62},{&quot;2026-08-11&quot;:1.6},{&quot;2026-08-12&quot;:1.56},{&quot;2026-08-13&quot;:1.51},{&quot;2026-08-14&quot;:1.51},{&quot;2026-08-15&quot;:1.53},{&quot;2026-08-16&quot;:1.52},{&quot;2026-08-17&quot;:1.48},{&quot;2026-08-18&quot;:1.46},{&quot;2026-08-19&quot;:1.52},{&quot;2026-08-20&quot;:1.52},{&quot;2026-08-21&quot;:1.65},{&quot;2026-08-22&quot;:1.52},{&quot;2026-08-23&quot;:1.56},{&quot;2026-08-24&quot;:1.68},{&quot;2026-08-25&quot;:1.68},{&quot;2026-08-26&quot;:1.61},{&quot;2026-08-27&quot;:1.52},{&quot;2026-08-28&quot;:1.47},{&quot;2026-08-29&quot;:1.47},{&quot;2026-08-30&quot;:1.48},{&quot;2026-08-31&quot;:1.46},{&quot;2026-09-01&quot;:1.46},{&quot;2026-09-02&quot;:1.4},{&quot;2026-09-03&quot;:1.42},{&quot;2026-09-04&quot;:1.36},{&quot;2026-09-05&quot;:1.37},{&quot;2026-09-06&quot;:1.33},{&quot;2026-09-07&quot;:1.4},{&quot;2026-09-08&quot;:1.34},{&quot;2026-09-09&quot;:1.28},{&quot;2026-09-10&quot;:1.36},{&quot;2026-09-11&quot;:1.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="109178"
  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-soc 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 Sanctuary
        </span>


      </div>

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

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

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

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

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

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

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

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Land — Island</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="Mystic Sanctuary" src="https://cards.scryfall.io/large/front/4/c/4cd86997-d7b9-4b5b-9488-11f5c679e4d3.jpg?1782683084" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $0.00
              </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;:0.96},{&quot;2026-06-10&quot;:1.0},{&quot;2026-06-11&quot;:0.92},{&quot;2026-06-12&quot;:0.89},{&quot;2026-06-13&quot;:0.89},{&quot;2026-06-14&quot;:0.87},{&quot;2026-06-15&quot;:0.84},{&quot;2026-06-16&quot;:0.92},{&quot;2026-06-17&quot;:0.83},{&quot;2026-06-18&quot;:0.82},{&quot;2026-06-19&quot;:0.85},{&quot;2026-06-20&quot;:0.84},{&quot;2026-06-21&quot;:0.82},{&quot;2026-06-22&quot;:0.91},{&quot;2026-06-24&quot;:0.85},{&quot;2026-06-25&quot;:0.85},{&quot;2026-06-26&quot;:0.86},{&quot;2026-06-27&quot;:0.86},{&quot;2026-06-28&quot;:0.87},{&quot;2026-06-29&quot;:0.88},{&quot;2026-06-30&quot;:0.9},{&quot;2026-07-01&quot;:0.9},{&quot;2026-07-02&quot;:0.9},{&quot;2026-07-03&quot;:0.97},{&quot;2026-07-04&quot;:1.0},{&quot;2026-07-05&quot;:1.03},{&quot;2026-07-06&quot;:0.97},{&quot;2026-07-07&quot;:1.04},{&quot;2026-07-08&quot;:1.09},{&quot;2026-07-09&quot;:1.11},{&quot;2026-07-10&quot;:1.09},{&quot;2026-07-11&quot;:1.1},{&quot;2026-07-12&quot;:1.07},{&quot;2026-07-13&quot;:1.06},{&quot;2026-07-14&quot;:1.09},{&quot;2026-07-15&quot;:1.06},{&quot;2026-07-16&quot;:1.05},{&quot;2026-07-17&quot;:1.0},{&quot;2026-07-18&quot;:0.95},{&quot;2026-07-19&quot;:1.03},{&quot;2026-07-20&quot;:1.03},{&quot;2026-07-21&quot;:1.04},{&quot;2026-07-23&quot;:1.0},{&quot;2026-07-25&quot;:1.02},{&quot;2026-07-26&quot;:1.02},{&quot;2026-07-27&quot;:1.03},{&quot;2026-07-29&quot;:1.01},{&quot;2026-07-30&quot;:1.02},{&quot;2026-07-31&quot;:1.07},{&quot;2026-08-01&quot;:1.09},{&quot;2026-08-02&quot;:1.09},{&quot;2026-08-03&quot;:1.11},{&quot;2026-08-04&quot;:1.09},{&quot;2026-08-05&quot;:1.11},{&quot;2026-08-07&quot;:1.14},{&quot;2026-08-08&quot;:1.14},{&quot;2026-08-09&quot;:1.12},{&quot;2026-08-10&quot;:1.11},{&quot;2026-08-11&quot;:1.13},{&quot;2026-08-12&quot;:1.17},{&quot;2026-08-13&quot;:1.19},{&quot;2026-08-14&quot;:1.24},{&quot;2026-08-15&quot;:1.24},{&quot;2026-08-16&quot;:1.26},{&quot;2026-08-17&quot;:1.24},{&quot;2026-08-18&quot;:1.24},{&quot;2026-08-19&quot;:1.24},{&quot;2026-08-20&quot;:1.24},{&quot;2026-08-21&quot;:1.19},{&quot;2026-08-22&quot;:1.17},{&quot;2026-08-23&quot;:1.14},{&quot;2026-08-24&quot;:1.1},{&quot;2026-08-25&quot;:1.1},{&quot;2026-08-26&quot;:1.17},{&quot;2026-08-27&quot;:1.17},{&quot;2026-08-28&quot;:1.18},{&quot;2026-08-29&quot;:1.18},{&quot;2026-08-30&quot;:1.1},{&quot;2026-08-31&quot;:1.09},{&quot;2026-09-01&quot;:1.09},{&quot;2026-09-02&quot;:1.11},{&quot;2026-09-03&quot;:1.09},{&quot;2026-09-04&quot;:1.08},{&quot;2026-09-05&quot;:1.07},{&quot;2026-09-06&quot;:1.08},{&quot;2026-09-07&quot;:1.08},{&quot;2026-09-08&quot;:1.12},{&quot;2026-09-09&quot;:1.13},{&quot;2026-09-10&quot;:1.44},{&quot;2026-09-11&quot;:1.46}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Sol Ring" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/7/870ec754-a76c-40ea-9b81-81b3dca1f62c.jpg?1782683284" />

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Sol Ring" src="https://cards.scryfall.io/large/front/8/7/870ec754-a76c-40ea-9b81-81b3dca1f62c.jpg?1782683284" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.18},{&quot;2026-06-14&quot;:1.0},{&quot;2026-06-15&quot;:1.14},{&quot;2026-06-16&quot;:1.17},{&quot;2026-06-17&quot;:1.25},{&quot;2026-06-18&quot;:1.38},{&quot;2026-06-19&quot;:1.36},{&quot;2026-06-20&quot;:1.38},{&quot;2026-06-21&quot;:1.25},{&quot;2026-06-22&quot;:1.17},{&quot;2026-06-23&quot;:1.23},{&quot;2026-06-24&quot;:1.28},{&quot;2026-06-25&quot;:1.32},{&quot;2026-06-26&quot;:1.35},{&quot;2026-06-27&quot;:1.2},{&quot;2026-06-28&quot;:1.42},{&quot;2026-06-29&quot;:1.49},{&quot;2026-06-30&quot;:1.28},{&quot;2026-07-01&quot;:1.51},{&quot;2026-07-02&quot;:1.42},{&quot;2026-07-03&quot;:1.44},{&quot;2026-07-04&quot;:1.53},{&quot;2026-07-05&quot;:1.48},{&quot;2026-07-06&quot;:1.49},{&quot;2026-07-07&quot;:1.49},{&quot;2026-07-08&quot;:1.39},{&quot;2026-07-09&quot;:1.29},{&quot;2026-07-10&quot;:1.43},{&quot;2026-07-11&quot;:1.45},{&quot;2026-07-12&quot;:1.46},{&quot;2026-07-13&quot;:1.42},{&quot;2026-07-14&quot;:1.41},{&quot;2026-07-15&quot;:1.42},{&quot;2026-07-16&quot;:1.07},{&quot;2026-07-17&quot;:1.16},{&quot;2026-07-18&quot;:1.2},{&quot;2026-07-19&quot;:1.22},{&quot;2026-07-20&quot;:1.33},{&quot;2026-07-21&quot;:1.4},{&quot;2026-07-22&quot;:1.71},{&quot;2026-07-23&quot;:1.71},{&quot;2026-07-24&quot;:1.62},{&quot;2026-07-25&quot;:1.71},{&quot;2026-07-26&quot;:1.72},{&quot;2026-07-27&quot;:1.64},{&quot;2026-07-28&quot;:1.59},{&quot;2026-07-29&quot;:1.78},{&quot;2026-07-30&quot;:1.76},{&quot;2026-07-31&quot;:1.72},{&quot;2026-08-01&quot;:1.71},{&quot;2026-08-02&quot;:1.86},{&quot;2026-08-03&quot;:1.73},{&quot;2026-08-04&quot;:1.62},{&quot;2026-08-05&quot;:1.6},{&quot;2026-08-07&quot;:1.5},{&quot;2026-08-08&quot;:1.51},{&quot;2026-08-09&quot;:1.74},{&quot;2026-08-10&quot;:1.54},{&quot;2026-08-11&quot;:1.56},{&quot;2026-08-12&quot;:1.55},{&quot;2026-08-13&quot;:1.66},{&quot;2026-08-14&quot;:1.72},{&quot;2026-08-15&quot;:1.86},{&quot;2026-08-16&quot;:1.87},{&quot;2026-08-17&quot;:2.21},{&quot;2026-08-18&quot;:1.84},{&quot;2026-08-19&quot;:1.73},{&quot;2026-08-20&quot;:1.7},{&quot;2026-08-21&quot;:1.73},{&quot;2026-08-22&quot;:1.44},{&quot;2026-08-23&quot;:1.39},{&quot;2026-08-24&quot;:1.37},{&quot;2026-08-25&quot;:1.58},{&quot;2026-08-26&quot;:1.58},{&quot;2026-08-27&quot;:1.52},{&quot;2026-08-28&quot;:1.52},{&quot;2026-08-29&quot;:1.52},{&quot;2026-08-30&quot;:1.71},{&quot;2026-08-31&quot;:1.58},{&quot;2026-09-01&quot;:1.58},{&quot;2026-09-02&quot;:1.7},{&quot;2026-09-03&quot;:1.82},{&quot;2026-09-04&quot;:1.97},{&quot;2026-09-05&quot;:1.98},{&quot;2026-09-06&quot;:1.88},{&quot;2026-09-07&quot;:1.72},{&quot;2026-09-08&quot;:2.8},{&quot;2026-09-09&quot;:1.43},{&quot;2026-09-10&quot;:1.35},{&quot;2026-09-11&quot;:1.39}]}"
        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="108893"
  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-soc 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">
            Scorched Geyser
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $1.14
          </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="Scorched Geyser" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/5/a/5abdcad7-3b7a-43f6-a0ad-3aa99ee55c91.jpg?1782683343" />

        <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">
            Scorched Geyser
        </h3>

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Scorched Geyser" src="https://cards.scryfall.io/large/front/5/a/5abdcad7-3b7a-43f6-a0ad-3aa99ee55c91.jpg?1782683343" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-12&quot;:2.6},{&quot;2026-06-13&quot;:2.56},{&quot;2026-06-14&quot;:2.58},{&quot;2026-06-15&quot;:2.48},{&quot;2026-06-16&quot;:2.58},{&quot;2026-06-17&quot;:2.49},{&quot;2026-06-18&quot;:2.41},{&quot;2026-06-19&quot;:2.55},{&quot;2026-06-20&quot;:2.51},{&quot;2026-06-21&quot;:2.45},{&quot;2026-06-22&quot;:2.42},{&quot;2026-06-23&quot;:2.36},{&quot;2026-06-24&quot;:2.34},{&quot;2026-06-25&quot;:2.4},{&quot;2026-06-26&quot;:2.54},{&quot;2026-06-27&quot;:2.5},{&quot;2026-06-28&quot;:2.5},{&quot;2026-06-29&quot;:2.53},{&quot;2026-06-30&quot;:2.43},{&quot;2026-07-01&quot;:2.46},{&quot;2026-07-02&quot;:2.46},{&quot;2026-07-03&quot;:2.54},{&quot;2026-07-04&quot;:2.52},{&quot;2026-07-05&quot;:2.53},{&quot;2026-07-06&quot;:2.54},{&quot;2026-07-07&quot;:2.46},{&quot;2026-07-08&quot;:2.36},{&quot;2026-07-09&quot;:2.2},{&quot;2026-07-10&quot;:2.16},{&quot;2026-07-11&quot;:1.89},{&quot;2026-07-12&quot;:1.85},{&quot;2026-07-13&quot;:1.88},{&quot;2026-07-14&quot;:1.86},{&quot;2026-07-15&quot;:1.87},{&quot;2026-07-16&quot;:1.86},{&quot;2026-07-17&quot;:1.91},{&quot;2026-07-18&quot;:1.92},{&quot;2026-07-19&quot;:1.88},{&quot;2026-07-20&quot;:1.88},{&quot;2026-07-21&quot;:1.92},{&quot;2026-07-23&quot;:1.86},{&quot;2026-07-24&quot;:1.84},{&quot;2026-07-25&quot;:1.77},{&quot;2026-07-26&quot;:1.72},{&quot;2026-07-27&quot;:1.65},{&quot;2026-07-28&quot;:1.65},{&quot;2026-07-29&quot;:1.57},{&quot;2026-07-30&quot;:1.55},{&quot;2026-07-31&quot;:1.46},{&quot;2026-08-01&quot;:1.46},{&quot;2026-08-02&quot;:1.43},{&quot;2026-08-03&quot;:1.44},{&quot;2026-08-04&quot;:1.44},{&quot;2026-08-05&quot;:1.43},{&quot;2026-08-07&quot;:1.35},{&quot;2026-08-08&quot;:1.4},{&quot;2026-08-09&quot;:1.41},{&quot;2026-08-10&quot;:1.41},{&quot;2026-08-11&quot;:1.41},{&quot;2026-08-12&quot;:1.4},{&quot;2026-08-13&quot;:1.37},{&quot;2026-08-14&quot;:1.38},{&quot;2026-08-15&quot;:1.39},{&quot;2026-08-16&quot;:1.4},{&quot;2026-08-17&quot;:1.4},{&quot;2026-08-18&quot;:1.5},{&quot;2026-08-19&quot;:1.53},{&quot;2026-08-20&quot;:1.53},{&quot;2026-08-21&quot;:1.55},{&quot;2026-08-22&quot;:1.52},{&quot;2026-08-23&quot;:1.51},{&quot;2026-08-24&quot;:1.33},{&quot;2026-08-25&quot;:1.26},{&quot;2026-08-26&quot;:1.25},{&quot;2026-08-27&quot;:1.27},{&quot;2026-08-28&quot;:1.24},{&quot;2026-08-29&quot;:1.24},{&quot;2026-08-30&quot;:1.27},{&quot;2026-08-31&quot;:1.29},{&quot;2026-09-01&quot;:1.25},{&quot;2026-09-02&quot;:1.21},{&quot;2026-09-03&quot;:1.21},{&quot;2026-09-04&quot;:1.19},{&quot;2026-09-05&quot;:1.19},{&quot;2026-09-06&quot;:1.12},{&quot;2026-09-07&quot;:1.12},{&quot;2026-09-08&quot;:1.13},{&quot;2026-09-09&quot;:1.13},{&quot;2026-09-10&quot;:1.17},{&quot;2026-09-11&quot;:1.14}]}"
        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="108923"
  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-soc 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">
            Fabled Passage
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $1.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="Fabled Passage" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/1/8119d329-6ee5-433c-bd81-8579bb061162.jpg?1782683281" />

        <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">
            Fabled Passage
        </h3>

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Fabled Passage" src="https://cards.scryfall.io/large/front/8/1/8119d329-6ee5-433c-bd81-8579bb061162.jpg?1782683281" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $0.00
              </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;:1.09},{&quot;2026-06-14&quot;:1.17},{&quot;2026-06-15&quot;:1.13},{&quot;2026-06-16&quot;:1.03},{&quot;2026-06-17&quot;:0.93},{&quot;2026-06-18&quot;:0.94},{&quot;2026-06-19&quot;:0.89},{&quot;2026-06-20&quot;:0.94},{&quot;2026-06-21&quot;:1.06},{&quot;2026-06-22&quot;:1.06},{&quot;2026-06-23&quot;:1.07},{&quot;2026-06-24&quot;:1.13},{&quot;2026-06-25&quot;:1.13},{&quot;2026-06-26&quot;:1.02},{&quot;2026-06-27&quot;:1.09},{&quot;2026-06-28&quot;:1.02},{&quot;2026-06-29&quot;:0.94},{&quot;2026-06-30&quot;:0.98},{&quot;2026-07-01&quot;:1.0},{&quot;2026-07-02&quot;:1.01},{&quot;2026-07-03&quot;:1.04},{&quot;2026-07-04&quot;:1.08},{&quot;2026-07-05&quot;:1.04},{&quot;2026-07-06&quot;:1.01},{&quot;2026-07-07&quot;:1.02},{&quot;2026-07-08&quot;:1.04},{&quot;2026-07-09&quot;:0.98},{&quot;2026-07-10&quot;:1.26},{&quot;2026-07-11&quot;:1.01},{&quot;2026-07-12&quot;:1.01},{&quot;2026-07-13&quot;:1.06},{&quot;2026-07-14&quot;:1.02},{&quot;2026-07-15&quot;:1.01},{&quot;2026-07-16&quot;:0.97},{&quot;2026-07-17&quot;:0.93},{&quot;2026-07-18&quot;:0.95},{&quot;2026-07-19&quot;:0.96},{&quot;2026-07-20&quot;:1.03},{&quot;2026-07-21&quot;:1.14},{&quot;2026-07-22&quot;:1.08},{&quot;2026-07-23&quot;:1.04},{&quot;2026-07-24&quot;:1.05},{&quot;2026-07-25&quot;:1.15},{&quot;2026-07-26&quot;:1.09},{&quot;2026-07-27&quot;:1.13},{&quot;2026-07-28&quot;:1.1},{&quot;2026-07-29&quot;:1.09},{&quot;2026-07-30&quot;:1.05},{&quot;2026-07-31&quot;:1.04},{&quot;2026-08-01&quot;:1.09},{&quot;2026-08-02&quot;:1.08},{&quot;2026-08-03&quot;:1.16},{&quot;2026-08-04&quot;:1.18},{&quot;2026-08-05&quot;:0.99},{&quot;2026-08-07&quot;:0.9},{&quot;2026-08-08&quot;:0.96},{&quot;2026-08-09&quot;:1.06},{&quot;2026-08-10&quot;:1.02},{&quot;2026-08-11&quot;:1.03},{&quot;2026-08-12&quot;:0.96},{&quot;2026-08-13&quot;:0.91},{&quot;2026-08-14&quot;:0.99},{&quot;2026-08-15&quot;:0.98},{&quot;2026-08-16&quot;:0.95},{&quot;2026-08-17&quot;:0.91},{&quot;2026-08-18&quot;:0.99},{&quot;2026-08-19&quot;:1.06},{&quot;2026-08-20&quot;:1.15},{&quot;2026-08-21&quot;:1.02},{&quot;2026-08-22&quot;:1.1},{&quot;2026-08-23&quot;:1.01},{&quot;2026-08-24&quot;:1.0},{&quot;2026-08-25&quot;:1.0},{&quot;2026-08-26&quot;:1.11},{&quot;2026-08-27&quot;:1.17},{&quot;2026-08-28&quot;:1.08},{&quot;2026-08-29&quot;:1.08},{&quot;2026-08-30&quot;:1.06},{&quot;2026-08-31&quot;:1.02},{&quot;2026-09-01&quot;:0.99},{&quot;2026-09-02&quot;:0.99},{&quot;2026-09-03&quot;:0.99},{&quot;2026-09-04&quot;:1.05},{&quot;2026-09-05&quot;:1.3},{&quot;2026-09-06&quot;:1.06},{&quot;2026-09-07&quot;:1.05},{&quot;2026-09-08&quot;:1.03},{&quot;2026-09-09&quot;:1.09},{&quot;2026-09-10&quot;:1.1},{&quot;2026-09-11&quot;:1.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="109138"
  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-soc 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">
              ↑
              5%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.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="Fellwar Stone" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/3/8/385b9f5e-81dd-49f6-a644-59d53245e3dc.jpg?1782683119" />

        <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/3/8/385b9f5e-81dd-49f6-a644-59d53245e3dc.jpg?1782683119" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $0.00
              </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-10&quot;:0.74},{&quot;2026-06-11&quot;:0.66},{&quot;2026-06-12&quot;:0.68},{&quot;2026-06-13&quot;:0.7},{&quot;2026-06-14&quot;:0.9},{&quot;2026-06-15&quot;:0.62},{&quot;2026-06-16&quot;:0.68},{&quot;2026-06-17&quot;:0.61},{&quot;2026-06-18&quot;:0.61},{&quot;2026-06-19&quot;:0.6},{&quot;2026-06-20&quot;:0.93},{&quot;2026-06-21&quot;:0.63},{&quot;2026-06-22&quot;:0.62},{&quot;2026-06-23&quot;:0.63},{&quot;2026-06-24&quot;:0.65},{&quot;2026-06-25&quot;:0.75},{&quot;2026-06-26&quot;:0.69},{&quot;2026-06-27&quot;:0.67},{&quot;2026-06-28&quot;:0.72},{&quot;2026-06-29&quot;:0.71},{&quot;2026-06-30&quot;:0.66},{&quot;2026-07-01&quot;:0.75},{&quot;2026-07-02&quot;:0.71},{&quot;2026-07-03&quot;:0.74},{&quot;2026-07-04&quot;:0.78},{&quot;2026-07-05&quot;:0.78},{&quot;2026-07-06&quot;:0.81},{&quot;2026-07-07&quot;:0.76},{&quot;2026-07-08&quot;:0.69},{&quot;2026-07-09&quot;:0.69},{&quot;2026-07-10&quot;:0.7},{&quot;2026-07-11&quot;:0.69},{&quot;2026-07-12&quot;:0.73},{&quot;2026-07-13&quot;:0.71},{&quot;2026-07-14&quot;:0.73},{&quot;2026-07-15&quot;:0.74},{&quot;2026-07-16&quot;:0.73},{&quot;2026-07-17&quot;:0.71},{&quot;2026-07-18&quot;:0.72},{&quot;2026-07-19&quot;:0.69},{&quot;2026-07-20&quot;:0.75},{&quot;2026-07-21&quot;:0.75},{&quot;2026-07-23&quot;:1.16},{&quot;2026-07-25&quot;:1.02},{&quot;2026-07-26&quot;:0.98},{&quot;2026-07-27&quot;:0.97},{&quot;2026-07-29&quot;:0.96},{&quot;2026-07-30&quot;:0.96},{&quot;2026-07-31&quot;:0.84},{&quot;2026-08-01&quot;:0.84},{&quot;2026-08-02&quot;:1.23},{&quot;2026-08-03&quot;:1.24},{&quot;2026-08-04&quot;:1.24},{&quot;2026-08-05&quot;:0.94},{&quot;2026-08-07&quot;:0.89},{&quot;2026-08-08&quot;:0.82},{&quot;2026-08-09&quot;:0.9},{&quot;2026-08-10&quot;:0.83},{&quot;2026-08-11&quot;:0.89},{&quot;2026-08-12&quot;:0.88},{&quot;2026-08-13&quot;:0.86},{&quot;2026-08-14&quot;:0.9},{&quot;2026-08-15&quot;:0.93},{&quot;2026-08-16&quot;:1.01},{&quot;2026-08-17&quot;:1.06},{&quot;2026-08-18&quot;:1.03},{&quot;2026-08-19&quot;:1.39},{&quot;2026-08-20&quot;:1.39},{&quot;2026-08-21&quot;:1.2},{&quot;2026-08-22&quot;:1.04},{&quot;2026-08-23&quot;:0.99},{&quot;2026-08-24&quot;:0.99},{&quot;2026-08-25&quot;:0.99},{&quot;2026-08-26&quot;:1.01},{&quot;2026-08-27&quot;:0.95},{&quot;2026-08-28&quot;:0.95},{&quot;2026-08-29&quot;:0.95},{&quot;2026-08-30&quot;:0.98},{&quot;2026-08-31&quot;:0.9},{&quot;2026-09-01&quot;:0.9},{&quot;2026-09-02&quot;:1.26},{&quot;2026-09-03&quot;:0.95},{&quot;2026-09-04&quot;:0.89},{&quot;2026-09-05&quot;:0.92},{&quot;2026-09-06&quot;:0.95},{&quot;2026-09-07&quot;:0.94},{&quot;2026-09-08&quot;:0.96},{&quot;2026-09-09&quot;:0.89},{&quot;2026-09-10&quot;:0.98},{&quot;2026-09-11&quot;:0.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="109049"
  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-soc 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">
            Twinflame
        </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">
              ↓
              5%
            </span>

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

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

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

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

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Twinflame" src="https://cards.scryfall.io/large/front/8/5/85c863ef-b266-410d-87b3-ced791f99966.jpg?1782683190" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="109159"
  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-soc 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">
            Exotic Orchard
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Exotic Orchard
        </h3>

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Exotic Orchard" src="https://cards.scryfall.io/large/front/7/d/7db2934a-43a0-46ad-8380-ff6703f8fd6d.jpg?1782683101" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="109164"
  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-soc 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">
            Frostboil Snarl
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.58
          </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="Frostboil Snarl" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/3/d/3dbddf20-1b92-482e-bbd9-1597531913a8.jpg?1782683094" />

        <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">
            Frostboil Snarl
        </h3>

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Frostboil Snarl" src="https://cards.scryfall.io/large/front/3/d/3dbddf20-1b92-482e-bbd9-1597531913a8.jpg?1782683094" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.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="Archmage Emeritus" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/d/dd547601-d650-4a02-a3a4-890bcef03a7c.jpg?1782683243" />

        <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">
            Archmage Emeritus
        </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 Wizard</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i><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="Archmage Emeritus" src="https://cards.scryfall.io/large/front/d/d/dd547601-d650-4a02-a3a4-890bcef03a7c.jpg?1782683243" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


      </div>

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

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

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

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

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

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

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

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

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            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="Arcane Signet" src="https://cards.scryfall.io/large/front/7/8/7811dd72-61b9-4067-ac20-cea153e625d2.jpg?1782683284" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="108996"
  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-soc 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">
            Thunderclap Drake
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Thunderclap Drake
        </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 — Drake</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="Thunderclap Drake" src="https://cards.scryfall.io/large/front/3/1/313fed71-cfbe-4c83-9437-ac14b2cb159b.jpg?1782683231" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.48
          </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="Brazen Borrower // Petty Theft" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/5/25d309d6-9e56-441e-bd29-5c903d5221bf.jpg?1782683243" />

        <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">
            Brazen Borrower 
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-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"
    >
        <div data-controller="card-flip" class="flex flex-col items-center">
          <div
            data-action="click->card-flip#flip"
            class="flip-container cursor-pointer w-full max-w-xs mx-auto"
          >
            <div data-card-flip-target="card" class="flip-card">
              <div class="flip-card-front">
                <img class="w-full h-auto rounded-2xl" alt="Brazen Borrower // Petty Theft" src="https://cards.scryfall.io/large/front/2/5/25d309d6-9e56-441e-bd29-5c903d5221bf.jpg?1782683243" />
              </div>

              <div class="flip-card-back">
                <img class="w-full h-auto rounded-2xl" alt="Brazen Borrower // Petty Theft" src="https://cards.scryfall.io/large/front/2/5/25d309d6-9e56-441e-bd29-5c903d5221bf.jpg?1782683243" />
              </div>
            </div>
          </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Cursed Mirror" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/7/077392b3-6b06-46c8-8737-51e85f690448.jpg?1782683203" />

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Cursed Mirror" src="https://cards.scryfall.io/large/front/0/7/077392b3-6b06-46c8-8737-51e85f690448.jpg?1782683203" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Big Score" src="https://cards.scryfall.io/large/front/8/b/8b2699d2-2057-4fbf-8e52-736fcfe2759d.jpg?1782683205" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Muddle, the Ever-Changing" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/1/916d3e31-3243-47b3-b7d2-ce9a6dd47aba.jpg?1782683382" />

        <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">
            Muddle, the Ever-Changing
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Legendary Creature — Elemental Otter Shapeshifter</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-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="Muddle, the Ever-Changing" src="https://cards.scryfall.io/large/front/9/1/916d3e31-3243-47b3-b7d2-ce9a6dd47aba.jpg?1782683382" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:1.11},{&quot;2026-06-14&quot;:1.12},{&quot;2026-06-15&quot;:1.01},{&quot;2026-06-16&quot;:0.96},{&quot;2026-06-17&quot;:0.94},{&quot;2026-06-18&quot;:0.95},{&quot;2026-06-19&quot;:0.93},{&quot;2026-06-20&quot;:0.94},{&quot;2026-06-21&quot;:0.93},{&quot;2026-06-22&quot;:0.96},{&quot;2026-06-23&quot;:0.94},{&quot;2026-06-24&quot;:0.95},{&quot;2026-06-25&quot;:0.91},{&quot;2026-06-26&quot;:0.92},{&quot;2026-06-27&quot;:0.9},{&quot;2026-06-28&quot;:0.87},{&quot;2026-06-29&quot;:0.79},{&quot;2026-06-30&quot;:0.77},{&quot;2026-07-01&quot;:0.79},{&quot;2026-07-02&quot;:0.79},{&quot;2026-07-03&quot;:0.77},{&quot;2026-07-04&quot;:0.76},{&quot;2026-07-05&quot;:0.75},{&quot;2026-07-06&quot;:0.76},{&quot;2026-07-07&quot;:0.79},{&quot;2026-07-08&quot;:0.77},{&quot;2026-07-09&quot;:0.76},{&quot;2026-07-10&quot;:0.75},{&quot;2026-07-11&quot;:0.72},{&quot;2026-07-12&quot;:0.68},{&quot;2026-07-13&quot;:0.67},{&quot;2026-07-14&quot;:0.68},{&quot;2026-07-15&quot;:0.68},{&quot;2026-07-16&quot;:0.68},{&quot;2026-07-17&quot;:0.66},{&quot;2026-07-18&quot;:0.68},{&quot;2026-07-19&quot;:0.67},{&quot;2026-07-20&quot;:0.63},{&quot;2026-07-21&quot;:0.56},{&quot;2026-07-22&quot;:0.58},{&quot;2026-07-23&quot;:0.58},{&quot;2026-07-24&quot;:0.56},{&quot;2026-07-25&quot;:0.49},{&quot;2026-07-26&quot;:0.5},{&quot;2026-07-27&quot;:0.49},{&quot;2026-07-28&quot;:0.52},{&quot;2026-07-29&quot;:0.52},{&quot;2026-07-30&quot;:0.53},{&quot;2026-07-31&quot;:0.45},{&quot;2026-08-01&quot;:0.47},{&quot;2026-08-02&quot;:0.51},{&quot;2026-08-03&quot;:0.61},{&quot;2026-08-04&quot;:0.56},{&quot;2026-08-05&quot;:0.55},{&quot;2026-08-07&quot;:0.49},{&quot;2026-08-08&quot;:0.52},{&quot;2026-08-09&quot;:0.51},{&quot;2026-08-10&quot;:0.53},{&quot;2026-08-11&quot;:0.57},{&quot;2026-08-12&quot;:0.57},{&quot;2026-08-13&quot;:0.55},{&quot;2026-08-14&quot;:0.81},{&quot;2026-08-15&quot;:0.81},{&quot;2026-08-16&quot;:0.83},{&quot;2026-08-17&quot;:1.16},{&quot;2026-08-18&quot;:1.19},{&quot;2026-08-19&quot;:0.9},{&quot;2026-08-20&quot;:0.87},{&quot;2026-08-21&quot;:0.52},{&quot;2026-08-22&quot;:0.52},{&quot;2026-08-23&quot;:0.49},{&quot;2026-08-24&quot;:0.49},{&quot;2026-08-25&quot;:0.5},{&quot;2026-08-26&quot;:0.52},{&quot;2026-08-27&quot;:0.5},{&quot;2026-08-28&quot;:0.5},{&quot;2026-08-29&quot;:0.5},{&quot;2026-08-30&quot;:0.49},{&quot;2026-08-31&quot;:0.47},{&quot;2026-09-01&quot;:0.46},{&quot;2026-09-02&quot;:0.43},{&quot;2026-09-03&quot;:0.44},{&quot;2026-09-04&quot;:0.48},{&quot;2026-09-05&quot;:0.49},{&quot;2026-09-06&quot;:0.46},{&quot;2026-09-07&quot;:0.44},{&quot;2026-09-08&quot;:0.46},{&quot;2026-09-09&quot;:0.45},{&quot;2026-09-10&quot;:0.42},{&quot;2026-09-11&quot;:0.4}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:2.24},{&quot;2026-06-14&quot;:2.18},{&quot;2026-06-15&quot;:2.26},{&quot;2026-06-16&quot;:2.22},{&quot;2026-06-17&quot;:2.27},{&quot;2026-06-18&quot;:2.2},{&quot;2026-06-19&quot;:2.21},{&quot;2026-06-20&quot;:2.21},{&quot;2026-06-21&quot;:2.19},{&quot;2026-06-22&quot;:2.17},{&quot;2026-06-23&quot;:2.17},{&quot;2026-06-24&quot;:2.27},{&quot;2026-06-25&quot;:2.14},{&quot;2026-06-26&quot;:2.11},{&quot;2026-06-27&quot;:2.08},{&quot;2026-06-28&quot;:2.02},{&quot;2026-06-29&quot;:2.02},{&quot;2026-06-30&quot;:2.02},{&quot;2026-07-01&quot;:1.9},{&quot;2026-07-02&quot;:1.84},{&quot;2026-07-03&quot;:1.79},{&quot;2026-07-04&quot;:1.77},{&quot;2026-07-05&quot;:1.74},{&quot;2026-07-06&quot;:1.73},{&quot;2026-07-07&quot;:1.73},{&quot;2026-07-08&quot;:1.72},{&quot;2026-07-09&quot;:1.72},{&quot;2026-07-10&quot;:1.72},{&quot;2026-07-11&quot;:1.69},{&quot;2026-07-12&quot;:1.57},{&quot;2026-07-13&quot;:1.57},{&quot;2026-07-14&quot;:1.57},{&quot;2026-07-15&quot;:1.57},{&quot;2026-07-16&quot;:1.54},{&quot;2026-07-17&quot;:1.5},{&quot;2026-07-18&quot;:1.44},{&quot;2026-07-19&quot;:1.46},{&quot;2026-07-20&quot;:1.4},{&quot;2026-07-21&quot;:1.14},{&quot;2026-07-22&quot;:1.1},{&quot;2026-07-23&quot;:1.06},{&quot;2026-07-24&quot;:1.09},{&quot;2026-07-25&quot;:1.11},{&quot;2026-07-26&quot;:1.11},{&quot;2026-07-27&quot;:1.1},{&quot;2026-07-28&quot;:1.05},{&quot;2026-07-29&quot;:1.05},{&quot;2026-07-30&quot;:1.05},{&quot;2026-07-31&quot;:1.08},{&quot;2026-08-01&quot;:1.08},{&quot;2026-08-02&quot;:1.01},{&quot;2026-08-03&quot;:1.08},{&quot;2026-08-04&quot;:1.06},{&quot;2026-08-05&quot;:1.07},{&quot;2026-08-07&quot;:1.08},{&quot;2026-08-08&quot;:1.05},{&quot;2026-08-09&quot;:1.05},{&quot;2026-08-10&quot;:1.05},{&quot;2026-08-11&quot;:1.06},{&quot;2026-08-12&quot;:1.06},{&quot;2026-08-13&quot;:1.11},{&quot;2026-08-14&quot;:1.11},{&quot;2026-08-15&quot;:1.05},{&quot;2026-08-16&quot;:1.03},{&quot;2026-08-17&quot;:0.98},{&quot;2026-08-18&quot;:0.92},{&quot;2026-08-19&quot;:0.81},{&quot;2026-08-20&quot;:0.83},{&quot;2026-08-21&quot;:0.85},{&quot;2026-08-22&quot;:0.85},{&quot;2026-08-23&quot;:0.81},{&quot;2026-08-24&quot;:0.76},{&quot;2026-08-25&quot;:0.77},{&quot;2026-08-26&quot;:0.72},{&quot;2026-08-27&quot;:0.72},{&quot;2026-08-28&quot;:0.71},{&quot;2026-08-29&quot;:0.71},{&quot;2026-08-30&quot;:0.74},{&quot;2026-08-31&quot;:0.79},{&quot;2026-09-01&quot;:0.79},{&quot;2026-09-02&quot;:0.79},{&quot;2026-09-03&quot;:0.79},{&quot;2026-09-04&quot;:0.79},{&quot;2026-09-05&quot;:0.81},{&quot;2026-09-06&quot;:0.81},{&quot;2026-09-07&quot;:0.81},{&quot;2026-09-08&quot;:0.81},{&quot;2026-09-09&quot;:0.82},{&quot;2026-09-10&quot;:0.82},{&quot;2026-09-11&quot;:0.82}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="109198"
  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-soc 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">
            Sulfur Falls
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.39
          </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="Sulfur Falls" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/5/6/56a6df05-f4e4-40d9-a701-6d5adb7ce9fd.jpg?1782683074" />

        <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">
            Sulfur Falls
        </h3>

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Sulfur Falls" src="https://cards.scryfall.io/large/front/5/6/56a6df05-f4e4-40d9-a701-6d5adb7ce9fd.jpg?1782683074" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Chaos Warp" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/6/5/65ae241c-8955-4c97-8be6-7356fbee2195.jpg?1782683205" />

        <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">
            Chaos Warp
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Chaos Warp" src="https://cards.scryfall.io/large/front/6/5/65ae241c-8955-4c97-8be6-7356fbee2195.jpg?1782683205" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

        <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">
            Galazeth Prismari
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Legendary Creature — Elder Dragon</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-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="Galazeth Prismari" src="https://cards.scryfall.io/large/front/a/b/abdd3b41-6bdd-4b35-998c-0358ba72ca12.jpg?1782683147" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.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="Rootha, Mastering the Moment" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/5/a5b3dbb2-c090-4118-9e47-56c16202572c.jpg?1783903866" />

        <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">
            Rootha, Mastering the Moment
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Legendary Creature — Orc Sorcerer</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-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="Rootha, Mastering the Moment" src="https://cards.scryfall.io/large/front/a/5/a5b3dbb2-c090-4118-9e47-56c16202572c.jpg?1783903866" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="108915"
  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-soc 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">
            Determined Iteration
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Determined Iteration
        </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-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="Determined Iteration" src="https://cards.scryfall.io/large/front/d/9/d95490fe-44f2-4f83-b587-b0df402d38ed.jpg?1782683288" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="109043"
  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-soc 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">
            Rionya, Fire Dancer
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Rionya, Fire Dancer" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/8/086e68b5-0f89-46d0-9a04-7f8658a9ab53.jpg?1782683195" />

        <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">
            Rionya, Fire Dancer
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-3'></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="Rionya, Fire Dancer" src="https://cards.scryfall.io/large/front/0/8/086e68b5-0f89-46d0-9a04-7f8658a9ab53.jpg?1782683195" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="108986"
  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-soc 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">
            Deep Analysis
        </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">
              ↑
              10%
            </span>

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

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

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

        <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">
            Deep Analysis
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Deep Analysis" src="https://cards.scryfall.io/large/front/c/3/c3acd528-c46c-4fa5-9038-8f821ba49014.jpg?1782683239" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="109025"
  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-soc 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">
            Abrade
        </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">
              ↑
              18%
            </span>

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Abrade" src="https://cards.scryfall.io/large/front/1/a/1add1757-c1f8-448a-b279-c6940fb7ad5f.jpg?1782683209" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="109044"
  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-soc 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">
            Rousing Refrain
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Rousing Refrain
        </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-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="Rousing Refrain" src="https://cards.scryfall.io/large/front/2/b/2b3ec666-0e57-4c42-872c-51799e0b5c68.jpg?1782683193" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:0.28},{&quot;2026-06-11&quot;:0.28},{&quot;2026-06-12&quot;:0.3},{&quot;2026-06-13&quot;:0.32},{&quot;2026-06-14&quot;:0.32},{&quot;2026-06-15&quot;:0.32},{&quot;2026-06-16&quot;:0.31},{&quot;2026-06-17&quot;:0.29},{&quot;2026-06-18&quot;:0.28},{&quot;2026-06-19&quot;:0.3},{&quot;2026-06-20&quot;:0.32},{&quot;2026-06-21&quot;:0.29},{&quot;2026-06-22&quot;:0.28},{&quot;2026-06-23&quot;:0.27},{&quot;2026-06-24&quot;:0.24},{&quot;2026-06-25&quot;:0.24},{&quot;2026-06-26&quot;:0.25},{&quot;2026-06-27&quot;:0.29},{&quot;2026-06-28&quot;:0.3},{&quot;2026-06-29&quot;:0.29},{&quot;2026-06-30&quot;:0.36},{&quot;2026-07-01&quot;:0.32},{&quot;2026-07-02&quot;:0.32},{&quot;2026-07-03&quot;:0.32},{&quot;2026-07-04&quot;:0.31},{&quot;2026-07-05&quot;:0.31},{&quot;2026-07-06&quot;:0.32},{&quot;2026-07-07&quot;:0.32},{&quot;2026-07-08&quot;:0.28},{&quot;2026-07-09&quot;:0.28},{&quot;2026-07-10&quot;:0.28},{&quot;2026-07-11&quot;:0.3},{&quot;2026-07-12&quot;:0.37},{&quot;2026-07-13&quot;:0.37},{&quot;2026-07-14&quot;:0.37},{&quot;2026-07-15&quot;:0.38},{&quot;2026-07-16&quot;:0.39},{&quot;2026-07-17&quot;:0.37},{&quot;2026-07-18&quot;:0.3},{&quot;2026-07-19&quot;:0.32},{&quot;2026-07-20&quot;:0.3},{&quot;2026-07-21&quot;:0.28},{&quot;2026-07-23&quot;:0.31},{&quot;2026-07-25&quot;:0.32},{&quot;2026-07-26&quot;:0.34},{&quot;2026-07-27&quot;:0.35},{&quot;2026-07-29&quot;:0.32},{&quot;2026-07-30&quot;:0.31},{&quot;2026-07-31&quot;:0.33},{&quot;2026-08-01&quot;:0.33},{&quot;2026-08-02&quot;:0.28},{&quot;2026-08-03&quot;:0.28},{&quot;2026-08-04&quot;:0.28},{&quot;2026-08-05&quot;:0.28},{&quot;2026-08-07&quot;:0.29},{&quot;2026-08-08&quot;:0.32},{&quot;2026-08-09&quot;:0.34},{&quot;2026-08-10&quot;:0.34},{&quot;2026-08-11&quot;:0.34},{&quot;2026-08-12&quot;:0.32},{&quot;2026-08-13&quot;:0.32},{&quot;2026-08-14&quot;:0.3},{&quot;2026-08-15&quot;:0.3},{&quot;2026-08-16&quot;:0.31},{&quot;2026-08-17&quot;:0.32},{&quot;2026-08-18&quot;:0.32},{&quot;2026-08-19&quot;:0.34},{&quot;2026-08-20&quot;:0.34},{&quot;2026-08-21&quot;:0.33},{&quot;2026-08-22&quot;:0.32},{&quot;2026-08-23&quot;:0.31},{&quot;2026-08-24&quot;:0.34},{&quot;2026-08-25&quot;:0.34},{&quot;2026-08-26&quot;:0.35},{&quot;2026-08-27&quot;:0.39},{&quot;2026-08-28&quot;:0.4},{&quot;2026-08-29&quot;:0.4},{&quot;2026-08-30&quot;:0.39},{&quot;2026-08-31&quot;:0.38},{&quot;2026-09-01&quot;:0.38},{&quot;2026-09-02&quot;:0.27},{&quot;2026-09-03&quot;:0.31},{&quot;2026-09-04&quot;:0.32},{&quot;2026-09-05&quot;:0.33},{&quot;2026-09-06&quot;:0.31},{&quot;2026-09-07&quot;:0.29},{&quot;2026-09-08&quot;:0.29},{&quot;2026-09-09&quot;:0.31},{&quot;2026-09-10&quot;:0.3},{&quot;2026-09-11&quot;:0.32}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="109154"
  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-soc 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">
            Cascade Bluffs
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Land
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">

          <span class="text-sm font-medium text-nine-white">
            $0.32
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Cascade Bluffs" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/2/22acccd2-4e9d-46de-a060-863b08152e50.jpg?1782683104" />

        <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">
            Cascade Bluffs
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            rare
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Land</span>
        </div>

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Cascade Bluffs" src="https://cards.scryfall.io/large/front/2/2/22acccd2-4e9d-46de-a060-863b08152e50.jpg?1782683104" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.32
              </span>

            </div>
          </div>

          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Foil</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $0.00
              </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.19</span>
              <span class="text-xs text-grey-text">Credit: $0.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;:0.34},{&quot;2026-06-14&quot;:0.35},{&quot;2026-06-15&quot;:0.36},{&quot;2026-06-16&quot;:0.36},{&quot;2026-06-17&quot;:0.36},{&quot;2026-06-18&quot;:0.35},{&quot;2026-06-19&quot;:0.35},{&quot;2026-06-20&quot;:0.34},{&quot;2026-06-21&quot;:0.33},{&quot;2026-06-22&quot;:0.34},{&quot;2026-06-23&quot;:0.33},{&quot;2026-06-24&quot;:0.29},{&quot;2026-06-25&quot;:0.32},{&quot;2026-06-26&quot;:0.37},{&quot;2026-06-27&quot;:0.39},{&quot;2026-06-28&quot;:0.39},{&quot;2026-06-29&quot;:0.39},{&quot;2026-06-30&quot;:0.4},{&quot;2026-07-01&quot;:0.36},{&quot;2026-07-02&quot;:0.34},{&quot;2026-07-03&quot;:0.35},{&quot;2026-07-04&quot;:0.34},{&quot;2026-07-05&quot;:0.34},{&quot;2026-07-06&quot;:0.34},{&quot;2026-07-07&quot;:0.33},{&quot;2026-07-08&quot;:0.29},{&quot;2026-07-09&quot;:0.34},{&quot;2026-07-10&quot;:0.39},{&quot;2026-07-11&quot;:0.36},{&quot;2026-07-12&quot;:0.35},{&quot;2026-07-13&quot;:0.32},{&quot;2026-07-14&quot;:0.3},{&quot;2026-07-15&quot;:0.3},{&quot;2026-07-16&quot;:0.32},{&quot;2026-07-17&quot;:0.34},{&quot;2026-07-18&quot;:0.35},{&quot;2026-07-19&quot;:0.34},{&quot;2026-07-20&quot;:0.35},{&quot;2026-07-21&quot;:0.35},{&quot;2026-07-22&quot;:0.37},{&quot;2026-07-23&quot;:0.37},{&quot;2026-07-24&quot;:0.38},{&quot;2026-07-25&quot;:0.49},{&quot;2026-07-26&quot;:0.49},{&quot;2026-07-27&quot;:0.5},{&quot;2026-07-28&quot;:0.5},{&quot;2026-07-29&quot;:0.38},{&quot;2026-07-30&quot;:0.38},{&quot;2026-07-31&quot;:0.36},{&quot;2026-08-01&quot;:0.36},{&quot;2026-08-02&quot;:0.36},{&quot;2026-08-03&quot;:0.4},{&quot;2026-08-04&quot;:0.4},{&quot;2026-08-05&quot;:0.4},{&quot;2026-08-07&quot;:0.44},{&quot;2026-08-08&quot;:0.44},{&quot;2026-08-09&quot;:0.42},{&quot;2026-08-10&quot;:0.42},{&quot;2026-08-11&quot;:0.45},{&quot;2026-08-12&quot;:0.45},{&quot;2026-08-13&quot;:0.45},{&quot;2026-08-14&quot;:0.45},{&quot;2026-08-15&quot;:0.45},{&quot;2026-08-16&quot;:0.41},{&quot;2026-08-17&quot;:0.41},{&quot;2026-08-18&quot;:0.4},{&quot;2026-08-19&quot;:0.4},{&quot;2026-08-20&quot;:0.4},{&quot;2026-08-21&quot;:0.41},{&quot;2026-08-22&quot;:0.4},{&quot;2026-08-23&quot;:0.43},{&quot;2026-08-24&quot;:0.42},{&quot;2026-08-25&quot;:0.41},{&quot;2026-08-26&quot;:0.44},{&quot;2026-08-27&quot;:0.44},{&quot;2026-08-28&quot;:0.46},{&quot;2026-08-29&quot;:0.46},{&quot;2026-08-30&quot;:0.42},{&quot;2026-08-31&quot;:0.36},{&quot;2026-09-01&quot;:0.32},{&quot;2026-09-02&quot;:0.32},{&quot;2026-09-03&quot;:0.35},{&quot;2026-09-04&quot;:0.36},{&quot;2026-09-05&quot;:0.32},{&quot;2026-09-06&quot;:0.33},{&quot;2026-09-07&quot;:0.33},{&quot;2026-09-08&quot;:0.31},{&quot;2026-09-09&quot;:0.33},{&quot;2026-09-10&quot;:0.35},{&quot;2026-09-11&quot;:0.32}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="109262"
  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-sos 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">
            Prismari Charm
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Instant
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-100 text-badge-text">
              ↓
              3%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.32
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Prismari Charm" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/f/8f6c2a5e-fe13-407c-aadd-c9caf2884ff1.jpg?1782682853" />

        <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">
            Prismari Charm
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Instant</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-u'></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="Prismari Charm" src="https://cards.scryfall.io/large/front/8/f/8f6c2a5e-fe13-407c-aadd-c9caf2884ff1.jpg?1782682853" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.32
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  3%
                </span>
            </div>
          </div>

          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Foil</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $0.48
              </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.03</span>
              <span class="text-xs text-grey-text">Credit: $0.04</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-11&quot;:0.46},{&quot;2026-06-12&quot;:0.48},{&quot;2026-06-13&quot;:0.48},{&quot;2026-06-14&quot;:0.42},{&quot;2026-06-15&quot;:0.39},{&quot;2026-06-16&quot;:0.41},{&quot;2026-06-17&quot;:0.42},{&quot;2026-06-18&quot;:0.42},{&quot;2026-06-19&quot;:0.4},{&quot;2026-06-20&quot;:0.39},{&quot;2026-06-21&quot;:0.39},{&quot;2026-06-22&quot;:0.4},{&quot;2026-06-23&quot;:0.45},{&quot;2026-06-24&quot;:0.46},{&quot;2026-06-25&quot;:0.47},{&quot;2026-06-26&quot;:0.47},{&quot;2026-06-27&quot;:0.44},{&quot;2026-06-28&quot;:0.44},{&quot;2026-06-29&quot;:0.45},{&quot;2026-06-30&quot;:0.48},{&quot;2026-07-01&quot;:0.46},{&quot;2026-07-02&quot;:0.41},{&quot;2026-07-03&quot;:0.39},{&quot;2026-07-04&quot;:0.38},{&quot;2026-07-05&quot;:0.35},{&quot;2026-07-06&quot;:0.32},{&quot;2026-07-07&quot;:0.32},{&quot;2026-07-08&quot;:0.33},{&quot;2026-07-09&quot;:0.32},{&quot;2026-07-10&quot;:0.32},{&quot;2026-07-11&quot;:0.32},{&quot;2026-07-12&quot;:0.35},{&quot;2026-07-13&quot;:0.35},{&quot;2026-07-14&quot;:0.34},{&quot;2026-07-15&quot;:0.33},{&quot;2026-07-16&quot;:0.34},{&quot;2026-07-17&quot;:0.34},{&quot;2026-07-18&quot;:0.33},{&quot;2026-07-19&quot;:0.33},{&quot;2026-07-20&quot;:0.32},{&quot;2026-07-21&quot;:0.32},{&quot;2026-07-23&quot;:0.34},{&quot;2026-07-25&quot;:0.34},{&quot;2026-07-26&quot;:0.34},{&quot;2026-07-27&quot;:0.33},{&quot;2026-07-28&quot;:0.33},{&quot;2026-07-29&quot;:0.34},{&quot;2026-07-30&quot;:0.34},{&quot;2026-07-31&quot;:0.34},{&quot;2026-08-01&quot;:0.35},{&quot;2026-08-02&quot;:0.35},{&quot;2026-08-03&quot;:0.36},{&quot;2026-08-04&quot;:0.38},{&quot;2026-08-05&quot;:0.36},{&quot;2026-08-07&quot;:0.36},{&quot;2026-08-08&quot;:0.36},{&quot;2026-08-09&quot;:0.37},{&quot;2026-08-10&quot;:0.37},{&quot;2026-08-11&quot;:0.37},{&quot;2026-08-12&quot;:0.37},{&quot;2026-08-13&quot;:0.36},{&quot;2026-08-14&quot;:0.38},{&quot;2026-08-15&quot;:0.38},{&quot;2026-08-16&quot;:0.38},{&quot;2026-08-17&quot;:0.37},{&quot;2026-08-18&quot;:0.36},{&quot;2026-08-19&quot;:0.36},{&quot;2026-08-20&quot;:0.36},{&quot;2026-08-21&quot;:0.36},{&quot;2026-08-22&quot;:0.36},{&quot;2026-08-23&quot;:0.35},{&quot;2026-08-24&quot;:0.37},{&quot;2026-08-25&quot;:0.35},{&quot;2026-08-26&quot;:0.36},{&quot;2026-08-27&quot;:0.37},{&quot;2026-08-28&quot;:0.36},{&quot;2026-08-29&quot;:0.36},{&quot;2026-08-30&quot;:0.36},{&quot;2026-08-31&quot;:0.35},{&quot;2026-09-01&quot;:0.35},{&quot;2026-09-02&quot;:0.37},{&quot;2026-09-03&quot;:0.45},{&quot;2026-09-04&quot;:0.47},{&quot;2026-09-05&quot;:0.46},{&quot;2026-09-06&quot;:0.46},{&quot;2026-09-07&quot;:0.46},{&quot;2026-09-08&quot;:0.46},{&quot;2026-09-09&quot;:0.46},{&quot;2026-09-10&quot;:0.48},{&quot;2026-09-11&quot;:0.48}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:0.31},{&quot;2026-06-12&quot;:0.31},{&quot;2026-06-13&quot;:0.3},{&quot;2026-06-14&quot;:0.29},{&quot;2026-06-15&quot;:0.27},{&quot;2026-06-16&quot;:0.35},{&quot;2026-06-17&quot;:0.28},{&quot;2026-06-18&quot;:0.3},{&quot;2026-06-19&quot;:0.29},{&quot;2026-06-20&quot;:0.25},{&quot;2026-06-21&quot;:0.27},{&quot;2026-06-22&quot;:0.31},{&quot;2026-06-23&quot;:0.33},{&quot;2026-06-24&quot;:0.35},{&quot;2026-06-25&quot;:0.29},{&quot;2026-06-26&quot;:0.35},{&quot;2026-06-27&quot;:0.31},{&quot;2026-06-28&quot;:0.27},{&quot;2026-06-29&quot;:0.33},{&quot;2026-06-30&quot;:0.34},{&quot;2026-07-01&quot;:0.3},{&quot;2026-07-02&quot;:0.29},{&quot;2026-07-03&quot;:0.3},{&quot;2026-07-04&quot;:0.33},{&quot;2026-07-05&quot;:0.3},{&quot;2026-07-06&quot;:0.27},{&quot;2026-07-07&quot;:0.33},{&quot;2026-07-08&quot;:0.35},{&quot;2026-07-09&quot;:0.32},{&quot;2026-07-10&quot;:0.35},{&quot;2026-07-11&quot;:0.34},{&quot;2026-07-12&quot;:0.3},{&quot;2026-07-13&quot;:0.3},{&quot;2026-07-14&quot;:0.34},{&quot;2026-07-15&quot;:0.32},{&quot;2026-07-16&quot;:0.3},{&quot;2026-07-17&quot;:0.31},{&quot;2026-07-18&quot;:0.28},{&quot;2026-07-19&quot;:0.27},{&quot;2026-07-20&quot;:0.27},{&quot;2026-07-21&quot;:0.34},{&quot;2026-07-23&quot;:0.4},{&quot;2026-07-25&quot;:0.4},{&quot;2026-07-26&quot;:0.37},{&quot;2026-07-27&quot;:0.36},{&quot;2026-07-28&quot;:0.34},{&quot;2026-07-29&quot;:0.3},{&quot;2026-07-30&quot;:0.29},{&quot;2026-07-31&quot;:0.3},{&quot;2026-08-01&quot;:0.3},{&quot;2026-08-02&quot;:0.35},{&quot;2026-08-03&quot;:0.34},{&quot;2026-08-04&quot;:0.32},{&quot;2026-08-05&quot;:0.32},{&quot;2026-08-07&quot;:0.3},{&quot;2026-08-08&quot;:0.33},{&quot;2026-08-09&quot;:0.37},{&quot;2026-08-10&quot;:0.4},{&quot;2026-08-11&quot;:0.4},{&quot;2026-08-12&quot;:0.33},{&quot;2026-08-13&quot;:0.31},{&quot;2026-08-14&quot;:0.28},{&quot;2026-08-15&quot;:0.29},{&quot;2026-08-16&quot;:0.27},{&quot;2026-08-17&quot;:0.29},{&quot;2026-08-18&quot;:0.33},{&quot;2026-08-19&quot;:0.33},{&quot;2026-08-20&quot;:0.33},{&quot;2026-08-21&quot;:0.34},{&quot;2026-08-22&quot;:0.3},{&quot;2026-08-23&quot;:0.3},{&quot;2026-08-24&quot;:0.3},{&quot;2026-08-25&quot;:0.29},{&quot;2026-08-26&quot;:0.28},{&quot;2026-08-27&quot;:0.28},{&quot;2026-08-28&quot;:0.32},{&quot;2026-08-29&quot;:0.32},{&quot;2026-08-30&quot;:0.35},{&quot;2026-08-31&quot;:0.29},{&quot;2026-09-01&quot;:0.29},{&quot;2026-09-02&quot;:0.28},{&quot;2026-09-03&quot;:0.3},{&quot;2026-09-04&quot;:0.3},{&quot;2026-09-05&quot;:0.33},{&quot;2026-09-06&quot;:0.3},{&quot;2026-09-07&quot;:0.34},{&quot;2026-09-08&quot;:0.33},{&quot;2026-09-09&quot;:0.34},{&quot;2026-09-10&quot;:0.35},{&quot;2026-09-11&quot;:0.32}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="108983"
  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-soc 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">
            Curiosity Crafter
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Bird Wizard
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-100 text-badge-text">
              ↓
              11%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.31
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Curiosity Crafter" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/3/930d830b-5e6a-422a-806e-fd7275517deb.jpg?1782683242" />

        <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">
            Curiosity Crafter
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            rare
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Creature — Bird Wizard</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
          </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="Curiosity Crafter" src="https://cards.scryfall.io/large/front/9/3/930d830b-5e6a-422a-806e-fd7275517deb.jpg?1782683242" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.31
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  11%
                </span>
            </div>
          </div>

          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Foil</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $0.00
              </span>

            </div>
          </div>
      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.12</span>
              <span class="text-xs text-grey-text">Credit: $0.16</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:0.25},{&quot;2026-06-11&quot;:0.27},{&quot;2026-06-12&quot;:0.35},{&quot;2026-06-13&quot;:0.4},{&quot;2026-06-14&quot;:0.39},{&quot;2026-06-15&quot;:0.32},{&quot;2026-06-16&quot;:0.3},{&quot;2026-06-17&quot;:0.3},{&quot;2026-06-18&quot;:0.31},{&quot;2026-06-19&quot;:0.32},{&quot;2026-06-20&quot;:0.33},{&quot;2026-06-21&quot;:0.32},{&quot;2026-06-22&quot;:0.32},{&quot;2026-06-23&quot;:0.32},{&quot;2026-06-24&quot;:0.31},{&quot;2026-06-25&quot;:0.31},{&quot;2026-06-26&quot;:0.62},{&quot;2026-06-27&quot;:0.65},{&quot;2026-06-28&quot;:0.68},{&quot;2026-06-29&quot;:0.68},{&quot;2026-06-30&quot;:0.39},{&quot;2026-07-01&quot;:0.39},{&quot;2026-07-02&quot;:0.37},{&quot;2026-07-03&quot;:0.36},{&quot;2026-07-04&quot;:0.37},{&quot;2026-07-05&quot;:0.33},{&quot;2026-07-06&quot;:0.33},{&quot;2026-07-07&quot;:0.34},{&quot;2026-07-08&quot;:0.32},{&quot;2026-07-09&quot;:0.33},{&quot;2026-07-10&quot;:0.37},{&quot;2026-07-11&quot;:0.39},{&quot;2026-07-12&quot;:0.37},{&quot;2026-07-13&quot;:0.35},{&quot;2026-07-14&quot;:0.31},{&quot;2026-07-15&quot;:0.31},{&quot;2026-07-16&quot;:0.33},{&quot;2026-07-17&quot;:0.33},{&quot;2026-07-18&quot;:0.34},{&quot;2026-07-19&quot;:0.32},{&quot;2026-07-20&quot;:0.31},{&quot;2026-07-21&quot;:0.37},{&quot;2026-07-23&quot;:0.4},{&quot;2026-07-25&quot;:0.37},{&quot;2026-07-26&quot;:0.37},{&quot;2026-07-27&quot;:0.38},{&quot;2026-07-29&quot;:0.34},{&quot;2026-07-30&quot;:0.35},{&quot;2026-07-31&quot;:0.35},{&quot;2026-08-01&quot;:0.38},{&quot;2026-08-02&quot;:0.37},{&quot;2026-08-03&quot;:0.37},{&quot;2026-08-04&quot;:0.38},{&quot;2026-08-05&quot;:0.37},{&quot;2026-08-07&quot;:0.35},{&quot;2026-08-08&quot;:0.36},{&quot;2026-08-09&quot;:0.37},{&quot;2026-08-10&quot;:0.36},{&quot;2026-08-11&quot;:0.34},{&quot;2026-08-12&quot;:0.34},{&quot;2026-08-13&quot;:0.34},{&quot;2026-08-14&quot;:0.35},{&quot;2026-08-15&quot;:0.67},{&quot;2026-08-16&quot;:0.65},{&quot;2026-08-17&quot;:0.65},{&quot;2026-08-18&quot;:0.33},{&quot;2026-08-19&quot;:0.34},{&quot;2026-08-20&quot;:0.34},{&quot;2026-08-21&quot;:0.34},{&quot;2026-08-22&quot;:0.31},{&quot;2026-08-23&quot;:0.63},{&quot;2026-08-24&quot;:0.64},{&quot;2026-08-25&quot;:0.64},{&quot;2026-08-26&quot;:0.38},{&quot;2026-08-27&quot;:0.41},{&quot;2026-08-28&quot;:0.42},{&quot;2026-08-29&quot;:0.42},{&quot;2026-08-30&quot;:0.38},{&quot;2026-08-31&quot;:0.37},{&quot;2026-09-01&quot;:0.37},{&quot;2026-09-02&quot;:0.34},{&quot;2026-09-03&quot;:0.34},{&quot;2026-09-04&quot;:0.34},{&quot;2026-09-05&quot;:0.35},{&quot;2026-09-06&quot;:0.34},{&quot;2026-09-07&quot;:0.34},{&quot;2026-09-08&quot;:0.34},{&quot;2026-09-09&quot;:0.32},{&quot;2026-09-10&quot;:0.32},{&quot;2026-09-11&quot;:0.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="108987"
  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-soc 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">
            Dig Through Time
        </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">
              ↑
              24%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.31
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Dig Through Time" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/2/020939d6-72f0-4aa0-9ac2-d16cc896cd7f.jpg?1782683239" />

        <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">
            Dig Through Time
        </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-6'></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="Dig Through Time" src="https://cards.scryfall.io/large/front/0/2/020939d6-72f0-4aa0-9ac2-d16cc896cd7f.jpg?1782683239" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.31
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  24%
                </span>
            </div>
          </div>

          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Foil</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $0.00
              </span>

            </div>
          </div>
      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.08</span>
              <span class="text-xs text-grey-text">Credit: $0.10</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-12&quot;:0.23},{&quot;2026-06-13&quot;:0.25},{&quot;2026-06-14&quot;:0.26},{&quot;2026-06-15&quot;:0.25},{&quot;2026-06-16&quot;:0.24},{&quot;2026-06-17&quot;:0.23},{&quot;2026-06-18&quot;:0.21},{&quot;2026-06-19&quot;:0.22},{&quot;2026-06-20&quot;:0.23},{&quot;2026-06-21&quot;:0.23},{&quot;2026-06-22&quot;:0.24},{&quot;2026-06-23&quot;:0.23},{&quot;2026-06-24&quot;:0.23},{&quot;2026-06-25&quot;:0.21},{&quot;2026-06-26&quot;:0.2},{&quot;2026-06-27&quot;:0.24},{&quot;2026-06-28&quot;:0.28},{&quot;2026-06-29&quot;:0.28},{&quot;2026-06-30&quot;:0.27},{&quot;2026-07-01&quot;:0.29},{&quot;2026-07-02&quot;:0.28},{&quot;2026-07-03&quot;:0.25},{&quot;2026-07-04&quot;:0.26},{&quot;2026-07-05&quot;:0.26},{&quot;2026-07-06&quot;:0.23},{&quot;2026-07-07&quot;:0.23},{&quot;2026-07-08&quot;:0.24},{&quot;2026-07-09&quot;:0.22},{&quot;2026-07-10&quot;:0.23},{&quot;2026-07-11&quot;:0.28},{&quot;2026-07-12&quot;:0.3},{&quot;2026-07-13&quot;:0.29},{&quot;2026-07-14&quot;:0.3},{&quot;2026-07-15&quot;:0.27},{&quot;2026-07-16&quot;:0.26},{&quot;2026-07-17&quot;:0.25},{&quot;2026-07-18&quot;:0.23},{&quot;2026-07-19&quot;:0.25},{&quot;2026-07-20&quot;:0.24},{&quot;2026-07-21&quot;:0.24},{&quot;2026-07-23&quot;:0.27},{&quot;2026-07-24&quot;:0.25},{&quot;2026-07-25&quot;:0.28},{&quot;2026-07-26&quot;:0.31},{&quot;2026-07-27&quot;:0.33},{&quot;2026-07-28&quot;:0.32},{&quot;2026-07-29&quot;:0.3},{&quot;2026-07-30&quot;:0.3},{&quot;2026-07-31&quot;:0.28},{&quot;2026-08-01&quot;:0.27},{&quot;2026-08-02&quot;:0.26},{&quot;2026-08-03&quot;:0.26},{&quot;2026-08-04&quot;:0.26},{&quot;2026-08-05&quot;:0.25},{&quot;2026-08-07&quot;:0.26},{&quot;2026-08-08&quot;:0.31},{&quot;2026-08-09&quot;:0.33},{&quot;2026-08-10&quot;:0.29},{&quot;2026-08-11&quot;:0.27},{&quot;2026-08-12&quot;:0.25},{&quot;2026-08-13&quot;:0.26},{&quot;2026-08-14&quot;:0.25},{&quot;2026-08-15&quot;:0.27},{&quot;2026-08-16&quot;:0.28},{&quot;2026-08-17&quot;:0.28},{&quot;2026-08-18&quot;:0.27},{&quot;2026-08-19&quot;:0.29},{&quot;2026-08-20&quot;:0.29},{&quot;2026-08-21&quot;:0.25},{&quot;2026-08-22&quot;:0.27},{&quot;2026-08-23&quot;:0.28},{&quot;2026-08-24&quot;:0.3},{&quot;2026-08-25&quot;:0.29},{&quot;2026-08-26&quot;:0.31},{&quot;2026-08-27&quot;:0.31},{&quot;2026-08-28&quot;:0.31},{&quot;2026-08-29&quot;:0.31},{&quot;2026-08-30&quot;:0.32},{&quot;2026-08-31&quot;:0.31},{&quot;2026-09-01&quot;:0.29},{&quot;2026-09-02&quot;:0.28},{&quot;2026-09-03&quot;:0.28},{&quot;2026-09-04&quot;:0.27},{&quot;2026-09-05&quot;:0.25},{&quot;2026-09-06&quot;:0.23},{&quot;2026-09-07&quot;:0.25},{&quot;2026-09-08&quot;:0.29},{&quot;2026-09-09&quot;:0.3},{&quot;2026-09-10&quot;:0.33},{&quot;2026-09-11&quot;:0.31}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="109039"
  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-soc ss-mythic ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Manaform Hellkite
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Dragon
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-100 text-badge-text">
              ↓
              11%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.31
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Manaform Hellkite" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/a/0a559655-0967-41b9-8248-170f95c05f84.jpg?1782683196" />

        <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">
            Manaform Hellkite
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            mythic
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Creature — Dragon</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-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="Manaform Hellkite" src="https://cards.scryfall.io/large/front/0/a/0a559655-0967-41b9-8248-170f95c05f84.jpg?1782683196" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.31
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  11%
                </span>
            </div>
          </div>

          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Foil</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $0.00
              </span>

            </div>
          </div>
      </div>


      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.24},{&quot;2026-06-14&quot;:0.24},{&quot;2026-06-15&quot;:0.24},{&quot;2026-06-16&quot;:0.26},{&quot;2026-06-17&quot;:0.2},{&quot;2026-06-18&quot;:0.22},{&quot;2026-06-19&quot;:0.21},{&quot;2026-06-20&quot;:0.24},{&quot;2026-06-21&quot;:0.24},{&quot;2026-06-22&quot;:0.28},{&quot;2026-06-23&quot;:0.3},{&quot;2026-06-24&quot;:0.29},{&quot;2026-06-25&quot;:0.28},{&quot;2026-06-26&quot;:0.26},{&quot;2026-06-27&quot;:0.27},{&quot;2026-06-28&quot;:0.25},{&quot;2026-06-29&quot;:0.26},{&quot;2026-06-30&quot;:0.26},{&quot;2026-07-01&quot;:0.23},{&quot;2026-07-02&quot;:0.24},{&quot;2026-07-03&quot;:0.25},{&quot;2026-07-04&quot;:0.27},{&quot;2026-07-05&quot;:0.29},{&quot;2026-07-06&quot;:0.31},{&quot;2026-07-07&quot;:0.31},{&quot;2026-07-08&quot;:0.27},{&quot;2026-07-09&quot;:0.26},{&quot;2026-07-10&quot;:0.24},{&quot;2026-07-11&quot;:0.23},{&quot;2026-07-12&quot;:0.21},{&quot;2026-07-13&quot;:0.21},{&quot;2026-07-14&quot;:0.22},{&quot;2026-07-15&quot;:0.19},{&quot;2026-07-16&quot;:0.2},{&quot;2026-07-17&quot;:0.2},{&quot;2026-07-18&quot;:0.21},{&quot;2026-07-19&quot;:0.2},{&quot;2026-07-20&quot;:0.2},{&quot;2026-07-21&quot;:0.21},{&quot;2026-07-22&quot;:0.22},{&quot;2026-07-23&quot;:0.23},{&quot;2026-07-24&quot;:0.22},{&quot;2026-07-25&quot;:0.23},{&quot;2026-07-26&quot;:0.23},{&quot;2026-07-27&quot;:0.23},{&quot;2026-07-28&quot;:0.23},{&quot;2026-07-29&quot;:0.23},{&quot;2026-07-30&quot;:0.24},{&quot;2026-07-31&quot;:0.25},{&quot;2026-08-01&quot;:0.25},{&quot;2026-08-02&quot;:0.24},{&quot;2026-08-03&quot;:0.25},{&quot;2026-08-04&quot;:0.25},{&quot;2026-08-05&quot;:0.26},{&quot;2026-08-07&quot;:0.29},{&quot;2026-08-08&quot;:0.29},{&quot;2026-08-09&quot;:0.28},{&quot;2026-08-10&quot;:0.28},{&quot;2026-08-11&quot;:0.27},{&quot;2026-08-12&quot;:0.27},{&quot;2026-08-13&quot;:0.27},{&quot;2026-08-14&quot;:0.29},{&quot;2026-08-15&quot;:0.29},{&quot;2026-08-16&quot;:0.29},{&quot;2026-08-17&quot;:0.28},{&quot;2026-08-18&quot;:0.27},{&quot;2026-08-19&quot;:0.27},{&quot;2026-08-20&quot;:0.27},{&quot;2026-08-21&quot;:0.28},{&quot;2026-08-22&quot;:0.27},{&quot;2026-08-23&quot;:0.27},{&quot;2026-08-24&quot;:0.28},{&quot;2026-08-25&quot;:0.28},{&quot;2026-08-26&quot;:0.29},{&quot;2026-08-27&quot;:0.28},{&quot;2026-08-28&quot;:0.28},{&quot;2026-08-29&quot;:0.28},{&quot;2026-08-30&quot;:0.29},{&quot;2026-08-31&quot;:0.3},{&quot;2026-09-01&quot;:0.3},{&quot;2026-09-02&quot;:0.29},{&quot;2026-09-03&quot;:0.27},{&quot;2026-09-04&quot;:0.34},{&quot;2026-09-05&quot;:0.35},{&quot;2026-09-06&quot;:0.32},{&quot;2026-09-07&quot;:0.3},{&quot;2026-09-08&quot;:0.32},{&quot;2026-09-09&quot;:0.33},{&quot;2026-09-10&quot;:0.31},{&quot;2026-09-11&quot;:0.31}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="109041"
  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-soc 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">
            Plargg and Nassari
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Legendary Creature — Orc Efreet
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-50 text-badge-text">
              ↑
              3%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.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="Plargg and Nassari" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/e/6/e66ee7c6-23bc-4fef-a566-35aee2064bd9.jpg?1782683195" />

        <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">
            Plargg and Nassari
        </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 — Orc Efreet</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Plargg and Nassari" src="https://cards.scryfall.io/large/front/e/6/e66ee7c6-23bc-4fef-a566-35aee2064bd9.jpg?1782683195" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.31
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  3%
                </span>
            </div>
          </div>

          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Foil</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $0.00
              </span>

            </div>
          </div>
      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.11</span>
              <span class="text-xs text-grey-text">Credit: $0.14</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.33},{&quot;2026-06-14&quot;:0.35},{&quot;2026-06-15&quot;:0.35},{&quot;2026-06-16&quot;:0.35},{&quot;2026-06-17&quot;:0.32},{&quot;2026-06-18&quot;:0.33},{&quot;2026-06-19&quot;:0.32},{&quot;2026-06-20&quot;:0.31},{&quot;2026-06-21&quot;:0.31},{&quot;2026-06-22&quot;:0.31},{&quot;2026-06-23&quot;:0.3},{&quot;2026-06-24&quot;:0.3},{&quot;2026-06-25&quot;:0.29},{&quot;2026-06-26&quot;:0.31},{&quot;2026-06-27&quot;:0.31},{&quot;2026-06-28&quot;:0.32},{&quot;2026-06-29&quot;:0.34},{&quot;2026-06-30&quot;:0.34},{&quot;2026-07-01&quot;:0.35},{&quot;2026-07-02&quot;:0.34},{&quot;2026-07-03&quot;:0.31},{&quot;2026-07-04&quot;:0.32},{&quot;2026-07-05&quot;:0.3},{&quot;2026-07-06&quot;:0.3},{&quot;2026-07-07&quot;:0.31},{&quot;2026-07-08&quot;:0.3},{&quot;2026-07-09&quot;:0.28},{&quot;2026-07-10&quot;:0.26},{&quot;2026-07-11&quot;:0.28},{&quot;2026-07-12&quot;:0.29},{&quot;2026-07-13&quot;:0.31},{&quot;2026-07-14&quot;:0.3},{&quot;2026-07-15&quot;:0.32},{&quot;2026-07-16&quot;:0.32},{&quot;2026-07-17&quot;:0.34},{&quot;2026-07-18&quot;:0.32},{&quot;2026-07-19&quot;:0.35},{&quot;2026-07-20&quot;:0.34},{&quot;2026-07-21&quot;:0.33},{&quot;2026-07-22&quot;:0.34},{&quot;2026-07-23&quot;:0.32},{&quot;2026-07-24&quot;:0.33},{&quot;2026-07-25&quot;:0.32},{&quot;2026-07-26&quot;:0.32},{&quot;2026-07-27&quot;:0.33},{&quot;2026-07-28&quot;:0.32},{&quot;2026-07-29&quot;:0.35},{&quot;2026-07-30&quot;:0.34},{&quot;2026-07-31&quot;:0.34},{&quot;2026-08-01&quot;:0.34},{&quot;2026-08-02&quot;:0.35},{&quot;2026-08-03&quot;:0.35},{&quot;2026-08-04&quot;:0.36},{&quot;2026-08-05&quot;:0.35},{&quot;2026-08-07&quot;:0.34},{&quot;2026-08-08&quot;:0.34},{&quot;2026-08-09&quot;:0.35},{&quot;2026-08-10&quot;:0.34},{&quot;2026-08-11&quot;:0.31},{&quot;2026-08-12&quot;:0.35},{&quot;2026-08-13&quot;:0.45},{&quot;2026-08-14&quot;:0.44},{&quot;2026-08-15&quot;:0.46},{&quot;2026-08-16&quot;:0.35},{&quot;2026-08-17&quot;:0.37},{&quot;2026-08-18&quot;:0.35},{&quot;2026-08-19&quot;:0.34},{&quot;2026-08-20&quot;:0.32},{&quot;2026-08-21&quot;:0.32},{&quot;2026-08-22&quot;:0.33},{&quot;2026-08-23&quot;:0.33},{&quot;2026-08-24&quot;:0.34},{&quot;2026-08-25&quot;:0.33},{&quot;2026-08-26&quot;:0.34},{&quot;2026-08-27&quot;:0.33},{&quot;2026-08-28&quot;:0.32},{&quot;2026-08-29&quot;:0.32},{&quot;2026-08-30&quot;:0.31},{&quot;2026-08-31&quot;:0.29},{&quot;2026-09-01&quot;:0.27},{&quot;2026-09-02&quot;:0.27},{&quot;2026-09-03&quot;:0.28},{&quot;2026-09-04&quot;:0.3},{&quot;2026-09-05&quot;:0.3},{&quot;2026-09-06&quot;:0.3},{&quot;2026-09-07&quot;:0.3},{&quot;2026-09-08&quot;:0.3},{&quot;2026-09-09&quot;:0.28},{&quot;2026-09-10&quot;:0.3},{&quot;2026-09-11&quot;:0.31}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="109048"
  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-soc 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">
            Throes of Chaos
        </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">
              ↑
              19%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.31
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Throes of Chaos" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/f/af0fd1ff-3398-45df-b934-07a6b6497998.jpg?1782683190" />

        <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">
            Throes of Chaos
        </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-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Throes of Chaos" src="https://cards.scryfall.io/large/front/a/f/af0fd1ff-3398-45df-b934-07a6b6497998.jpg?1782683190" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.31
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  19%
                </span>
            </div>
          </div>

          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Foil</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $0.00
              </span>

            </div>
          </div>
      </div>


      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-08&quot;:0.22},{&quot;2026-06-10&quot;:0.23},{&quot;2026-06-11&quot;:0.23},{&quot;2026-06-12&quot;:0.24},{&quot;2026-06-13&quot;:0.24},{&quot;2026-06-14&quot;:0.23},{&quot;2026-06-15&quot;:0.23},{&quot;2026-06-16&quot;:0.22},{&quot;2026-06-17&quot;:0.19},{&quot;2026-06-18&quot;:0.21},{&quot;2026-06-19&quot;:0.2},{&quot;2026-06-20&quot;:0.24},{&quot;2026-06-21&quot;:0.24},{&quot;2026-06-22&quot;:0.24},{&quot;2026-06-24&quot;:0.24},{&quot;2026-06-25&quot;:0.24},{&quot;2026-06-26&quot;:0.26},{&quot;2026-06-27&quot;:0.24},{&quot;2026-06-28&quot;:0.26},{&quot;2026-06-29&quot;:0.27},{&quot;2026-06-30&quot;:0.28},{&quot;2026-07-01&quot;:0.27},{&quot;2026-07-02&quot;:0.27},{&quot;2026-07-03&quot;:0.25},{&quot;2026-07-04&quot;:0.25},{&quot;2026-07-05&quot;:0.25},{&quot;2026-07-06&quot;:0.25},{&quot;2026-07-07&quot;:0.25},{&quot;2026-07-08&quot;:0.26},{&quot;2026-07-09&quot;:0.25},{&quot;2026-07-10&quot;:0.25},{&quot;2026-07-11&quot;:0.25},{&quot;2026-07-12&quot;:0.28},{&quot;2026-07-13&quot;:0.28},{&quot;2026-07-14&quot;:0.28},{&quot;2026-07-15&quot;:0.28},{&quot;2026-07-16&quot;:0.28},{&quot;2026-07-17&quot;:0.28},{&quot;2026-07-18&quot;:0.3},{&quot;2026-07-19&quot;:0.27},{&quot;2026-07-20&quot;:0.27},{&quot;2026-07-21&quot;:0.27},{&quot;2026-07-23&quot;:0.3},{&quot;2026-07-25&quot;:0.27},{&quot;2026-07-26&quot;:0.29},{&quot;2026-07-27&quot;:0.28},{&quot;2026-07-29&quot;:0.28},{&quot;2026-07-30&quot;:0.26},{&quot;2026-07-31&quot;:0.24},{&quot;2026-08-01&quot;:0.24},{&quot;2026-08-02&quot;:0.25},{&quot;2026-08-03&quot;:0.26},{&quot;2026-08-04&quot;:0.26},{&quot;2026-08-05&quot;:0.26},{&quot;2026-08-07&quot;:0.26},{&quot;2026-08-08&quot;:0.25},{&quot;2026-08-09&quot;:0.27},{&quot;2026-08-10&quot;:0.28},{&quot;2026-08-11&quot;:0.27},{&quot;2026-08-12&quot;:0.28},{&quot;2026-08-13&quot;:0.28},{&quot;2026-08-14&quot;:0.31},{&quot;2026-08-15&quot;:0.32},{&quot;2026-08-16&quot;:0.32},{&quot;2026-08-17&quot;:0.31},{&quot;2026-08-18&quot;:0.31},{&quot;2026-08-19&quot;:0.3},{&quot;2026-08-20&quot;:0.3},{&quot;2026-08-21&quot;:0.28},{&quot;2026-08-22&quot;:0.28},{&quot;2026-08-23&quot;:0.29},{&quot;2026-08-24&quot;:0.29},{&quot;2026-08-25&quot;:0.29},{&quot;2026-08-26&quot;:0.3},{&quot;2026-08-27&quot;:0.3},{&quot;2026-08-28&quot;:0.28},{&quot;2026-08-29&quot;:0.28},{&quot;2026-08-30&quot;:0.28},{&quot;2026-08-31&quot;:0.29},{&quot;2026-09-01&quot;:0.29},{&quot;2026-09-02&quot;:0.27},{&quot;2026-09-03&quot;:0.27},{&quot;2026-09-04&quot;:0.26},{&quot;2026-09-05&quot;:0.26},{&quot;2026-09-06&quot;:0.27},{&quot;2026-09-07&quot;:0.3},{&quot;2026-09-08&quot;:0.3},{&quot;2026-09-09&quot;:0.3},{&quot;2026-09-10&quot;:0.31},{&quot;2026-09-11&quot;:0.31}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="109051"
  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-soc 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">
            Volcanic Torrent
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Sorcery
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">

          <span class="text-sm font-medium text-nine-white">
            $0.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="Volcanic Torrent" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/d/bddd4336-ef03-4c4e-9992-02a0548d2d6f.jpg?1782683187" />

        <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">
            Volcanic Torrent
        </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-4'></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="Volcanic Torrent" src="https://cards.scryfall.io/large/front/b/d/bddd4336-ef03-4c4e-9992-02a0548d2d6f.jpg?1782683187" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.31
              </span>

            </div>
          </div>

          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Foil</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $0.00
              </span>

            </div>
          </div>
      </div>


      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.29},{&quot;2026-06-14&quot;:0.3},{&quot;2026-06-15&quot;:0.3},{&quot;2026-06-16&quot;:0.31},{&quot;2026-06-17&quot;:0.27},{&quot;2026-06-18&quot;:0.26},{&quot;2026-06-19&quot;:0.26},{&quot;2026-06-20&quot;:0.25},{&quot;2026-06-21&quot;:0.27},{&quot;2026-06-22&quot;:0.26},{&quot;2026-06-23&quot;:0.23},{&quot;2026-06-24&quot;:0.24},{&quot;2026-06-25&quot;:0.22},{&quot;2026-06-26&quot;:0.23},{&quot;2026-06-27&quot;:0.24},{&quot;2026-06-28&quot;:0.26},{&quot;2026-06-29&quot;:0.26},{&quot;2026-06-30&quot;:0.27},{&quot;2026-07-01&quot;:0.27},{&quot;2026-07-02&quot;:0.24},{&quot;2026-07-03&quot;:0.26},{&quot;2026-07-04&quot;:0.26},{&quot;2026-07-05&quot;:0.28},{&quot;2026-07-06&quot;:0.28},{&quot;2026-07-07&quot;:0.29},{&quot;2026-07-08&quot;:0.28},{&quot;2026-07-09&quot;:0.29},{&quot;2026-07-10&quot;:0.27},{&quot;2026-07-11&quot;:0.28},{&quot;2026-07-12&quot;:0.26},{&quot;2026-07-13&quot;:0.25},{&quot;2026-07-14&quot;:0.24},{&quot;2026-07-15&quot;:0.23},{&quot;2026-07-16&quot;:0.26},{&quot;2026-07-17&quot;:0.26},{&quot;2026-07-18&quot;:0.26},{&quot;2026-07-19&quot;:0.24},{&quot;2026-07-20&quot;:0.26},{&quot;2026-07-21&quot;:0.25},{&quot;2026-07-22&quot;:0.23},{&quot;2026-07-23&quot;:0.25},{&quot;2026-07-24&quot;:0.27},{&quot;2026-07-25&quot;:0.26},{&quot;2026-07-26&quot;:0.27},{&quot;2026-07-27&quot;:0.28},{&quot;2026-07-28&quot;:0.28},{&quot;2026-07-29&quot;:0.3},{&quot;2026-07-30&quot;:0.27},{&quot;2026-07-31&quot;:0.29},{&quot;2026-08-01&quot;:0.28},{&quot;2026-08-02&quot;:0.27},{&quot;2026-08-03&quot;:0.25},{&quot;2026-08-04&quot;:0.23},{&quot;2026-08-05&quot;:0.23},{&quot;2026-08-07&quot;:0.23},{&quot;2026-08-08&quot;:0.23},{&quot;2026-08-09&quot;:0.25},{&quot;2026-08-10&quot;:0.25},{&quot;2026-08-11&quot;:0.26},{&quot;2026-08-12&quot;:0.29},{&quot;2026-08-13&quot;:0.29},{&quot;2026-08-14&quot;:0.29},{&quot;2026-08-15&quot;:0.3},{&quot;2026-08-16&quot;:0.32},{&quot;2026-08-17&quot;:0.31},{&quot;2026-08-18&quot;:0.29},{&quot;2026-08-19&quot;:0.29},{&quot;2026-08-20&quot;:0.28},{&quot;2026-08-21&quot;:0.28},{&quot;2026-08-22&quot;:0.27},{&quot;2026-08-23&quot;:0.31},{&quot;2026-08-24&quot;:0.3},{&quot;2026-08-25&quot;:0.29},{&quot;2026-08-26&quot;:0.29},{&quot;2026-08-27&quot;:0.31},{&quot;2026-08-28&quot;:0.31},{&quot;2026-08-29&quot;:0.31},{&quot;2026-08-30&quot;:0.34},{&quot;2026-08-31&quot;:0.34},{&quot;2026-09-01&quot;:0.34},{&quot;2026-09-02&quot;:0.33},{&quot;2026-09-03&quot;:0.35},{&quot;2026-09-04&quot;:0.32},{&quot;2026-09-05&quot;:0.31},{&quot;2026-09-06&quot;:0.32},{&quot;2026-09-07&quot;:0.34},{&quot;2026-09-08&quot;:0.34},{&quot;2026-09-09&quot;:0.32},{&quot;2026-09-10&quot;:0.31},{&quot;2026-09-11&quot;:0.31}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="108922"
  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-soc 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">
            Command Tower
        </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">
              ↓
              12%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.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="Command Tower" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/4/c46a217c-0ed2-4b3c-9a01-ee38d12d76f3.jpg?1782683284" />

        <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">
            Command Tower
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            common
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Land</span>
        </div>

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Command Tower" src="https://cards.scryfall.io/large/front/c/4/c46a217c-0ed2-4b3c-9a01-ee38d12d76f3.jpg?1782683284" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.30
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  12%
                </span>
            </div>
          </div>

          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Foil</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $0.00
              </span>

            </div>
          </div>
      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.08</span>
              <span class="text-xs text-grey-text">Credit: $0.10</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:0.25},{&quot;2026-06-11&quot;:0.28},{&quot;2026-06-12&quot;:0.28},{&quot;2026-06-13&quot;:0.36},{&quot;2026-06-14&quot;:0.3},{&quot;2026-06-15&quot;:0.29},{&quot;2026-06-16&quot;:0.3},{&quot;2026-06-17&quot;:0.31},{&quot;2026-06-18&quot;:0.29},{&quot;2026-06-19&quot;:0.43},{&quot;2026-06-20&quot;:0.33},{&quot;2026-06-21&quot;:0.3},{&quot;2026-06-22&quot;:0.26},{&quot;2026-06-23&quot;:0.31},{&quot;2026-06-24&quot;:0.33},{&quot;2026-06-25&quot;:0.31},{&quot;2026-06-26&quot;:0.34},{&quot;2026-06-27&quot;:0.32},{&quot;2026-06-28&quot;:0.35},{&quot;2026-06-29&quot;:0.32},{&quot;2026-06-30&quot;:0.4},{&quot;2026-07-01&quot;:0.38},{&quot;2026-07-02&quot;:0.38},{&quot;2026-07-03&quot;:0.4},{&quot;2026-07-04&quot;:0.38},{&quot;2026-07-05&quot;:0.33},{&quot;2026-07-06&quot;:0.36},{&quot;2026-07-07&quot;:0.37},{&quot;2026-07-08&quot;:0.35},{&quot;2026-07-09&quot;:0.4},{&quot;2026-07-10&quot;:0.39},{&quot;2026-07-11&quot;:0.38},{&quot;2026-07-12&quot;:0.38},{&quot;2026-07-13&quot;:0.37},{&quot;2026-07-14&quot;:0.35},{&quot;2026-07-15&quot;:0.36},{&quot;2026-07-16&quot;:0.28},{&quot;2026-07-17&quot;:0.29},{&quot;2026-07-18&quot;:0.21},{&quot;2026-07-19&quot;:0.23},{&quot;2026-07-20&quot;:0.25},{&quot;2026-07-21&quot;:0.26},{&quot;2026-07-23&quot;:0.38},{&quot;2026-07-25&quot;:0.34},{&quot;2026-07-26&quot;:0.37},{&quot;2026-07-27&quot;:0.34},{&quot;2026-07-29&quot;:0.33},{&quot;2026-07-30&quot;:0.36},{&quot;2026-07-31&quot;:0.38},{&quot;2026-08-01&quot;:0.39},{&quot;2026-08-02&quot;:0.34},{&quot;2026-08-03&quot;:0.34},{&quot;2026-08-04&quot;:0.34},{&quot;2026-08-05&quot;:0.35},{&quot;2026-08-07&quot;:0.33},{&quot;2026-08-08&quot;:0.21},{&quot;2026-08-09&quot;:0.2},{&quot;2026-08-10&quot;:0.23},{&quot;2026-08-11&quot;:0.15},{&quot;2026-08-12&quot;:0.22},{&quot;2026-08-13&quot;:0.31},{&quot;2026-08-14&quot;:0.32},{&quot;2026-08-15&quot;:0.64},{&quot;2026-08-16&quot;:0.32},{&quot;2026-08-17&quot;:0.34},{&quot;2026-08-18&quot;:0.35},{&quot;2026-08-19&quot;:0.35},{&quot;2026-08-20&quot;:0.35},{&quot;2026-08-21&quot;:0.38},{&quot;2026-08-22&quot;:0.34},{&quot;2026-08-23&quot;:0.36},{&quot;2026-08-24&quot;:0.3},{&quot;2026-08-25&quot;:0.3},{&quot;2026-08-26&quot;:0.35},{&quot;2026-08-27&quot;:0.35},{&quot;2026-08-28&quot;:0.31},{&quot;2026-08-29&quot;:0.31},{&quot;2026-08-30&quot;:0.34},{&quot;2026-08-31&quot;:0.32},{&quot;2026-09-01&quot;:0.32},{&quot;2026-09-02&quot;:0.29},{&quot;2026-09-03&quot;:0.38},{&quot;2026-09-04&quot;:0.32},{&quot;2026-09-05&quot;:0.34},{&quot;2026-09-06&quot;:0.32},{&quot;2026-09-07&quot;:0.32},{&quot;2026-09-08&quot;:0.29},{&quot;2026-09-09&quot;:0.26},{&quot;2026-09-10&quot;:0.33},{&quot;2026-09-11&quot;:0.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="108978"
  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-soc 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">
            Aether Gale
        </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">
              ↑
              15%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.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="Aether Gale" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/e/4e336e87-e5af-46a0-8caf-5d9ad8d671fd.jpg?1782683246" />

        <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">
            Aether Gale
        </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-3'></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="Aether Gale" src="https://cards.scryfall.io/large/front/4/e/4e336e87-e5af-46a0-8caf-5d9ad8d671fd.jpg?1782683246" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.30
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  15%
                </span>
            </div>
          </div>

          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Foil</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $0.00
              </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.01</span>
              <span class="text-xs text-grey-text">Credit: $0.01</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-11&quot;:0.29},{&quot;2026-06-12&quot;:0.29},{&quot;2026-06-13&quot;:0.29},{&quot;2026-06-14&quot;:0.31},{&quot;2026-06-15&quot;:0.31},{&quot;2026-06-16&quot;:0.29},{&quot;2026-06-17&quot;:0.29},{&quot;2026-06-18&quot;:0.31},{&quot;2026-06-19&quot;:0.32},{&quot;2026-06-20&quot;:0.3},{&quot;2026-06-21&quot;:0.31},{&quot;2026-06-22&quot;:0.3},{&quot;2026-06-23&quot;:0.28},{&quot;2026-06-24&quot;:0.28},{&quot;2026-06-25&quot;:0.26},{&quot;2026-06-26&quot;:0.26},{&quot;2026-06-27&quot;:0.28},{&quot;2026-06-28&quot;:0.3},{&quot;2026-06-29&quot;:0.3},{&quot;2026-06-30&quot;:0.3},{&quot;2026-07-01&quot;:0.33},{&quot;2026-07-02&quot;:0.36},{&quot;2026-07-03&quot;:0.36},{&quot;2026-07-04&quot;:0.36},{&quot;2026-07-05&quot;:0.36},{&quot;2026-07-06&quot;:0.34},{&quot;2026-07-07&quot;:0.34},{&quot;2026-07-08&quot;:0.31},{&quot;2026-07-09&quot;:0.32},{&quot;2026-07-10&quot;:0.31},{&quot;2026-07-11&quot;:0.3},{&quot;2026-07-12&quot;:0.3},{&quot;2026-07-13&quot;:0.29},{&quot;2026-07-14&quot;:0.29},{&quot;2026-07-15&quot;:0.29},{&quot;2026-07-16&quot;:0.28},{&quot;2026-07-17&quot;:0.28},{&quot;2026-07-18&quot;:0.28},{&quot;2026-07-19&quot;:0.26},{&quot;2026-07-20&quot;:0.25},{&quot;2026-07-21&quot;:0.23},{&quot;2026-07-23&quot;:0.23},{&quot;2026-07-25&quot;:0.24},{&quot;2026-07-26&quot;:0.24},{&quot;2026-07-27&quot;:0.27},{&quot;2026-07-28&quot;:0.28},{&quot;2026-07-29&quot;:0.28},{&quot;2026-07-30&quot;:0.26},{&quot;2026-07-31&quot;:0.28},{&quot;2026-08-01&quot;:0.28},{&quot;2026-08-02&quot;:0.28},{&quot;2026-08-03&quot;:0.28},{&quot;2026-08-04&quot;:0.29},{&quot;2026-08-05&quot;:0.29},{&quot;2026-08-07&quot;:0.28},{&quot;2026-08-08&quot;:0.27},{&quot;2026-08-09&quot;:0.27},{&quot;2026-08-10&quot;:0.27},{&quot;2026-08-11&quot;:0.27},{&quot;2026-08-12&quot;:0.28},{&quot;2026-08-13&quot;:0.28},{&quot;2026-08-14&quot;:0.28},{&quot;2026-08-15&quot;:0.29},{&quot;2026-08-16&quot;:0.29},{&quot;2026-08-17&quot;:0.3},{&quot;2026-08-18&quot;:0.31},{&quot;2026-08-19&quot;:0.3},{&quot;2026-08-20&quot;:0.3},{&quot;2026-08-21&quot;:0.3},{&quot;2026-08-22&quot;:0.28},{&quot;2026-08-23&quot;:0.27},{&quot;2026-08-24&quot;:0.28},{&quot;2026-08-25&quot;:0.28},{&quot;2026-08-26&quot;:0.28},{&quot;2026-08-27&quot;:0.29},{&quot;2026-08-28&quot;:0.29},{&quot;2026-08-29&quot;:0.29},{&quot;2026-08-30&quot;:0.29},{&quot;2026-08-31&quot;:0.29},{&quot;2026-09-01&quot;:0.28},{&quot;2026-09-02&quot;:0.28},{&quot;2026-09-03&quot;:0.28},{&quot;2026-09-04&quot;:0.28},{&quot;2026-09-05&quot;:0.26},{&quot;2026-09-06&quot;:0.29},{&quot;2026-09-07&quot;:0.28},{&quot;2026-09-08&quot;:0.29},{&quot;2026-09-09&quot;:0.3},{&quot;2026-09-10&quot;:0.3},{&quot;2026-09-11&quot;:0.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="109122"
  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-soc 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">
            Stormcatch Mentor
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Otter Wizard
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-100 text-badge-text">
              ↓
              6%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.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="Stormcatch Mentor" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/f/1/f1bbb5ad-a293-48f3-a3d0-7ac85a7b8467.jpg?1782683130" />

        <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">
            Stormcatch Mentor
        </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 — Otter Wizard</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-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="Stormcatch Mentor" src="https://cards.scryfall.io/large/front/f/1/f1bbb5ad-a293-48f3-a3d0-7ac85a7b8467.jpg?1782683130" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.30
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  6%
                </span>
            </div>
          </div>

          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Foil</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $0.00
              </span>

            </div>
          </div>
      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.10</span>
              <span class="text-xs text-grey-text">Credit: $0.13</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.32},{&quot;2026-06-14&quot;:0.3},{&quot;2026-06-15&quot;:0.28},{&quot;2026-06-16&quot;:0.28},{&quot;2026-06-17&quot;:0.26},{&quot;2026-06-18&quot;:0.25},{&quot;2026-06-19&quot;:0.27},{&quot;2026-06-20&quot;:0.27},{&quot;2026-06-21&quot;:0.27},{&quot;2026-06-22&quot;:0.26},{&quot;2026-06-23&quot;:0.28},{&quot;2026-06-24&quot;:0.3},{&quot;2026-06-25&quot;:0.31},{&quot;2026-06-26&quot;:0.34},{&quot;2026-06-27&quot;:0.33},{&quot;2026-06-28&quot;:0.3},{&quot;2026-06-29&quot;:0.3},{&quot;2026-06-30&quot;:0.29},{&quot;2026-07-01&quot;:0.28},{&quot;2026-07-02&quot;:0.32},{&quot;2026-07-03&quot;:0.3},{&quot;2026-07-04&quot;:0.29},{&quot;2026-07-05&quot;:0.28},{&quot;2026-07-06&quot;:0.29},{&quot;2026-07-07&quot;:0.26},{&quot;2026-07-08&quot;:0.26},{&quot;2026-07-09&quot;:0.24},{&quot;2026-07-10&quot;:0.59},{&quot;2026-07-11&quot;:0.66},{&quot;2026-07-12&quot;:0.63},{&quot;2026-07-13&quot;:0.28},{&quot;2026-07-14&quot;:0.27},{&quot;2026-07-15&quot;:0.27},{&quot;2026-07-16&quot;:0.26},{&quot;2026-07-17&quot;:0.26},{&quot;2026-07-18&quot;:0.28},{&quot;2026-07-19&quot;:0.31},{&quot;2026-07-20&quot;:0.3},{&quot;2026-07-21&quot;:0.29},{&quot;2026-07-22&quot;:0.31},{&quot;2026-07-23&quot;:0.35},{&quot;2026-07-24&quot;:0.36},{&quot;2026-07-25&quot;:0.36},{&quot;2026-07-26&quot;:0.33},{&quot;2026-07-27&quot;:0.31},{&quot;2026-07-28&quot;:0.28},{&quot;2026-07-29&quot;:0.28},{&quot;2026-07-30&quot;:0.29},{&quot;2026-07-31&quot;:0.31},{&quot;2026-08-01&quot;:0.31},{&quot;2026-08-02&quot;:0.29},{&quot;2026-08-03&quot;:0.27},{&quot;2026-08-04&quot;:0.26},{&quot;2026-08-05&quot;:0.27},{&quot;2026-08-07&quot;:0.34},{&quot;2026-08-08&quot;:0.38},{&quot;2026-08-09&quot;:0.37},{&quot;2026-08-10&quot;:0.36},{&quot;2026-08-11&quot;:0.35},{&quot;2026-08-12&quot;:0.37},{&quot;2026-08-13&quot;:0.39},{&quot;2026-08-14&quot;:0.38},{&quot;2026-08-15&quot;:0.37},{&quot;2026-08-16&quot;:0.36},{&quot;2026-08-17&quot;:0.37},{&quot;2026-08-18&quot;:0.32},{&quot;2026-08-19&quot;:0.32},{&quot;2026-08-20&quot;:0.31},{&quot;2026-08-21&quot;:0.3},{&quot;2026-08-22&quot;:0.31},{&quot;2026-08-23&quot;:0.34},{&quot;2026-08-24&quot;:0.34},{&quot;2026-08-25&quot;:0.34},{&quot;2026-08-26&quot;:0.35},{&quot;2026-08-27&quot;:0.36},{&quot;2026-08-28&quot;:0.36},{&quot;2026-08-29&quot;:0.36},{&quot;2026-08-30&quot;:0.36},{&quot;2026-08-31&quot;:0.35},{&quot;2026-09-01&quot;:0.36},{&quot;2026-09-02&quot;:0.35},{&quot;2026-09-03&quot;:0.35},{&quot;2026-09-04&quot;:0.34},{&quot;2026-09-05&quot;:0.32},{&quot;2026-09-06&quot;:0.34},{&quot;2026-09-07&quot;:0.32},{&quot;2026-09-08&quot;:0.31},{&quot;2026-09-09&quot;:0.31},{&quot;2026-09-10&quot;:0.28},{&quot;2026-09-11&quot;:0.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="109168"
  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-soc 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">
            Hall of Oracles
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Land
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-50 text-badge-text">
              ↑
              11%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.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="Hall of Oracles" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/2/c29b896e-eee0-4f40-89b8-89262dae44e1.jpg?1782683093" />

        <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">
            Hall of Oracles
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            rare
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Land</span>
        </div>

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Hall of Oracles" src="https://cards.scryfall.io/large/front/c/2/c29b896e-eee0-4f40-89b8-89262dae44e1.jpg?1782683093" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.30
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  11%
                </span>
            </div>
          </div>

          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Foil</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $0.00
              </span>

            </div>
          </div>
      </div>


      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.25},{&quot;2026-06-14&quot;:0.25},{&quot;2026-06-15&quot;:0.28},{&quot;2026-06-16&quot;:0.28},{&quot;2026-06-17&quot;:0.29},{&quot;2026-06-18&quot;:0.3},{&quot;2026-06-19&quot;:0.3},{&quot;2026-06-20&quot;:0.29},{&quot;2026-06-21&quot;:0.27},{&quot;2026-06-22&quot;:0.24},{&quot;2026-06-23&quot;:0.23},{&quot;2026-06-24&quot;:0.23},{&quot;2026-06-25&quot;:0.24},{&quot;2026-06-26&quot;:0.25},{&quot;2026-06-27&quot;:0.28},{&quot;2026-06-28&quot;:0.29},{&quot;2026-06-29&quot;:0.3},{&quot;2026-06-30&quot;:0.3},{&quot;2026-07-01&quot;:0.29},{&quot;2026-07-02&quot;:0.28},{&quot;2026-07-03&quot;:0.26},{&quot;2026-07-04&quot;:0.26},{&quot;2026-07-05&quot;:0.26},{&quot;2026-07-06&quot;:0.26},{&quot;2026-07-07&quot;:0.26},{&quot;2026-07-08&quot;:0.25},{&quot;2026-07-09&quot;:0.26},{&quot;2026-07-10&quot;:0.26},{&quot;2026-07-11&quot;:0.26},{&quot;2026-07-12&quot;:0.28},{&quot;2026-07-13&quot;:0.27},{&quot;2026-07-14&quot;:0.26},{&quot;2026-07-15&quot;:0.26},{&quot;2026-07-16&quot;:0.26},{&quot;2026-07-17&quot;:0.26},{&quot;2026-07-18&quot;:0.26},{&quot;2026-07-19&quot;:0.25},{&quot;2026-07-20&quot;:0.27},{&quot;2026-07-21&quot;:0.26},{&quot;2026-07-22&quot;:0.3},{&quot;2026-07-23&quot;:0.32},{&quot;2026-07-24&quot;:0.32},{&quot;2026-07-25&quot;:0.33},{&quot;2026-07-26&quot;:0.32},{&quot;2026-07-27&quot;:0.31},{&quot;2026-07-28&quot;:0.31},{&quot;2026-07-29&quot;:0.29},{&quot;2026-07-30&quot;:0.29},{&quot;2026-07-31&quot;:0.27},{&quot;2026-08-01&quot;:0.27},{&quot;2026-08-02&quot;:0.26},{&quot;2026-08-03&quot;:0.26},{&quot;2026-08-04&quot;:0.27},{&quot;2026-08-05&quot;:0.26},{&quot;2026-08-07&quot;:0.27},{&quot;2026-08-08&quot;:0.28},{&quot;2026-08-09&quot;:0.28},{&quot;2026-08-10&quot;:0.28},{&quot;2026-08-11&quot;:0.28},{&quot;2026-08-12&quot;:0.28},{&quot;2026-08-13&quot;:0.28},{&quot;2026-08-14&quot;:0.29},{&quot;2026-08-15&quot;:0.29},{&quot;2026-08-16&quot;:0.29},{&quot;2026-08-17&quot;:0.31},{&quot;2026-08-18&quot;:0.29},{&quot;2026-08-19&quot;:0.29},{&quot;2026-08-20&quot;:0.26},{&quot;2026-08-21&quot;:0.27},{&quot;2026-08-22&quot;:0.27},{&quot;2026-08-23&quot;:0.23},{&quot;2026-08-24&quot;:0.25},{&quot;2026-08-25&quot;:0.27},{&quot;2026-08-26&quot;:0.27},{&quot;2026-08-27&quot;:0.27},{&quot;2026-08-28&quot;:0.29},{&quot;2026-08-29&quot;:0.29},{&quot;2026-08-30&quot;:0.3},{&quot;2026-08-31&quot;:0.31},{&quot;2026-09-01&quot;:0.29},{&quot;2026-09-02&quot;:0.25},{&quot;2026-09-03&quot;:0.25},{&quot;2026-09-04&quot;:0.26},{&quot;2026-09-05&quot;:0.27},{&quot;2026-09-06&quot;:0.24},{&quot;2026-09-07&quot;:0.23},{&quot;2026-09-08&quot;:0.24},{&quot;2026-09-09&quot;:0.28},{&quot;2026-09-10&quot;:0.29},{&quot;2026-09-11&quot;:0.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="109194"
  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-soc 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 Reef
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Land
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-50 text-badge-text">
              ↑
              15%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.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="Shivan Reef" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/e/1/e13d0982-2542-4770-8e93-637478a0f84a.jpg?1782683074" />

        <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 Reef
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            rare
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Land</span>
        </div>

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Shivan Reef" src="https://cards.scryfall.io/large/front/e/1/e13d0982-2542-4770-8e93-637478a0f84a.jpg?1782683074" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.30
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  15%
                </span>
            </div>
          </div>

          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Foil</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $0.00
              </span>

            </div>
          </div>
      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.12</span>
              <span class="text-xs text-grey-text">Credit: $0.16</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-11&quot;:0.33},{&quot;2026-06-12&quot;:0.34},{&quot;2026-06-13&quot;:0.33},{&quot;2026-06-14&quot;:0.34},{&quot;2026-06-15&quot;:0.36},{&quot;2026-06-16&quot;:0.36},{&quot;2026-06-17&quot;:0.33},{&quot;2026-06-18&quot;:0.32},{&quot;2026-06-19&quot;:0.31},{&quot;2026-06-20&quot;:0.32},{&quot;2026-06-21&quot;:0.32},{&quot;2026-06-22&quot;:0.31},{&quot;2026-06-23&quot;:0.3},{&quot;2026-06-24&quot;:0.3},{&quot;2026-06-25&quot;:0.29},{&quot;2026-06-26&quot;:0.31},{&quot;2026-06-27&quot;:0.3},{&quot;2026-06-28&quot;:0.31},{&quot;2026-06-29&quot;:0.31},{&quot;2026-06-30&quot;:0.32},{&quot;2026-07-01&quot;:0.32},{&quot;2026-07-02&quot;:0.33},{&quot;2026-07-03&quot;:0.35},{&quot;2026-07-04&quot;:0.35},{&quot;2026-07-05&quot;:0.36},{&quot;2026-07-06&quot;:0.37},{&quot;2026-07-07&quot;:0.37},{&quot;2026-07-08&quot;:0.34},{&quot;2026-07-09&quot;:0.35},{&quot;2026-07-10&quot;:0.36},{&quot;2026-07-11&quot;:0.37},{&quot;2026-07-12&quot;:0.38},{&quot;2026-07-13&quot;:0.36},{&quot;2026-07-14&quot;:0.37},{&quot;2026-07-15&quot;:0.36},{&quot;2026-07-16&quot;:0.35},{&quot;2026-07-17&quot;:0.33},{&quot;2026-07-18&quot;:0.33},{&quot;2026-07-19&quot;:0.32},{&quot;2026-07-20&quot;:0.31},{&quot;2026-07-21&quot;:0.29},{&quot;2026-07-23&quot;:0.33},{&quot;2026-07-25&quot;:0.33},{&quot;2026-07-26&quot;:0.35},{&quot;2026-07-27&quot;:0.36},{&quot;2026-07-28&quot;:0.36},{&quot;2026-07-29&quot;:0.35},{&quot;2026-07-30&quot;:0.36},{&quot;2026-07-31&quot;:0.35},{&quot;2026-08-01&quot;:0.35},{&quot;2026-08-02&quot;:0.33},{&quot;2026-08-03&quot;:0.33},{&quot;2026-08-04&quot;:0.33},{&quot;2026-08-05&quot;:0.33},{&quot;2026-08-07&quot;:0.35},{&quot;2026-08-08&quot;:0.36},{&quot;2026-08-09&quot;:0.39},{&quot;2026-08-10&quot;:0.39},{&quot;2026-08-11&quot;:0.39},{&quot;2026-08-12&quot;:0.37},{&quot;2026-08-13&quot;:0.37},{&quot;2026-08-14&quot;:0.35},{&quot;2026-08-15&quot;:0.35},{&quot;2026-08-16&quot;:0.36},{&quot;2026-08-17&quot;:0.36},{&quot;2026-08-18&quot;:0.35},{&quot;2026-08-19&quot;:0.35},{&quot;2026-08-20&quot;:0.35},{&quot;2026-08-21&quot;:0.34},{&quot;2026-08-22&quot;:0.34},{&quot;2026-08-23&quot;:0.33},{&quot;2026-08-24&quot;:0.33},{&quot;2026-08-25&quot;:0.33},{&quot;2026-08-26&quot;:0.35},{&quot;2026-08-27&quot;:0.36},{&quot;2026-08-28&quot;:0.34},{&quot;2026-08-29&quot;:0.34},{&quot;2026-08-30&quot;:0.32},{&quot;2026-08-31&quot;:0.33},{&quot;2026-09-01&quot;:0.33},{&quot;2026-09-02&quot;:0.27},{&quot;2026-09-03&quot;:0.28},{&quot;2026-09-04&quot;:0.26},{&quot;2026-09-05&quot;:0.26},{&quot;2026-09-06&quot;:0.24},{&quot;2026-09-07&quot;:0.23},{&quot;2026-09-08&quot;:0.24},{&quot;2026-09-09&quot;:0.26},{&quot;2026-09-10&quot;:0.3},{&quot;2026-09-11&quot;:0.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="109034"
  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-soc 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">
            Dance with Calamity
        </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">
              ↓
              9%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.29
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Dance with Calamity" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/6/9/69f34a40-30f8-4fdd-bb21-79171ba2f00d.jpg?1782683202" />

        <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">
            Dance with Calamity
        </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-7'></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="Dance with Calamity" src="https://cards.scryfall.io/large/front/6/9/69f34a40-30f8-4fdd-bb21-79171ba2f00d.jpg?1782683202" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.29
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  9%
                </span>
            </div>
          </div>

          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Foil</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $0.00
              </span>

            </div>
          </div>
      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.09</span>
              <span class="text-xs text-grey-text">Credit: $0.12</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:0.32},{&quot;2026-06-11&quot;:0.35},{&quot;2026-06-12&quot;:0.34},{&quot;2026-06-13&quot;:0.36},{&quot;2026-06-14&quot;:0.35},{&quot;2026-06-15&quot;:0.32},{&quot;2026-06-16&quot;:0.3},{&quot;2026-06-17&quot;:0.33},{&quot;2026-06-18&quot;:0.33},{&quot;2026-06-19&quot;:0.35},{&quot;2026-06-20&quot;:0.36},{&quot;2026-06-21&quot;:0.35},{&quot;2026-06-22&quot;:0.32},{&quot;2026-06-23&quot;:0.28},{&quot;2026-06-24&quot;:0.25},{&quot;2026-06-25&quot;:0.25},{&quot;2026-06-26&quot;:0.25},{&quot;2026-06-27&quot;:0.27},{&quot;2026-06-28&quot;:0.27},{&quot;2026-06-29&quot;:0.28},{&quot;2026-06-30&quot;:0.3},{&quot;2026-07-01&quot;:0.3},{&quot;2026-07-02&quot;:0.33},{&quot;2026-07-03&quot;:0.34},{&quot;2026-07-04&quot;:0.33},{&quot;2026-07-05&quot;:0.33},{&quot;2026-07-06&quot;:0.33},{&quot;2026-07-07&quot;:0.33},{&quot;2026-07-08&quot;:0.28},{&quot;2026-07-09&quot;:0.27},{&quot;2026-07-10&quot;:0.27},{&quot;2026-07-11&quot;:0.28},{&quot;2026-07-12&quot;:0.29},{&quot;2026-07-13&quot;:0.3},{&quot;2026-07-14&quot;:0.3},{&quot;2026-07-15&quot;:0.28},{&quot;2026-07-16&quot;:0.28},{&quot;2026-07-17&quot;:0.28},{&quot;2026-07-18&quot;:0.28},{&quot;2026-07-19&quot;:0.26},{&quot;2026-07-20&quot;:0.27},{&quot;2026-07-21&quot;:0.3},{&quot;2026-07-23&quot;:0.33},{&quot;2026-07-25&quot;:0.33},{&quot;2026-07-26&quot;:0.35},{&quot;2026-07-27&quot;:0.33},{&quot;2026-07-29&quot;:0.3},{&quot;2026-07-30&quot;:0.31},{&quot;2026-07-31&quot;:0.32},{&quot;2026-08-01&quot;:0.33},{&quot;2026-08-02&quot;:0.35},{&quot;2026-08-03&quot;:0.34},{&quot;2026-08-04&quot;:0.33},{&quot;2026-08-05&quot;:0.34},{&quot;2026-08-07&quot;:0.33},{&quot;2026-08-08&quot;:0.34},{&quot;2026-08-09&quot;:0.34},{&quot;2026-08-10&quot;:0.33},{&quot;2026-08-11&quot;:0.31},{&quot;2026-08-12&quot;:0.29},{&quot;2026-08-13&quot;:0.29},{&quot;2026-08-14&quot;:0.26},{&quot;2026-08-15&quot;:0.29},{&quot;2026-08-16&quot;:0.31},{&quot;2026-08-17&quot;:0.33},{&quot;2026-08-18&quot;:0.32},{&quot;2026-08-19&quot;:0.31},{&quot;2026-08-20&quot;:0.31},{&quot;2026-08-21&quot;:0.29},{&quot;2026-08-22&quot;:0.27},{&quot;2026-08-23&quot;:0.26},{&quot;2026-08-24&quot;:0.25},{&quot;2026-08-25&quot;:0.25},{&quot;2026-08-26&quot;:0.26},{&quot;2026-08-27&quot;:0.28},{&quot;2026-08-28&quot;:0.3},{&quot;2026-08-29&quot;:0.3},{&quot;2026-08-30&quot;:0.31},{&quot;2026-08-31&quot;:0.28},{&quot;2026-09-01&quot;:0.28},{&quot;2026-09-02&quot;:0.27},{&quot;2026-09-03&quot;:0.27},{&quot;2026-09-04&quot;:0.29},{&quot;2026-09-05&quot;:0.32},{&quot;2026-09-06&quot;:0.28},{&quot;2026-09-07&quot;:0.28},{&quot;2026-09-08&quot;:0.28},{&quot;2026-09-09&quot;:0.25},{&quot;2026-09-10&quot;:0.26},{&quot;2026-09-11&quot;:0.29}]}"
        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 89 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=326&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next">2</a><a href="/load_collection?collection_id=326&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=326&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=326&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=326&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=326&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=326&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=326&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=326&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=326&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=326&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="108907"
          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">
              114
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Faerie Mastermind


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Faerie Rogue
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $11.80

                    <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">
                $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.74
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108907"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108907" src="/boxset_card/108907?collection_id=326&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109036"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              245
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-mythic ss-fw ss-2x mr-4"></i>
              Goldspan 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-3'></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">
                  $10.65

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      8%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $7.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.69
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109036"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109036" src="/boxset_card/109036?collection_id=326&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108896"
          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">
              57
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Turbulent Springs


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land — Island Mountain
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $4.69

                    <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">
                $4.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.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108896"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108896" src="/boxset_card/108896?collection_id=326&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109141"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              350
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-uncommon ss-fw ss-2x mr-4"></i>
              Lightning Greaves


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact — Equipment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $4.54

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $3.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.53
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109141"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109141" src="/boxset_card/109141?collection_id=326&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109188"
          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">
              398
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-uncommon ss-fw ss-2x mr-4"></i>
              Reliquary Tower


            </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">
                  $3.78

                    <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">
                $3.25
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.20
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109188"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109188" src="/boxset_card/109188?collection_id=326&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108916"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              123
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Harmonic Prodigy


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Human Wizard
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.19

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      16%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $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.57
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108916"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108916" src="/boxset_card/108916?collection_id=326&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109038"
          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">
              247
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-common ss-fw ss-2x mr-4"></i>
              Mana Geyser


            </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-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.85

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      71%
                    </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">
                0.81
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109038"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109038" src="/boxset_card/109038?collection_id=326&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109148"
          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">
              357
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-uncommon ss-fw ss-2x mr-4"></i>
              Talisman of Creativity


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.83

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      8%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.75
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109148"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109148" src="/boxset_card/109148?collection_id=326&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109128"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              337
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-mythic ss-fw ss-2x mr-4"></i>
              Veyran, Voice of Duality


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Efreet Wizard
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.78

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      31%
                    </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">
                0.73
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109128"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109128" src="/boxset_card/109128?collection_id=326&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108979"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              187
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc 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">
                  $1.73

                    <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">
                $1.80
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.46
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108979"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108979" src="/boxset_card/108979?collection_id=326&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109029"
          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">
              238
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Blasphemous Act


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-8'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.58

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      103%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.80
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.62
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109029"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109029" src="/boxset_card/109029?collection_id=326&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109046"
          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-soc ss-uncommon ss-fw ss-2x mr-4"></i>
              Storm-Kiln Artist


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Dwarf Shaman
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.50

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      9%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.70
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109046"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109046" src="/boxset_card/109046?collection_id=326&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109178"
          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">
              388
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-common ss-fw ss-2x mr-4"></i>
              Mystic Sanctuary


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land — Island
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.46

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      36%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.29
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109178"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109178" src="/boxset_card/109178?collection_id=326&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108921"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              128
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-uncommon ss-fw ss-2x mr-4"></i>
              Sol Ring


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.39

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      30%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.90
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.46
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108921"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108921" src="/boxset_card/108921?collection_id=326&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108893"
          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">
              54
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Scorched Geyser


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land — Island Mountain
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.14

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      4%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.30
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108893"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108893" src="/boxset_card/108893?collection_id=326&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108923"
          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">
              130
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Fabled Passage


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.05

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      19%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.80
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.10
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108923"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108923" src="/boxset_card/108923?collection_id=326&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109138"
          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">
              347
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc 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">
                  $0.97

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      5%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.18
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109138"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109138" src="/boxset_card/109138?collection_id=326&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109049"
          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">
              258
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Twinflame


            </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-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.78

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      5%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.51
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109049"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109049" src="/boxset_card/109049?collection_id=326&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109159"
          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">
              369
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Exotic Orchard


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.66

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      5%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.09
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.14
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109159"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109159" src="/boxset_card/109159?collection_id=326&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109164"
          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">
              374
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Frostboil Snarl


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.58

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      100%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.06
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.14
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109164"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109164" src="/boxset_card/109164?collection_id=326&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108980"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              188
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Archmage Emeritus


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Human Wizard
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i><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">
                  $0.57

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      8%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.52
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.46
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108980"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108980" src="/boxset_card/108980?collection_id=326&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108920"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              127
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-uncommon ss-fw ss-2x mr-4"></i>
              Arcane Signet


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.53

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.33
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.24
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108920"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108920" src="/boxset_card/108920?collection_id=326&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108996"
          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">
              204
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Thunderclap Drake


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Drake
            </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">
                  $0.50

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      7%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.26
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.19
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108996"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108996" src="/boxset_card/108996?collection_id=326&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108981"
          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">
              190
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-mythic ss-fw ss-2x mr-4"></i>
              Brazen Borrower // Petty Theft


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Faerie Rogue
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-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">
                  $0.48

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      32%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.33
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.19
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108981"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108981" src="/boxset_card/108981?collection_id=326&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109033"
          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">
              242
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Cursed Mirror


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.47

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      39%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.40
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109033"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109033" src="/boxset_card/109033?collection_id=326&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109028"
          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">
              237
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-common ss-fw ss-2x mr-4"></i>
              Big Score


            </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-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.44

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.72
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.11
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109028"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109028" src="/boxset_card/109028?collection_id=326&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108837"
          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-soc ss-mythic ss-fw ss-2x mr-4"></i>
              Muddle, the Ever-Changing


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Elemental Otter Shapeshifter
            </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-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.40

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      18%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </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="108837"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108837" src="/boxset_card/108837?collection_id=326&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109198"
          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">
              408
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Sulfur Falls


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.39

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      34%
                    </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.09
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.09
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109198"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109198" src="/boxset_card/109198?collection_id=326&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109030"
          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">
              239
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Chaos Warp


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.38

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.17
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.33
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109030"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109030" src="/boxset_card/109030?collection_id=326&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109102"
          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">
              311
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-mythic ss-fw ss-2x mr-4"></i>
              Galazeth Prismari


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Elder 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-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></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">
                  $0.38

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      23%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.13
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109102"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109102" src="/boxset_card/109102?collection_id=326&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108206"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              8
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-mythic ss-fw ss-2x mr-4"></i>
              Rootha, Mastering the Moment


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Orc Sorcerer
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.36

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      5%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108206"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108206" src="/boxset_card/108206?collection_id=326&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108915"
          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">
              122
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Determined Iteration


            </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-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.35

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      13%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.07
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.12
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108915"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108915" src="/boxset_card/108915?collection_id=326&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109043"
          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">
              252
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Rionya, Fire Dancer


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Human Wizard
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></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">
                  $0.34

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      15%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.53
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109043"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109043" src="/boxset_card/109043?collection_id=326&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108986"
          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">
              194
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-common ss-fw ss-2x mr-4"></i>
              Deep Analysis


            </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-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.33

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      10%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.14
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108986"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108986" src="/boxset_card/108986?collection_id=326&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109025"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              234
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-uncommon ss-fw ss-2x mr-4"></i>
              Abrade


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.33

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      18%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.03
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.16
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109025"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109025" src="/boxset_card/109025?collection_id=326&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109044"
          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">
              253
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Rousing Refrain


            </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-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">
                  $0.32

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.09
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.20
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109044"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109044" src="/boxset_card/109044?collection_id=326&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109154"
          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">
              364
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Cascade Bluffs


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.32

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.19
            </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="109154"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109154" src="/boxset_card/109154?collection_id=326&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109262"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              211
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-sos ss-uncommon ss-fw ss-2x mr-4"></i>
              Prismari Charm


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-u'></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">
                  $0.32

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.03
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109262"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109262" src="/boxset_card/109262?collection_id=326&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108983"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              191
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Curiosity Crafter


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Bird Wizard
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></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">
                  $0.31

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      11%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.12
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.25
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108983"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108983" src="/boxset_card/108983?collection_id=326&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108987"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              195
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Dig Through Time


            </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-6'></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">
                  $0.31

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      24%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.08
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.26
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108987"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108987" src="/boxset_card/108987?collection_id=326&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109039"
          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">
              248
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-mythic ss-fw ss-2x mr-4"></i>
              Manaform Hellkite


            </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-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">
                  $0.31

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      11%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </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="109039"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109039" src="/boxset_card/109039?collection_id=326&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109041"
          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">
              250
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Plargg and Nassari


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Orc Efreet
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.31

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.11
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.46
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109041"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109041" src="/boxset_card/109041?collection_id=326&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109048"
          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">
              257
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-uncommon ss-fw ss-2x mr-4"></i>
              Throes of Chaos


            </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-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.31

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      19%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109048"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109048" src="/boxset_card/109048?collection_id=326&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109051"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              260
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-uncommon ss-fw ss-2x mr-4"></i>
              Volcanic Torrent


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-4'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.31

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.15
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109051"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109051" src="/boxset_card/109051?collection_id=326&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108922"
          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-soc ss-common ss-fw ss-2x mr-4"></i>
              Command Tower


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.30

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      12%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.08
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.38
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108922"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108922" src="/boxset_card/108922?collection_id=326&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108978"
          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">
              186
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-uncommon ss-fw ss-2x mr-4"></i>
              Aether Gale


            </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-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">
                  $0.30

                    <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">
                $0.01
            </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="108978"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108978" src="/boxset_card/108978?collection_id=326&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109122"
          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">
              331
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-uncommon ss-fw ss-2x mr-4"></i>
              Stormcatch Mentor


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Otter Wizard
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-u'></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">
                  $0.30

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      6%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.24
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109122"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109122" src="/boxset_card/109122?collection_id=326&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109168"
          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">
              378
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Hall of Oracles


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.30

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      11%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </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.04
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109168"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109168" src="/boxset_card/109168?collection_id=326&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109194"
          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">
              404
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Shivan Reef


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.30

                    <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">
                $0.12
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.12
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109194"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109194" src="/boxset_card/109194?collection_id=326&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109034"
          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">
              243
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Dance with Calamity


            </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-7'></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">
                  $0.29

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      9%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.09
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.50
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109034"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109034" src="/boxset_card/109034?collection_id=326&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 89 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=326&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next">2</a><a href="/load_collection?collection_id=326&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next" aria-label="Next">&gt;</a></nav>
    </div>
</div>

</template></turbo-stream>