<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="216" 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="58286"
  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-one 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">
            Solphim, Mayhem Dominus
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $46.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="Solphim, Mayhem Dominus" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/b/1b6ac6a1-d792-473a-a189-5282ae7559a7.jpg?1783917900" />

        <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">
            Solphim, Mayhem Dominus
        </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 — Phyrexian Horror</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><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="Solphim, Mayhem Dominus" src="https://cards.scryfall.io/large/front/1/b/1b6ac6a1-d792-473a-a189-5282ae7559a7.jpg?1783917900" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:44.87},{&quot;2026-06-11&quot;:44.87},{&quot;2026-06-12&quot;:44.87},{&quot;2026-06-13&quot;:44.8},{&quot;2026-06-14&quot;:44.8},{&quot;2026-06-15&quot;:45.04},{&quot;2026-06-16&quot;:45.04},{&quot;2026-06-17&quot;:45.76},{&quot;2026-06-18&quot;:45.76},{&quot;2026-06-19&quot;:45.76},{&quot;2026-06-20&quot;:45.76},{&quot;2026-06-21&quot;:45.89},{&quot;2026-06-22&quot;:45.89},{&quot;2026-06-23&quot;:46.53},{&quot;2026-06-24&quot;:46.53},{&quot;2026-06-25&quot;:46.53},{&quot;2026-06-26&quot;:46.53},{&quot;2026-06-27&quot;:46.53},{&quot;2026-06-28&quot;:46.53},{&quot;2026-06-29&quot;:46.53},{&quot;2026-06-30&quot;:46.53},{&quot;2026-07-01&quot;:46.53},{&quot;2026-07-02&quot;:46.53},{&quot;2026-07-03&quot;:46.78},{&quot;2026-07-04&quot;:46.78},{&quot;2026-07-05&quot;:46.78},{&quot;2026-07-06&quot;:46.78},{&quot;2026-07-07&quot;:46.78},{&quot;2026-07-08&quot;:46.78},{&quot;2026-07-09&quot;:46.78},{&quot;2026-07-10&quot;:46.78},{&quot;2026-07-11&quot;:46.83},{&quot;2026-07-12&quot;:46.83},{&quot;2026-07-13&quot;:46.83},{&quot;2026-07-14&quot;:46.83},{&quot;2026-07-15&quot;:46.83},{&quot;2026-07-16&quot;:46.83},{&quot;2026-07-17&quot;:47.19},{&quot;2026-07-18&quot;:47.19},{&quot;2026-07-19&quot;:47.49},{&quot;2026-07-20&quot;:47.49},{&quot;2026-07-21&quot;:47.49},{&quot;2026-07-23&quot;:47.49},{&quot;2026-07-25&quot;:47.49},{&quot;2026-07-26&quot;:47.49},{&quot;2026-07-27&quot;:47.49},{&quot;2026-07-29&quot;:47.49},{&quot;2026-07-30&quot;:47.49},{&quot;2026-07-31&quot;:47.49},{&quot;2026-08-01&quot;:47.49},{&quot;2026-08-02&quot;:48.12},{&quot;2026-08-03&quot;:48.12},{&quot;2026-08-04&quot;:48.87},{&quot;2026-08-05&quot;:48.87},{&quot;2026-08-07&quot;:48.24},{&quot;2026-08-08&quot;:48.37},{&quot;2026-08-09&quot;:48.37},{&quot;2026-08-10&quot;:48.37},{&quot;2026-08-11&quot;:48.37},{&quot;2026-08-12&quot;:48.66},{&quot;2026-08-13&quot;:49.0},{&quot;2026-08-14&quot;:49.0},{&quot;2026-08-15&quot;:49.0},{&quot;2026-08-16&quot;:49.0},{&quot;2026-08-17&quot;:49.0},{&quot;2026-08-18&quot;:49.0},{&quot;2026-08-19&quot;:49.0},{&quot;2026-08-20&quot;:49.0},{&quot;2026-08-21&quot;:47.45},{&quot;2026-08-22&quot;:47.45},{&quot;2026-08-23&quot;:47.45},{&quot;2026-08-24&quot;:47.45},{&quot;2026-08-25&quot;:47.45},{&quot;2026-08-26&quot;:47.45},{&quot;2026-08-27&quot;:47.45},{&quot;2026-08-28&quot;:47.45},{&quot;2026-08-29&quot;:47.45},{&quot;2026-08-30&quot;:47.45},{&quot;2026-08-31&quot;:46.75},{&quot;2026-09-01&quot;:46.75},{&quot;2026-09-02&quot;:46.95},{&quot;2026-09-03&quot;:46.46},{&quot;2026-09-04&quot;:46.57},{&quot;2026-09-05&quot;:46.22},{&quot;2026-09-06&quot;:45.69},{&quot;2026-09-07&quot;:46.29},{&quot;2026-09-08&quot;:46.29},{&quot;2026-09-09&quot;:46.39},{&quot;2026-09-10&quot;:46.39},{&quot;2026-09-11&quot;:46.8}],&quot;normal&quot;:[]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="51516"
  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-mul 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">
            Ragavan, Nimble Pilferer
        </span>


      </div>

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

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

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

        <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">
            Ragavan, Nimble Pilferer
        </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 — Monkey Pirate</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Ragavan, Nimble Pilferer" src="https://cards.scryfall.io/large/front/f/c/fc898fec-4cc6-4587-b556-c5a8d38ccbd0.jpg?1783916872" />
    </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">
                $44.90
              </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">
                $65.29
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-12&quot;:59.93},{&quot;2026-06-13&quot;:59.93},{&quot;2026-06-14&quot;:59.93},{&quot;2026-06-15&quot;:59.93},{&quot;2026-06-16&quot;:59.88},{&quot;2026-06-17&quot;:60.01},{&quot;2026-06-18&quot;:60.01},{&quot;2026-06-19&quot;:60.42},{&quot;2026-06-20&quot;:60.42},{&quot;2026-06-21&quot;:60.42},{&quot;2026-06-22&quot;:60.42},{&quot;2026-06-23&quot;:60.42},{&quot;2026-06-24&quot;:60.42},{&quot;2026-06-25&quot;:60.42},{&quot;2026-06-26&quot;:60.42},{&quot;2026-06-27&quot;:60.42},{&quot;2026-06-28&quot;:60.57},{&quot;2026-06-29&quot;:60.68},{&quot;2026-06-30&quot;:61.63},{&quot;2026-07-01&quot;:61.84},{&quot;2026-07-02&quot;:61.43},{&quot;2026-07-03&quot;:61.44},{&quot;2026-07-04&quot;:61.44},{&quot;2026-07-05&quot;:61.44},{&quot;2026-07-06&quot;:62.53},{&quot;2026-07-07&quot;:62.63},{&quot;2026-07-08&quot;:62.63},{&quot;2026-07-09&quot;:63.05},{&quot;2026-07-10&quot;:63.05},{&quot;2026-07-11&quot;:63.05},{&quot;2026-07-12&quot;:63.05},{&quot;2026-07-13&quot;:63.05},{&quot;2026-07-14&quot;:63.73},{&quot;2026-07-15&quot;:64.33},{&quot;2026-07-16&quot;:64.33},{&quot;2026-07-17&quot;:64.59},{&quot;2026-07-18&quot;:65.07},{&quot;2026-07-19&quot;:65.07},{&quot;2026-07-20&quot;:65.07},{&quot;2026-07-21&quot;:65.07},{&quot;2026-07-23&quot;:65.07},{&quot;2026-07-24&quot;:65.23},{&quot;2026-07-25&quot;:65.23},{&quot;2026-07-26&quot;:65.23},{&quot;2026-07-27&quot;:62.68},{&quot;2026-07-28&quot;:62.68},{&quot;2026-07-29&quot;:62.68},{&quot;2026-07-30&quot;:62.68},{&quot;2026-07-31&quot;:65.15},{&quot;2026-08-01&quot;:65.15},{&quot;2026-08-02&quot;:65.15},{&quot;2026-08-03&quot;:65.15},{&quot;2026-08-04&quot;:65.15},{&quot;2026-08-05&quot;:65.15},{&quot;2026-08-07&quot;:65.21},{&quot;2026-08-08&quot;:65.21},{&quot;2026-08-09&quot;:65.34},{&quot;2026-08-10&quot;:65.34},{&quot;2026-08-11&quot;:65.34},{&quot;2026-08-12&quot;:65.24},{&quot;2026-08-13&quot;:65.94},{&quot;2026-08-14&quot;:65.94},{&quot;2026-08-15&quot;:65.98},{&quot;2026-08-16&quot;:65.98},{&quot;2026-08-17&quot;:65.98},{&quot;2026-08-18&quot;:66.1},{&quot;2026-08-19&quot;:66.1},{&quot;2026-08-20&quot;:66.1},{&quot;2026-08-21&quot;:66.1},{&quot;2026-08-22&quot;:66.25},{&quot;2026-08-23&quot;:66.25},{&quot;2026-08-24&quot;:66.82},{&quot;2026-08-25&quot;:66.82},{&quot;2026-08-26&quot;:66.82},{&quot;2026-08-27&quot;:66.82},{&quot;2026-08-28&quot;:66.9},{&quot;2026-08-29&quot;:66.9},{&quot;2026-08-30&quot;:66.74},{&quot;2026-08-31&quot;:66.74},{&quot;2026-09-01&quot;:66.38},{&quot;2026-09-02&quot;:66.38},{&quot;2026-09-03&quot;:66.38},{&quot;2026-09-04&quot;:66.01},{&quot;2026-09-05&quot;:66.01},{&quot;2026-09-06&quot;:66.01},{&quot;2026-09-07&quot;:65.65},{&quot;2026-09-08&quot;:65.45},{&quot;2026-09-09&quot;:65.29},{&quot;2026-09-10&quot;:65.29},{&quot;2026-09-11&quot;:65.29}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:50.51},{&quot;2026-06-13&quot;:50.51},{&quot;2026-06-14&quot;:50.51},{&quot;2026-06-15&quot;:50.44},{&quot;2026-06-16&quot;:50.44},{&quot;2026-06-17&quot;:50.24},{&quot;2026-06-18&quot;:50.31},{&quot;2026-06-19&quot;:50.51},{&quot;2026-06-20&quot;:51.24},{&quot;2026-06-21&quot;:51.24},{&quot;2026-06-22&quot;:52.78},{&quot;2026-06-23&quot;:52.48},{&quot;2026-06-24&quot;:52.48},{&quot;2026-06-25&quot;:52.67},{&quot;2026-06-26&quot;:52.59},{&quot;2026-06-27&quot;:52.54},{&quot;2026-06-28&quot;:52.54},{&quot;2026-06-29&quot;:52.72},{&quot;2026-06-30&quot;:52.58},{&quot;2026-07-01&quot;:52.57},{&quot;2026-07-02&quot;:52.57},{&quot;2026-07-03&quot;:52.37},{&quot;2026-07-04&quot;:52.4},{&quot;2026-07-05&quot;:54.05},{&quot;2026-07-06&quot;:54.55},{&quot;2026-07-07&quot;:53.82},{&quot;2026-07-08&quot;:53.35},{&quot;2026-07-09&quot;:52.1},{&quot;2026-07-10&quot;:51.89},{&quot;2026-07-11&quot;:51.89},{&quot;2026-07-12&quot;:51.56},{&quot;2026-07-13&quot;:52.06},{&quot;2026-07-14&quot;:51.48},{&quot;2026-07-15&quot;:51.23},{&quot;2026-07-16&quot;:51.35},{&quot;2026-07-17&quot;:51.13},{&quot;2026-07-18&quot;:51.13},{&quot;2026-07-19&quot;:48.87},{&quot;2026-07-20&quot;:47.74},{&quot;2026-07-21&quot;:47.74},{&quot;2026-07-23&quot;:47.21},{&quot;2026-07-24&quot;:46.2},{&quot;2026-07-25&quot;:45.81},{&quot;2026-07-26&quot;:45.78},{&quot;2026-07-27&quot;:45.78},{&quot;2026-07-28&quot;:45.92},{&quot;2026-07-29&quot;:45.62},{&quot;2026-07-30&quot;:46.38},{&quot;2026-07-31&quot;:46.3},{&quot;2026-08-01&quot;:45.98},{&quot;2026-08-02&quot;:46.79},{&quot;2026-08-03&quot;:46.43},{&quot;2026-08-04&quot;:47.05},{&quot;2026-08-05&quot;:46.95},{&quot;2026-08-07&quot;:45.25},{&quot;2026-08-08&quot;:45.23},{&quot;2026-08-09&quot;:45.23},{&quot;2026-08-10&quot;:45.23},{&quot;2026-08-11&quot;:45.43},{&quot;2026-08-12&quot;:45.43},{&quot;2026-08-13&quot;:44.79},{&quot;2026-08-14&quot;:45.41},{&quot;2026-08-15&quot;:46.08},{&quot;2026-08-16&quot;:45.86},{&quot;2026-08-17&quot;:46.95},{&quot;2026-08-18&quot;:46.86},{&quot;2026-08-19&quot;:46.86},{&quot;2026-08-20&quot;:46.86},{&quot;2026-08-21&quot;:48.3},{&quot;2026-08-22&quot;:49.7},{&quot;2026-08-23&quot;:49.68},{&quot;2026-08-24&quot;:48.34},{&quot;2026-08-25&quot;:47.78},{&quot;2026-08-26&quot;:47.91},{&quot;2026-08-27&quot;:47.26},{&quot;2026-08-28&quot;:47.26},{&quot;2026-08-29&quot;:47.26},{&quot;2026-08-30&quot;:47.57},{&quot;2026-08-31&quot;:47.57},{&quot;2026-09-01&quot;:47.57},{&quot;2026-09-02&quot;:47.57},{&quot;2026-09-03&quot;:47.64},{&quot;2026-09-04&quot;:47.52},{&quot;2026-09-05&quot;:46.56},{&quot;2026-09-06&quot;:45.94},{&quot;2026-09-07&quot;:45.94},{&quot;2026-09-08&quot;:44.54},{&quot;2026-09-09&quot;:44.62},{&quot;2026-09-10&quot;:44.68},{&quot;2026-09-11&quot;:44.9}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Enchantment Land — Urza&#39;s Saga
      </div>

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

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

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

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

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

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

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Urza&#39;s Saga
        </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 Land — Urza&#39;s Saga</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="Urza&#39;s Saga" src="https://cards.scryfall.io/large/front/9/d/9df37469-6e2d-4783-aad3-c897ecbc967d.jpg?1783919922" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-11&quot;:41.61},{&quot;2026-06-12&quot;:41.68},{&quot;2026-06-13&quot;:41.68},{&quot;2026-06-14&quot;:41.8},{&quot;2026-06-15&quot;:41.8},{&quot;2026-06-16&quot;:41.8},{&quot;2026-06-17&quot;:41.8},{&quot;2026-06-18&quot;:42.01},{&quot;2026-06-19&quot;:42.01},{&quot;2026-06-20&quot;:42.07},{&quot;2026-06-21&quot;:42.14},{&quot;2026-06-22&quot;:42.14},{&quot;2026-06-23&quot;:42.14},{&quot;2026-06-24&quot;:42.14},{&quot;2026-06-25&quot;:42.14},{&quot;2026-06-26&quot;:42.14},{&quot;2026-06-27&quot;:42.14},{&quot;2026-06-28&quot;:42.14},{&quot;2026-06-29&quot;:42.14},{&quot;2026-06-30&quot;:42.14},{&quot;2026-07-01&quot;:42.14},{&quot;2026-07-02&quot;:42.14},{&quot;2026-07-03&quot;:42.14},{&quot;2026-07-04&quot;:42.14},{&quot;2026-07-05&quot;:42.14},{&quot;2026-07-06&quot;:42.14},{&quot;2026-07-07&quot;:41.95},{&quot;2026-07-08&quot;:42.14},{&quot;2026-07-09&quot;:42.52},{&quot;2026-07-10&quot;:42.68},{&quot;2026-07-11&quot;:42.68},{&quot;2026-07-12&quot;:42.68},{&quot;2026-07-13&quot;:42.68},{&quot;2026-07-14&quot;:42.68},{&quot;2026-07-15&quot;:42.48},{&quot;2026-07-16&quot;:42.48},{&quot;2026-07-17&quot;:42.33},{&quot;2026-07-18&quot;:42.17},{&quot;2026-07-19&quot;:42.17},{&quot;2026-07-20&quot;:41.88},{&quot;2026-07-21&quot;:41.88},{&quot;2026-07-23&quot;:41.77},{&quot;2026-07-25&quot;:41.77},{&quot;2026-07-26&quot;:43.1},{&quot;2026-07-27&quot;:43.07},{&quot;2026-07-28&quot;:43.07},{&quot;2026-07-29&quot;:43.07},{&quot;2026-07-30&quot;:42.47},{&quot;2026-07-31&quot;:42.81},{&quot;2026-08-01&quot;:42.81},{&quot;2026-08-02&quot;:42.79},{&quot;2026-08-03&quot;:42.79},{&quot;2026-08-04&quot;:42.63},{&quot;2026-08-05&quot;:42.63},{&quot;2026-08-07&quot;:42.21},{&quot;2026-08-08&quot;:42.21},{&quot;2026-08-09&quot;:42.21},{&quot;2026-08-10&quot;:42.21},{&quot;2026-08-11&quot;:42.21},{&quot;2026-08-12&quot;:42.21},{&quot;2026-08-13&quot;:42.21},{&quot;2026-08-14&quot;:41.93},{&quot;2026-08-15&quot;:42.13},{&quot;2026-08-16&quot;:42.13},{&quot;2026-08-17&quot;:42.13},{&quot;2026-08-18&quot;:42.13},{&quot;2026-08-19&quot;:42.29},{&quot;2026-08-20&quot;:42.29},{&quot;2026-08-21&quot;:42.37},{&quot;2026-08-22&quot;:42.45},{&quot;2026-08-23&quot;:42.45},{&quot;2026-08-24&quot;:42.45},{&quot;2026-08-25&quot;:42.45},{&quot;2026-08-26&quot;:41.96},{&quot;2026-08-27&quot;:41.96},{&quot;2026-08-28&quot;:41.96},{&quot;2026-08-29&quot;:41.96},{&quot;2026-08-30&quot;:41.96},{&quot;2026-08-31&quot;:41.95},{&quot;2026-09-01&quot;:41.95},{&quot;2026-09-02&quot;:41.95},{&quot;2026-09-03&quot;:41.84},{&quot;2026-09-04&quot;:41.84},{&quot;2026-09-05&quot;:41.84},{&quot;2026-09-06&quot;:41.95},{&quot;2026-09-07&quot;:41.62},{&quot;2026-09-08&quot;:41.62},{&quot;2026-09-09&quot;:41.62},{&quot;2026-09-10&quot;:41.62},{&quot;2026-09-11&quot;:41.62}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

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

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Jeska&#39;s Will
        </h3>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="94816"
  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-fca 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">
            Purphoros, God of the Forge
        </span>


      </div>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Purphoros, God of the Forge" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/f/b/fbd25e79-d29b-4b51-9653-3932c980b931.jpg?1783906391" />

        <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">
            Purphoros, God of the Forge
        </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 Enchantment Creature — God</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="Purphoros, God of the Forge" src="https://cards.scryfall.io/large/front/f/b/fbd25e79-d29b-4b51-9653-3932c980b931.jpg?1783906391" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:105.91},{&quot;2026-06-14&quot;:107.17},{&quot;2026-06-15&quot;:107.17},{&quot;2026-06-16&quot;:108.06},{&quot;2026-06-17&quot;:109.31},{&quot;2026-06-18&quot;:109.31},{&quot;2026-06-19&quot;:110.32},{&quot;2026-06-20&quot;:110.32},{&quot;2026-06-21&quot;:110.32},{&quot;2026-06-22&quot;:112.23},{&quot;2026-06-23&quot;:112.23},{&quot;2026-06-24&quot;:112.23},{&quot;2026-06-25&quot;:114.55},{&quot;2026-06-26&quot;:114.72},{&quot;2026-06-27&quot;:114.72},{&quot;2026-06-28&quot;:114.72},{&quot;2026-06-29&quot;:114.72},{&quot;2026-06-30&quot;:114.72},{&quot;2026-07-01&quot;:114.72},{&quot;2026-07-02&quot;:117.94},{&quot;2026-07-03&quot;:114.45},{&quot;2026-07-04&quot;:114.45},{&quot;2026-07-05&quot;:114.45},{&quot;2026-07-06&quot;:115.74},{&quot;2026-07-07&quot;:115.56},{&quot;2026-07-08&quot;:115.56},{&quot;2026-07-09&quot;:115.56},{&quot;2026-07-10&quot;:116.8},{&quot;2026-07-11&quot;:116.8},{&quot;2026-07-12&quot;:116.8},{&quot;2026-07-13&quot;:118.39},{&quot;2026-07-14&quot;:120.28},{&quot;2026-07-15&quot;:120.28},{&quot;2026-07-16&quot;:120.28},{&quot;2026-07-17&quot;:120.28},{&quot;2026-07-18&quot;:122.32},{&quot;2026-07-19&quot;:122.32},{&quot;2026-07-20&quot;:122.32},{&quot;2026-07-21&quot;:122.32},{&quot;2026-07-22&quot;:121.88},{&quot;2026-07-23&quot;:121.88},{&quot;2026-07-24&quot;:121.88},{&quot;2026-07-25&quot;:121.88},{&quot;2026-07-26&quot;:121.88},{&quot;2026-07-27&quot;:123.83},{&quot;2026-07-28&quot;:123.83},{&quot;2026-07-29&quot;:125.82},{&quot;2026-07-30&quot;:125.82},{&quot;2026-07-31&quot;:125.82},{&quot;2026-08-01&quot;:125.82},{&quot;2026-08-02&quot;:129.41},{&quot;2026-08-03&quot;:129.41},{&quot;2026-08-04&quot;:131.88},{&quot;2026-08-05&quot;:133.94},{&quot;2026-08-07&quot;:138.31},{&quot;2026-08-08&quot;:138.31},{&quot;2026-08-09&quot;:138.31},{&quot;2026-08-10&quot;:138.31},{&quot;2026-08-11&quot;:140.82},{&quot;2026-08-12&quot;:140.82},{&quot;2026-08-13&quot;:140.82},{&quot;2026-08-14&quot;:142.59},{&quot;2026-08-15&quot;:142.59},{&quot;2026-08-16&quot;:144.35},{&quot;2026-08-17&quot;:144.35},{&quot;2026-08-18&quot;:144.35},{&quot;2026-08-19&quot;:144.35},{&quot;2026-08-20&quot;:144.35},{&quot;2026-08-21&quot;:144.35},{&quot;2026-08-22&quot;:145.94},{&quot;2026-08-23&quot;:145.94},{&quot;2026-08-24&quot;:145.94},{&quot;2026-08-25&quot;:145.94},{&quot;2026-08-26&quot;:148.14},{&quot;2026-08-27&quot;:149.15},{&quot;2026-08-28&quot;:149.15},{&quot;2026-08-29&quot;:149.15},{&quot;2026-08-30&quot;:153.07},{&quot;2026-08-31&quot;:153.07},{&quot;2026-09-01&quot;:153.07},{&quot;2026-09-02&quot;:153.07},{&quot;2026-09-03&quot;:155.67},{&quot;2026-09-04&quot;:155.67},{&quot;2026-09-05&quot;:154.42},{&quot;2026-09-06&quot;:154.42},{&quot;2026-09-07&quot;:156.91},{&quot;2026-09-08&quot;:156.91},{&quot;2026-09-09&quot;:156.91},{&quot;2026-09-10&quot;:156.91},{&quot;2026-09-11&quot;:156.91}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:30.27},{&quot;2026-06-14&quot;:29.74},{&quot;2026-06-15&quot;:29.68},{&quot;2026-06-16&quot;:29.91},{&quot;2026-06-17&quot;:29.54},{&quot;2026-06-18&quot;:29.67},{&quot;2026-06-19&quot;:29.56},{&quot;2026-06-20&quot;:29.15},{&quot;2026-06-21&quot;:29.08},{&quot;2026-06-22&quot;:29.15},{&quot;2026-06-23&quot;:30.14},{&quot;2026-06-24&quot;:30.67},{&quot;2026-06-25&quot;:30.15},{&quot;2026-06-26&quot;:30.48},{&quot;2026-06-27&quot;:30.17},{&quot;2026-06-28&quot;:30.67},{&quot;2026-06-29&quot;:30.81},{&quot;2026-06-30&quot;:30.81},{&quot;2026-07-01&quot;:31.27},{&quot;2026-07-02&quot;:31.01},{&quot;2026-07-03&quot;:29.75},{&quot;2026-07-04&quot;:29.08},{&quot;2026-07-05&quot;:27.49},{&quot;2026-07-06&quot;:27.22},{&quot;2026-07-07&quot;:26.95},{&quot;2026-07-08&quot;:27.11},{&quot;2026-07-09&quot;:26.7},{&quot;2026-07-10&quot;:26.92},{&quot;2026-07-11&quot;:26.84},{&quot;2026-07-12&quot;:26.83},{&quot;2026-07-13&quot;:27.11},{&quot;2026-07-14&quot;:27.65},{&quot;2026-07-15&quot;:28.22},{&quot;2026-07-16&quot;:28.87},{&quot;2026-07-17&quot;:29.36},{&quot;2026-07-18&quot;:29.88},{&quot;2026-07-19&quot;:29.7},{&quot;2026-07-20&quot;:29.38},{&quot;2026-07-21&quot;:29.45},{&quot;2026-07-22&quot;:29.62},{&quot;2026-07-23&quot;:29.62},{&quot;2026-07-24&quot;:29.16},{&quot;2026-07-25&quot;:29.11},{&quot;2026-07-26&quot;:29.91},{&quot;2026-07-27&quot;:29.89},{&quot;2026-07-28&quot;:29.89},{&quot;2026-07-29&quot;:30.29},{&quot;2026-07-30&quot;:30.45},{&quot;2026-07-31&quot;:30.68},{&quot;2026-08-01&quot;:30.64},{&quot;2026-08-02&quot;:31.08},{&quot;2026-08-03&quot;:31.06},{&quot;2026-08-04&quot;:30.94},{&quot;2026-08-05&quot;:31.25},{&quot;2026-08-07&quot;:31.64},{&quot;2026-08-08&quot;:31.64},{&quot;2026-08-09&quot;:31.64},{&quot;2026-08-10&quot;:31.43},{&quot;2026-08-11&quot;:31.45},{&quot;2026-08-12&quot;:31.46},{&quot;2026-08-13&quot;:31.51},{&quot;2026-08-14&quot;:31.34},{&quot;2026-08-15&quot;:31.35},{&quot;2026-08-16&quot;:31.22},{&quot;2026-08-17&quot;:31.25},{&quot;2026-08-18&quot;:31.28},{&quot;2026-08-19&quot;:30.89},{&quot;2026-08-20&quot;:30.89},{&quot;2026-08-21&quot;:30.61},{&quot;2026-08-22&quot;:30.52},{&quot;2026-08-23&quot;:30.23},{&quot;2026-08-24&quot;:30.23},{&quot;2026-08-25&quot;:29.78},{&quot;2026-08-26&quot;:30.19},{&quot;2026-08-27&quot;:30.19},{&quot;2026-08-28&quot;:30.33},{&quot;2026-08-29&quot;:30.33},{&quot;2026-08-30&quot;:29.76},{&quot;2026-08-31&quot;:29.76},{&quot;2026-09-01&quot;:29.86},{&quot;2026-09-02&quot;:29.86},{&quot;2026-09-03&quot;:29.65},{&quot;2026-09-04&quot;:29.93},{&quot;2026-09-05&quot;:30.0},{&quot;2026-09-06&quot;:30.03},{&quot;2026-09-07&quot;:30.03},{&quot;2026-09-08&quot;:30.03},{&quot;2026-09-09&quot;:30.02},{&quot;2026-09-10&quot;:30.06},{&quot;2026-09-11&quot;:29.98}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Gamble" src="https://cards.scryfall.io/large/front/8/e/8e37fae5-ddd0-4e16-8581-71579f89d9c5.jpg?1783918462" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-11&quot;:15.51},{&quot;2026-06-12&quot;:15.51},{&quot;2026-06-13&quot;:15.51},{&quot;2026-06-14&quot;:15.75},{&quot;2026-06-15&quot;:15.75},{&quot;2026-06-16&quot;:15.84},{&quot;2026-06-17&quot;:15.75},{&quot;2026-06-18&quot;:16.01},{&quot;2026-06-19&quot;:16.34},{&quot;2026-06-20&quot;:16.34},{&quot;2026-06-21&quot;:16.41},{&quot;2026-06-22&quot;:16.41},{&quot;2026-06-23&quot;:16.47},{&quot;2026-06-24&quot;:16.47},{&quot;2026-06-25&quot;:16.47},{&quot;2026-06-26&quot;:16.48},{&quot;2026-06-27&quot;:16.38},{&quot;2026-06-28&quot;:16.38},{&quot;2026-06-29&quot;:16.35},{&quot;2026-06-30&quot;:16.41},{&quot;2026-07-01&quot;:16.41},{&quot;2026-07-02&quot;:16.69},{&quot;2026-07-03&quot;:16.65},{&quot;2026-07-04&quot;:16.71},{&quot;2026-07-05&quot;:16.74},{&quot;2026-07-06&quot;:16.58},{&quot;2026-07-07&quot;:16.66},{&quot;2026-07-08&quot;:16.71},{&quot;2026-07-09&quot;:16.76},{&quot;2026-07-10&quot;:16.74},{&quot;2026-07-11&quot;:16.72},{&quot;2026-07-12&quot;:16.72},{&quot;2026-07-13&quot;:16.72},{&quot;2026-07-14&quot;:16.8},{&quot;2026-07-15&quot;:16.44},{&quot;2026-07-16&quot;:16.44},{&quot;2026-07-17&quot;:16.4},{&quot;2026-07-18&quot;:16.4},{&quot;2026-07-19&quot;:16.4},{&quot;2026-07-20&quot;:16.42},{&quot;2026-07-21&quot;:16.57},{&quot;2026-07-23&quot;:16.91},{&quot;2026-07-25&quot;:17.05},{&quot;2026-07-26&quot;:17.05},{&quot;2026-07-27&quot;:17.09},{&quot;2026-07-28&quot;:17.13},{&quot;2026-07-29&quot;:17.13},{&quot;2026-07-30&quot;:17.33},{&quot;2026-07-31&quot;:17.23},{&quot;2026-08-01&quot;:17.23},{&quot;2026-08-02&quot;:17.37},{&quot;2026-08-03&quot;:17.37},{&quot;2026-08-04&quot;:17.37},{&quot;2026-08-05&quot;:17.37},{&quot;2026-08-07&quot;:17.64},{&quot;2026-08-08&quot;:17.56},{&quot;2026-08-09&quot;:17.69},{&quot;2026-08-10&quot;:17.69},{&quot;2026-08-11&quot;:17.73},{&quot;2026-08-12&quot;:17.73},{&quot;2026-08-13&quot;:17.91},{&quot;2026-08-14&quot;:18.01},{&quot;2026-08-15&quot;:17.96},{&quot;2026-08-16&quot;:17.8},{&quot;2026-08-17&quot;:17.93},{&quot;2026-08-18&quot;:17.71},{&quot;2026-08-19&quot;:18.11},{&quot;2026-08-20&quot;:18.11},{&quot;2026-08-21&quot;:17.85},{&quot;2026-08-22&quot;:18.09},{&quot;2026-08-23&quot;:18.09},{&quot;2026-08-24&quot;:18.09},{&quot;2026-08-25&quot;:18.09},{&quot;2026-08-26&quot;:18.29},{&quot;2026-08-27&quot;:18.32},{&quot;2026-08-28&quot;:17.99},{&quot;2026-08-29&quot;:17.99},{&quot;2026-08-30&quot;:18.25},{&quot;2026-08-31&quot;:17.46},{&quot;2026-09-01&quot;:17.46},{&quot;2026-09-02&quot;:17.3},{&quot;2026-09-03&quot;:17.38},{&quot;2026-09-04&quot;:17.21},{&quot;2026-09-05&quot;:17.3},{&quot;2026-09-06&quot;:17.3},{&quot;2026-09-07&quot;:17.19},{&quot;2026-09-08&quot;:17.19},{&quot;2026-09-09&quot;:17.19},{&quot;2026-09-10&quot;:17.19},{&quot;2026-09-11&quot;:17.07}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:15.81},{&quot;2026-06-12&quot;:15.76},{&quot;2026-06-13&quot;:15.7},{&quot;2026-06-14&quot;:15.7},{&quot;2026-06-15&quot;:16.02},{&quot;2026-06-16&quot;:15.8},{&quot;2026-06-17&quot;:15.43},{&quot;2026-06-18&quot;:15.25},{&quot;2026-06-19&quot;:15.64},{&quot;2026-06-20&quot;:16.07},{&quot;2026-06-21&quot;:16.47},{&quot;2026-06-22&quot;:16.39},{&quot;2026-06-23&quot;:16.18},{&quot;2026-06-24&quot;:16.18},{&quot;2026-06-25&quot;:16.0},{&quot;2026-06-26&quot;:16.3},{&quot;2026-06-27&quot;:16.32},{&quot;2026-06-28&quot;:16.52},{&quot;2026-06-29&quot;:16.64},{&quot;2026-06-30&quot;:16.8},{&quot;2026-07-01&quot;:16.8},{&quot;2026-07-02&quot;:16.8},{&quot;2026-07-03&quot;:16.8},{&quot;2026-07-04&quot;:16.37},{&quot;2026-07-05&quot;:16.37},{&quot;2026-07-06&quot;:16.66},{&quot;2026-07-07&quot;:16.75},{&quot;2026-07-08&quot;:16.78},{&quot;2026-07-09&quot;:16.87},{&quot;2026-07-10&quot;:17.1},{&quot;2026-07-11&quot;:17.04},{&quot;2026-07-12&quot;:17.03},{&quot;2026-07-13&quot;:17.19},{&quot;2026-07-14&quot;:17.34},{&quot;2026-07-15&quot;:17.29},{&quot;2026-07-16&quot;:17.41},{&quot;2026-07-17&quot;:17.38},{&quot;2026-07-18&quot;:17.61},{&quot;2026-07-19&quot;:17.6},{&quot;2026-07-20&quot;:17.44},{&quot;2026-07-21&quot;:17.55},{&quot;2026-07-23&quot;:17.4},{&quot;2026-07-25&quot;:17.56},{&quot;2026-07-26&quot;:17.52},{&quot;2026-07-27&quot;:17.41},{&quot;2026-07-28&quot;:17.3},{&quot;2026-07-29&quot;:17.63},{&quot;2026-07-30&quot;:17.63},{&quot;2026-07-31&quot;:17.54},{&quot;2026-08-01&quot;:17.54},{&quot;2026-08-02&quot;:17.52},{&quot;2026-08-03&quot;:17.45},{&quot;2026-08-04&quot;:17.45},{&quot;2026-08-05&quot;:17.46},{&quot;2026-08-07&quot;:17.46},{&quot;2026-08-08&quot;:17.46},{&quot;2026-08-09&quot;:17.5},{&quot;2026-08-10&quot;:17.5},{&quot;2026-08-11&quot;:17.5},{&quot;2026-08-12&quot;:17.39},{&quot;2026-08-13&quot;:17.36},{&quot;2026-08-14&quot;:17.36},{&quot;2026-08-15&quot;:17.47},{&quot;2026-08-16&quot;:17.35},{&quot;2026-08-17&quot;:17.54},{&quot;2026-08-18&quot;:16.95},{&quot;2026-08-19&quot;:16.96},{&quot;2026-08-20&quot;:16.96},{&quot;2026-08-21&quot;:16.99},{&quot;2026-08-22&quot;:17.22},{&quot;2026-08-23&quot;:17.67},{&quot;2026-08-24&quot;:17.81},{&quot;2026-08-25&quot;:17.81},{&quot;2026-08-26&quot;:18.33},{&quot;2026-08-27&quot;:18.39},{&quot;2026-08-28&quot;:18.41},{&quot;2026-08-29&quot;:18.41},{&quot;2026-08-30&quot;:18.43},{&quot;2026-08-31&quot;:18.46},{&quot;2026-09-01&quot;:18.46},{&quot;2026-09-02&quot;:18.32},{&quot;2026-09-03&quot;:18.32},{&quot;2026-09-04&quot;:18.0},{&quot;2026-09-05&quot;:18.0},{&quot;2026-09-06&quot;:17.93},{&quot;2026-09-07&quot;:17.98},{&quot;2026-09-08&quot;:17.94},{&quot;2026-09-09&quot;:17.94},{&quot;2026-09-10&quot;:17.86},{&quot;2026-09-11&quot;:17.77}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Delayed Blast Fireball" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/e/5/e59903e3-a344-4218-9d41-8b19a9bc8311.jpg?1783922501" />

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Delayed Blast Fireball" src="https://cards.scryfall.io/large/front/e/5/e59903e3-a344-4218-9d41-8b19a9bc8311.jpg?1783922501" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-11&quot;:17.21},{&quot;2026-06-12&quot;:17.21},{&quot;2026-06-13&quot;:17.2},{&quot;2026-06-14&quot;:17.11},{&quot;2026-06-15&quot;:17.11},{&quot;2026-06-16&quot;:17.11},{&quot;2026-06-17&quot;:17.11},{&quot;2026-06-18&quot;:17.11},{&quot;2026-06-19&quot;:17.11},{&quot;2026-06-20&quot;:17.15},{&quot;2026-06-21&quot;:17.13},{&quot;2026-06-22&quot;:17.13},{&quot;2026-06-23&quot;:17.11},{&quot;2026-06-24&quot;:17.11},{&quot;2026-06-25&quot;:17.08},{&quot;2026-06-26&quot;:16.15},{&quot;2026-06-27&quot;:16.73},{&quot;2026-06-28&quot;:16.09},{&quot;2026-06-29&quot;:15.98},{&quot;2026-06-30&quot;:15.98},{&quot;2026-07-01&quot;:15.98},{&quot;2026-07-02&quot;:15.98},{&quot;2026-07-03&quot;:15.75},{&quot;2026-07-04&quot;:15.59},{&quot;2026-07-05&quot;:15.64},{&quot;2026-07-06&quot;:15.54},{&quot;2026-07-07&quot;:15.1},{&quot;2026-07-08&quot;:15.01},{&quot;2026-07-09&quot;:14.61},{&quot;2026-07-10&quot;:14.77},{&quot;2026-07-11&quot;:15.21},{&quot;2026-07-12&quot;:15.21},{&quot;2026-07-13&quot;:15.25},{&quot;2026-07-14&quot;:15.2},{&quot;2026-07-15&quot;:15.23},{&quot;2026-07-16&quot;:15.11},{&quot;2026-07-17&quot;:15.05},{&quot;2026-07-18&quot;:15.21},{&quot;2026-07-19&quot;:15.41},{&quot;2026-07-20&quot;:15.46},{&quot;2026-07-21&quot;:15.51},{&quot;2026-07-23&quot;:15.31},{&quot;2026-07-25&quot;:15.58},{&quot;2026-07-26&quot;:15.83},{&quot;2026-07-27&quot;:15.85},{&quot;2026-07-28&quot;:15.68},{&quot;2026-07-29&quot;:15.68},{&quot;2026-07-30&quot;:15.68},{&quot;2026-07-31&quot;:15.85},{&quot;2026-08-01&quot;:15.95},{&quot;2026-08-02&quot;:15.88},{&quot;2026-08-03&quot;:15.9},{&quot;2026-08-04&quot;:16.01},{&quot;2026-08-05&quot;:16.13},{&quot;2026-08-07&quot;:15.96},{&quot;2026-08-08&quot;:15.91},{&quot;2026-08-09&quot;:15.9},{&quot;2026-08-10&quot;:15.9},{&quot;2026-08-11&quot;:15.94},{&quot;2026-08-12&quot;:16.04},{&quot;2026-08-13&quot;:16.04},{&quot;2026-08-14&quot;:16.06},{&quot;2026-08-15&quot;:16.06},{&quot;2026-08-16&quot;:15.99},{&quot;2026-08-17&quot;:16.16},{&quot;2026-08-18&quot;:16.18},{&quot;2026-08-19&quot;:15.99},{&quot;2026-08-20&quot;:15.99},{&quot;2026-08-21&quot;:16.35},{&quot;2026-08-22&quot;:16.39},{&quot;2026-08-23&quot;:16.81},{&quot;2026-08-24&quot;:16.97},{&quot;2026-08-25&quot;:17.07},{&quot;2026-08-26&quot;:17.1},{&quot;2026-08-27&quot;:17.1},{&quot;2026-08-28&quot;:17.1},{&quot;2026-08-29&quot;:17.1},{&quot;2026-08-30&quot;:17.1},{&quot;2026-08-31&quot;:17.24},{&quot;2026-09-01&quot;:17.24},{&quot;2026-09-02&quot;:17.23},{&quot;2026-09-03&quot;:17.23},{&quot;2026-09-04&quot;:17.23},{&quot;2026-09-05&quot;:17.08},{&quot;2026-09-06&quot;:17.08},{&quot;2026-09-07&quot;:17.15},{&quot;2026-09-08&quot;:17.22},{&quot;2026-09-09&quot;:16.82},{&quot;2026-09-10&quot;:16.82},{&quot;2026-09-11&quot;:16.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="13555"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-clb ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $14.00
          </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="Descent into Avernus" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/7/c75e9d08-489d-42ee-9513-0984d25d8c4a.jpg?1783922559" />

        <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">
            Descent into Avernus
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Descent into Avernus" src="https://cards.scryfall.io/large/front/c/7/c75e9d08-489d-42ee-9513-0984d25d8c4a.jpg?1783922559" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-12&quot;:13.64},{&quot;2026-06-13&quot;:13.64},{&quot;2026-06-14&quot;:13.64},{&quot;2026-06-15&quot;:13.64},{&quot;2026-06-16&quot;:13.64},{&quot;2026-06-17&quot;:13.61},{&quot;2026-06-18&quot;:13.61},{&quot;2026-06-19&quot;:13.68},{&quot;2026-06-20&quot;:13.68},{&quot;2026-06-21&quot;:13.76},{&quot;2026-06-22&quot;:13.7},{&quot;2026-06-23&quot;:13.64},{&quot;2026-06-24&quot;:13.64},{&quot;2026-06-25&quot;:13.56},{&quot;2026-06-26&quot;:13.56},{&quot;2026-06-27&quot;:13.63},{&quot;2026-06-28&quot;:13.63},{&quot;2026-06-29&quot;:13.6},{&quot;2026-06-30&quot;:13.6},{&quot;2026-07-01&quot;:13.6},{&quot;2026-07-02&quot;:13.6},{&quot;2026-07-03&quot;:13.6},{&quot;2026-07-04&quot;:13.58},{&quot;2026-07-05&quot;:13.58},{&quot;2026-07-06&quot;:13.59},{&quot;2026-07-07&quot;:13.59},{&quot;2026-07-08&quot;:13.63},{&quot;2026-07-09&quot;:13.63},{&quot;2026-07-10&quot;:13.63},{&quot;2026-07-11&quot;:13.63},{&quot;2026-07-12&quot;:13.64},{&quot;2026-07-13&quot;:13.64},{&quot;2026-07-14&quot;:13.63},{&quot;2026-07-15&quot;:13.63},{&quot;2026-07-16&quot;:13.63},{&quot;2026-07-17&quot;:13.65},{&quot;2026-07-18&quot;:13.65},{&quot;2026-07-19&quot;:13.6},{&quot;2026-07-20&quot;:13.59},{&quot;2026-07-21&quot;:13.54},{&quot;2026-07-23&quot;:13.55},{&quot;2026-07-24&quot;:13.58},{&quot;2026-07-25&quot;:13.58},{&quot;2026-07-26&quot;:13.49},{&quot;2026-07-27&quot;:13.57},{&quot;2026-07-28&quot;:13.57},{&quot;2026-07-29&quot;:13.48},{&quot;2026-07-30&quot;:13.48},{&quot;2026-07-31&quot;:13.48},{&quot;2026-08-01&quot;:13.48},{&quot;2026-08-02&quot;:13.48},{&quot;2026-08-03&quot;:13.63},{&quot;2026-08-04&quot;:13.64},{&quot;2026-08-05&quot;:13.64},{&quot;2026-08-07&quot;:13.64},{&quot;2026-08-08&quot;:13.48},{&quot;2026-08-09&quot;:13.41},{&quot;2026-08-10&quot;:13.41},{&quot;2026-08-11&quot;:13.41},{&quot;2026-08-12&quot;:13.41},{&quot;2026-08-13&quot;:13.34},{&quot;2026-08-14&quot;:13.34},{&quot;2026-08-15&quot;:13.45},{&quot;2026-08-16&quot;:13.45},{&quot;2026-08-17&quot;:13.49},{&quot;2026-08-18&quot;:13.47},{&quot;2026-08-19&quot;:13.42},{&quot;2026-08-20&quot;:13.42},{&quot;2026-08-21&quot;:13.39},{&quot;2026-08-22&quot;:13.49},{&quot;2026-08-23&quot;:13.49},{&quot;2026-08-24&quot;:13.32},{&quot;2026-08-25&quot;:13.24},{&quot;2026-08-26&quot;:12.91},{&quot;2026-08-27&quot;:12.91},{&quot;2026-08-28&quot;:12.91},{&quot;2026-08-29&quot;:12.91},{&quot;2026-08-30&quot;:12.85},{&quot;2026-08-31&quot;:12.85},{&quot;2026-09-01&quot;:12.85},{&quot;2026-09-02&quot;:12.85},{&quot;2026-09-03&quot;:12.92},{&quot;2026-09-04&quot;:12.97},{&quot;2026-09-05&quot;:12.97},{&quot;2026-09-06&quot;:13.19},{&quot;2026-09-07&quot;:13.19},{&quot;2026-09-08&quot;:13.21},{&quot;2026-09-09&quot;:13.23},{&quot;2026-09-10&quot;:13.51},{&quot;2026-09-11&quot;:13.52}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:13.74},{&quot;2026-06-13&quot;:13.77},{&quot;2026-06-14&quot;:13.77},{&quot;2026-06-15&quot;:13.77},{&quot;2026-06-16&quot;:13.77},{&quot;2026-06-17&quot;:13.8},{&quot;2026-06-18&quot;:13.8},{&quot;2026-06-19&quot;:13.72},{&quot;2026-06-20&quot;:13.72},{&quot;2026-06-21&quot;:13.8},{&quot;2026-06-22&quot;:13.8},{&quot;2026-06-23&quot;:13.79},{&quot;2026-06-24&quot;:13.79},{&quot;2026-06-25&quot;:13.78},{&quot;2026-06-26&quot;:13.77},{&quot;2026-06-27&quot;:13.77},{&quot;2026-06-28&quot;:13.75},{&quot;2026-06-29&quot;:13.75},{&quot;2026-06-30&quot;:13.85},{&quot;2026-07-01&quot;:13.95},{&quot;2026-07-02&quot;:13.95},{&quot;2026-07-03&quot;:13.93},{&quot;2026-07-04&quot;:13.86},{&quot;2026-07-05&quot;:13.86},{&quot;2026-07-06&quot;:13.86},{&quot;2026-07-07&quot;:13.86},{&quot;2026-07-08&quot;:13.81},{&quot;2026-07-09&quot;:13.81},{&quot;2026-07-10&quot;:13.81},{&quot;2026-07-11&quot;:13.5},{&quot;2026-07-12&quot;:13.64},{&quot;2026-07-13&quot;:13.64},{&quot;2026-07-14&quot;:13.45},{&quot;2026-07-15&quot;:13.45},{&quot;2026-07-16&quot;:13.34},{&quot;2026-07-17&quot;:13.34},{&quot;2026-07-18&quot;:13.13},{&quot;2026-07-19&quot;:13.13},{&quot;2026-07-20&quot;:12.79},{&quot;2026-07-21&quot;:12.68},{&quot;2026-07-23&quot;:12.83},{&quot;2026-07-24&quot;:12.75},{&quot;2026-07-25&quot;:12.72},{&quot;2026-07-26&quot;:12.84},{&quot;2026-07-27&quot;:12.72},{&quot;2026-07-28&quot;:12.45},{&quot;2026-07-29&quot;:12.6},{&quot;2026-07-30&quot;:12.53},{&quot;2026-07-31&quot;:12.53},{&quot;2026-08-01&quot;:12.53},{&quot;2026-08-02&quot;:12.53},{&quot;2026-08-03&quot;:12.53},{&quot;2026-08-04&quot;:12.53},{&quot;2026-08-05&quot;:12.59},{&quot;2026-08-07&quot;:12.79},{&quot;2026-08-08&quot;:13.05},{&quot;2026-08-09&quot;:13.05},{&quot;2026-08-10&quot;:13.05},{&quot;2026-08-11&quot;:13.05},{&quot;2026-08-12&quot;:13.14},{&quot;2026-08-13&quot;:13.14},{&quot;2026-08-14&quot;:13.39},{&quot;2026-08-15&quot;:13.45},{&quot;2026-08-16&quot;:13.48},{&quot;2026-08-17&quot;:13.85},{&quot;2026-08-18&quot;:13.95},{&quot;2026-08-19&quot;:13.92},{&quot;2026-08-20&quot;:13.92},{&quot;2026-08-21&quot;:13.96},{&quot;2026-08-22&quot;:13.96},{&quot;2026-08-23&quot;:13.96},{&quot;2026-08-24&quot;:13.94},{&quot;2026-08-25&quot;:13.86},{&quot;2026-08-26&quot;:13.86},{&quot;2026-08-27&quot;:14.13},{&quot;2026-08-28&quot;:14.13},{&quot;2026-08-29&quot;:14.13},{&quot;2026-08-30&quot;:14.0},{&quot;2026-08-31&quot;:14.15},{&quot;2026-09-01&quot;:14.15},{&quot;2026-09-02&quot;:14.12},{&quot;2026-09-03&quot;:14.08},{&quot;2026-09-04&quot;:14.11},{&quot;2026-09-05&quot;:14.01},{&quot;2026-09-06&quot;:14.15},{&quot;2026-09-07&quot;:13.96},{&quot;2026-09-08&quot;:13.96},{&quot;2026-09-09&quot;:14.0},{&quot;2026-09-10&quot;:14.0},{&quot;2026-09-11&quot;:14.0}]}"
        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="49560"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mh2 ss-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">
            Imperial Recruiter
        </span>

          <span
            class="
              px-1.5 py-0.5 text-xs rounded bg-purple-900/30 text-purple-400
              border border-purple-500/30 flex-shrink-0
            "
            title="Etched"
          >
            E
          </span>

      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Human Advisor
      </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">
            $13.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="Imperial Recruiter" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/5/05bd329b-5707-42fc-af1c-084cc604e805.jpg?1783926783" />

        <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">
            Imperial Recruiter
        </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 — Human Advisor</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Imperial Recruiter" src="https://cards.scryfall.io/large/front/0/5/05bd329b-5707-42fc-af1c-084cc604e805.jpg?1783926783" />
    </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">
                $13.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">
                $17.82
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:17.77},{&quot;2026-06-11&quot;:17.77},{&quot;2026-06-12&quot;:17.91},{&quot;2026-06-13&quot;:17.91},{&quot;2026-06-14&quot;:17.91},{&quot;2026-06-15&quot;:17.91},{&quot;2026-06-16&quot;:17.91},{&quot;2026-06-17&quot;:17.91},{&quot;2026-06-18&quot;:17.91},{&quot;2026-06-19&quot;:17.91},{&quot;2026-06-20&quot;:17.91},{&quot;2026-06-21&quot;:17.91},{&quot;2026-06-22&quot;:17.91},{&quot;2026-06-23&quot;:17.91},{&quot;2026-06-24&quot;:17.91},{&quot;2026-06-25&quot;:17.91},{&quot;2026-06-26&quot;:17.91},{&quot;2026-06-27&quot;:17.91},{&quot;2026-06-28&quot;:17.91},{&quot;2026-06-29&quot;:17.92},{&quot;2026-06-30&quot;:17.92},{&quot;2026-07-01&quot;:17.92},{&quot;2026-07-02&quot;:17.92},{&quot;2026-07-03&quot;:17.92},{&quot;2026-07-04&quot;:17.92},{&quot;2026-07-05&quot;:17.92},{&quot;2026-07-06&quot;:17.92},{&quot;2026-07-07&quot;:17.92},{&quot;2026-07-08&quot;:17.92},{&quot;2026-07-09&quot;:17.92},{&quot;2026-07-10&quot;:17.92},{&quot;2026-07-11&quot;:17.92},{&quot;2026-07-12&quot;:17.92},{&quot;2026-07-13&quot;:17.92},{&quot;2026-07-14&quot;:17.92},{&quot;2026-07-15&quot;:17.92},{&quot;2026-07-16&quot;:17.92},{&quot;2026-07-17&quot;:17.92},{&quot;2026-07-18&quot;:17.92},{&quot;2026-07-19&quot;:18.09},{&quot;2026-07-20&quot;:18.09},{&quot;2026-07-21&quot;:18.09},{&quot;2026-07-23&quot;:18.09},{&quot;2026-07-25&quot;:17.7},{&quot;2026-07-26&quot;:17.7},{&quot;2026-07-27&quot;:17.7},{&quot;2026-07-29&quot;:17.7},{&quot;2026-07-30&quot;:17.7},{&quot;2026-07-31&quot;:17.7},{&quot;2026-08-01&quot;:17.7},{&quot;2026-08-02&quot;:17.7},{&quot;2026-08-03&quot;:17.7},{&quot;2026-08-04&quot;:17.74},{&quot;2026-08-05&quot;:17.74},{&quot;2026-08-07&quot;:17.86},{&quot;2026-08-08&quot;:17.86},{&quot;2026-08-09&quot;:17.86},{&quot;2026-08-10&quot;:17.86},{&quot;2026-08-11&quot;:17.86},{&quot;2026-08-12&quot;:17.86},{&quot;2026-08-13&quot;:17.87},{&quot;2026-08-14&quot;:17.87},{&quot;2026-08-15&quot;:17.9},{&quot;2026-08-16&quot;:17.9},{&quot;2026-08-17&quot;:17.9},{&quot;2026-08-18&quot;:17.9},{&quot;2026-08-19&quot;:17.9},{&quot;2026-08-20&quot;:17.9},{&quot;2026-08-21&quot;:17.9},{&quot;2026-08-22&quot;:17.9},{&quot;2026-08-23&quot;:17.9},{&quot;2026-08-24&quot;:17.9},{&quot;2026-08-25&quot;:17.9},{&quot;2026-08-26&quot;:17.9},{&quot;2026-08-27&quot;:17.9},{&quot;2026-08-28&quot;:17.9},{&quot;2026-08-29&quot;:17.9},{&quot;2026-08-30&quot;:17.75},{&quot;2026-08-31&quot;:17.75},{&quot;2026-09-01&quot;:17.75},{&quot;2026-09-02&quot;:17.75},{&quot;2026-09-03&quot;:17.75},{&quot;2026-09-04&quot;:17.75},{&quot;2026-09-05&quot;:17.75},{&quot;2026-09-06&quot;:17.87},{&quot;2026-09-07&quot;:17.87},{&quot;2026-09-08&quot;:17.87},{&quot;2026-09-09&quot;:17.87},{&quot;2026-09-10&quot;:17.82},{&quot;2026-09-11&quot;:17.82}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:14.37},{&quot;2026-06-11&quot;:14.36},{&quot;2026-06-12&quot;:14.24},{&quot;2026-06-13&quot;:14.25},{&quot;2026-06-14&quot;:14.34},{&quot;2026-06-15&quot;:14.35},{&quot;2026-06-16&quot;:14.28},{&quot;2026-06-17&quot;:14.23},{&quot;2026-06-18&quot;:14.23},{&quot;2026-06-19&quot;:14.16},{&quot;2026-06-20&quot;:14.3},{&quot;2026-06-21&quot;:14.33},{&quot;2026-06-22&quot;:14.33},{&quot;2026-06-23&quot;:14.35},{&quot;2026-06-24&quot;:14.04},{&quot;2026-06-25&quot;:13.71},{&quot;2026-06-26&quot;:13.41},{&quot;2026-06-27&quot;:13.28},{&quot;2026-06-28&quot;:13.18},{&quot;2026-06-29&quot;:13.11},{&quot;2026-06-30&quot;:13.19},{&quot;2026-07-01&quot;:13.13},{&quot;2026-07-02&quot;:13.68},{&quot;2026-07-03&quot;:13.68},{&quot;2026-07-04&quot;:13.66},{&quot;2026-07-05&quot;:13.94},{&quot;2026-07-06&quot;:13.41},{&quot;2026-07-07&quot;:13.5},{&quot;2026-07-08&quot;:13.71},{&quot;2026-07-09&quot;:13.77},{&quot;2026-07-10&quot;:13.6},{&quot;2026-07-11&quot;:13.66},{&quot;2026-07-12&quot;:13.83},{&quot;2026-07-13&quot;:13.99},{&quot;2026-07-14&quot;:13.9},{&quot;2026-07-15&quot;:13.94},{&quot;2026-07-16&quot;:13.88},{&quot;2026-07-17&quot;:13.88},{&quot;2026-07-18&quot;:13.67},{&quot;2026-07-19&quot;:13.82},{&quot;2026-07-20&quot;:13.86},{&quot;2026-07-21&quot;:14.08},{&quot;2026-07-23&quot;:14.16},{&quot;2026-07-25&quot;:14.24},{&quot;2026-07-26&quot;:14.36},{&quot;2026-07-27&quot;:14.43},{&quot;2026-07-29&quot;:14.38},{&quot;2026-07-30&quot;:14.75},{&quot;2026-07-31&quot;:14.87},{&quot;2026-08-01&quot;:14.99},{&quot;2026-08-02&quot;:15.17},{&quot;2026-08-03&quot;:15.12},{&quot;2026-08-04&quot;:15.13},{&quot;2026-08-05&quot;:15.13},{&quot;2026-08-07&quot;:14.89},{&quot;2026-08-08&quot;:14.84},{&quot;2026-08-09&quot;:14.45},{&quot;2026-08-10&quot;:14.32},{&quot;2026-08-11&quot;:14.29},{&quot;2026-08-12&quot;:14.38},{&quot;2026-08-13&quot;:14.33},{&quot;2026-08-14&quot;:14.24},{&quot;2026-08-15&quot;:14.22},{&quot;2026-08-16&quot;:14.18},{&quot;2026-08-17&quot;:14.04},{&quot;2026-08-18&quot;:14.0},{&quot;2026-08-19&quot;:14.0},{&quot;2026-08-20&quot;:14.0},{&quot;2026-08-21&quot;:14.0},{&quot;2026-08-22&quot;:14.0},{&quot;2026-08-23&quot;:14.02},{&quot;2026-08-24&quot;:13.85},{&quot;2026-08-25&quot;:13.85},{&quot;2026-08-26&quot;:13.95},{&quot;2026-08-27&quot;:14.02},{&quot;2026-08-28&quot;:14.04},{&quot;2026-08-29&quot;:14.04},{&quot;2026-08-30&quot;:13.61},{&quot;2026-08-31&quot;:13.58},{&quot;2026-09-01&quot;:13.58},{&quot;2026-09-02&quot;:13.53},{&quot;2026-09-03&quot;:13.25},{&quot;2026-09-04&quot;:13.47},{&quot;2026-09-05&quot;:13.34},{&quot;2026-09-06&quot;:12.96},{&quot;2026-09-07&quot;:13.26},{&quot;2026-09-08&quot;:13.05},{&quot;2026-09-09&quot;:13.26},{&quot;2026-09-10&quot;:13.46},{&quot;2026-09-11&quot;:13.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="43556"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-pmei ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

        <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">
            rare
          </span>

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Sol Ring" src="https://cards.scryfall.io/large/front/a/0/a0dd17da-9773-4a17-9aa7-4cd8958e1ef8.jpg?1783922191" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:7.4},{&quot;2026-06-11&quot;:7.4},{&quot;2026-06-12&quot;:7.39},{&quot;2026-06-13&quot;:7.41},{&quot;2026-06-14&quot;:7.41},{&quot;2026-06-15&quot;:7.52},{&quot;2026-06-16&quot;:7.44},{&quot;2026-06-17&quot;:7.48},{&quot;2026-06-18&quot;:7.48},{&quot;2026-06-19&quot;:7.52},{&quot;2026-06-20&quot;:7.57},{&quot;2026-06-21&quot;:7.8},{&quot;2026-06-22&quot;:7.8},{&quot;2026-06-23&quot;:7.88},{&quot;2026-06-24&quot;:7.88},{&quot;2026-06-25&quot;:7.91},{&quot;2026-06-26&quot;:7.91},{&quot;2026-06-27&quot;:7.77},{&quot;2026-06-28&quot;:7.77},{&quot;2026-06-29&quot;:7.77},{&quot;2026-06-30&quot;:7.87},{&quot;2026-07-01&quot;:7.66},{&quot;2026-07-02&quot;:7.69},{&quot;2026-07-03&quot;:7.69},{&quot;2026-07-04&quot;:7.76},{&quot;2026-07-05&quot;:7.76},{&quot;2026-07-06&quot;:7.76},{&quot;2026-07-07&quot;:7.76},{&quot;2026-07-08&quot;:7.76},{&quot;2026-07-09&quot;:7.74},{&quot;2026-07-10&quot;:7.74},{&quot;2026-07-11&quot;:7.72},{&quot;2026-07-12&quot;:7.64},{&quot;2026-07-13&quot;:7.61},{&quot;2026-07-14&quot;:7.61},{&quot;2026-07-15&quot;:7.7},{&quot;2026-07-16&quot;:7.34},{&quot;2026-07-17&quot;:7.34},{&quot;2026-07-18&quot;:7.34},{&quot;2026-07-19&quot;:7.19},{&quot;2026-07-20&quot;:7.23},{&quot;2026-07-21&quot;:7.23},{&quot;2026-07-23&quot;:7.23},{&quot;2026-07-25&quot;:7.05},{&quot;2026-07-26&quot;:7.05},{&quot;2026-07-27&quot;:7.1},{&quot;2026-07-29&quot;:7.14},{&quot;2026-07-30&quot;:7.11},{&quot;2026-07-31&quot;:7.07},{&quot;2026-08-01&quot;:7.14},{&quot;2026-08-02&quot;:7.18},{&quot;2026-08-03&quot;:7.18},{&quot;2026-08-04&quot;:7.15},{&quot;2026-08-05&quot;:7.23},{&quot;2026-08-07&quot;:7.3},{&quot;2026-08-08&quot;:7.34},{&quot;2026-08-09&quot;:7.18},{&quot;2026-08-10&quot;:7.18},{&quot;2026-08-11&quot;:7.24},{&quot;2026-08-12&quot;:7.21},{&quot;2026-08-13&quot;:7.17},{&quot;2026-08-14&quot;:7.17},{&quot;2026-08-15&quot;:7.08},{&quot;2026-08-16&quot;:7.1},{&quot;2026-08-17&quot;:7.11},{&quot;2026-08-18&quot;:7.13},{&quot;2026-08-19&quot;:7.19},{&quot;2026-08-20&quot;:7.19},{&quot;2026-08-21&quot;:7.15},{&quot;2026-08-22&quot;:7.07},{&quot;2026-08-23&quot;:7.11},{&quot;2026-08-24&quot;:7.11},{&quot;2026-08-25&quot;:7.11},{&quot;2026-08-26&quot;:7.12},{&quot;2026-08-27&quot;:7.12},{&quot;2026-08-28&quot;:7.09},{&quot;2026-08-29&quot;:7.09},{&quot;2026-08-30&quot;:7.05},{&quot;2026-08-31&quot;:6.84},{&quot;2026-09-01&quot;:6.84},{&quot;2026-09-02&quot;:6.75},{&quot;2026-09-03&quot;:6.66},{&quot;2026-09-04&quot;:6.66},{&quot;2026-09-05&quot;:6.66},{&quot;2026-09-06&quot;:6.66},{&quot;2026-09-07&quot;:6.66},{&quot;2026-09-08&quot;:6.73},{&quot;2026-09-09&quot;:6.74},{&quot;2026-09-10&quot;:6.82},{&quot;2026-09-11&quot;:6.82}],&quot;normal&quot;:[]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="17235"
  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-dst 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">
            Skullclamp
        </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">
              ↓
              6%
            </span>

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

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

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

        <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">
            Skullclamp
        </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-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="Skullclamp" src="https://cards.scryfall.io/large/front/5/5/55318397-de3c-47ea-a088-72a24df5c8fa.jpg?1783944419" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:92.31},{&quot;2026-06-14&quot;:92.31},{&quot;2026-06-15&quot;:92.31},{&quot;2026-06-16&quot;:92.31},{&quot;2026-06-17&quot;:92.31},{&quot;2026-06-18&quot;:92.31},{&quot;2026-06-19&quot;:92.31},{&quot;2026-06-20&quot;:92.31},{&quot;2026-06-21&quot;:92.31},{&quot;2026-06-22&quot;:92.31},{&quot;2026-06-23&quot;:92.31},{&quot;2026-06-24&quot;:92.31},{&quot;2026-06-25&quot;:92.31},{&quot;2026-06-26&quot;:92.31},{&quot;2026-06-27&quot;:92.31},{&quot;2026-06-28&quot;:97.37},{&quot;2026-06-29&quot;:97.37},{&quot;2026-06-30&quot;:97.37},{&quot;2026-07-01&quot;:97.37},{&quot;2026-07-02&quot;:97.37},{&quot;2026-07-03&quot;:97.37},{&quot;2026-07-04&quot;:97.37},{&quot;2026-07-05&quot;:97.37},{&quot;2026-07-06&quot;:97.37},{&quot;2026-07-07&quot;:97.37},{&quot;2026-07-08&quot;:97.37},{&quot;2026-07-09&quot;:97.37},{&quot;2026-07-10&quot;:97.37},{&quot;2026-07-11&quot;:97.37},{&quot;2026-07-12&quot;:97.37},{&quot;2026-07-13&quot;:97.37},{&quot;2026-07-14&quot;:97.37},{&quot;2026-07-15&quot;:97.37},{&quot;2026-07-16&quot;:97.37},{&quot;2026-07-17&quot;:97.37},{&quot;2026-07-18&quot;:97.37},{&quot;2026-07-19&quot;:97.37},{&quot;2026-07-20&quot;:97.37},{&quot;2026-07-21&quot;:96.14},{&quot;2026-07-22&quot;:97.37},{&quot;2026-07-23&quot;:97.37},{&quot;2026-07-24&quot;:97.37},{&quot;2026-07-25&quot;:95.97},{&quot;2026-07-26&quot;:95.97},{&quot;2026-07-27&quot;:95.97},{&quot;2026-07-28&quot;:95.97},{&quot;2026-07-29&quot;:95.97},{&quot;2026-07-30&quot;:95.97},{&quot;2026-07-31&quot;:95.97},{&quot;2026-08-01&quot;:95.97},{&quot;2026-08-02&quot;:95.97},{&quot;2026-08-03&quot;:95.97},{&quot;2026-08-04&quot;:95.97},{&quot;2026-08-05&quot;:95.97},{&quot;2026-08-07&quot;:95.97},{&quot;2026-08-08&quot;:95.97},{&quot;2026-08-09&quot;:95.97},{&quot;2026-08-10&quot;:95.97},{&quot;2026-08-11&quot;:95.97},{&quot;2026-08-12&quot;:95.97},{&quot;2026-08-13&quot;:95.97},{&quot;2026-08-14&quot;:95.97},{&quot;2026-08-15&quot;:98.79},{&quot;2026-08-16&quot;:98.79},{&quot;2026-08-17&quot;:98.79},{&quot;2026-08-18&quot;:98.79},{&quot;2026-08-19&quot;:98.79},{&quot;2026-08-20&quot;:98.79},{&quot;2026-08-21&quot;:98.79},{&quot;2026-08-22&quot;:98.79},{&quot;2026-08-23&quot;:98.79},{&quot;2026-08-24&quot;:98.79},{&quot;2026-08-25&quot;:98.79},{&quot;2026-08-26&quot;:98.79},{&quot;2026-08-27&quot;:98.79},{&quot;2026-08-28&quot;:98.79},{&quot;2026-08-29&quot;:98.79},{&quot;2026-08-30&quot;:98.79},{&quot;2026-08-31&quot;:98.79},{&quot;2026-09-01&quot;:98.79},{&quot;2026-09-02&quot;:98.79},{&quot;2026-09-03&quot;:102.24},{&quot;2026-09-04&quot;:102.24},{&quot;2026-09-05&quot;:102.24},{&quot;2026-09-06&quot;:102.24},{&quot;2026-09-07&quot;:102.24},{&quot;2026-09-08&quot;:102.24},{&quot;2026-09-09&quot;:87.33},{&quot;2026-09-10&quot;:87.33},{&quot;2026-09-11&quot;:87.33}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:6.79},{&quot;2026-06-14&quot;:6.88},{&quot;2026-06-15&quot;:6.96},{&quot;2026-06-16&quot;:7.1},{&quot;2026-06-17&quot;:7.03},{&quot;2026-06-18&quot;:7.06},{&quot;2026-06-19&quot;:6.95},{&quot;2026-06-20&quot;:6.77},{&quot;2026-06-21&quot;:6.77},{&quot;2026-06-22&quot;:6.77},{&quot;2026-06-23&quot;:6.77},{&quot;2026-06-24&quot;:6.74},{&quot;2026-06-25&quot;:6.82},{&quot;2026-06-26&quot;:6.82},{&quot;2026-06-27&quot;:6.82},{&quot;2026-06-28&quot;:6.82},{&quot;2026-06-29&quot;:6.82},{&quot;2026-06-30&quot;:6.82},{&quot;2026-07-01&quot;:6.82},{&quot;2026-07-02&quot;:6.82},{&quot;2026-07-03&quot;:6.74},{&quot;2026-07-04&quot;:6.74},{&quot;2026-07-05&quot;:6.62},{&quot;2026-07-06&quot;:6.62},{&quot;2026-07-07&quot;:6.52},{&quot;2026-07-08&quot;:6.45},{&quot;2026-07-09&quot;:6.38},{&quot;2026-07-10&quot;:6.29},{&quot;2026-07-11&quot;:6.18},{&quot;2026-07-12&quot;:6.14},{&quot;2026-07-13&quot;:6.14},{&quot;2026-07-14&quot;:6.04},{&quot;2026-07-15&quot;:6.04},{&quot;2026-07-16&quot;:5.94},{&quot;2026-07-17&quot;:6.0},{&quot;2026-07-18&quot;:5.97},{&quot;2026-07-19&quot;:5.97},{&quot;2026-07-20&quot;:6.03},{&quot;2026-07-21&quot;:6.09},{&quot;2026-07-22&quot;:6.22},{&quot;2026-07-23&quot;:6.22},{&quot;2026-07-24&quot;:6.48},{&quot;2026-07-25&quot;:6.48},{&quot;2026-07-26&quot;:6.48},{&quot;2026-07-27&quot;:6.48},{&quot;2026-07-28&quot;:6.48},{&quot;2026-07-29&quot;:6.48},{&quot;2026-07-30&quot;:6.48},{&quot;2026-07-31&quot;:6.44},{&quot;2026-08-01&quot;:6.44},{&quot;2026-08-02&quot;:6.42},{&quot;2026-08-03&quot;:6.49},{&quot;2026-08-04&quot;:6.49},{&quot;2026-08-05&quot;:6.86},{&quot;2026-08-07&quot;:6.9},{&quot;2026-08-08&quot;:6.9},{&quot;2026-08-09&quot;:6.93},{&quot;2026-08-10&quot;:6.93},{&quot;2026-08-11&quot;:6.95},{&quot;2026-08-12&quot;:6.97},{&quot;2026-08-13&quot;:6.97},{&quot;2026-08-14&quot;:6.97},{&quot;2026-08-15&quot;:6.97},{&quot;2026-08-16&quot;:6.97},{&quot;2026-08-17&quot;:6.95},{&quot;2026-08-18&quot;:6.95},{&quot;2026-08-19&quot;:6.95},{&quot;2026-08-20&quot;:6.95},{&quot;2026-08-21&quot;:6.95},{&quot;2026-08-22&quot;:6.93},{&quot;2026-08-23&quot;:6.93},{&quot;2026-08-24&quot;:6.93},{&quot;2026-08-25&quot;:6.93},{&quot;2026-08-26&quot;:7.14},{&quot;2026-08-27&quot;:7.26},{&quot;2026-08-28&quot;:7.13},{&quot;2026-08-29&quot;:7.13},{&quot;2026-08-30&quot;:7.13},{&quot;2026-08-31&quot;:7.13},{&quot;2026-09-01&quot;:7.17},{&quot;2026-09-02&quot;:7.17},{&quot;2026-09-03&quot;:7.22},{&quot;2026-09-04&quot;:7.2},{&quot;2026-09-05&quot;:7.2},{&quot;2026-09-06&quot;:7.26},{&quot;2026-09-07&quot;:7.02},{&quot;2026-09-08&quot;:7.02},{&quot;2026-09-09&quot;:7.02},{&quot;2026-09-10&quot;:7.03},{&quot;2026-09-11&quot;:6.74}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="War Room" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/e/d/ed5cebc0-6a58-468d-a75e-46087ea2eb46.jpg?1783922359" />

        <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">
            War Room
        </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="War Room" src="https://cards.scryfall.io/large/front/e/d/ed5cebc0-6a58-468d-a75e-46087ea2eb46.jpg?1783922359" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:6.54},{&quot;2026-06-11&quot;:6.57},{&quot;2026-06-12&quot;:6.57},{&quot;2026-06-13&quot;:6.57},{&quot;2026-06-14&quot;:6.63},{&quot;2026-06-15&quot;:6.63},{&quot;2026-06-16&quot;:6.63},{&quot;2026-06-17&quot;:6.63},{&quot;2026-06-18&quot;:6.7},{&quot;2026-06-19&quot;:6.7},{&quot;2026-06-20&quot;:6.82},{&quot;2026-06-21&quot;:6.82},{&quot;2026-06-22&quot;:6.82},{&quot;2026-06-23&quot;:6.82},{&quot;2026-06-24&quot;:6.9},{&quot;2026-06-25&quot;:6.9},{&quot;2026-06-26&quot;:6.61},{&quot;2026-06-27&quot;:6.92},{&quot;2026-06-28&quot;:6.92},{&quot;2026-06-29&quot;:6.9},{&quot;2026-06-30&quot;:6.9},{&quot;2026-07-01&quot;:6.9},{&quot;2026-07-02&quot;:6.75},{&quot;2026-07-03&quot;:6.7},{&quot;2026-07-04&quot;:6.7},{&quot;2026-07-05&quot;:6.58},{&quot;2026-07-06&quot;:6.58},{&quot;2026-07-07&quot;:6.58},{&quot;2026-07-08&quot;:6.41},{&quot;2026-07-09&quot;:6.46},{&quot;2026-07-10&quot;:6.46},{&quot;2026-07-11&quot;:6.46},{&quot;2026-07-12&quot;:6.46},{&quot;2026-07-13&quot;:6.14},{&quot;2026-07-14&quot;:6.14},{&quot;2026-07-15&quot;:6.14},{&quot;2026-07-16&quot;:5.98},{&quot;2026-07-17&quot;:5.91},{&quot;2026-07-18&quot;:5.91},{&quot;2026-07-19&quot;:5.76},{&quot;2026-07-20&quot;:5.72},{&quot;2026-07-21&quot;:5.58},{&quot;2026-07-23&quot;:5.29},{&quot;2026-07-25&quot;:5.18},{&quot;2026-07-26&quot;:5.18},{&quot;2026-07-27&quot;:5.18},{&quot;2026-07-29&quot;:4.94},{&quot;2026-07-30&quot;:4.82},{&quot;2026-07-31&quot;:4.81},{&quot;2026-08-01&quot;:4.81},{&quot;2026-08-02&quot;:5.02},{&quot;2026-08-03&quot;:5.24},{&quot;2026-08-04&quot;:5.13},{&quot;2026-08-05&quot;:5.11},{&quot;2026-08-07&quot;:5.14},{&quot;2026-08-08&quot;:5.17},{&quot;2026-08-09&quot;:5.09},{&quot;2026-08-10&quot;:5.11},{&quot;2026-08-11&quot;:5.07},{&quot;2026-08-12&quot;:5.07},{&quot;2026-08-13&quot;:5.16},{&quot;2026-08-14&quot;:5.41},{&quot;2026-08-15&quot;:5.37},{&quot;2026-08-16&quot;:5.46},{&quot;2026-08-17&quot;:5.49},{&quot;2026-08-18&quot;:5.49},{&quot;2026-08-19&quot;:5.57},{&quot;2026-08-20&quot;:5.57},{&quot;2026-08-21&quot;:5.7},{&quot;2026-08-22&quot;:5.73},{&quot;2026-08-23&quot;:5.67},{&quot;2026-08-24&quot;:5.52},{&quot;2026-08-25&quot;:5.52},{&quot;2026-08-26&quot;:5.4},{&quot;2026-08-27&quot;:5.49},{&quot;2026-08-28&quot;:5.49},{&quot;2026-08-29&quot;:5.49},{&quot;2026-08-30&quot;:5.43},{&quot;2026-08-31&quot;:5.5},{&quot;2026-09-01&quot;:5.5},{&quot;2026-09-02&quot;:5.44},{&quot;2026-09-03&quot;:5.16},{&quot;2026-09-04&quot;:5.08},{&quot;2026-09-05&quot;:5.12},{&quot;2026-09-06&quot;:5.12},{&quot;2026-09-07&quot;:5.17},{&quot;2026-09-08&quot;:5.26},{&quot;2026-09-09&quot;:5.29},{&quot;2026-09-10&quot;:5.46},{&quot;2026-09-11&quot;:5.56}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="77861"
  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-eld 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">
            Torbran, Thane of Red Fell
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Torbran, Thane of Red Fell" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/9/79f591cd-d277-4ba5-b1bf-1c09cac9cb8a.jpg?1783932614" />

        <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">
            Torbran, Thane of Red Fell
        </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 — Dwarf Noble</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><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="Torbran, Thane of Red Fell" src="https://cards.scryfall.io/large/front/7/9/79f591cd-d277-4ba5-b1bf-1c09cac9cb8a.jpg?1783932614" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:6.94},{&quot;2026-06-14&quot;:6.94},{&quot;2026-06-15&quot;:6.94},{&quot;2026-06-16&quot;:6.97},{&quot;2026-06-17&quot;:6.97},{&quot;2026-06-18&quot;:6.97},{&quot;2026-06-19&quot;:6.97},{&quot;2026-06-20&quot;:6.98},{&quot;2026-06-21&quot;:6.98},{&quot;2026-06-22&quot;:6.95},{&quot;2026-06-23&quot;:6.95},{&quot;2026-06-24&quot;:6.95},{&quot;2026-06-25&quot;:6.95},{&quot;2026-06-26&quot;:6.95},{&quot;2026-06-27&quot;:6.95},{&quot;2026-06-28&quot;:6.95},{&quot;2026-06-29&quot;:6.95},{&quot;2026-06-30&quot;:6.95},{&quot;2026-07-01&quot;:6.95},{&quot;2026-07-02&quot;:6.95},{&quot;2026-07-03&quot;:6.95},{&quot;2026-07-04&quot;:6.95},{&quot;2026-07-05&quot;:6.95},{&quot;2026-07-06&quot;:6.95},{&quot;2026-07-07&quot;:6.95},{&quot;2026-07-08&quot;:6.95},{&quot;2026-07-09&quot;:6.95},{&quot;2026-07-10&quot;:6.74},{&quot;2026-07-11&quot;:6.74},{&quot;2026-07-12&quot;:6.74},{&quot;2026-07-13&quot;:6.74},{&quot;2026-07-14&quot;:6.7},{&quot;2026-07-15&quot;:6.55},{&quot;2026-07-16&quot;:6.55},{&quot;2026-07-17&quot;:6.55},{&quot;2026-07-18&quot;:6.52},{&quot;2026-07-19&quot;:6.52},{&quot;2026-07-20&quot;:6.48},{&quot;2026-07-21&quot;:6.48},{&quot;2026-07-22&quot;:6.48},{&quot;2026-07-23&quot;:6.48},{&quot;2026-07-24&quot;:6.48},{&quot;2026-07-25&quot;:6.48},{&quot;2026-07-26&quot;:6.48},{&quot;2026-07-27&quot;:6.48},{&quot;2026-07-28&quot;:6.48},{&quot;2026-07-29&quot;:6.48},{&quot;2026-07-30&quot;:6.52},{&quot;2026-07-31&quot;:6.45},{&quot;2026-08-01&quot;:6.45},{&quot;2026-08-02&quot;:6.45},{&quot;2026-08-03&quot;:6.47},{&quot;2026-08-04&quot;:6.47},{&quot;2026-08-05&quot;:6.47},{&quot;2026-08-07&quot;:6.47},{&quot;2026-08-08&quot;:6.47},{&quot;2026-08-09&quot;:6.43},{&quot;2026-08-10&quot;:6.43},{&quot;2026-08-11&quot;:6.44},{&quot;2026-08-12&quot;:6.44},{&quot;2026-08-13&quot;:6.43},{&quot;2026-08-14&quot;:6.3},{&quot;2026-08-15&quot;:6.3},{&quot;2026-08-16&quot;:6.3},{&quot;2026-08-17&quot;:6.25},{&quot;2026-08-18&quot;:6.3},{&quot;2026-08-19&quot;:6.3},{&quot;2026-08-20&quot;:6.3},{&quot;2026-08-21&quot;:6.3},{&quot;2026-08-22&quot;:6.3},{&quot;2026-08-23&quot;:6.3},{&quot;2026-08-24&quot;:6.3},{&quot;2026-08-25&quot;:6.3},{&quot;2026-08-26&quot;:6.3},{&quot;2026-08-27&quot;:6.25},{&quot;2026-08-28&quot;:6.25},{&quot;2026-08-29&quot;:6.25},{&quot;2026-08-30&quot;:6.25},{&quot;2026-08-31&quot;:6.24},{&quot;2026-09-01&quot;:6.24},{&quot;2026-09-02&quot;:6.24},{&quot;2026-09-03&quot;:6.23},{&quot;2026-09-04&quot;:6.23},{&quot;2026-09-05&quot;:6.23},{&quot;2026-09-06&quot;:6.23},{&quot;2026-09-07&quot;:6.23},{&quot;2026-09-08&quot;:6.29},{&quot;2026-09-09&quot;:6.29},{&quot;2026-09-10&quot;:6.42},{&quot;2026-09-11&quot;:6.39}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:2.75},{&quot;2026-06-14&quot;:2.72},{&quot;2026-06-15&quot;:2.72},{&quot;2026-06-16&quot;:2.76},{&quot;2026-06-17&quot;:2.72},{&quot;2026-06-18&quot;:2.53},{&quot;2026-06-19&quot;:2.25},{&quot;2026-06-20&quot;:2.25},{&quot;2026-06-21&quot;:2.34},{&quot;2026-06-22&quot;:2.46},{&quot;2026-06-23&quot;:2.87},{&quot;2026-06-24&quot;:2.98},{&quot;2026-06-25&quot;:3.2},{&quot;2026-06-26&quot;:3.25},{&quot;2026-06-27&quot;:3.43},{&quot;2026-06-28&quot;:3.3},{&quot;2026-06-29&quot;:3.25},{&quot;2026-06-30&quot;:3.42},{&quot;2026-07-01&quot;:3.43},{&quot;2026-07-02&quot;:3.54},{&quot;2026-07-03&quot;:3.33},{&quot;2026-07-04&quot;:3.37},{&quot;2026-07-05&quot;:3.05},{&quot;2026-07-06&quot;:3.06},{&quot;2026-07-07&quot;:3.13},{&quot;2026-07-08&quot;:3.39},{&quot;2026-07-09&quot;:3.37},{&quot;2026-07-10&quot;:3.26},{&quot;2026-07-11&quot;:3.16},{&quot;2026-07-12&quot;:3.1},{&quot;2026-07-13&quot;:3.22},{&quot;2026-07-14&quot;:3.37},{&quot;2026-07-15&quot;:3.32},{&quot;2026-07-16&quot;:3.22},{&quot;2026-07-17&quot;:3.29},{&quot;2026-07-18&quot;:3.48},{&quot;2026-07-19&quot;:3.58},{&quot;2026-07-20&quot;:3.56},{&quot;2026-07-21&quot;:3.74},{&quot;2026-07-22&quot;:3.7},{&quot;2026-07-23&quot;:3.74},{&quot;2026-07-24&quot;:3.61},{&quot;2026-07-25&quot;:3.88},{&quot;2026-07-26&quot;:3.79},{&quot;2026-07-27&quot;:3.79},{&quot;2026-07-28&quot;:3.87},{&quot;2026-07-29&quot;:4.25},{&quot;2026-07-30&quot;:4.3},{&quot;2026-07-31&quot;:4.32},{&quot;2026-08-01&quot;:4.59},{&quot;2026-08-02&quot;:4.54},{&quot;2026-08-03&quot;:4.68},{&quot;2026-08-04&quot;:4.9},{&quot;2026-08-05&quot;:4.85},{&quot;2026-08-07&quot;:4.1},{&quot;2026-08-08&quot;:4.49},{&quot;2026-08-09&quot;:4.9},{&quot;2026-08-10&quot;:5.1},{&quot;2026-08-11&quot;:5.21},{&quot;2026-08-12&quot;:4.92},{&quot;2026-08-13&quot;:5.11},{&quot;2026-08-14&quot;:4.92},{&quot;2026-08-15&quot;:4.88},{&quot;2026-08-16&quot;:5.21},{&quot;2026-08-17&quot;:5.5},{&quot;2026-08-18&quot;:5.62},{&quot;2026-08-19&quot;:5.58},{&quot;2026-08-20&quot;:5.44},{&quot;2026-08-21&quot;:5.29},{&quot;2026-08-22&quot;:5.36},{&quot;2026-08-23&quot;:4.99},{&quot;2026-08-24&quot;:5.13},{&quot;2026-08-25&quot;:5.32},{&quot;2026-08-26&quot;:5.5},{&quot;2026-08-27&quot;:5.06},{&quot;2026-08-28&quot;:5.08},{&quot;2026-08-29&quot;:5.08},{&quot;2026-08-30&quot;:5.58},{&quot;2026-08-31&quot;:5.77},{&quot;2026-09-01&quot;:5.5},{&quot;2026-09-02&quot;:5.46},{&quot;2026-09-03&quot;:5.41},{&quot;2026-09-04&quot;:5.24},{&quot;2026-09-05&quot;:5.29},{&quot;2026-09-06&quot;:5.39},{&quot;2026-09-07&quot;:5.77},{&quot;2026-09-08&quot;:5.53},{&quot;2026-09-09&quot;:5.67},{&quot;2026-09-10&quot;:5.73},{&quot;2026-09-11&quot;:5.51}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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

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

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

        <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/a/0/a02c44e9-fbcd-4924-a641-6dbc55076349.jpg?1783931741" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-12&quot;:6.36},{&quot;2026-06-13&quot;:6.47},{&quot;2026-06-14&quot;:6.27},{&quot;2026-06-15&quot;:6.27},{&quot;2026-06-16&quot;:6.27},{&quot;2026-06-17&quot;:6.27},{&quot;2026-06-18&quot;:6.27},{&quot;2026-06-19&quot;:6.27},{&quot;2026-06-20&quot;:6.27},{&quot;2026-06-21&quot;:6.27},{&quot;2026-06-22&quot;:6.27},{&quot;2026-06-23&quot;:6.01},{&quot;2026-06-24&quot;:6.01},{&quot;2026-06-25&quot;:6.01},{&quot;2026-06-26&quot;:6.01},{&quot;2026-06-27&quot;:6.01},{&quot;2026-06-28&quot;:6.01},{&quot;2026-06-29&quot;:6.08},{&quot;2026-06-30&quot;:6.08},{&quot;2026-07-01&quot;:6.08},{&quot;2026-07-02&quot;:6.08},{&quot;2026-07-03&quot;:6.08},{&quot;2026-07-04&quot;:6.08},{&quot;2026-07-05&quot;:6.08},{&quot;2026-07-06&quot;:6.08},{&quot;2026-07-07&quot;:6.08},{&quot;2026-07-08&quot;:6.14},{&quot;2026-07-09&quot;:5.79},{&quot;2026-07-10&quot;:5.76},{&quot;2026-07-11&quot;:5.76},{&quot;2026-07-12&quot;:5.55},{&quot;2026-07-13&quot;:5.55},{&quot;2026-07-14&quot;:5.55},{&quot;2026-07-15&quot;:5.5},{&quot;2026-07-16&quot;:5.5},{&quot;2026-07-17&quot;:5.5},{&quot;2026-07-18&quot;:5.5},{&quot;2026-07-19&quot;:5.52},{&quot;2026-07-20&quot;:5.52},{&quot;2026-07-21&quot;:5.52},{&quot;2026-07-23&quot;:5.61},{&quot;2026-07-24&quot;:5.61},{&quot;2026-07-25&quot;:5.61},{&quot;2026-07-26&quot;:5.55},{&quot;2026-07-27&quot;:5.55},{&quot;2026-07-28&quot;:5.55},{&quot;2026-07-29&quot;:5.55},{&quot;2026-07-30&quot;:5.55},{&quot;2026-07-31&quot;:5.55},{&quot;2026-08-01&quot;:5.55},{&quot;2026-08-02&quot;:5.55},{&quot;2026-08-03&quot;:5.55},{&quot;2026-08-04&quot;:5.55},{&quot;2026-08-05&quot;:5.55},{&quot;2026-08-07&quot;:5.55},{&quot;2026-08-08&quot;:5.55},{&quot;2026-08-09&quot;:5.55},{&quot;2026-08-10&quot;:5.55},{&quot;2026-08-11&quot;:5.55},{&quot;2026-08-12&quot;:5.55},{&quot;2026-08-13&quot;:5.55},{&quot;2026-08-14&quot;:5.46},{&quot;2026-08-15&quot;:5.51},{&quot;2026-08-16&quot;:5.53},{&quot;2026-08-17&quot;:5.53},{&quot;2026-08-18&quot;:5.51},{&quot;2026-08-19&quot;:5.51},{&quot;2026-08-20&quot;:5.51},{&quot;2026-08-21&quot;:5.51},{&quot;2026-08-22&quot;:5.51},{&quot;2026-08-23&quot;:5.36},{&quot;2026-08-24&quot;:5.32},{&quot;2026-08-25&quot;:5.26},{&quot;2026-08-26&quot;:5.26},{&quot;2026-08-27&quot;:5.26},{&quot;2026-08-28&quot;:5.26},{&quot;2026-08-29&quot;:5.26},{&quot;2026-08-30&quot;:5.26},{&quot;2026-08-31&quot;:5.26},{&quot;2026-09-01&quot;:5.26},{&quot;2026-09-02&quot;:5.26},{&quot;2026-09-03&quot;:5.26},{&quot;2026-09-04&quot;:5.09},{&quot;2026-09-05&quot;:5.01},{&quot;2026-09-06&quot;:5.05},{&quot;2026-09-07&quot;:5.05},{&quot;2026-09-08&quot;:5.05},{&quot;2026-09-09&quot;:5.04},{&quot;2026-09-10&quot;:5.04},{&quot;2026-09-11&quot;:5.03}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:5.34},{&quot;2026-06-11&quot;:5.34},{&quot;2026-06-12&quot;:5.34},{&quot;2026-06-13&quot;:5.34},{&quot;2026-06-14&quot;:5.34},{&quot;2026-06-15&quot;:5.34},{&quot;2026-06-16&quot;:5.34},{&quot;2026-06-17&quot;:5.34},{&quot;2026-06-18&quot;:5.34},{&quot;2026-06-19&quot;:5.34},{&quot;2026-06-20&quot;:5.34},{&quot;2026-06-21&quot;:5.34},{&quot;2026-06-22&quot;:5.47},{&quot;2026-06-23&quot;:5.42},{&quot;2026-06-24&quot;:5.42},{&quot;2026-06-25&quot;:5.42},{&quot;2026-06-26&quot;:5.53},{&quot;2026-06-27&quot;:5.55},{&quot;2026-06-28&quot;:5.51},{&quot;2026-06-29&quot;:5.53},{&quot;2026-06-30&quot;:5.53},{&quot;2026-07-01&quot;:5.5},{&quot;2026-07-02&quot;:5.5},{&quot;2026-07-03&quot;:5.52},{&quot;2026-07-04&quot;:5.52},{&quot;2026-07-05&quot;:5.52},{&quot;2026-07-06&quot;:5.57},{&quot;2026-07-07&quot;:5.65},{&quot;2026-07-08&quot;:5.65},{&quot;2026-07-09&quot;:5.65},{&quot;2026-07-10&quot;:5.65},{&quot;2026-07-11&quot;:5.65},{&quot;2026-07-12&quot;:5.65},{&quot;2026-07-13&quot;:5.53},{&quot;2026-07-14&quot;:5.53},{&quot;2026-07-15&quot;:5.53},{&quot;2026-07-16&quot;:5.64},{&quot;2026-07-17&quot;:5.72},{&quot;2026-07-18&quot;:5.72},{&quot;2026-07-19&quot;:5.72},{&quot;2026-07-20&quot;:5.85},{&quot;2026-07-21&quot;:5.92},{&quot;2026-07-23&quot;:5.92},{&quot;2026-07-25&quot;:5.9},{&quot;2026-07-26&quot;:5.9},{&quot;2026-07-27&quot;:5.9},{&quot;2026-07-29&quot;:5.9},{&quot;2026-07-30&quot;:5.9},{&quot;2026-07-31&quot;:5.9},{&quot;2026-08-01&quot;:5.9},{&quot;2026-08-02&quot;:5.9},{&quot;2026-08-03&quot;:5.9},{&quot;2026-08-04&quot;:5.85},{&quot;2026-08-05&quot;:5.85},{&quot;2026-08-07&quot;:5.85},{&quot;2026-08-08&quot;:5.85},{&quot;2026-08-09&quot;:5.87},{&quot;2026-08-10&quot;:5.87},{&quot;2026-08-11&quot;:5.91},{&quot;2026-08-12&quot;:6.01},{&quot;2026-08-13&quot;:6.01},{&quot;2026-08-14&quot;:5.99},{&quot;2026-08-15&quot;:5.99},{&quot;2026-08-16&quot;:5.99},{&quot;2026-08-17&quot;:5.99},{&quot;2026-08-18&quot;:5.99},{&quot;2026-08-19&quot;:5.99},{&quot;2026-08-20&quot;:5.99},{&quot;2026-08-21&quot;:5.99},{&quot;2026-08-22&quot;:5.99},{&quot;2026-08-23&quot;:5.99},{&quot;2026-08-24&quot;:5.99},{&quot;2026-08-25&quot;:5.99},{&quot;2026-08-26&quot;:5.99},{&quot;2026-08-27&quot;:5.99},{&quot;2026-08-28&quot;:5.99},{&quot;2026-08-29&quot;:5.99},{&quot;2026-08-30&quot;:5.99},{&quot;2026-08-31&quot;:5.99},{&quot;2026-09-01&quot;:5.99},{&quot;2026-09-02&quot;:5.99},{&quot;2026-09-03&quot;:5.99},{&quot;2026-09-04&quot;:6.01},{&quot;2026-09-05&quot;:5.9},{&quot;2026-09-06&quot;:5.9},{&quot;2026-09-07&quot;:5.9},{&quot;2026-09-08&quot;:5.9},{&quot;2026-09-09&quot;:5.86},{&quot;2026-09-10&quot;:5.44},{&quot;2026-09-11&quot;:5.44}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:4.83},{&quot;2026-06-11&quot;:4.81},{&quot;2026-06-12&quot;:4.81},{&quot;2026-06-13&quot;:4.81},{&quot;2026-06-14&quot;:4.81},{&quot;2026-06-15&quot;:4.81},{&quot;2026-06-16&quot;:4.81},{&quot;2026-06-17&quot;:4.81},{&quot;2026-06-18&quot;:4.8},{&quot;2026-06-19&quot;:4.8},{&quot;2026-06-20&quot;:4.8},{&quot;2026-06-21&quot;:4.77},{&quot;2026-06-22&quot;:4.77},{&quot;2026-06-23&quot;:4.77},{&quot;2026-06-24&quot;:4.79},{&quot;2026-06-25&quot;:4.76},{&quot;2026-06-26&quot;:4.8},{&quot;2026-06-27&quot;:4.8},{&quot;2026-06-28&quot;:4.8},{&quot;2026-06-29&quot;:4.8},{&quot;2026-06-30&quot;:4.8},{&quot;2026-07-01&quot;:4.8},{&quot;2026-07-02&quot;:4.79},{&quot;2026-07-03&quot;:4.7},{&quot;2026-07-04&quot;:4.7},{&quot;2026-07-05&quot;:4.71},{&quot;2026-07-06&quot;:4.76},{&quot;2026-07-07&quot;:4.75},{&quot;2026-07-08&quot;:4.75},{&quot;2026-07-09&quot;:4.76},{&quot;2026-07-10&quot;:4.76},{&quot;2026-07-11&quot;:4.75},{&quot;2026-07-12&quot;:4.69},{&quot;2026-07-13&quot;:4.61},{&quot;2026-07-14&quot;:4.57},{&quot;2026-07-15&quot;:4.72},{&quot;2026-07-16&quot;:4.72},{&quot;2026-07-17&quot;:4.79},{&quot;2026-07-18&quot;:4.83},{&quot;2026-07-19&quot;:4.83},{&quot;2026-07-20&quot;:4.77},{&quot;2026-07-21&quot;:4.69},{&quot;2026-07-23&quot;:4.69},{&quot;2026-07-25&quot;:4.55},{&quot;2026-07-26&quot;:4.66},{&quot;2026-07-27&quot;:4.66},{&quot;2026-07-29&quot;:4.66},{&quot;2026-07-30&quot;:4.7},{&quot;2026-07-31&quot;:4.72},{&quot;2026-08-01&quot;:4.72},{&quot;2026-08-02&quot;:4.81},{&quot;2026-08-03&quot;:4.81},{&quot;2026-08-04&quot;:4.89},{&quot;2026-08-05&quot;:4.89},{&quot;2026-08-07&quot;:4.89},{&quot;2026-08-08&quot;:4.89},{&quot;2026-08-09&quot;:4.89},{&quot;2026-08-10&quot;:4.89},{&quot;2026-08-11&quot;:4.86},{&quot;2026-08-12&quot;:4.85},{&quot;2026-08-13&quot;:4.76},{&quot;2026-08-14&quot;:4.76},{&quot;2026-08-15&quot;:4.76},{&quot;2026-08-16&quot;:4.82},{&quot;2026-08-17&quot;:4.81},{&quot;2026-08-18&quot;:4.81},{&quot;2026-08-19&quot;:4.95},{&quot;2026-08-20&quot;:4.95},{&quot;2026-08-21&quot;:4.94},{&quot;2026-08-22&quot;:4.94},{&quot;2026-08-23&quot;:4.93},{&quot;2026-08-24&quot;:4.93},{&quot;2026-08-25&quot;:4.93},{&quot;2026-08-26&quot;:4.92},{&quot;2026-08-27&quot;:4.96},{&quot;2026-08-28&quot;:4.97},{&quot;2026-08-29&quot;:4.97},{&quot;2026-08-30&quot;:4.74},{&quot;2026-08-31&quot;:4.77},{&quot;2026-09-01&quot;:4.77},{&quot;2026-09-02&quot;:4.78},{&quot;2026-09-03&quot;:4.78},{&quot;2026-09-04&quot;:4.76},{&quot;2026-09-05&quot;:4.74},{&quot;2026-09-06&quot;:4.74},{&quot;2026-09-07&quot;:4.69},{&quot;2026-09-08&quot;:4.69},{&quot;2026-09-09&quot;:4.73},{&quot;2026-09-10&quot;:4.72},{&quot;2026-09-11&quot;:4.77}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Mines of Moria" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/d/1d6cbb58-8c82-49b5-ae9c-f3baaa8bcc22.jpg?1783916193" />

        <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">
            Mines of Moria
        </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 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="Mines of Moria" src="https://cards.scryfall.io/large/front/1/d/1d6cbb58-8c82-49b5-ae9c-f3baaa8bcc22.jpg?1783916193" />
    </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.52
              </span>

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

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

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

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$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;2026-06-12&quot;:2.42},{&quot;2026-06-13&quot;:2.46},{&quot;2026-06-14&quot;:2.42},{&quot;2026-06-15&quot;:2.35},{&quot;2026-06-16&quot;:2.28},{&quot;2026-06-17&quot;:2.28},{&quot;2026-06-18&quot;:2.29},{&quot;2026-06-19&quot;:2.29},{&quot;2026-06-20&quot;:2.31},{&quot;2026-06-21&quot;:2.28},{&quot;2026-06-22&quot;:2.31},{&quot;2026-06-23&quot;:2.31},{&quot;2026-06-24&quot;:2.17},{&quot;2026-06-25&quot;:2.21},{&quot;2026-06-26&quot;:2.14},{&quot;2026-06-27&quot;:2.15},{&quot;2026-06-28&quot;:2.1},{&quot;2026-06-29&quot;:2.1},{&quot;2026-06-30&quot;:2.09},{&quot;2026-07-01&quot;:2.02},{&quot;2026-07-02&quot;:2.05},{&quot;2026-07-03&quot;:2.07},{&quot;2026-07-04&quot;:2.03},{&quot;2026-07-05&quot;:2.04},{&quot;2026-07-06&quot;:2.06},{&quot;2026-07-07&quot;:2.06},{&quot;2026-07-08&quot;:2.16},{&quot;2026-07-09&quot;:2.19},{&quot;2026-07-10&quot;:2.19},{&quot;2026-07-11&quot;:2.19},{&quot;2026-07-12&quot;:2.16},{&quot;2026-07-13&quot;:2.18},{&quot;2026-07-14&quot;:2.27},{&quot;2026-07-15&quot;:2.26},{&quot;2026-07-16&quot;:2.34},{&quot;2026-07-17&quot;:2.35},{&quot;2026-07-18&quot;:2.42},{&quot;2026-07-19&quot;:2.42},{&quot;2026-07-20&quot;:2.5},{&quot;2026-07-21&quot;:2.53},{&quot;2026-07-23&quot;:2.5},{&quot;2026-07-24&quot;:2.5},{&quot;2026-07-25&quot;:2.51},{&quot;2026-07-26&quot;:2.56},{&quot;2026-07-27&quot;:2.57},{&quot;2026-07-28&quot;:2.57},{&quot;2026-07-29&quot;:2.53},{&quot;2026-07-30&quot;:2.56},{&quot;2026-07-31&quot;:2.61},{&quot;2026-08-01&quot;:2.63},{&quot;2026-08-02&quot;:2.61},{&quot;2026-08-03&quot;:2.66},{&quot;2026-08-04&quot;:2.66},{&quot;2026-08-05&quot;:2.65},{&quot;2026-08-07&quot;:2.59},{&quot;2026-08-08&quot;:2.68},{&quot;2026-08-09&quot;:2.81},{&quot;2026-08-10&quot;:2.86},{&quot;2026-08-11&quot;:2.85},{&quot;2026-08-12&quot;:2.83},{&quot;2026-08-13&quot;:2.89},{&quot;2026-08-14&quot;:2.9},{&quot;2026-08-15&quot;:2.81},{&quot;2026-08-16&quot;:2.94},{&quot;2026-08-17&quot;:2.83},{&quot;2026-08-18&quot;:2.83},{&quot;2026-08-19&quot;:2.95},{&quot;2026-08-20&quot;:2.95},{&quot;2026-08-21&quot;:3.35},{&quot;2026-08-22&quot;:3.42},{&quot;2026-08-23&quot;:3.51},{&quot;2026-08-24&quot;:3.82},{&quot;2026-08-25&quot;:4.13},{&quot;2026-08-26&quot;:4.0},{&quot;2026-08-27&quot;:3.89},{&quot;2026-08-28&quot;:3.78},{&quot;2026-08-29&quot;:3.78},{&quot;2026-08-30&quot;:3.7},{&quot;2026-08-31&quot;:4.35},{&quot;2026-09-01&quot;:4.3},{&quot;2026-09-02&quot;:4.23},{&quot;2026-09-03&quot;:4.16},{&quot;2026-09-04&quot;:3.88},{&quot;2026-09-05&quot;:3.99},{&quot;2026-09-06&quot;:3.99},{&quot;2026-09-07&quot;:4.07},{&quot;2026-09-08&quot;:4.32},{&quot;2026-09-09&quot;:4.6},{&quot;2026-09-10&quot;:4.6},{&quot;2026-09-11&quot;:4.65}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:2.17},{&quot;2026-06-13&quot;:2.06},{&quot;2026-06-14&quot;:2.06},{&quot;2026-06-15&quot;:2.06},{&quot;2026-06-16&quot;:1.91},{&quot;2026-06-17&quot;:1.95},{&quot;2026-06-18&quot;:2.01},{&quot;2026-06-19&quot;:1.99},{&quot;2026-06-20&quot;:1.99},{&quot;2026-06-21&quot;:1.86},{&quot;2026-06-22&quot;:1.69},{&quot;2026-06-23&quot;:1.57},{&quot;2026-06-24&quot;:1.59},{&quot;2026-06-25&quot;:1.62},{&quot;2026-06-26&quot;:1.66},{&quot;2026-06-27&quot;:1.76},{&quot;2026-06-28&quot;:1.76},{&quot;2026-06-29&quot;:1.86},{&quot;2026-06-30&quot;:1.9},{&quot;2026-07-01&quot;:1.92},{&quot;2026-07-02&quot;:1.92},{&quot;2026-07-03&quot;:2.11},{&quot;2026-07-04&quot;:2.14},{&quot;2026-07-05&quot;:2.14},{&quot;2026-07-06&quot;:2.15},{&quot;2026-07-07&quot;:2.15},{&quot;2026-07-08&quot;:2.21},{&quot;2026-07-09&quot;:2.14},{&quot;2026-07-10&quot;:2.03},{&quot;2026-07-11&quot;:1.82},{&quot;2026-07-12&quot;:1.83},{&quot;2026-07-13&quot;:1.9},{&quot;2026-07-14&quot;:1.88},{&quot;2026-07-15&quot;:1.89},{&quot;2026-07-16&quot;:2.12},{&quot;2026-07-17&quot;:2.21},{&quot;2026-07-18&quot;:2.24},{&quot;2026-07-19&quot;:2.23},{&quot;2026-07-20&quot;:2.3},{&quot;2026-07-21&quot;:2.33},{&quot;2026-07-23&quot;:2.19},{&quot;2026-07-24&quot;:2.29},{&quot;2026-07-25&quot;:2.27},{&quot;2026-07-26&quot;:2.26},{&quot;2026-07-27&quot;:2.16},{&quot;2026-07-28&quot;:2.14},{&quot;2026-07-29&quot;:2.13},{&quot;2026-07-30&quot;:2.22},{&quot;2026-07-31&quot;:2.15},{&quot;2026-08-01&quot;:2.48},{&quot;2026-08-02&quot;:2.52},{&quot;2026-08-03&quot;:2.5},{&quot;2026-08-04&quot;:2.5},{&quot;2026-08-05&quot;:2.48},{&quot;2026-08-07&quot;:2.5},{&quot;2026-08-08&quot;:2.16},{&quot;2026-08-09&quot;:2.28},{&quot;2026-08-10&quot;:2.25},{&quot;2026-08-11&quot;:2.51},{&quot;2026-08-12&quot;:2.63},{&quot;2026-08-13&quot;:2.66},{&quot;2026-08-14&quot;:2.54},{&quot;2026-08-15&quot;:2.42},{&quot;2026-08-16&quot;:2.45},{&quot;2026-08-17&quot;:2.54},{&quot;2026-08-18&quot;:2.52},{&quot;2026-08-19&quot;:2.81},{&quot;2026-08-20&quot;:2.81},{&quot;2026-08-21&quot;:3.18},{&quot;2026-08-22&quot;:3.79},{&quot;2026-08-23&quot;:3.96},{&quot;2026-08-24&quot;:3.77},{&quot;2026-08-25&quot;:3.77},{&quot;2026-08-26&quot;:4.09},{&quot;2026-08-27&quot;:4.22},{&quot;2026-08-28&quot;:3.98},{&quot;2026-08-29&quot;:3.98},{&quot;2026-08-30&quot;:4.43},{&quot;2026-08-31&quot;:4.24},{&quot;2026-09-01&quot;:4.23},{&quot;2026-09-02&quot;:4.12},{&quot;2026-09-03&quot;:3.81},{&quot;2026-09-04&quot;:3.43},{&quot;2026-09-05&quot;:3.86},{&quot;2026-09-06&quot;:4.31},{&quot;2026-09-07&quot;:4.36},{&quot;2026-09-08&quot;:4.57},{&quot;2026-09-09&quot;:4.57},{&quot;2026-09-10&quot;:4.45},{&quot;2026-09-11&quot;:4.52}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Legendary Creature — Phyrexian Praetor
      </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">
            $4.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="Urabrask the Hidden" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/8/a86cb092-407a-4a4e-8e3e-359dafc385ea.jpg?1783923463" />

        <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">
            Urabrask the Hidden
        </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 — Phyrexian Praetor</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="Urabrask the Hidden" src="https://cards.scryfall.io/large/front/a/8/a86cb092-407a-4a4e-8e3e-359dafc385ea.jpg?1783923463" />
    </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.39
              </span>

            </div>
          </div>

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:4.36},{&quot;2026-06-11&quot;:4.36},{&quot;2026-06-12&quot;:4.36},{&quot;2026-06-13&quot;:4.36},{&quot;2026-06-14&quot;:4.36},{&quot;2026-06-15&quot;:4.36},{&quot;2026-06-16&quot;:4.36},{&quot;2026-06-17&quot;:4.36},{&quot;2026-06-18&quot;:4.31},{&quot;2026-06-19&quot;:4.29},{&quot;2026-06-20&quot;:4.29},{&quot;2026-06-21&quot;:4.29},{&quot;2026-06-22&quot;:4.29},{&quot;2026-06-23&quot;:4.29},{&quot;2026-06-24&quot;:4.29},{&quot;2026-06-25&quot;:4.29},{&quot;2026-06-26&quot;:4.18},{&quot;2026-06-27&quot;:4.17},{&quot;2026-06-28&quot;:4.17},{&quot;2026-06-29&quot;:4.17},{&quot;2026-06-30&quot;:4.22},{&quot;2026-07-01&quot;:4.22},{&quot;2026-07-02&quot;:4.22},{&quot;2026-07-03&quot;:4.22},{&quot;2026-07-04&quot;:4.25},{&quot;2026-07-05&quot;:4.25},{&quot;2026-07-06&quot;:4.24},{&quot;2026-07-07&quot;:4.24},{&quot;2026-07-08&quot;:4.24},{&quot;2026-07-09&quot;:4.24},{&quot;2026-07-10&quot;:4.24},{&quot;2026-07-11&quot;:4.29},{&quot;2026-07-12&quot;:4.29},{&quot;2026-07-13&quot;:4.29},{&quot;2026-07-14&quot;:4.29},{&quot;2026-07-15&quot;:4.29},{&quot;2026-07-16&quot;:4.14},{&quot;2026-07-17&quot;:4.14},{&quot;2026-07-18&quot;:4.15},{&quot;2026-07-19&quot;:4.15},{&quot;2026-07-20&quot;:4.15},{&quot;2026-07-21&quot;:4.14},{&quot;2026-07-23&quot;:4.05},{&quot;2026-07-25&quot;:4.13},{&quot;2026-07-26&quot;:4.13},{&quot;2026-07-27&quot;:4.13},{&quot;2026-07-29&quot;:4.19},{&quot;2026-07-30&quot;:4.16},{&quot;2026-07-31&quot;:4.21},{&quot;2026-08-01&quot;:4.25},{&quot;2026-08-02&quot;:4.25},{&quot;2026-08-03&quot;:4.25},{&quot;2026-08-04&quot;:4.25},{&quot;2026-08-05&quot;:4.25},{&quot;2026-08-07&quot;:4.25},{&quot;2026-08-08&quot;:4.25},{&quot;2026-08-09&quot;:4.34},{&quot;2026-08-10&quot;:4.34},{&quot;2026-08-11&quot;:4.34},{&quot;2026-08-12&quot;:4.34},{&quot;2026-08-13&quot;:4.32},{&quot;2026-08-14&quot;:4.32},{&quot;2026-08-15&quot;:4.32},{&quot;2026-08-16&quot;:4.32},{&quot;2026-08-17&quot;:4.32},{&quot;2026-08-18&quot;:4.32},{&quot;2026-08-19&quot;:4.32},{&quot;2026-08-20&quot;:4.32},{&quot;2026-08-21&quot;:4.32},{&quot;2026-08-22&quot;:4.31},{&quot;2026-08-23&quot;:4.33},{&quot;2026-08-24&quot;:4.33},{&quot;2026-08-25&quot;:4.33},{&quot;2026-08-26&quot;:4.34},{&quot;2026-08-27&quot;:4.39},{&quot;2026-08-28&quot;:4.39},{&quot;2026-08-29&quot;:4.39},{&quot;2026-08-30&quot;:4.39},{&quot;2026-08-31&quot;:4.37},{&quot;2026-09-01&quot;:4.37},{&quot;2026-09-02&quot;:4.39},{&quot;2026-09-03&quot;:4.39},{&quot;2026-09-04&quot;:4.39},{&quot;2026-09-05&quot;:4.39},{&quot;2026-09-06&quot;:4.39},{&quot;2026-09-07&quot;:4.39},{&quot;2026-09-08&quot;:4.39},{&quot;2026-09-09&quot;:4.39},{&quot;2026-09-10&quot;:4.39},{&quot;2026-09-11&quot;:4.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="18642"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-dmr ss-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">
            Gauntlet of Power
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Gauntlet of Power" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/1/d153663f-f08a-483e-92c9-82b5a9723807.jpg?1783918416" />

        <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">
            Gauntlet of Power
        </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">Artifact</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-5'></i>
          </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="Gauntlet of Power" src="https://cards.scryfall.io/large/front/d/1/d153663f-f08a-483e-92c9-82b5a9723807.jpg?1783918416" />
    </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.26
              </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">
                $4.19
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:4.56},{&quot;2026-06-11&quot;:4.56},{&quot;2026-06-12&quot;:4.56},{&quot;2026-06-13&quot;:4.56},{&quot;2026-06-14&quot;:4.56},{&quot;2026-06-15&quot;:4.56},{&quot;2026-06-16&quot;:4.5},{&quot;2026-06-17&quot;:4.5},{&quot;2026-06-18&quot;:4.5},{&quot;2026-06-19&quot;:4.5},{&quot;2026-06-20&quot;:4.5},{&quot;2026-06-21&quot;:4.5},{&quot;2026-06-22&quot;:4.5},{&quot;2026-06-23&quot;:4.5},{&quot;2026-06-24&quot;:4.38},{&quot;2026-06-25&quot;:4.38},{&quot;2026-06-26&quot;:4.38},{&quot;2026-06-27&quot;:4.36},{&quot;2026-06-28&quot;:4.36},{&quot;2026-06-29&quot;:4.36},{&quot;2026-06-30&quot;:4.36},{&quot;2026-07-01&quot;:4.35},{&quot;2026-07-02&quot;:4.35},{&quot;2026-07-03&quot;:4.35},{&quot;2026-07-04&quot;:4.35},{&quot;2026-07-05&quot;:4.4},{&quot;2026-07-06&quot;:4.39},{&quot;2026-07-07&quot;:4.43},{&quot;2026-07-08&quot;:4.43},{&quot;2026-07-09&quot;:4.43},{&quot;2026-07-10&quot;:4.38},{&quot;2026-07-11&quot;:4.38},{&quot;2026-07-12&quot;:4.38},{&quot;2026-07-13&quot;:4.38},{&quot;2026-07-14&quot;:4.38},{&quot;2026-07-15&quot;:4.33},{&quot;2026-07-16&quot;:4.33},{&quot;2026-07-17&quot;:4.33},{&quot;2026-07-18&quot;:4.46},{&quot;2026-07-19&quot;:4.46},{&quot;2026-07-20&quot;:4.37},{&quot;2026-07-21&quot;:4.3},{&quot;2026-07-23&quot;:4.24},{&quot;2026-07-25&quot;:4.24},{&quot;2026-07-26&quot;:4.24},{&quot;2026-07-27&quot;:4.04},{&quot;2026-07-29&quot;:4.06},{&quot;2026-07-30&quot;:4.06},{&quot;2026-07-31&quot;:4.09},{&quot;2026-08-01&quot;:4.09},{&quot;2026-08-02&quot;:4.09},{&quot;2026-08-03&quot;:4.09},{&quot;2026-08-04&quot;:4.09},{&quot;2026-08-05&quot;:4.12},{&quot;2026-08-07&quot;:4.16},{&quot;2026-08-08&quot;:4.13},{&quot;2026-08-09&quot;:4.13},{&quot;2026-08-10&quot;:4.13},{&quot;2026-08-11&quot;:4.13},{&quot;2026-08-12&quot;:4.13},{&quot;2026-08-13&quot;:4.13},{&quot;2026-08-14&quot;:4.13},{&quot;2026-08-15&quot;:4.11},{&quot;2026-08-16&quot;:4.11},{&quot;2026-08-17&quot;:4.09},{&quot;2026-08-18&quot;:4.09},{&quot;2026-08-19&quot;:4.09},{&quot;2026-08-20&quot;:4.09},{&quot;2026-08-21&quot;:4.09},{&quot;2026-08-22&quot;:4.09},{&quot;2026-08-23&quot;:4.09},{&quot;2026-08-24&quot;:4.08},{&quot;2026-08-25&quot;:4.08},{&quot;2026-08-26&quot;:4.08},{&quot;2026-08-27&quot;:4.1},{&quot;2026-08-28&quot;:4.1},{&quot;2026-08-29&quot;:4.1},{&quot;2026-08-30&quot;:4.15},{&quot;2026-08-31&quot;:4.15},{&quot;2026-09-01&quot;:4.15},{&quot;2026-09-02&quot;:4.22},{&quot;2026-09-03&quot;:4.22},{&quot;2026-09-04&quot;:4.22},{&quot;2026-09-05&quot;:4.22},{&quot;2026-09-06&quot;:4.22},{&quot;2026-09-07&quot;:4.22},{&quot;2026-09-08&quot;:4.22},{&quot;2026-09-09&quot;:4.22},{&quot;2026-09-10&quot;:4.22},{&quot;2026-09-11&quot;:4.19}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:4.2},{&quot;2026-06-11&quot;:4.23},{&quot;2026-06-12&quot;:4.23},{&quot;2026-06-13&quot;:4.23},{&quot;2026-06-14&quot;:4.22},{&quot;2026-06-15&quot;:4.25},{&quot;2026-06-16&quot;:4.25},{&quot;2026-06-17&quot;:4.3},{&quot;2026-06-18&quot;:4.3},{&quot;2026-06-19&quot;:4.3},{&quot;2026-06-20&quot;:4.3},{&quot;2026-06-21&quot;:4.35},{&quot;2026-06-22&quot;:4.35},{&quot;2026-06-23&quot;:4.41},{&quot;2026-06-24&quot;:4.46},{&quot;2026-06-25&quot;:4.44},{&quot;2026-06-26&quot;:4.44},{&quot;2026-06-27&quot;:4.44},{&quot;2026-06-28&quot;:4.38},{&quot;2026-06-29&quot;:4.38},{&quot;2026-06-30&quot;:4.38},{&quot;2026-07-01&quot;:4.38},{&quot;2026-07-02&quot;:4.38},{&quot;2026-07-03&quot;:4.42},{&quot;2026-07-04&quot;:4.42},{&quot;2026-07-05&quot;:4.42},{&quot;2026-07-06&quot;:4.42},{&quot;2026-07-07&quot;:4.47},{&quot;2026-07-08&quot;:4.47},{&quot;2026-07-09&quot;:4.46},{&quot;2026-07-10&quot;:4.46},{&quot;2026-07-11&quot;:4.46},{&quot;2026-07-12&quot;:4.46},{&quot;2026-07-13&quot;:4.36},{&quot;2026-07-14&quot;:4.37},{&quot;2026-07-15&quot;:4.26},{&quot;2026-07-16&quot;:4.26},{&quot;2026-07-17&quot;:4.26},{&quot;2026-07-18&quot;:4.26},{&quot;2026-07-19&quot;:4.21},{&quot;2026-07-20&quot;:4.21},{&quot;2026-07-21&quot;:4.22},{&quot;2026-07-23&quot;:4.22},{&quot;2026-07-25&quot;:4.12},{&quot;2026-07-26&quot;:4.17},{&quot;2026-07-27&quot;:4.25},{&quot;2026-07-29&quot;:4.28},{&quot;2026-07-30&quot;:4.17},{&quot;2026-07-31&quot;:4.23},{&quot;2026-08-01&quot;:4.23},{&quot;2026-08-02&quot;:4.23},{&quot;2026-08-03&quot;:4.23},{&quot;2026-08-04&quot;:4.23},{&quot;2026-08-05&quot;:4.28},{&quot;2026-08-07&quot;:4.3},{&quot;2026-08-08&quot;:4.34},{&quot;2026-08-09&quot;:4.34},{&quot;2026-08-10&quot;:4.39},{&quot;2026-08-11&quot;:4.39},{&quot;2026-08-12&quot;:4.39},{&quot;2026-08-13&quot;:4.39},{&quot;2026-08-14&quot;:4.39},{&quot;2026-08-15&quot;:4.48},{&quot;2026-08-16&quot;:4.48},{&quot;2026-08-17&quot;:4.45},{&quot;2026-08-18&quot;:4.43},{&quot;2026-08-19&quot;:4.43},{&quot;2026-08-20&quot;:4.43},{&quot;2026-08-21&quot;:4.31},{&quot;2026-08-22&quot;:4.31},{&quot;2026-08-23&quot;:4.31},{&quot;2026-08-24&quot;:4.31},{&quot;2026-08-25&quot;:4.31},{&quot;2026-08-26&quot;:4.36},{&quot;2026-08-27&quot;:4.36},{&quot;2026-08-28&quot;:4.33},{&quot;2026-08-29&quot;:4.33},{&quot;2026-08-30&quot;:4.34},{&quot;2026-08-31&quot;:4.34},{&quot;2026-09-01&quot;:4.34},{&quot;2026-09-02&quot;:4.3},{&quot;2026-09-03&quot;:4.3},{&quot;2026-09-04&quot;:4.26},{&quot;2026-09-05&quot;:4.33},{&quot;2026-09-06&quot;:4.33},{&quot;2026-09-07&quot;:4.33},{&quot;2026-09-08&quot;:4.33},{&quot;2026-09-09&quot;:4.25},{&quot;2026-09-10&quot;:4.25},{&quot;2026-09-11&quot;:4.26}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Price of Progress" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/2/a20751b4-01cb-4b45-9378-cf552a7075e7.jpg?1783910240" />

        <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">
            Price of Progress
        </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="Price of Progress" src="https://cards.scryfall.io/large/front/a/2/a20751b4-01cb-4b45-9378-cf552a7075e7.jpg?1783910240" />
    </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.22
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:4.66},{&quot;2026-06-11&quot;:4.59},{&quot;2026-06-12&quot;:4.43},{&quot;2026-06-13&quot;:4.55},{&quot;2026-06-14&quot;:4.55},{&quot;2026-06-15&quot;:4.57},{&quot;2026-06-16&quot;:4.58},{&quot;2026-06-17&quot;:4.58},{&quot;2026-06-18&quot;:4.58},{&quot;2026-06-19&quot;:4.6},{&quot;2026-06-20&quot;:4.6},{&quot;2026-06-21&quot;:4.6},{&quot;2026-06-22&quot;:4.64},{&quot;2026-06-23&quot;:4.58},{&quot;2026-06-24&quot;:4.58},{&quot;2026-06-25&quot;:4.49},{&quot;2026-06-26&quot;:4.54},{&quot;2026-06-27&quot;:4.54},{&quot;2026-06-28&quot;:4.54},{&quot;2026-06-29&quot;:4.54},{&quot;2026-06-30&quot;:4.52},{&quot;2026-07-01&quot;:4.52},{&quot;2026-07-02&quot;:4.62},{&quot;2026-07-03&quot;:4.54},{&quot;2026-07-04&quot;:4.57},{&quot;2026-07-05&quot;:4.68},{&quot;2026-07-06&quot;:4.68},{&quot;2026-07-07&quot;:4.62},{&quot;2026-07-08&quot;:4.62},{&quot;2026-07-09&quot;:4.6},{&quot;2026-07-10&quot;:4.62},{&quot;2026-07-11&quot;:4.6},{&quot;2026-07-12&quot;:4.56},{&quot;2026-07-13&quot;:4.56},{&quot;2026-07-14&quot;:4.67},{&quot;2026-07-15&quot;:4.73},{&quot;2026-07-16&quot;:4.77},{&quot;2026-07-17&quot;:4.7},{&quot;2026-07-18&quot;:4.8},{&quot;2026-07-19&quot;:4.78},{&quot;2026-07-20&quot;:4.74},{&quot;2026-07-21&quot;:4.76},{&quot;2026-07-23&quot;:4.72},{&quot;2026-07-25&quot;:4.79},{&quot;2026-07-26&quot;:4.78},{&quot;2026-07-27&quot;:4.78},{&quot;2026-07-29&quot;:4.79},{&quot;2026-07-30&quot;:4.78},{&quot;2026-07-31&quot;:4.78},{&quot;2026-08-01&quot;:4.68},{&quot;2026-08-02&quot;:4.68},{&quot;2026-08-03&quot;:4.63},{&quot;2026-08-04&quot;:4.59},{&quot;2026-08-05&quot;:4.57},{&quot;2026-08-07&quot;:4.57},{&quot;2026-08-08&quot;:4.56},{&quot;2026-08-09&quot;:4.56},{&quot;2026-08-10&quot;:4.66},{&quot;2026-08-11&quot;:4.63},{&quot;2026-08-12&quot;:4.59},{&quot;2026-08-13&quot;:4.49},{&quot;2026-08-14&quot;:4.53},{&quot;2026-08-15&quot;:4.52},{&quot;2026-08-16&quot;:4.52},{&quot;2026-08-17&quot;:4.49},{&quot;2026-08-18&quot;:4.37},{&quot;2026-08-19&quot;:4.37},{&quot;2026-08-20&quot;:4.37},{&quot;2026-08-21&quot;:4.38},{&quot;2026-08-22&quot;:4.45},{&quot;2026-08-23&quot;:4.62},{&quot;2026-08-24&quot;:4.66},{&quot;2026-08-25&quot;:4.66},{&quot;2026-08-26&quot;:4.65},{&quot;2026-08-27&quot;:4.58},{&quot;2026-08-28&quot;:4.48},{&quot;2026-08-29&quot;:4.48},{&quot;2026-08-30&quot;:4.45},{&quot;2026-08-31&quot;:4.48},{&quot;2026-09-01&quot;:4.48},{&quot;2026-09-02&quot;:4.34},{&quot;2026-09-03&quot;:4.31},{&quot;2026-09-04&quot;:4.26},{&quot;2026-09-05&quot;:4.01},{&quot;2026-09-06&quot;:4.26},{&quot;2026-09-07&quot;:4.26},{&quot;2026-09-08&quot;:4.18},{&quot;2026-09-09&quot;:4.33},{&quot;2026-09-10&quot;:4.25},{&quot;2026-09-11&quot;:4.22}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Vandalblast" src="https://cards.scryfall.io/large/front/b/b/bb320986-0a52-4084-a8c4-e09659432b22.jpg?1783927721" />
    </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.21
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:21.08},{&quot;2026-06-14&quot;:21.08},{&quot;2026-06-15&quot;:21.08},{&quot;2026-06-16&quot;:21.08},{&quot;2026-06-17&quot;:21.66},{&quot;2026-06-18&quot;:21.66},{&quot;2026-06-19&quot;:22.05},{&quot;2026-06-20&quot;:22.15},{&quot;2026-06-21&quot;:22.15},{&quot;2026-06-22&quot;:22.15},{&quot;2026-06-23&quot;:22.15},{&quot;2026-06-24&quot;:22.15},{&quot;2026-06-25&quot;:22.15},{&quot;2026-06-26&quot;:22.2},{&quot;2026-06-27&quot;:22.2},{&quot;2026-06-28&quot;:22.2},{&quot;2026-06-29&quot;:22.2},{&quot;2026-06-30&quot;:22.2},{&quot;2026-07-01&quot;:22.2},{&quot;2026-07-02&quot;:22.2},{&quot;2026-07-03&quot;:22.2},{&quot;2026-07-04&quot;:22.2},{&quot;2026-07-05&quot;:22.2},{&quot;2026-07-06&quot;:22.2},{&quot;2026-07-07&quot;:22.2},{&quot;2026-07-08&quot;:22.2},{&quot;2026-07-09&quot;:22.2},{&quot;2026-07-10&quot;:22.2},{&quot;2026-07-11&quot;:22.2},{&quot;2026-07-12&quot;:22.4},{&quot;2026-07-13&quot;:22.4},{&quot;2026-07-14&quot;:22.4},{&quot;2026-07-15&quot;:22.4},{&quot;2026-07-16&quot;:22.4},{&quot;2026-07-17&quot;:22.4},{&quot;2026-07-18&quot;:22.4},{&quot;2026-07-19&quot;:22.57},{&quot;2026-07-20&quot;:22.57},{&quot;2026-07-21&quot;:22.8},{&quot;2026-07-22&quot;:22.8},{&quot;2026-07-23&quot;:22.8},{&quot;2026-07-24&quot;:22.8},{&quot;2026-07-25&quot;:22.8},{&quot;2026-07-26&quot;:22.8},{&quot;2026-07-27&quot;:22.92},{&quot;2026-07-28&quot;:22.92},{&quot;2026-07-29&quot;:22.92},{&quot;2026-07-30&quot;:22.92},{&quot;2026-07-31&quot;:22.92},{&quot;2026-08-01&quot;:22.92},{&quot;2026-08-02&quot;:22.92},{&quot;2026-08-03&quot;:22.92},{&quot;2026-08-04&quot;:22.92},{&quot;2026-08-05&quot;:22.92},{&quot;2026-08-07&quot;:22.92},{&quot;2026-08-08&quot;:22.92},{&quot;2026-08-09&quot;:22.92},{&quot;2026-08-10&quot;:22.92},{&quot;2026-08-11&quot;:22.92},{&quot;2026-08-12&quot;:22.92},{&quot;2026-08-13&quot;:22.92},{&quot;2026-08-14&quot;:22.92},{&quot;2026-08-15&quot;:22.92},{&quot;2026-08-16&quot;:22.92},{&quot;2026-08-17&quot;:22.92},{&quot;2026-08-18&quot;:22.92},{&quot;2026-08-19&quot;:22.92},{&quot;2026-08-20&quot;:22.92},{&quot;2026-08-21&quot;:22.92},{&quot;2026-08-22&quot;:22.92},{&quot;2026-08-23&quot;:22.92},{&quot;2026-08-24&quot;:23.13},{&quot;2026-08-25&quot;:23.13},{&quot;2026-08-26&quot;:23.13},{&quot;2026-08-27&quot;:23.13},{&quot;2026-08-28&quot;:23.13},{&quot;2026-08-29&quot;:23.13},{&quot;2026-08-30&quot;:23.13},{&quot;2026-08-31&quot;:23.13},{&quot;2026-09-01&quot;:23.33},{&quot;2026-09-02&quot;:23.33},{&quot;2026-09-03&quot;:23.33},{&quot;2026-09-04&quot;:23.33},{&quot;2026-09-05&quot;:23.61},{&quot;2026-09-06&quot;:23.61},{&quot;2026-09-07&quot;:23.61},{&quot;2026-09-08&quot;:23.61},{&quot;2026-09-09&quot;:23.61},{&quot;2026-09-10&quot;:23.61},{&quot;2026-09-11&quot;:23.81}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:3.47},{&quot;2026-06-14&quot;:3.47},{&quot;2026-06-15&quot;:3.47},{&quot;2026-06-16&quot;:3.47},{&quot;2026-06-17&quot;:3.47},{&quot;2026-06-18&quot;:3.54},{&quot;2026-06-19&quot;:3.48},{&quot;2026-06-20&quot;:3.48},{&quot;2026-06-21&quot;:3.48},{&quot;2026-06-22&quot;:3.47},{&quot;2026-06-23&quot;:3.39},{&quot;2026-06-24&quot;:3.39},{&quot;2026-06-25&quot;:3.39},{&quot;2026-06-26&quot;:3.41},{&quot;2026-06-27&quot;:3.41},{&quot;2026-06-28&quot;:3.5},{&quot;2026-06-29&quot;:3.49},{&quot;2026-06-30&quot;:3.49},{&quot;2026-07-01&quot;:3.62},{&quot;2026-07-02&quot;:3.62},{&quot;2026-07-03&quot;:3.62},{&quot;2026-07-04&quot;:3.62},{&quot;2026-07-05&quot;:3.63},{&quot;2026-07-06&quot;:3.62},{&quot;2026-07-07&quot;:3.61},{&quot;2026-07-08&quot;:3.65},{&quot;2026-07-09&quot;:3.65},{&quot;2026-07-10&quot;:3.65},{&quot;2026-07-11&quot;:3.65},{&quot;2026-07-12&quot;:3.65},{&quot;2026-07-13&quot;:3.65},{&quot;2026-07-14&quot;:3.65},{&quot;2026-07-15&quot;:3.72},{&quot;2026-07-16&quot;:3.73},{&quot;2026-07-17&quot;:3.73},{&quot;2026-07-18&quot;:3.84},{&quot;2026-07-19&quot;:3.84},{&quot;2026-07-20&quot;:3.89},{&quot;2026-07-21&quot;:3.97},{&quot;2026-07-22&quot;:3.97},{&quot;2026-07-23&quot;:3.97},{&quot;2026-07-24&quot;:4.02},{&quot;2026-07-25&quot;:4.02},{&quot;2026-07-26&quot;:4.02},{&quot;2026-07-27&quot;:4.16},{&quot;2026-07-28&quot;:4.16},{&quot;2026-07-29&quot;:4.16},{&quot;2026-07-30&quot;:4.16},{&quot;2026-07-31&quot;:4.16},{&quot;2026-08-01&quot;:4.16},{&quot;2026-08-02&quot;:4.14},{&quot;2026-08-03&quot;:4.14},{&quot;2026-08-04&quot;:4.19},{&quot;2026-08-05&quot;:4.19},{&quot;2026-08-07&quot;:4.26},{&quot;2026-08-08&quot;:4.26},{&quot;2026-08-09&quot;:4.26},{&quot;2026-08-10&quot;:4.26},{&quot;2026-08-11&quot;:4.26},{&quot;2026-08-12&quot;:4.23},{&quot;2026-08-13&quot;:4.13},{&quot;2026-08-14&quot;:4.13},{&quot;2026-08-15&quot;:4.13},{&quot;2026-08-16&quot;:4.04},{&quot;2026-08-17&quot;:4.04},{&quot;2026-08-18&quot;:4.04},{&quot;2026-08-19&quot;:4.04},{&quot;2026-08-20&quot;:3.98},{&quot;2026-08-21&quot;:3.97},{&quot;2026-08-22&quot;:3.97},{&quot;2026-08-23&quot;:4.08},{&quot;2026-08-24&quot;:4.05},{&quot;2026-08-25&quot;:4.05},{&quot;2026-08-26&quot;:4.05},{&quot;2026-08-27&quot;:4.05},{&quot;2026-08-28&quot;:4.05},{&quot;2026-08-29&quot;:4.05},{&quot;2026-08-30&quot;:4.06},{&quot;2026-08-31&quot;:4.06},{&quot;2026-09-01&quot;:4.06},{&quot;2026-09-02&quot;:3.97},{&quot;2026-09-03&quot;:4.05},{&quot;2026-09-04&quot;:4.18},{&quot;2026-09-05&quot;:3.95},{&quot;2026-09-06&quot;:4.07},{&quot;2026-09-07&quot;:4.17},{&quot;2026-09-08&quot;:4.26},{&quot;2026-09-09&quot;:4.26},{&quot;2026-09-10&quot;:4.26},{&quot;2026-09-11&quot;:4.21}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="86367"
  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-woe 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">
            Virtue of Courage 
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Virtue of Courage // Embereth Blaze" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/b/8b0e6daf-0dec-4718-af79-b7ce137c3135.jpg?1783915088" />

        <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">
            Virtue of Courage 
        </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">Enchantment</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <div data-controller="card-flip" class="flex flex-col items-center">
          <div
            data-action="click->card-flip#flip"
            class="flip-container cursor-pointer w-full max-w-xs mx-auto"
          >
            <div data-card-flip-target="card" class="flip-card">
              <div class="flip-card-front">
                <img class="w-full h-auto rounded-2xl" alt="Virtue of Courage // Embereth Blaze" src="https://cards.scryfall.io/large/front/8/b/8b0e6daf-0dec-4718-af79-b7ce137c3135.jpg?1783915088" />
              </div>

              <div class="flip-card-back">
                <img class="w-full h-auto rounded-2xl" alt="Virtue of Courage // Embereth Blaze" src="https://cards.scryfall.io/large/front/8/b/8b0e6daf-0dec-4718-af79-b7ce137c3135.jpg?1783915088" />
              </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">
                $4.12
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:2.11},{&quot;2026-06-14&quot;:2.11},{&quot;2026-06-15&quot;:2.11},{&quot;2026-06-16&quot;:2.44},{&quot;2026-06-17&quot;:2.6},{&quot;2026-06-18&quot;:2.6},{&quot;2026-06-19&quot;:2.6},{&quot;2026-06-20&quot;:2.6},{&quot;2026-06-21&quot;:2.6},{&quot;2026-06-22&quot;:2.6},{&quot;2026-06-23&quot;:2.7},{&quot;2026-06-24&quot;:2.7},{&quot;2026-06-25&quot;:2.7},{&quot;2026-06-26&quot;:2.7},{&quot;2026-06-27&quot;:2.7},{&quot;2026-06-28&quot;:2.7},{&quot;2026-06-29&quot;:2.7},{&quot;2026-06-30&quot;:2.7},{&quot;2026-07-01&quot;:2.72},{&quot;2026-07-02&quot;:2.76},{&quot;2026-07-03&quot;:2.76},{&quot;2026-07-04&quot;:2.76},{&quot;2026-07-05&quot;:2.76},{&quot;2026-07-06&quot;:2.76},{&quot;2026-07-07&quot;:2.76},{&quot;2026-07-08&quot;:2.82},{&quot;2026-07-09&quot;:2.88},{&quot;2026-07-10&quot;:2.88},{&quot;2026-07-11&quot;:2.88},{&quot;2026-07-12&quot;:2.88},{&quot;2026-07-13&quot;:2.81},{&quot;2026-07-14&quot;:2.81},{&quot;2026-07-15&quot;:2.81},{&quot;2026-07-16&quot;:2.81},{&quot;2026-07-17&quot;:3.01},{&quot;2026-07-18&quot;:3.01},{&quot;2026-07-19&quot;:3.01},{&quot;2026-07-20&quot;:3.09},{&quot;2026-07-21&quot;:3.18},{&quot;2026-07-22&quot;:3.18},{&quot;2026-07-23&quot;:3.27},{&quot;2026-07-24&quot;:3.27},{&quot;2026-07-25&quot;:3.27},{&quot;2026-07-26&quot;:3.27},{&quot;2026-07-27&quot;:3.27},{&quot;2026-07-28&quot;:3.27},{&quot;2026-07-29&quot;:3.27},{&quot;2026-07-30&quot;:3.27},{&quot;2026-07-31&quot;:3.29},{&quot;2026-08-01&quot;:3.29},{&quot;2026-08-02&quot;:3.29},{&quot;2026-08-03&quot;:3.29},{&quot;2026-08-04&quot;:3.29},{&quot;2026-08-05&quot;:3.31},{&quot;2026-08-07&quot;:3.31},{&quot;2026-08-08&quot;:3.31},{&quot;2026-08-09&quot;:3.31},{&quot;2026-08-10&quot;:3.31},{&quot;2026-08-11&quot;:3.31},{&quot;2026-08-12&quot;:3.31},{&quot;2026-08-13&quot;:3.25},{&quot;2026-08-14&quot;:3.25},{&quot;2026-08-15&quot;:3.32},{&quot;2026-08-16&quot;:3.35},{&quot;2026-08-17&quot;:3.35},{&quot;2026-08-18&quot;:3.35},{&quot;2026-08-19&quot;:3.35},{&quot;2026-08-20&quot;:3.35},{&quot;2026-08-21&quot;:3.35},{&quot;2026-08-22&quot;:3.39},{&quot;2026-08-23&quot;:3.39},{&quot;2026-08-24&quot;:3.39},{&quot;2026-08-25&quot;:3.39},{&quot;2026-08-26&quot;:3.38},{&quot;2026-08-27&quot;:3.38},{&quot;2026-08-28&quot;:3.33},{&quot;2026-08-29&quot;:3.33},{&quot;2026-08-30&quot;:3.38},{&quot;2026-08-31&quot;:3.38},{&quot;2026-09-01&quot;:3.38},{&quot;2026-09-02&quot;:3.36},{&quot;2026-09-03&quot;:3.33},{&quot;2026-09-04&quot;:3.33},{&quot;2026-09-05&quot;:3.33},{&quot;2026-09-06&quot;:3.33},{&quot;2026-09-07&quot;:3.3},{&quot;2026-09-08&quot;:3.39},{&quot;2026-09-09&quot;:3.39},{&quot;2026-09-10&quot;:3.39},{&quot;2026-09-11&quot;:3.39}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:2.29},{&quot;2026-06-14&quot;:2.28},{&quot;2026-06-15&quot;:2.29},{&quot;2026-06-16&quot;:2.41},{&quot;2026-06-17&quot;:2.43},{&quot;2026-06-18&quot;:2.43},{&quot;2026-06-19&quot;:2.41},{&quot;2026-06-20&quot;:2.41},{&quot;2026-06-21&quot;:2.41},{&quot;2026-06-22&quot;:2.41},{&quot;2026-06-23&quot;:2.36},{&quot;2026-06-24&quot;:2.25},{&quot;2026-06-25&quot;:2.19},{&quot;2026-06-26&quot;:2.22},{&quot;2026-06-27&quot;:2.21},{&quot;2026-06-28&quot;:2.34},{&quot;2026-06-29&quot;:2.32},{&quot;2026-06-30&quot;:2.36},{&quot;2026-07-01&quot;:2.32},{&quot;2026-07-02&quot;:2.21},{&quot;2026-07-03&quot;:2.26},{&quot;2026-07-04&quot;:2.34},{&quot;2026-07-05&quot;:2.29},{&quot;2026-07-06&quot;:2.32},{&quot;2026-07-07&quot;:2.37},{&quot;2026-07-08&quot;:2.25},{&quot;2026-07-09&quot;:2.39},{&quot;2026-07-10&quot;:2.36},{&quot;2026-07-11&quot;:2.25},{&quot;2026-07-12&quot;:2.29},{&quot;2026-07-13&quot;:2.64},{&quot;2026-07-14&quot;:2.56},{&quot;2026-07-15&quot;:2.56},{&quot;2026-07-16&quot;:2.57},{&quot;2026-07-17&quot;:2.56},{&quot;2026-07-18&quot;:2.46},{&quot;2026-07-19&quot;:2.46},{&quot;2026-07-20&quot;:2.41},{&quot;2026-07-21&quot;:2.38},{&quot;2026-07-22&quot;:2.35},{&quot;2026-07-23&quot;:2.35},{&quot;2026-07-24&quot;:2.38},{&quot;2026-07-25&quot;:2.44},{&quot;2026-07-26&quot;:2.44},{&quot;2026-07-27&quot;:2.32},{&quot;2026-07-28&quot;:2.32},{&quot;2026-07-29&quot;:2.33},{&quot;2026-07-30&quot;:2.43},{&quot;2026-07-31&quot;:2.41},{&quot;2026-08-01&quot;:2.7},{&quot;2026-08-02&quot;:2.83},{&quot;2026-08-03&quot;:3.13},{&quot;2026-08-04&quot;:3.42},{&quot;2026-08-05&quot;:3.52},{&quot;2026-08-07&quot;:3.35},{&quot;2026-08-08&quot;:3.37},{&quot;2026-08-09&quot;:3.41},{&quot;2026-08-10&quot;:3.43},{&quot;2026-08-11&quot;:3.44},{&quot;2026-08-12&quot;:3.36},{&quot;2026-08-13&quot;:3.4},{&quot;2026-08-14&quot;:2.91},{&quot;2026-08-15&quot;:2.92},{&quot;2026-08-16&quot;:3.1},{&quot;2026-08-17&quot;:2.96},{&quot;2026-08-18&quot;:2.93},{&quot;2026-08-19&quot;:2.93},{&quot;2026-08-20&quot;:2.94},{&quot;2026-08-21&quot;:3.02},{&quot;2026-08-22&quot;:3.02},{&quot;2026-08-23&quot;:3.07},{&quot;2026-08-24&quot;:2.77},{&quot;2026-08-25&quot;:2.88},{&quot;2026-08-26&quot;:3.05},{&quot;2026-08-27&quot;:3.12},{&quot;2026-08-28&quot;:3.16},{&quot;2026-08-29&quot;:3.16},{&quot;2026-08-30&quot;:3.24},{&quot;2026-08-31&quot;:3.45},{&quot;2026-09-01&quot;:3.45},{&quot;2026-09-02&quot;:3.39},{&quot;2026-09-03&quot;:3.26},{&quot;2026-09-04&quot;:3.47},{&quot;2026-09-05&quot;:3.67},{&quot;2026-09-06&quot;:3.58},{&quot;2026-09-07&quot;:3.82},{&quot;2026-09-08&quot;:3.93},{&quot;2026-09-09&quot;:3.93},{&quot;2026-09-10&quot;:4.1},{&quot;2026-09-11&quot;:4.12}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Magus of the Moon
        </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="text-sm font-medium text-nine-white">
            $4.03
          </span>
        </div>
      </div>
    </div>

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Magus of the Moon" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/c/7c9bd75c-9606-4607-bfa6-d6acdee12820.jpg?1783927794" />

        <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">
            Magus of the Moon
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">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-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="Magus of the Moon" src="https://cards.scryfall.io/large/front/7/c/7c9bd75c-9606-4607-bfa6-d6acdee12820.jpg?1783927794" />
    </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.03
              </span>

            </div>
          </div>

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-11&quot;:6.28},{&quot;2026-06-12&quot;:6.28},{&quot;2026-06-13&quot;:6.28},{&quot;2026-06-14&quot;:6.28},{&quot;2026-06-15&quot;:6.29},{&quot;2026-06-16&quot;:6.29},{&quot;2026-06-17&quot;:6.29},{&quot;2026-06-18&quot;:6.29},{&quot;2026-06-19&quot;:6.29},{&quot;2026-06-20&quot;:6.29},{&quot;2026-06-21&quot;:6.29},{&quot;2026-06-22&quot;:6.29},{&quot;2026-06-23&quot;:6.29},{&quot;2026-06-24&quot;:6.29},{&quot;2026-06-25&quot;:6.29},{&quot;2026-06-26&quot;:6.29},{&quot;2026-06-27&quot;:6.29},{&quot;2026-06-28&quot;:6.29},{&quot;2026-06-29&quot;:6.29},{&quot;2026-06-30&quot;:6.29},{&quot;2026-07-01&quot;:6.29},{&quot;2026-07-02&quot;:6.29},{&quot;2026-07-03&quot;:6.29},{&quot;2026-07-04&quot;:6.29},{&quot;2026-07-05&quot;:6.29},{&quot;2026-07-06&quot;:6.29},{&quot;2026-07-07&quot;:6.29},{&quot;2026-07-08&quot;:6.29},{&quot;2026-07-09&quot;:6.29},{&quot;2026-07-10&quot;:6.29},{&quot;2026-07-11&quot;:6.29},{&quot;2026-07-12&quot;:6.28},{&quot;2026-07-13&quot;:6.28},{&quot;2026-07-14&quot;:6.28},{&quot;2026-07-15&quot;:6.28},{&quot;2026-07-16&quot;:6.28},{&quot;2026-07-17&quot;:6.28},{&quot;2026-07-18&quot;:6.28},{&quot;2026-07-19&quot;:6.28},{&quot;2026-07-20&quot;:6.28},{&quot;2026-07-21&quot;:6.28},{&quot;2026-07-23&quot;:6.28},{&quot;2026-07-25&quot;:6.28},{&quot;2026-07-26&quot;:6.28},{&quot;2026-07-27&quot;:6.28},{&quot;2026-07-28&quot;:6.33},{&quot;2026-07-29&quot;:6.33},{&quot;2026-07-30&quot;:6.33},{&quot;2026-07-31&quot;:6.33},{&quot;2026-08-01&quot;:6.33},{&quot;2026-08-02&quot;:6.33},{&quot;2026-08-03&quot;:6.33},{&quot;2026-08-04&quot;:6.33},{&quot;2026-08-05&quot;:6.33},{&quot;2026-08-07&quot;:6.33},{&quot;2026-08-08&quot;:6.33},{&quot;2026-08-09&quot;:6.33},{&quot;2026-08-10&quot;:6.43},{&quot;2026-08-11&quot;:6.43},{&quot;2026-08-12&quot;:6.43},{&quot;2026-08-13&quot;:6.43},{&quot;2026-08-14&quot;:6.43},{&quot;2026-08-15&quot;:6.43},{&quot;2026-08-16&quot;:6.43},{&quot;2026-08-17&quot;:6.43},{&quot;2026-08-18&quot;:6.43},{&quot;2026-08-19&quot;:6.43},{&quot;2026-08-20&quot;:6.43},{&quot;2026-08-21&quot;:6.43},{&quot;2026-08-22&quot;:6.43},{&quot;2026-08-23&quot;:6.43},{&quot;2026-08-24&quot;:6.5},{&quot;2026-08-25&quot;:6.5},{&quot;2026-08-26&quot;:6.5},{&quot;2026-08-27&quot;:6.5},{&quot;2026-08-28&quot;:6.5},{&quot;2026-08-29&quot;:6.5},{&quot;2026-08-30&quot;:6.5},{&quot;2026-08-31&quot;:6.5},{&quot;2026-09-01&quot;:6.5},{&quot;2026-09-02&quot;:6.5},{&quot;2026-09-03&quot;:6.5},{&quot;2026-09-04&quot;:6.5},{&quot;2026-09-05&quot;:6.5},{&quot;2026-09-06&quot;:6.5},{&quot;2026-09-07&quot;:6.5},{&quot;2026-09-08&quot;:6.5},{&quot;2026-09-09&quot;:6.5},{&quot;2026-09-10&quot;:6.5},{&quot;2026-09-11&quot;:6.5}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:5.01},{&quot;2026-06-12&quot;:5.01},{&quot;2026-06-13&quot;:4.91},{&quot;2026-06-14&quot;:4.86},{&quot;2026-06-15&quot;:4.86},{&quot;2026-06-16&quot;:4.86},{&quot;2026-06-17&quot;:4.89},{&quot;2026-06-18&quot;:4.86},{&quot;2026-06-19&quot;:4.77},{&quot;2026-06-20&quot;:4.77},{&quot;2026-06-21&quot;:4.77},{&quot;2026-06-22&quot;:4.77},{&quot;2026-06-23&quot;:4.77},{&quot;2026-06-24&quot;:4.68},{&quot;2026-06-25&quot;:4.68},{&quot;2026-06-26&quot;:4.68},{&quot;2026-06-27&quot;:4.63},{&quot;2026-06-28&quot;:4.63},{&quot;2026-06-29&quot;:4.45},{&quot;2026-06-30&quot;:4.32},{&quot;2026-07-01&quot;:4.17},{&quot;2026-07-02&quot;:4.15},{&quot;2026-07-03&quot;:4.09},{&quot;2026-07-04&quot;:4.03},{&quot;2026-07-05&quot;:3.96},{&quot;2026-07-06&quot;:3.89},{&quot;2026-07-07&quot;:3.88},{&quot;2026-07-08&quot;:4.0},{&quot;2026-07-09&quot;:3.99},{&quot;2026-07-10&quot;:4.07},{&quot;2026-07-11&quot;:4.11},{&quot;2026-07-12&quot;:4.19},{&quot;2026-07-13&quot;:4.19},{&quot;2026-07-14&quot;:4.18},{&quot;2026-07-15&quot;:4.29},{&quot;2026-07-16&quot;:4.24},{&quot;2026-07-17&quot;:4.19},{&quot;2026-07-18&quot;:4.13},{&quot;2026-07-19&quot;:4.13},{&quot;2026-07-20&quot;:4.13},{&quot;2026-07-21&quot;:4.13},{&quot;2026-07-23&quot;:4.16},{&quot;2026-07-25&quot;:4.19},{&quot;2026-07-26&quot;:4.19},{&quot;2026-07-27&quot;:4.31},{&quot;2026-07-28&quot;:4.3},{&quot;2026-07-29&quot;:4.3},{&quot;2026-07-30&quot;:4.24},{&quot;2026-07-31&quot;:4.24},{&quot;2026-08-01&quot;:4.16},{&quot;2026-08-02&quot;:4.16},{&quot;2026-08-03&quot;:4.08},{&quot;2026-08-04&quot;:4.1},{&quot;2026-08-05&quot;:4.03},{&quot;2026-08-07&quot;:4.03},{&quot;2026-08-08&quot;:4.03},{&quot;2026-08-09&quot;:4.06},{&quot;2026-08-10&quot;:4.08},{&quot;2026-08-11&quot;:4.08},{&quot;2026-08-12&quot;:4.11},{&quot;2026-08-13&quot;:4.11},{&quot;2026-08-14&quot;:4.2},{&quot;2026-08-15&quot;:4.25},{&quot;2026-08-16&quot;:4.03},{&quot;2026-08-17&quot;:3.96},{&quot;2026-08-18&quot;:3.96},{&quot;2026-08-19&quot;:4.11},{&quot;2026-08-20&quot;:4.11},{&quot;2026-08-21&quot;:4.0},{&quot;2026-08-22&quot;:4.02},{&quot;2026-08-23&quot;:4.02},{&quot;2026-08-24&quot;:4.02},{&quot;2026-08-25&quot;:4.02},{&quot;2026-08-26&quot;:3.98},{&quot;2026-08-27&quot;:4.05},{&quot;2026-08-28&quot;:4.04},{&quot;2026-08-29&quot;:4.04},{&quot;2026-08-30&quot;:4.05},{&quot;2026-08-31&quot;:4.05},{&quot;2026-09-01&quot;:4.05},{&quot;2026-09-02&quot;:4.0},{&quot;2026-09-03&quot;:4.02},{&quot;2026-09-04&quot;:3.97},{&quot;2026-09-05&quot;:4.03},{&quot;2026-09-06&quot;:4.0},{&quot;2026-09-07&quot;:4.03},{&quot;2026-09-08&quot;:4.0},{&quot;2026-09-09&quot;:4.02},{&quot;2026-09-10&quot;:4.03},{&quot;2026-09-11&quot;:4.03}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

          <span class="text-sm font-medium text-nine-white">
            $3.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="Vesuva" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/7/0726f70a-c1c4-4edb-86fb-9be280d9ea73.jpg?1783927746" />

        <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">
            Vesuva
        </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">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="Vesuva" src="https://cards.scryfall.io/large/front/0/7/0726f70a-c1c4-4edb-86fb-9be280d9ea73.jpg?1783927746" />
    </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.97
              </span>

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

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

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

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$3.20</span>
              <span class="text-xs text-grey-text">Credit: $4.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;2026-06-13&quot;:11.01},{&quot;2026-06-14&quot;:11.01},{&quot;2026-06-15&quot;:11.01},{&quot;2026-06-16&quot;:11.01},{&quot;2026-06-17&quot;:11.01},{&quot;2026-06-18&quot;:11.01},{&quot;2026-06-19&quot;:11.01},{&quot;2026-06-20&quot;:11.01},{&quot;2026-06-21&quot;:11.01},{&quot;2026-06-22&quot;:11.01},{&quot;2026-06-23&quot;:11.01},{&quot;2026-06-24&quot;:11.01},{&quot;2026-06-25&quot;:11.01},{&quot;2026-06-26&quot;:11.01},{&quot;2026-06-27&quot;:11.01},{&quot;2026-06-28&quot;:11.01},{&quot;2026-06-29&quot;:11.01},{&quot;2026-06-30&quot;:11.01},{&quot;2026-07-01&quot;:11.01},{&quot;2026-07-02&quot;:11.01},{&quot;2026-07-03&quot;:11.01},{&quot;2026-07-04&quot;:11.01},{&quot;2026-07-05&quot;:11.01},{&quot;2026-07-06&quot;:11.01},{&quot;2026-07-07&quot;:11.01},{&quot;2026-07-08&quot;:11.01},{&quot;2026-07-09&quot;:11.01},{&quot;2026-07-10&quot;:11.01},{&quot;2026-07-11&quot;:11.01},{&quot;2026-07-12&quot;:11.01},{&quot;2026-07-13&quot;:11.01},{&quot;2026-07-14&quot;:11.01},{&quot;2026-07-15&quot;:11.01},{&quot;2026-07-16&quot;:11.01},{&quot;2026-07-17&quot;:11.01},{&quot;2026-07-18&quot;:11.01},{&quot;2026-07-19&quot;:10.73},{&quot;2026-07-20&quot;:10.73},{&quot;2026-07-21&quot;:10.73},{&quot;2026-07-22&quot;:10.73},{&quot;2026-07-23&quot;:10.73},{&quot;2026-07-24&quot;:10.73},{&quot;2026-07-25&quot;:10.73},{&quot;2026-07-26&quot;:10.73},{&quot;2026-07-27&quot;:10.73},{&quot;2026-07-28&quot;:10.73},{&quot;2026-07-29&quot;:10.73},{&quot;2026-07-30&quot;:10.73},{&quot;2026-07-31&quot;:10.73},{&quot;2026-08-01&quot;:10.73},{&quot;2026-08-02&quot;:10.73},{&quot;2026-08-03&quot;:10.84},{&quot;2026-08-04&quot;:10.84},{&quot;2026-08-05&quot;:11.08},{&quot;2026-08-07&quot;:11.08},{&quot;2026-08-08&quot;:11.08},{&quot;2026-08-09&quot;:11.08},{&quot;2026-08-10&quot;:11.08},{&quot;2026-08-11&quot;:11.08},{&quot;2026-08-12&quot;:10.67},{&quot;2026-08-13&quot;:10.67},{&quot;2026-08-14&quot;:10.67},{&quot;2026-08-15&quot;:10.67},{&quot;2026-08-16&quot;:10.67},{&quot;2026-08-17&quot;:10.67},{&quot;2026-08-18&quot;:11.4},{&quot;2026-08-19&quot;:11.4},{&quot;2026-08-20&quot;:11.4},{&quot;2026-08-21&quot;:11.4},{&quot;2026-08-22&quot;:11.4},{&quot;2026-08-23&quot;:11.4},{&quot;2026-08-24&quot;:11.4},{&quot;2026-08-25&quot;:11.4},{&quot;2026-08-26&quot;:11.8},{&quot;2026-08-27&quot;:11.8},{&quot;2026-08-28&quot;:11.8},{&quot;2026-08-29&quot;:11.8},{&quot;2026-08-30&quot;:11.8},{&quot;2026-08-31&quot;:11.8},{&quot;2026-09-01&quot;:11.8},{&quot;2026-09-02&quot;:11.8},{&quot;2026-09-03&quot;:11.8},{&quot;2026-09-04&quot;:11.8},{&quot;2026-09-05&quot;:11.8},{&quot;2026-09-06&quot;:11.8},{&quot;2026-09-07&quot;:11.08},{&quot;2026-09-08&quot;:11.08},{&quot;2026-09-09&quot;:11.08},{&quot;2026-09-10&quot;:11.08},{&quot;2026-09-11&quot;:11.08}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:3.22},{&quot;2026-06-14&quot;:3.19},{&quot;2026-06-15&quot;:3.18},{&quot;2026-06-16&quot;:3.18},{&quot;2026-06-17&quot;:3.15},{&quot;2026-06-18&quot;:3.18},{&quot;2026-06-19&quot;:3.18},{&quot;2026-06-20&quot;:3.18},{&quot;2026-06-21&quot;:3.18},{&quot;2026-06-22&quot;:3.18},{&quot;2026-06-23&quot;:3.18},{&quot;2026-06-24&quot;:3.18},{&quot;2026-06-25&quot;:3.16},{&quot;2026-06-26&quot;:3.11},{&quot;2026-06-27&quot;:3.1},{&quot;2026-06-28&quot;:3.1},{&quot;2026-06-29&quot;:3.1},{&quot;2026-06-30&quot;:3.1},{&quot;2026-07-01&quot;:3.1},{&quot;2026-07-02&quot;:3.1},{&quot;2026-07-03&quot;:3.1},{&quot;2026-07-04&quot;:3.1},{&quot;2026-07-05&quot;:3.06},{&quot;2026-07-06&quot;:3.0},{&quot;2026-07-07&quot;:3.0},{&quot;2026-07-08&quot;:3.0},{&quot;2026-07-09&quot;:3.0},{&quot;2026-07-10&quot;:3.03},{&quot;2026-07-11&quot;:3.06},{&quot;2026-07-12&quot;:3.09},{&quot;2026-07-13&quot;:3.23},{&quot;2026-07-14&quot;:3.28},{&quot;2026-07-15&quot;:3.28},{&quot;2026-07-16&quot;:3.28},{&quot;2026-07-17&quot;:3.4},{&quot;2026-07-18&quot;:3.39},{&quot;2026-07-19&quot;:3.39},{&quot;2026-07-20&quot;:3.46},{&quot;2026-07-21&quot;:3.46},{&quot;2026-07-22&quot;:3.43},{&quot;2026-07-23&quot;:3.43},{&quot;2026-07-24&quot;:3.5},{&quot;2026-07-25&quot;:3.5},{&quot;2026-07-26&quot;:3.5},{&quot;2026-07-27&quot;:3.54},{&quot;2026-07-28&quot;:3.53},{&quot;2026-07-29&quot;:3.53},{&quot;2026-07-30&quot;:3.56},{&quot;2026-07-31&quot;:3.52},{&quot;2026-08-01&quot;:3.53},{&quot;2026-08-02&quot;:3.52},{&quot;2026-08-03&quot;:3.63},{&quot;2026-08-04&quot;:3.53},{&quot;2026-08-05&quot;:3.56},{&quot;2026-08-07&quot;:3.54},{&quot;2026-08-08&quot;:3.45},{&quot;2026-08-09&quot;:3.45},{&quot;2026-08-10&quot;:3.45},{&quot;2026-08-11&quot;:3.45},{&quot;2026-08-12&quot;:3.56},{&quot;2026-08-13&quot;:3.56},{&quot;2026-08-14&quot;:3.56},{&quot;2026-08-15&quot;:3.6},{&quot;2026-08-16&quot;:3.62},{&quot;2026-08-17&quot;:3.7},{&quot;2026-08-18&quot;:3.67},{&quot;2026-08-19&quot;:3.67},{&quot;2026-08-20&quot;:3.68},{&quot;2026-08-21&quot;:3.68},{&quot;2026-08-22&quot;:3.68},{&quot;2026-08-23&quot;:3.66},{&quot;2026-08-24&quot;:3.69},{&quot;2026-08-25&quot;:3.64},{&quot;2026-08-26&quot;:3.71},{&quot;2026-08-27&quot;:3.71},{&quot;2026-08-28&quot;:3.85},{&quot;2026-08-29&quot;:3.85},{&quot;2026-08-30&quot;:4.06},{&quot;2026-08-31&quot;:3.95},{&quot;2026-09-01&quot;:3.95},{&quot;2026-09-02&quot;:3.9},{&quot;2026-09-03&quot;:3.84},{&quot;2026-09-04&quot;:3.81},{&quot;2026-09-05&quot;:3.75},{&quot;2026-09-06&quot;:3.75},{&quot;2026-09-07&quot;:3.81},{&quot;2026-09-08&quot;:3.87},{&quot;2026-09-09&quot;:3.87},{&quot;2026-09-10&quot;:3.88},{&quot;2026-09-11&quot;:3.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="35312"
  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-vow 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">
            Kessig Flamebreather
        </span>


      </div>

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Kessig Flamebreather" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/3/0/303ad78a-b02a-44dc-afe6-7f95781a5062.jpg?1783924832" />

        <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">
            Kessig Flamebreather
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Creature — Human Shaman</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="Kessig Flamebreather" src="https://cards.scryfall.io/large/front/3/0/303ad78a-b02a-44dc-afe6-7f95781a5062.jpg?1783924832" />
    </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.26
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:8.37},{&quot;2026-06-11&quot;:8.32},{&quot;2026-06-12&quot;:8.19},{&quot;2026-06-13&quot;:8.19},{&quot;2026-06-14&quot;:8.19},{&quot;2026-06-15&quot;:7.73},{&quot;2026-06-16&quot;:7.72},{&quot;2026-06-17&quot;:7.69},{&quot;2026-06-18&quot;:7.44},{&quot;2026-06-19&quot;:7.44},{&quot;2026-06-20&quot;:7.44},{&quot;2026-06-21&quot;:7.44},{&quot;2026-06-22&quot;:7.62},{&quot;2026-06-23&quot;:7.81},{&quot;2026-06-24&quot;:7.81},{&quot;2026-06-25&quot;:7.84},{&quot;2026-06-26&quot;:7.84},{&quot;2026-06-27&quot;:8.1},{&quot;2026-06-28&quot;:8.42},{&quot;2026-06-29&quot;:8.5},{&quot;2026-06-30&quot;:8.72},{&quot;2026-07-01&quot;:8.72},{&quot;2026-07-02&quot;:8.26},{&quot;2026-07-03&quot;:8.36},{&quot;2026-07-04&quot;:8.36},{&quot;2026-07-05&quot;:8.36},{&quot;2026-07-06&quot;:7.8},{&quot;2026-07-07&quot;:7.73},{&quot;2026-07-08&quot;:7.79},{&quot;2026-07-09&quot;:8.61},{&quot;2026-07-10&quot;:8.61},{&quot;2026-07-11&quot;:8.61},{&quot;2026-07-12&quot;:8.61},{&quot;2026-07-13&quot;:8.59},{&quot;2026-07-14&quot;:8.63},{&quot;2026-07-15&quot;:8.52},{&quot;2026-07-16&quot;:8.52},{&quot;2026-07-17&quot;:8.67},{&quot;2026-07-18&quot;:8.67},{&quot;2026-07-19&quot;:8.67},{&quot;2026-07-20&quot;:8.43},{&quot;2026-07-21&quot;:8.43},{&quot;2026-07-23&quot;:8.35},{&quot;2026-07-25&quot;:8.48},{&quot;2026-07-26&quot;:8.48},{&quot;2026-07-27&quot;:8.48},{&quot;2026-07-29&quot;:7.99},{&quot;2026-07-30&quot;:7.6},{&quot;2026-07-31&quot;:7.55},{&quot;2026-08-01&quot;:7.55},{&quot;2026-08-02&quot;:7.49},{&quot;2026-08-03&quot;:7.18},{&quot;2026-08-04&quot;:7.13},{&quot;2026-08-05&quot;:7.13},{&quot;2026-08-07&quot;:7.02},{&quot;2026-08-08&quot;:7.02},{&quot;2026-08-09&quot;:7.02},{&quot;2026-08-10&quot;:7.02},{&quot;2026-08-11&quot;:6.99},{&quot;2026-08-12&quot;:6.99},{&quot;2026-08-13&quot;:6.99},{&quot;2026-08-14&quot;:7.04},{&quot;2026-08-15&quot;:7.04},{&quot;2026-08-16&quot;:7.04},{&quot;2026-08-17&quot;:6.99},{&quot;2026-08-18&quot;:7.05},{&quot;2026-08-19&quot;:7.05},{&quot;2026-08-20&quot;:7.05},{&quot;2026-08-21&quot;:7.24},{&quot;2026-08-22&quot;:7.24},{&quot;2026-08-23&quot;:7.2},{&quot;2026-08-24&quot;:7.2},{&quot;2026-08-25&quot;:7.2},{&quot;2026-08-26&quot;:6.96},{&quot;2026-08-27&quot;:6.89},{&quot;2026-08-28&quot;:6.89},{&quot;2026-08-29&quot;:6.89},{&quot;2026-08-30&quot;:6.99},{&quot;2026-08-31&quot;:6.73},{&quot;2026-09-01&quot;:6.73},{&quot;2026-09-02&quot;:6.67},{&quot;2026-09-03&quot;:6.67},{&quot;2026-09-04&quot;:6.61},{&quot;2026-09-05&quot;:6.45},{&quot;2026-09-06&quot;:6.45},{&quot;2026-09-07&quot;:6.49},{&quot;2026-09-08&quot;:6.51},{&quot;2026-09-09&quot;:6.65},{&quot;2026-09-10&quot;:6.76},{&quot;2026-09-11&quot;:6.82}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:3.33},{&quot;2026-06-11&quot;:3.29},{&quot;2026-06-12&quot;:3.31},{&quot;2026-06-13&quot;:3.29},{&quot;2026-06-14&quot;:3.38},{&quot;2026-06-15&quot;:3.32},{&quot;2026-06-16&quot;:3.31},{&quot;2026-06-17&quot;:3.41},{&quot;2026-06-18&quot;:3.27},{&quot;2026-06-19&quot;:3.29},{&quot;2026-06-20&quot;:3.16},{&quot;2026-06-21&quot;:3.13},{&quot;2026-06-22&quot;:3.09},{&quot;2026-06-23&quot;:3.13},{&quot;2026-06-24&quot;:3.3},{&quot;2026-06-25&quot;:3.11},{&quot;2026-06-26&quot;:3.2},{&quot;2026-06-27&quot;:3.09},{&quot;2026-06-28&quot;:3.11},{&quot;2026-06-29&quot;:3.21},{&quot;2026-06-30&quot;:3.85},{&quot;2026-07-01&quot;:3.97},{&quot;2026-07-02&quot;:4.08},{&quot;2026-07-03&quot;:4.21},{&quot;2026-07-04&quot;:3.58},{&quot;2026-07-05&quot;:3.59},{&quot;2026-07-06&quot;:3.5},{&quot;2026-07-07&quot;:3.42},{&quot;2026-07-08&quot;:3.44},{&quot;2026-07-09&quot;:3.35},{&quot;2026-07-10&quot;:3.36},{&quot;2026-07-11&quot;:3.31},{&quot;2026-07-12&quot;:3.32},{&quot;2026-07-13&quot;:3.39},{&quot;2026-07-14&quot;:3.33},{&quot;2026-07-15&quot;:3.53},{&quot;2026-07-16&quot;:3.52},{&quot;2026-07-17&quot;:3.33},{&quot;2026-07-18&quot;:3.55},{&quot;2026-07-19&quot;:3.56},{&quot;2026-07-20&quot;:3.71},{&quot;2026-07-21&quot;:3.67},{&quot;2026-07-23&quot;:3.52},{&quot;2026-07-25&quot;:3.75},{&quot;2026-07-26&quot;:3.96},{&quot;2026-07-27&quot;:4.09},{&quot;2026-07-29&quot;:3.9},{&quot;2026-07-30&quot;:3.74},{&quot;2026-07-31&quot;:3.71},{&quot;2026-08-01&quot;:3.73},{&quot;2026-08-02&quot;:3.78},{&quot;2026-08-03&quot;:3.65},{&quot;2026-08-04&quot;:3.7},{&quot;2026-08-05&quot;:3.62},{&quot;2026-08-07&quot;:3.58},{&quot;2026-08-08&quot;:3.59},{&quot;2026-08-09&quot;:3.49},{&quot;2026-08-10&quot;:3.59},{&quot;2026-08-11&quot;:3.61},{&quot;2026-08-12&quot;:3.6},{&quot;2026-08-13&quot;:3.45},{&quot;2026-08-14&quot;:3.51},{&quot;2026-08-15&quot;:3.62},{&quot;2026-08-16&quot;:3.57},{&quot;2026-08-17&quot;:3.54},{&quot;2026-08-18&quot;:3.57},{&quot;2026-08-19&quot;:3.51},{&quot;2026-08-20&quot;:3.51},{&quot;2026-08-21&quot;:3.5},{&quot;2026-08-22&quot;:3.51},{&quot;2026-08-23&quot;:3.64},{&quot;2026-08-24&quot;:3.6},{&quot;2026-08-25&quot;:3.6},{&quot;2026-08-26&quot;:3.63},{&quot;2026-08-27&quot;:3.69},{&quot;2026-08-28&quot;:3.58},{&quot;2026-08-29&quot;:3.58},{&quot;2026-08-30&quot;:3.47},{&quot;2026-08-31&quot;:3.44},{&quot;2026-09-01&quot;:3.44},{&quot;2026-09-02&quot;:3.43},{&quot;2026-09-03&quot;:3.4},{&quot;2026-09-04&quot;:3.33},{&quot;2026-09-05&quot;:3.32},{&quot;2026-09-06&quot;:3.28},{&quot;2026-09-07&quot;:3.33},{&quot;2026-09-08&quot;:3.28},{&quot;2026-09-09&quot;:3.29},{&quot;2026-09-10&quot;:3.22},{&quot;2026-09-11&quot;:3.26}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="35254"
  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-vow 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">
            Cemetery Gatekeeper
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Cemetery Gatekeeper" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/5/457086c4-1b4e-4f79-8f2a-10b16174c8bb.jpg?1783924842" />

        <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">
            Cemetery Gatekeeper
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Creature — Vampire</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="Cemetery Gatekeeper" src="https://cards.scryfall.io/large/front/4/5/457086c4-1b4e-4f79-8f2a-10b16174c8bb.jpg?1783924842" />
    </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.15
              </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">
                $2.61
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-11&quot;:2.61},{&quot;2026-06-12&quot;:2.62},{&quot;2026-06-13&quot;:2.62},{&quot;2026-06-14&quot;:2.62},{&quot;2026-06-15&quot;:2.62},{&quot;2026-06-16&quot;:2.62},{&quot;2026-06-17&quot;:2.62},{&quot;2026-06-18&quot;:2.62},{&quot;2026-06-19&quot;:2.62},{&quot;2026-06-20&quot;:2.62},{&quot;2026-06-21&quot;:2.62},{&quot;2026-06-22&quot;:2.62},{&quot;2026-06-23&quot;:2.62},{&quot;2026-06-24&quot;:2.62},{&quot;2026-06-25&quot;:2.7},{&quot;2026-06-26&quot;:2.7},{&quot;2026-06-27&quot;:2.7},{&quot;2026-06-28&quot;:2.7},{&quot;2026-06-29&quot;:2.7},{&quot;2026-06-30&quot;:2.7},{&quot;2026-07-01&quot;:2.7},{&quot;2026-07-02&quot;:2.69},{&quot;2026-07-03&quot;:2.69},{&quot;2026-07-04&quot;:2.69},{&quot;2026-07-05&quot;:2.73},{&quot;2026-07-06&quot;:2.76},{&quot;2026-07-07&quot;:2.78},{&quot;2026-07-08&quot;:2.78},{&quot;2026-07-09&quot;:2.78},{&quot;2026-07-10&quot;:2.78},{&quot;2026-07-11&quot;:2.78},{&quot;2026-07-12&quot;:2.7},{&quot;2026-07-13&quot;:2.7},{&quot;2026-07-14&quot;:2.7},{&quot;2026-07-15&quot;:2.7},{&quot;2026-07-16&quot;:2.7},{&quot;2026-07-17&quot;:2.7},{&quot;2026-07-18&quot;:2.72},{&quot;2026-07-19&quot;:2.72},{&quot;2026-07-20&quot;:2.72},{&quot;2026-07-21&quot;:2.72},{&quot;2026-07-23&quot;:2.72},{&quot;2026-07-25&quot;:2.7},{&quot;2026-07-26&quot;:2.7},{&quot;2026-07-27&quot;:2.7},{&quot;2026-07-28&quot;:2.7},{&quot;2026-07-29&quot;:2.7},{&quot;2026-07-30&quot;:2.7},{&quot;2026-07-31&quot;:2.7},{&quot;2026-08-01&quot;:2.7},{&quot;2026-08-02&quot;:2.7},{&quot;2026-08-03&quot;:2.7},{&quot;2026-08-04&quot;:2.7},{&quot;2026-08-05&quot;:2.7},{&quot;2026-08-07&quot;:2.7},{&quot;2026-08-08&quot;:2.7},{&quot;2026-08-09&quot;:2.7},{&quot;2026-08-10&quot;:2.73},{&quot;2026-08-11&quot;:2.73},{&quot;2026-08-12&quot;:2.73},{&quot;2026-08-13&quot;:2.73},{&quot;2026-08-14&quot;:2.75},{&quot;2026-08-15&quot;:2.75},{&quot;2026-08-16&quot;:2.75},{&quot;2026-08-17&quot;:2.75},{&quot;2026-08-18&quot;:2.76},{&quot;2026-08-19&quot;:2.76},{&quot;2026-08-20&quot;:2.76},{&quot;2026-08-21&quot;:2.76},{&quot;2026-08-22&quot;:2.76},{&quot;2026-08-23&quot;:2.76},{&quot;2026-08-24&quot;:2.76},{&quot;2026-08-25&quot;:2.76},{&quot;2026-08-26&quot;:2.76},{&quot;2026-08-27&quot;:2.76},{&quot;2026-08-28&quot;:2.76},{&quot;2026-08-29&quot;:2.76},{&quot;2026-08-30&quot;:2.76},{&quot;2026-08-31&quot;:2.72},{&quot;2026-09-01&quot;:2.72},{&quot;2026-09-02&quot;:2.66},{&quot;2026-09-03&quot;:2.66},{&quot;2026-09-04&quot;:2.66},{&quot;2026-09-05&quot;:2.66},{&quot;2026-09-06&quot;:2.66},{&quot;2026-09-07&quot;:2.66},{&quot;2026-09-08&quot;:2.61},{&quot;2026-09-09&quot;:2.61},{&quot;2026-09-10&quot;:2.61},{&quot;2026-09-11&quot;:2.61}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:2.94},{&quot;2026-06-12&quot;:2.94},{&quot;2026-06-13&quot;:2.94},{&quot;2026-06-14&quot;:2.94},{&quot;2026-06-15&quot;:2.93},{&quot;2026-06-16&quot;:2.93},{&quot;2026-06-17&quot;:2.93},{&quot;2026-06-18&quot;:2.93},{&quot;2026-06-19&quot;:2.93},{&quot;2026-06-20&quot;:2.69},{&quot;2026-06-21&quot;:2.7},{&quot;2026-06-22&quot;:2.62},{&quot;2026-06-23&quot;:2.69},{&quot;2026-06-24&quot;:2.66},{&quot;2026-06-25&quot;:2.73},{&quot;2026-06-26&quot;:2.73},{&quot;2026-06-27&quot;:2.64},{&quot;2026-06-28&quot;:2.63},{&quot;2026-06-29&quot;:2.62},{&quot;2026-06-30&quot;:2.62},{&quot;2026-07-01&quot;:2.6},{&quot;2026-07-02&quot;:2.6},{&quot;2026-07-03&quot;:2.6},{&quot;2026-07-04&quot;:2.44},{&quot;2026-07-05&quot;:2.44},{&quot;2026-07-06&quot;:2.44},{&quot;2026-07-07&quot;:2.44},{&quot;2026-07-08&quot;:2.44},{&quot;2026-07-09&quot;:2.46},{&quot;2026-07-10&quot;:2.46},{&quot;2026-07-11&quot;:2.51},{&quot;2026-07-12&quot;:2.51},{&quot;2026-07-13&quot;:2.51},{&quot;2026-07-14&quot;:2.51},{&quot;2026-07-15&quot;:2.51},{&quot;2026-07-16&quot;:2.52},{&quot;2026-07-17&quot;:2.64},{&quot;2026-07-18&quot;:2.74},{&quot;2026-07-19&quot;:2.81},{&quot;2026-07-20&quot;:2.79},{&quot;2026-07-21&quot;:2.71},{&quot;2026-07-23&quot;:2.74},{&quot;2026-07-25&quot;:2.73},{&quot;2026-07-26&quot;:2.73},{&quot;2026-07-27&quot;:2.73},{&quot;2026-07-28&quot;:2.73},{&quot;2026-07-29&quot;:2.81},{&quot;2026-07-30&quot;:2.77},{&quot;2026-07-31&quot;:2.71},{&quot;2026-08-01&quot;:2.74},{&quot;2026-08-02&quot;:2.89},{&quot;2026-08-03&quot;:3.05},{&quot;2026-08-04&quot;:3.14},{&quot;2026-08-05&quot;:3.14},{&quot;2026-08-07&quot;:3.14},{&quot;2026-08-08&quot;:3.05},{&quot;2026-08-09&quot;:2.95},{&quot;2026-08-10&quot;:2.95},{&quot;2026-08-11&quot;:2.95},{&quot;2026-08-12&quot;:2.95},{&quot;2026-08-13&quot;:2.93},{&quot;2026-08-14&quot;:2.93},{&quot;2026-08-15&quot;:2.96},{&quot;2026-08-16&quot;:2.96},{&quot;2026-08-17&quot;:2.96},{&quot;2026-08-18&quot;:2.96},{&quot;2026-08-19&quot;:2.97},{&quot;2026-08-20&quot;:2.97},{&quot;2026-08-21&quot;:2.97},{&quot;2026-08-22&quot;:2.97},{&quot;2026-08-23&quot;:3.12},{&quot;2026-08-24&quot;:3.12},{&quot;2026-08-25&quot;:3.12},{&quot;2026-08-26&quot;:3.09},{&quot;2026-08-27&quot;:3.13},{&quot;2026-08-28&quot;:3.13},{&quot;2026-08-29&quot;:3.13},{&quot;2026-08-30&quot;:3.1},{&quot;2026-08-31&quot;:3.1},{&quot;2026-09-01&quot;:3.1},{&quot;2026-09-02&quot;:3.12},{&quot;2026-09-03&quot;:3.09},{&quot;2026-09-04&quot;:3.11},{&quot;2026-09-05&quot;:3.06},{&quot;2026-09-06&quot;:3.01},{&quot;2026-09-07&quot;:3.01},{&quot;2026-09-08&quot;:3.05},{&quot;2026-09-09&quot;:3.09},{&quot;2026-09-10&quot;:3.09},{&quot;2026-09-11&quot;:3.15}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Swiftfoot Boots" src="https://cards.scryfall.io/large/front/9/6/96c69011-35bd-49f0-bae5-4a8367d32237.jpg?1783919778" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:3.08},{&quot;2026-06-14&quot;:3.13},{&quot;2026-06-15&quot;:3.28},{&quot;2026-06-16&quot;:3.3},{&quot;2026-06-17&quot;:3.38},{&quot;2026-06-18&quot;:3.35},{&quot;2026-06-19&quot;:3.21},{&quot;2026-06-20&quot;:3.27},{&quot;2026-06-21&quot;:3.27},{&quot;2026-06-22&quot;:3.27},{&quot;2026-06-23&quot;:3.27},{&quot;2026-06-24&quot;:3.18},{&quot;2026-06-25&quot;:3.18},{&quot;2026-06-26&quot;:3.23},{&quot;2026-06-27&quot;:3.23},{&quot;2026-06-28&quot;:3.29},{&quot;2026-06-29&quot;:3.29},{&quot;2026-06-30&quot;:3.22},{&quot;2026-07-01&quot;:3.22},{&quot;2026-07-02&quot;:3.18},{&quot;2026-07-03&quot;:3.13},{&quot;2026-07-04&quot;:3.13},{&quot;2026-07-05&quot;:3.06},{&quot;2026-07-06&quot;:3.05},{&quot;2026-07-07&quot;:3.05},{&quot;2026-07-08&quot;:2.95},{&quot;2026-07-09&quot;:2.95},{&quot;2026-07-10&quot;:3.1},{&quot;2026-07-11&quot;:3.1},{&quot;2026-07-12&quot;:2.99},{&quot;2026-07-13&quot;:2.99},{&quot;2026-07-14&quot;:2.99},{&quot;2026-07-15&quot;:3.06},{&quot;2026-07-16&quot;:3.04},{&quot;2026-07-17&quot;:3.04},{&quot;2026-07-18&quot;:3.05},{&quot;2026-07-19&quot;:3.11},{&quot;2026-07-20&quot;:3.11},{&quot;2026-07-21&quot;:3.11},{&quot;2026-07-22&quot;:2.95},{&quot;2026-07-23&quot;:2.95},{&quot;2026-07-24&quot;:2.95},{&quot;2026-07-25&quot;:3.08},{&quot;2026-07-26&quot;:3.08},{&quot;2026-07-27&quot;:3.05},{&quot;2026-07-28&quot;:3.06},{&quot;2026-07-29&quot;:3.03},{&quot;2026-07-30&quot;:2.88},{&quot;2026-07-31&quot;:2.78},{&quot;2026-08-01&quot;:2.73},{&quot;2026-08-02&quot;:2.68},{&quot;2026-08-03&quot;:2.75},{&quot;2026-08-04&quot;:2.75},{&quot;2026-08-05&quot;:2.7},{&quot;2026-08-07&quot;:2.69},{&quot;2026-08-08&quot;:2.75},{&quot;2026-08-09&quot;:2.72},{&quot;2026-08-10&quot;:2.72},{&quot;2026-08-11&quot;:2.76},{&quot;2026-08-12&quot;:2.74},{&quot;2026-08-13&quot;:2.74},{&quot;2026-08-14&quot;:2.75},{&quot;2026-08-15&quot;:2.79},{&quot;2026-08-16&quot;:2.8},{&quot;2026-08-17&quot;:2.84},{&quot;2026-08-18&quot;:2.83},{&quot;2026-08-19&quot;:2.83},{&quot;2026-08-20&quot;:2.98},{&quot;2026-08-21&quot;:2.99},{&quot;2026-08-22&quot;:3.02},{&quot;2026-08-23&quot;:3.01},{&quot;2026-08-24&quot;:3.01},{&quot;2026-08-25&quot;:3.01},{&quot;2026-08-26&quot;:2.93},{&quot;2026-08-27&quot;:3.02},{&quot;2026-08-28&quot;:3.02},{&quot;2026-08-29&quot;:3.02},{&quot;2026-08-30&quot;:3.02},{&quot;2026-08-31&quot;:2.92},{&quot;2026-09-01&quot;:2.85},{&quot;2026-09-02&quot;:2.98},{&quot;2026-09-03&quot;:3.03},{&quot;2026-09-04&quot;:3.1},{&quot;2026-09-05&quot;:3.09},{&quot;2026-09-06&quot;:3.09},{&quot;2026-09-07&quot;:3.09},{&quot;2026-09-08&quot;:3.15},{&quot;2026-09-09&quot;:3.15},{&quot;2026-09-10&quot;:3.15},{&quot;2026-09-11&quot;:3.13}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:2.91},{&quot;2026-06-14&quot;:2.78},{&quot;2026-06-15&quot;:2.78},{&quot;2026-06-16&quot;:2.8},{&quot;2026-06-17&quot;:2.7},{&quot;2026-06-18&quot;:2.62},{&quot;2026-06-19&quot;:2.48},{&quot;2026-06-20&quot;:2.34},{&quot;2026-06-21&quot;:2.42},{&quot;2026-06-22&quot;:2.33},{&quot;2026-06-23&quot;:2.2},{&quot;2026-06-24&quot;:2.22},{&quot;2026-06-25&quot;:2.32},{&quot;2026-06-26&quot;:2.44},{&quot;2026-06-27&quot;:2.27},{&quot;2026-06-28&quot;:2.35},{&quot;2026-06-29&quot;:2.32},{&quot;2026-06-30&quot;:2.4},{&quot;2026-07-01&quot;:2.38},{&quot;2026-07-02&quot;:2.28},{&quot;2026-07-03&quot;:2.47},{&quot;2026-07-04&quot;:2.57},{&quot;2026-07-05&quot;:2.44},{&quot;2026-07-06&quot;:2.38},{&quot;2026-07-07&quot;:2.56},{&quot;2026-07-08&quot;:2.53},{&quot;2026-07-09&quot;:2.55},{&quot;2026-07-10&quot;:2.54},{&quot;2026-07-11&quot;:2.36},{&quot;2026-07-12&quot;:2.77},{&quot;2026-07-13&quot;:2.86},{&quot;2026-07-14&quot;:2.89},{&quot;2026-07-15&quot;:2.96},{&quot;2026-07-16&quot;:2.96},{&quot;2026-07-17&quot;:3.25},{&quot;2026-07-18&quot;:3.23},{&quot;2026-07-19&quot;:3.24},{&quot;2026-07-20&quot;:3.04},{&quot;2026-07-21&quot;:2.95},{&quot;2026-07-22&quot;:2.77},{&quot;2026-07-23&quot;:2.71},{&quot;2026-07-24&quot;:2.7},{&quot;2026-07-25&quot;:2.66},{&quot;2026-07-26&quot;:2.56},{&quot;2026-07-27&quot;:2.57},{&quot;2026-07-28&quot;:2.6},{&quot;2026-07-29&quot;:2.6},{&quot;2026-07-30&quot;:2.72},{&quot;2026-07-31&quot;:2.79},{&quot;2026-08-01&quot;:2.79},{&quot;2026-08-02&quot;:2.83},{&quot;2026-08-03&quot;:2.83},{&quot;2026-08-04&quot;:3.24},{&quot;2026-08-05&quot;:3.59},{&quot;2026-08-07&quot;:3.44},{&quot;2026-08-08&quot;:3.47},{&quot;2026-08-09&quot;:3.49},{&quot;2026-08-10&quot;:3.21},{&quot;2026-08-11&quot;:3.12},{&quot;2026-08-12&quot;:3.12},{&quot;2026-08-13&quot;:3.14},{&quot;2026-08-14&quot;:2.91},{&quot;2026-08-15&quot;:2.9},{&quot;2026-08-16&quot;:2.91},{&quot;2026-08-17&quot;:3.17},{&quot;2026-08-18&quot;:3.22},{&quot;2026-08-19&quot;:3.19},{&quot;2026-08-20&quot;:3.41},{&quot;2026-08-21&quot;:3.45},{&quot;2026-08-22&quot;:3.55},{&quot;2026-08-23&quot;:3.43},{&quot;2026-08-24&quot;:2.97},{&quot;2026-08-25&quot;:3.28},{&quot;2026-08-26&quot;:3.31},{&quot;2026-08-27&quot;:3.41},{&quot;2026-08-28&quot;:3.3},{&quot;2026-08-29&quot;:3.3},{&quot;2026-08-30&quot;:3.21},{&quot;2026-08-31&quot;:2.85},{&quot;2026-09-01&quot;:2.75},{&quot;2026-09-02&quot;:3.1},{&quot;2026-09-03&quot;:3.32},{&quot;2026-09-04&quot;:3.18},{&quot;2026-09-05&quot;:3.3},{&quot;2026-09-06&quot;:3.15},{&quot;2026-09-07&quot;:3.17},{&quot;2026-09-08&quot;:3.12},{&quot;2026-09-09&quot;:2.88},{&quot;2026-09-10&quot;:2.8},{&quot;2026-09-11&quot;:2.88}]}"
        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="45994"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mom ss-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">
            Chandra, Hope&#39;s Beacon
        </span>


      </div>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Chandra, Hope&#39;s Beacon" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/1/a146ea07-ec1c-448d-b67a-dd9f9e27c2e0.jpg?1783916996" />

        <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">
            Chandra, Hope&#39;s Beacon
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Legendary Planeswalker — Chandra</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Chandra, Hope&#39;s Beacon" src="https://cards.scryfall.io/large/front/a/1/a146ea07-ec1c-448d-b67a-dd9f9e27c2e0.jpg?1783916996" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:2.75},{&quot;2026-06-11&quot;:2.75},{&quot;2026-06-12&quot;:2.75},{&quot;2026-06-13&quot;:2.75},{&quot;2026-06-14&quot;:2.75},{&quot;2026-06-15&quot;:2.75},{&quot;2026-06-16&quot;:2.75},{&quot;2026-06-17&quot;:2.75},{&quot;2026-06-18&quot;:2.75},{&quot;2026-06-19&quot;:2.75},{&quot;2026-06-20&quot;:2.75},{&quot;2026-06-21&quot;:2.75},{&quot;2026-06-22&quot;:2.75},{&quot;2026-06-23&quot;:2.74},{&quot;2026-06-24&quot;:2.74},{&quot;2026-06-25&quot;:2.74},{&quot;2026-06-26&quot;:2.74},{&quot;2026-06-27&quot;:2.79},{&quot;2026-06-28&quot;:2.79},{&quot;2026-06-29&quot;:2.79},{&quot;2026-06-30&quot;:2.79},{&quot;2026-07-01&quot;:2.85},{&quot;2026-07-02&quot;:2.9},{&quot;2026-07-03&quot;:2.9},{&quot;2026-07-04&quot;:2.85},{&quot;2026-07-05&quot;:2.96},{&quot;2026-07-06&quot;:3.02},{&quot;2026-07-07&quot;:3.02},{&quot;2026-07-08&quot;:3.02},{&quot;2026-07-09&quot;:3.02},{&quot;2026-07-10&quot;:3.02},{&quot;2026-07-11&quot;:2.99},{&quot;2026-07-12&quot;:2.99},{&quot;2026-07-13&quot;:2.99},{&quot;2026-07-14&quot;:2.99},{&quot;2026-07-15&quot;:2.99},{&quot;2026-07-16&quot;:2.99},{&quot;2026-07-17&quot;:2.99},{&quot;2026-07-18&quot;:2.96},{&quot;2026-07-19&quot;:2.96},{&quot;2026-07-20&quot;:2.96},{&quot;2026-07-21&quot;:2.96},{&quot;2026-07-23&quot;:3.0},{&quot;2026-07-25&quot;:3.0},{&quot;2026-07-26&quot;:3.0},{&quot;2026-07-27&quot;:3.0},{&quot;2026-07-29&quot;:3.0},{&quot;2026-07-30&quot;:3.0},{&quot;2026-07-31&quot;:3.0},{&quot;2026-08-01&quot;:3.0},{&quot;2026-08-02&quot;:3.0},{&quot;2026-08-03&quot;:3.0},{&quot;2026-08-04&quot;:3.0},{&quot;2026-08-05&quot;:3.07},{&quot;2026-08-07&quot;:3.12},{&quot;2026-08-08&quot;:3.12},{&quot;2026-08-09&quot;:3.12},{&quot;2026-08-10&quot;:3.12},{&quot;2026-08-11&quot;:3.12},{&quot;2026-08-12&quot;:3.12},{&quot;2026-08-13&quot;:3.12},{&quot;2026-08-14&quot;:3.12},{&quot;2026-08-15&quot;:3.12},{&quot;2026-08-16&quot;:3.12},{&quot;2026-08-17&quot;:3.12},{&quot;2026-08-18&quot;:3.08},{&quot;2026-08-19&quot;:3.15},{&quot;2026-08-20&quot;:3.15},{&quot;2026-08-21&quot;:3.13},{&quot;2026-08-22&quot;:3.13},{&quot;2026-08-23&quot;:3.13},{&quot;2026-08-24&quot;:3.13},{&quot;2026-08-25&quot;:3.13},{&quot;2026-08-26&quot;:3.13},{&quot;2026-08-27&quot;:3.13},{&quot;2026-08-28&quot;:3.13},{&quot;2026-08-29&quot;:3.13},{&quot;2026-08-30&quot;:3.13},{&quot;2026-08-31&quot;:3.17},{&quot;2026-09-01&quot;:3.17},{&quot;2026-09-02&quot;:3.17},{&quot;2026-09-03&quot;:3.17},{&quot;2026-09-04&quot;:3.15},{&quot;2026-09-05&quot;:3.15},{&quot;2026-09-06&quot;:3.17},{&quot;2026-09-07&quot;:3.17},{&quot;2026-09-08&quot;:3.17},{&quot;2026-09-09&quot;:3.17},{&quot;2026-09-10&quot;:3.17},{&quot;2026-09-11&quot;:3.17}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:2.23},{&quot;2026-06-11&quot;:2.23},{&quot;2026-06-12&quot;:2.25},{&quot;2026-06-13&quot;:2.19},{&quot;2026-06-14&quot;:2.17},{&quot;2026-06-15&quot;:2.11},{&quot;2026-06-16&quot;:2.12},{&quot;2026-06-17&quot;:2.12},{&quot;2026-06-18&quot;:2.16},{&quot;2026-06-19&quot;:2.14},{&quot;2026-06-20&quot;:2.15},{&quot;2026-06-21&quot;:2.12},{&quot;2026-06-22&quot;:2.12},{&quot;2026-06-23&quot;:2.14},{&quot;2026-06-24&quot;:2.18},{&quot;2026-06-25&quot;:2.15},{&quot;2026-06-26&quot;:2.19},{&quot;2026-06-27&quot;:2.22},{&quot;2026-06-28&quot;:2.24},{&quot;2026-06-29&quot;:2.29},{&quot;2026-06-30&quot;:2.29},{&quot;2026-07-01&quot;:2.34},{&quot;2026-07-02&quot;:2.34},{&quot;2026-07-03&quot;:2.42},{&quot;2026-07-04&quot;:2.43},{&quot;2026-07-05&quot;:2.4},{&quot;2026-07-06&quot;:2.4},{&quot;2026-07-07&quot;:2.46},{&quot;2026-07-08&quot;:2.42},{&quot;2026-07-09&quot;:2.43},{&quot;2026-07-10&quot;:2.48},{&quot;2026-07-11&quot;:2.5},{&quot;2026-07-12&quot;:2.53},{&quot;2026-07-13&quot;:2.63},{&quot;2026-07-14&quot;:2.66},{&quot;2026-07-15&quot;:2.67},{&quot;2026-07-16&quot;:2.67},{&quot;2026-07-17&quot;:2.62},{&quot;2026-07-18&quot;:2.62},{&quot;2026-07-19&quot;:2.62},{&quot;2026-07-20&quot;:2.62},{&quot;2026-07-21&quot;:2.62},{&quot;2026-07-23&quot;:2.87},{&quot;2026-07-25&quot;:2.85},{&quot;2026-07-26&quot;:2.85},{&quot;2026-07-27&quot;:2.8},{&quot;2026-07-29&quot;:2.85},{&quot;2026-07-30&quot;:2.85},{&quot;2026-07-31&quot;:2.92},{&quot;2026-08-01&quot;:2.92},{&quot;2026-08-02&quot;:2.94},{&quot;2026-08-03&quot;:2.98},{&quot;2026-08-04&quot;:3.01},{&quot;2026-08-05&quot;:2.96},{&quot;2026-08-07&quot;:2.88},{&quot;2026-08-08&quot;:2.91},{&quot;2026-08-09&quot;:2.9},{&quot;2026-08-10&quot;:2.83},{&quot;2026-08-11&quot;:2.81},{&quot;2026-08-12&quot;:2.85},{&quot;2026-08-13&quot;:2.85},{&quot;2026-08-14&quot;:2.85},{&quot;2026-08-15&quot;:2.84},{&quot;2026-08-16&quot;:2.95},{&quot;2026-08-17&quot;:2.91},{&quot;2026-08-18&quot;:2.91},{&quot;2026-08-19&quot;:2.86},{&quot;2026-08-20&quot;:2.86},{&quot;2026-08-21&quot;:2.86},{&quot;2026-08-22&quot;:2.86},{&quot;2026-08-23&quot;:2.92},{&quot;2026-08-24&quot;:2.84},{&quot;2026-08-25&quot;:2.84},{&quot;2026-08-26&quot;:2.84},{&quot;2026-08-27&quot;:2.85},{&quot;2026-08-28&quot;:2.81},{&quot;2026-08-29&quot;:2.81},{&quot;2026-08-30&quot;:3.07},{&quot;2026-08-31&quot;:3.04},{&quot;2026-09-01&quot;:3.04},{&quot;2026-09-02&quot;:2.88},{&quot;2026-09-03&quot;:2.87},{&quot;2026-09-04&quot;:2.87},{&quot;2026-09-05&quot;:2.87},{&quot;2026-09-06&quot;:2.89},{&quot;2026-09-07&quot;:2.97},{&quot;2026-09-08&quot;:3.02},{&quot;2026-09-09&quot;:3.01},{&quot;2026-09-10&quot;:3.01},{&quot;2026-09-11&quot;:2.96}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Sokenzan, Crucible of Defiance" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/a/aa548dcd-c1dd-492d-a69f-c65dfeef0633.jpg?1783923814" />

        <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">
            Sokenzan, Crucible of Defiance
        </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 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="Sokenzan, Crucible of Defiance" src="https://cards.scryfall.io/large/front/a/a/aa548dcd-c1dd-492d-a69f-c65dfeef0633.jpg?1783923814" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:2.61},{&quot;2026-06-11&quot;:2.61},{&quot;2026-06-12&quot;:2.61},{&quot;2026-06-13&quot;:2.61},{&quot;2026-06-14&quot;:2.49},{&quot;2026-06-15&quot;:2.59},{&quot;2026-06-16&quot;:2.88},{&quot;2026-06-17&quot;:2.88},{&quot;2026-06-18&quot;:2.99},{&quot;2026-06-19&quot;:2.99},{&quot;2026-06-20&quot;:3.05},{&quot;2026-06-21&quot;:3.05},{&quot;2026-06-22&quot;:3.03},{&quot;2026-06-23&quot;:3.03},{&quot;2026-06-24&quot;:3.03},{&quot;2026-06-25&quot;:3.03},{&quot;2026-06-26&quot;:3.03},{&quot;2026-06-27&quot;:3.14},{&quot;2026-06-28&quot;:3.2},{&quot;2026-06-29&quot;:3.33},{&quot;2026-06-30&quot;:3.33},{&quot;2026-07-01&quot;:3.48},{&quot;2026-07-02&quot;:3.62},{&quot;2026-07-03&quot;:3.75},{&quot;2026-07-04&quot;:3.72},{&quot;2026-07-05&quot;:3.72},{&quot;2026-07-06&quot;:3.72},{&quot;2026-07-07&quot;:3.72},{&quot;2026-07-08&quot;:3.72},{&quot;2026-07-09&quot;:3.72},{&quot;2026-07-10&quot;:3.78},{&quot;2026-07-11&quot;:3.73},{&quot;2026-07-12&quot;:3.73},{&quot;2026-07-13&quot;:3.76},{&quot;2026-07-14&quot;:3.76},{&quot;2026-07-15&quot;:3.76},{&quot;2026-07-16&quot;:3.76},{&quot;2026-07-17&quot;:3.89},{&quot;2026-07-18&quot;:3.89},{&quot;2026-07-19&quot;:3.8},{&quot;2026-07-20&quot;:3.7},{&quot;2026-07-21&quot;:3.7},{&quot;2026-07-23&quot;:3.88},{&quot;2026-07-25&quot;:3.95},{&quot;2026-07-26&quot;:4.03},{&quot;2026-07-27&quot;:4.03},{&quot;2026-07-29&quot;:4.03},{&quot;2026-07-30&quot;:4.03},{&quot;2026-07-31&quot;:3.89},{&quot;2026-08-01&quot;:3.89},{&quot;2026-08-02&quot;:3.89},{&quot;2026-08-03&quot;:3.89},{&quot;2026-08-04&quot;:3.77},{&quot;2026-08-05&quot;:3.76},{&quot;2026-08-07&quot;:3.83},{&quot;2026-08-08&quot;:3.83},{&quot;2026-08-09&quot;:3.83},{&quot;2026-08-10&quot;:3.83},{&quot;2026-08-11&quot;:3.87},{&quot;2026-08-12&quot;:3.75},{&quot;2026-08-13&quot;:3.75},{&quot;2026-08-14&quot;:3.65},{&quot;2026-08-15&quot;:3.57},{&quot;2026-08-16&quot;:3.39},{&quot;2026-08-17&quot;:3.39},{&quot;2026-08-18&quot;:3.33},{&quot;2026-08-19&quot;:3.33},{&quot;2026-08-20&quot;:3.33},{&quot;2026-08-21&quot;:3.38},{&quot;2026-08-22&quot;:3.38},{&quot;2026-08-23&quot;:3.38},{&quot;2026-08-24&quot;:3.38},{&quot;2026-08-25&quot;:3.38},{&quot;2026-08-26&quot;:3.38},{&quot;2026-08-27&quot;:3.38},{&quot;2026-08-28&quot;:3.38},{&quot;2026-08-29&quot;:3.38},{&quot;2026-08-30&quot;:3.38},{&quot;2026-08-31&quot;:3.38},{&quot;2026-09-01&quot;:3.38},{&quot;2026-09-02&quot;:3.43},{&quot;2026-09-03&quot;:3.34},{&quot;2026-09-04&quot;:3.33},{&quot;2026-09-05&quot;:3.17},{&quot;2026-09-06&quot;:3.17},{&quot;2026-09-07&quot;:3.15},{&quot;2026-09-08&quot;:3.0},{&quot;2026-09-09&quot;:3.0},{&quot;2026-09-10&quot;:3.03},{&quot;2026-09-11&quot;:3.03}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:2.89},{&quot;2026-06-11&quot;:2.94},{&quot;2026-06-12&quot;:3.15},{&quot;2026-06-13&quot;:3.09},{&quot;2026-06-14&quot;:3.05},{&quot;2026-06-15&quot;:3.04},{&quot;2026-06-16&quot;:3.15},{&quot;2026-06-17&quot;:3.13},{&quot;2026-06-18&quot;:2.97},{&quot;2026-06-19&quot;:2.91},{&quot;2026-06-20&quot;:2.68},{&quot;2026-06-21&quot;:2.83},{&quot;2026-06-22&quot;:2.83},{&quot;2026-06-23&quot;:2.7},{&quot;2026-06-24&quot;:2.56},{&quot;2026-06-25&quot;:2.64},{&quot;2026-06-26&quot;:2.58},{&quot;2026-06-27&quot;:2.59},{&quot;2026-06-28&quot;:2.57},{&quot;2026-06-29&quot;:2.52},{&quot;2026-06-30&quot;:2.43},{&quot;2026-07-01&quot;:2.54},{&quot;2026-07-02&quot;:2.83},{&quot;2026-07-03&quot;:2.81},{&quot;2026-07-04&quot;:2.37},{&quot;2026-07-05&quot;:2.42},{&quot;2026-07-06&quot;:2.32},{&quot;2026-07-07&quot;:2.32},{&quot;2026-07-08&quot;:2.23},{&quot;2026-07-09&quot;:2.55},{&quot;2026-07-10&quot;:2.65},{&quot;2026-07-11&quot;:2.57},{&quot;2026-07-12&quot;:2.8},{&quot;2026-07-13&quot;:2.98},{&quot;2026-07-14&quot;:2.97},{&quot;2026-07-15&quot;:3.32},{&quot;2026-07-16&quot;:3.29},{&quot;2026-07-17&quot;:3.41},{&quot;2026-07-18&quot;:3.33},{&quot;2026-07-19&quot;:3.35},{&quot;2026-07-20&quot;:3.15},{&quot;2026-07-21&quot;:3.08},{&quot;2026-07-23&quot;:2.4},{&quot;2026-07-25&quot;:2.64},{&quot;2026-07-26&quot;:2.71},{&quot;2026-07-27&quot;:2.55},{&quot;2026-07-29&quot;:2.7},{&quot;2026-07-30&quot;:2.67},{&quot;2026-07-31&quot;:2.54},{&quot;2026-08-01&quot;:2.46},{&quot;2026-08-02&quot;:2.37},{&quot;2026-08-03&quot;:2.49},{&quot;2026-08-04&quot;:2.46},{&quot;2026-08-05&quot;:2.53},{&quot;2026-08-07&quot;:2.58},{&quot;2026-08-08&quot;:2.51},{&quot;2026-08-09&quot;:2.61},{&quot;2026-08-10&quot;:2.52},{&quot;2026-08-11&quot;:2.76},{&quot;2026-08-12&quot;:2.76},{&quot;2026-08-13&quot;:2.75},{&quot;2026-08-14&quot;:2.67},{&quot;2026-08-15&quot;:2.68},{&quot;2026-08-16&quot;:2.76},{&quot;2026-08-17&quot;:2.65},{&quot;2026-08-18&quot;:2.64},{&quot;2026-08-19&quot;:2.45},{&quot;2026-08-20&quot;:2.45},{&quot;2026-08-21&quot;:2.4},{&quot;2026-08-22&quot;:2.37},{&quot;2026-08-23&quot;:2.35},{&quot;2026-08-24&quot;:2.43},{&quot;2026-08-25&quot;:2.43},{&quot;2026-08-26&quot;:2.71},{&quot;2026-08-27&quot;:2.79},{&quot;2026-08-28&quot;:2.9},{&quot;2026-08-29&quot;:2.9},{&quot;2026-08-30&quot;:2.75},{&quot;2026-08-31&quot;:2.66},{&quot;2026-09-01&quot;:2.66},{&quot;2026-09-02&quot;:2.34},{&quot;2026-09-03&quot;:2.33},{&quot;2026-09-04&quot;:2.37},{&quot;2026-09-05&quot;:2.42},{&quot;2026-09-06&quot;:2.42},{&quot;2026-09-07&quot;:2.58},{&quot;2026-09-08&quot;:2.63},{&quot;2026-09-09&quot;:2.63},{&quot;2026-09-10&quot;:2.8},{&quot;2026-09-11&quot;:2.84}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Overmaster" src="https://cards.scryfall.io/large/front/2/8/28e812a8-66cf-4005-a647-780d49aa74a4.jpg?1783918457" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-12&quot;:2.46},{&quot;2026-06-13&quot;:2.46},{&quot;2026-06-14&quot;:2.46},{&quot;2026-06-15&quot;:2.52},{&quot;2026-06-16&quot;:2.52},{&quot;2026-06-17&quot;:2.82},{&quot;2026-06-18&quot;:2.75},{&quot;2026-06-19&quot;:2.75},{&quot;2026-06-20&quot;:2.75},{&quot;2026-06-21&quot;:2.75},{&quot;2026-06-22&quot;:2.73},{&quot;2026-06-23&quot;:2.73},{&quot;2026-06-24&quot;:2.73},{&quot;2026-06-25&quot;:2.73},{&quot;2026-06-26&quot;:2.73},{&quot;2026-06-27&quot;:2.73},{&quot;2026-06-28&quot;:2.75},{&quot;2026-06-29&quot;:2.74},{&quot;2026-06-30&quot;:2.74},{&quot;2026-07-01&quot;:2.74},{&quot;2026-07-02&quot;:2.74},{&quot;2026-07-03&quot;:2.74},{&quot;2026-07-04&quot;:2.74},{&quot;2026-07-05&quot;:2.74},{&quot;2026-07-06&quot;:2.73},{&quot;2026-07-07&quot;:2.73},{&quot;2026-07-08&quot;:2.79},{&quot;2026-07-09&quot;:2.82},{&quot;2026-07-10&quot;:2.82},{&quot;2026-07-11&quot;:2.83},{&quot;2026-07-12&quot;:2.83},{&quot;2026-07-13&quot;:2.83},{&quot;2026-07-14&quot;:2.83},{&quot;2026-07-15&quot;:2.83},{&quot;2026-07-16&quot;:2.83},{&quot;2026-07-17&quot;:2.94},{&quot;2026-07-18&quot;:2.94},{&quot;2026-07-19&quot;:3.01},{&quot;2026-07-20&quot;:3.07},{&quot;2026-07-21&quot;:3.07},{&quot;2026-07-23&quot;:3.15},{&quot;2026-07-24&quot;:3.09},{&quot;2026-07-25&quot;:3.12},{&quot;2026-07-26&quot;:3.12},{&quot;2026-07-27&quot;:3.12},{&quot;2026-07-28&quot;:3.12},{&quot;2026-07-29&quot;:3.2},{&quot;2026-07-30&quot;:3.2},{&quot;2026-07-31&quot;:3.2},{&quot;2026-08-01&quot;:3.19},{&quot;2026-08-02&quot;:3.19},{&quot;2026-08-03&quot;:2.9},{&quot;2026-08-04&quot;:2.9},{&quot;2026-08-05&quot;:2.88},{&quot;2026-08-07&quot;:2.88},{&quot;2026-08-08&quot;:2.88},{&quot;2026-08-09&quot;:2.63},{&quot;2026-08-10&quot;:2.66},{&quot;2026-08-11&quot;:2.71},{&quot;2026-08-12&quot;:2.71},{&quot;2026-08-13&quot;:2.92},{&quot;2026-08-14&quot;:2.92},{&quot;2026-08-15&quot;:2.92},{&quot;2026-08-16&quot;:2.92},{&quot;2026-08-17&quot;:2.91},{&quot;2026-08-18&quot;:2.84},{&quot;2026-08-19&quot;:2.84},{&quot;2026-08-20&quot;:2.84},{&quot;2026-08-21&quot;:2.81},{&quot;2026-08-22&quot;:2.81},{&quot;2026-08-23&quot;:2.81},{&quot;2026-08-24&quot;:2.81},{&quot;2026-08-25&quot;:2.81},{&quot;2026-08-26&quot;:2.81},{&quot;2026-08-27&quot;:2.81},{&quot;2026-08-28&quot;:2.84},{&quot;2026-08-29&quot;:2.84},{&quot;2026-08-30&quot;:2.82},{&quot;2026-08-31&quot;:2.82},{&quot;2026-09-01&quot;:2.82},{&quot;2026-09-02&quot;:2.82},{&quot;2026-09-03&quot;:2.84},{&quot;2026-09-04&quot;:2.78},{&quot;2026-09-05&quot;:2.78},{&quot;2026-09-06&quot;:2.78},{&quot;2026-09-07&quot;:2.78},{&quot;2026-09-08&quot;:2.78},{&quot;2026-09-09&quot;:2.78},{&quot;2026-09-10&quot;:2.78},{&quot;2026-09-11&quot;:2.78}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:2.83},{&quot;2026-06-13&quot;:2.89},{&quot;2026-06-14&quot;:2.89},{&quot;2026-06-15&quot;:2.95},{&quot;2026-06-16&quot;:2.95},{&quot;2026-06-17&quot;:3.05},{&quot;2026-06-18&quot;:3.04},{&quot;2026-06-19&quot;:3.04},{&quot;2026-06-20&quot;:3.05},{&quot;2026-06-21&quot;:3.07},{&quot;2026-06-22&quot;:3.04},{&quot;2026-06-23&quot;:3.06},{&quot;2026-06-24&quot;:3.03},{&quot;2026-06-25&quot;:3.04},{&quot;2026-06-26&quot;:3.07},{&quot;2026-06-27&quot;:3.07},{&quot;2026-06-28&quot;:3.02},{&quot;2026-06-29&quot;:3.05},{&quot;2026-06-30&quot;:3.05},{&quot;2026-07-01&quot;:3.0},{&quot;2026-07-02&quot;:2.84},{&quot;2026-07-03&quot;:2.82},{&quot;2026-07-04&quot;:2.87},{&quot;2026-07-05&quot;:2.8},{&quot;2026-07-06&quot;:2.8},{&quot;2026-07-07&quot;:2.81},{&quot;2026-07-08&quot;:2.82},{&quot;2026-07-09&quot;:2.9},{&quot;2026-07-10&quot;:2.9},{&quot;2026-07-11&quot;:2.9},{&quot;2026-07-12&quot;:2.89},{&quot;2026-07-13&quot;:2.84},{&quot;2026-07-14&quot;:2.9},{&quot;2026-07-15&quot;:2.91},{&quot;2026-07-16&quot;:2.94},{&quot;2026-07-17&quot;:2.99},{&quot;2026-07-18&quot;:2.95},{&quot;2026-07-19&quot;:2.96},{&quot;2026-07-20&quot;:2.96},{&quot;2026-07-21&quot;:2.96},{&quot;2026-07-23&quot;:2.99},{&quot;2026-07-24&quot;:2.99},{&quot;2026-07-25&quot;:2.92},{&quot;2026-07-26&quot;:2.92},{&quot;2026-07-27&quot;:2.92},{&quot;2026-07-28&quot;:2.85},{&quot;2026-07-29&quot;:2.85},{&quot;2026-07-30&quot;:2.91},{&quot;2026-07-31&quot;:2.96},{&quot;2026-08-01&quot;:3.02},{&quot;2026-08-02&quot;:2.97},{&quot;2026-08-03&quot;:2.93},{&quot;2026-08-04&quot;:2.82},{&quot;2026-08-05&quot;:2.78},{&quot;2026-08-07&quot;:2.74},{&quot;2026-08-08&quot;:2.74},{&quot;2026-08-09&quot;:2.69},{&quot;2026-08-10&quot;:2.63},{&quot;2026-08-11&quot;:2.66},{&quot;2026-08-12&quot;:2.66},{&quot;2026-08-13&quot;:2.68},{&quot;2026-08-14&quot;:2.68},{&quot;2026-08-15&quot;:2.72},{&quot;2026-08-16&quot;:2.75},{&quot;2026-08-17&quot;:2.82},{&quot;2026-08-18&quot;:2.78},{&quot;2026-08-19&quot;:2.75},{&quot;2026-08-20&quot;:2.75},{&quot;2026-08-21&quot;:2.76},{&quot;2026-08-22&quot;:2.74},{&quot;2026-08-23&quot;:2.74},{&quot;2026-08-24&quot;:2.69},{&quot;2026-08-25&quot;:2.67},{&quot;2026-08-26&quot;:2.7},{&quot;2026-08-27&quot;:2.7},{&quot;2026-08-28&quot;:2.68},{&quot;2026-08-29&quot;:2.68},{&quot;2026-08-30&quot;:2.71},{&quot;2026-08-31&quot;:2.75},{&quot;2026-09-01&quot;:2.76},{&quot;2026-09-02&quot;:2.72},{&quot;2026-09-03&quot;:2.75},{&quot;2026-09-04&quot;:2.78},{&quot;2026-09-05&quot;:2.79},{&quot;2026-09-06&quot;:2.74},{&quot;2026-09-07&quot;:2.73},{&quot;2026-09-08&quot;:2.74},{&quot;2026-09-09&quot;:2.71},{&quot;2026-09-10&quot;:2.72},{&quot;2026-09-11&quot;:2.67}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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

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

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

        <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/f/e/fe285a48-9a13-4bfa-9426-fb1fe7703a82.jpg?1783931778" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.9},{&quot;2026-06-14&quot;:1.9},{&quot;2026-06-15&quot;:1.9},{&quot;2026-06-16&quot;:1.9},{&quot;2026-06-17&quot;:2.02},{&quot;2026-06-18&quot;:2.02},{&quot;2026-06-19&quot;:2.02},{&quot;2026-06-20&quot;:2.18},{&quot;2026-06-21&quot;:2.18},{&quot;2026-06-22&quot;:2.18},{&quot;2026-06-23&quot;:2.18},{&quot;2026-06-24&quot;:2.18},{&quot;2026-06-25&quot;:2.18},{&quot;2026-06-26&quot;:2.18},{&quot;2026-06-27&quot;:2.18},{&quot;2026-06-28&quot;:2.18},{&quot;2026-06-29&quot;:2.09},{&quot;2026-06-30&quot;:2.09},{&quot;2026-07-01&quot;:2.14},{&quot;2026-07-02&quot;:2.16},{&quot;2026-07-03&quot;:2.16},{&quot;2026-07-04&quot;:2.16},{&quot;2026-07-05&quot;:2.16},{&quot;2026-07-06&quot;:2.16},{&quot;2026-07-07&quot;:2.16},{&quot;2026-07-08&quot;:2.16},{&quot;2026-07-09&quot;:2.16},{&quot;2026-07-10&quot;:2.16},{&quot;2026-07-11&quot;:2.16},{&quot;2026-07-12&quot;:2.16},{&quot;2026-07-13&quot;:2.1},{&quot;2026-07-14&quot;:2.1},{&quot;2026-07-15&quot;:2.1},{&quot;2026-07-16&quot;:2.06},{&quot;2026-07-17&quot;:2.06},{&quot;2026-07-18&quot;:2.14},{&quot;2026-07-19&quot;:2.14},{&quot;2026-07-20&quot;:2.52},{&quot;2026-07-21&quot;:2.78},{&quot;2026-07-22&quot;:2.78},{&quot;2026-07-23&quot;:2.78},{&quot;2026-07-24&quot;:2.94},{&quot;2026-07-25&quot;:2.94},{&quot;2026-07-26&quot;:2.94},{&quot;2026-07-27&quot;:2.94},{&quot;2026-07-28&quot;:2.94},{&quot;2026-07-29&quot;:2.94},{&quot;2026-07-30&quot;:2.91},{&quot;2026-07-31&quot;:2.91},{&quot;2026-08-01&quot;:2.91},{&quot;2026-08-02&quot;:2.91},{&quot;2026-08-03&quot;:3.09},{&quot;2026-08-04&quot;:3.09},{&quot;2026-08-05&quot;:3.09},{&quot;2026-08-07&quot;:3.09},{&quot;2026-08-08&quot;:3.09},{&quot;2026-08-09&quot;:3.09},{&quot;2026-08-10&quot;:3.09},{&quot;2026-08-11&quot;:3.05},{&quot;2026-08-12&quot;:3.05},{&quot;2026-08-13&quot;:3.05},{&quot;2026-08-14&quot;:3.0},{&quot;2026-08-15&quot;:3.0},{&quot;2026-08-16&quot;:3.03},{&quot;2026-08-17&quot;:3.03},{&quot;2026-08-18&quot;:3.03},{&quot;2026-08-19&quot;:3.03},{&quot;2026-08-20&quot;:2.87},{&quot;2026-08-21&quot;:2.87},{&quot;2026-08-22&quot;:2.87},{&quot;2026-08-23&quot;:2.87},{&quot;2026-08-24&quot;:2.87},{&quot;2026-08-25&quot;:2.84},{&quot;2026-08-26&quot;:2.72},{&quot;2026-08-27&quot;:2.72},{&quot;2026-08-28&quot;:2.72},{&quot;2026-08-29&quot;:2.72},{&quot;2026-08-30&quot;:2.72},{&quot;2026-08-31&quot;:2.64},{&quot;2026-09-01&quot;:2.64},{&quot;2026-09-02&quot;:2.64},{&quot;2026-09-03&quot;:2.64},{&quot;2026-09-04&quot;:2.64},{&quot;2026-09-05&quot;:2.64},{&quot;2026-09-06&quot;:2.64},{&quot;2026-09-07&quot;:2.64},{&quot;2026-09-08&quot;:2.64},{&quot;2026-09-09&quot;:2.64},{&quot;2026-09-10&quot;:2.64},{&quot;2026-09-11&quot;:2.64}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Lightning Bolt" src="https://cards.scryfall.io/large/front/c/8/c8c8390f-4072-454f-8dc4-174919187a47.jpg?1783921769" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


      </div>

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

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            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">
            $2.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="Brash Taunter" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/1/a1480f99-83f8-48e7-ba52-9a3f3a9a24f3.jpg?1783922431" />

        <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">
            Brash Taunter
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-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="Brash Taunter" src="https://cards.scryfall.io/large/front/a/1/a1480f99-83f8-48e7-ba52-9a3f3a9a24f3.jpg?1783922431" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:2.06},{&quot;2026-06-14&quot;:2.06},{&quot;2026-06-15&quot;:2.04},{&quot;2026-06-16&quot;:2.04},{&quot;2026-06-17&quot;:2.1},{&quot;2026-06-18&quot;:2.1},{&quot;2026-06-19&quot;:2.1},{&quot;2026-06-20&quot;:2.26},{&quot;2026-06-21&quot;:2.26},{&quot;2026-06-22&quot;:2.29},{&quot;2026-06-23&quot;:2.27},{&quot;2026-06-24&quot;:2.24},{&quot;2026-06-25&quot;:2.38},{&quot;2026-06-26&quot;:2.38},{&quot;2026-06-27&quot;:2.38},{&quot;2026-06-28&quot;:2.38},{&quot;2026-06-29&quot;:2.38},{&quot;2026-06-30&quot;:2.47},{&quot;2026-07-01&quot;:2.47},{&quot;2026-07-02&quot;:2.4},{&quot;2026-07-03&quot;:2.32},{&quot;2026-07-04&quot;:2.18},{&quot;2026-07-05&quot;:2.15},{&quot;2026-07-06&quot;:2.15},{&quot;2026-07-07&quot;:2.15},{&quot;2026-07-08&quot;:2.15},{&quot;2026-07-09&quot;:2.27},{&quot;2026-07-10&quot;:2.23},{&quot;2026-07-11&quot;:2.23},{&quot;2026-07-12&quot;:2.45},{&quot;2026-07-13&quot;:2.44},{&quot;2026-07-14&quot;:2.44},{&quot;2026-07-15&quot;:2.37},{&quot;2026-07-16&quot;:2.37},{&quot;2026-07-17&quot;:2.36},{&quot;2026-07-18&quot;:2.42},{&quot;2026-07-19&quot;:2.47},{&quot;2026-07-20&quot;:2.32},{&quot;2026-07-21&quot;:2.39},{&quot;2026-07-22&quot;:2.42},{&quot;2026-07-23&quot;:2.39},{&quot;2026-07-24&quot;:2.37},{&quot;2026-07-25&quot;:2.26},{&quot;2026-07-26&quot;:2.28},{&quot;2026-07-27&quot;:2.28},{&quot;2026-07-28&quot;:2.28},{&quot;2026-07-29&quot;:2.22},{&quot;2026-07-30&quot;:2.38},{&quot;2026-07-31&quot;:2.61},{&quot;2026-08-01&quot;:2.61},{&quot;2026-08-02&quot;:2.44},{&quot;2026-08-03&quot;:2.44},{&quot;2026-08-04&quot;:2.4},{&quot;2026-08-05&quot;:2.4},{&quot;2026-08-07&quot;:2.35},{&quot;2026-08-08&quot;:2.41},{&quot;2026-08-09&quot;:2.34},{&quot;2026-08-10&quot;:2.21},{&quot;2026-08-11&quot;:1.9},{&quot;2026-08-12&quot;:2.08},{&quot;2026-08-13&quot;:2.13},{&quot;2026-08-14&quot;:2.13},{&quot;2026-08-15&quot;:2.16},{&quot;2026-08-16&quot;:2.2},{&quot;2026-08-17&quot;:2.15},{&quot;2026-08-18&quot;:2.14},{&quot;2026-08-19&quot;:2.19},{&quot;2026-08-20&quot;:2.4},{&quot;2026-08-21&quot;:2.41},{&quot;2026-08-22&quot;:2.38},{&quot;2026-08-23&quot;:2.38},{&quot;2026-08-24&quot;:2.41},{&quot;2026-08-25&quot;:2.46},{&quot;2026-08-26&quot;:2.65},{&quot;2026-08-27&quot;:2.51},{&quot;2026-08-28&quot;:2.51},{&quot;2026-08-29&quot;:2.51},{&quot;2026-08-30&quot;:2.5},{&quot;2026-08-31&quot;:2.47},{&quot;2026-09-01&quot;:2.45},{&quot;2026-09-02&quot;:2.41},{&quot;2026-09-03&quot;:2.44},{&quot;2026-09-04&quot;:2.42},{&quot;2026-09-05&quot;:2.42},{&quot;2026-09-06&quot;:2.42},{&quot;2026-09-07&quot;:2.48},{&quot;2026-09-08&quot;:2.47},{&quot;2026-09-09&quot;:2.47},{&quot;2026-09-10&quot;:2.44},{&quot;2026-09-11&quot;:2.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="18989"
  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-dmu ss-common ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            12 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">
            $1.22
          </span>
        </div>
      </div>
    </div>

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

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

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Mountain" src="https://cards.scryfall.io/large/front/0/a/0aaf15b9-1bf5-424a-a994-67beaae29d36.jpg?1783921246" />
    </div>

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

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

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

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

          <span class="text-lg font-medium text-nine-white">
            8
          </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.22
              </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">
                $2.49
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:2.84},{&quot;2026-06-14&quot;:2.84},{&quot;2026-06-15&quot;:2.89},{&quot;2026-06-16&quot;:2.92},{&quot;2026-06-17&quot;:2.88},{&quot;2026-06-18&quot;:2.88},{&quot;2026-06-19&quot;:2.87},{&quot;2026-06-20&quot;:2.87},{&quot;2026-06-21&quot;:2.7},{&quot;2026-06-22&quot;:2.7},{&quot;2026-06-23&quot;:2.65},{&quot;2026-06-24&quot;:2.67},{&quot;2026-06-25&quot;:2.7},{&quot;2026-06-26&quot;:2.78},{&quot;2026-06-27&quot;:2.82},{&quot;2026-06-28&quot;:2.82},{&quot;2026-06-29&quot;:2.82},{&quot;2026-06-30&quot;:2.82},{&quot;2026-07-01&quot;:2.79},{&quot;2026-07-02&quot;:2.79},{&quot;2026-07-03&quot;:2.75},{&quot;2026-07-04&quot;:2.78},{&quot;2026-07-05&quot;:2.78},{&quot;2026-07-06&quot;:2.71},{&quot;2026-07-07&quot;:2.71},{&quot;2026-07-08&quot;:2.58},{&quot;2026-07-09&quot;:2.6},{&quot;2026-07-10&quot;:2.6},{&quot;2026-07-11&quot;:2.63},{&quot;2026-07-12&quot;:2.63},{&quot;2026-07-13&quot;:2.72},{&quot;2026-07-14&quot;:2.72},{&quot;2026-07-15&quot;:2.55},{&quot;2026-07-16&quot;:2.56},{&quot;2026-07-17&quot;:2.56},{&quot;2026-07-18&quot;:2.56},{&quot;2026-07-19&quot;:2.59},{&quot;2026-07-20&quot;:2.81},{&quot;2026-07-21&quot;:2.86},{&quot;2026-07-22&quot;:2.97},{&quot;2026-07-23&quot;:2.97},{&quot;2026-07-24&quot;:2.94},{&quot;2026-07-25&quot;:2.94},{&quot;2026-07-26&quot;:2.95},{&quot;2026-07-27&quot;:2.96},{&quot;2026-07-28&quot;:2.88},{&quot;2026-07-29&quot;:2.84},{&quot;2026-07-30&quot;:2.68},{&quot;2026-07-31&quot;:3.03},{&quot;2026-08-01&quot;:3.03},{&quot;2026-08-02&quot;:3.15},{&quot;2026-08-03&quot;:3.15},{&quot;2026-08-04&quot;:3.22},{&quot;2026-08-05&quot;:3.22},{&quot;2026-08-07&quot;:2.9},{&quot;2026-08-08&quot;:2.62},{&quot;2026-08-09&quot;:2.67},{&quot;2026-08-10&quot;:2.66},{&quot;2026-08-11&quot;:2.74},{&quot;2026-08-12&quot;:2.76},{&quot;2026-08-13&quot;:2.87},{&quot;2026-08-14&quot;:2.87},{&quot;2026-08-15&quot;:2.87},{&quot;2026-08-16&quot;:2.87},{&quot;2026-08-17&quot;:3.05},{&quot;2026-08-18&quot;:3.08},{&quot;2026-08-19&quot;:2.91},{&quot;2026-08-20&quot;:2.91},{&quot;2026-08-21&quot;:2.79},{&quot;2026-08-22&quot;:2.79},{&quot;2026-08-23&quot;:2.64},{&quot;2026-08-24&quot;:2.64},{&quot;2026-08-25&quot;:2.65},{&quot;2026-08-26&quot;:2.67},{&quot;2026-08-27&quot;:2.56},{&quot;2026-08-28&quot;:2.56},{&quot;2026-08-29&quot;:2.56},{&quot;2026-08-30&quot;:2.65},{&quot;2026-08-31&quot;:2.62},{&quot;2026-09-01&quot;:2.53},{&quot;2026-09-02&quot;:2.53},{&quot;2026-09-03&quot;:2.56},{&quot;2026-09-04&quot;:2.53},{&quot;2026-09-05&quot;:2.55},{&quot;2026-09-06&quot;:2.55},{&quot;2026-09-07&quot;:2.57},{&quot;2026-09-08&quot;:2.56},{&quot;2026-09-09&quot;:2.56},{&quot;2026-09-10&quot;:2.49},{&quot;2026-09-11&quot;:2.49}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.39},{&quot;2026-06-14&quot;:1.36},{&quot;2026-06-15&quot;:1.37},{&quot;2026-06-16&quot;:1.14},{&quot;2026-06-17&quot;:1.1},{&quot;2026-06-18&quot;:1.09},{&quot;2026-06-19&quot;:1.13},{&quot;2026-06-20&quot;:1.13},{&quot;2026-06-21&quot;:1.13},{&quot;2026-06-22&quot;:1.1},{&quot;2026-06-23&quot;:1.11},{&quot;2026-06-24&quot;:1.13},{&quot;2026-06-25&quot;:1.18},{&quot;2026-06-26&quot;:1.18},{&quot;2026-06-27&quot;:1.12},{&quot;2026-06-28&quot;:1.28},{&quot;2026-06-29&quot;:1.27},{&quot;2026-06-30&quot;:1.41},{&quot;2026-07-01&quot;:1.44},{&quot;2026-07-02&quot;:1.44},{&quot;2026-07-03&quot;:1.42},{&quot;2026-07-04&quot;:1.39},{&quot;2026-07-05&quot;:1.39},{&quot;2026-07-06&quot;:1.39},{&quot;2026-07-07&quot;:1.42},{&quot;2026-07-08&quot;:1.41},{&quot;2026-07-09&quot;:1.39},{&quot;2026-07-10&quot;:1.39},{&quot;2026-07-11&quot;:1.4},{&quot;2026-07-12&quot;:1.2},{&quot;2026-07-13&quot;:1.2},{&quot;2026-07-14&quot;:1.22},{&quot;2026-07-15&quot;:1.22},{&quot;2026-07-16&quot;:1.32},{&quot;2026-07-17&quot;:1.29},{&quot;2026-07-18&quot;:1.29},{&quot;2026-07-19&quot;:1.29},{&quot;2026-07-20&quot;:1.29},{&quot;2026-07-21&quot;:1.28},{&quot;2026-07-22&quot;:1.31},{&quot;2026-07-23&quot;:1.38},{&quot;2026-07-24&quot;:1.38},{&quot;2026-07-25&quot;:1.35},{&quot;2026-07-26&quot;:1.35},{&quot;2026-07-27&quot;:1.36},{&quot;2026-07-28&quot;:1.41},{&quot;2026-07-29&quot;:1.4},{&quot;2026-07-30&quot;:1.4},{&quot;2026-07-31&quot;:1.32},{&quot;2026-08-01&quot;:1.32},{&quot;2026-08-02&quot;:1.31},{&quot;2026-08-03&quot;:1.31},{&quot;2026-08-04&quot;:1.29},{&quot;2026-08-05&quot;:1.35},{&quot;2026-08-07&quot;:1.34},{&quot;2026-08-08&quot;:1.34},{&quot;2026-08-09&quot;:1.34},{&quot;2026-08-10&quot;:1.35},{&quot;2026-08-11&quot;:1.34},{&quot;2026-08-12&quot;:1.34},{&quot;2026-08-13&quot;:1.34},{&quot;2026-08-14&quot;:1.31},{&quot;2026-08-15&quot;:1.31},{&quot;2026-08-16&quot;:1.32},{&quot;2026-08-17&quot;:1.33},{&quot;2026-08-18&quot;:1.37},{&quot;2026-08-19&quot;:1.38},{&quot;2026-08-20&quot;:1.38},{&quot;2026-08-21&quot;:1.38},{&quot;2026-08-22&quot;:1.35},{&quot;2026-08-23&quot;:1.38},{&quot;2026-08-24&quot;:1.35},{&quot;2026-08-25&quot;:1.32},{&quot;2026-08-26&quot;:1.29},{&quot;2026-08-27&quot;:1.24},{&quot;2026-08-28&quot;:1.24},{&quot;2026-08-29&quot;:1.24},{&quot;2026-08-30&quot;:1.24},{&quot;2026-08-31&quot;:1.22},{&quot;2026-09-01&quot;:1.26},{&quot;2026-09-02&quot;:1.26},{&quot;2026-09-03&quot;:1.17},{&quot;2026-09-04&quot;:1.21},{&quot;2026-09-05&quot;:1.13},{&quot;2026-09-06&quot;:1.13},{&quot;2026-09-07&quot;:1.16},{&quot;2026-09-08&quot;:1.21},{&quot;2026-09-09&quot;:1.27},{&quot;2026-09-10&quot;:1.27},{&quot;2026-09-11&quot;:1.22}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="90930"
  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-inr 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">
            Chandra, Dressed to Kill
        </span>


      </div>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Chandra, Dressed to Kill" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/6/4/640b112d-fe82-4294-a632-efbb7f2467f5.jpg?1783908124" />

        <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">
            Chandra, Dressed to Kill
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Legendary Planeswalker — Chandra</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Chandra, Dressed to Kill" src="https://cards.scryfall.io/large/front/6/4/640b112d-fe82-4294-a632-efbb7f2467f5.jpg?1783908124" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:3.02},{&quot;2026-06-14&quot;:3.02},{&quot;2026-06-15&quot;:3.02},{&quot;2026-06-16&quot;:3.02},{&quot;2026-06-17&quot;:3.02},{&quot;2026-06-18&quot;:3.02},{&quot;2026-06-19&quot;:3.02},{&quot;2026-06-20&quot;:3.02},{&quot;2026-06-21&quot;:3.02},{&quot;2026-06-22&quot;:3.02},{&quot;2026-06-23&quot;:3.02},{&quot;2026-06-24&quot;:3.02},{&quot;2026-06-25&quot;:3.09},{&quot;2026-06-26&quot;:3.09},{&quot;2026-06-27&quot;:3.09},{&quot;2026-06-28&quot;:2.98},{&quot;2026-06-29&quot;:2.98},{&quot;2026-06-30&quot;:2.98},{&quot;2026-07-01&quot;:2.98},{&quot;2026-07-02&quot;:2.83},{&quot;2026-07-03&quot;:2.83},{&quot;2026-07-04&quot;:2.83},{&quot;2026-07-05&quot;:2.83},{&quot;2026-07-06&quot;:2.83},{&quot;2026-07-07&quot;:2.83},{&quot;2026-07-08&quot;:2.83},{&quot;2026-07-09&quot;:2.83},{&quot;2026-07-10&quot;:2.83},{&quot;2026-07-11&quot;:2.79},{&quot;2026-07-12&quot;:2.79},{&quot;2026-07-13&quot;:2.79},{&quot;2026-07-14&quot;:2.79},{&quot;2026-07-15&quot;:2.79},{&quot;2026-07-16&quot;:2.86},{&quot;2026-07-17&quot;:2.86},{&quot;2026-07-18&quot;:2.86},{&quot;2026-07-19&quot;:2.9},{&quot;2026-07-20&quot;:2.86},{&quot;2026-07-21&quot;:2.86},{&quot;2026-07-22&quot;:2.86},{&quot;2026-07-23&quot;:2.86},{&quot;2026-07-24&quot;:2.86},{&quot;2026-07-25&quot;:2.86},{&quot;2026-07-26&quot;:2.86},{&quot;2026-07-27&quot;:2.86},{&quot;2026-07-28&quot;:2.86},{&quot;2026-07-29&quot;:2.86},{&quot;2026-07-30&quot;:2.27},{&quot;2026-07-31&quot;:2.28},{&quot;2026-08-01&quot;:2.28},{&quot;2026-08-02&quot;:2.28},{&quot;2026-08-03&quot;:2.28},{&quot;2026-08-04&quot;:2.29},{&quot;2026-08-05&quot;:2.33},{&quot;2026-08-07&quot;:2.33},{&quot;2026-08-08&quot;:2.33},{&quot;2026-08-09&quot;:2.33},{&quot;2026-08-10&quot;:2.35},{&quot;2026-08-11&quot;:2.35},{&quot;2026-08-12&quot;:2.37},{&quot;2026-08-13&quot;:2.37},{&quot;2026-08-14&quot;:2.4},{&quot;2026-08-15&quot;:2.42},{&quot;2026-08-16&quot;:2.42},{&quot;2026-08-17&quot;:2.42},{&quot;2026-08-18&quot;:2.42},{&quot;2026-08-19&quot;:2.37},{&quot;2026-08-20&quot;:2.37},{&quot;2026-08-21&quot;:2.37},{&quot;2026-08-22&quot;:2.37},{&quot;2026-08-23&quot;:2.37},{&quot;2026-08-24&quot;:2.37},{&quot;2026-08-25&quot;:2.37},{&quot;2026-08-26&quot;:2.36},{&quot;2026-08-27&quot;:2.35},{&quot;2026-08-28&quot;:2.35},{&quot;2026-08-29&quot;:2.35},{&quot;2026-08-30&quot;:2.31},{&quot;2026-08-31&quot;:2.31},{&quot;2026-09-01&quot;:2.24},{&quot;2026-09-02&quot;:2.29},{&quot;2026-09-03&quot;:2.29},{&quot;2026-09-04&quot;:2.25},{&quot;2026-09-05&quot;:2.25},{&quot;2026-09-06&quot;:2.26},{&quot;2026-09-07&quot;:2.26},{&quot;2026-09-08&quot;:2.26},{&quot;2026-09-09&quot;:2.26},{&quot;2026-09-10&quot;:2.26},{&quot;2026-09-11&quot;:2.26}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.48},{&quot;2026-06-14&quot;:1.48},{&quot;2026-06-15&quot;:1.51},{&quot;2026-06-16&quot;:1.47},{&quot;2026-06-17&quot;:1.44},{&quot;2026-06-18&quot;:1.54},{&quot;2026-06-19&quot;:1.54},{&quot;2026-06-20&quot;:1.54},{&quot;2026-06-21&quot;:1.54},{&quot;2026-06-22&quot;:1.54},{&quot;2026-06-23&quot;:1.49},{&quot;2026-06-24&quot;:1.49},{&quot;2026-06-25&quot;:1.55},{&quot;2026-06-26&quot;:1.55},{&quot;2026-06-27&quot;:1.55},{&quot;2026-06-28&quot;:1.58},{&quot;2026-06-29&quot;:1.63},{&quot;2026-06-30&quot;:1.6},{&quot;2026-07-01&quot;:1.6},{&quot;2026-07-02&quot;:1.6},{&quot;2026-07-03&quot;:1.6},{&quot;2026-07-04&quot;:1.67},{&quot;2026-07-05&quot;:1.67},{&quot;2026-07-06&quot;:1.69},{&quot;2026-07-07&quot;:1.69},{&quot;2026-07-08&quot;:1.69},{&quot;2026-07-09&quot;:1.72},{&quot;2026-07-10&quot;:1.72},{&quot;2026-07-11&quot;:1.72},{&quot;2026-07-12&quot;:1.73},{&quot;2026-07-13&quot;:1.73},{&quot;2026-07-14&quot;:1.73},{&quot;2026-07-15&quot;:1.65},{&quot;2026-07-16&quot;:1.65},{&quot;2026-07-17&quot;:1.64},{&quot;2026-07-18&quot;:1.56},{&quot;2026-07-19&quot;:1.56},{&quot;2026-07-20&quot;:1.56},{&quot;2026-07-21&quot;:1.59},{&quot;2026-07-22&quot;:1.59},{&quot;2026-07-23&quot;:1.59},{&quot;2026-07-24&quot;:1.59},{&quot;2026-07-25&quot;:1.59},{&quot;2026-07-26&quot;:1.59},{&quot;2026-07-27&quot;:1.59},{&quot;2026-07-28&quot;:1.59},{&quot;2026-07-29&quot;:1.63},{&quot;2026-07-30&quot;:1.76},{&quot;2026-07-31&quot;:1.82},{&quot;2026-08-01&quot;:1.82},{&quot;2026-08-02&quot;:1.82},{&quot;2026-08-03&quot;:1.83},{&quot;2026-08-04&quot;:1.81},{&quot;2026-08-05&quot;:1.8},{&quot;2026-08-07&quot;:1.83},{&quot;2026-08-08&quot;:1.83},{&quot;2026-08-09&quot;:1.83},{&quot;2026-08-10&quot;:1.83},{&quot;2026-08-11&quot;:1.83},{&quot;2026-08-12&quot;:1.83},{&quot;2026-08-13&quot;:1.83},{&quot;2026-08-14&quot;:1.83},{&quot;2026-08-15&quot;:1.83},{&quot;2026-08-16&quot;:1.83},{&quot;2026-08-17&quot;:1.83},{&quot;2026-08-18&quot;:1.84},{&quot;2026-08-19&quot;:1.83},{&quot;2026-08-20&quot;:1.83},{&quot;2026-08-21&quot;:1.83},{&quot;2026-08-22&quot;:1.83},{&quot;2026-08-23&quot;:1.83},{&quot;2026-08-24&quot;:1.8},{&quot;2026-08-25&quot;:1.77},{&quot;2026-08-26&quot;:1.77},{&quot;2026-08-27&quot;:1.78},{&quot;2026-08-28&quot;:1.81},{&quot;2026-08-29&quot;:1.81},{&quot;2026-08-30&quot;:1.9},{&quot;2026-08-31&quot;:1.94},{&quot;2026-09-01&quot;:1.94},{&quot;2026-09-02&quot;:1.94},{&quot;2026-09-03&quot;:1.94},{&quot;2026-09-04&quot;:1.94},{&quot;2026-09-05&quot;:1.94},{&quot;2026-09-06&quot;:1.9},{&quot;2026-09-07&quot;:1.9},{&quot;2026-09-08&quot;:1.99},{&quot;2026-09-09&quot;:2.03},{&quot;2026-09-10&quot;:2.03},{&quot;2026-09-11&quot;:2.03}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="16519"
  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-m21 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">
            Chandra&#39;s Incinerator
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Chandra&#39;s Incinerator" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/9/b906cdb4-6a82-4611-abde-43566f9d01eb.jpg?1783930632" />

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

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-5'></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="Chandra&#39;s Incinerator" src="https://cards.scryfall.io/large/front/b/9/b906cdb4-6a82-4611-abde-43566f9d01eb.jpg?1783930632" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-08&quot;:3.09},{&quot;2026-06-10&quot;:3.09},{&quot;2026-06-11&quot;:3.08},{&quot;2026-06-12&quot;:3.08},{&quot;2026-06-13&quot;:3.08},{&quot;2026-06-14&quot;:3.08},{&quot;2026-06-15&quot;:3.08},{&quot;2026-06-16&quot;:3.07},{&quot;2026-06-17&quot;:3.07},{&quot;2026-06-18&quot;:3.07},{&quot;2026-06-19&quot;:3.03},{&quot;2026-06-20&quot;:3.03},{&quot;2026-06-21&quot;:3.03},{&quot;2026-06-22&quot;:3.03},{&quot;2026-06-24&quot;:3.03},{&quot;2026-06-25&quot;:3.03},{&quot;2026-06-26&quot;:3.03},{&quot;2026-06-27&quot;:3.03},{&quot;2026-06-28&quot;:3.03},{&quot;2026-06-29&quot;:3.03},{&quot;2026-06-30&quot;:3.03},{&quot;2026-07-01&quot;:3.03},{&quot;2026-07-02&quot;:3.03},{&quot;2026-07-03&quot;:3.03},{&quot;2026-07-04&quot;:3.02},{&quot;2026-07-05&quot;:3.02},{&quot;2026-07-06&quot;:3.02},{&quot;2026-07-07&quot;:2.99},{&quot;2026-07-08&quot;:2.94},{&quot;2026-07-09&quot;:2.94},{&quot;2026-07-10&quot;:2.94},{&quot;2026-07-11&quot;:2.94},{&quot;2026-07-12&quot;:2.94},{&quot;2026-07-13&quot;:2.94},{&quot;2026-07-14&quot;:2.94},{&quot;2026-07-15&quot;:2.94},{&quot;2026-07-16&quot;:2.94},{&quot;2026-07-17&quot;:2.94},{&quot;2026-07-18&quot;:2.94},{&quot;2026-07-19&quot;:2.99},{&quot;2026-07-20&quot;:2.99},{&quot;2026-07-21&quot;:2.99},{&quot;2026-07-23&quot;:2.99},{&quot;2026-07-25&quot;:2.99},{&quot;2026-07-26&quot;:2.99},{&quot;2026-07-27&quot;:2.99},{&quot;2026-07-29&quot;:2.96},{&quot;2026-07-30&quot;:2.99},{&quot;2026-07-31&quot;:2.96},{&quot;2026-08-01&quot;:2.96},{&quot;2026-08-02&quot;:2.96},{&quot;2026-08-03&quot;:2.96},{&quot;2026-08-04&quot;:2.97},{&quot;2026-08-05&quot;:2.97},{&quot;2026-08-07&quot;:2.97},{&quot;2026-08-08&quot;:2.97},{&quot;2026-08-09&quot;:2.97},{&quot;2026-08-10&quot;:2.97},{&quot;2026-08-11&quot;:2.97},{&quot;2026-08-12&quot;:2.97},{&quot;2026-08-13&quot;:2.97},{&quot;2026-08-14&quot;:2.97},{&quot;2026-08-15&quot;:2.97},{&quot;2026-08-16&quot;:2.99},{&quot;2026-08-17&quot;:2.98},{&quot;2026-08-18&quot;:2.98},{&quot;2026-08-19&quot;:2.98},{&quot;2026-08-20&quot;:2.98},{&quot;2026-08-21&quot;:2.98},{&quot;2026-08-22&quot;:2.98},{&quot;2026-08-23&quot;:2.98},{&quot;2026-08-24&quot;:2.98},{&quot;2026-08-25&quot;:2.98},{&quot;2026-08-26&quot;:2.98},{&quot;2026-08-27&quot;:2.93},{&quot;2026-08-28&quot;:2.93},{&quot;2026-08-29&quot;:2.93},{&quot;2026-08-30&quot;:2.93},{&quot;2026-08-31&quot;:2.89},{&quot;2026-09-01&quot;:2.89},{&quot;2026-09-02&quot;:2.89},{&quot;2026-09-03&quot;:2.89},{&quot;2026-09-04&quot;:2.89},{&quot;2026-09-05&quot;:2.89},{&quot;2026-09-06&quot;:2.89},{&quot;2026-09-07&quot;:2.89},{&quot;2026-09-08&quot;:2.89},{&quot;2026-09-09&quot;:2.89},{&quot;2026-09-10&quot;:2.89},{&quot;2026-09-11&quot;:2.89}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:2.28},{&quot;2026-06-10&quot;:2.33},{&quot;2026-06-11&quot;:2.33},{&quot;2026-06-12&quot;:2.36},{&quot;2026-06-13&quot;:2.45},{&quot;2026-06-14&quot;:2.45},{&quot;2026-06-15&quot;:2.47},{&quot;2026-06-16&quot;:2.47},{&quot;2026-06-17&quot;:2.42},{&quot;2026-06-18&quot;:4.42},{&quot;2026-06-19&quot;:4.48},{&quot;2026-06-20&quot;:4.47},{&quot;2026-06-21&quot;:4.43},{&quot;2026-06-22&quot;:4.5},{&quot;2026-06-24&quot;:4.58},{&quot;2026-06-25&quot;:4.67},{&quot;2026-06-26&quot;:4.83},{&quot;2026-06-27&quot;:4.78},{&quot;2026-06-28&quot;:4.82},{&quot;2026-06-29&quot;:4.97},{&quot;2026-06-30&quot;:4.97},{&quot;2026-07-01&quot;:4.87},{&quot;2026-07-02&quot;:4.84},{&quot;2026-07-03&quot;:4.68},{&quot;2026-07-04&quot;:4.68},{&quot;2026-07-05&quot;:4.77},{&quot;2026-07-06&quot;:4.76},{&quot;2026-07-07&quot;:4.76},{&quot;2026-07-08&quot;:4.7},{&quot;2026-07-09&quot;:2.75},{&quot;2026-07-10&quot;:2.8},{&quot;2026-07-11&quot;:2.93},{&quot;2026-07-12&quot;:3.09},{&quot;2026-07-13&quot;:3.04},{&quot;2026-07-14&quot;:2.74},{&quot;2026-07-15&quot;:2.75},{&quot;2026-07-16&quot;:2.63},{&quot;2026-07-17&quot;:2.81},{&quot;2026-07-18&quot;:3.16},{&quot;2026-07-19&quot;:2.97},{&quot;2026-07-20&quot;:2.97},{&quot;2026-07-21&quot;:2.93},{&quot;2026-07-23&quot;:3.02},{&quot;2026-07-25&quot;:2.83},{&quot;2026-07-26&quot;:2.73},{&quot;2026-07-27&quot;:2.79},{&quot;2026-07-29&quot;:2.78},{&quot;2026-07-30&quot;:2.78},{&quot;2026-07-31&quot;:2.65},{&quot;2026-08-01&quot;:2.6},{&quot;2026-08-02&quot;:2.64},{&quot;2026-08-03&quot;:2.81},{&quot;2026-08-04&quot;:2.8},{&quot;2026-08-05&quot;:2.42},{&quot;2026-08-07&quot;:2.37},{&quot;2026-08-08&quot;:2.37},{&quot;2026-08-09&quot;:2.43},{&quot;2026-08-10&quot;:2.43},{&quot;2026-08-11&quot;:2.47},{&quot;2026-08-12&quot;:2.47},{&quot;2026-08-13&quot;:2.45},{&quot;2026-08-14&quot;:2.45},{&quot;2026-08-15&quot;:2.41},{&quot;2026-08-16&quot;:2.41},{&quot;2026-08-17&quot;:2.41},{&quot;2026-08-18&quot;:2.41},{&quot;2026-08-19&quot;:2.37},{&quot;2026-08-20&quot;:2.37},{&quot;2026-08-21&quot;:2.37},{&quot;2026-08-22&quot;:2.35},{&quot;2026-08-23&quot;:2.35},{&quot;2026-08-24&quot;:2.27},{&quot;2026-08-25&quot;:2.27},{&quot;2026-08-26&quot;:2.21},{&quot;2026-08-27&quot;:2.21},{&quot;2026-08-28&quot;:2.21},{&quot;2026-08-29&quot;:2.21},{&quot;2026-08-30&quot;:2.17},{&quot;2026-08-31&quot;:2.08},{&quot;2026-09-01&quot;:2.08},{&quot;2026-09-02&quot;:2.11},{&quot;2026-09-03&quot;:2.06},{&quot;2026-09-04&quot;:2.05},{&quot;2026-09-05&quot;:2.05},{&quot;2026-09-06&quot;:2.05},{&quot;2026-09-07&quot;:1.99},{&quot;2026-09-08&quot;:2.07},{&quot;2026-09-09&quot;:2.05},{&quot;2026-09-10&quot;:2.05},{&quot;2026-09-11&quot;:2.02}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

        <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">
            Sulfuric Vortex
        </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><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="Sulfuric Vortex" src="https://cards.scryfall.io/large/front/1/d/1d446b8b-1b09-4fef-8454-95ad272503c0.jpg?1783918367" />
    </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">
                $1.08
              </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">
                $1.72
              </span>

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Foil</span>
              <span class="text-lg font-medium text-nine-white">$0.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;2026-06-13&quot;:1.61},{&quot;2026-06-14&quot;:1.61},{&quot;2026-06-15&quot;:1.61},{&quot;2026-06-16&quot;:1.61},{&quot;2026-06-17&quot;:1.61},{&quot;2026-06-18&quot;:1.61},{&quot;2026-06-19&quot;:1.61},{&quot;2026-06-20&quot;:1.61},{&quot;2026-06-21&quot;:1.61},{&quot;2026-06-22&quot;:1.61},{&quot;2026-06-23&quot;:1.61},{&quot;2026-06-24&quot;:1.61},{&quot;2026-06-25&quot;:1.61},{&quot;2026-06-26&quot;:1.61},{&quot;2026-06-27&quot;:1.61},{&quot;2026-06-28&quot;:1.57},{&quot;2026-06-29&quot;:1.57},{&quot;2026-06-30&quot;:1.57},{&quot;2026-07-01&quot;:1.57},{&quot;2026-07-02&quot;:1.59},{&quot;2026-07-03&quot;:1.59},{&quot;2026-07-04&quot;:1.59},{&quot;2026-07-05&quot;:1.59},{&quot;2026-07-06&quot;:1.59},{&quot;2026-07-07&quot;:1.59},{&quot;2026-07-08&quot;:1.59},{&quot;2026-07-09&quot;:1.59},{&quot;2026-07-10&quot;:1.59},{&quot;2026-07-11&quot;:1.62},{&quot;2026-07-12&quot;:1.62},{&quot;2026-07-13&quot;:1.62},{&quot;2026-07-14&quot;:1.62},{&quot;2026-07-15&quot;:1.62},{&quot;2026-07-16&quot;:1.62},{&quot;2026-07-17&quot;:1.62},{&quot;2026-07-18&quot;:1.64},{&quot;2026-07-19&quot;:1.64},{&quot;2026-07-20&quot;:1.57},{&quot;2026-07-21&quot;:1.57},{&quot;2026-07-22&quot;:1.56},{&quot;2026-07-23&quot;:1.56},{&quot;2026-07-24&quot;:1.54},{&quot;2026-07-25&quot;:1.51},{&quot;2026-07-26&quot;:1.51},{&quot;2026-07-27&quot;:1.51},{&quot;2026-07-28&quot;:1.56},{&quot;2026-07-29&quot;:1.56},{&quot;2026-07-30&quot;:1.56},{&quot;2026-07-31&quot;:1.56},{&quot;2026-08-01&quot;:1.56},{&quot;2026-08-02&quot;:1.56},{&quot;2026-08-03&quot;:1.56},{&quot;2026-08-04&quot;:1.56},{&quot;2026-08-05&quot;:1.56},{&quot;2026-08-07&quot;:1.56},{&quot;2026-08-08&quot;:1.56},{&quot;2026-08-09&quot;:1.56},{&quot;2026-08-10&quot;:1.56},{&quot;2026-08-11&quot;:1.56},{&quot;2026-08-12&quot;:1.56},{&quot;2026-08-13&quot;:1.56},{&quot;2026-08-14&quot;:1.57},{&quot;2026-08-15&quot;:1.57},{&quot;2026-08-16&quot;:1.57},{&quot;2026-08-17&quot;:1.68},{&quot;2026-08-18&quot;:1.68},{&quot;2026-08-19&quot;:1.68},{&quot;2026-08-20&quot;:1.68},{&quot;2026-08-21&quot;:1.68},{&quot;2026-08-22&quot;:1.68},{&quot;2026-08-23&quot;:1.68},{&quot;2026-08-24&quot;:1.77},{&quot;2026-08-25&quot;:1.76},{&quot;2026-08-26&quot;:1.77},{&quot;2026-08-27&quot;:1.77},{&quot;2026-08-28&quot;:1.71},{&quot;2026-08-29&quot;:1.71},{&quot;2026-08-30&quot;:1.68},{&quot;2026-08-31&quot;:1.68},{&quot;2026-09-01&quot;:1.71},{&quot;2026-09-02&quot;:1.72},{&quot;2026-09-03&quot;:1.72},{&quot;2026-09-04&quot;:1.72},{&quot;2026-09-05&quot;:1.72},{&quot;2026-09-06&quot;:1.72},{&quot;2026-09-07&quot;:1.72},{&quot;2026-09-08&quot;:1.72},{&quot;2026-09-09&quot;:1.72},{&quot;2026-09-10&quot;:1.72},{&quot;2026-09-11&quot;:1.72}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.87},{&quot;2026-06-14&quot;:0.87},{&quot;2026-06-15&quot;:0.87},{&quot;2026-06-16&quot;:0.89},{&quot;2026-06-17&quot;:0.9},{&quot;2026-06-18&quot;:0.87},{&quot;2026-06-19&quot;:0.87},{&quot;2026-06-20&quot;:0.9},{&quot;2026-06-21&quot;:0.9},{&quot;2026-06-22&quot;:0.88},{&quot;2026-06-23&quot;:0.88},{&quot;2026-06-24&quot;:0.88},{&quot;2026-06-25&quot;:0.88},{&quot;2026-06-26&quot;:0.88},{&quot;2026-06-27&quot;:0.88},{&quot;2026-06-28&quot;:0.88},{&quot;2026-06-29&quot;:0.88},{&quot;2026-06-30&quot;:0.88},{&quot;2026-07-01&quot;:0.89},{&quot;2026-07-02&quot;:0.87},{&quot;2026-07-03&quot;:0.9},{&quot;2026-07-04&quot;:0.9},{&quot;2026-07-05&quot;:0.9},{&quot;2026-07-06&quot;:0.87},{&quot;2026-07-07&quot;:0.87},{&quot;2026-07-08&quot;:0.88},{&quot;2026-07-09&quot;:0.88},{&quot;2026-07-10&quot;:0.93},{&quot;2026-07-11&quot;:0.97},{&quot;2026-07-12&quot;:1.12},{&quot;2026-07-13&quot;:1.12},{&quot;2026-07-14&quot;:1.12},{&quot;2026-07-15&quot;:1.12},{&quot;2026-07-16&quot;:1.12},{&quot;2026-07-17&quot;:1.12},{&quot;2026-07-18&quot;:1.11},{&quot;2026-07-19&quot;:1.11},{&quot;2026-07-20&quot;:1.11},{&quot;2026-07-21&quot;:1.11},{&quot;2026-07-22&quot;:1.12},{&quot;2026-07-23&quot;:1.12},{&quot;2026-07-24&quot;:1.12},{&quot;2026-07-25&quot;:1.12},{&quot;2026-07-26&quot;:1.12},{&quot;2026-07-27&quot;:1.11},{&quot;2026-07-28&quot;:1.14},{&quot;2026-07-29&quot;:1.14},{&quot;2026-07-30&quot;:1.14},{&quot;2026-07-31&quot;:1.14},{&quot;2026-08-01&quot;:1.14},{&quot;2026-08-02&quot;:1.15},{&quot;2026-08-03&quot;:1.15},{&quot;2026-08-04&quot;:1.15},{&quot;2026-08-05&quot;:1.18},{&quot;2026-08-07&quot;:1.2},{&quot;2026-08-08&quot;:1.19},{&quot;2026-08-09&quot;:1.19},{&quot;2026-08-10&quot;:1.19},{&quot;2026-08-11&quot;:1.21},{&quot;2026-08-12&quot;:1.21},{&quot;2026-08-13&quot;:1.21},{&quot;2026-08-14&quot;:1.21},{&quot;2026-08-15&quot;:1.21},{&quot;2026-08-16&quot;:1.23},{&quot;2026-08-17&quot;:1.23},{&quot;2026-08-18&quot;:1.23},{&quot;2026-08-19&quot;:1.22},{&quot;2026-08-20&quot;:1.23},{&quot;2026-08-21&quot;:1.17},{&quot;2026-08-22&quot;:1.11},{&quot;2026-08-23&quot;:1.11},{&quot;2026-08-24&quot;:1.11},{&quot;2026-08-25&quot;:1.11},{&quot;2026-08-26&quot;:1.11},{&quot;2026-08-27&quot;:1.11},{&quot;2026-08-28&quot;:1.11},{&quot;2026-08-29&quot;:1.11},{&quot;2026-08-30&quot;:1.11},{&quot;2026-08-31&quot;:1.08},{&quot;2026-09-01&quot;:1.08},{&quot;2026-09-02&quot;:1.08},{&quot;2026-09-03&quot;:1.08},{&quot;2026-09-04&quot;:1.08},{&quot;2026-09-05&quot;:1.08},{&quot;2026-09-06&quot;:1.08},{&quot;2026-09-07&quot;:1.08},{&quot;2026-09-08&quot;:1.08},{&quot;2026-09-09&quot;:1.08},{&quot;2026-09-10&quot;:1.08},{&quot;2026-09-11&quot;:1.08}]}"
        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="11977"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-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">
            Soulfire Eruption
        </span>


      </div>

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Soulfire Eruption" src="https://cards.scryfall.io/large/front/2/d/2def4384-7175-4a26-a5a0-8f2c5b5ad71c.jpg?1783928807" />
    </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.61
              </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">
                $2.06
              </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;2026-06-10&quot;:1.34},{&quot;2026-06-11&quot;:1.34},{&quot;2026-06-12&quot;:1.34},{&quot;2026-06-13&quot;:1.38},{&quot;2026-06-14&quot;:1.38},{&quot;2026-06-15&quot;:1.38},{&quot;2026-06-16&quot;:1.38},{&quot;2026-06-17&quot;:1.38},{&quot;2026-06-18&quot;:1.38},{&quot;2026-06-19&quot;:1.38},{&quot;2026-06-20&quot;:1.38},{&quot;2026-06-21&quot;:1.38},{&quot;2026-06-22&quot;:1.38},{&quot;2026-06-23&quot;:1.38},{&quot;2026-06-24&quot;:1.38},{&quot;2026-06-25&quot;:1.4},{&quot;2026-06-26&quot;:1.4},{&quot;2026-06-27&quot;:1.52},{&quot;2026-06-28&quot;:1.52},{&quot;2026-06-29&quot;:1.52},{&quot;2026-06-30&quot;:1.52},{&quot;2026-07-01&quot;:1.52},{&quot;2026-07-02&quot;:1.52},{&quot;2026-07-03&quot;:1.52},{&quot;2026-07-04&quot;:1.52},{&quot;2026-07-05&quot;:1.52},{&quot;2026-07-06&quot;:1.52},{&quot;2026-07-07&quot;:1.52},{&quot;2026-07-08&quot;:1.52},{&quot;2026-07-09&quot;:1.52},{&quot;2026-07-10&quot;:1.52},{&quot;2026-07-11&quot;:1.52},{&quot;2026-07-12&quot;:1.52},{&quot;2026-07-13&quot;:1.52},{&quot;2026-07-14&quot;:1.52},{&quot;2026-07-15&quot;:1.52},{&quot;2026-07-16&quot;:1.52},{&quot;2026-07-17&quot;:1.52},{&quot;2026-07-18&quot;:1.54},{&quot;2026-07-19&quot;:1.54},{&quot;2026-07-20&quot;:1.54},{&quot;2026-07-21&quot;:1.54},{&quot;2026-07-23&quot;:1.54},{&quot;2026-07-25&quot;:1.54},{&quot;2026-07-26&quot;:1.54},{&quot;2026-07-27&quot;:1.54},{&quot;2026-07-29&quot;:1.54},{&quot;2026-07-30&quot;:1.54},{&quot;2026-07-31&quot;:1.54},{&quot;2026-08-01&quot;:1.54},{&quot;2026-08-02&quot;:1.54},{&quot;2026-08-03&quot;:1.54},{&quot;2026-08-04&quot;:1.54},{&quot;2026-08-05&quot;:1.54},{&quot;2026-08-07&quot;:1.54},{&quot;2026-08-08&quot;:1.54},{&quot;2026-08-09&quot;:1.54},{&quot;2026-08-10&quot;:1.54},{&quot;2026-08-11&quot;:1.54},{&quot;2026-08-12&quot;:1.54},{&quot;2026-08-13&quot;:1.54},{&quot;2026-08-14&quot;:1.54},{&quot;2026-08-15&quot;:1.54},{&quot;2026-08-16&quot;:1.54},{&quot;2026-08-17&quot;:1.54},{&quot;2026-08-18&quot;:1.54},{&quot;2026-08-19&quot;:1.56},{&quot;2026-08-20&quot;:1.56},{&quot;2026-08-21&quot;:1.59},{&quot;2026-08-22&quot;:1.59},{&quot;2026-08-23&quot;:1.59},{&quot;2026-08-24&quot;:1.59},{&quot;2026-08-25&quot;:1.59},{&quot;2026-08-26&quot;:1.59},{&quot;2026-08-27&quot;:1.59},{&quot;2026-08-28&quot;:1.59},{&quot;2026-08-29&quot;:1.59},{&quot;2026-08-30&quot;:1.61},{&quot;2026-08-31&quot;:1.61},{&quot;2026-09-01&quot;:1.61},{&quot;2026-09-02&quot;:2.06},{&quot;2026-09-03&quot;:2.06},{&quot;2026-09-04&quot;:2.06},{&quot;2026-09-05&quot;:2.06},{&quot;2026-09-06&quot;:2.06},{&quot;2026-09-07&quot;:2.06},{&quot;2026-09-08&quot;:2.06},{&quot;2026-09-09&quot;:2.06},{&quot;2026-09-10&quot;:2.06},{&quot;2026-09-11&quot;:2.06}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:1.6},{&quot;2026-06-11&quot;:1.62},{&quot;2026-06-12&quot;:1.72},{&quot;2026-06-13&quot;:1.72},{&quot;2026-06-14&quot;:1.72},{&quot;2026-06-15&quot;:1.77},{&quot;2026-06-16&quot;:1.79},{&quot;2026-06-17&quot;:1.86},{&quot;2026-06-18&quot;:1.88},{&quot;2026-06-19&quot;:1.88},{&quot;2026-06-20&quot;:1.88},{&quot;2026-06-21&quot;:1.92},{&quot;2026-06-22&quot;:1.92},{&quot;2026-06-23&quot;:1.92},{&quot;2026-06-24&quot;:1.92},{&quot;2026-06-25&quot;:1.92},{&quot;2026-06-26&quot;:1.92},{&quot;2026-06-27&quot;:1.9},{&quot;2026-06-28&quot;:1.9},{&quot;2026-06-29&quot;:1.9},{&quot;2026-06-30&quot;:1.9},{&quot;2026-07-01&quot;:1.88},{&quot;2026-07-02&quot;:1.83},{&quot;2026-07-03&quot;:1.83},{&quot;2026-07-04&quot;:1.82},{&quot;2026-07-05&quot;:1.82},{&quot;2026-07-06&quot;:1.87},{&quot;2026-07-07&quot;:1.87},{&quot;2026-07-08&quot;:1.87},{&quot;2026-07-09&quot;:1.84},{&quot;2026-07-10&quot;:1.86},{&quot;2026-07-11&quot;:1.84},{&quot;2026-07-12&quot;:1.8},{&quot;2026-07-13&quot;:1.84},{&quot;2026-07-14&quot;:1.81},{&quot;2026-07-15&quot;:1.85},{&quot;2026-07-16&quot;:1.85},{&quot;2026-07-17&quot;:1.85},{&quot;2026-07-18&quot;:1.82},{&quot;2026-07-19&quot;:1.82},{&quot;2026-07-20&quot;:1.82},{&quot;2026-07-21&quot;:1.82},{&quot;2026-07-23&quot;:1.83},{&quot;2026-07-25&quot;:1.79},{&quot;2026-07-26&quot;:1.82},{&quot;2026-07-27&quot;:1.78},{&quot;2026-07-29&quot;:1.78},{&quot;2026-07-30&quot;:1.73},{&quot;2026-07-31&quot;:1.61},{&quot;2026-08-01&quot;:1.61},{&quot;2026-08-02&quot;:1.66},{&quot;2026-08-03&quot;:1.66},{&quot;2026-08-04&quot;:1.68},{&quot;2026-08-05&quot;:1.73},{&quot;2026-08-07&quot;:1.69},{&quot;2026-08-08&quot;:1.69},{&quot;2026-08-09&quot;:1.69},{&quot;2026-08-10&quot;:1.69},{&quot;2026-08-11&quot;:1.69},{&quot;2026-08-12&quot;:1.68},{&quot;2026-08-13&quot;:1.72},{&quot;2026-08-14&quot;:1.69},{&quot;2026-08-15&quot;:1.69},{&quot;2026-08-16&quot;:1.68},{&quot;2026-08-17&quot;:1.68},{&quot;2026-08-18&quot;:1.68},{&quot;2026-08-19&quot;:1.68},{&quot;2026-08-20&quot;:1.68},{&quot;2026-08-21&quot;:1.68},{&quot;2026-08-22&quot;:1.68},{&quot;2026-08-23&quot;:1.65},{&quot;2026-08-24&quot;:1.7},{&quot;2026-08-25&quot;:1.7},{&quot;2026-08-26&quot;:1.7},{&quot;2026-08-27&quot;:1.74},{&quot;2026-08-28&quot;:1.76},{&quot;2026-08-29&quot;:1.76},{&quot;2026-08-30&quot;:1.83},{&quot;2026-08-31&quot;:1.79},{&quot;2026-09-01&quot;:1.79},{&quot;2026-09-02&quot;:1.79},{&quot;2026-09-03&quot;:1.79},{&quot;2026-09-04&quot;:1.68},{&quot;2026-09-05&quot;:1.68},{&quot;2026-09-06&quot;:1.68},{&quot;2026-09-07&quot;:1.68},{&quot;2026-09-08&quot;:1.68},{&quot;2026-09-09&quot;:1.67},{&quot;2026-09-10&quot;:1.66},{&quot;2026-09-11&quot;:1.61}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="29085"
  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-afc 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">
            Spinerock Knoll
        </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">
            $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="Spinerock Knoll" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/6/b/6bfb3dac-94d7-4b94-9a9e-6392d5ce5bf2.jpg?1783926144" />

        <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">
            Spinerock Knoll
        </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="Spinerock Knoll" src="https://cards.scryfall.io/large/front/6/b/6bfb3dac-94d7-4b94-9a9e-6392d5ce5bf2.jpg?1783926144" />
    </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>

            </div>
          </div>

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.18},{&quot;2026-06-14&quot;:1.18},{&quot;2026-06-15&quot;:1.19},{&quot;2026-06-16&quot;:1.19},{&quot;2026-06-17&quot;:1.19},{&quot;2026-06-18&quot;:1.19},{&quot;2026-06-19&quot;:1.17},{&quot;2026-06-20&quot;:1.18},{&quot;2026-06-21&quot;:1.18},{&quot;2026-06-22&quot;:1.14},{&quot;2026-06-23&quot;:1.14},{&quot;2026-06-24&quot;:1.14},{&quot;2026-06-25&quot;:1.25},{&quot;2026-06-26&quot;:1.27},{&quot;2026-06-27&quot;:1.28},{&quot;2026-06-28&quot;:1.28},{&quot;2026-06-29&quot;:1.32},{&quot;2026-06-30&quot;:1.32},{&quot;2026-07-01&quot;:1.36},{&quot;2026-07-02&quot;:1.36},{&quot;2026-07-03&quot;:1.26},{&quot;2026-07-04&quot;:1.27},{&quot;2026-07-05&quot;:1.27},{&quot;2026-07-06&quot;:1.3},{&quot;2026-07-07&quot;:1.28},{&quot;2026-07-08&quot;:1.28},{&quot;2026-07-09&quot;:1.28},{&quot;2026-07-10&quot;:1.28},{&quot;2026-07-11&quot;:1.24},{&quot;2026-07-12&quot;:1.21},{&quot;2026-07-13&quot;:1.26},{&quot;2026-07-14&quot;:1.26},{&quot;2026-07-15&quot;:1.26},{&quot;2026-07-16&quot;:1.26},{&quot;2026-07-17&quot;:1.25},{&quot;2026-07-18&quot;:1.25},{&quot;2026-07-19&quot;:1.25},{&quot;2026-07-20&quot;:1.23},{&quot;2026-07-21&quot;:1.24},{&quot;2026-07-22&quot;:1.24},{&quot;2026-07-23&quot;:1.28},{&quot;2026-07-24&quot;:1.28},{&quot;2026-07-25&quot;:1.27},{&quot;2026-07-26&quot;:1.32},{&quot;2026-07-27&quot;:1.31},{&quot;2026-07-28&quot;:1.31},{&quot;2026-07-29&quot;:1.31},{&quot;2026-07-30&quot;:1.29},{&quot;2026-07-31&quot;:1.32},{&quot;2026-08-01&quot;:1.3},{&quot;2026-08-02&quot;:1.3},{&quot;2026-08-03&quot;:1.32},{&quot;2026-08-04&quot;:1.32},{&quot;2026-08-05&quot;:1.32},{&quot;2026-08-07&quot;:1.24},{&quot;2026-08-08&quot;:1.21},{&quot;2026-08-09&quot;:1.22},{&quot;2026-08-10&quot;:1.22},{&quot;2026-08-11&quot;:1.23},{&quot;2026-08-12&quot;:1.23},{&quot;2026-08-13&quot;:1.24},{&quot;2026-08-14&quot;:1.24},{&quot;2026-08-15&quot;:1.23},{&quot;2026-08-16&quot;:1.22},{&quot;2026-08-17&quot;:1.2},{&quot;2026-08-18&quot;:1.2},{&quot;2026-08-19&quot;:1.22},{&quot;2026-08-20&quot;:1.22},{&quot;2026-08-21&quot;:1.23},{&quot;2026-08-22&quot;:1.23},{&quot;2026-08-23&quot;:1.23},{&quot;2026-08-24&quot;:1.23},{&quot;2026-08-25&quot;:1.23},{&quot;2026-08-26&quot;:1.24},{&quot;2026-08-27&quot;:1.29},{&quot;2026-08-28&quot;:1.39},{&quot;2026-08-29&quot;:1.39},{&quot;2026-08-30&quot;:1.41},{&quot;2026-08-31&quot;:1.41},{&quot;2026-09-01&quot;:1.41},{&quot;2026-09-02&quot;:1.41},{&quot;2026-09-03&quot;:1.42},{&quot;2026-09-04&quot;:1.45},{&quot;2026-09-05&quot;:1.58},{&quot;2026-09-06&quot;:1.57},{&quot;2026-09-07&quot;:1.57},{&quot;2026-09-08&quot;:1.54},{&quot;2026-09-09&quot;:1.54},{&quot;2026-09-10&quot;:1.54},{&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="21166"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2x2 ss-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">
            Young Pyromancer
        </span>


      </div>

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

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

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

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

        <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">
            Young Pyromancer
        </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 — Human Shaman</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="Young Pyromancer" src="https://cards.scryfall.io/large/front/6/f/6f10099a-d256-44ec-a7a3-c93b27741d06.jpg?1783921765" />
    </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.11
              </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">
                $1.21
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:1.09},{&quot;2026-06-14&quot;:1.09},{&quot;2026-06-15&quot;:1.12},{&quot;2026-06-16&quot;:1.17},{&quot;2026-06-17&quot;:1.22},{&quot;2026-06-18&quot;:1.22},{&quot;2026-06-19&quot;:1.24},{&quot;2026-06-20&quot;:1.24},{&quot;2026-06-21&quot;:1.23},{&quot;2026-06-22&quot;:1.23},{&quot;2026-06-23&quot;:1.23},{&quot;2026-06-24&quot;:1.2},{&quot;2026-06-25&quot;:1.2},{&quot;2026-06-26&quot;:1.2},{&quot;2026-06-27&quot;:1.2},{&quot;2026-06-28&quot;:1.21},{&quot;2026-06-29&quot;:1.25},{&quot;2026-06-30&quot;:1.25},{&quot;2026-07-01&quot;:1.25},{&quot;2026-07-02&quot;:1.25},{&quot;2026-07-03&quot;:1.25},{&quot;2026-07-04&quot;:1.27},{&quot;2026-07-05&quot;:1.27},{&quot;2026-07-06&quot;:1.27},{&quot;2026-07-07&quot;:1.27},{&quot;2026-07-08&quot;:1.32},{&quot;2026-07-09&quot;:1.32},{&quot;2026-07-10&quot;:1.33},{&quot;2026-07-11&quot;:1.34},{&quot;2026-07-12&quot;:1.34},{&quot;2026-07-13&quot;:1.34},{&quot;2026-07-14&quot;:1.34},{&quot;2026-07-15&quot;:1.38},{&quot;2026-07-16&quot;:1.38},{&quot;2026-07-17&quot;:1.38},{&quot;2026-07-18&quot;:1.38},{&quot;2026-07-19&quot;:1.38},{&quot;2026-07-20&quot;:1.38},{&quot;2026-07-21&quot;:1.38},{&quot;2026-07-22&quot;:1.38},{&quot;2026-07-23&quot;:1.38},{&quot;2026-07-24&quot;:1.38},{&quot;2026-07-25&quot;:1.38},{&quot;2026-07-26&quot;:1.38},{&quot;2026-07-27&quot;:1.37},{&quot;2026-07-28&quot;:1.37},{&quot;2026-07-29&quot;:1.37},{&quot;2026-07-30&quot;:1.39},{&quot;2026-07-31&quot;:1.38},{&quot;2026-08-01&quot;:1.42},{&quot;2026-08-02&quot;:1.42},{&quot;2026-08-03&quot;:1.42},{&quot;2026-08-04&quot;:1.4},{&quot;2026-08-05&quot;:1.4},{&quot;2026-08-07&quot;:1.44},{&quot;2026-08-08&quot;:1.4},{&quot;2026-08-09&quot;:1.4},{&quot;2026-08-10&quot;:1.38},{&quot;2026-08-11&quot;:1.38},{&quot;2026-08-12&quot;:1.38},{&quot;2026-08-13&quot;:1.29},{&quot;2026-08-14&quot;:1.29},{&quot;2026-08-15&quot;:1.24},{&quot;2026-08-16&quot;:1.24},{&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.26},{&quot;2026-08-21&quot;:1.26},{&quot;2026-08-22&quot;:1.26},{&quot;2026-08-23&quot;:1.24},{&quot;2026-08-24&quot;:1.24},{&quot;2026-08-25&quot;:1.24},{&quot;2026-08-26&quot;:1.24},{&quot;2026-08-27&quot;:1.23},{&quot;2026-08-28&quot;:1.23},{&quot;2026-08-29&quot;:1.23},{&quot;2026-08-30&quot;:1.23},{&quot;2026-08-31&quot;:1.23},{&quot;2026-09-01&quot;:1.23},{&quot;2026-09-02&quot;:1.23},{&quot;2026-09-03&quot;:1.23},{&quot;2026-09-04&quot;:1.23},{&quot;2026-09-05&quot;:1.19},{&quot;2026-09-06&quot;:1.21},{&quot;2026-09-07&quot;:1.21},{&quot;2026-09-08&quot;:1.21},{&quot;2026-09-09&quot;:1.21},{&quot;2026-09-10&quot;:1.21},{&quot;2026-09-11&quot;:1.21}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.45},{&quot;2026-06-14&quot;:1.45},{&quot;2026-06-15&quot;:1.46},{&quot;2026-06-16&quot;:1.42},{&quot;2026-06-17&quot;:1.42},{&quot;2026-06-18&quot;:1.36},{&quot;2026-06-19&quot;:1.36},{&quot;2026-06-20&quot;:1.36},{&quot;2026-06-21&quot;:1.27},{&quot;2026-06-22&quot;:1.27},{&quot;2026-06-23&quot;:1.2},{&quot;2026-06-24&quot;:1.18},{&quot;2026-06-25&quot;:1.14},{&quot;2026-06-26&quot;:1.15},{&quot;2026-06-27&quot;:1.17},{&quot;2026-06-28&quot;:1.1},{&quot;2026-06-29&quot;:0.99},{&quot;2026-06-30&quot;:0.99},{&quot;2026-07-01&quot;:1.04},{&quot;2026-07-02&quot;:1.04},{&quot;2026-07-03&quot;:1.04},{&quot;2026-07-04&quot;:0.98},{&quot;2026-07-05&quot;:0.98},{&quot;2026-07-06&quot;:1.04},{&quot;2026-07-07&quot;:1.04},{&quot;2026-07-08&quot;:1.03},{&quot;2026-07-09&quot;:1.03},{&quot;2026-07-10&quot;:1.04},{&quot;2026-07-11&quot;:1.04},{&quot;2026-07-12&quot;:1.03},{&quot;2026-07-13&quot;:1.04},{&quot;2026-07-14&quot;:1.07},{&quot;2026-07-15&quot;:1.02},{&quot;2026-07-16&quot;:1.04},{&quot;2026-07-17&quot;:1.04},{&quot;2026-07-18&quot;:1.0},{&quot;2026-07-19&quot;:1.02},{&quot;2026-07-20&quot;:0.96},{&quot;2026-07-21&quot;:0.99},{&quot;2026-07-22&quot;:0.95},{&quot;2026-07-23&quot;:0.95},{&quot;2026-07-24&quot;:0.95},{&quot;2026-07-25&quot;:0.95},{&quot;2026-07-26&quot;:0.94},{&quot;2026-07-27&quot;:0.94},{&quot;2026-07-28&quot;:0.94},{&quot;2026-07-29&quot;:0.94},{&quot;2026-07-30&quot;:0.97},{&quot;2026-07-31&quot;:0.97},{&quot;2026-08-01&quot;:0.97},{&quot;2026-08-02&quot;:0.97},{&quot;2026-08-03&quot;:0.97},{&quot;2026-08-04&quot;:0.86},{&quot;2026-08-05&quot;:0.87},{&quot;2026-08-07&quot;:0.86},{&quot;2026-08-08&quot;:0.89},{&quot;2026-08-09&quot;:0.96},{&quot;2026-08-10&quot;:0.99},{&quot;2026-08-11&quot;:1.03},{&quot;2026-08-12&quot;:1.03},{&quot;2026-08-13&quot;:1.05},{&quot;2026-08-14&quot;:1.05},{&quot;2026-08-15&quot;:1.07},{&quot;2026-08-16&quot;:1.07},{&quot;2026-08-17&quot;:1.07},{&quot;2026-08-18&quot;:1.07},{&quot;2026-08-19&quot;:1.07},{&quot;2026-08-20&quot;:1.13},{&quot;2026-08-21&quot;:1.13},{&quot;2026-08-22&quot;:1.13},{&quot;2026-08-23&quot;:1.13},{&quot;2026-08-24&quot;:1.18},{&quot;2026-08-25&quot;:1.2},{&quot;2026-08-26&quot;:1.2},{&quot;2026-08-27&quot;:1.2},{&quot;2026-08-28&quot;:1.2},{&quot;2026-08-29&quot;:1.2},{&quot;2026-08-30&quot;:1.19},{&quot;2026-08-31&quot;:1.19},{&quot;2026-09-01&quot;:1.19},{&quot;2026-09-02&quot;:1.18},{&quot;2026-09-03&quot;:1.16},{&quot;2026-09-04&quot;:1.16},{&quot;2026-09-05&quot;:1.13},{&quot;2026-09-06&quot;:1.13},{&quot;2026-09-07&quot;:1.11},{&quot;2026-09-08&quot;:1.11},{&quot;2026-09-09&quot;:1.11},{&quot;2026-09-10&quot;:1.11},{&quot;2026-09-11&quot;:1.11}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="44740"
  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-m13 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">
            Chandra, the Firebrand
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Chandra, the Firebrand" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/e/beb039db-7367-4af1-8d85-4951f58e2732.jpg?1783940488" />

        <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">
            Chandra, the Firebrand
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Legendary Planeswalker — Chandra</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="Chandra, the Firebrand" src="https://cards.scryfall.io/large/front/b/e/beb039db-7367-4af1-8d85-4951f58e2732.jpg?1783940488" />
    </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.04
              </span>

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

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

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

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$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;2026-06-13&quot;:3.72},{&quot;2026-06-14&quot;:3.72},{&quot;2026-06-15&quot;:3.72},{&quot;2026-06-16&quot;:3.72},{&quot;2026-06-17&quot;:3.72},{&quot;2026-06-18&quot;:3.72},{&quot;2026-06-19&quot;:3.72},{&quot;2026-06-20&quot;:3.72},{&quot;2026-06-21&quot;:3.72},{&quot;2026-06-22&quot;:3.72},{&quot;2026-06-23&quot;:3.72},{&quot;2026-06-24&quot;:3.72},{&quot;2026-06-25&quot;:3.72},{&quot;2026-06-26&quot;:3.72},{&quot;2026-06-27&quot;:3.72},{&quot;2026-06-28&quot;:3.72},{&quot;2026-06-29&quot;:3.72},{&quot;2026-06-30&quot;:3.72},{&quot;2026-07-01&quot;:3.91},{&quot;2026-07-02&quot;:3.91},{&quot;2026-07-03&quot;:3.91},{&quot;2026-07-04&quot;:3.91},{&quot;2026-07-05&quot;:3.91},{&quot;2026-07-06&quot;:3.91},{&quot;2026-07-07&quot;:3.91},{&quot;2026-07-08&quot;:3.91},{&quot;2026-07-09&quot;:3.91},{&quot;2026-07-10&quot;:3.91},{&quot;2026-07-11&quot;:4.19},{&quot;2026-07-12&quot;:4.19},{&quot;2026-07-13&quot;:4.19},{&quot;2026-07-14&quot;:4.19},{&quot;2026-07-15&quot;:4.19},{&quot;2026-07-16&quot;:4.19},{&quot;2026-07-17&quot;:4.19},{&quot;2026-07-18&quot;:4.19},{&quot;2026-07-19&quot;:4.19},{&quot;2026-07-20&quot;:4.19},{&quot;2026-07-21&quot;:4.19},{&quot;2026-07-22&quot;:4.19},{&quot;2026-07-23&quot;:4.19},{&quot;2026-07-24&quot;:4.19},{&quot;2026-07-25&quot;:4.19},{&quot;2026-07-26&quot;:4.19},{&quot;2026-07-27&quot;:4.19},{&quot;2026-07-28&quot;:4.19},{&quot;2026-07-29&quot;:4.19},{&quot;2026-07-30&quot;:4.61},{&quot;2026-07-31&quot;:4.61},{&quot;2026-08-01&quot;:4.61},{&quot;2026-08-02&quot;:4.61},{&quot;2026-08-03&quot;:4.61},{&quot;2026-08-04&quot;:4.61},{&quot;2026-08-05&quot;:4.61},{&quot;2026-08-07&quot;:5.02},{&quot;2026-08-08&quot;:5.02},{&quot;2026-08-09&quot;:5.02},{&quot;2026-08-10&quot;:5.02},{&quot;2026-08-11&quot;:5.02},{&quot;2026-08-12&quot;:5.02},{&quot;2026-08-13&quot;:5.02},{&quot;2026-08-14&quot;:5.02},{&quot;2026-08-15&quot;:5.02},{&quot;2026-08-16&quot;:5.02},{&quot;2026-08-17&quot;:5.02},{&quot;2026-08-18&quot;:5.02},{&quot;2026-08-19&quot;:5.02},{&quot;2026-08-20&quot;:5.02},{&quot;2026-08-21&quot;:5.02},{&quot;2026-08-22&quot;:5.02},{&quot;2026-08-23&quot;:5.02},{&quot;2026-08-24&quot;:5.02},{&quot;2026-08-25&quot;:5.02},{&quot;2026-08-26&quot;:5.02},{&quot;2026-08-27&quot;:5.02},{&quot;2026-08-28&quot;:5.02},{&quot;2026-08-29&quot;:5.02},{&quot;2026-08-30&quot;:5.02},{&quot;2026-08-31&quot;:5.02},{&quot;2026-09-01&quot;:5.07},{&quot;2026-09-02&quot;:5.07},{&quot;2026-09-03&quot;:5.07},{&quot;2026-09-04&quot;:5.02},{&quot;2026-09-05&quot;:5.02},{&quot;2026-09-06&quot;:5.02},{&quot;2026-09-07&quot;:5.02},{&quot;2026-09-08&quot;:5.02},{&quot;2026-09-09&quot;:5.02},{&quot;2026-09-10&quot;:5.02},{&quot;2026-09-11&quot;:5.02}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.94},{&quot;2026-06-14&quot;:0.94},{&quot;2026-06-15&quot;:0.94},{&quot;2026-06-16&quot;:0.94},{&quot;2026-06-17&quot;:0.94},{&quot;2026-06-18&quot;:0.95},{&quot;2026-06-19&quot;:0.95},{&quot;2026-06-20&quot;:0.95},{&quot;2026-06-21&quot;:0.95},{&quot;2026-06-22&quot;:0.95},{&quot;2026-06-23&quot;:0.95},{&quot;2026-06-24&quot;:0.95},{&quot;2026-06-25&quot;:0.95},{&quot;2026-06-26&quot;:0.95},{&quot;2026-06-27&quot;:0.95},{&quot;2026-06-28&quot;:0.95},{&quot;2026-06-29&quot;:0.95},{&quot;2026-06-30&quot;:0.95},{&quot;2026-07-01&quot;:0.95},{&quot;2026-07-02&quot;:0.95},{&quot;2026-07-03&quot;:0.95},{&quot;2026-07-04&quot;:0.98},{&quot;2026-07-05&quot;:0.98},{&quot;2026-07-06&quot;:0.98},{&quot;2026-07-07&quot;:0.98},{&quot;2026-07-08&quot;:1.02},{&quot;2026-07-09&quot;:1.02},{&quot;2026-07-10&quot;:1.02},{&quot;2026-07-11&quot;:1.02},{&quot;2026-07-12&quot;:1.02},{&quot;2026-07-13&quot;:1.02},{&quot;2026-07-14&quot;:1.03},{&quot;2026-07-15&quot;:1.03},{&quot;2026-07-16&quot;:1.03},{&quot;2026-07-17&quot;:1.03},{&quot;2026-07-18&quot;:1.03},{&quot;2026-07-19&quot;:1.03},{&quot;2026-07-20&quot;:1.03},{&quot;2026-07-21&quot;:1.03},{&quot;2026-07-22&quot;:1.03},{&quot;2026-07-23&quot;:1.03},{&quot;2026-07-24&quot;:1.03},{&quot;2026-07-25&quot;:1.03},{&quot;2026-07-26&quot;:1.03},{&quot;2026-07-27&quot;:1.03},{&quot;2026-07-28&quot;:1.03},{&quot;2026-07-29&quot;:1.03},{&quot;2026-07-30&quot;:1.03},{&quot;2026-07-31&quot;:1.05},{&quot;2026-08-01&quot;:1.05},{&quot;2026-08-02&quot;:1.05},{&quot;2026-08-03&quot;:1.05},{&quot;2026-08-04&quot;:1.05},{&quot;2026-08-05&quot;:1.05},{&quot;2026-08-07&quot;:1.05},{&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.05},{&quot;2026-08-12&quot;:1.05},{&quot;2026-08-13&quot;:1.05},{&quot;2026-08-14&quot;:1.05},{&quot;2026-08-15&quot;:1.05},{&quot;2026-08-16&quot;:1.05},{&quot;2026-08-17&quot;:1.05},{&quot;2026-08-18&quot;:1.05},{&quot;2026-08-19&quot;:1.05},{&quot;2026-08-20&quot;:1.05},{&quot;2026-08-21&quot;:1.05},{&quot;2026-08-22&quot;:1.05},{&quot;2026-08-23&quot;:1.03},{&quot;2026-08-24&quot;:1.03},{&quot;2026-08-25&quot;:1.03},{&quot;2026-08-26&quot;:1.02},{&quot;2026-08-27&quot;:1.02},{&quot;2026-08-28&quot;:1.02},{&quot;2026-08-29&quot;:1.02},{&quot;2026-08-30&quot;:1.02},{&quot;2026-08-31&quot;:1.02},{&quot;2026-09-01&quot;:1.02},{&quot;2026-09-02&quot;:1.02},{&quot;2026-09-03&quot;:1.02},{&quot;2026-09-04&quot;:1.02},{&quot;2026-09-05&quot;:1.0},{&quot;2026-09-06&quot;:1.0},{&quot;2026-09-07&quot;:1.0},{&quot;2026-09-08&quot;:1.0},{&quot;2026-09-09&quot;:1.04},{&quot;2026-09-10&quot;:1.04},{&quot;2026-09-11&quot;:1.04}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Blasphemous Act" src="https://cards.scryfall.io/large/front/4/0/40e1ef14-cb26-486e-9b54-0b532f5b7435.jpg?1783928821" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:3.29},{&quot;2026-06-14&quot;:3.29},{&quot;2026-06-15&quot;:3.29},{&quot;2026-06-16&quot;:3.29},{&quot;2026-06-17&quot;:3.29},{&quot;2026-06-18&quot;:3.29},{&quot;2026-06-19&quot;:3.29},{&quot;2026-06-20&quot;:3.29},{&quot;2026-06-21&quot;:3.29},{&quot;2026-06-22&quot;:3.29},{&quot;2026-06-23&quot;:3.29},{&quot;2026-06-24&quot;:3.29},{&quot;2026-06-25&quot;:3.28},{&quot;2026-06-26&quot;:3.28},{&quot;2026-06-27&quot;:3.28},{&quot;2026-06-28&quot;:3.28},{&quot;2026-06-29&quot;:3.28},{&quot;2026-06-30&quot;:3.28},{&quot;2026-07-01&quot;:3.28},{&quot;2026-07-02&quot;:3.28},{&quot;2026-07-03&quot;:3.28},{&quot;2026-07-04&quot;:3.28},{&quot;2026-07-05&quot;:3.29},{&quot;2026-07-06&quot;:3.29},{&quot;2026-07-07&quot;:3.29},{&quot;2026-07-08&quot;:3.29},{&quot;2026-07-09&quot;:3.29},{&quot;2026-07-10&quot;:3.29},{&quot;2026-07-11&quot;:3.29},{&quot;2026-07-12&quot;:3.29},{&quot;2026-07-13&quot;:3.29},{&quot;2026-07-14&quot;:3.29},{&quot;2026-07-15&quot;:3.33},{&quot;2026-07-16&quot;:3.33},{&quot;2026-07-17&quot;:3.3},{&quot;2026-07-18&quot;:3.3},{&quot;2026-07-19&quot;:3.3},{&quot;2026-07-20&quot;:3.3},{&quot;2026-07-21&quot;:3.3},{&quot;2026-07-22&quot;:3.3},{&quot;2026-07-23&quot;:3.3},{&quot;2026-07-24&quot;:3.3},{&quot;2026-07-25&quot;:3.3},{&quot;2026-07-26&quot;:3.3},{&quot;2026-07-27&quot;:3.3},{&quot;2026-07-28&quot;:3.39},{&quot;2026-07-29&quot;:3.39},{&quot;2026-07-30&quot;:3.3},{&quot;2026-07-31&quot;:3.28},{&quot;2026-08-01&quot;:3.32},{&quot;2026-08-02&quot;:3.32},{&quot;2026-08-03&quot;:3.38},{&quot;2026-08-04&quot;:3.38},{&quot;2026-08-05&quot;:3.63},{&quot;2026-08-07&quot;:3.63},{&quot;2026-08-08&quot;:3.63},{&quot;2026-08-09&quot;:3.63},{&quot;2026-08-10&quot;:3.63},{&quot;2026-08-11&quot;:3.62},{&quot;2026-08-12&quot;:3.62},{&quot;2026-08-13&quot;:3.62},{&quot;2026-08-14&quot;:3.62},{&quot;2026-08-15&quot;:3.62},{&quot;2026-08-16&quot;:3.61},{&quot;2026-08-17&quot;:3.6},{&quot;2026-08-18&quot;:3.6},{&quot;2026-08-19&quot;:3.62},{&quot;2026-08-20&quot;:3.62},{&quot;2026-08-21&quot;:3.62},{&quot;2026-08-22&quot;:3.62},{&quot;2026-08-23&quot;:3.62},{&quot;2026-08-24&quot;:3.41},{&quot;2026-08-25&quot;:3.4},{&quot;2026-08-26&quot;:3.4},{&quot;2026-08-27&quot;:3.4},{&quot;2026-08-28&quot;:3.4},{&quot;2026-08-29&quot;:3.4},{&quot;2026-08-30&quot;:3.4},{&quot;2026-08-31&quot;:3.4},{&quot;2026-09-01&quot;:3.4},{&quot;2026-09-02&quot;:3.4},{&quot;2026-09-03&quot;:3.4},{&quot;2026-09-04&quot;:3.4},{&quot;2026-09-05&quot;:3.4},{&quot;2026-09-06&quot;:3.4},{&quot;2026-09-07&quot;:3.4},{&quot;2026-09-08&quot;:3.4},{&quot;2026-09-09&quot;:3.4},{&quot;2026-09-10&quot;:3.4},{&quot;2026-09-11&quot;:3.4}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.13},{&quot;2026-06-14&quot;:1.09},{&quot;2026-06-15&quot;:1.14},{&quot;2026-06-16&quot;:1.13},{&quot;2026-06-17&quot;:1.12},{&quot;2026-06-18&quot;:1.12},{&quot;2026-06-19&quot;:1.12},{&quot;2026-06-20&quot;:1.08},{&quot;2026-06-21&quot;:1.08},{&quot;2026-06-22&quot;:1.07},{&quot;2026-06-23&quot;:1.07},{&quot;2026-06-24&quot;:1.06},{&quot;2026-06-25&quot;:1.07},{&quot;2026-06-26&quot;:1.07},{&quot;2026-06-27&quot;:1.06},{&quot;2026-06-28&quot;:1.06},{&quot;2026-06-29&quot;:1.06},{&quot;2026-06-30&quot;:1.06},{&quot;2026-07-01&quot;:1.07},{&quot;2026-07-02&quot;:1.07},{&quot;2026-07-03&quot;:1.08},{&quot;2026-07-04&quot;:1.06},{&quot;2026-07-05&quot;:1.06},{&quot;2026-07-06&quot;:1.04},{&quot;2026-07-07&quot;:1.07},{&quot;2026-07-08&quot;:1.07},{&quot;2026-07-09&quot;:1.07},{&quot;2026-07-10&quot;:1.07},{&quot;2026-07-11&quot;:1.07},{&quot;2026-07-12&quot;:1.07},{&quot;2026-07-13&quot;:1.12},{&quot;2026-07-14&quot;:1.12},{&quot;2026-07-15&quot;:1.12},{&quot;2026-07-16&quot;:1.12},{&quot;2026-07-17&quot;:1.11},{&quot;2026-07-18&quot;:1.11},{&quot;2026-07-19&quot;:1.09},{&quot;2026-07-20&quot;:1.08},{&quot;2026-07-21&quot;:1.08},{&quot;2026-07-22&quot;:1.07},{&quot;2026-07-23&quot;:1.08},{&quot;2026-07-24&quot;:1.08},{&quot;2026-07-25&quot;:1.06},{&quot;2026-07-26&quot;:1.08},{&quot;2026-07-27&quot;:1.08},{&quot;2026-07-28&quot;:1.06},{&quot;2026-07-29&quot;:1.06},{&quot;2026-07-30&quot;:1.09},{&quot;2026-07-31&quot;:1.04},{&quot;2026-08-01&quot;:1.04},{&quot;2026-08-02&quot;:1.04},{&quot;2026-08-03&quot;:1.0},{&quot;2026-08-04&quot;:1.0},{&quot;2026-08-05&quot;:1.02},{&quot;2026-08-07&quot;:1.04},{&quot;2026-08-08&quot;:1.02},{&quot;2026-08-09&quot;:1.03},{&quot;2026-08-10&quot;:1.03},{&quot;2026-08-11&quot;:1.02},{&quot;2026-08-12&quot;:1.03},{&quot;2026-08-13&quot;:1.03},{&quot;2026-08-14&quot;:1.03},{&quot;2026-08-15&quot;:1.03},{&quot;2026-08-16&quot;:1.01},{&quot;2026-08-17&quot;:1.0},{&quot;2026-08-18&quot;:1.0},{&quot;2026-08-19&quot;:1.03},{&quot;2026-08-20&quot;:1.04},{&quot;2026-08-21&quot;:1.06},{&quot;2026-08-22&quot;:1.08},{&quot;2026-08-23&quot;:1.06},{&quot;2026-08-24&quot;:1.06},{&quot;2026-08-25&quot;:1.07},{&quot;2026-08-26&quot;:1.04},{&quot;2026-08-27&quot;:1.03},{&quot;2026-08-28&quot;:1.03},{&quot;2026-08-29&quot;:1.03},{&quot;2026-08-30&quot;:1.03},{&quot;2026-08-31&quot;:1.03},{&quot;2026-09-01&quot;:1.06},{&quot;2026-09-02&quot;:1.06},{&quot;2026-09-03&quot;:1.0},{&quot;2026-09-04&quot;:0.95},{&quot;2026-09-05&quot;:0.96},{&quot;2026-09-06&quot;:0.96},{&quot;2026-09-07&quot;:0.97},{&quot;2026-09-08&quot;:0.99},{&quot;2026-09-09&quot;:0.99},{&quot;2026-09-10&quot;:0.98},{&quot;2026-09-11&quot;:1.02}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="57958"
  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-one 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">
            Koth, Fire of Resistance
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Legendary Planeswalker — Koth
      </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.96
          </span>
        </div>
      </div>
    </div>

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Koth, Fire of Resistance" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/9/29fc1c96-849e-43a8-9e7f-3c3af6861155.jpg?1783917949" />

        <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">
            Koth, Fire of Resistance
        </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 Planeswalker — Koth</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="Koth, Fire of Resistance" src="https://cards.scryfall.io/large/front/2/9/29fc1c96-849e-43a8-9e7f-3c3af6861155.jpg?1783917949" />
    </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.49
              </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.96
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:0.96},{&quot;2026-06-14&quot;:0.96},{&quot;2026-06-15&quot;:0.96},{&quot;2026-06-16&quot;:0.96},{&quot;2026-06-17&quot;:0.96},{&quot;2026-06-18&quot;:0.96},{&quot;2026-06-19&quot;:0.94},{&quot;2026-06-20&quot;:0.94},{&quot;2026-06-21&quot;:0.94},{&quot;2026-06-22&quot;:0.96},{&quot;2026-06-23&quot;:0.97},{&quot;2026-06-24&quot;:0.98},{&quot;2026-06-25&quot;:0.98},{&quot;2026-06-26&quot;:1.01},{&quot;2026-06-27&quot;:1.01},{&quot;2026-06-28&quot;:1.02},{&quot;2026-06-29&quot;:1.02},{&quot;2026-06-30&quot;:1.02},{&quot;2026-07-01&quot;:1.02},{&quot;2026-07-02&quot;:1.02},{&quot;2026-07-03&quot;:1.02},{&quot;2026-07-04&quot;:1.02},{&quot;2026-07-05&quot;:1.02},{&quot;2026-07-06&quot;:1.02},{&quot;2026-07-07&quot;:1.03},{&quot;2026-07-08&quot;:1.03},{&quot;2026-07-09&quot;:1.03},{&quot;2026-07-10&quot;:1.04},{&quot;2026-07-11&quot;:1.06},{&quot;2026-07-12&quot;:1.06},{&quot;2026-07-13&quot;:1.06},{&quot;2026-07-14&quot;:1.06},{&quot;2026-07-15&quot;:1.07},{&quot;2026-07-16&quot;:1.07},{&quot;2026-07-17&quot;:1.06},{&quot;2026-07-18&quot;:1.06},{&quot;2026-07-19&quot;:1.06},{&quot;2026-07-20&quot;:1.04},{&quot;2026-07-21&quot;:1.06},{&quot;2026-07-22&quot;:1.06},{&quot;2026-07-23&quot;:1.06},{&quot;2026-07-24&quot;:1.06},{&quot;2026-07-25&quot;:1.06},{&quot;2026-07-26&quot;:1.07},{&quot;2026-07-27&quot;:1.07},{&quot;2026-07-28&quot;:1.07},{&quot;2026-07-29&quot;:1.06},{&quot;2026-07-30&quot;:1.06},{&quot;2026-07-31&quot;:1.07},{&quot;2026-08-01&quot;:1.07},{&quot;2026-08-02&quot;:1.07},{&quot;2026-08-03&quot;:1.07},{&quot;2026-08-04&quot;:1.07},{&quot;2026-08-05&quot;:1.07},{&quot;2026-08-07&quot;:1.07},{&quot;2026-08-08&quot;:1.07},{&quot;2026-08-09&quot;:1.07},{&quot;2026-08-10&quot;:1.07},{&quot;2026-08-11&quot;:1.07},{&quot;2026-08-12&quot;:1.07},{&quot;2026-08-13&quot;:1.07},{&quot;2026-08-14&quot;:1.07},{&quot;2026-08-15&quot;:1.07},{&quot;2026-08-16&quot;:1.07},{&quot;2026-08-17&quot;:1.07},{&quot;2026-08-18&quot;:1.08},{&quot;2026-08-19&quot;:1.08},{&quot;2026-08-20&quot;:1.08},{&quot;2026-08-21&quot;:1.08},{&quot;2026-08-22&quot;:1.08},{&quot;2026-08-23&quot;:1.08},{&quot;2026-08-24&quot;:1.08},{&quot;2026-08-25&quot;:1.08},{&quot;2026-08-26&quot;:1.05},{&quot;2026-08-27&quot;:1.05},{&quot;2026-08-28&quot;:1.05},{&quot;2026-08-29&quot;:1.05},{&quot;2026-08-30&quot;:1.01},{&quot;2026-08-31&quot;:1.01},{&quot;2026-09-01&quot;:1.05},{&quot;2026-09-02&quot;:1.05},{&quot;2026-09-03&quot;:1.01},{&quot;2026-09-04&quot;:0.98},{&quot;2026-09-05&quot;:0.99},{&quot;2026-09-06&quot;:0.99},{&quot;2026-09-07&quot;:0.99},{&quot;2026-09-08&quot;:0.97},{&quot;2026-09-09&quot;:0.97},{&quot;2026-09-10&quot;:0.97},{&quot;2026-09-11&quot;:0.96}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.56},{&quot;2026-06-14&quot;:0.54},{&quot;2026-06-15&quot;:0.54},{&quot;2026-06-16&quot;:0.54},{&quot;2026-06-17&quot;:0.54},{&quot;2026-06-18&quot;:0.54},{&quot;2026-06-19&quot;:0.55},{&quot;2026-06-20&quot;:0.55},{&quot;2026-06-21&quot;:0.56},{&quot;2026-06-22&quot;:0.55},{&quot;2026-06-23&quot;:0.55},{&quot;2026-06-24&quot;:0.55},{&quot;2026-06-25&quot;:0.56},{&quot;2026-06-26&quot;:0.56},{&quot;2026-06-27&quot;:0.56},{&quot;2026-06-28&quot;:0.56},{&quot;2026-06-29&quot;:0.56},{&quot;2026-06-30&quot;:0.55},{&quot;2026-07-01&quot;:0.56},{&quot;2026-07-02&quot;:0.56},{&quot;2026-07-03&quot;:0.56},{&quot;2026-07-04&quot;:0.59},{&quot;2026-07-05&quot;:0.59},{&quot;2026-07-06&quot;:0.58},{&quot;2026-07-07&quot;:0.58},{&quot;2026-07-08&quot;:0.58},{&quot;2026-07-09&quot;:0.58},{&quot;2026-07-10&quot;:0.62},{&quot;2026-07-11&quot;:0.62},{&quot;2026-07-12&quot;:0.62},{&quot;2026-07-13&quot;:0.62},{&quot;2026-07-14&quot;:0.58},{&quot;2026-07-15&quot;:0.58},{&quot;2026-07-16&quot;:0.58},{&quot;2026-07-17&quot;:0.58},{&quot;2026-07-18&quot;:0.58},{&quot;2026-07-19&quot;:0.58},{&quot;2026-07-20&quot;:0.57},{&quot;2026-07-21&quot;:0.57},{&quot;2026-07-22&quot;:0.57},{&quot;2026-07-23&quot;:0.57},{&quot;2026-07-24&quot;:0.56},{&quot;2026-07-25&quot;:0.56},{&quot;2026-07-26&quot;:0.56},{&quot;2026-07-27&quot;:0.55},{&quot;2026-07-28&quot;:0.56},{&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.56},{&quot;2026-08-03&quot;:0.55},{&quot;2026-08-04&quot;:0.54},{&quot;2026-08-05&quot;:0.54},{&quot;2026-08-07&quot;:0.53},{&quot;2026-08-08&quot;:0.52},{&quot;2026-08-09&quot;:0.52},{&quot;2026-08-10&quot;:0.52},{&quot;2026-08-11&quot;:0.53},{&quot;2026-08-12&quot;:0.53},{&quot;2026-08-13&quot;:0.53},{&quot;2026-08-14&quot;:0.53},{&quot;2026-08-15&quot;:0.53},{&quot;2026-08-16&quot;:0.53},{&quot;2026-08-17&quot;:0.53},{&quot;2026-08-18&quot;:0.53},{&quot;2026-08-19&quot;:0.53},{&quot;2026-08-20&quot;:0.52},{&quot;2026-08-21&quot;:0.52},{&quot;2026-08-22&quot;:0.52},{&quot;2026-08-23&quot;:0.52},{&quot;2026-08-24&quot;:0.52},{&quot;2026-08-25&quot;:0.53},{&quot;2026-08-26&quot;:0.53},{&quot;2026-08-27&quot;:0.53},{&quot;2026-08-28&quot;:0.53},{&quot;2026-08-29&quot;:0.53},{&quot;2026-08-30&quot;:0.51},{&quot;2026-08-31&quot;:0.51},{&quot;2026-09-01&quot;:0.51},{&quot;2026-09-02&quot;:0.51},{&quot;2026-09-03&quot;:0.51},{&quot;2026-09-04&quot;:0.51},{&quot;2026-09-05&quot;:0.51},{&quot;2026-09-06&quot;:0.51},{&quot;2026-09-07&quot;:0.51},{&quot;2026-09-08&quot;:0.5},{&quot;2026-09-09&quot;:0.5},{&quot;2026-09-10&quot;:0.49},{&quot;2026-09-11&quot;:0.49}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Fiery Inscription" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/c/8c321159-43e5-40fc-9f0c-4ecc4f6cfd20.jpg?1783916287" />

        <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">
            Fiery Inscription
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-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="Fiery Inscription" src="https://cards.scryfall.io/large/front/8/c/8c321159-43e5-40fc-9f0c-4ecc4f6cfd20.jpg?1783916287" />
    </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.62
              </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.96
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-08&quot;:1.09},{&quot;2026-06-10&quot;:1.1},{&quot;2026-06-11&quot;:1.1},{&quot;2026-06-12&quot;:1.07},{&quot;2026-06-13&quot;:1.06},{&quot;2026-06-14&quot;:1.06},{&quot;2026-06-15&quot;:1.08},{&quot;2026-06-16&quot;:1.09},{&quot;2026-06-17&quot;:1.07},{&quot;2026-06-18&quot;:1.07},{&quot;2026-06-19&quot;:1.12},{&quot;2026-06-20&quot;:1.12},{&quot;2026-06-21&quot;:1.12},{&quot;2026-06-22&quot;:1.15},{&quot;2026-06-24&quot;:1.12},{&quot;2026-06-25&quot;:1.11},{&quot;2026-06-26&quot;:1.11},{&quot;2026-06-27&quot;:1.11},{&quot;2026-06-28&quot;:1.11},{&quot;2026-06-29&quot;:1.12},{&quot;2026-06-30&quot;:1.12},{&quot;2026-07-01&quot;:1.12},{&quot;2026-07-02&quot;:1.13},{&quot;2026-07-03&quot;:1.13},{&quot;2026-07-04&quot;:1.13},{&quot;2026-07-05&quot;:1.13},{&quot;2026-07-06&quot;:1.13},{&quot;2026-07-07&quot;:1.11},{&quot;2026-07-08&quot;:1.07},{&quot;2026-07-09&quot;:1.07},{&quot;2026-07-10&quot;:1.07},{&quot;2026-07-11&quot;:1.07},{&quot;2026-07-12&quot;:1.04},{&quot;2026-07-13&quot;:1.03},{&quot;2026-07-14&quot;:1.05},{&quot;2026-07-15&quot;:1.04},{&quot;2026-07-16&quot;:1.04},{&quot;2026-07-17&quot;:1.04},{&quot;2026-07-18&quot;:1.04},{&quot;2026-07-19&quot;:1.04},{&quot;2026-07-20&quot;:1.04},{&quot;2026-07-21&quot;:1.04},{&quot;2026-07-23&quot;:1.05},{&quot;2026-07-25&quot;:1.02},{&quot;2026-07-26&quot;:1.03},{&quot;2026-07-27&quot;:1.0},{&quot;2026-07-29&quot;:1.0},{&quot;2026-07-30&quot;:0.98},{&quot;2026-07-31&quot;:0.97},{&quot;2026-08-01&quot;:0.97},{&quot;2026-08-02&quot;:0.94},{&quot;2026-08-03&quot;:0.94},{&quot;2026-08-04&quot;:0.94},{&quot;2026-08-05&quot;:0.94},{&quot;2026-08-07&quot;:0.94},{&quot;2026-08-08&quot;:0.94},{&quot;2026-08-09&quot;:0.94},{&quot;2026-08-10&quot;:0.92},{&quot;2026-08-11&quot;:0.89},{&quot;2026-08-12&quot;:0.89},{&quot;2026-08-13&quot;:0.89},{&quot;2026-08-14&quot;:0.88},{&quot;2026-08-15&quot;:0.9},{&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.88},{&quot;2026-08-22&quot;:0.91},{&quot;2026-08-23&quot;:0.89},{&quot;2026-08-24&quot;:1.04},{&quot;2026-08-25&quot;:1.04},{&quot;2026-08-26&quot;:1.06},{&quot;2026-08-27&quot;:1.08},{&quot;2026-08-28&quot;:1.09},{&quot;2026-08-29&quot;:1.09},{&quot;2026-08-30&quot;:1.11},{&quot;2026-08-31&quot;:1.11},{&quot;2026-09-01&quot;:1.11},{&quot;2026-09-02&quot;:1.12},{&quot;2026-09-03&quot;:1.12},{&quot;2026-09-04&quot;:1.11},{&quot;2026-09-05&quot;:1.14},{&quot;2026-09-06&quot;:0.99},{&quot;2026-09-07&quot;:0.99},{&quot;2026-09-08&quot;:0.99},{&quot;2026-09-09&quot;:0.98},{&quot;2026-09-10&quot;:0.96},{&quot;2026-09-11&quot;:0.96}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:0.4},{&quot;2026-06-10&quot;:0.44},{&quot;2026-06-11&quot;:0.44},{&quot;2026-06-12&quot;:0.45},{&quot;2026-06-13&quot;:0.43},{&quot;2026-06-14&quot;:0.4},{&quot;2026-06-15&quot;:0.42},{&quot;2026-06-16&quot;:0.42},{&quot;2026-06-17&quot;:0.41},{&quot;2026-06-18&quot;:0.41},{&quot;2026-06-19&quot;:0.42},{&quot;2026-06-20&quot;:0.45},{&quot;2026-06-21&quot;:0.43},{&quot;2026-06-22&quot;:0.42},{&quot;2026-06-24&quot;:0.39},{&quot;2026-06-25&quot;:0.39},{&quot;2026-06-26&quot;:0.4},{&quot;2026-06-27&quot;:0.4},{&quot;2026-06-28&quot;:0.39},{&quot;2026-06-29&quot;:0.4},{&quot;2026-06-30&quot;:0.45},{&quot;2026-07-01&quot;:0.43},{&quot;2026-07-02&quot;:0.44},{&quot;2026-07-03&quot;:0.49},{&quot;2026-07-04&quot;:0.49},{&quot;2026-07-05&quot;:0.38},{&quot;2026-07-06&quot;:0.37},{&quot;2026-07-07&quot;:0.4},{&quot;2026-07-08&quot;:0.43},{&quot;2026-07-09&quot;:0.46},{&quot;2026-07-10&quot;:0.46},{&quot;2026-07-11&quot;:0.48},{&quot;2026-07-12&quot;:0.46},{&quot;2026-07-13&quot;:0.48},{&quot;2026-07-14&quot;:0.43},{&quot;2026-07-15&quot;:0.4},{&quot;2026-07-16&quot;:0.4},{&quot;2026-07-17&quot;:0.38},{&quot;2026-07-18&quot;:0.38},{&quot;2026-07-19&quot;:0.39},{&quot;2026-07-20&quot;:0.42},{&quot;2026-07-21&quot;:0.42},{&quot;2026-07-23&quot;:0.41},{&quot;2026-07-25&quot;:0.41},{&quot;2026-07-26&quot;:0.39},{&quot;2026-07-27&quot;:0.43},{&quot;2026-07-29&quot;:0.39},{&quot;2026-07-30&quot;:0.4},{&quot;2026-07-31&quot;:0.45},{&quot;2026-08-01&quot;:0.46},{&quot;2026-08-02&quot;:0.53},{&quot;2026-08-03&quot;:0.55},{&quot;2026-08-04&quot;:0.53},{&quot;2026-08-05&quot;:0.44},{&quot;2026-08-07&quot;:0.51},{&quot;2026-08-08&quot;:0.46},{&quot;2026-08-09&quot;:0.47},{&quot;2026-08-10&quot;:0.52},{&quot;2026-08-11&quot;:0.53},{&quot;2026-08-12&quot;:0.51},{&quot;2026-08-13&quot;:0.57},{&quot;2026-08-14&quot;:0.57},{&quot;2026-08-15&quot;:0.5},{&quot;2026-08-16&quot;:0.46},{&quot;2026-08-17&quot;:0.53},{&quot;2026-08-18&quot;:0.6},{&quot;2026-08-19&quot;:0.58},{&quot;2026-08-20&quot;:0.58},{&quot;2026-08-21&quot;:0.69},{&quot;2026-08-22&quot;:0.74},{&quot;2026-08-23&quot;:0.72},{&quot;2026-08-24&quot;:0.76},{&quot;2026-08-25&quot;:0.76},{&quot;2026-08-26&quot;:0.6},{&quot;2026-08-27&quot;:0.57},{&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.64},{&quot;2026-09-01&quot;:0.64},{&quot;2026-09-02&quot;:0.61},{&quot;2026-09-03&quot;:0.62},{&quot;2026-09-04&quot;:0.65},{&quot;2026-09-05&quot;:0.57},{&quot;2026-09-06&quot;:0.53},{&quot;2026-09-07&quot;:0.61},{&quot;2026-09-08&quot;:0.57},{&quot;2026-09-09&quot;:0.62},{&quot;2026-09-10&quot;:0.62},{&quot;2026-09-11&quot;:0.62}]}"
        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="74464"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-ltr ss-common ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            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.93
          </span>
        </div>
      </div>
    </div>

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

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

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Mountain" src="https://cards.scryfall.io/large/front/a/f/af1b83d9-078b-44dc-a118-4659201f4854.jpg?1783916224" />
    </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.93
              </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">
                $1.13
              </span>

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.35</span>
              <span class="text-xs text-grey-text">Credit: $0.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;2026-06-13&quot;:0.62},{&quot;2026-06-14&quot;:0.62},{&quot;2026-06-15&quot;:0.66},{&quot;2026-06-16&quot;:0.7},{&quot;2026-06-17&quot;:0.66},{&quot;2026-06-18&quot;:0.64},{&quot;2026-06-19&quot;:0.63},{&quot;2026-06-20&quot;:0.63},{&quot;2026-06-21&quot;:0.63},{&quot;2026-06-22&quot;:0.63},{&quot;2026-06-23&quot;:0.62},{&quot;2026-06-24&quot;:0.62},{&quot;2026-06-25&quot;:0.62},{&quot;2026-06-26&quot;:0.62},{&quot;2026-06-27&quot;:0.6},{&quot;2026-06-28&quot;:0.62},{&quot;2026-06-29&quot;:0.61},{&quot;2026-06-30&quot;:0.55},{&quot;2026-07-01&quot;:0.51},{&quot;2026-07-02&quot;:0.52},{&quot;2026-07-03&quot;:0.56},{&quot;2026-07-04&quot;:0.58},{&quot;2026-07-05&quot;:0.56},{&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.56},{&quot;2026-07-10&quot;:0.56},{&quot;2026-07-11&quot;:0.55},{&quot;2026-07-12&quot;:0.56},{&quot;2026-07-13&quot;:0.57},{&quot;2026-07-14&quot;:0.61},{&quot;2026-07-15&quot;:0.61},{&quot;2026-07-16&quot;:0.61},{&quot;2026-07-17&quot;:0.62},{&quot;2026-07-18&quot;:0.62},{&quot;2026-07-19&quot;:0.67},{&quot;2026-07-20&quot;:0.65},{&quot;2026-07-21&quot;:0.63},{&quot;2026-07-22&quot;:0.65},{&quot;2026-07-23&quot;:0.66},{&quot;2026-07-24&quot;:0.66},{&quot;2026-07-25&quot;:0.71},{&quot;2026-07-26&quot;:0.7},{&quot;2026-07-27&quot;:0.7},{&quot;2026-07-28&quot;:0.68},{&quot;2026-07-29&quot;:0.67},{&quot;2026-07-30&quot;:0.66},{&quot;2026-07-31&quot;:0.62},{&quot;2026-08-01&quot;:0.62},{&quot;2026-08-02&quot;:0.64},{&quot;2026-08-03&quot;:0.68},{&quot;2026-08-04&quot;:0.67},{&quot;2026-08-05&quot;:0.68},{&quot;2026-08-07&quot;:0.75},{&quot;2026-08-08&quot;:0.8},{&quot;2026-08-09&quot;:0.83},{&quot;2026-08-10&quot;:0.84},{&quot;2026-08-11&quot;:0.78},{&quot;2026-08-12&quot;:0.79},{&quot;2026-08-13&quot;:0.77},{&quot;2026-08-14&quot;:0.78},{&quot;2026-08-15&quot;:0.77},{&quot;2026-08-16&quot;:0.81},{&quot;2026-08-17&quot;:0.83},{&quot;2026-08-18&quot;:0.85},{&quot;2026-08-19&quot;:0.96},{&quot;2026-08-20&quot;:0.93},{&quot;2026-08-21&quot;:0.94},{&quot;2026-08-22&quot;:1.1},{&quot;2026-08-23&quot;:1.19},{&quot;2026-08-24&quot;:1.17},{&quot;2026-08-25&quot;:1.14},{&quot;2026-08-26&quot;:1.07},{&quot;2026-08-27&quot;:1.09},{&quot;2026-08-28&quot;:1.17},{&quot;2026-08-29&quot;:1.17},{&quot;2026-08-30&quot;:1.18},{&quot;2026-08-31&quot;:1.15},{&quot;2026-09-01&quot;:1.11},{&quot;2026-09-02&quot;:1.18},{&quot;2026-09-03&quot;:1.27},{&quot;2026-09-04&quot;:1.24},{&quot;2026-09-05&quot;:1.22},{&quot;2026-09-06&quot;:1.23},{&quot;2026-09-07&quot;:1.2},{&quot;2026-09-08&quot;:1.17},{&quot;2026-09-09&quot;:1.14},{&quot;2026-09-10&quot;:1.13},{&quot;2026-09-11&quot;:1.13}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.53},{&quot;2026-06-14&quot;:0.54},{&quot;2026-06-15&quot;:0.51},{&quot;2026-06-16&quot;:0.49},{&quot;2026-06-17&quot;:0.5},{&quot;2026-06-18&quot;:0.51},{&quot;2026-06-19&quot;:0.51},{&quot;2026-06-20&quot;:0.48},{&quot;2026-06-21&quot;:0.48},{&quot;2026-06-22&quot;:0.48},{&quot;2026-06-23&quot;:0.47},{&quot;2026-06-24&quot;:0.48},{&quot;2026-06-25&quot;:0.5},{&quot;2026-06-26&quot;:0.5},{&quot;2026-06-27&quot;:0.5},{&quot;2026-06-28&quot;:0.51},{&quot;2026-06-29&quot;:0.52},{&quot;2026-06-30&quot;:0.51},{&quot;2026-07-01&quot;:0.55},{&quot;2026-07-02&quot;:0.54},{&quot;2026-07-03&quot;:0.56},{&quot;2026-07-04&quot;:0.55},{&quot;2026-07-05&quot;:0.55},{&quot;2026-07-06&quot;:0.54},{&quot;2026-07-07&quot;:0.54},{&quot;2026-07-08&quot;:0.53},{&quot;2026-07-09&quot;:0.54},{&quot;2026-07-10&quot;:0.53},{&quot;2026-07-11&quot;:0.53},{&quot;2026-07-12&quot;:0.54},{&quot;2026-07-13&quot;:0.55},{&quot;2026-07-14&quot;:0.56},{&quot;2026-07-15&quot;:0.57},{&quot;2026-07-16&quot;:0.55},{&quot;2026-07-17&quot;:0.54},{&quot;2026-07-18&quot;:0.53},{&quot;2026-07-19&quot;:0.54},{&quot;2026-07-20&quot;:0.54},{&quot;2026-07-21&quot;:0.52},{&quot;2026-07-22&quot;:0.51},{&quot;2026-07-23&quot;:0.54},{&quot;2026-07-24&quot;:0.52},{&quot;2026-07-25&quot;:0.51},{&quot;2026-07-26&quot;:0.5},{&quot;2026-07-27&quot;:0.49},{&quot;2026-07-28&quot;:0.56},{&quot;2026-07-29&quot;:0.61},{&quot;2026-07-30&quot;:0.6},{&quot;2026-07-31&quot;:0.57},{&quot;2026-08-01&quot;:0.57},{&quot;2026-08-02&quot;:0.57},{&quot;2026-08-03&quot;:0.52},{&quot;2026-08-04&quot;:0.44},{&quot;2026-08-05&quot;:0.45},{&quot;2026-08-07&quot;:0.5},{&quot;2026-08-08&quot;:0.51},{&quot;2026-08-09&quot;:0.51},{&quot;2026-08-10&quot;:0.54},{&quot;2026-08-11&quot;:0.57},{&quot;2026-08-12&quot;:0.62},{&quot;2026-08-13&quot;:0.75},{&quot;2026-08-14&quot;:0.77},{&quot;2026-08-15&quot;:0.77},{&quot;2026-08-16&quot;:0.76},{&quot;2026-08-17&quot;:0.73},{&quot;2026-08-18&quot;:0.68},{&quot;2026-08-19&quot;:0.65},{&quot;2026-08-20&quot;:0.62},{&quot;2026-08-21&quot;:0.58},{&quot;2026-08-22&quot;:0.59},{&quot;2026-08-23&quot;:0.65},{&quot;2026-08-24&quot;:0.73},{&quot;2026-08-25&quot;:0.8},{&quot;2026-08-26&quot;:0.84},{&quot;2026-08-27&quot;:0.8},{&quot;2026-08-28&quot;:0.85},{&quot;2026-08-29&quot;:0.85},{&quot;2026-08-30&quot;:0.86},{&quot;2026-08-31&quot;:0.85},{&quot;2026-09-01&quot;:0.82},{&quot;2026-09-02&quot;:0.84},{&quot;2026-09-03&quot;:0.86},{&quot;2026-09-04&quot;:0.79},{&quot;2026-09-05&quot;:0.78},{&quot;2026-09-06&quot;:0.91},{&quot;2026-09-07&quot;:0.99},{&quot;2026-09-08&quot;:0.98},{&quot;2026-09-09&quot;:0.95},{&quot;2026-09-10&quot;:0.93},{&quot;2026-09-11&quot;:0.93}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Mountain" src="https://cards.scryfall.io/large/front/b/1/b1902b98-7579-4b7a-8cb8-9bd0e0da5f67.jpg?1783916224" />
    </div>

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

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

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

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.71
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  6%
                </span>
            </div>
          </div>

          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Foil</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $0.75
              </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 class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Foil</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;2026-06-11&quot;:0.64},{&quot;2026-06-12&quot;:0.63},{&quot;2026-06-13&quot;:0.64},{&quot;2026-06-14&quot;:0.63},{&quot;2026-06-15&quot;:0.63},{&quot;2026-06-16&quot;:0.64},{&quot;2026-06-17&quot;:0.62},{&quot;2026-06-18&quot;:0.61},{&quot;2026-06-19&quot;:0.59},{&quot;2026-06-20&quot;:0.62},{&quot;2026-06-21&quot;:0.63},{&quot;2026-06-22&quot;:0.63},{&quot;2026-06-23&quot;:0.63},{&quot;2026-06-24&quot;:0.52},{&quot;2026-06-25&quot;:0.52},{&quot;2026-06-26&quot;:0.52},{&quot;2026-06-27&quot;:0.53},{&quot;2026-06-28&quot;:0.53},{&quot;2026-06-29&quot;:0.53},{&quot;2026-06-30&quot;:0.53},{&quot;2026-07-01&quot;:0.52},{&quot;2026-07-02&quot;:0.52},{&quot;2026-07-03&quot;:0.52},{&quot;2026-07-04&quot;:0.52},{&quot;2026-07-05&quot;:0.48},{&quot;2026-07-06&quot;:0.48},{&quot;2026-07-07&quot;:0.47},{&quot;2026-07-08&quot;:0.47},{&quot;2026-07-09&quot;:0.47},{&quot;2026-07-10&quot;:0.47},{&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.5},{&quot;2026-07-15&quot;:0.51},{&quot;2026-07-16&quot;:0.51},{&quot;2026-07-17&quot;:0.54},{&quot;2026-07-18&quot;:0.53},{&quot;2026-07-19&quot;:0.53},{&quot;2026-07-20&quot;:0.55},{&quot;2026-07-21&quot;:0.55},{&quot;2026-07-23&quot;:0.5},{&quot;2026-07-25&quot;:0.51},{&quot;2026-07-26&quot;:0.51},{&quot;2026-07-27&quot;:0.51},{&quot;2026-07-28&quot;:0.51},{&quot;2026-07-29&quot;:0.51},{&quot;2026-07-30&quot;:0.56},{&quot;2026-07-31&quot;:0.56},{&quot;2026-08-01&quot;:0.55},{&quot;2026-08-02&quot;:0.56},{&quot;2026-08-03&quot;:0.55},{&quot;2026-08-04&quot;:0.55},{&quot;2026-08-05&quot;:0.56},{&quot;2026-08-07&quot;:0.57},{&quot;2026-08-08&quot;:0.57},{&quot;2026-08-09&quot;:0.58},{&quot;2026-08-10&quot;:0.59},{&quot;2026-08-11&quot;:0.58},{&quot;2026-08-12&quot;:0.58},{&quot;2026-08-13&quot;:0.53},{&quot;2026-08-14&quot;:0.54},{&quot;2026-08-15&quot;:0.57},{&quot;2026-08-16&quot;:0.66},{&quot;2026-08-17&quot;:0.75},{&quot;2026-08-18&quot;:0.73},{&quot;2026-08-19&quot;:0.82},{&quot;2026-08-20&quot;:0.82},{&quot;2026-08-21&quot;:0.84},{&quot;2026-08-22&quot;:0.85},{&quot;2026-08-23&quot;:0.87},{&quot;2026-08-24&quot;:0.86},{&quot;2026-08-25&quot;:0.83},{&quot;2026-08-26&quot;:0.74},{&quot;2026-08-27&quot;:0.74},{&quot;2026-08-28&quot;:0.75},{&quot;2026-08-29&quot;:0.75},{&quot;2026-08-30&quot;:0.75},{&quot;2026-08-31&quot;:0.77},{&quot;2026-09-01&quot;:0.76},{&quot;2026-09-02&quot;:0.75},{&quot;2026-09-03&quot;:0.77},{&quot;2026-09-04&quot;:0.79},{&quot;2026-09-05&quot;:0.75},{&quot;2026-09-06&quot;:0.72},{&quot;2026-09-07&quot;:0.73},{&quot;2026-09-08&quot;:0.73},{&quot;2026-09-09&quot;:0.77},{&quot;2026-09-10&quot;:0.74},{&quot;2026-09-11&quot;:0.75}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:0.43},{&quot;2026-06-12&quot;:0.43},{&quot;2026-06-13&quot;:0.44},{&quot;2026-06-14&quot;:0.45},{&quot;2026-06-15&quot;:0.47},{&quot;2026-06-16&quot;:0.49},{&quot;2026-06-17&quot;:0.46},{&quot;2026-06-18&quot;:0.45},{&quot;2026-06-19&quot;:0.44},{&quot;2026-06-20&quot;:0.42},{&quot;2026-06-21&quot;:0.42},{&quot;2026-06-22&quot;:0.41},{&quot;2026-06-23&quot;:0.41},{&quot;2026-06-24&quot;:0.43},{&quot;2026-06-25&quot;:0.43},{&quot;2026-06-26&quot;:0.42},{&quot;2026-06-27&quot;:0.42},{&quot;2026-06-28&quot;:0.42},{&quot;2026-06-29&quot;:0.43},{&quot;2026-06-30&quot;:0.43},{&quot;2026-07-01&quot;:0.42},{&quot;2026-07-02&quot;:0.42},{&quot;2026-07-03&quot;:0.42},{&quot;2026-07-04&quot;:0.43},{&quot;2026-07-05&quot;:0.43},{&quot;2026-07-06&quot;:0.45},{&quot;2026-07-07&quot;:0.44},{&quot;2026-07-08&quot;:0.43},{&quot;2026-07-09&quot;:0.46},{&quot;2026-07-10&quot;:0.46},{&quot;2026-07-11&quot;:0.46},{&quot;2026-07-12&quot;:0.46},{&quot;2026-07-13&quot;:0.45},{&quot;2026-07-14&quot;:0.46},{&quot;2026-07-15&quot;:0.45},{&quot;2026-07-16&quot;:0.45},{&quot;2026-07-17&quot;:0.47},{&quot;2026-07-18&quot;:0.44},{&quot;2026-07-19&quot;:0.45},{&quot;2026-07-20&quot;:0.46},{&quot;2026-07-21&quot;:0.46},{&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-28&quot;:0.48},{&quot;2026-07-29&quot;:0.5},{&quot;2026-07-30&quot;:0.5},{&quot;2026-07-31&quot;:0.51},{&quot;2026-08-01&quot;:0.54},{&quot;2026-08-02&quot;:0.55},{&quot;2026-08-03&quot;:0.54},{&quot;2026-08-04&quot;:0.53},{&quot;2026-08-05&quot;:0.51},{&quot;2026-08-07&quot;:0.52},{&quot;2026-08-08&quot;:0.53},{&quot;2026-08-09&quot;:0.52},{&quot;2026-08-10&quot;:0.54},{&quot;2026-08-11&quot;:0.56},{&quot;2026-08-12&quot;:0.62},{&quot;2026-08-13&quot;:0.6},{&quot;2026-08-14&quot;:0.61},{&quot;2026-08-15&quot;:0.6},{&quot;2026-08-16&quot;:0.62},{&quot;2026-08-17&quot;:0.53},{&quot;2026-08-18&quot;:0.53},{&quot;2026-08-19&quot;:0.49},{&quot;2026-08-20&quot;:0.49},{&quot;2026-08-21&quot;:0.49},{&quot;2026-08-22&quot;:0.5},{&quot;2026-08-23&quot;:0.48},{&quot;2026-08-24&quot;:0.5},{&quot;2026-08-25&quot;:0.53},{&quot;2026-08-26&quot;:0.6},{&quot;2026-08-27&quot;:0.59},{&quot;2026-08-28&quot;:0.57},{&quot;2026-08-29&quot;:0.57},{&quot;2026-08-30&quot;:0.62},{&quot;2026-08-31&quot;:0.6},{&quot;2026-09-01&quot;:0.67},{&quot;2026-09-02&quot;:0.65},{&quot;2026-09-03&quot;:0.67},{&quot;2026-09-04&quot;:0.66},{&quot;2026-09-05&quot;:0.67},{&quot;2026-09-06&quot;:0.69},{&quot;2026-09-07&quot;:0.73},{&quot;2026-09-08&quot;:0.72},{&quot;2026-09-09&quot;:0.72},{&quot;2026-09-10&quot;:0.71},{&quot;2026-09-11&quot;:0.71}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="53721"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-nec ss-common ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Arcane Signet
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Artifact
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-100 text-badge-text">
              ↓
              1%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.74
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Arcane Signet" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/b/7bdf4615-7a08-40fe-9e04-cdbe10a62e06.jpg?1783923944" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Arcane Signet
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            common
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Artifact</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Arcane Signet" src="https://cards.scryfall.io/large/front/7/b/7bdf4615-7a08-40fe-9e04-cdbe10a62e06.jpg?1783923944" />
    </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.74
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  1%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.52</span>
              <span class="text-xs text-grey-text">Credit: $0.68</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.62},{&quot;2026-06-14&quot;:0.62},{&quot;2026-06-15&quot;:0.62},{&quot;2026-06-16&quot;:0.62},{&quot;2026-06-17&quot;:0.62},{&quot;2026-06-18&quot;:0.62},{&quot;2026-06-19&quot;:0.62},{&quot;2026-06-20&quot;:0.62},{&quot;2026-06-21&quot;:0.63},{&quot;2026-06-22&quot;:0.63},{&quot;2026-06-23&quot;:0.63},{&quot;2026-06-24&quot;:0.63},{&quot;2026-06-25&quot;:0.6},{&quot;2026-06-26&quot;:0.6},{&quot;2026-06-27&quot;:0.6},{&quot;2026-06-28&quot;:0.6},{&quot;2026-06-29&quot;:0.6},{&quot;2026-06-30&quot;:0.61},{&quot;2026-07-01&quot;:0.61},{&quot;2026-07-02&quot;:0.6},{&quot;2026-07-03&quot;:0.58},{&quot;2026-07-04&quot;:0.59},{&quot;2026-07-05&quot;:0.61},{&quot;2026-07-06&quot;:0.58},{&quot;2026-07-07&quot;:0.58},{&quot;2026-07-08&quot;:0.56},{&quot;2026-07-09&quot;:0.56},{&quot;2026-07-10&quot;:0.56},{&quot;2026-07-11&quot;:0.57},{&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.59},{&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.58},{&quot;2026-07-21&quot;:0.57},{&quot;2026-07-22&quot;:0.57},{&quot;2026-07-23&quot;:0.57},{&quot;2026-07-24&quot;:0.57},{&quot;2026-07-25&quot;:0.57},{&quot;2026-07-26&quot;:0.57},{&quot;2026-07-27&quot;:0.57},{&quot;2026-07-28&quot;:0.61},{&quot;2026-07-29&quot;:0.64},{&quot;2026-07-30&quot;:0.64},{&quot;2026-07-31&quot;:0.64},{&quot;2026-08-01&quot;:0.65},{&quot;2026-08-02&quot;:0.63},{&quot;2026-08-03&quot;:0.69},{&quot;2026-08-04&quot;:0.69},{&quot;2026-08-05&quot;:0.69},{&quot;2026-08-07&quot;:0.7},{&quot;2026-08-08&quot;:0.7},{&quot;2026-08-09&quot;:0.7},{&quot;2026-08-10&quot;:0.69},{&quot;2026-08-11&quot;:0.69},{&quot;2026-08-12&quot;:0.67},{&quot;2026-08-13&quot;:0.68},{&quot;2026-08-14&quot;:0.67},{&quot;2026-08-15&quot;:0.67},{&quot;2026-08-16&quot;:0.66},{&quot;2026-08-17&quot;:0.64},{&quot;2026-08-18&quot;:0.65},{&quot;2026-08-19&quot;:0.64},{&quot;2026-08-20&quot;:0.62},{&quot;2026-08-21&quot;:0.62},{&quot;2026-08-22&quot;:0.59},{&quot;2026-08-23&quot;:0.59},{&quot;2026-08-24&quot;:0.59},{&quot;2026-08-25&quot;:0.59},{&quot;2026-08-26&quot;:0.59},{&quot;2026-08-27&quot;:0.59},{&quot;2026-08-28&quot;:0.6},{&quot;2026-08-29&quot;:0.6},{&quot;2026-08-30&quot;:0.61},{&quot;2026-08-31&quot;:0.61},{&quot;2026-09-01&quot;:0.65},{&quot;2026-09-02&quot;:0.67},{&quot;2026-09-03&quot;:0.68},{&quot;2026-09-04&quot;:0.74},{&quot;2026-09-05&quot;:0.75},{&quot;2026-09-06&quot;:0.75},{&quot;2026-09-07&quot;:0.75},{&quot;2026-09-08&quot;:0.73},{&quot;2026-09-09&quot;:0.74},{&quot;2026-09-10&quot;:0.74},{&quot;2026-09-11&quot;:0.74}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="89753"
  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-znc ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Rogue&#39;s Passage
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Land
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-50 text-badge-text">
              ↑
              2%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.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="Rogue&#39;s Passage" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/0/809f04b8-21f2-48b1-a926-a4d750d131f7.jpg?1783929438" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Rogue&#39;s Passage
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Land</span>
        </div>

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Rogue&#39;s Passage" src="https://cards.scryfall.io/large/front/8/0/809f04b8-21f2-48b1-a926-a4d750d131f7.jpg?1783929438" />
    </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-50">
                  ↑
                  2%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.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.47},{&quot;2026-06-14&quot;:0.47},{&quot;2026-06-15&quot;:0.47},{&quot;2026-06-16&quot;:0.47},{&quot;2026-06-17&quot;:0.47},{&quot;2026-06-18&quot;:0.47},{&quot;2026-06-19&quot;:0.47},{&quot;2026-06-20&quot;:0.47},{&quot;2026-06-21&quot;:0.47},{&quot;2026-06-22&quot;:0.47},{&quot;2026-06-23&quot;:0.47},{&quot;2026-06-24&quot;:0.47},{&quot;2026-06-25&quot;:0.47},{&quot;2026-06-26&quot;:0.47},{&quot;2026-06-27&quot;:0.47},{&quot;2026-06-28&quot;:0.47},{&quot;2026-06-29&quot;:0.47},{&quot;2026-06-30&quot;:0.47},{&quot;2026-07-01&quot;:0.47},{&quot;2026-07-02&quot;:0.49},{&quot;2026-07-03&quot;:0.45},{&quot;2026-07-04&quot;:0.46},{&quot;2026-07-05&quot;:0.46},{&quot;2026-07-06&quot;:0.44},{&quot;2026-07-07&quot;:0.44},{&quot;2026-07-08&quot;:0.44},{&quot;2026-07-09&quot;:0.44},{&quot;2026-07-10&quot;:0.44},{&quot;2026-07-11&quot;:0.44},{&quot;2026-07-12&quot;:0.44},{&quot;2026-07-13&quot;:0.44},{&quot;2026-07-14&quot;:0.44},{&quot;2026-07-15&quot;:0.44},{&quot;2026-07-16&quot;:0.44},{&quot;2026-07-17&quot;:0.44},{&quot;2026-07-18&quot;:0.45},{&quot;2026-07-19&quot;:0.44},{&quot;2026-07-20&quot;:0.44},{&quot;2026-07-21&quot;:0.43},{&quot;2026-07-22&quot;:0.43},{&quot;2026-07-23&quot;:0.44},{&quot;2026-07-24&quot;:0.44},{&quot;2026-07-25&quot;:0.44},{&quot;2026-07-26&quot;:0.44},{&quot;2026-07-27&quot;:0.44},{&quot;2026-07-28&quot;:0.43},{&quot;2026-07-29&quot;:0.43},{&quot;2026-07-30&quot;:0.43},{&quot;2026-07-31&quot;:0.42},{&quot;2026-08-01&quot;:0.42},{&quot;2026-08-02&quot;:0.41},{&quot;2026-08-03&quot;:0.41},{&quot;2026-08-04&quot;:0.41},{&quot;2026-08-05&quot;:0.42},{&quot;2026-08-07&quot;:0.42},{&quot;2026-08-08&quot;:0.42},{&quot;2026-08-09&quot;:0.42},{&quot;2026-08-10&quot;:0.42},{&quot;2026-08-11&quot;:0.42},{&quot;2026-08-12&quot;:0.42},{&quot;2026-08-13&quot;:0.42},{&quot;2026-08-14&quot;:0.42},{&quot;2026-08-15&quot;:0.42},{&quot;2026-08-16&quot;:0.42},{&quot;2026-08-17&quot;:0.43},{&quot;2026-08-18&quot;:0.43},{&quot;2026-08-19&quot;:0.43},{&quot;2026-08-20&quot;:0.43},{&quot;2026-08-21&quot;:0.43},{&quot;2026-08-22&quot;:0.43},{&quot;2026-08-23&quot;:0.43},{&quot;2026-08-24&quot;:0.42},{&quot;2026-08-25&quot;:0.43},{&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.44},{&quot;2026-08-31&quot;:0.44},{&quot;2026-09-01&quot;:0.44},{&quot;2026-09-02&quot;:0.44},{&quot;2026-09-03&quot;:0.44},{&quot;2026-09-04&quot;:0.44},{&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.46},{&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="49553"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mh2 ss-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">
            Flame Rift
        </span>

          <span
            class="
              px-1.5 py-0.5 text-xs rounded bg-purple-900/30 text-purple-400
              border border-purple-500/30 flex-shrink-0
            "
            title="Etched"
          >
            E
          </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">
              ↑
              9%
            </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="Flame Rift" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/e/6/e63ed449-d249-4639-85d2-f8fe75496d5c.jpg?1783926784" />

        <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">
            Flame Rift
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Sorcery</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Flame Rift" src="https://cards.scryfall.io/large/front/e/6/e63ed449-d249-4639-85d2-f8fe75496d5c.jpg?1783926784" />
    </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">
                  ↑
                  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.32
              </span>

            </div>
          </div>
      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.06</span>
              <span class="text-xs text-grey-text">Credit: $0.08</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-12&quot;:0.38},{&quot;2026-06-13&quot;:0.4},{&quot;2026-06-14&quot;:0.4},{&quot;2026-06-15&quot;:0.4},{&quot;2026-06-16&quot;:0.41},{&quot;2026-06-17&quot;:0.41},{&quot;2026-06-18&quot;:0.41},{&quot;2026-06-19&quot;:0.41},{&quot;2026-06-20&quot;:0.41},{&quot;2026-06-21&quot;:0.41},{&quot;2026-06-22&quot;:0.41},{&quot;2026-06-23&quot;:0.41},{&quot;2026-06-24&quot;:0.41},{&quot;2026-06-25&quot;:0.41},{&quot;2026-06-26&quot;:0.41},{&quot;2026-06-27&quot;:0.41},{&quot;2026-06-28&quot;:0.41},{&quot;2026-06-29&quot;:0.41},{&quot;2026-06-30&quot;:0.41},{&quot;2026-07-01&quot;:0.41},{&quot;2026-07-02&quot;:0.4},{&quot;2026-07-03&quot;:0.4},{&quot;2026-07-04&quot;:0.4},{&quot;2026-07-05&quot;:0.4},{&quot;2026-07-06&quot;:0.4},{&quot;2026-07-07&quot;:0.4},{&quot;2026-07-08&quot;:0.39},{&quot;2026-07-09&quot;:0.39},{&quot;2026-07-10&quot;:0.41},{&quot;2026-07-11&quot;:0.4},{&quot;2026-07-12&quot;:0.4},{&quot;2026-07-13&quot;:0.4},{&quot;2026-07-14&quot;:0.4},{&quot;2026-07-15&quot;:0.4},{&quot;2026-07-16&quot;:0.41},{&quot;2026-07-17&quot;:0.41},{&quot;2026-07-18&quot;:0.4},{&quot;2026-07-19&quot;:0.4},{&quot;2026-07-20&quot;:0.4},{&quot;2026-07-21&quot;:0.4},{&quot;2026-07-23&quot;:0.39},{&quot;2026-07-24&quot;:0.39},{&quot;2026-07-25&quot;:0.38},{&quot;2026-07-26&quot;:0.38},{&quot;2026-07-27&quot;:0.38},{&quot;2026-07-28&quot;:0.38},{&quot;2026-07-29&quot;:0.38},{&quot;2026-07-30&quot;:0.37},{&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.36},{&quot;2026-08-05&quot;:0.36},{&quot;2026-08-07&quot;:0.36},{&quot;2026-08-08&quot;:0.35},{&quot;2026-08-09&quot;:0.34},{&quot;2026-08-10&quot;:0.34},{&quot;2026-08-11&quot;:0.34},{&quot;2026-08-12&quot;:0.34},{&quot;2026-08-13&quot;:0.34},{&quot;2026-08-14&quot;:0.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.34},{&quot;2026-08-20&quot;:0.34},{&quot;2026-08-21&quot;:0.33},{&quot;2026-08-22&quot;:0.33},{&quot;2026-08-23&quot;:0.33},{&quot;2026-08-24&quot;:0.33},{&quot;2026-08-25&quot;:0.32},{&quot;2026-08-26&quot;:0.32},{&quot;2026-08-27&quot;:0.31},{&quot;2026-08-28&quot;:0.31},{&quot;2026-08-29&quot;:0.31},{&quot;2026-08-30&quot;:0.31},{&quot;2026-08-31&quot;:0.31},{&quot;2026-09-01&quot;:0.31},{&quot;2026-09-02&quot;:0.31},{&quot;2026-09-03&quot;:0.32},{&quot;2026-09-04&quot;:0.32},{&quot;2026-09-05&quot;:0.32},{&quot;2026-09-06&quot;:0.32},{&quot;2026-09-07&quot;:0.32},{&quot;2026-09-08&quot;:0.32},{&quot;2026-09-09&quot;:0.32},{&quot;2026-09-10&quot;:0.32},{&quot;2026-09-11&quot;:0.32}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:0.35},{&quot;2026-06-13&quot;:0.35},{&quot;2026-06-14&quot;:0.34},{&quot;2026-06-15&quot;:0.34},{&quot;2026-06-16&quot;:0.34},{&quot;2026-06-17&quot;:0.34},{&quot;2026-06-18&quot;:0.33},{&quot;2026-06-19&quot;:0.33},{&quot;2026-06-20&quot;:0.33},{&quot;2026-06-21&quot;:0.33},{&quot;2026-06-22&quot;:0.32},{&quot;2026-06-23&quot;:0.3},{&quot;2026-06-24&quot;:0.28},{&quot;2026-06-25&quot;:0.26},{&quot;2026-06-26&quot;:0.25},{&quot;2026-06-27&quot;:0.26},{&quot;2026-06-28&quot;:0.27},{&quot;2026-06-29&quot;:0.3},{&quot;2026-06-30&quot;:0.32},{&quot;2026-07-01&quot;:0.31},{&quot;2026-07-02&quot;:0.31},{&quot;2026-07-03&quot;:0.31},{&quot;2026-07-04&quot;:0.28},{&quot;2026-07-05&quot;:0.27},{&quot;2026-07-06&quot;:0.27},{&quot;2026-07-07&quot;:0.26},{&quot;2026-07-08&quot;:0.24},{&quot;2026-07-09&quot;:0.25},{&quot;2026-07-10&quot;:0.25},{&quot;2026-07-11&quot;:0.26},{&quot;2026-07-12&quot;:0.29},{&quot;2026-07-13&quot;:0.31},{&quot;2026-07-14&quot;:0.31},{&quot;2026-07-15&quot;:0.33},{&quot;2026-07-16&quot;:0.33},{&quot;2026-07-17&quot;:0.34},{&quot;2026-07-18&quot;:0.37},{&quot;2026-07-19&quot;:0.37},{&quot;2026-07-20&quot;:0.39},{&quot;2026-07-21&quot;:0.36},{&quot;2026-07-23&quot;:0.39},{&quot;2026-07-24&quot;:0.39},{&quot;2026-07-25&quot;:0.38},{&quot;2026-07-26&quot;:0.37},{&quot;2026-07-27&quot;:0.37},{&quot;2026-07-28&quot;:0.36},{&quot;2026-07-29&quot;:0.34},{&quot;2026-07-30&quot;:0.32},{&quot;2026-07-31&quot;:0.32},{&quot;2026-08-01&quot;:0.32},{&quot;2026-08-02&quot;:0.3},{&quot;2026-08-03&quot;:0.31},{&quot;2026-08-04&quot;:0.31},{&quot;2026-08-05&quot;:0.33},{&quot;2026-08-07&quot;:0.31},{&quot;2026-08-08&quot;:0.33},{&quot;2026-08-09&quot;:0.32},{&quot;2026-08-10&quot;:0.32},{&quot;2026-08-11&quot;:0.32},{&quot;2026-08-12&quot;:0.32},{&quot;2026-08-13&quot;:0.34},{&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.32},{&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.32},{&quot;2026-08-23&quot;:0.33},{&quot;2026-08-24&quot;:0.34},{&quot;2026-08-25&quot;:0.35},{&quot;2026-08-26&quot;:0.35},{&quot;2026-08-27&quot;:0.35},{&quot;2026-08-28&quot;:0.34},{&quot;2026-08-29&quot;:0.34},{&quot;2026-08-30&quot;:0.34},{&quot;2026-08-31&quot;:0.35},{&quot;2026-09-01&quot;:0.34},{&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.38},{&quot;2026-09-07&quot;:0.35},{&quot;2026-09-08&quot;:0.35},{&quot;2026-09-09&quot;:0.37},{&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="18611"
  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-dmu 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">
            Twinferno
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Instant
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-50 text-badge-text">
              ↑
              9%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.37
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Twinferno" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/c/bc531409-26cb-4c58-ba69-f39dd8aee3d1.jpg?1783921308" />

        <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">
            Twinferno
        </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="Twinferno" src="https://cards.scryfall.io/large/front/b/c/bc531409-26cb-4c58-ba69-f39dd8aee3d1.jpg?1783921308" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.37
              </span>

                <span class="text-xs text-accent-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.64
              </span>

            </div>
          </div>
      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$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-13&quot;:0.61},{&quot;2026-06-14&quot;:0.62},{&quot;2026-06-15&quot;:0.62},{&quot;2026-06-16&quot;:0.62},{&quot;2026-06-17&quot;:0.62},{&quot;2026-06-18&quot;:0.62},{&quot;2026-06-19&quot;:0.62},{&quot;2026-06-20&quot;:0.62},{&quot;2026-06-21&quot;:0.62},{&quot;2026-06-22&quot;:0.62},{&quot;2026-06-23&quot;:0.62},{&quot;2026-06-24&quot;:0.62},{&quot;2026-06-25&quot;:0.62},{&quot;2026-06-26&quot;:0.61},{&quot;2026-06-27&quot;:0.62},{&quot;2026-06-28&quot;:0.51},{&quot;2026-06-29&quot;:0.51},{&quot;2026-06-30&quot;:0.51},{&quot;2026-07-01&quot;:0.51},{&quot;2026-07-02&quot;:0.51},{&quot;2026-07-03&quot;:0.5},{&quot;2026-07-04&quot;:0.5},{&quot;2026-07-05&quot;:0.5},{&quot;2026-07-06&quot;:0.52},{&quot;2026-07-07&quot;:0.52},{&quot;2026-07-08&quot;:0.52},{&quot;2026-07-09&quot;:0.52},{&quot;2026-07-10&quot;:0.52},{&quot;2026-07-11&quot;:0.52},{&quot;2026-07-12&quot;:0.52},{&quot;2026-07-13&quot;:0.52},{&quot;2026-07-14&quot;:0.53},{&quot;2026-07-15&quot;:0.49},{&quot;2026-07-16&quot;:0.49},{&quot;2026-07-17&quot;:0.49},{&quot;2026-07-18&quot;:0.49},{&quot;2026-07-19&quot;:0.49},{&quot;2026-07-20&quot;:0.5},{&quot;2026-07-21&quot;:0.5},{&quot;2026-07-22&quot;:0.5},{&quot;2026-07-23&quot;:0.5},{&quot;2026-07-24&quot;:0.51},{&quot;2026-07-25&quot;:0.51},{&quot;2026-07-26&quot;:0.51},{&quot;2026-07-27&quot;:0.5},{&quot;2026-07-28&quot;:0.58},{&quot;2026-07-29&quot;:0.59},{&quot;2026-07-30&quot;:0.59},{&quot;2026-07-31&quot;:0.6},{&quot;2026-08-01&quot;:0.6},{&quot;2026-08-02&quot;:0.6},{&quot;2026-08-03&quot;:0.61},{&quot;2026-08-04&quot;:0.61},{&quot;2026-08-05&quot;:0.62},{&quot;2026-08-07&quot;:0.62},{&quot;2026-08-08&quot;:0.62},{&quot;2026-08-09&quot;:0.62},{&quot;2026-08-10&quot;:0.62},{&quot;2026-08-11&quot;:0.62},{&quot;2026-08-12&quot;:0.62},{&quot;2026-08-13&quot;:0.62},{&quot;2026-08-14&quot;:0.62},{&quot;2026-08-15&quot;:0.63},{&quot;2026-08-16&quot;:0.62},{&quot;2026-08-17&quot;:0.62},{&quot;2026-08-18&quot;:0.62},{&quot;2026-08-19&quot;:0.62},{&quot;2026-08-20&quot;:0.62},{&quot;2026-08-21&quot;:0.66},{&quot;2026-08-22&quot;:0.67},{&quot;2026-08-23&quot;:0.67},{&quot;2026-08-24&quot;:0.67},{&quot;2026-08-25&quot;:0.68},{&quot;2026-08-26&quot;:0.68},{&quot;2026-08-27&quot;:0.68},{&quot;2026-08-28&quot;:0.68},{&quot;2026-08-29&quot;:0.68},{&quot;2026-08-30&quot;:0.64},{&quot;2026-08-31&quot;:0.64},{&quot;2026-09-01&quot;:0.64},{&quot;2026-09-02&quot;:0.64},{&quot;2026-09-03&quot;:0.64},{&quot;2026-09-04&quot;:0.64},{&quot;2026-09-05&quot;:0.64},{&quot;2026-09-06&quot;:0.64},{&quot;2026-09-07&quot;:0.64},{&quot;2026-09-08&quot;:0.64},{&quot;2026-09-09&quot;:0.64},{&quot;2026-09-10&quot;:0.64},{&quot;2026-09-11&quot;:0.64}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.36},{&quot;2026-06-14&quot;:0.41},{&quot;2026-06-15&quot;:0.41},{&quot;2026-06-16&quot;:0.42},{&quot;2026-06-17&quot;:0.41},{&quot;2026-06-18&quot;:0.38},{&quot;2026-06-19&quot;:0.38},{&quot;2026-06-20&quot;:0.37},{&quot;2026-06-21&quot;:0.35},{&quot;2026-06-22&quot;:0.34},{&quot;2026-06-23&quot;:0.32},{&quot;2026-06-24&quot;:0.32},{&quot;2026-06-25&quot;:0.25},{&quot;2026-06-26&quot;:0.26},{&quot;2026-06-27&quot;:0.25},{&quot;2026-06-28&quot;:0.24},{&quot;2026-06-29&quot;:0.25},{&quot;2026-06-30&quot;:0.25},{&quot;2026-07-01&quot;:0.25},{&quot;2026-07-02&quot;:0.24},{&quot;2026-07-03&quot;:0.24},{&quot;2026-07-04&quot;:0.26},{&quot;2026-07-05&quot;:0.26},{&quot;2026-07-06&quot;:0.25},{&quot;2026-07-07&quot;:0.28},{&quot;2026-07-08&quot;:0.27},{&quot;2026-07-09&quot;:0.25},{&quot;2026-07-10&quot;:0.24},{&quot;2026-07-11&quot;:0.23},{&quot;2026-07-12&quot;:0.2},{&quot;2026-07-13&quot;:0.2},{&quot;2026-07-14&quot;:0.18},{&quot;2026-07-15&quot;:0.19},{&quot;2026-07-16&quot;:0.2},{&quot;2026-07-17&quot;:0.21},{&quot;2026-07-18&quot;:0.21},{&quot;2026-07-19&quot;:0.24},{&quot;2026-07-20&quot;:0.25},{&quot;2026-07-21&quot;:0.25},{&quot;2026-07-22&quot;:0.25},{&quot;2026-07-23&quot;:0.25},{&quot;2026-07-24&quot;:0.24},{&quot;2026-07-25&quot;:0.25},{&quot;2026-07-26&quot;:0.25},{&quot;2026-07-27&quot;:0.24},{&quot;2026-07-28&quot;:0.24},{&quot;2026-07-29&quot;:0.22},{&quot;2026-07-30&quot;:0.22},{&quot;2026-07-31&quot;:0.22},{&quot;2026-08-01&quot;:0.22},{&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.25},{&quot;2026-08-07&quot;:0.25},{&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.31},{&quot;2026-08-12&quot;:0.31},{&quot;2026-08-13&quot;:0.32},{&quot;2026-08-14&quot;:0.33},{&quot;2026-08-15&quot;:0.34},{&quot;2026-08-16&quot;:0.34},{&quot;2026-08-17&quot;:0.37},{&quot;2026-08-18&quot;:0.35},{&quot;2026-08-19&quot;:0.33},{&quot;2026-08-20&quot;:0.33},{&quot;2026-08-21&quot;:0.33},{&quot;2026-08-22&quot;:0.33},{&quot;2026-08-23&quot;:0.31},{&quot;2026-08-24&quot;:0.34},{&quot;2026-08-25&quot;:0.36},{&quot;2026-08-26&quot;:0.36},{&quot;2026-08-27&quot;:0.34},{&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.34},{&quot;2026-09-02&quot;:0.34},{&quot;2026-09-03&quot;:0.34},{&quot;2026-09-04&quot;:0.35},{&quot;2026-09-05&quot;:0.34},{&quot;2026-09-06&quot;:0.36},{&quot;2026-09-07&quot;:0.36},{&quot;2026-09-08&quot;:0.36},{&quot;2026-09-09&quot;:0.36},{&quot;2026-09-10&quot;:0.36},{&quot;2026-09-11&quot;:0.37}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="12602"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            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">
              ↑
              13%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.34
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Abrade" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/2/d27d5b87-6dfc-4b99-822b-f6f8489ad275.jpg?1783928713" />

        <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/d/2/d27d5b87-6dfc-4b99-822b-f6f8489ad275.jpg?1783928713" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.34
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  13%
                </span>
            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.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-13&quot;:0.29},{&quot;2026-06-14&quot;:0.29},{&quot;2026-06-15&quot;:0.29},{&quot;2026-06-16&quot;:0.29},{&quot;2026-06-17&quot;:0.29},{&quot;2026-06-18&quot;:0.29},{&quot;2026-06-19&quot;:0.29},{&quot;2026-06-20&quot;:0.29},{&quot;2026-06-21&quot;:0.29},{&quot;2026-06-22&quot;:0.28},{&quot;2026-06-23&quot;:0.28},{&quot;2026-06-24&quot;:0.28},{&quot;2026-06-25&quot;:0.28},{&quot;2026-06-26&quot;:0.28},{&quot;2026-06-27&quot;:0.28},{&quot;2026-06-28&quot;:0.28},{&quot;2026-06-29&quot;:0.28},{&quot;2026-06-30&quot;:0.28},{&quot;2026-07-01&quot;:0.28},{&quot;2026-07-02&quot;:0.28},{&quot;2026-07-03&quot;:0.28},{&quot;2026-07-04&quot;:0.28},{&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.29},{&quot;2026-07-09&quot;:0.29},{&quot;2026-07-10&quot;:0.3},{&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.27},{&quot;2026-07-16&quot;:0.27},{&quot;2026-07-17&quot;:0.27},{&quot;2026-07-18&quot;:0.27},{&quot;2026-07-19&quot;:0.27},{&quot;2026-07-20&quot;:0.27},{&quot;2026-07-21&quot;:0.27},{&quot;2026-07-22&quot;:0.27},{&quot;2026-07-23&quot;:0.27},{&quot;2026-07-24&quot;:0.26},{&quot;2026-07-25&quot;:0.25},{&quot;2026-07-26&quot;:0.28},{&quot;2026-07-27&quot;:0.29},{&quot;2026-07-28&quot;:0.27},{&quot;2026-07-29&quot;:0.27},{&quot;2026-07-30&quot;:0.27},{&quot;2026-07-31&quot;:0.27},{&quot;2026-08-01&quot;:0.27},{&quot;2026-08-02&quot;:0.27},{&quot;2026-08-03&quot;:0.27},{&quot;2026-08-04&quot;:0.27},{&quot;2026-08-05&quot;:0.26},{&quot;2026-08-07&quot;:0.26},{&quot;2026-08-08&quot;:0.26},{&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.26},{&quot;2026-08-13&quot;:0.26},{&quot;2026-08-14&quot;:0.26},{&quot;2026-08-15&quot;:0.26},{&quot;2026-08-16&quot;:0.26},{&quot;2026-08-17&quot;:0.26},{&quot;2026-08-18&quot;:0.26},{&quot;2026-08-19&quot;:0.26},{&quot;2026-08-20&quot;:0.26},{&quot;2026-08-21&quot;:0.26},{&quot;2026-08-22&quot;:0.26},{&quot;2026-08-23&quot;:0.26},{&quot;2026-08-24&quot;:0.26},{&quot;2026-08-25&quot;:0.26},{&quot;2026-08-26&quot;:0.26},{&quot;2026-08-27&quot;:0.26},{&quot;2026-08-28&quot;:0.26},{&quot;2026-08-29&quot;:0.26},{&quot;2026-08-30&quot;:0.26},{&quot;2026-08-31&quot;:0.26},{&quot;2026-09-01&quot;:0.26},{&quot;2026-09-02&quot;:0.26},{&quot;2026-09-03&quot;:0.26},{&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.34},{&quot;2026-09-08&quot;:0.34},{&quot;2026-09-09&quot;:0.34},{&quot;2026-09-10&quot;:0.34},{&quot;2026-09-11&quot;:0.34}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>


    <div
      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 62 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=216&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next">2</a><a href="/load_collection?collection_id=216&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=216&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=216&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=216&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=216&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=216&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=216&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=216&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=216&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=216&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="58286"
          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">
              449
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-one ss-mythic ss-fw ss-2x mr-4"></i>
              Solphim, Mayhem Dominus


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Phyrexian Horror
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $46.80

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $22.00
            </td>

            <td class="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="58286"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_58286" src="/boxset_card/58286?collection_id=216&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="51516"
          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">
              21
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mul ss-mythic ss-fw ss-2x mr-4"></i>
              Ragavan, Nimble Pilferer


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Monkey Pirate
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $44.90

                    <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">
                $33.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.29
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="51516"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_51516" src="/boxset_card/51516?collection_id=216&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="86883"
          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">
              MH2-259
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-rare ss-fw ss-2x mr-4"></i>
              Urza&#39;s Saga


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Enchantment Land — Urza&#39;s Saga
            </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">
                  $41.62

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $30.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.25
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="86883"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_86883" src="/boxset_card/86883?collection_id=216&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="11938"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              187
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-rare ss-fw ss-2x mr-4"></i>
              Jeska&#39;s Will


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $39.70

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $33.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.49
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="11938"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_11938" src="/boxset_card/11938?collection_id=216&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="94816"
          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">
              14
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fca ss-mythic ss-fw ss-2x mr-4"></i>
              Purphoros, God of the Forge


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Enchantment Creature — God
            </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">
                  $29.98

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $21.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.15
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="94816"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_94816" src="/boxset_card/94816?collection_id=216&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="18317"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              121
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-dmr ss-rare ss-fw ss-2x mr-4"></i>
              Gamble


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $17.77

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $14.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.76
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="18317"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_18317" src="/boxset_card/18317?collection_id=216&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="13841"
          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">
              676
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-clb ss-rare ss-fw ss-2x mr-4"></i>
              Delayed Blast Fireball


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $16.82

                    <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">
                $10.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.40
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="13841"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_13841" src="/boxset_card/13841?collection_id=216&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="13555"
          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">
              580
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-clb ss-rare ss-fw ss-2x mr-4"></i>
              Descent into Avernus


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Enchantment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $14.00

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $13.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.60
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="13555"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_13555" src="/boxset_card/13555?collection_id=216&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="49560"
          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">
              281
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mh2 ss-mythic ss-fw ss-2x mr-4"></i>
              Imperial Recruiter

                <span
                  class="
                    ml-2 px-1.5 py-0.5 text-xs rounded bg-purple-900/30
                    text-purple-400 border border-purple-500/30
                  "
                  title="Etched finish"
                >
                  E
                </span>

            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Human Advisor
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $13.38

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $8.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.66
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="49560"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_49560" src="/boxset_card/49560?collection_id=216&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="43556"
          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">
              1
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-pmei ss-rare 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">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $6.82

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $3.80
            </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="43556"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_43556" src="/boxset_card/43556?collection_id=216&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="17235"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              140
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-dst ss-uncommon ss-fw ss-2x mr-4"></i>
              Skullclamp


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact — Equipment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $6.74

                    <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">
                $6.40
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.83
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="17235"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_17235" src="/boxset_card/17235?collection_id=216&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="14622"
          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">
              929
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-clb ss-rare ss-fw ss-2x mr-4"></i>
              War Room


            </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">
                  $5.56

                    <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">
                $3.70
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.13
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="14622"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_14622" src="/boxset_card/14622?collection_id=216&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="77861"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              147
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-eld ss-rare ss-fw ss-2x mr-4"></i>
              Torbran, Thane of Red Fell


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Dwarf Noble
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $5.51

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      4%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $2.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.58
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="77861"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_77861" src="/boxset_card/77861?collection_id=216&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="88039"
          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">
              M19-254
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              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">
                  $5.03

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $2.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.20
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="88039"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_88039" src="/boxset_card/88039?collection_id=216&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="20758"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              267
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2xm ss-uncommon ss-fw ss-2x mr-4"></i>
              Lightning Greaves


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact — Equipment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $4.77

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.53
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="20758"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_20758" src="/boxset_card/20758?collection_id=216&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="74656"
          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">
              342
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-ltr ss-rare ss-fw ss-2x mr-4"></i>
              Mines of Moria


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary 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">
                  $4.52

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      17%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $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.17
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="74656"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_74656" src="/boxset_card/74656?collection_id=216&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="81683"
          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">
              IMA-152
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-mythic ss-fw ss-2x mr-4"></i>
              Urabrask the Hidden


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Phyrexian Praetor
            </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">
                  $4.39

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $2.25
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.70
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="81683"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_81683" src="/boxset_card/81683?collection_id=216&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="18642"
          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">
              223
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-dmr ss-mythic ss-fw ss-2x mr-4"></i>
              Gauntlet of Power


            </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-5'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $4.26

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $2.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.43
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="18642"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_18642" src="/boxset_card/18642?collection_id=216&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="78785"
          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">
              EXO-95
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Price of Progress


            </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">
                  $4.22

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      5%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.70
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="78785"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_78785" src="/boxset_card/78785?collection_id=216&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="79742"
          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">
              352
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tsr ss-special ss-fw ss-2x mr-4"></i>
              Vandalblast


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $4.21

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      7%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $2.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.70
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="79742"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_79742" src="/boxset_card/79742?collection_id=216&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="86367"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              157
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-woe ss-mythic ss-fw ss-2x mr-4"></i>
              Virtue of Courage // Embereth Blaze


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Enchantment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $4.12

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      12%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $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.20
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="86367"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_86367" src="/boxset_card/86367?collection_id=216&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="79204"
          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">
              175
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tsr ss-rare ss-fw ss-2x mr-4"></i>
              Magus of the Moon


            </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-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $4.03

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $2.05
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.75
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="79204"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_79204" src="/boxset_card/79204?collection_id=216&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="79545"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              289
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tsr ss-mythic ss-fw ss-2x mr-4"></i>
              Vesuva


            </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.97

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      6%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $3.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.44
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="79545"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_79545" src="/boxset_card/79545?collection_id=216&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="35312"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              164
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-vow ss-common ss-fw ss-2x mr-4"></i>
              Kessig Flamebreather


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Human 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-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.26

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $2.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.20
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="35312"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_35312" src="/boxset_card/35312?collection_id=216&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="35254"
          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">
              148
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-vow ss-mythic ss-fw ss-2x mr-4"></i>
              Cemetery Gatekeeper


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Vampire
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.15

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.30
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.50
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="35254"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_35254" src="/boxset_card/35254?collection_id=216&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="73070"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              58
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-brr ss-uncommon ss-fw ss-2x mr-4"></i>
              Swiftfoot Boots


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact — Equipment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.13

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.75
            </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="73070"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_73070" src="/boxset_card/73070?collection_id=216&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="45994"
          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">
              134
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mom ss-mythic ss-fw ss-2x mr-4"></i>
              Chandra, Hope&#39;s Beacon


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Planeswalker — Chandra
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-4'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.96

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.28
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="45994"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_45994" src="/boxset_card/45994?collection_id=216&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="41937"
          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">
              276
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-neo ss-rare ss-fw ss-2x mr-4"></i>
              Sokenzan, Crucible of Defiance


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary 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">
                  $2.84

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      17%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.10
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="41937"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_41937" src="/boxset_card/41937?collection_id=216&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="18351"
          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">
              132
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-dmr ss-rare ss-fw ss-2x mr-4"></i>
              Overmaster


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.67

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      4%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.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.15
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="18351"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_18351" src="/boxset_card/18351?collection_id=216&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="87738"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              C17-131
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-rare ss-fw ss-2x mr-4"></i>
              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">
                  $2.64

                </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.33
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="87738"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_87738" src="/boxset_card/87738?collection_id=216&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="21154"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              361
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2x2 ss-uncommon ss-fw ss-2x mr-4"></i>
              Lightning Bolt


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.51

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      6%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.23
            </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="21154"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_21154" src="/boxset_card/21154?collection_id=216&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="14171"
          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">
              782
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-clb ss-rare ss-fw ss-2x mr-4"></i>
              Brash Taunter


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Goblin
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-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">
                  $2.50

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.30
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.49
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="14171"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_14171" src="/boxset_card/14171?collection_id=216&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="18989"
          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">
              280
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-dmu ss-common ss-fw ss-2x mr-4"></i>
              Mountain


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Basic Land — Mountain
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.22

                    <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">
                <div class="flex items-center gap-2">
                  $2.49

                    <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">
                $1.30
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.58
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.32
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="18989"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_18989" src="/boxset_card/18989?collection_id=216&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="90930"
          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">
              148
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-inr ss-mythic ss-fw ss-2x mr-4"></i>
              Chandra, Dressed to Kill


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Planeswalker — Chandra
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.03

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      5%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.95
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.59
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="90930"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_90930" src="/boxset_card/90930?collection_id=216&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="16519"
          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">
              302
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-m21 ss-rare ss-fw ss-2x mr-4"></i>
              Chandra&#39;s Incinerator


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Elemental
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-5'></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">
                  $2.02

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.65
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.31
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="16519"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_16519" src="/boxset_card/16519?collection_id=216&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="18975"
          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">
              332
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-dmr ss-rare ss-fw ss-2x mr-4"></i>
              Sulfuric Vortex


            </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><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">
                  $1.72

                </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="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.63
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="18975"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_18975" src="/boxset_card/18975?collection_id=216&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="11977"
          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">
              201
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-mythic ss-fw ss-2x mr-4"></i>
              Soulfire Eruption


            </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-6'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.61

                    <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.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.35
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="11977"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_11977" src="/boxset_card/11977?collection_id=216&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="29085"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              263
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-afc ss-rare ss-fw ss-2x mr-4"></i>
              Spinerock Knoll


            </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.58

                </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.08
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="29085"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_29085" src="/boxset_card/29085?collection_id=216&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="21166"
          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-2x2 ss-uncommon ss-fw ss-2x mr-4"></i>
              Young Pyromancer


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Human 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-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">
                  $1.11

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.25
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.20
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="21166"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_21166" src="/boxset_card/21166?collection_id=216&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="44740"
          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-m13 ss-mythic ss-fw ss-2x mr-4"></i>
              Chandra, the Firebrand


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Planeswalker — Chandra
            </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.04

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      4%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="44740"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_44740" src="/boxset_card/44740?collection_id=216&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="11862"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              162
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-rare ss-fw ss-2x mr-4"></i>
              Blasphemous Act


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-8'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.02

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      6%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.62
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="11862"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_11862" src="/boxset_card/11862?collection_id=216&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="57958"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              338
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-one ss-rare ss-fw ss-2x mr-4"></i>
              Koth, Fire of Resistance


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Planeswalker — Koth
            </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">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.96

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.15
            </td>

            <td class="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="57958"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_57958" src="/boxset_card/57958?collection_id=216&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="74015"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              126
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-ltr ss-uncommon ss-fw ss-2x mr-4"></i>
              Fiery Inscription


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Enchantment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.96

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      16%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.15
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.36
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="74015"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_74015" src="/boxset_card/74015?collection_id=216&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="74464"
          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">
              279
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-ltr ss-common ss-fw ss-2x mr-4"></i>
              Mountain


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Basic Land — Mountain
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.93

                    <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">
                $0.35
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.32
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="74464"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_74464" src="/boxset_card/74464?collection_id=216&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="74461"
          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">
              278
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-ltr ss-common ss-fw ss-2x mr-4"></i>
              Mountain


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Basic Land — Mountain
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.71

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      6%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.75

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.33
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.60
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.32
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="74461"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_74461" src="/boxset_card/74461?collection_id=216&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="53721"
          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">
              144
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-nec ss-common ss-fw ss-2x mr-4"></i>
              Arcane Signet


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.74

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $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.24
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="53721"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_53721" src="/boxset_card/53721?collection_id=216&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="89753"
          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">
              138
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-znc ss-uncommon ss-fw ss-2x mr-4"></i>
              Rogue&#39;s Passage


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.47

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.35
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="89753"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_89753" src="/boxset_card/89753?collection_id=216&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="49553"
          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">
              278
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mh2 ss-uncommon ss-fw ss-2x mr-4"></i>
              Flame Rift

                <span
                  class="
                    ml-2 px-1.5 py-0.5 text-xs rounded bg-purple-900/30
                    text-purple-400 border border-purple-500/30
                  "
                  title="Etched finish"
                >
                  E
                </span>

            </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.38

                    <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.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.20
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="49553"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_49553" src="/boxset_card/49553?collection_id=216&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="18611"
          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">
              149
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-dmu ss-uncommon ss-fw ss-2x mr-4"></i>
              Twinferno


            </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.37

                    <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.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.21
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="18611"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_18611" src="/boxset_card/18611?collection_id=216&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12602"
          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">
              410
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-uncommon ss-fw ss-2x mr-4"></i>
              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.34

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      13%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.16
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="12602"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12602" src="/boxset_card/12602?collection_id=216&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 62 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=216&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next">2</a><a href="/load_collection?collection_id=216&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next" aria-label="Next">&gt;</a></nav>
    </div>
</div>

</template></turbo-stream>