<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="12" 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="74985"
  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-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">
            The One Ring
        </span>


      </div>

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

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

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

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

        <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">
            The One Ring
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="The One Ring" src="https://cards.scryfall.io/large/front/1/2/126ea71a-9a64-4d1e-a8ca-1efce3b8346f.jpg?1783916146" />
    </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">
                $105.28
              </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">
                $115.42
              </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">$85.00</span>
              <span class="text-xs text-grey-text">Credit: $110.50</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-12&quot;:92.57},{&quot;2026-06-13&quot;:92.41},{&quot;2026-06-14&quot;:93.16},{&quot;2026-06-15&quot;:93.31},{&quot;2026-06-16&quot;:93.12},{&quot;2026-06-17&quot;:91.8},{&quot;2026-06-18&quot;:90.94},{&quot;2026-06-19&quot;:91.78},{&quot;2026-06-20&quot;:91.85},{&quot;2026-06-21&quot;:92.57},{&quot;2026-06-22&quot;:91.97},{&quot;2026-06-23&quot;:91.89},{&quot;2026-06-24&quot;:91.81},{&quot;2026-06-25&quot;:91.94},{&quot;2026-06-26&quot;:91.66},{&quot;2026-06-27&quot;:91.24},{&quot;2026-06-28&quot;:91.69},{&quot;2026-06-29&quot;:92.25},{&quot;2026-06-30&quot;:93.63},{&quot;2026-07-01&quot;:94.31},{&quot;2026-07-02&quot;:94.26},{&quot;2026-07-03&quot;:93.05},{&quot;2026-07-04&quot;:93.8},{&quot;2026-07-05&quot;:94.01},{&quot;2026-07-06&quot;:94.15},{&quot;2026-07-07&quot;:94.09},{&quot;2026-07-08&quot;:94.43},{&quot;2026-07-09&quot;:94.69},{&quot;2026-07-10&quot;:93.81},{&quot;2026-07-11&quot;:94.04},{&quot;2026-07-12&quot;:93.58},{&quot;2026-07-13&quot;:93.36},{&quot;2026-07-14&quot;:91.71},{&quot;2026-07-15&quot;:91.13},{&quot;2026-07-16&quot;:91.16},{&quot;2026-07-17&quot;:91.61},{&quot;2026-07-18&quot;:91.94},{&quot;2026-07-19&quot;:93.33},{&quot;2026-07-20&quot;:93.04},{&quot;2026-07-21&quot;:93.12},{&quot;2026-07-23&quot;:92.69},{&quot;2026-07-24&quot;:92.79},{&quot;2026-07-25&quot;:92.79},{&quot;2026-07-26&quot;:91.95},{&quot;2026-07-27&quot;:91.92},{&quot;2026-07-28&quot;:92.37},{&quot;2026-07-29&quot;:92.65},{&quot;2026-07-30&quot;:93.45},{&quot;2026-07-31&quot;:94.99},{&quot;2026-08-01&quot;:94.88},{&quot;2026-08-02&quot;:94.03},{&quot;2026-08-03&quot;:94.88},{&quot;2026-08-04&quot;:94.89},{&quot;2026-08-05&quot;:94.94},{&quot;2026-08-07&quot;:96.31},{&quot;2026-08-08&quot;:95.82},{&quot;2026-08-09&quot;:95.06},{&quot;2026-08-10&quot;:96.12},{&quot;2026-08-11&quot;:95.21},{&quot;2026-08-12&quot;:94.99},{&quot;2026-08-13&quot;:94.85},{&quot;2026-08-14&quot;:95.23},{&quot;2026-08-15&quot;:97.88},{&quot;2026-08-16&quot;:99.84},{&quot;2026-08-17&quot;:102.41},{&quot;2026-08-18&quot;:103.38},{&quot;2026-08-19&quot;:104.49},{&quot;2026-08-20&quot;:104.49},{&quot;2026-08-21&quot;:104.12},{&quot;2026-08-22&quot;:104.2},{&quot;2026-08-23&quot;:103.39},{&quot;2026-08-24&quot;:104.45},{&quot;2026-08-25&quot;:104.39},{&quot;2026-08-26&quot;:103.95},{&quot;2026-08-27&quot;:105.74},{&quot;2026-08-28&quot;:105.7},{&quot;2026-08-29&quot;:105.7},{&quot;2026-08-30&quot;:107.7},{&quot;2026-08-31&quot;:107.08},{&quot;2026-09-01&quot;:106.54},{&quot;2026-09-02&quot;:105.13},{&quot;2026-09-03&quot;:105.53},{&quot;2026-09-04&quot;:107.72},{&quot;2026-09-05&quot;:109.0},{&quot;2026-09-06&quot;:109.11},{&quot;2026-09-07&quot;:112.14},{&quot;2026-09-08&quot;:111.61},{&quot;2026-09-09&quot;:113.14},{&quot;2026-09-10&quot;:113.95},{&quot;2026-09-11&quot;:115.42}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:88.32},{&quot;2026-06-13&quot;:88.38},{&quot;2026-06-14&quot;:88.46},{&quot;2026-06-15&quot;:88.97},{&quot;2026-06-16&quot;:89.13},{&quot;2026-06-17&quot;:88.95},{&quot;2026-06-18&quot;:89.11},{&quot;2026-06-19&quot;:91.09},{&quot;2026-06-20&quot;:91.63},{&quot;2026-06-21&quot;:91.67},{&quot;2026-06-22&quot;:91.61},{&quot;2026-06-23&quot;:91.64},{&quot;2026-06-24&quot;:91.24},{&quot;2026-06-25&quot;:91.24},{&quot;2026-06-26&quot;:91.36},{&quot;2026-06-27&quot;:91.43},{&quot;2026-06-28&quot;:91.43},{&quot;2026-06-29&quot;:91.3},{&quot;2026-06-30&quot;:91.37},{&quot;2026-07-01&quot;:91.13},{&quot;2026-07-02&quot;:89.85},{&quot;2026-07-03&quot;:89.96},{&quot;2026-07-04&quot;:89.08},{&quot;2026-07-05&quot;:89.83},{&quot;2026-07-06&quot;:89.41},{&quot;2026-07-07&quot;:89.48},{&quot;2026-07-08&quot;:89.81},{&quot;2026-07-09&quot;:90.29},{&quot;2026-07-10&quot;:90.29},{&quot;2026-07-11&quot;:90.29},{&quot;2026-07-12&quot;:90.29},{&quot;2026-07-13&quot;:90.18},{&quot;2026-07-14&quot;:90.78},{&quot;2026-07-15&quot;:91.14},{&quot;2026-07-16&quot;:91.14},{&quot;2026-07-17&quot;:90.72},{&quot;2026-07-18&quot;:90.72},{&quot;2026-07-19&quot;:90.43},{&quot;2026-07-20&quot;:90.43},{&quot;2026-07-21&quot;:90.25},{&quot;2026-07-23&quot;:89.74},{&quot;2026-07-24&quot;:89.78},{&quot;2026-07-25&quot;:89.76},{&quot;2026-07-26&quot;:89.87},{&quot;2026-07-27&quot;:89.44},{&quot;2026-07-28&quot;:88.96},{&quot;2026-07-29&quot;:88.93},{&quot;2026-07-30&quot;:88.93},{&quot;2026-07-31&quot;:89.55},{&quot;2026-08-01&quot;:89.81},{&quot;2026-08-02&quot;:89.81},{&quot;2026-08-03&quot;:90.58},{&quot;2026-08-04&quot;:95.31},{&quot;2026-08-05&quot;:95.99},{&quot;2026-08-07&quot;:94.81},{&quot;2026-08-08&quot;:94.79},{&quot;2026-08-09&quot;:95.01},{&quot;2026-08-10&quot;:95.49},{&quot;2026-08-11&quot;:95.85},{&quot;2026-08-12&quot;:95.85},{&quot;2026-08-13&quot;:96.74},{&quot;2026-08-14&quot;:97.0},{&quot;2026-08-15&quot;:97.93},{&quot;2026-08-16&quot;:93.53},{&quot;2026-08-17&quot;:93.81},{&quot;2026-08-18&quot;:95.36},{&quot;2026-08-19&quot;:95.88},{&quot;2026-08-20&quot;:95.88},{&quot;2026-08-21&quot;:97.68},{&quot;2026-08-22&quot;:97.89},{&quot;2026-08-23&quot;:97.89},{&quot;2026-08-24&quot;:98.3},{&quot;2026-08-25&quot;:98.39},{&quot;2026-08-26&quot;:97.79},{&quot;2026-08-27&quot;:98.02},{&quot;2026-08-28&quot;:98.13},{&quot;2026-08-29&quot;:98.13},{&quot;2026-08-30&quot;:98.78},{&quot;2026-08-31&quot;:98.99},{&quot;2026-09-01&quot;:99.35},{&quot;2026-09-02&quot;:100.17},{&quot;2026-09-03&quot;:100.17},{&quot;2026-09-04&quot;:100.08},{&quot;2026-09-05&quot;:100.6},{&quot;2026-09-06&quot;:100.94},{&quot;2026-09-07&quot;:102.8},{&quot;2026-09-08&quot;:103.35},{&quot;2026-09-09&quot;:104.79},{&quot;2026-09-10&quot;:105.33},{&quot;2026-09-11&quot;:105.28}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="18279"
  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">
            Vampiric Tutor
        </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">
            $61.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="Vampiric Tutor" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/3/4/34a0203f-9cce-43a4-9cb7-8ce6647895cd.jpg?1783918468" />

        <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">
            Vampiric Tutor
        </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">Instant</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Vampiric Tutor" src="https://cards.scryfall.io/large/front/3/4/34a0203f-9cce-43a4-9cb7-8ce6647895cd.jpg?1783918468" />
    </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">
                $54.59
              </span>

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $61.56
              </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">$28.00</span>
              <span class="text-xs text-grey-text">Credit: $36.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-11&quot;:69.22},{&quot;2026-06-12&quot;:69.22},{&quot;2026-06-13&quot;:69.22},{&quot;2026-06-14&quot;:69.22},{&quot;2026-06-15&quot;:69.22},{&quot;2026-06-16&quot;:69.22},{&quot;2026-06-17&quot;:69.22},{&quot;2026-06-18&quot;:68.89},{&quot;2026-06-19&quot;:68.89},{&quot;2026-06-20&quot;:68.89},{&quot;2026-06-21&quot;:68.89},{&quot;2026-06-22&quot;:68.89},{&quot;2026-06-23&quot;:68.03},{&quot;2026-06-24&quot;:67.61},{&quot;2026-06-25&quot;:67.61},{&quot;2026-06-26&quot;:67.61},{&quot;2026-06-27&quot;:67.61},{&quot;2026-06-28&quot;:67.61},{&quot;2026-06-29&quot;:67.61},{&quot;2026-06-30&quot;:67.61},{&quot;2026-07-01&quot;:67.61},{&quot;2026-07-02&quot;:67.61},{&quot;2026-07-03&quot;:67.61},{&quot;2026-07-04&quot;:67.61},{&quot;2026-07-05&quot;:67.31},{&quot;2026-07-06&quot;:67.31},{&quot;2026-07-07&quot;:67.31},{&quot;2026-07-08&quot;:66.81},{&quot;2026-07-09&quot;:66.81},{&quot;2026-07-10&quot;:66.81},{&quot;2026-07-11&quot;:66.29},{&quot;2026-07-12&quot;:66.29},{&quot;2026-07-13&quot;:66.29},{&quot;2026-07-14&quot;:66.06},{&quot;2026-07-15&quot;:66.06},{&quot;2026-07-16&quot;:66.06},{&quot;2026-07-17&quot;:65.88},{&quot;2026-07-18&quot;:65.88},{&quot;2026-07-19&quot;:65.88},{&quot;2026-07-20&quot;:65.88},{&quot;2026-07-21&quot;:65.88},{&quot;2026-07-23&quot;:65.88},{&quot;2026-07-25&quot;:65.78},{&quot;2026-07-26&quot;:65.78},{&quot;2026-07-27&quot;:65.78},{&quot;2026-07-28&quot;:65.78},{&quot;2026-07-29&quot;:65.78},{&quot;2026-07-30&quot;:65.78},{&quot;2026-07-31&quot;:65.78},{&quot;2026-08-01&quot;:65.78},{&quot;2026-08-02&quot;:65.62},{&quot;2026-08-03&quot;:65.49},{&quot;2026-08-04&quot;:65.49},{&quot;2026-08-05&quot;:65.49},{&quot;2026-08-07&quot;:65.49},{&quot;2026-08-08&quot;:65.49},{&quot;2026-08-09&quot;:65.49},{&quot;2026-08-10&quot;:65.49},{&quot;2026-08-11&quot;:65.49},{&quot;2026-08-12&quot;:65.49},{&quot;2026-08-13&quot;:63.91},{&quot;2026-08-14&quot;:62.97},{&quot;2026-08-15&quot;:62.97},{&quot;2026-08-16&quot;:62.97},{&quot;2026-08-17&quot;:62.97},{&quot;2026-08-18&quot;:62.48},{&quot;2026-08-19&quot;:62.48},{&quot;2026-08-20&quot;:62.48},{&quot;2026-08-21&quot;:61.99},{&quot;2026-08-22&quot;:61.99},{&quot;2026-08-23&quot;:61.99},{&quot;2026-08-24&quot;:61.99},{&quot;2026-08-25&quot;:61.99},{&quot;2026-08-26&quot;:61.84},{&quot;2026-08-27&quot;:61.84},{&quot;2026-08-28&quot;:61.84},{&quot;2026-08-29&quot;:61.84},{&quot;2026-08-30&quot;:61.84},{&quot;2026-08-31&quot;:61.84},{&quot;2026-09-01&quot;:61.84},{&quot;2026-09-02&quot;:61.84},{&quot;2026-09-03&quot;:61.84},{&quot;2026-09-04&quot;:61.84},{&quot;2026-09-05&quot;:61.84},{&quot;2026-09-06&quot;:61.84},{&quot;2026-09-07&quot;:61.84},{&quot;2026-09-08&quot;:61.84},{&quot;2026-09-09&quot;:61.84},{&quot;2026-09-10&quot;:61.56},{&quot;2026-09-11&quot;:61.56}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:60.28},{&quot;2026-06-12&quot;:59.89},{&quot;2026-06-13&quot;:60.66},{&quot;2026-06-14&quot;:60.63},{&quot;2026-06-15&quot;:60.87},{&quot;2026-06-16&quot;:61.79},{&quot;2026-06-17&quot;:62.02},{&quot;2026-06-18&quot;:61.92},{&quot;2026-06-19&quot;:61.92},{&quot;2026-06-20&quot;:62.07},{&quot;2026-06-21&quot;:61.91},{&quot;2026-06-22&quot;:61.87},{&quot;2026-06-23&quot;:61.87},{&quot;2026-06-24&quot;:61.46},{&quot;2026-06-25&quot;:61.06},{&quot;2026-06-26&quot;:60.29},{&quot;2026-06-27&quot;:60.29},{&quot;2026-06-28&quot;:60.29},{&quot;2026-06-29&quot;:60.29},{&quot;2026-06-30&quot;:60.29},{&quot;2026-07-01&quot;:60.29},{&quot;2026-07-02&quot;:60.29},{&quot;2026-07-03&quot;:60.46},{&quot;2026-07-04&quot;:60.3},{&quot;2026-07-05&quot;:60.3},{&quot;2026-07-06&quot;:59.93},{&quot;2026-07-07&quot;:59.93},{&quot;2026-07-08&quot;:59.93},{&quot;2026-07-09&quot;:60.29},{&quot;2026-07-10&quot;:60.01},{&quot;2026-07-11&quot;:60.01},{&quot;2026-07-12&quot;:60.17},{&quot;2026-07-13&quot;:60.17},{&quot;2026-07-14&quot;:60.09},{&quot;2026-07-15&quot;:59.82},{&quot;2026-07-16&quot;:59.82},{&quot;2026-07-17&quot;:59.82},{&quot;2026-07-18&quot;:59.82},{&quot;2026-07-19&quot;:59.99},{&quot;2026-07-20&quot;:60.08},{&quot;2026-07-21&quot;:59.13},{&quot;2026-07-23&quot;:58.52},{&quot;2026-07-25&quot;:58.03},{&quot;2026-07-26&quot;:58.03},{&quot;2026-07-27&quot;:58.03},{&quot;2026-07-28&quot;:58.03},{&quot;2026-07-29&quot;:58.03},{&quot;2026-07-30&quot;:58.03},{&quot;2026-07-31&quot;:57.41},{&quot;2026-08-01&quot;:57.23},{&quot;2026-08-02&quot;:57.23},{&quot;2026-08-03&quot;:57.23},{&quot;2026-08-04&quot;:57.18},{&quot;2026-08-05&quot;:57.18},{&quot;2026-08-07&quot;:56.48},{&quot;2026-08-08&quot;:56.18},{&quot;2026-08-09&quot;:56.18},{&quot;2026-08-10&quot;:56.04},{&quot;2026-08-11&quot;:56.04},{&quot;2026-08-12&quot;:56.04},{&quot;2026-08-13&quot;:55.69},{&quot;2026-08-14&quot;:55.69},{&quot;2026-08-15&quot;:55.69},{&quot;2026-08-16&quot;:55.69},{&quot;2026-08-17&quot;:55.45},{&quot;2026-08-18&quot;:55.11},{&quot;2026-08-19&quot;:55.11},{&quot;2026-08-20&quot;:55.11},{&quot;2026-08-21&quot;:55.11},{&quot;2026-08-22&quot;:55.0},{&quot;2026-08-23&quot;:55.0},{&quot;2026-08-24&quot;:55.0},{&quot;2026-08-25&quot;:55.0},{&quot;2026-08-26&quot;:54.47},{&quot;2026-08-27&quot;:54.47},{&quot;2026-08-28&quot;:54.47},{&quot;2026-08-29&quot;:54.47},{&quot;2026-08-30&quot;:53.67},{&quot;2026-08-31&quot;:53.66},{&quot;2026-09-01&quot;:53.66},{&quot;2026-09-02&quot;:53.64},{&quot;2026-09-03&quot;:53.73},{&quot;2026-09-04&quot;:53.51},{&quot;2026-09-05&quot;:53.51},{&quot;2026-09-06&quot;:53.95},{&quot;2026-09-07&quot;:53.97},{&quot;2026-09-08&quot;:53.95},{&quot;2026-09-09&quot;:53.97},{&quot;2026-09-10&quot;:54.34},{&quot;2026-09-11&quot;:54.59}]}"
        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="49469"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mh2 ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

        <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">
            Marsh Flats
        </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="Marsh Flats" src="https://cards.scryfall.io/large/front/9/d/9db3ba6d-eb7f-4f5b-9a3b-c6239c3baa42.jpg?1783926796" />
    </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">
                $30.69
              </span>

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $38.95
              </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-10&quot;:35.14},{&quot;2026-06-11&quot;:35.14},{&quot;2026-06-12&quot;:34.91},{&quot;2026-06-13&quot;:34.91},{&quot;2026-06-14&quot;:35.4},{&quot;2026-06-15&quot;:35.4},{&quot;2026-06-16&quot;:35.4},{&quot;2026-06-17&quot;:36.18},{&quot;2026-06-18&quot;:36.18},{&quot;2026-06-19&quot;:36.18},{&quot;2026-06-20&quot;:36.18},{&quot;2026-06-21&quot;:36.18},{&quot;2026-06-22&quot;:36.86},{&quot;2026-06-23&quot;:37.19},{&quot;2026-06-24&quot;:37.81},{&quot;2026-06-25&quot;:38.06},{&quot;2026-06-26&quot;:38.06},{&quot;2026-06-27&quot;:38.06},{&quot;2026-06-28&quot;:38.06},{&quot;2026-06-29&quot;:38.06},{&quot;2026-06-30&quot;:38.06},{&quot;2026-07-01&quot;:38.06},{&quot;2026-07-02&quot;:38.06},{&quot;2026-07-03&quot;:38.06},{&quot;2026-07-04&quot;:38.06},{&quot;2026-07-05&quot;:38.06},{&quot;2026-07-06&quot;:38.06},{&quot;2026-07-07&quot;:38.06},{&quot;2026-07-08&quot;:38.44},{&quot;2026-07-09&quot;:38.44},{&quot;2026-07-10&quot;:38.79},{&quot;2026-07-11&quot;:38.79},{&quot;2026-07-12&quot;:38.79},{&quot;2026-07-13&quot;:38.79},{&quot;2026-07-14&quot;:39.44},{&quot;2026-07-15&quot;:39.89},{&quot;2026-07-16&quot;:39.89},{&quot;2026-07-17&quot;:39.89},{&quot;2026-07-18&quot;:39.89},{&quot;2026-07-19&quot;:40.2},{&quot;2026-07-20&quot;:40.2},{&quot;2026-07-21&quot;:40.0},{&quot;2026-07-23&quot;:40.0},{&quot;2026-07-25&quot;:40.0},{&quot;2026-07-26&quot;:40.0},{&quot;2026-07-27&quot;:39.91},{&quot;2026-07-29&quot;:39.91},{&quot;2026-07-30&quot;:39.91},{&quot;2026-07-31&quot;:39.91},{&quot;2026-08-01&quot;:39.91},{&quot;2026-08-02&quot;:39.91},{&quot;2026-08-03&quot;:39.91},{&quot;2026-08-04&quot;:39.91},{&quot;2026-08-05&quot;:39.91},{&quot;2026-08-07&quot;:39.68},{&quot;2026-08-08&quot;:39.68},{&quot;2026-08-09&quot;:39.68},{&quot;2026-08-10&quot;:39.68},{&quot;2026-08-11&quot;:39.42},{&quot;2026-08-12&quot;:39.31},{&quot;2026-08-13&quot;:39.44},{&quot;2026-08-14&quot;:39.5},{&quot;2026-08-15&quot;:39.5},{&quot;2026-08-16&quot;:39.5},{&quot;2026-08-17&quot;:39.5},{&quot;2026-08-18&quot;:39.5},{&quot;2026-08-19&quot;:39.3},{&quot;2026-08-20&quot;:39.3},{&quot;2026-08-21&quot;:39.37},{&quot;2026-08-22&quot;:39.06},{&quot;2026-08-23&quot;:39.06},{&quot;2026-08-24&quot;:39.06},{&quot;2026-08-25&quot;:39.06},{&quot;2026-08-26&quot;:39.37},{&quot;2026-08-27&quot;:38.95},{&quot;2026-08-28&quot;:38.95},{&quot;2026-08-29&quot;:38.95},{&quot;2026-08-30&quot;:38.95},{&quot;2026-08-31&quot;:38.95},{&quot;2026-09-01&quot;:38.95},{&quot;2026-09-02&quot;:38.95},{&quot;2026-09-03&quot;:38.95},{&quot;2026-09-04&quot;:38.95},{&quot;2026-09-05&quot;:38.95},{&quot;2026-09-06&quot;:38.95},{&quot;2026-09-07&quot;:38.95},{&quot;2026-09-08&quot;:38.95},{&quot;2026-09-09&quot;:38.95},{&quot;2026-09-10&quot;:38.95},{&quot;2026-09-11&quot;:38.95}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:31.56},{&quot;2026-06-11&quot;:31.24},{&quot;2026-06-12&quot;:31.35},{&quot;2026-06-13&quot;:31.23},{&quot;2026-06-14&quot;:31.25},{&quot;2026-06-15&quot;:31.86},{&quot;2026-06-16&quot;:32.53},{&quot;2026-06-17&quot;:33.11},{&quot;2026-06-18&quot;:33.05},{&quot;2026-06-19&quot;:32.65},{&quot;2026-06-20&quot;:32.96},{&quot;2026-06-21&quot;:32.96},{&quot;2026-06-22&quot;:32.78},{&quot;2026-06-23&quot;:33.02},{&quot;2026-06-24&quot;:32.92},{&quot;2026-06-25&quot;:33.17},{&quot;2026-06-26&quot;:32.67},{&quot;2026-06-27&quot;:32.29},{&quot;2026-06-28&quot;:31.97},{&quot;2026-06-29&quot;:30.96},{&quot;2026-06-30&quot;:31.0},{&quot;2026-07-01&quot;:30.13},{&quot;2026-07-02&quot;:29.05},{&quot;2026-07-03&quot;:29.3},{&quot;2026-07-04&quot;:30.03},{&quot;2026-07-05&quot;:30.68},{&quot;2026-07-06&quot;:30.62},{&quot;2026-07-07&quot;:31.71},{&quot;2026-07-08&quot;:31.43},{&quot;2026-07-09&quot;:31.22},{&quot;2026-07-10&quot;:31.12},{&quot;2026-07-11&quot;:31.9},{&quot;2026-07-12&quot;:31.98},{&quot;2026-07-13&quot;:31.92},{&quot;2026-07-14&quot;:31.67},{&quot;2026-07-15&quot;:31.03},{&quot;2026-07-16&quot;:30.27},{&quot;2026-07-17&quot;:29.8},{&quot;2026-07-18&quot;:30.53},{&quot;2026-07-19&quot;:30.64},{&quot;2026-07-20&quot;:30.45},{&quot;2026-07-21&quot;:30.51},{&quot;2026-07-23&quot;:30.87},{&quot;2026-07-25&quot;:31.24},{&quot;2026-07-26&quot;:31.13},{&quot;2026-07-27&quot;:31.53},{&quot;2026-07-29&quot;:32.02},{&quot;2026-07-30&quot;:32.37},{&quot;2026-07-31&quot;:32.39},{&quot;2026-08-01&quot;:32.65},{&quot;2026-08-02&quot;:33.47},{&quot;2026-08-03&quot;:33.33},{&quot;2026-08-04&quot;:31.73},{&quot;2026-08-05&quot;:31.06},{&quot;2026-08-07&quot;:30.82},{&quot;2026-08-08&quot;:31.48},{&quot;2026-08-09&quot;:31.88},{&quot;2026-08-10&quot;:32.35},{&quot;2026-08-11&quot;:31.98},{&quot;2026-08-12&quot;:31.18},{&quot;2026-08-13&quot;:30.57},{&quot;2026-08-14&quot;:30.15},{&quot;2026-08-15&quot;:30.88},{&quot;2026-08-16&quot;:31.21},{&quot;2026-08-17&quot;:30.95},{&quot;2026-08-18&quot;:30.79},{&quot;2026-08-19&quot;:30.8},{&quot;2026-08-20&quot;:30.8},{&quot;2026-08-21&quot;:30.39},{&quot;2026-08-22&quot;:30.69},{&quot;2026-08-23&quot;:30.85},{&quot;2026-08-24&quot;:31.34},{&quot;2026-08-25&quot;:31.34},{&quot;2026-08-26&quot;:31.75},{&quot;2026-08-27&quot;:31.76},{&quot;2026-08-28&quot;:31.42},{&quot;2026-08-29&quot;:31.42},{&quot;2026-08-30&quot;:31.9},{&quot;2026-08-31&quot;:32.15},{&quot;2026-09-01&quot;:32.15},{&quot;2026-09-02&quot;:32.45},{&quot;2026-09-03&quot;:32.87},{&quot;2026-09-04&quot;:32.66},{&quot;2026-09-05&quot;:31.75},{&quot;2026-09-06&quot;:31.35},{&quot;2026-09-07&quot;:30.67},{&quot;2026-09-08&quot;:30.51},{&quot;2026-09-09&quot;:30.7},{&quot;2026-09-10&quot;:30.93},{&quot;2026-09-11&quot;:30.69}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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

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

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

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

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Phyrexian Tower
        </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="Phyrexian Tower" src="https://cards.scryfall.io/large/front/c/2/c25dc997-219f-44e9-9003-384f75a606a3.jpg?1783933754" />
    </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">
                $28.92
              </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">
                $34.69
              </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-10&quot;:32.27},{&quot;2026-06-11&quot;:32.27},{&quot;2026-06-12&quot;:32.27},{&quot;2026-06-13&quot;:32.27},{&quot;2026-06-14&quot;:32.68},{&quot;2026-06-15&quot;:32.68},{&quot;2026-06-16&quot;:32.68},{&quot;2026-06-17&quot;:32.68},{&quot;2026-06-18&quot;:32.62},{&quot;2026-06-19&quot;:32.62},{&quot;2026-06-20&quot;:32.62},{&quot;2026-06-21&quot;:32.57},{&quot;2026-06-22&quot;:32.57},{&quot;2026-06-23&quot;:32.57},{&quot;2026-06-24&quot;:32.57},{&quot;2026-06-25&quot;:32.57},{&quot;2026-06-26&quot;:32.57},{&quot;2026-06-27&quot;:32.57},{&quot;2026-06-28&quot;:32.62},{&quot;2026-06-29&quot;:32.62},{&quot;2026-06-30&quot;:32.62},{&quot;2026-07-01&quot;:32.62},{&quot;2026-07-02&quot;:32.62},{&quot;2026-07-03&quot;:32.62},{&quot;2026-07-04&quot;:32.62},{&quot;2026-07-05&quot;:32.62},{&quot;2026-07-06&quot;:32.62},{&quot;2026-07-07&quot;:32.62},{&quot;2026-07-08&quot;:32.62},{&quot;2026-07-09&quot;:32.62},{&quot;2026-07-10&quot;:32.62},{&quot;2026-07-11&quot;:32.62},{&quot;2026-07-12&quot;:32.62},{&quot;2026-07-13&quot;:32.62},{&quot;2026-07-14&quot;:33.18},{&quot;2026-07-15&quot;:33.18},{&quot;2026-07-16&quot;:33.18},{&quot;2026-07-17&quot;:33.18},{&quot;2026-07-18&quot;:33.18},{&quot;2026-07-19&quot;:33.18},{&quot;2026-07-20&quot;:33.18},{&quot;2026-07-21&quot;:33.18},{&quot;2026-07-23&quot;:33.85},{&quot;2026-07-25&quot;:33.85},{&quot;2026-07-26&quot;:33.85},{&quot;2026-07-27&quot;:33.85},{&quot;2026-07-29&quot;:33.85},{&quot;2026-07-30&quot;:33.85},{&quot;2026-07-31&quot;:33.85},{&quot;2026-08-01&quot;:33.85},{&quot;2026-08-02&quot;:33.85},{&quot;2026-08-03&quot;:33.85},{&quot;2026-08-04&quot;:33.85},{&quot;2026-08-05&quot;:33.85},{&quot;2026-08-07&quot;:33.85},{&quot;2026-08-08&quot;:33.85},{&quot;2026-08-09&quot;:33.85},{&quot;2026-08-10&quot;:33.85},{&quot;2026-08-11&quot;:33.85},{&quot;2026-08-12&quot;:33.85},{&quot;2026-08-13&quot;:33.85},{&quot;2026-08-14&quot;:33.85},{&quot;2026-08-15&quot;:33.85},{&quot;2026-08-16&quot;:33.85},{&quot;2026-08-17&quot;:33.85},{&quot;2026-08-18&quot;:33.85},{&quot;2026-08-19&quot;:33.85},{&quot;2026-08-20&quot;:33.85},{&quot;2026-08-21&quot;:33.85},{&quot;2026-08-22&quot;:33.85},{&quot;2026-08-23&quot;:33.85},{&quot;2026-08-24&quot;:33.85},{&quot;2026-08-25&quot;:33.85},{&quot;2026-08-26&quot;:34.49},{&quot;2026-08-27&quot;:34.33},{&quot;2026-08-28&quot;:34.54},{&quot;2026-08-29&quot;:34.54},{&quot;2026-08-30&quot;:34.54},{&quot;2026-08-31&quot;:34.54},{&quot;2026-09-01&quot;:34.54},{&quot;2026-09-02&quot;:34.54},{&quot;2026-09-03&quot;:34.54},{&quot;2026-09-04&quot;:34.54},{&quot;2026-09-05&quot;:34.54},{&quot;2026-09-06&quot;:34.54},{&quot;2026-09-07&quot;:34.54},{&quot;2026-09-08&quot;:34.54},{&quot;2026-09-09&quot;:34.69},{&quot;2026-09-10&quot;:34.69},{&quot;2026-09-11&quot;:34.69}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:27.52},{&quot;2026-06-11&quot;:27.86},{&quot;2026-06-12&quot;:28.05},{&quot;2026-06-13&quot;:28.05},{&quot;2026-06-14&quot;:28.05},{&quot;2026-06-15&quot;:27.91},{&quot;2026-06-16&quot;:28.15},{&quot;2026-06-17&quot;:28.15},{&quot;2026-06-18&quot;:28.15},{&quot;2026-06-19&quot;:28.15},{&quot;2026-06-20&quot;:28.15},{&quot;2026-06-21&quot;:28.22},{&quot;2026-06-22&quot;:28.35},{&quot;2026-06-23&quot;:28.32},{&quot;2026-06-24&quot;:28.51},{&quot;2026-06-25&quot;:28.51},{&quot;2026-06-26&quot;:28.63},{&quot;2026-06-27&quot;:28.61},{&quot;2026-06-28&quot;:28.61},{&quot;2026-06-29&quot;:28.86},{&quot;2026-06-30&quot;:28.86},{&quot;2026-07-01&quot;:28.86},{&quot;2026-07-02&quot;:28.79},{&quot;2026-07-03&quot;:28.63},{&quot;2026-07-04&quot;:28.63},{&quot;2026-07-05&quot;:28.49},{&quot;2026-07-06&quot;:28.41},{&quot;2026-07-07&quot;:28.4},{&quot;2026-07-08&quot;:28.2},{&quot;2026-07-09&quot;:28.17},{&quot;2026-07-10&quot;:28.17},{&quot;2026-07-11&quot;:28.17},{&quot;2026-07-12&quot;:28.06},{&quot;2026-07-13&quot;:28.06},{&quot;2026-07-14&quot;:28.06},{&quot;2026-07-15&quot;:27.87},{&quot;2026-07-16&quot;:28.18},{&quot;2026-07-17&quot;:28.18},{&quot;2026-07-18&quot;:28.18},{&quot;2026-07-19&quot;:28.2},{&quot;2026-07-20&quot;:28.2},{&quot;2026-07-21&quot;:28.2},{&quot;2026-07-23&quot;:28.03},{&quot;2026-07-25&quot;:28.06},{&quot;2026-07-26&quot;:27.97},{&quot;2026-07-27&quot;:27.97},{&quot;2026-07-29&quot;:27.62},{&quot;2026-07-30&quot;:27.72},{&quot;2026-07-31&quot;:27.72},{&quot;2026-08-01&quot;:27.96},{&quot;2026-08-02&quot;:27.58},{&quot;2026-08-03&quot;:27.29},{&quot;2026-08-04&quot;:27.01},{&quot;2026-08-05&quot;:26.87},{&quot;2026-08-07&quot;:26.97},{&quot;2026-08-08&quot;:26.91},{&quot;2026-08-09&quot;:26.91},{&quot;2026-08-10&quot;:26.89},{&quot;2026-08-11&quot;:26.64},{&quot;2026-08-12&quot;:26.35},{&quot;2026-08-13&quot;:26.38},{&quot;2026-08-14&quot;:26.53},{&quot;2026-08-15&quot;:26.53},{&quot;2026-08-16&quot;:26.56},{&quot;2026-08-17&quot;:26.75},{&quot;2026-08-18&quot;:26.75},{&quot;2026-08-19&quot;:27.04},{&quot;2026-08-20&quot;:27.04},{&quot;2026-08-21&quot;:27.04},{&quot;2026-08-22&quot;:27.24},{&quot;2026-08-23&quot;:27.31},{&quot;2026-08-24&quot;:27.41},{&quot;2026-08-25&quot;:27.41},{&quot;2026-08-26&quot;:28.2},{&quot;2026-08-27&quot;:28.28},{&quot;2026-08-28&quot;:28.33},{&quot;2026-08-29&quot;:28.33},{&quot;2026-08-30&quot;:28.33},{&quot;2026-08-31&quot;:28.33},{&quot;2026-09-01&quot;:28.33},{&quot;2026-09-02&quot;:28.62},{&quot;2026-09-03&quot;:28.62},{&quot;2026-09-04&quot;:28.97},{&quot;2026-09-05&quot;:28.97},{&quot;2026-09-06&quot;:28.97},{&quot;2026-09-07&quot;:28.82},{&quot;2026-09-08&quot;:28.82},{&quot;2026-09-09&quot;:28.82},{&quot;2026-09-10&quot;:28.82},{&quot;2026-09-11&quot;:28.92}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="15936"
  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-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">
            Grim Tutor
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $24.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="Grim Tutor" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/2/928558ab-e29a-44cb-ac2f-88443571f41a.jpg?1783930707" />

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Grim Tutor" src="https://cards.scryfall.io/large/front/9/2/928558ab-e29a-44cb-ac2f-88443571f41a.jpg?1783930707" />
    </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">
                $24.58
              </span>

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:26.04},{&quot;2026-06-14&quot;:26.04},{&quot;2026-06-15&quot;:26.04},{&quot;2026-06-16&quot;:25.57},{&quot;2026-06-17&quot;:25.57},{&quot;2026-06-18&quot;:25.69},{&quot;2026-06-19&quot;:26.14},{&quot;2026-06-20&quot;:26.14},{&quot;2026-06-21&quot;:26.14},{&quot;2026-06-22&quot;:26.14},{&quot;2026-06-23&quot;:26.14},{&quot;2026-06-24&quot;:26.14},{&quot;2026-06-25&quot;:26.14},{&quot;2026-06-26&quot;:26.14},{&quot;2026-06-27&quot;:26.14},{&quot;2026-06-28&quot;:26.14},{&quot;2026-06-29&quot;:26.18},{&quot;2026-06-30&quot;:26.1},{&quot;2026-07-01&quot;:26.1},{&quot;2026-07-02&quot;:26.1},{&quot;2026-07-03&quot;:26.1},{&quot;2026-07-04&quot;:26.1},{&quot;2026-07-05&quot;:26.1},{&quot;2026-07-06&quot;:26.41},{&quot;2026-07-07&quot;:26.41},{&quot;2026-07-08&quot;:26.41},{&quot;2026-07-09&quot;:26.41},{&quot;2026-07-10&quot;:26.41},{&quot;2026-07-11&quot;:26.41},{&quot;2026-07-12&quot;:26.41},{&quot;2026-07-13&quot;:26.41},{&quot;2026-07-14&quot;:26.41},{&quot;2026-07-15&quot;:26.61},{&quot;2026-07-16&quot;:26.97},{&quot;2026-07-17&quot;:26.97},{&quot;2026-07-18&quot;:26.97},{&quot;2026-07-19&quot;:26.97},{&quot;2026-07-20&quot;:26.97},{&quot;2026-07-21&quot;:26.97},{&quot;2026-07-22&quot;:26.97},{&quot;2026-07-23&quot;:26.97},{&quot;2026-07-24&quot;:27.15},{&quot;2026-07-25&quot;:27.17},{&quot;2026-07-26&quot;:27.17},{&quot;2026-07-27&quot;:27.34},{&quot;2026-07-28&quot;:27.34},{&quot;2026-07-29&quot;:27.34},{&quot;2026-07-30&quot;:27.34},{&quot;2026-07-31&quot;:27.34},{&quot;2026-08-01&quot;:27.34},{&quot;2026-08-02&quot;:27.34},{&quot;2026-08-03&quot;:27.34},{&quot;2026-08-04&quot;:27.34},{&quot;2026-08-05&quot;:27.35},{&quot;2026-08-07&quot;:27.51},{&quot;2026-08-08&quot;:27.51},{&quot;2026-08-09&quot;:27.51},{&quot;2026-08-10&quot;:27.51},{&quot;2026-08-11&quot;:27.51},{&quot;2026-08-12&quot;:27.67},{&quot;2026-08-13&quot;:27.67},{&quot;2026-08-14&quot;:27.67},{&quot;2026-08-15&quot;:27.67},{&quot;2026-08-16&quot;:27.67},{&quot;2026-08-17&quot;:27.67},{&quot;2026-08-18&quot;:27.67},{&quot;2026-08-19&quot;:27.67},{&quot;2026-08-20&quot;:27.67},{&quot;2026-08-21&quot;:27.67},{&quot;2026-08-22&quot;:27.66},{&quot;2026-08-23&quot;:27.66},{&quot;2026-08-24&quot;:27.88},{&quot;2026-08-25&quot;:27.88},{&quot;2026-08-26&quot;:27.88},{&quot;2026-08-27&quot;:27.89},{&quot;2026-08-28&quot;:27.85},{&quot;2026-08-29&quot;:27.85},{&quot;2026-08-30&quot;:27.85},{&quot;2026-08-31&quot;:27.94},{&quot;2026-09-01&quot;:27.89},{&quot;2026-09-02&quot;:27.89},{&quot;2026-09-03&quot;:27.98},{&quot;2026-09-04&quot;:27.98},{&quot;2026-09-05&quot;:27.98},{&quot;2026-09-06&quot;:27.97},{&quot;2026-09-07&quot;:28.0},{&quot;2026-09-08&quot;:28.0},{&quot;2026-09-09&quot;:28.0},{&quot;2026-09-10&quot;:28.06},{&quot;2026-09-11&quot;:28.06}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:26.62},{&quot;2026-06-14&quot;:26.62},{&quot;2026-06-15&quot;:27.13},{&quot;2026-06-16&quot;:26.62},{&quot;2026-06-17&quot;:26.56},{&quot;2026-06-18&quot;:26.83},{&quot;2026-06-19&quot;:26.52},{&quot;2026-06-20&quot;:26.58},{&quot;2026-06-21&quot;:27.08},{&quot;2026-06-22&quot;:26.77},{&quot;2026-06-23&quot;:26.77},{&quot;2026-06-24&quot;:26.77},{&quot;2026-06-25&quot;:26.57},{&quot;2026-06-26&quot;:26.55},{&quot;2026-06-27&quot;:26.55},{&quot;2026-06-28&quot;:26.38},{&quot;2026-06-29&quot;:26.43},{&quot;2026-06-30&quot;:26.43},{&quot;2026-07-01&quot;:25.81},{&quot;2026-07-02&quot;:25.64},{&quot;2026-07-03&quot;:25.32},{&quot;2026-07-04&quot;:25.22},{&quot;2026-07-05&quot;:25.22},{&quot;2026-07-06&quot;:24.91},{&quot;2026-07-07&quot;:24.22},{&quot;2026-07-08&quot;:24.27},{&quot;2026-07-09&quot;:24.27},{&quot;2026-07-10&quot;:24.65},{&quot;2026-07-11&quot;:24.55},{&quot;2026-07-12&quot;:24.71},{&quot;2026-07-13&quot;:24.71},{&quot;2026-07-14&quot;:25.16},{&quot;2026-07-15&quot;:25.53},{&quot;2026-07-16&quot;:25.53},{&quot;2026-07-17&quot;:25.33},{&quot;2026-07-18&quot;:25.55},{&quot;2026-07-19&quot;:25.66},{&quot;2026-07-20&quot;:25.66},{&quot;2026-07-21&quot;:25.69},{&quot;2026-07-22&quot;:26.1},{&quot;2026-07-23&quot;:26.17},{&quot;2026-07-24&quot;:26.42},{&quot;2026-07-25&quot;:26.06},{&quot;2026-07-26&quot;:25.96},{&quot;2026-07-27&quot;:25.79},{&quot;2026-07-28&quot;:25.79},{&quot;2026-07-29&quot;:25.71},{&quot;2026-07-30&quot;:26.09},{&quot;2026-07-31&quot;:25.3},{&quot;2026-08-01&quot;:25.2},{&quot;2026-08-02&quot;:25.39},{&quot;2026-08-03&quot;:25.02},{&quot;2026-08-04&quot;:25.43},{&quot;2026-08-05&quot;:25.43},{&quot;2026-08-07&quot;:25.44},{&quot;2026-08-08&quot;:25.44},{&quot;2026-08-09&quot;:25.44},{&quot;2026-08-10&quot;:25.44},{&quot;2026-08-11&quot;:25.05},{&quot;2026-08-12&quot;:25.16},{&quot;2026-08-13&quot;:25.4},{&quot;2026-08-14&quot;:25.13},{&quot;2026-08-15&quot;:25.48},{&quot;2026-08-16&quot;:25.48},{&quot;2026-08-17&quot;:25.03},{&quot;2026-08-18&quot;:24.97},{&quot;2026-08-19&quot;:24.73},{&quot;2026-08-20&quot;:24.34},{&quot;2026-08-21&quot;:24.65},{&quot;2026-08-22&quot;:24.2},{&quot;2026-08-23&quot;:24.02},{&quot;2026-08-24&quot;:24.66},{&quot;2026-08-25&quot;:24.57},{&quot;2026-08-26&quot;:24.92},{&quot;2026-08-27&quot;:25.58},{&quot;2026-08-28&quot;:25.62},{&quot;2026-08-29&quot;:25.62},{&quot;2026-08-30&quot;:24.53},{&quot;2026-08-31&quot;:24.53},{&quot;2026-09-01&quot;:24.32},{&quot;2026-09-02&quot;:24.37},{&quot;2026-09-03&quot;:24.43},{&quot;2026-09-04&quot;:24.43},{&quot;2026-09-05&quot;:24.09},{&quot;2026-09-06&quot;:24.09},{&quot;2026-09-07&quot;:24.03},{&quot;2026-09-08&quot;:23.32},{&quot;2026-09-09&quot;:23.31},{&quot;2026-09-10&quot;:23.42},{&quot;2026-09-11&quot;:24.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="52989"
  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-mb2 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">
            Cabal Coffers
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $20.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="Cabal Coffers" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/b/0b1cbebd-9552-4628-bbb7-e235a812063e.jpg?1783910587" />

        <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">
            Cabal Coffers
        </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="Cabal Coffers" src="https://cards.scryfall.io/large/front/0/b/0b1cbebd-9552-4628-bbb7-e235a812063e.jpg?1783910587" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:21.82},{&quot;2026-06-11&quot;:21.81},{&quot;2026-06-12&quot;:22.06},{&quot;2026-06-13&quot;:22.42},{&quot;2026-06-14&quot;:22.77},{&quot;2026-06-15&quot;:22.77},{&quot;2026-06-16&quot;:22.76},{&quot;2026-06-17&quot;:22.76},{&quot;2026-06-18&quot;:22.96},{&quot;2026-06-19&quot;:23.16},{&quot;2026-06-20&quot;:23.16},{&quot;2026-06-21&quot;:23.16},{&quot;2026-06-22&quot;:23.19},{&quot;2026-06-23&quot;:23.1},{&quot;2026-06-24&quot;:22.9},{&quot;2026-06-25&quot;:23.03},{&quot;2026-06-26&quot;:23.07},{&quot;2026-06-27&quot;:23.17},{&quot;2026-06-28&quot;:23.17},{&quot;2026-06-29&quot;:23.08},{&quot;2026-06-30&quot;:23.06},{&quot;2026-07-01&quot;:23.01},{&quot;2026-07-02&quot;:23.2},{&quot;2026-07-03&quot;:23.2},{&quot;2026-07-04&quot;:23.35},{&quot;2026-07-05&quot;:23.38},{&quot;2026-07-06&quot;:23.23},{&quot;2026-07-07&quot;:23.34},{&quot;2026-07-08&quot;:23.75},{&quot;2026-07-09&quot;:23.9},{&quot;2026-07-10&quot;:24.05},{&quot;2026-07-11&quot;:24.05},{&quot;2026-07-12&quot;:23.96},{&quot;2026-07-13&quot;:23.93},{&quot;2026-07-14&quot;:23.9},{&quot;2026-07-15&quot;:24.0},{&quot;2026-07-16&quot;:23.59},{&quot;2026-07-17&quot;:23.59},{&quot;2026-07-18&quot;:23.36},{&quot;2026-07-19&quot;:23.15},{&quot;2026-07-20&quot;:23.14},{&quot;2026-07-21&quot;:23.14},{&quot;2026-07-23&quot;:23.05},{&quot;2026-07-25&quot;:22.98},{&quot;2026-07-26&quot;:23.07},{&quot;2026-07-27&quot;:23.1},{&quot;2026-07-29&quot;:23.18},{&quot;2026-07-30&quot;:23.18},{&quot;2026-07-31&quot;:22.83},{&quot;2026-08-01&quot;:22.72},{&quot;2026-08-02&quot;:22.6},{&quot;2026-08-03&quot;:22.24},{&quot;2026-08-04&quot;:22.22},{&quot;2026-08-05&quot;:22.06},{&quot;2026-08-07&quot;:21.27},{&quot;2026-08-08&quot;:21.27},{&quot;2026-08-09&quot;:21.17},{&quot;2026-08-10&quot;:21.12},{&quot;2026-08-11&quot;:21.2},{&quot;2026-08-12&quot;:21.19},{&quot;2026-08-13&quot;:20.92},{&quot;2026-08-14&quot;:21.06},{&quot;2026-08-15&quot;:20.77},{&quot;2026-08-16&quot;:20.73},{&quot;2026-08-17&quot;:20.75},{&quot;2026-08-18&quot;:20.89},{&quot;2026-08-19&quot;:20.68},{&quot;2026-08-20&quot;:20.68},{&quot;2026-08-21&quot;:20.44},{&quot;2026-08-22&quot;:20.41},{&quot;2026-08-23&quot;:20.18},{&quot;2026-08-24&quot;:20.14},{&quot;2026-08-25&quot;:20.14},{&quot;2026-08-26&quot;:20.09},{&quot;2026-08-27&quot;:20.18},{&quot;2026-08-28&quot;:20.44},{&quot;2026-08-29&quot;:20.44},{&quot;2026-08-30&quot;:20.45},{&quot;2026-08-31&quot;:20.45},{&quot;2026-09-01&quot;:20.45},{&quot;2026-09-02&quot;:21.01},{&quot;2026-09-03&quot;:20.91},{&quot;2026-09-04&quot;:21.14},{&quot;2026-09-05&quot;:21.04},{&quot;2026-09-06&quot;:21.2},{&quot;2026-09-07&quot;:21.14},{&quot;2026-09-08&quot;:20.84},{&quot;2026-09-09&quot;:20.74},{&quot;2026-09-10&quot;:20.74},{&quot;2026-09-11&quot;:20.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="49506"
  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-mh3 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">
            Warren Soultrader
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Warren Soultrader
        </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 — Zombie Goblin 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-b'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Warren Soultrader" src="https://cards.scryfall.io/large/front/b/3/b334e4c6-d316-4141-8889-f95afcc04701.jpg?1784634565" />
    </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">
                $18.29
              </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">
                $17.94
              </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">$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-12&quot;:15.43},{&quot;2026-06-13&quot;:15.43},{&quot;2026-06-14&quot;:15.43},{&quot;2026-06-15&quot;:15.38},{&quot;2026-06-16&quot;:15.38},{&quot;2026-06-17&quot;:15.38},{&quot;2026-06-18&quot;:15.33},{&quot;2026-06-19&quot;:15.31},{&quot;2026-06-20&quot;:15.37},{&quot;2026-06-21&quot;:15.37},{&quot;2026-06-22&quot;:15.35},{&quot;2026-06-23&quot;:15.35},{&quot;2026-06-24&quot;:15.36},{&quot;2026-06-25&quot;:15.24},{&quot;2026-06-26&quot;:15.24},{&quot;2026-06-27&quot;:15.24},{&quot;2026-06-28&quot;:15.16},{&quot;2026-06-29&quot;:15.16},{&quot;2026-06-30&quot;:14.99},{&quot;2026-07-01&quot;:14.99},{&quot;2026-07-02&quot;:15.0},{&quot;2026-07-03&quot;:14.82},{&quot;2026-07-04&quot;:14.79},{&quot;2026-07-05&quot;:14.8},{&quot;2026-07-06&quot;:14.8},{&quot;2026-07-07&quot;:15.02},{&quot;2026-07-08&quot;:15.16},{&quot;2026-07-09&quot;:15.26},{&quot;2026-07-10&quot;:15.31},{&quot;2026-07-11&quot;:15.32},{&quot;2026-07-12&quot;:15.32},{&quot;2026-07-13&quot;:15.48},{&quot;2026-07-14&quot;:15.74},{&quot;2026-07-15&quot;:15.82},{&quot;2026-07-16&quot;:15.81},{&quot;2026-07-17&quot;:15.95},{&quot;2026-07-18&quot;:15.89},{&quot;2026-07-19&quot;:15.87},{&quot;2026-07-20&quot;:15.83},{&quot;2026-07-21&quot;:15.89},{&quot;2026-07-23&quot;:16.01},{&quot;2026-07-24&quot;:16.01},{&quot;2026-07-25&quot;:16.01},{&quot;2026-07-26&quot;:15.93},{&quot;2026-07-27&quot;:16.11},{&quot;2026-07-28&quot;:16.22},{&quot;2026-07-29&quot;:16.22},{&quot;2026-07-30&quot;:16.16},{&quot;2026-07-31&quot;:16.16},{&quot;2026-08-01&quot;:16.2},{&quot;2026-08-02&quot;:16.18},{&quot;2026-08-03&quot;:16.17},{&quot;2026-08-04&quot;:16.14},{&quot;2026-08-05&quot;:16.17},{&quot;2026-08-07&quot;:16.21},{&quot;2026-08-08&quot;:16.46},{&quot;2026-08-09&quot;:16.59},{&quot;2026-08-10&quot;:16.59},{&quot;2026-08-11&quot;:16.51},{&quot;2026-08-12&quot;:16.7},{&quot;2026-08-13&quot;:16.59},{&quot;2026-08-14&quot;:16.51},{&quot;2026-08-15&quot;:16.4},{&quot;2026-08-16&quot;:16.14},{&quot;2026-08-17&quot;:16.11},{&quot;2026-08-18&quot;:16.28},{&quot;2026-08-19&quot;:16.09},{&quot;2026-08-20&quot;:16.09},{&quot;2026-08-21&quot;:15.75},{&quot;2026-08-22&quot;:15.66},{&quot;2026-08-23&quot;:15.91},{&quot;2026-08-24&quot;:16.13},{&quot;2026-08-25&quot;:16.43},{&quot;2026-08-26&quot;:16.81},{&quot;2026-08-27&quot;:16.97},{&quot;2026-08-28&quot;:17.36},{&quot;2026-08-29&quot;:17.36},{&quot;2026-08-30&quot;:17.96},{&quot;2026-08-31&quot;:18.24},{&quot;2026-09-01&quot;:18.25},{&quot;2026-09-02&quot;:18.16},{&quot;2026-09-03&quot;:18.39},{&quot;2026-09-04&quot;:18.8},{&quot;2026-09-05&quot;:18.72},{&quot;2026-09-06&quot;:18.5},{&quot;2026-09-07&quot;:18.5},{&quot;2026-09-08&quot;:18.21},{&quot;2026-09-09&quot;:17.91},{&quot;2026-09-10&quot;:17.95},{&quot;2026-09-11&quot;:17.94}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:13.84},{&quot;2026-06-13&quot;:13.22},{&quot;2026-06-14&quot;:13.21},{&quot;2026-06-15&quot;:13.25},{&quot;2026-06-16&quot;:13.58},{&quot;2026-06-17&quot;:13.83},{&quot;2026-06-18&quot;:13.55},{&quot;2026-06-19&quot;:13.7},{&quot;2026-06-20&quot;:13.42},{&quot;2026-06-21&quot;:13.04},{&quot;2026-06-22&quot;:13.28},{&quot;2026-06-23&quot;:13.1},{&quot;2026-06-24&quot;:12.91},{&quot;2026-06-25&quot;:12.54},{&quot;2026-06-26&quot;:12.19},{&quot;2026-06-27&quot;:12.03},{&quot;2026-06-28&quot;:12.04},{&quot;2026-06-29&quot;:12.53},{&quot;2026-06-30&quot;:12.82},{&quot;2026-07-01&quot;:12.77},{&quot;2026-07-02&quot;:13.24},{&quot;2026-07-03&quot;:13.01},{&quot;2026-07-04&quot;:13.09},{&quot;2026-07-05&quot;:13.4},{&quot;2026-07-06&quot;:13.33},{&quot;2026-07-07&quot;:13.39},{&quot;2026-07-08&quot;:13.59},{&quot;2026-07-09&quot;:14.4},{&quot;2026-07-10&quot;:14.61},{&quot;2026-07-11&quot;:13.79},{&quot;2026-07-12&quot;:14.43},{&quot;2026-07-13&quot;:14.13},{&quot;2026-07-14&quot;:14.04},{&quot;2026-07-15&quot;:14.21},{&quot;2026-07-16&quot;:14.78},{&quot;2026-07-17&quot;:14.56},{&quot;2026-07-18&quot;:13.9},{&quot;2026-07-19&quot;:13.78},{&quot;2026-07-20&quot;:14.34},{&quot;2026-07-21&quot;:14.36},{&quot;2026-07-23&quot;:14.56},{&quot;2026-07-24&quot;:14.12},{&quot;2026-07-25&quot;:14.2},{&quot;2026-07-26&quot;:13.36},{&quot;2026-07-27&quot;:14.37},{&quot;2026-07-28&quot;:14.84},{&quot;2026-07-29&quot;:14.67},{&quot;2026-07-30&quot;:15.06},{&quot;2026-07-31&quot;:15.2},{&quot;2026-08-01&quot;:14.91},{&quot;2026-08-02&quot;:14.75},{&quot;2026-08-03&quot;:14.89},{&quot;2026-08-04&quot;:14.68},{&quot;2026-08-05&quot;:14.05},{&quot;2026-08-07&quot;:15.34},{&quot;2026-08-08&quot;:15.08},{&quot;2026-08-09&quot;:16.59},{&quot;2026-08-10&quot;:16.12},{&quot;2026-08-11&quot;:15.71},{&quot;2026-08-12&quot;:15.36},{&quot;2026-08-13&quot;:15.83},{&quot;2026-08-14&quot;:15.6},{&quot;2026-08-15&quot;:14.99},{&quot;2026-08-16&quot;:15.26},{&quot;2026-08-17&quot;:15.87},{&quot;2026-08-18&quot;:15.74},{&quot;2026-08-19&quot;:15.43},{&quot;2026-08-20&quot;:15.43},{&quot;2026-08-21&quot;:15.51},{&quot;2026-08-22&quot;:16.11},{&quot;2026-08-23&quot;:16.03},{&quot;2026-08-24&quot;:16.26},{&quot;2026-08-25&quot;:16.92},{&quot;2026-08-26&quot;:16.87},{&quot;2026-08-27&quot;:17.11},{&quot;2026-08-28&quot;:17.06},{&quot;2026-08-29&quot;:17.06},{&quot;2026-08-30&quot;:17.22},{&quot;2026-08-31&quot;:17.33},{&quot;2026-09-01&quot;:17.65},{&quot;2026-09-02&quot;:17.11},{&quot;2026-09-03&quot;:17.4},{&quot;2026-09-04&quot;:17.36},{&quot;2026-09-05&quot;:17.54},{&quot;2026-09-06&quot;:17.07},{&quot;2026-09-07&quot;:16.69},{&quot;2026-09-08&quot;:17.11},{&quot;2026-09-09&quot;:17.89},{&quot;2026-09-10&quot;:18.09},{&quot;2026-09-11&quot;:18.29}]}"
        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="21258"
  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-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">
            Panharmonicon
        </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">
            $12.40
          </span>
        </div>
      </div>
    </div>

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Panharmonicon" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/2/c23c801e-b429-45d3-896e-289ec0497db0.jpg?1783921754" />

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Panharmonicon" src="https://cards.scryfall.io/large/front/c/2/c23c801e-b429-45d3-896e-289ec0497db0.jpg?1783921754" />
    </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">
                $12.40
              </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">
                $15.34
              </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">$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-08&quot;:16.29},{&quot;2026-06-10&quot;:16.29},{&quot;2026-06-11&quot;:16.29},{&quot;2026-06-12&quot;:16.34},{&quot;2026-06-13&quot;:16.34},{&quot;2026-06-14&quot;:16.13},{&quot;2026-06-15&quot;:16.13},{&quot;2026-06-16&quot;:16.14},{&quot;2026-06-17&quot;:15.75},{&quot;2026-06-18&quot;:15.84},{&quot;2026-06-19&quot;:15.83},{&quot;2026-06-20&quot;:15.83},{&quot;2026-06-21&quot;:15.83},{&quot;2026-06-22&quot;:15.83},{&quot;2026-06-24&quot;:15.83},{&quot;2026-06-25&quot;:15.83},{&quot;2026-06-26&quot;:15.83},{&quot;2026-06-27&quot;:15.83},{&quot;2026-06-28&quot;:15.83},{&quot;2026-06-29&quot;:15.83},{&quot;2026-06-30&quot;:15.83},{&quot;2026-07-01&quot;:15.86},{&quot;2026-07-02&quot;:15.8},{&quot;2026-07-03&quot;:15.8},{&quot;2026-07-04&quot;:15.8},{&quot;2026-07-05&quot;:15.8},{&quot;2026-07-06&quot;:15.8},{&quot;2026-07-07&quot;:15.85},{&quot;2026-07-08&quot;:15.85},{&quot;2026-07-09&quot;:15.85},{&quot;2026-07-10&quot;:15.85},{&quot;2026-07-11&quot;:15.85},{&quot;2026-07-12&quot;:15.85},{&quot;2026-07-13&quot;:15.85},{&quot;2026-07-14&quot;:15.63},{&quot;2026-07-15&quot;:15.63},{&quot;2026-07-16&quot;:15.63},{&quot;2026-07-17&quot;:15.63},{&quot;2026-07-18&quot;:15.63},{&quot;2026-07-19&quot;:15.61},{&quot;2026-07-20&quot;:15.61},{&quot;2026-07-21&quot;:15.65},{&quot;2026-07-23&quot;:15.65},{&quot;2026-07-25&quot;:15.65},{&quot;2026-07-26&quot;:15.65},{&quot;2026-07-27&quot;:15.65},{&quot;2026-07-29&quot;:15.63},{&quot;2026-07-30&quot;:15.63},{&quot;2026-07-31&quot;:15.63},{&quot;2026-08-01&quot;:15.66},{&quot;2026-08-02&quot;:15.75},{&quot;2026-08-03&quot;:15.73},{&quot;2026-08-04&quot;:15.73},{&quot;2026-08-05&quot;:15.73},{&quot;2026-08-07&quot;:15.74},{&quot;2026-08-08&quot;:15.74},{&quot;2026-08-09&quot;:15.74},{&quot;2026-08-10&quot;:15.74},{&quot;2026-08-11&quot;:15.72},{&quot;2026-08-12&quot;:15.72},{&quot;2026-08-13&quot;:15.67},{&quot;2026-08-14&quot;:15.67},{&quot;2026-08-15&quot;:15.71},{&quot;2026-08-16&quot;:15.71},{&quot;2026-08-17&quot;:15.71},{&quot;2026-08-18&quot;:15.71},{&quot;2026-08-19&quot;:15.71},{&quot;2026-08-20&quot;:15.71},{&quot;2026-08-21&quot;:15.71},{&quot;2026-08-22&quot;:15.74},{&quot;2026-08-23&quot;:15.74},{&quot;2026-08-24&quot;:15.56},{&quot;2026-08-25&quot;:15.56},{&quot;2026-08-26&quot;:15.51},{&quot;2026-08-27&quot;:15.32},{&quot;2026-08-28&quot;:15.32},{&quot;2026-08-29&quot;:15.32},{&quot;2026-08-30&quot;:15.32},{&quot;2026-08-31&quot;:15.39},{&quot;2026-09-01&quot;:15.39},{&quot;2026-09-02&quot;:15.65},{&quot;2026-09-03&quot;:15.65},{&quot;2026-09-04&quot;:15.65},{&quot;2026-09-05&quot;:15.65},{&quot;2026-09-06&quot;:15.62},{&quot;2026-09-07&quot;:15.34},{&quot;2026-09-08&quot;:15.34},{&quot;2026-09-09&quot;:15.34},{&quot;2026-09-10&quot;:15.34},{&quot;2026-09-11&quot;:15.34}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:13.77},{&quot;2026-06-10&quot;:13.87},{&quot;2026-06-11&quot;:13.93},{&quot;2026-06-12&quot;:14.06},{&quot;2026-06-13&quot;:14.06},{&quot;2026-06-14&quot;:13.8},{&quot;2026-06-15&quot;:13.25},{&quot;2026-06-16&quot;:13.25},{&quot;2026-06-17&quot;:13.14},{&quot;2026-06-18&quot;:12.85},{&quot;2026-06-19&quot;:12.65},{&quot;2026-06-20&quot;:12.68},{&quot;2026-06-21&quot;:12.68},{&quot;2026-06-22&quot;:12.76},{&quot;2026-06-24&quot;:12.9},{&quot;2026-06-25&quot;:13.06},{&quot;2026-06-26&quot;:13.06},{&quot;2026-06-27&quot;:13.06},{&quot;2026-06-28&quot;:13.06},{&quot;2026-06-29&quot;:13.04},{&quot;2026-06-30&quot;:13.04},{&quot;2026-07-01&quot;:13.12},{&quot;2026-07-02&quot;:12.93},{&quot;2026-07-03&quot;:12.93},{&quot;2026-07-04&quot;:12.95},{&quot;2026-07-05&quot;:13.03},{&quot;2026-07-06&quot;:13.03},{&quot;2026-07-07&quot;:12.94},{&quot;2026-07-08&quot;:12.89},{&quot;2026-07-09&quot;:12.89},{&quot;2026-07-10&quot;:12.96},{&quot;2026-07-11&quot;:12.99},{&quot;2026-07-12&quot;:12.99},{&quot;2026-07-13&quot;:12.99},{&quot;2026-07-14&quot;:13.06},{&quot;2026-07-15&quot;:13.08},{&quot;2026-07-16&quot;:13.06},{&quot;2026-07-17&quot;:13.05},{&quot;2026-07-18&quot;:13.03},{&quot;2026-07-19&quot;:13.02},{&quot;2026-07-20&quot;:13.02},{&quot;2026-07-21&quot;:13.02},{&quot;2026-07-23&quot;:13.01},{&quot;2026-07-25&quot;:12.98},{&quot;2026-07-26&quot;:13.09},{&quot;2026-07-27&quot;:13.14},{&quot;2026-07-29&quot;:13.28},{&quot;2026-07-30&quot;:13.48},{&quot;2026-07-31&quot;:13.79},{&quot;2026-08-01&quot;:13.79},{&quot;2026-08-02&quot;:14.21},{&quot;2026-08-03&quot;:14.51},{&quot;2026-08-04&quot;:14.51},{&quot;2026-08-05&quot;:14.49},{&quot;2026-08-07&quot;:14.43},{&quot;2026-08-08&quot;:14.43},{&quot;2026-08-09&quot;:14.43},{&quot;2026-08-10&quot;:14.25},{&quot;2026-08-11&quot;:14.25},{&quot;2026-08-12&quot;:14.12},{&quot;2026-08-13&quot;:14.12},{&quot;2026-08-14&quot;:13.99},{&quot;2026-08-15&quot;:13.95},{&quot;2026-08-16&quot;:14.03},{&quot;2026-08-17&quot;:13.84},{&quot;2026-08-18&quot;:13.78},{&quot;2026-08-19&quot;:13.63},{&quot;2026-08-20&quot;:13.63},{&quot;2026-08-21&quot;:13.47},{&quot;2026-08-22&quot;:13.47},{&quot;2026-08-23&quot;:13.42},{&quot;2026-08-24&quot;:13.43},{&quot;2026-08-25&quot;:13.43},{&quot;2026-08-26&quot;:13.48},{&quot;2026-08-27&quot;:13.48},{&quot;2026-08-28&quot;:13.19},{&quot;2026-08-29&quot;:13.19},{&quot;2026-08-30&quot;:13.19},{&quot;2026-08-31&quot;:12.73},{&quot;2026-09-01&quot;:12.73},{&quot;2026-09-02&quot;:12.31},{&quot;2026-09-03&quot;:12.34},{&quot;2026-09-04&quot;:12.46},{&quot;2026-09-05&quot;:12.65},{&quot;2026-09-06&quot;:12.67},{&quot;2026-09-07&quot;:12.63},{&quot;2026-09-08&quot;:12.52},{&quot;2026-09-09&quot;:12.48},{&quot;2026-09-10&quot;:12.4},{&quot;2026-09-11&quot;:12.4}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="73685"
  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">
            Flowering of the White Tree
        </span>


      </div>

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Flowering of the White Tree" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/2/2203b2cd-48e5-471a-85fe-dc81012e5d61.jpg?1783916332" />

        <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">
            Flowering of the White Tree
        </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 Enchantment</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Flowering of the White Tree" src="https://cards.scryfall.io/large/front/2/2/2203b2cd-48e5-471a-85fe-dc81012e5d61.jpg?1783916332" />
    </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">
                $12.24
              </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">
                $11.75
              </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">$7.50</span>
              <span class="text-xs text-grey-text">Credit: $9.75</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;:10.94},{&quot;2026-06-11&quot;:10.94},{&quot;2026-06-12&quot;:10.94},{&quot;2026-06-13&quot;:10.92},{&quot;2026-06-14&quot;:10.92},{&quot;2026-06-15&quot;:11.14},{&quot;2026-06-16&quot;:11.38},{&quot;2026-06-17&quot;:11.38},{&quot;2026-06-18&quot;:11.18},{&quot;2026-06-19&quot;:11.32},{&quot;2026-06-20&quot;:11.12},{&quot;2026-06-21&quot;:11.56},{&quot;2026-06-22&quot;:11.52},{&quot;2026-06-23&quot;:11.52},{&quot;2026-06-24&quot;:11.52},{&quot;2026-06-25&quot;:11.52},{&quot;2026-06-26&quot;:11.28},{&quot;2026-06-27&quot;:11.36},{&quot;2026-06-28&quot;:11.36},{&quot;2026-06-29&quot;:11.36},{&quot;2026-06-30&quot;:11.2},{&quot;2026-07-01&quot;:11.07},{&quot;2026-07-02&quot;:11.12},{&quot;2026-07-03&quot;:11.12},{&quot;2026-07-04&quot;:11.12},{&quot;2026-07-05&quot;:10.94},{&quot;2026-07-06&quot;:10.94},{&quot;2026-07-07&quot;:11.18},{&quot;2026-07-08&quot;:11.18},{&quot;2026-07-09&quot;:10.73},{&quot;2026-07-10&quot;:10.68},{&quot;2026-07-11&quot;:10.9},{&quot;2026-07-12&quot;:10.9},{&quot;2026-07-13&quot;:10.95},{&quot;2026-07-14&quot;:11.03},{&quot;2026-07-15&quot;:11.03},{&quot;2026-07-16&quot;:10.88},{&quot;2026-07-17&quot;:10.88},{&quot;2026-07-18&quot;:10.88},{&quot;2026-07-19&quot;:11.04},{&quot;2026-07-20&quot;:11.04},{&quot;2026-07-21&quot;:11.04},{&quot;2026-07-23&quot;:11.16},{&quot;2026-07-25&quot;:11.25},{&quot;2026-07-26&quot;:11.39},{&quot;2026-07-27&quot;:11.28},{&quot;2026-07-29&quot;:11.36},{&quot;2026-07-30&quot;:11.23},{&quot;2026-07-31&quot;:11.41},{&quot;2026-08-01&quot;:11.56},{&quot;2026-08-02&quot;:11.56},{&quot;2026-08-03&quot;:11.73},{&quot;2026-08-04&quot;:11.73},{&quot;2026-08-05&quot;:11.73},{&quot;2026-08-07&quot;:11.88},{&quot;2026-08-08&quot;:11.92},{&quot;2026-08-09&quot;:11.95},{&quot;2026-08-10&quot;:12.03},{&quot;2026-08-11&quot;:12.01},{&quot;2026-08-12&quot;:11.84},{&quot;2026-08-13&quot;:11.7},{&quot;2026-08-14&quot;:11.7},{&quot;2026-08-15&quot;:11.71},{&quot;2026-08-16&quot;:11.71},{&quot;2026-08-17&quot;:11.6},{&quot;2026-08-18&quot;:11.6},{&quot;2026-08-19&quot;:11.6},{&quot;2026-08-20&quot;:11.6},{&quot;2026-08-21&quot;:11.56},{&quot;2026-08-22&quot;:11.52},{&quot;2026-08-23&quot;:11.52},{&quot;2026-08-24&quot;:11.63},{&quot;2026-08-25&quot;:11.63},{&quot;2026-08-26&quot;:11.95},{&quot;2026-08-27&quot;:11.95},{&quot;2026-08-28&quot;:12.17},{&quot;2026-08-29&quot;:12.17},{&quot;2026-08-30&quot;:11.85},{&quot;2026-08-31&quot;:11.81},{&quot;2026-09-01&quot;:11.81},{&quot;2026-09-02&quot;:11.81},{&quot;2026-09-03&quot;:11.91},{&quot;2026-09-04&quot;:11.91},{&quot;2026-09-05&quot;:12.03},{&quot;2026-09-06&quot;:12.03},{&quot;2026-09-07&quot;:11.87},{&quot;2026-09-08&quot;:11.8},{&quot;2026-09-09&quot;:11.75},{&quot;2026-09-10&quot;:11.75},{&quot;2026-09-11&quot;:11.75}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:9.96},{&quot;2026-06-11&quot;:9.43},{&quot;2026-06-12&quot;:9.2},{&quot;2026-06-13&quot;:9.64},{&quot;2026-06-14&quot;:9.74},{&quot;2026-06-15&quot;:9.84},{&quot;2026-06-16&quot;:9.99},{&quot;2026-06-17&quot;:9.93},{&quot;2026-06-18&quot;:9.93},{&quot;2026-06-19&quot;:9.94},{&quot;2026-06-20&quot;:10.04},{&quot;2026-06-21&quot;:9.99},{&quot;2026-06-22&quot;:10.27},{&quot;2026-06-23&quot;:9.92},{&quot;2026-06-24&quot;:9.81},{&quot;2026-06-25&quot;:9.87},{&quot;2026-06-26&quot;:9.77},{&quot;2026-06-27&quot;:10.5},{&quot;2026-06-28&quot;:10.31},{&quot;2026-06-29&quot;:10.1},{&quot;2026-06-30&quot;:10.93},{&quot;2026-07-01&quot;:10.98},{&quot;2026-07-02&quot;:10.95},{&quot;2026-07-03&quot;:10.44},{&quot;2026-07-04&quot;:10.46},{&quot;2026-07-05&quot;:10.32},{&quot;2026-07-06&quot;:10.46},{&quot;2026-07-07&quot;:10.35},{&quot;2026-07-08&quot;:10.2},{&quot;2026-07-09&quot;:9.79},{&quot;2026-07-10&quot;:9.96},{&quot;2026-07-11&quot;:10.02},{&quot;2026-07-12&quot;:9.98},{&quot;2026-07-13&quot;:10.01},{&quot;2026-07-14&quot;:10.02},{&quot;2026-07-15&quot;:10.11},{&quot;2026-07-16&quot;:10.39},{&quot;2026-07-17&quot;:10.65},{&quot;2026-07-18&quot;:10.87},{&quot;2026-07-19&quot;:11.0},{&quot;2026-07-20&quot;:11.06},{&quot;2026-07-21&quot;:11.07},{&quot;2026-07-23&quot;:11.03},{&quot;2026-07-25&quot;:10.21},{&quot;2026-07-26&quot;:10.13},{&quot;2026-07-27&quot;:10.58},{&quot;2026-07-29&quot;:10.8},{&quot;2026-07-30&quot;:10.97},{&quot;2026-07-31&quot;:10.78},{&quot;2026-08-01&quot;:10.87},{&quot;2026-08-02&quot;:10.81},{&quot;2026-08-03&quot;:10.51},{&quot;2026-08-04&quot;:10.54},{&quot;2026-08-05&quot;:10.97},{&quot;2026-08-07&quot;:10.58},{&quot;2026-08-08&quot;:10.44},{&quot;2026-08-09&quot;:10.21},{&quot;2026-08-10&quot;:10.46},{&quot;2026-08-11&quot;:10.52},{&quot;2026-08-12&quot;:10.72},{&quot;2026-08-13&quot;:11.66},{&quot;2026-08-14&quot;:11.46},{&quot;2026-08-15&quot;:10.68},{&quot;2026-08-16&quot;:10.1},{&quot;2026-08-17&quot;:10.84},{&quot;2026-08-18&quot;:11.08},{&quot;2026-08-19&quot;:11.72},{&quot;2026-08-20&quot;:11.72},{&quot;2026-08-21&quot;:11.8},{&quot;2026-08-22&quot;:11.39},{&quot;2026-08-23&quot;:11.38},{&quot;2026-08-24&quot;:11.55},{&quot;2026-08-25&quot;:11.55},{&quot;2026-08-26&quot;:12.01},{&quot;2026-08-27&quot;:11.66},{&quot;2026-08-28&quot;:11.74},{&quot;2026-08-29&quot;:11.74},{&quot;2026-08-30&quot;:11.91},{&quot;2026-08-31&quot;:12.94},{&quot;2026-09-01&quot;:12.94},{&quot;2026-09-02&quot;:12.13},{&quot;2026-09-03&quot;:11.69},{&quot;2026-09-04&quot;:11.92},{&quot;2026-09-05&quot;:11.48},{&quot;2026-09-06&quot;:11.31},{&quot;2026-09-07&quot;:11.34},{&quot;2026-09-08&quot;:11.51},{&quot;2026-09-09&quot;:11.86},{&quot;2026-09-10&quot;:12.16},{&quot;2026-09-11&quot;:12.24}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="95213"
  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-fin 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">
            Starting Town
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Land — Town
      </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">
            $10.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="Starting Town" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/f/c/fc7d1912-7e27-49ef-bd98-375d975a42b0.jpg?1783906546" />

        <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">
            Starting Town
        </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 — Town</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="Starting Town" src="https://cards.scryfall.io/large/front/f/c/fc7d1912-7e27-49ef-bd98-375d975a42b0.jpg?1783906546" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $10.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">
                $16.01
              </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">$9.75</span>
              <span class="text-xs text-grey-text">Credit: $12.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;2026-06-13&quot;:19.79},{&quot;2026-06-14&quot;:19.79},{&quot;2026-06-15&quot;:19.37},{&quot;2026-06-16&quot;:18.96},{&quot;2026-06-17&quot;:18.88},{&quot;2026-06-18&quot;:18.88},{&quot;2026-06-19&quot;:18.88},{&quot;2026-06-20&quot;:18.97},{&quot;2026-06-21&quot;:19.0},{&quot;2026-06-22&quot;:19.0},{&quot;2026-06-23&quot;:19.0},{&quot;2026-06-24&quot;:18.87},{&quot;2026-06-25&quot;:18.75},{&quot;2026-06-26&quot;:18.75},{&quot;2026-06-27&quot;:18.75},{&quot;2026-06-28&quot;:18.75},{&quot;2026-06-29&quot;:18.71},{&quot;2026-06-30&quot;:18.59},{&quot;2026-07-01&quot;:18.91},{&quot;2026-07-02&quot;:18.91},{&quot;2026-07-03&quot;:18.91},{&quot;2026-07-04&quot;:19.05},{&quot;2026-07-05&quot;:19.05},{&quot;2026-07-06&quot;:19.14},{&quot;2026-07-07&quot;:19.26},{&quot;2026-07-08&quot;:19.26},{&quot;2026-07-09&quot;:19.4},{&quot;2026-07-10&quot;:19.18},{&quot;2026-07-11&quot;:18.9},{&quot;2026-07-12&quot;:18.9},{&quot;2026-07-13&quot;:18.89},{&quot;2026-07-14&quot;:18.86},{&quot;2026-07-15&quot;:18.65},{&quot;2026-07-16&quot;:17.92},{&quot;2026-07-17&quot;:16.38},{&quot;2026-07-18&quot;:15.8},{&quot;2026-07-19&quot;:15.9},{&quot;2026-07-20&quot;:16.04},{&quot;2026-07-21&quot;:16.11},{&quot;2026-07-22&quot;:16.11},{&quot;2026-07-23&quot;:16.11},{&quot;2026-07-24&quot;:15.99},{&quot;2026-07-25&quot;:15.09},{&quot;2026-07-26&quot;:15.09},{&quot;2026-07-27&quot;:15.09},{&quot;2026-07-28&quot;:15.51},{&quot;2026-07-29&quot;:15.51},{&quot;2026-07-30&quot;:15.57},{&quot;2026-07-31&quot;:15.42},{&quot;2026-08-01&quot;:15.42},{&quot;2026-08-02&quot;:15.18},{&quot;2026-08-03&quot;:14.95},{&quot;2026-08-04&quot;:14.88},{&quot;2026-08-05&quot;:14.55},{&quot;2026-08-07&quot;:14.28},{&quot;2026-08-08&quot;:14.04},{&quot;2026-08-09&quot;:14.42},{&quot;2026-08-10&quot;:14.41},{&quot;2026-08-11&quot;:13.93},{&quot;2026-08-12&quot;:14.15},{&quot;2026-08-13&quot;:14.0},{&quot;2026-08-14&quot;:14.04},{&quot;2026-08-15&quot;:14.23},{&quot;2026-08-16&quot;:14.09},{&quot;2026-08-17&quot;:14.93},{&quot;2026-08-18&quot;:14.86},{&quot;2026-08-19&quot;:15.09},{&quot;2026-08-20&quot;:15.13},{&quot;2026-08-21&quot;:15.1},{&quot;2026-08-22&quot;:15.1},{&quot;2026-08-23&quot;:15.33},{&quot;2026-08-24&quot;:15.51},{&quot;2026-08-25&quot;:15.51},{&quot;2026-08-26&quot;:15.03},{&quot;2026-08-27&quot;:14.87},{&quot;2026-08-28&quot;:14.87},{&quot;2026-08-29&quot;:14.87},{&quot;2026-08-30&quot;:14.95},{&quot;2026-08-31&quot;:15.07},{&quot;2026-09-01&quot;:15.11},{&quot;2026-09-02&quot;:15.12},{&quot;2026-09-03&quot;:15.01},{&quot;2026-09-04&quot;:15.22},{&quot;2026-09-05&quot;:15.27},{&quot;2026-09-06&quot;:15.27},{&quot;2026-09-07&quot;:15.29},{&quot;2026-09-08&quot;:15.53},{&quot;2026-09-09&quot;:15.55},{&quot;2026-09-10&quot;:15.51},{&quot;2026-09-11&quot;:16.01}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:9.7},{&quot;2026-06-14&quot;:9.57},{&quot;2026-06-15&quot;:9.32},{&quot;2026-06-16&quot;:9.1},{&quot;2026-06-17&quot;:9.03},{&quot;2026-06-18&quot;:8.83},{&quot;2026-06-19&quot;:9.03},{&quot;2026-06-20&quot;:9.15},{&quot;2026-06-21&quot;:8.77},{&quot;2026-06-22&quot;:8.72},{&quot;2026-06-23&quot;:8.88},{&quot;2026-06-24&quot;:9.2},{&quot;2026-06-25&quot;:9.25},{&quot;2026-06-26&quot;:9.07},{&quot;2026-06-27&quot;:8.12},{&quot;2026-06-28&quot;:8.39},{&quot;2026-06-29&quot;:8.82},{&quot;2026-06-30&quot;:9.0},{&quot;2026-07-01&quot;:9.2},{&quot;2026-07-02&quot;:8.95},{&quot;2026-07-03&quot;:8.24},{&quot;2026-07-04&quot;:8.67},{&quot;2026-07-05&quot;:8.99},{&quot;2026-07-06&quot;:9.12},{&quot;2026-07-07&quot;:9.11},{&quot;2026-07-08&quot;:9.56},{&quot;2026-07-09&quot;:9.92},{&quot;2026-07-10&quot;:9.7},{&quot;2026-07-11&quot;:9.97},{&quot;2026-07-12&quot;:9.41},{&quot;2026-07-13&quot;:8.64},{&quot;2026-07-14&quot;:8.67},{&quot;2026-07-15&quot;:8.84},{&quot;2026-07-16&quot;:9.33},{&quot;2026-07-17&quot;:9.29},{&quot;2026-07-18&quot;:9.15},{&quot;2026-07-19&quot;:8.8},{&quot;2026-07-20&quot;:8.08},{&quot;2026-07-21&quot;:7.72},{&quot;2026-07-22&quot;:7.25},{&quot;2026-07-23&quot;:7.52},{&quot;2026-07-24&quot;:7.32},{&quot;2026-07-25&quot;:7.56},{&quot;2026-07-26&quot;:7.35},{&quot;2026-07-27&quot;:7.66},{&quot;2026-07-28&quot;:7.85},{&quot;2026-07-29&quot;:7.86},{&quot;2026-07-30&quot;:7.84},{&quot;2026-07-31&quot;:8.76},{&quot;2026-08-01&quot;:9.01},{&quot;2026-08-02&quot;:8.99},{&quot;2026-08-03&quot;:8.88},{&quot;2026-08-04&quot;:9.02},{&quot;2026-08-05&quot;:9.17},{&quot;2026-08-07&quot;:8.25},{&quot;2026-08-08&quot;:8.48},{&quot;2026-08-09&quot;:8.34},{&quot;2026-08-10&quot;:8.06},{&quot;2026-08-11&quot;:8.89},{&quot;2026-08-12&quot;:9.22},{&quot;2026-08-13&quot;:9.33},{&quot;2026-08-14&quot;:8.46},{&quot;2026-08-15&quot;:8.48},{&quot;2026-08-16&quot;:8.44},{&quot;2026-08-17&quot;:9.99},{&quot;2026-08-18&quot;:10.41},{&quot;2026-08-19&quot;:10.52},{&quot;2026-08-20&quot;:10.45},{&quot;2026-08-21&quot;:10.46},{&quot;2026-08-22&quot;:9.13},{&quot;2026-08-23&quot;:10.05},{&quot;2026-08-24&quot;:10.39},{&quot;2026-08-25&quot;:10.02},{&quot;2026-08-26&quot;:10.06},{&quot;2026-08-27&quot;:9.71},{&quot;2026-08-28&quot;:10.02},{&quot;2026-08-29&quot;:10.02},{&quot;2026-08-30&quot;:11.17},{&quot;2026-08-31&quot;:11.12},{&quot;2026-09-01&quot;:10.24},{&quot;2026-09-02&quot;:10.46},{&quot;2026-09-03&quot;:10.14},{&quot;2026-09-04&quot;:9.6},{&quot;2026-09-05&quot;:9.51},{&quot;2026-09-06&quot;:9.61},{&quot;2026-09-07&quot;:10.28},{&quot;2026-09-08&quot;:10.58},{&quot;2026-09-09&quot;:10.34},{&quot;2026-09-10&quot;:10.08},{&quot;2026-09-11&quot;:10.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="95831"
  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-eoe 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">
            Godless Shrine
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Land — Plains Swamp
      </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">
            $8.87
          </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="Godless Shrine" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/c/8c542ea4-98c3-4c2d-9066-205ab7aa697a.jpg?1752947593" />

        <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">
            Godless Shrine
        </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 — Plains Swamp</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="Godless Shrine" src="https://cards.scryfall.io/large/front/8/c/8c542ea4-98c3-4c2d-9066-205ab7aa697a.jpg?1752947593" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-08&quot;:10.92},{&quot;2026-06-10&quot;:10.97},{&quot;2026-06-11&quot;:10.5},{&quot;2026-06-12&quot;:10.47},{&quot;2026-06-13&quot;:10.42},{&quot;2026-06-14&quot;:10.43},{&quot;2026-06-15&quot;:10.51},{&quot;2026-06-16&quot;:10.51},{&quot;2026-06-17&quot;:10.51},{&quot;2026-06-18&quot;:10.46},{&quot;2026-06-19&quot;:10.44},{&quot;2026-06-20&quot;:10.44},{&quot;2026-06-21&quot;:10.39},{&quot;2026-06-22&quot;:10.5},{&quot;2026-06-24&quot;:10.49},{&quot;2026-06-25&quot;:10.37},{&quot;2026-06-26&quot;:10.21},{&quot;2026-06-27&quot;:10.18},{&quot;2026-06-28&quot;:10.26},{&quot;2026-06-29&quot;:10.26},{&quot;2026-06-30&quot;:10.26},{&quot;2026-07-01&quot;:10.32},{&quot;2026-07-02&quot;:10.01},{&quot;2026-07-03&quot;:9.82},{&quot;2026-07-04&quot;:9.7},{&quot;2026-07-05&quot;:9.75},{&quot;2026-07-06&quot;:9.75},{&quot;2026-07-07&quot;:9.62},{&quot;2026-07-08&quot;:9.58},{&quot;2026-07-09&quot;:9.61},{&quot;2026-07-10&quot;:9.61},{&quot;2026-07-11&quot;:9.61},{&quot;2026-07-12&quot;:9.61},{&quot;2026-07-13&quot;:9.72},{&quot;2026-07-14&quot;:9.79},{&quot;2026-07-15&quot;:9.76},{&quot;2026-07-16&quot;:9.7},{&quot;2026-07-17&quot;:9.7},{&quot;2026-07-18&quot;:9.66},{&quot;2026-07-19&quot;:9.62},{&quot;2026-07-20&quot;:9.62},{&quot;2026-07-21&quot;:9.43},{&quot;2026-07-23&quot;:9.71},{&quot;2026-07-25&quot;:9.62},{&quot;2026-07-26&quot;:9.62},{&quot;2026-07-27&quot;:9.76},{&quot;2026-07-29&quot;:9.68},{&quot;2026-07-30&quot;:9.67},{&quot;2026-07-31&quot;:9.71},{&quot;2026-08-01&quot;:9.71},{&quot;2026-08-02&quot;:9.65},{&quot;2026-08-03&quot;:9.62},{&quot;2026-08-04&quot;:9.62},{&quot;2026-08-05&quot;:9.62},{&quot;2026-08-07&quot;:9.54},{&quot;2026-08-08&quot;:9.54},{&quot;2026-08-09&quot;:9.4},{&quot;2026-08-10&quot;:9.41},{&quot;2026-08-11&quot;:9.36},{&quot;2026-08-12&quot;:9.34},{&quot;2026-08-13&quot;:9.21},{&quot;2026-08-14&quot;:9.23},{&quot;2026-08-15&quot;:9.09},{&quot;2026-08-16&quot;:9.09},{&quot;2026-08-17&quot;:9.3},{&quot;2026-08-18&quot;:9.25},{&quot;2026-08-19&quot;:9.46},{&quot;2026-08-20&quot;:9.46},{&quot;2026-08-21&quot;:9.41},{&quot;2026-08-22&quot;:9.33},{&quot;2026-08-23&quot;:9.49},{&quot;2026-08-24&quot;:9.37},{&quot;2026-08-25&quot;:9.37},{&quot;2026-08-26&quot;:9.55},{&quot;2026-08-27&quot;:9.55},{&quot;2026-08-28&quot;:9.42},{&quot;2026-08-29&quot;:9.42},{&quot;2026-08-30&quot;:9.51},{&quot;2026-08-31&quot;:9.51},{&quot;2026-09-01&quot;:9.51},{&quot;2026-09-02&quot;:9.27},{&quot;2026-09-03&quot;:9.25},{&quot;2026-09-04&quot;:9.38},{&quot;2026-09-05&quot;:9.38},{&quot;2026-09-06&quot;:9.38},{&quot;2026-09-07&quot;:9.16},{&quot;2026-09-08&quot;:9.23},{&quot;2026-09-09&quot;:9.32},{&quot;2026-09-10&quot;:9.39},{&quot;2026-09-11&quot;:9.36}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:10.24},{&quot;2026-06-10&quot;:10.0},{&quot;2026-06-11&quot;:10.0},{&quot;2026-06-12&quot;:9.93},{&quot;2026-06-13&quot;:9.31},{&quot;2026-06-14&quot;:9.8},{&quot;2026-06-15&quot;:9.79},{&quot;2026-06-16&quot;:9.44},{&quot;2026-06-17&quot;:9.9},{&quot;2026-06-18&quot;:10.03},{&quot;2026-06-19&quot;:9.87},{&quot;2026-06-20&quot;:9.72},{&quot;2026-06-21&quot;:10.62},{&quot;2026-06-22&quot;:10.53},{&quot;2026-06-24&quot;:10.9},{&quot;2026-06-25&quot;:10.98},{&quot;2026-06-26&quot;:8.86},{&quot;2026-06-27&quot;:8.77},{&quot;2026-06-28&quot;:8.4},{&quot;2026-06-29&quot;:8.55},{&quot;2026-06-30&quot;:8.61},{&quot;2026-07-01&quot;:8.81},{&quot;2026-07-02&quot;:8.74},{&quot;2026-07-03&quot;:8.6},{&quot;2026-07-04&quot;:8.73},{&quot;2026-07-05&quot;:9.21},{&quot;2026-07-06&quot;:9.7},{&quot;2026-07-07&quot;:9.35},{&quot;2026-07-08&quot;:8.86},{&quot;2026-07-09&quot;:8.75},{&quot;2026-07-10&quot;:8.87},{&quot;2026-07-11&quot;:9.45},{&quot;2026-07-12&quot;:9.16},{&quot;2026-07-13&quot;:8.17},{&quot;2026-07-14&quot;:8.54},{&quot;2026-07-15&quot;:8.79},{&quot;2026-07-16&quot;:8.75},{&quot;2026-07-17&quot;:8.89},{&quot;2026-07-18&quot;:9.15},{&quot;2026-07-19&quot;:9.29},{&quot;2026-07-20&quot;:9.14},{&quot;2026-07-21&quot;:8.81},{&quot;2026-07-23&quot;:8.79},{&quot;2026-07-25&quot;:8.54},{&quot;2026-07-26&quot;:8.36},{&quot;2026-07-27&quot;:8.51},{&quot;2026-07-29&quot;:8.76},{&quot;2026-07-30&quot;:8.76},{&quot;2026-07-31&quot;:7.96},{&quot;2026-08-01&quot;:7.91},{&quot;2026-08-02&quot;:8.17},{&quot;2026-08-03&quot;:8.41},{&quot;2026-08-04&quot;:8.28},{&quot;2026-08-05&quot;:8.11},{&quot;2026-08-07&quot;:8.25},{&quot;2026-08-08&quot;:9.04},{&quot;2026-08-09&quot;:9.33},{&quot;2026-08-10&quot;:8.8},{&quot;2026-08-11&quot;:8.56},{&quot;2026-08-12&quot;:8.49},{&quot;2026-08-13&quot;:8.42},{&quot;2026-08-14&quot;:8.27},{&quot;2026-08-15&quot;:8.24},{&quot;2026-08-16&quot;:7.67},{&quot;2026-08-17&quot;:8.36},{&quot;2026-08-18&quot;:8.71},{&quot;2026-08-19&quot;:8.37},{&quot;2026-08-20&quot;:8.37},{&quot;2026-08-21&quot;:8.01},{&quot;2026-08-22&quot;:7.93},{&quot;2026-08-23&quot;:7.78},{&quot;2026-08-24&quot;:7.98},{&quot;2026-08-25&quot;:7.98},{&quot;2026-08-26&quot;:7.93},{&quot;2026-08-27&quot;:7.87},{&quot;2026-08-28&quot;:8.04},{&quot;2026-08-29&quot;:8.04},{&quot;2026-08-30&quot;:8.48},{&quot;2026-08-31&quot;:8.89},{&quot;2026-09-01&quot;:8.89},{&quot;2026-09-02&quot;:8.63},{&quot;2026-09-03&quot;:8.41},{&quot;2026-09-04&quot;:8.24},{&quot;2026-09-05&quot;:8.12},{&quot;2026-09-06&quot;:8.11},{&quot;2026-09-07&quot;:8.23},{&quot;2026-09-08&quot;:8.22},{&quot;2026-09-09&quot;:8.36},{&quot;2026-09-10&quot;:8.55},{&quot;2026-09-11&quot;:8.87}]}"
        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="77628"
  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">
            Ayara, First of Locthwain
        </span>


      </div>

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

          <span class="text-sm font-medium text-nine-white">
            $8.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="Ayara, First of Locthwain" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/e/d/ed0ace28-9a33-4f0d-b8c8-f5517f20ccf1.jpg?1783932644" />

        <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">
            Ayara, First of Locthwain
        </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 — Elf Noble</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Ayara, First of Locthwain" src="https://cards.scryfall.io/large/front/e/d/ed0ace28-9a33-4f0d-b8c8-f5517f20ccf1.jpg?1783932644" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

                <span class="text-xs text-accent-50">
                  ↑
                  14%
                </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">
                $10.54
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:10.36},{&quot;2026-06-11&quot;:10.36},{&quot;2026-06-12&quot;:10.46},{&quot;2026-06-13&quot;:10.46},{&quot;2026-06-14&quot;:10.46},{&quot;2026-06-15&quot;:10.46},{&quot;2026-06-16&quot;:10.46},{&quot;2026-06-17&quot;:10.46},{&quot;2026-06-18&quot;:10.38},{&quot;2026-06-19&quot;:10.38},{&quot;2026-06-20&quot;:10.38},{&quot;2026-06-21&quot;:10.38},{&quot;2026-06-22&quot;:10.38},{&quot;2026-06-23&quot;:10.46},{&quot;2026-06-24&quot;:10.46},{&quot;2026-06-25&quot;:10.46},{&quot;2026-06-26&quot;:10.46},{&quot;2026-06-27&quot;:10.65},{&quot;2026-06-28&quot;:10.65},{&quot;2026-06-29&quot;:10.8},{&quot;2026-06-30&quot;:10.8},{&quot;2026-07-01&quot;:10.65},{&quot;2026-07-02&quot;:10.65},{&quot;2026-07-03&quot;:10.65},{&quot;2026-07-04&quot;:10.65},{&quot;2026-07-05&quot;:10.65},{&quot;2026-07-06&quot;:10.65},{&quot;2026-07-07&quot;:10.65},{&quot;2026-07-08&quot;:10.63},{&quot;2026-07-09&quot;:10.63},{&quot;2026-07-10&quot;:10.63},{&quot;2026-07-11&quot;:10.63},{&quot;2026-07-12&quot;:10.63},{&quot;2026-07-13&quot;:10.63},{&quot;2026-07-14&quot;:10.63},{&quot;2026-07-15&quot;:10.63},{&quot;2026-07-16&quot;:10.63},{&quot;2026-07-17&quot;:10.63},{&quot;2026-07-18&quot;:10.63},{&quot;2026-07-19&quot;:10.63},{&quot;2026-07-20&quot;:10.63},{&quot;2026-07-21&quot;:10.82},{&quot;2026-07-23&quot;:10.82},{&quot;2026-07-25&quot;:10.82},{&quot;2026-07-26&quot;:10.82},{&quot;2026-07-27&quot;:10.82},{&quot;2026-07-29&quot;:10.82},{&quot;2026-07-30&quot;:10.82},{&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.73},{&quot;2026-08-04&quot;:10.73},{&quot;2026-08-05&quot;:10.93},{&quot;2026-08-07&quot;:10.93},{&quot;2026-08-08&quot;:10.93},{&quot;2026-08-09&quot;:10.93},{&quot;2026-08-10&quot;:10.93},{&quot;2026-08-11&quot;:10.93},{&quot;2026-08-12&quot;:10.93},{&quot;2026-08-13&quot;:10.93},{&quot;2026-08-14&quot;:10.93},{&quot;2026-08-15&quot;:10.93},{&quot;2026-08-16&quot;:10.93},{&quot;2026-08-17&quot;:11.0},{&quot;2026-08-18&quot;:11.0},{&quot;2026-08-19&quot;:11.0},{&quot;2026-08-20&quot;:11.0},{&quot;2026-08-21&quot;:10.95},{&quot;2026-08-22&quot;:10.91},{&quot;2026-08-23&quot;:10.91},{&quot;2026-08-24&quot;:10.92},{&quot;2026-08-25&quot;:10.92},{&quot;2026-08-26&quot;:10.92},{&quot;2026-08-27&quot;:10.92},{&quot;2026-08-28&quot;:10.92},{&quot;2026-08-29&quot;:10.92},{&quot;2026-08-30&quot;:10.82},{&quot;2026-08-31&quot;:10.82},{&quot;2026-09-01&quot;:10.82},{&quot;2026-09-02&quot;:10.82},{&quot;2026-09-03&quot;:10.82},{&quot;2026-09-04&quot;:10.82},{&quot;2026-09-05&quot;:10.82},{&quot;2026-09-06&quot;:10.82},{&quot;2026-09-07&quot;:10.82},{&quot;2026-09-08&quot;:10.82},{&quot;2026-09-09&quot;:10.72},{&quot;2026-09-10&quot;:10.72},{&quot;2026-09-11&quot;:10.54}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:10.12},{&quot;2026-06-11&quot;:10.11},{&quot;2026-06-12&quot;:10.31},{&quot;2026-06-13&quot;:10.39},{&quot;2026-06-14&quot;:10.39},{&quot;2026-06-15&quot;:10.39},{&quot;2026-06-16&quot;:10.54},{&quot;2026-06-17&quot;:10.54},{&quot;2026-06-18&quot;:10.29},{&quot;2026-06-19&quot;:10.03},{&quot;2026-06-20&quot;:10.0},{&quot;2026-06-21&quot;:9.96},{&quot;2026-06-22&quot;:10.01},{&quot;2026-06-23&quot;:9.89},{&quot;2026-06-24&quot;:9.89},{&quot;2026-06-25&quot;:9.64},{&quot;2026-06-26&quot;:9.63},{&quot;2026-06-27&quot;:9.42},{&quot;2026-06-28&quot;:9.29},{&quot;2026-06-29&quot;:9.18},{&quot;2026-06-30&quot;:9.12},{&quot;2026-07-01&quot;:9.1},{&quot;2026-07-02&quot;:9.04},{&quot;2026-07-03&quot;:8.8},{&quot;2026-07-04&quot;:8.35},{&quot;2026-07-05&quot;:8.27},{&quot;2026-07-06&quot;:8.05},{&quot;2026-07-07&quot;:8.17},{&quot;2026-07-08&quot;:8.15},{&quot;2026-07-09&quot;:8.36},{&quot;2026-07-10&quot;:8.41},{&quot;2026-07-11&quot;:8.47},{&quot;2026-07-12&quot;:8.42},{&quot;2026-07-13&quot;:8.41},{&quot;2026-07-14&quot;:8.56},{&quot;2026-07-15&quot;:8.56},{&quot;2026-07-16&quot;:8.48},{&quot;2026-07-17&quot;:8.93},{&quot;2026-07-18&quot;:8.89},{&quot;2026-07-19&quot;:8.99},{&quot;2026-07-20&quot;:9.2},{&quot;2026-07-21&quot;:9.2},{&quot;2026-07-23&quot;:8.54},{&quot;2026-07-25&quot;:8.25},{&quot;2026-07-26&quot;:8.26},{&quot;2026-07-27&quot;:8.28},{&quot;2026-07-29&quot;:8.28},{&quot;2026-07-30&quot;:8.29},{&quot;2026-07-31&quot;:8.08},{&quot;2026-08-01&quot;:8.06},{&quot;2026-08-02&quot;:8.1},{&quot;2026-08-03&quot;:8.14},{&quot;2026-08-04&quot;:8.15},{&quot;2026-08-05&quot;:8.16},{&quot;2026-08-07&quot;:8.38},{&quot;2026-08-08&quot;:8.4},{&quot;2026-08-09&quot;:8.4},{&quot;2026-08-10&quot;:8.31},{&quot;2026-08-11&quot;:8.3},{&quot;2026-08-12&quot;:8.37},{&quot;2026-08-13&quot;:8.4},{&quot;2026-08-14&quot;:8.24},{&quot;2026-08-15&quot;:8.21},{&quot;2026-08-16&quot;:8.14},{&quot;2026-08-17&quot;:7.9},{&quot;2026-08-18&quot;:7.98},{&quot;2026-08-19&quot;:7.98},{&quot;2026-08-20&quot;:7.98},{&quot;2026-08-21&quot;:7.83},{&quot;2026-08-22&quot;:7.64},{&quot;2026-08-23&quot;:7.79},{&quot;2026-08-24&quot;:7.91},{&quot;2026-08-25&quot;:7.91},{&quot;2026-08-26&quot;:7.85},{&quot;2026-08-27&quot;:7.95},{&quot;2026-08-28&quot;:7.95},{&quot;2026-08-29&quot;:7.95},{&quot;2026-08-30&quot;:7.97},{&quot;2026-08-31&quot;:7.62},{&quot;2026-09-01&quot;:7.62},{&quot;2026-09-02&quot;:7.49},{&quot;2026-09-03&quot;:7.5},{&quot;2026-09-04&quot;:7.69},{&quot;2026-09-05&quot;:7.67},{&quot;2026-09-06&quot;:8.08},{&quot;2026-09-07&quot;:8.38},{&quot;2026-09-08&quot;:8.63},{&quot;2026-09-09&quot;:8.69},{&quot;2026-09-10&quot;:8.97},{&quot;2026-09-11&quot;:8.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="19288"
  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-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">
            Caves of Koilos
        </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">
            $7.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="Caves of Koilos" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/3/7328a565-966d-4053-b32b-25bdce031d9f.jpg?1783921200" />

        <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">
            Caves of Koilos
        </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="Caves of Koilos" src="https://cards.scryfall.io/large/front/7/3/7328a565-966d-4053-b32b-25bdce031d9f.jpg?1783921200" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-11&quot;:7.4},{&quot;2026-06-12&quot;:7.75},{&quot;2026-06-13&quot;:7.75},{&quot;2026-06-14&quot;:7.75},{&quot;2026-06-15&quot;:7.77},{&quot;2026-06-16&quot;:7.81},{&quot;2026-06-17&quot;:7.81},{&quot;2026-06-18&quot;:7.81},{&quot;2026-06-19&quot;:7.81},{&quot;2026-06-20&quot;:7.88},{&quot;2026-06-21&quot;:7.88},{&quot;2026-06-22&quot;:7.88},{&quot;2026-06-23&quot;:8.1},{&quot;2026-06-24&quot;:8.1},{&quot;2026-06-25&quot;:8.1},{&quot;2026-06-26&quot;:8.1},{&quot;2026-06-27&quot;:8.1},{&quot;2026-06-28&quot;:8.1},{&quot;2026-06-29&quot;:8.16},{&quot;2026-06-30&quot;:8.16},{&quot;2026-07-01&quot;:8.16},{&quot;2026-07-02&quot;:8.16},{&quot;2026-07-03&quot;:8.16},{&quot;2026-07-04&quot;:8.02},{&quot;2026-07-05&quot;:8.02},{&quot;2026-07-06&quot;:8.02},{&quot;2026-07-07&quot;:8.02},{&quot;2026-07-08&quot;:8.02},{&quot;2026-07-09&quot;:7.87},{&quot;2026-07-10&quot;:7.87},{&quot;2026-07-11&quot;:7.87},{&quot;2026-07-12&quot;:7.96},{&quot;2026-07-13&quot;:7.98},{&quot;2026-07-14&quot;:7.98},{&quot;2026-07-15&quot;:7.7},{&quot;2026-07-16&quot;:7.38},{&quot;2026-07-17&quot;:7.34},{&quot;2026-07-18&quot;:7.63},{&quot;2026-07-19&quot;:7.63},{&quot;2026-07-20&quot;:7.71},{&quot;2026-07-21&quot;:7.85},{&quot;2026-07-23&quot;:7.63},{&quot;2026-07-25&quot;:7.28},{&quot;2026-07-26&quot;:7.28},{&quot;2026-07-27&quot;:7.25},{&quot;2026-07-28&quot;:7.16},{&quot;2026-07-29&quot;:7.16},{&quot;2026-07-30&quot;:7.16},{&quot;2026-07-31&quot;:7.12},{&quot;2026-08-01&quot;:7.05},{&quot;2026-08-02&quot;:7.05},{&quot;2026-08-03&quot;:7.05},{&quot;2026-08-04&quot;:7.05},{&quot;2026-08-05&quot;:7.05},{&quot;2026-08-07&quot;:7.08},{&quot;2026-08-08&quot;:7.08},{&quot;2026-08-09&quot;:7.14},{&quot;2026-08-10&quot;:7.14},{&quot;2026-08-11&quot;:7.14},{&quot;2026-08-12&quot;:7.14},{&quot;2026-08-13&quot;:7.14},{&quot;2026-08-14&quot;:7.14},{&quot;2026-08-15&quot;:7.15},{&quot;2026-08-16&quot;:7.15},{&quot;2026-08-17&quot;:7.15},{&quot;2026-08-18&quot;:7.15},{&quot;2026-08-19&quot;:7.18},{&quot;2026-08-20&quot;:7.18},{&quot;2026-08-21&quot;:7.18},{&quot;2026-08-22&quot;:7.18},{&quot;2026-08-23&quot;:7.17},{&quot;2026-08-24&quot;:7.17},{&quot;2026-08-25&quot;:7.17},{&quot;2026-08-26&quot;:7.17},{&quot;2026-08-27&quot;:7.17},{&quot;2026-08-28&quot;:7.17},{&quot;2026-08-29&quot;:7.17},{&quot;2026-08-30&quot;:7.17},{&quot;2026-08-31&quot;:7.29},{&quot;2026-09-01&quot;:7.41},{&quot;2026-09-02&quot;:7.53},{&quot;2026-09-03&quot;:7.53},{&quot;2026-09-04&quot;:7.53},{&quot;2026-09-05&quot;:7.38},{&quot;2026-09-06&quot;:7.38},{&quot;2026-09-07&quot;:7.38},{&quot;2026-09-08&quot;:7.38},{&quot;2026-09-09&quot;:7.38},{&quot;2026-09-10&quot;:7.38},{&quot;2026-09-11&quot;:7.38}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:3.95},{&quot;2026-06-12&quot;:3.91},{&quot;2026-06-13&quot;:3.54},{&quot;2026-06-14&quot;:3.4},{&quot;2026-06-15&quot;:3.38},{&quot;2026-06-16&quot;:3.28},{&quot;2026-06-17&quot;:3.28},{&quot;2026-06-18&quot;:3.28},{&quot;2026-06-19&quot;:3.28},{&quot;2026-06-20&quot;:3.23},{&quot;2026-06-21&quot;:3.29},{&quot;2026-06-22&quot;:3.13},{&quot;2026-06-23&quot;:3.02},{&quot;2026-06-24&quot;:2.96},{&quot;2026-06-25&quot;:2.96},{&quot;2026-06-26&quot;:2.96},{&quot;2026-06-27&quot;:2.87},{&quot;2026-06-28&quot;:2.96},{&quot;2026-06-29&quot;:3.16},{&quot;2026-06-30&quot;:3.16},{&quot;2026-07-01&quot;:3.22},{&quot;2026-07-02&quot;:3.28},{&quot;2026-07-03&quot;:3.21},{&quot;2026-07-04&quot;:3.26},{&quot;2026-07-05&quot;:3.47},{&quot;2026-07-06&quot;:3.47},{&quot;2026-07-07&quot;:3.94},{&quot;2026-07-08&quot;:4.04},{&quot;2026-07-09&quot;:4.1},{&quot;2026-07-10&quot;:4.1},{&quot;2026-07-11&quot;:4.16},{&quot;2026-07-12&quot;:4.19},{&quot;2026-07-13&quot;:4.32},{&quot;2026-07-14&quot;:4.36},{&quot;2026-07-15&quot;:4.29},{&quot;2026-07-16&quot;:4.13},{&quot;2026-07-17&quot;:3.87},{&quot;2026-07-18&quot;:3.8},{&quot;2026-07-19&quot;:3.8},{&quot;2026-07-20&quot;:3.81},{&quot;2026-07-21&quot;:3.75},{&quot;2026-07-23&quot;:3.54},{&quot;2026-07-25&quot;:3.54},{&quot;2026-07-26&quot;:3.49},{&quot;2026-07-27&quot;:3.4},{&quot;2026-07-28&quot;:3.05},{&quot;2026-07-29&quot;:3.04},{&quot;2026-07-30&quot;:3.14},{&quot;2026-07-31&quot;:3.16},{&quot;2026-08-01&quot;:3.16},{&quot;2026-08-02&quot;:2.95},{&quot;2026-08-03&quot;:3.01},{&quot;2026-08-04&quot;:3.04},{&quot;2026-08-05&quot;:2.98},{&quot;2026-08-07&quot;:2.99},{&quot;2026-08-08&quot;:2.96},{&quot;2026-08-09&quot;:3.0},{&quot;2026-08-10&quot;:3.33},{&quot;2026-08-11&quot;:3.28},{&quot;2026-08-12&quot;:3.27},{&quot;2026-08-13&quot;:3.24},{&quot;2026-08-14&quot;:3.24},{&quot;2026-08-15&quot;:3.3},{&quot;2026-08-16&quot;:3.25},{&quot;2026-08-17&quot;:3.2},{&quot;2026-08-18&quot;:3.24},{&quot;2026-08-19&quot;:3.2},{&quot;2026-08-20&quot;:3.2},{&quot;2026-08-21&quot;:3.2},{&quot;2026-08-22&quot;:3.12},{&quot;2026-08-23&quot;:2.99},{&quot;2026-08-24&quot;:3.04},{&quot;2026-08-25&quot;:3.16},{&quot;2026-08-26&quot;:3.21},{&quot;2026-08-27&quot;:3.15},{&quot;2026-08-28&quot;:3.13},{&quot;2026-08-29&quot;:3.13},{&quot;2026-08-30&quot;:3.16},{&quot;2026-08-31&quot;:3.28},{&quot;2026-09-01&quot;:3.31},{&quot;2026-09-02&quot;:3.3},{&quot;2026-09-03&quot;:3.07},{&quot;2026-09-04&quot;:3.07},{&quot;2026-09-05&quot;:3.23},{&quot;2026-09-06&quot;:3.34},{&quot;2026-09-07&quot;:3.33},{&quot;2026-09-08&quot;:3.29},{&quot;2026-09-09&quot;:3.21},{&quot;2026-09-10&quot;:3.27},{&quot;2026-09-11&quot;:3.27}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Animate Dead" src="https://cards.scryfall.io/large/front/4/c/4c732dc7-dd6b-4cc1-bbe0-ff3b1d2c7419.jpg?1783926581" />
    </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.54
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:9.54},{&quot;2026-06-11&quot;:9.54},{&quot;2026-06-12&quot;:9.6},{&quot;2026-06-13&quot;:9.42},{&quot;2026-06-14&quot;:9.44},{&quot;2026-06-15&quot;:9.46},{&quot;2026-06-16&quot;:9.54},{&quot;2026-06-17&quot;:9.54},{&quot;2026-06-18&quot;:9.54},{&quot;2026-06-19&quot;:9.11},{&quot;2026-06-20&quot;:9.11},{&quot;2026-06-21&quot;:8.92},{&quot;2026-06-22&quot;:8.92},{&quot;2026-06-23&quot;:8.65},{&quot;2026-06-24&quot;:8.24},{&quot;2026-06-25&quot;:7.98},{&quot;2026-06-26&quot;:7.97},{&quot;2026-06-27&quot;:7.68},{&quot;2026-06-28&quot;:7.39},{&quot;2026-06-29&quot;:7.23},{&quot;2026-06-30&quot;:7.07},{&quot;2026-07-01&quot;:7.07},{&quot;2026-07-02&quot;:7.07},{&quot;2026-07-03&quot;:7.07},{&quot;2026-07-04&quot;:7.07},{&quot;2026-07-05&quot;:7.16},{&quot;2026-07-06&quot;:7.16},{&quot;2026-07-07&quot;:7.16},{&quot;2026-07-08&quot;:7.16},{&quot;2026-07-09&quot;:7.16},{&quot;2026-07-10&quot;:7.16},{&quot;2026-07-11&quot;:7.16},{&quot;2026-07-12&quot;:7.16},{&quot;2026-07-13&quot;:7.22},{&quot;2026-07-14&quot;:7.03},{&quot;2026-07-15&quot;:6.84},{&quot;2026-07-16&quot;:6.59},{&quot;2026-07-17&quot;:6.49},{&quot;2026-07-18&quot;:6.42},{&quot;2026-07-19&quot;:6.29},{&quot;2026-07-20&quot;:6.16},{&quot;2026-07-21&quot;:5.89},{&quot;2026-07-23&quot;:5.51},{&quot;2026-07-25&quot;:5.54},{&quot;2026-07-26&quot;:5.46},{&quot;2026-07-27&quot;:5.55},{&quot;2026-07-29&quot;:5.37},{&quot;2026-07-30&quot;:5.3},{&quot;2026-07-31&quot;:5.24},{&quot;2026-08-01&quot;:5.25},{&quot;2026-08-02&quot;:5.38},{&quot;2026-08-03&quot;:5.35},{&quot;2026-08-04&quot;:5.34},{&quot;2026-08-05&quot;:5.32},{&quot;2026-08-07&quot;:5.38},{&quot;2026-08-08&quot;:5.34},{&quot;2026-08-09&quot;:5.34},{&quot;2026-08-10&quot;:5.34},{&quot;2026-08-11&quot;:5.36},{&quot;2026-08-12&quot;:5.35},{&quot;2026-08-13&quot;:5.41},{&quot;2026-08-14&quot;:5.43},{&quot;2026-08-15&quot;:5.23},{&quot;2026-08-16&quot;:5.32},{&quot;2026-08-17&quot;:5.35},{&quot;2026-08-18&quot;:5.37},{&quot;2026-08-19&quot;:5.61},{&quot;2026-08-20&quot;:5.61},{&quot;2026-08-21&quot;:5.66},{&quot;2026-08-22&quot;:5.76},{&quot;2026-08-23&quot;:5.84},{&quot;2026-08-24&quot;:5.84},{&quot;2026-08-25&quot;:5.84},{&quot;2026-08-26&quot;:5.89},{&quot;2026-08-27&quot;:5.93},{&quot;2026-08-28&quot;:5.97},{&quot;2026-08-29&quot;:5.97},{&quot;2026-08-30&quot;:5.97},{&quot;2026-08-31&quot;:5.94},{&quot;2026-09-01&quot;:5.94},{&quot;2026-09-02&quot;:6.23},{&quot;2026-09-03&quot;:6.16},{&quot;2026-09-04&quot;:6.21},{&quot;2026-09-05&quot;:6.45},{&quot;2026-09-06&quot;:6.49},{&quot;2026-09-07&quot;:6.48},{&quot;2026-09-08&quot;:6.45},{&quot;2026-09-09&quot;:6.47},{&quot;2026-09-10&quot;:6.51},{&quot;2026-09-11&quot;:6.54}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Dark Ritual" src="https://cards.scryfall.io/large/front/4/9/493a5ca7-5f90-4af4-b6db-43ae09a2f2c9.jpg?1783931816" />
    </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.49
              </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.25</span>
              <span class="text-xs text-grey-text">Credit: $2.93</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:5.71},{&quot;2026-06-14&quot;:5.71},{&quot;2026-06-15&quot;:5.64},{&quot;2026-06-16&quot;:5.64},{&quot;2026-06-17&quot;:5.64},{&quot;2026-06-18&quot;:5.57},{&quot;2026-06-19&quot;:5.56},{&quot;2026-06-20&quot;:5.46},{&quot;2026-06-21&quot;:5.64},{&quot;2026-06-22&quot;:5.85},{&quot;2026-06-23&quot;:5.85},{&quot;2026-06-24&quot;:6.09},{&quot;2026-06-25&quot;:5.99},{&quot;2026-06-26&quot;:6.08},{&quot;2026-06-27&quot;:6.05},{&quot;2026-06-28&quot;:6.05},{&quot;2026-06-29&quot;:5.61},{&quot;2026-06-30&quot;:5.76},{&quot;2026-07-01&quot;:5.65},{&quot;2026-07-02&quot;:5.65},{&quot;2026-07-03&quot;:5.94},{&quot;2026-07-04&quot;:6.04},{&quot;2026-07-05&quot;:6.13},{&quot;2026-07-06&quot;:6.24},{&quot;2026-07-07&quot;:6.24},{&quot;2026-07-08&quot;:6.24},{&quot;2026-07-09&quot;:6.24},{&quot;2026-07-10&quot;:6.23},{&quot;2026-07-11&quot;:6.23},{&quot;2026-07-12&quot;:6.27},{&quot;2026-07-13&quot;:6.34},{&quot;2026-07-14&quot;:6.26},{&quot;2026-07-15&quot;:6.29},{&quot;2026-07-16&quot;:6.29},{&quot;2026-07-17&quot;:6.29},{&quot;2026-07-18&quot;:6.29},{&quot;2026-07-19&quot;:6.26},{&quot;2026-07-20&quot;:6.25},{&quot;2026-07-21&quot;:6.25},{&quot;2026-07-22&quot;:6.25},{&quot;2026-07-23&quot;:6.25},{&quot;2026-07-24&quot;:6.26},{&quot;2026-07-25&quot;:6.26},{&quot;2026-07-26&quot;:6.26},{&quot;2026-07-27&quot;:6.26},{&quot;2026-07-28&quot;:6.26},{&quot;2026-07-29&quot;:6.26},{&quot;2026-07-30&quot;:6.26},{&quot;2026-07-31&quot;:6.26},{&quot;2026-08-01&quot;:6.26},{&quot;2026-08-02&quot;:6.26},{&quot;2026-08-03&quot;:6.24},{&quot;2026-08-04&quot;:6.18},{&quot;2026-08-05&quot;:6.18},{&quot;2026-08-07&quot;:6.02},{&quot;2026-08-08&quot;:6.02},{&quot;2026-08-09&quot;:6.02},{&quot;2026-08-10&quot;:6.02},{&quot;2026-08-11&quot;:5.98},{&quot;2026-08-12&quot;:6.18},{&quot;2026-08-13&quot;:5.92},{&quot;2026-08-14&quot;:5.92},{&quot;2026-08-15&quot;:5.92},{&quot;2026-08-16&quot;:5.92},{&quot;2026-08-17&quot;:5.92},{&quot;2026-08-18&quot;:5.87},{&quot;2026-08-19&quot;:5.87},{&quot;2026-08-20&quot;:5.82},{&quot;2026-08-21&quot;:5.82},{&quot;2026-08-22&quot;:5.82},{&quot;2026-08-23&quot;:5.82},{&quot;2026-08-24&quot;:5.74},{&quot;2026-08-25&quot;:5.71},{&quot;2026-08-26&quot;:5.56},{&quot;2026-08-27&quot;:5.53},{&quot;2026-08-28&quot;:5.58},{&quot;2026-08-29&quot;:5.58},{&quot;2026-08-30&quot;:5.62},{&quot;2026-08-31&quot;:5.62},{&quot;2026-09-01&quot;:5.68},{&quot;2026-09-02&quot;:5.64},{&quot;2026-09-03&quot;:5.64},{&quot;2026-09-04&quot;:5.66},{&quot;2026-09-05&quot;:5.57},{&quot;2026-09-06&quot;:5.54},{&quot;2026-09-07&quot;:5.54},{&quot;2026-09-08&quot;:5.54},{&quot;2026-09-09&quot;:5.49},{&quot;2026-09-10&quot;:5.49},{&quot;2026-09-11&quot;:5.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="94749"
  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-fin 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">
            The Darkness Crystal
        </span>


      </div>

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="The Darkness Crystal" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/f/0f93b6ac-54ce-45d0-8549-19307406e6e5.jpg?1783906621" />

        <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">
            The Darkness Crystal
        </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 Artifact</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="The Darkness Crystal" src="https://cards.scryfall.io/large/front/0/f/0f93b6ac-54ce-45d0-8549-19307406e6e5.jpg?1783906621" />
    </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.31
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-08&quot;:5.19},{&quot;2026-06-10&quot;:5.84},{&quot;2026-06-11&quot;:5.93},{&quot;2026-06-12&quot;:5.95},{&quot;2026-06-13&quot;:6.06},{&quot;2026-06-14&quot;:6.05},{&quot;2026-06-15&quot;:6.17},{&quot;2026-06-16&quot;:6.28},{&quot;2026-06-17&quot;:6.28},{&quot;2026-06-18&quot;:6.28},{&quot;2026-06-19&quot;:6.27},{&quot;2026-06-20&quot;:6.27},{&quot;2026-06-21&quot;:6.37},{&quot;2026-06-22&quot;:6.34},{&quot;2026-06-24&quot;:6.46},{&quot;2026-06-25&quot;:6.45},{&quot;2026-06-26&quot;:6.45},{&quot;2026-06-27&quot;:6.38},{&quot;2026-06-28&quot;:6.21},{&quot;2026-06-29&quot;:6.19},{&quot;2026-06-30&quot;:6.17},{&quot;2026-07-01&quot;:6.42},{&quot;2026-07-02&quot;:6.16},{&quot;2026-07-03&quot;:5.97},{&quot;2026-07-04&quot;:5.97},{&quot;2026-07-05&quot;:5.97},{&quot;2026-07-06&quot;:5.76},{&quot;2026-07-07&quot;:5.68},{&quot;2026-07-08&quot;:5.64},{&quot;2026-07-09&quot;:5.64},{&quot;2026-07-10&quot;:5.64},{&quot;2026-07-11&quot;:5.43},{&quot;2026-07-12&quot;:5.52},{&quot;2026-07-13&quot;:5.62},{&quot;2026-07-14&quot;:5.44},{&quot;2026-07-15&quot;:5.26},{&quot;2026-07-16&quot;:5.1},{&quot;2026-07-17&quot;:5.22},{&quot;2026-07-18&quot;:5.17},{&quot;2026-07-19&quot;:5.29},{&quot;2026-07-20&quot;:5.25},{&quot;2026-07-21&quot;:5.25},{&quot;2026-07-23&quot;:5.29},{&quot;2026-07-25&quot;:5.16},{&quot;2026-07-26&quot;:5.16},{&quot;2026-07-27&quot;:5.27},{&quot;2026-07-29&quot;:5.33},{&quot;2026-07-30&quot;:5.33},{&quot;2026-07-31&quot;:5.33},{&quot;2026-08-01&quot;:5.3},{&quot;2026-08-02&quot;:5.28},{&quot;2026-08-03&quot;:5.56},{&quot;2026-08-04&quot;:5.6},{&quot;2026-08-05&quot;:5.61},{&quot;2026-08-07&quot;:5.62},{&quot;2026-08-08&quot;:5.85},{&quot;2026-08-09&quot;:5.87},{&quot;2026-08-10&quot;:5.83},{&quot;2026-08-11&quot;:5.83},{&quot;2026-08-12&quot;:5.68},{&quot;2026-08-13&quot;:5.68},{&quot;2026-08-14&quot;:5.71},{&quot;2026-08-15&quot;:5.69},{&quot;2026-08-16&quot;:5.55},{&quot;2026-08-17&quot;:5.49},{&quot;2026-08-18&quot;:5.47},{&quot;2026-08-19&quot;:5.47},{&quot;2026-08-20&quot;:5.47},{&quot;2026-08-21&quot;:5.41},{&quot;2026-08-22&quot;:5.41},{&quot;2026-08-23&quot;:5.54},{&quot;2026-08-24&quot;:5.75},{&quot;2026-08-25&quot;:5.75},{&quot;2026-08-26&quot;:5.19},{&quot;2026-08-27&quot;:5.15},{&quot;2026-08-28&quot;:5.24},{&quot;2026-08-29&quot;:5.24},{&quot;2026-08-30&quot;:5.49},{&quot;2026-08-31&quot;:5.51},{&quot;2026-09-01&quot;:5.51},{&quot;2026-09-02&quot;:5.75},{&quot;2026-09-03&quot;:5.75},{&quot;2026-09-04&quot;:5.78},{&quot;2026-09-05&quot;:5.73},{&quot;2026-09-06&quot;:5.7},{&quot;2026-09-07&quot;:5.7},{&quot;2026-09-08&quot;:5.63},{&quot;2026-09-09&quot;:5.81},{&quot;2026-09-10&quot;:5.83},{&quot;2026-09-11&quot;:6.15}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:4.67},{&quot;2026-06-10&quot;:4.7},{&quot;2026-06-11&quot;:4.33},{&quot;2026-06-12&quot;:4.81},{&quot;2026-06-13&quot;:4.84},{&quot;2026-06-14&quot;:5.21},{&quot;2026-06-15&quot;:5.24},{&quot;2026-06-16&quot;:4.63},{&quot;2026-06-17&quot;:5.04},{&quot;2026-06-18&quot;:5.63},{&quot;2026-06-19&quot;:5.36},{&quot;2026-06-20&quot;:5.26},{&quot;2026-06-21&quot;:5.13},{&quot;2026-06-22&quot;:4.69},{&quot;2026-06-24&quot;:5.19},{&quot;2026-06-25&quot;:5.31},{&quot;2026-06-26&quot;:5.0},{&quot;2026-06-27&quot;:5.89},{&quot;2026-06-28&quot;:5.42},{&quot;2026-06-29&quot;:6.24},{&quot;2026-06-30&quot;:5.46},{&quot;2026-07-01&quot;:5.28},{&quot;2026-07-02&quot;:5.14},{&quot;2026-07-03&quot;:5.09},{&quot;2026-07-04&quot;:4.71},{&quot;2026-07-05&quot;:4.81},{&quot;2026-07-06&quot;:4.91},{&quot;2026-07-07&quot;:4.77},{&quot;2026-07-08&quot;:4.39},{&quot;2026-07-09&quot;:4.22},{&quot;2026-07-10&quot;:4.31},{&quot;2026-07-11&quot;:4.82},{&quot;2026-07-12&quot;:4.28},{&quot;2026-07-13&quot;:4.21},{&quot;2026-07-14&quot;:4.15},{&quot;2026-07-15&quot;:4.74},{&quot;2026-07-16&quot;:5.2},{&quot;2026-07-17&quot;:4.92},{&quot;2026-07-18&quot;:5.16},{&quot;2026-07-19&quot;:5.05},{&quot;2026-07-20&quot;:4.35},{&quot;2026-07-21&quot;:4.75},{&quot;2026-07-23&quot;:5.49},{&quot;2026-07-25&quot;:5.21},{&quot;2026-07-26&quot;:4.42},{&quot;2026-07-27&quot;:4.36},{&quot;2026-07-29&quot;:5.11},{&quot;2026-07-30&quot;:5.27},{&quot;2026-07-31&quot;:5.47},{&quot;2026-08-01&quot;:5.51},{&quot;2026-08-02&quot;:4.99},{&quot;2026-08-03&quot;:4.46},{&quot;2026-08-04&quot;:4.75},{&quot;2026-08-05&quot;:5.27},{&quot;2026-08-07&quot;:5.09},{&quot;2026-08-08&quot;:4.58},{&quot;2026-08-09&quot;:4.36},{&quot;2026-08-10&quot;:4.47},{&quot;2026-08-11&quot;:5.11},{&quot;2026-08-12&quot;:5.1},{&quot;2026-08-13&quot;:4.78},{&quot;2026-08-14&quot;:4.9},{&quot;2026-08-15&quot;:4.99},{&quot;2026-08-16&quot;:4.59},{&quot;2026-08-17&quot;:4.73},{&quot;2026-08-18&quot;:4.56},{&quot;2026-08-19&quot;:4.82},{&quot;2026-08-20&quot;:4.82},{&quot;2026-08-21&quot;:5.06},{&quot;2026-08-22&quot;:5.41},{&quot;2026-08-23&quot;:5.16},{&quot;2026-08-24&quot;:4.82},{&quot;2026-08-25&quot;:4.82},{&quot;2026-08-26&quot;:3.7},{&quot;2026-08-27&quot;:3.99},{&quot;2026-08-28&quot;:4.23},{&quot;2026-08-29&quot;:4.23},{&quot;2026-08-30&quot;:5.14},{&quot;2026-08-31&quot;:5.47},{&quot;2026-09-01&quot;:5.47},{&quot;2026-09-02&quot;:5.5},{&quot;2026-09-03&quot;:5.31},{&quot;2026-09-04&quot;:4.24},{&quot;2026-09-05&quot;:4.3},{&quot;2026-09-06&quot;:4.35},{&quot;2026-09-07&quot;:4.67},{&quot;2026-09-08&quot;:4.64},{&quot;2026-09-09&quot;:4.74},{&quot;2026-09-10&quot;:4.84},{&quot;2026-09-11&quot;:5.31}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

        <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/1/4/140bf4c1-750d-4e14-b73b-40b17939a49d.jpg?1783932705" />
    </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.30
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-12&quot;:4.93},{&quot;2026-06-13&quot;:4.93},{&quot;2026-06-14&quot;:5.01},{&quot;2026-06-15&quot;:5.0},{&quot;2026-06-16&quot;:5.06},{&quot;2026-06-17&quot;:5.06},{&quot;2026-06-18&quot;:5.07},{&quot;2026-06-19&quot;:5.07},{&quot;2026-06-20&quot;:5.15},{&quot;2026-06-21&quot;:5.15},{&quot;2026-06-22&quot;:5.06},{&quot;2026-06-23&quot;:5.08},{&quot;2026-06-24&quot;:5.08},{&quot;2026-06-25&quot;:5.08},{&quot;2026-06-26&quot;:4.97},{&quot;2026-06-27&quot;:5.21},{&quot;2026-06-28&quot;:5.17},{&quot;2026-06-29&quot;:5.17},{&quot;2026-06-30&quot;:5.17},{&quot;2026-07-01&quot;:5.22},{&quot;2026-07-02&quot;:5.09},{&quot;2026-07-03&quot;:5.09},{&quot;2026-07-04&quot;:5.09},{&quot;2026-07-05&quot;:5.09},{&quot;2026-07-06&quot;:5.15},{&quot;2026-07-07&quot;:5.2},{&quot;2026-07-08&quot;:5.2},{&quot;2026-07-09&quot;:5.2},{&quot;2026-07-10&quot;:5.2},{&quot;2026-07-11&quot;:5.2},{&quot;2026-07-12&quot;:5.11},{&quot;2026-07-13&quot;:4.99},{&quot;2026-07-14&quot;:4.71},{&quot;2026-07-15&quot;:4.61},{&quot;2026-07-16&quot;:4.61},{&quot;2026-07-17&quot;:4.61},{&quot;2026-07-18&quot;:4.63},{&quot;2026-07-19&quot;:4.37},{&quot;2026-07-20&quot;:4.4},{&quot;2026-07-21&quot;:4.4},{&quot;2026-07-23&quot;:4.4},{&quot;2026-07-24&quot;:4.4},{&quot;2026-07-25&quot;:4.4},{&quot;2026-07-26&quot;:4.42},{&quot;2026-07-27&quot;:4.36},{&quot;2026-07-28&quot;:4.34},{&quot;2026-07-29&quot;:4.34},{&quot;2026-07-30&quot;:4.21},{&quot;2026-07-31&quot;:4.12},{&quot;2026-08-01&quot;:4.12},{&quot;2026-08-02&quot;:4.16},{&quot;2026-08-03&quot;:4.15},{&quot;2026-08-04&quot;:4.35},{&quot;2026-08-05&quot;:4.35},{&quot;2026-08-07&quot;:4.39},{&quot;2026-08-08&quot;:4.39},{&quot;2026-08-09&quot;:4.4},{&quot;2026-08-10&quot;:4.52},{&quot;2026-08-11&quot;:4.52},{&quot;2026-08-12&quot;:4.52},{&quot;2026-08-13&quot;:4.42},{&quot;2026-08-14&quot;:4.42},{&quot;2026-08-15&quot;:4.44},{&quot;2026-08-16&quot;:4.64},{&quot;2026-08-17&quot;:4.69},{&quot;2026-08-18&quot;:4.69},{&quot;2026-08-19&quot;:4.69},{&quot;2026-08-20&quot;:4.69},{&quot;2026-08-21&quot;:4.44},{&quot;2026-08-22&quot;:4.31},{&quot;2026-08-23&quot;:4.31},{&quot;2026-08-24&quot;:4.34},{&quot;2026-08-25&quot;:4.26},{&quot;2026-08-26&quot;:4.23},{&quot;2026-08-27&quot;:4.26},{&quot;2026-08-28&quot;:4.26},{&quot;2026-08-29&quot;:4.26},{&quot;2026-08-30&quot;:4.34},{&quot;2026-08-31&quot;:4.26},{&quot;2026-09-01&quot;:4.29},{&quot;2026-09-02&quot;:4.29},{&quot;2026-09-03&quot;:4.18},{&quot;2026-09-04&quot;:4.37},{&quot;2026-09-05&quot;:4.23},{&quot;2026-09-06&quot;:4.23},{&quot;2026-09-07&quot;:4.23},{&quot;2026-09-08&quot;:4.23},{&quot;2026-09-09&quot;:4.24},{&quot;2026-09-10&quot;:4.29},{&quot;2026-09-11&quot;:4.3}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="91250"
  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-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">
            Conjurer&#39;s Closet
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Conjurer&#39;s Closet
        </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-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="Conjurer&#39;s Closet" src="https://cards.scryfall.io/large/front/9/a/9aca326e-ed55-4df2-a930-c9d0cf31d973.jpg?1783907994" />
    </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.46
              </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.30
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:4.25},{&quot;2026-06-14&quot;:4.25},{&quot;2026-06-15&quot;:4.2},{&quot;2026-06-16&quot;:4.2},{&quot;2026-06-17&quot;:4.2},{&quot;2026-06-18&quot;:4.2},{&quot;2026-06-19&quot;:4.2},{&quot;2026-06-20&quot;:4.2},{&quot;2026-06-21&quot;:4.2},{&quot;2026-06-22&quot;:4.2},{&quot;2026-06-23&quot;:4.2},{&quot;2026-06-24&quot;:4.04},{&quot;2026-06-25&quot;:4.84},{&quot;2026-06-26&quot;:4.84},{&quot;2026-06-27&quot;:4.8},{&quot;2026-06-28&quot;:4.8},{&quot;2026-06-29&quot;:4.83},{&quot;2026-06-30&quot;:4.83},{&quot;2026-07-01&quot;:4.83},{&quot;2026-07-02&quot;:4.83},{&quot;2026-07-03&quot;:4.83},{&quot;2026-07-04&quot;:4.83},{&quot;2026-07-05&quot;:4.83},{&quot;2026-07-06&quot;:4.83},{&quot;2026-07-07&quot;:4.74},{&quot;2026-07-08&quot;:4.74},{&quot;2026-07-09&quot;:4.74},{&quot;2026-07-10&quot;:4.74},{&quot;2026-07-11&quot;:4.74},{&quot;2026-07-12&quot;:4.97},{&quot;2026-07-13&quot;:4.97},{&quot;2026-07-14&quot;:4.97},{&quot;2026-07-15&quot;:4.82},{&quot;2026-07-16&quot;:4.87},{&quot;2026-07-17&quot;:4.89},{&quot;2026-07-18&quot;:4.89},{&quot;2026-07-19&quot;:4.89},{&quot;2026-07-20&quot;:4.9},{&quot;2026-07-21&quot;:4.9},{&quot;2026-07-22&quot;:4.9},{&quot;2026-07-23&quot;:4.8},{&quot;2026-07-24&quot;:4.8},{&quot;2026-07-25&quot;:4.84},{&quot;2026-07-26&quot;:4.84},{&quot;2026-07-27&quot;:4.84},{&quot;2026-07-28&quot;:4.84},{&quot;2026-07-29&quot;:4.84},{&quot;2026-07-30&quot;:4.84},{&quot;2026-07-31&quot;:4.85},{&quot;2026-08-01&quot;:4.77},{&quot;2026-08-02&quot;:4.93},{&quot;2026-08-03&quot;:4.92},{&quot;2026-08-04&quot;:4.92},{&quot;2026-08-05&quot;:4.92},{&quot;2026-08-07&quot;:4.84},{&quot;2026-08-08&quot;:4.84},{&quot;2026-08-09&quot;:4.9},{&quot;2026-08-10&quot;:4.9},{&quot;2026-08-11&quot;:4.9},{&quot;2026-08-12&quot;:4.9},{&quot;2026-08-13&quot;:4.9},{&quot;2026-08-14&quot;:4.9},{&quot;2026-08-15&quot;:4.9},{&quot;2026-08-16&quot;:4.95},{&quot;2026-08-17&quot;:4.95},{&quot;2026-08-18&quot;:4.95},{&quot;2026-08-19&quot;:4.95},{&quot;2026-08-20&quot;:4.95},{&quot;2026-08-21&quot;:4.23},{&quot;2026-08-22&quot;:4.24},{&quot;2026-08-23&quot;:4.24},{&quot;2026-08-24&quot;:4.24},{&quot;2026-08-25&quot;:4.24},{&quot;2026-08-26&quot;:4.31},{&quot;2026-08-27&quot;:4.38},{&quot;2026-08-28&quot;:4.32},{&quot;2026-08-29&quot;:4.32},{&quot;2026-08-30&quot;:4.13},{&quot;2026-08-31&quot;:4.13},{&quot;2026-09-01&quot;:4.13},{&quot;2026-09-02&quot;:4.13},{&quot;2026-09-03&quot;:4.13},{&quot;2026-09-04&quot;:4.13},{&quot;2026-09-05&quot;:4.13},{&quot;2026-09-06&quot;:4.13},{&quot;2026-09-07&quot;:4.13},{&quot;2026-09-08&quot;:4.21},{&quot;2026-09-09&quot;:4.23},{&quot;2026-09-10&quot;:4.23},{&quot;2026-09-11&quot;:4.3}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:3.63},{&quot;2026-06-14&quot;:3.54},{&quot;2026-06-15&quot;:3.54},{&quot;2026-06-16&quot;:3.42},{&quot;2026-06-17&quot;:3.51},{&quot;2026-06-18&quot;:3.51},{&quot;2026-06-19&quot;:3.51},{&quot;2026-06-20&quot;:3.64},{&quot;2026-06-21&quot;:3.64},{&quot;2026-06-22&quot;:3.64},{&quot;2026-06-23&quot;:3.82},{&quot;2026-06-24&quot;:3.68},{&quot;2026-06-25&quot;:3.6},{&quot;2026-06-26&quot;:3.46},{&quot;2026-06-27&quot;:3.54},{&quot;2026-06-28&quot;:3.54},{&quot;2026-06-29&quot;:3.54},{&quot;2026-06-30&quot;:3.7},{&quot;2026-07-01&quot;:3.71},{&quot;2026-07-02&quot;:3.89},{&quot;2026-07-03&quot;:3.98},{&quot;2026-07-04&quot;:4.19},{&quot;2026-07-05&quot;:4.19},{&quot;2026-07-06&quot;:4.24},{&quot;2026-07-07&quot;:4.29},{&quot;2026-07-08&quot;:4.26},{&quot;2026-07-09&quot;:4.37},{&quot;2026-07-10&quot;:4.37},{&quot;2026-07-11&quot;:4.37},{&quot;2026-07-12&quot;:4.39},{&quot;2026-07-13&quot;:4.39},{&quot;2026-07-14&quot;:4.33},{&quot;2026-07-15&quot;:4.27},{&quot;2026-07-16&quot;:4.27},{&quot;2026-07-17&quot;:4.27},{&quot;2026-07-18&quot;:4.34},{&quot;2026-07-19&quot;:4.31},{&quot;2026-07-20&quot;:4.25},{&quot;2026-07-21&quot;:3.97},{&quot;2026-07-22&quot;:4.06},{&quot;2026-07-23&quot;:4.01},{&quot;2026-07-24&quot;:3.94},{&quot;2026-07-25&quot;:4.02},{&quot;2026-07-26&quot;:4.02},{&quot;2026-07-27&quot;:3.96},{&quot;2026-07-28&quot;:4.15},{&quot;2026-07-29&quot;:4.15},{&quot;2026-07-30&quot;:4.13},{&quot;2026-07-31&quot;:4.09},{&quot;2026-08-01&quot;:4.08},{&quot;2026-08-02&quot;:4.14},{&quot;2026-08-03&quot;:4.16},{&quot;2026-08-04&quot;:4.17},{&quot;2026-08-05&quot;:3.98},{&quot;2026-08-07&quot;:3.97},{&quot;2026-08-08&quot;:3.85},{&quot;2026-08-09&quot;:3.77},{&quot;2026-08-10&quot;:3.67},{&quot;2026-08-11&quot;:3.7},{&quot;2026-08-12&quot;:3.54},{&quot;2026-08-13&quot;:3.38},{&quot;2026-08-14&quot;:3.31},{&quot;2026-08-15&quot;:3.24},{&quot;2026-08-16&quot;:3.13},{&quot;2026-08-17&quot;:3.11},{&quot;2026-08-18&quot;:3.06},{&quot;2026-08-19&quot;:2.97},{&quot;2026-08-20&quot;:3.04},{&quot;2026-08-21&quot;:3.2},{&quot;2026-08-22&quot;:3.11},{&quot;2026-08-23&quot;:3.18},{&quot;2026-08-24&quot;:3.18},{&quot;2026-08-25&quot;:3.24},{&quot;2026-08-26&quot;:3.33},{&quot;2026-08-27&quot;:3.39},{&quot;2026-08-28&quot;:3.35},{&quot;2026-08-29&quot;:3.35},{&quot;2026-08-30&quot;:3.17},{&quot;2026-08-31&quot;:3.35},{&quot;2026-09-01&quot;:3.39},{&quot;2026-09-02&quot;:3.41},{&quot;2026-09-03&quot;:3.38},{&quot;2026-09-04&quot;:3.38},{&quot;2026-09-05&quot;:3.45},{&quot;2026-09-06&quot;:3.54},{&quot;2026-09-07&quot;:3.6},{&quot;2026-09-08&quot;:3.6},{&quot;2026-09-09&quot;:3.51},{&quot;2026-09-10&quot;:3.46},{&quot;2026-09-11&quot;:3.46}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="96029"
  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-eoe 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">
            Haliya, Guided by Light
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $3.17
          </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="Haliya, Guided by Light" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/6/f/6f7c63ae-5df3-410f-8643-b8c69133ca9d.jpg?1782685573" />

        <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">
            Haliya, Guided by Light
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Haliya, Guided by Light" src="https://cards.scryfall.io/large/front/6/f/6f7c63ae-5df3-410f-8643-b8c69133ca9d.jpg?1782685573" />
    </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.17
              </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">
                $4.04
              </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">$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;:3.42},{&quot;2026-06-11&quot;:3.53},{&quot;2026-06-12&quot;:3.53},{&quot;2026-06-13&quot;:3.51},{&quot;2026-06-14&quot;:3.51},{&quot;2026-06-15&quot;:3.57},{&quot;2026-06-16&quot;:3.6},{&quot;2026-06-17&quot;:3.62},{&quot;2026-06-18&quot;:3.56},{&quot;2026-06-19&quot;:3.56},{&quot;2026-06-20&quot;:3.56},{&quot;2026-06-21&quot;:3.53},{&quot;2026-06-22&quot;:3.53},{&quot;2026-06-23&quot;:3.5},{&quot;2026-06-24&quot;:3.49},{&quot;2026-06-25&quot;:3.49},{&quot;2026-06-26&quot;:3.52},{&quot;2026-06-27&quot;:3.47},{&quot;2026-06-28&quot;:3.4},{&quot;2026-06-29&quot;:3.4},{&quot;2026-06-30&quot;:3.34},{&quot;2026-07-01&quot;:3.34},{&quot;2026-07-02&quot;:3.34},{&quot;2026-07-03&quot;:3.34},{&quot;2026-07-04&quot;:3.28},{&quot;2026-07-05&quot;:3.28},{&quot;2026-07-06&quot;:3.28},{&quot;2026-07-07&quot;:3.29},{&quot;2026-07-08&quot;:3.29},{&quot;2026-07-09&quot;:3.28},{&quot;2026-07-10&quot;:3.28},{&quot;2026-07-11&quot;:3.28},{&quot;2026-07-12&quot;:3.28},{&quot;2026-07-13&quot;:3.28},{&quot;2026-07-14&quot;:3.21},{&quot;2026-07-15&quot;:3.21},{&quot;2026-07-16&quot;:3.21},{&quot;2026-07-17&quot;:3.22},{&quot;2026-07-18&quot;:3.22},{&quot;2026-07-19&quot;:3.22},{&quot;2026-07-20&quot;:3.19},{&quot;2026-07-21&quot;:3.18},{&quot;2026-07-23&quot;:3.06},{&quot;2026-07-25&quot;:3.08},{&quot;2026-07-26&quot;:3.08},{&quot;2026-07-27&quot;:3.05},{&quot;2026-07-29&quot;:3.06},{&quot;2026-07-30&quot;:3.07},{&quot;2026-07-31&quot;:3.05},{&quot;2026-08-01&quot;:3.05},{&quot;2026-08-02&quot;:3.01},{&quot;2026-08-03&quot;:3.02},{&quot;2026-08-04&quot;:3.02},{&quot;2026-08-05&quot;:3.02},{&quot;2026-08-07&quot;:3.01},{&quot;2026-08-08&quot;:2.98},{&quot;2026-08-09&quot;:3.01},{&quot;2026-08-10&quot;:3.01},{&quot;2026-08-11&quot;:2.99},{&quot;2026-08-12&quot;:2.92},{&quot;2026-08-13&quot;:2.79},{&quot;2026-08-14&quot;:2.78},{&quot;2026-08-15&quot;:2.85},{&quot;2026-08-16&quot;:2.85},{&quot;2026-08-17&quot;:2.94},{&quot;2026-08-18&quot;:2.99},{&quot;2026-08-19&quot;:3.3},{&quot;2026-08-20&quot;:3.3},{&quot;2026-08-21&quot;:3.65},{&quot;2026-08-22&quot;:3.65},{&quot;2026-08-23&quot;:3.66},{&quot;2026-08-24&quot;:3.64},{&quot;2026-08-25&quot;:3.64},{&quot;2026-08-26&quot;:3.77},{&quot;2026-08-27&quot;:3.82},{&quot;2026-08-28&quot;:3.96},{&quot;2026-08-29&quot;:3.96},{&quot;2026-08-30&quot;:4.25},{&quot;2026-08-31&quot;:4.25},{&quot;2026-09-01&quot;:4.25},{&quot;2026-09-02&quot;:4.33},{&quot;2026-09-03&quot;:4.2},{&quot;2026-09-04&quot;:4.15},{&quot;2026-09-05&quot;:4.29},{&quot;2026-09-06&quot;:4.29},{&quot;2026-09-07&quot;:4.28},{&quot;2026-09-08&quot;:4.38},{&quot;2026-09-09&quot;:4.3},{&quot;2026-09-10&quot;:4.3},{&quot;2026-09-11&quot;:4.04}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:2.72},{&quot;2026-06-11&quot;:2.79},{&quot;2026-06-12&quot;:2.68},{&quot;2026-06-13&quot;:2.65},{&quot;2026-06-14&quot;:2.73},{&quot;2026-06-15&quot;:2.57},{&quot;2026-06-16&quot;:2.5},{&quot;2026-06-17&quot;:2.36},{&quot;2026-06-18&quot;:2.33},{&quot;2026-06-19&quot;:2.3},{&quot;2026-06-20&quot;:2.37},{&quot;2026-06-21&quot;:2.19},{&quot;2026-06-22&quot;:2.29},{&quot;2026-06-23&quot;:2.06},{&quot;2026-06-24&quot;:2.05},{&quot;2026-06-25&quot;:2.09},{&quot;2026-06-26&quot;:2.14},{&quot;2026-06-27&quot;:2.13},{&quot;2026-06-28&quot;:2.1},{&quot;2026-06-29&quot;:2.2},{&quot;2026-06-30&quot;:2.28},{&quot;2026-07-01&quot;:2.21},{&quot;2026-07-02&quot;:2.13},{&quot;2026-07-03&quot;:2.08},{&quot;2026-07-04&quot;:2.06},{&quot;2026-07-05&quot;:2.09},{&quot;2026-07-06&quot;:2.18},{&quot;2026-07-07&quot;:2.04},{&quot;2026-07-08&quot;:1.99},{&quot;2026-07-09&quot;:1.98},{&quot;2026-07-10&quot;:1.89},{&quot;2026-07-11&quot;:1.97},{&quot;2026-07-12&quot;:1.86},{&quot;2026-07-13&quot;:1.67},{&quot;2026-07-14&quot;:1.64},{&quot;2026-07-15&quot;:1.68},{&quot;2026-07-16&quot;:1.68},{&quot;2026-07-17&quot;:1.64},{&quot;2026-07-18&quot;:1.62},{&quot;2026-07-19&quot;:1.58},{&quot;2026-07-20&quot;:1.6},{&quot;2026-07-21&quot;:1.6},{&quot;2026-07-23&quot;:1.87},{&quot;2026-07-25&quot;:1.72},{&quot;2026-07-26&quot;:1.62},{&quot;2026-07-27&quot;:1.67},{&quot;2026-07-29&quot;:1.73},{&quot;2026-07-30&quot;:1.69},{&quot;2026-07-31&quot;:2.11},{&quot;2026-08-01&quot;:2.18},{&quot;2026-08-02&quot;:2.24},{&quot;2026-08-03&quot;:2.19},{&quot;2026-08-04&quot;:2.11},{&quot;2026-08-05&quot;:1.88},{&quot;2026-08-07&quot;:1.9},{&quot;2026-08-08&quot;:1.96},{&quot;2026-08-09&quot;:1.93},{&quot;2026-08-10&quot;:2.04},{&quot;2026-08-11&quot;:2.34},{&quot;2026-08-12&quot;:2.29},{&quot;2026-08-13&quot;:2.13},{&quot;2026-08-14&quot;:2.2},{&quot;2026-08-15&quot;:2.79},{&quot;2026-08-16&quot;:2.61},{&quot;2026-08-17&quot;:2.28},{&quot;2026-08-18&quot;:2.58},{&quot;2026-08-19&quot;:2.2},{&quot;2026-08-20&quot;:2.2},{&quot;2026-08-21&quot;:2.72},{&quot;2026-08-22&quot;:2.89},{&quot;2026-08-23&quot;:3.46},{&quot;2026-08-24&quot;:3.13},{&quot;2026-08-25&quot;:3.13},{&quot;2026-08-26&quot;:3.16},{&quot;2026-08-27&quot;:3.61},{&quot;2026-08-28&quot;:3.46},{&quot;2026-08-29&quot;:3.46},{&quot;2026-08-30&quot;:3.43},{&quot;2026-08-31&quot;:2.79},{&quot;2026-09-01&quot;:2.79},{&quot;2026-09-02&quot;:3.82},{&quot;2026-09-03&quot;:4.32},{&quot;2026-09-04&quot;:3.7},{&quot;2026-09-05&quot;:3.31},{&quot;2026-09-06&quot;:3.3},{&quot;2026-09-07&quot;:3.43},{&quot;2026-09-08&quot;:3.5},{&quot;2026-09-09&quot;:3.41},{&quot;2026-09-10&quot;:3.57},{&quot;2026-09-11&quot;:3.17}]}"
        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="96312"
  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-eoe 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">
            Anticausal Vestige
        </span>


      </div>

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

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

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

        <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">
            Anticausal Vestige
        </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 — Eldrazi</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>
          </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="Anticausal Vestige" src="https://cards.scryfall.io/large/front/f/b/fb9ecadf-6145-49e7-972f-bfe28ca92266.jpg?1782685364" />
    </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.48
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-12&quot;:3.36},{&quot;2026-06-13&quot;:3.35},{&quot;2026-06-14&quot;:3.35},{&quot;2026-06-15&quot;:3.37},{&quot;2026-06-16&quot;:3.39},{&quot;2026-06-17&quot;:3.39},{&quot;2026-06-18&quot;:3.19},{&quot;2026-06-19&quot;:3.19},{&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.18},{&quot;2026-06-26&quot;:3.18},{&quot;2026-06-27&quot;:3.18},{&quot;2026-06-28&quot;:3.18},{&quot;2026-06-29&quot;:3.18},{&quot;2026-06-30&quot;:3.18},{&quot;2026-07-01&quot;:3.18},{&quot;2026-07-02&quot;:3.18},{&quot;2026-07-03&quot;:3.19},{&quot;2026-07-04&quot;:3.18},{&quot;2026-07-05&quot;:3.16},{&quot;2026-07-06&quot;:3.16},{&quot;2026-07-07&quot;:3.22},{&quot;2026-07-08&quot;:3.22},{&quot;2026-07-09&quot;:3.22},{&quot;2026-07-10&quot;:3.22},{&quot;2026-07-11&quot;:3.22},{&quot;2026-07-12&quot;:3.22},{&quot;2026-07-13&quot;:3.2},{&quot;2026-07-14&quot;:3.2},{&quot;2026-07-15&quot;:3.2},{&quot;2026-07-16&quot;:3.2},{&quot;2026-07-17&quot;:3.2},{&quot;2026-07-18&quot;:3.2},{&quot;2026-07-19&quot;:3.2},{&quot;2026-07-20&quot;:3.2},{&quot;2026-07-21&quot;:3.2},{&quot;2026-07-23&quot;:3.2},{&quot;2026-07-24&quot;:3.2},{&quot;2026-07-25&quot;:3.19},{&quot;2026-07-26&quot;:3.19},{&quot;2026-07-27&quot;:3.19},{&quot;2026-07-28&quot;:3.19},{&quot;2026-07-29&quot;:3.07},{&quot;2026-07-30&quot;:3.08},{&quot;2026-07-31&quot;:3.1},{&quot;2026-08-01&quot;:3.1},{&quot;2026-08-02&quot;:3.1},{&quot;2026-08-03&quot;:3.1},{&quot;2026-08-04&quot;:3.14},{&quot;2026-08-05&quot;:3.14},{&quot;2026-08-07&quot;:3.18},{&quot;2026-08-08&quot;:3.18},{&quot;2026-08-09&quot;:3.11},{&quot;2026-08-10&quot;:3.05},{&quot;2026-08-11&quot;:3.05},{&quot;2026-08-12&quot;:3.05},{&quot;2026-08-13&quot;:3.07},{&quot;2026-08-14&quot;:3.07},{&quot;2026-08-15&quot;:3.03},{&quot;2026-08-16&quot;:3.03},{&quot;2026-08-17&quot;:3.03},{&quot;2026-08-18&quot;:2.99},{&quot;2026-08-19&quot;:2.9},{&quot;2026-08-20&quot;:2.9},{&quot;2026-08-21&quot;:2.9},{&quot;2026-08-22&quot;:2.9},{&quot;2026-08-23&quot;:2.9},{&quot;2026-08-24&quot;:2.9},{&quot;2026-08-25&quot;:2.9},{&quot;2026-08-26&quot;:2.9},{&quot;2026-08-27&quot;:2.85},{&quot;2026-08-28&quot;:2.85},{&quot;2026-08-29&quot;:2.85},{&quot;2026-08-30&quot;:2.85},{&quot;2026-08-31&quot;:2.85},{&quot;2026-09-01&quot;:2.85},{&quot;2026-09-02&quot;:2.81},{&quot;2026-09-03&quot;:2.82},{&quot;2026-09-04&quot;:2.83},{&quot;2026-09-05&quot;:2.83},{&quot;2026-09-06&quot;:2.83},{&quot;2026-09-07&quot;:2.83},{&quot;2026-09-08&quot;:2.83},{&quot;2026-09-09&quot;:2.83},{&quot;2026-09-10&quot;:2.79},{&quot;2026-09-11&quot;:2.79}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:3.15},{&quot;2026-06-13&quot;:3.15},{&quot;2026-06-14&quot;:3.05},{&quot;2026-06-15&quot;:2.92},{&quot;2026-06-16&quot;:2.97},{&quot;2026-06-17&quot;:2.97},{&quot;2026-06-18&quot;:3.05},{&quot;2026-06-19&quot;:3.05},{&quot;2026-06-20&quot;:2.94},{&quot;2026-06-21&quot;:2.93},{&quot;2026-06-22&quot;:2.92},{&quot;2026-06-23&quot;:2.93},{&quot;2026-06-24&quot;:2.93},{&quot;2026-06-25&quot;:2.93},{&quot;2026-06-26&quot;:2.93},{&quot;2026-06-27&quot;:2.93},{&quot;2026-06-28&quot;:2.96},{&quot;2026-06-29&quot;:2.88},{&quot;2026-06-30&quot;:2.92},{&quot;2026-07-01&quot;:2.86},{&quot;2026-07-02&quot;:2.88},{&quot;2026-07-03&quot;:2.88},{&quot;2026-07-04&quot;:2.68},{&quot;2026-07-05&quot;:2.68},{&quot;2026-07-06&quot;:2.68},{&quot;2026-07-07&quot;:2.62},{&quot;2026-07-08&quot;:2.56},{&quot;2026-07-09&quot;:2.49},{&quot;2026-07-10&quot;:2.49},{&quot;2026-07-11&quot;:2.49},{&quot;2026-07-12&quot;:2.55},{&quot;2026-07-13&quot;:2.55},{&quot;2026-07-14&quot;:2.55},{&quot;2026-07-15&quot;:2.48},{&quot;2026-07-16&quot;:2.47},{&quot;2026-07-17&quot;:2.46},{&quot;2026-07-18&quot;:2.47},{&quot;2026-07-19&quot;:2.47},{&quot;2026-07-20&quot;:2.45},{&quot;2026-07-21&quot;:2.4},{&quot;2026-07-23&quot;:2.36},{&quot;2026-07-24&quot;:2.34},{&quot;2026-07-25&quot;:2.3},{&quot;2026-07-26&quot;:2.29},{&quot;2026-07-27&quot;:2.27},{&quot;2026-07-28&quot;:2.32},{&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.27},{&quot;2026-08-07&quot;:2.28},{&quot;2026-08-08&quot;:2.28},{&quot;2026-08-09&quot;:2.25},{&quot;2026-08-10&quot;:2.25},{&quot;2026-08-11&quot;:2.25},{&quot;2026-08-12&quot;:2.25},{&quot;2026-08-13&quot;:2.38},{&quot;2026-08-14&quot;:2.38},{&quot;2026-08-15&quot;:2.39},{&quot;2026-08-16&quot;:2.38},{&quot;2026-08-17&quot;:2.4},{&quot;2026-08-18&quot;:2.41},{&quot;2026-08-19&quot;:2.41},{&quot;2026-08-20&quot;:2.41},{&quot;2026-08-21&quot;:2.38},{&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.38},{&quot;2026-08-28&quot;:2.38},{&quot;2026-08-29&quot;:2.38},{&quot;2026-08-30&quot;:2.38},{&quot;2026-08-31&quot;:2.39},{&quot;2026-09-01&quot;:2.44},{&quot;2026-09-02&quot;:2.44},{&quot;2026-09-03&quot;:2.43},{&quot;2026-09-04&quot;:2.46},{&quot;2026-09-05&quot;:2.39},{&quot;2026-09-06&quot;:2.36},{&quot;2026-09-07&quot;:2.4},{&quot;2026-09-08&quot;:2.46},{&quot;2026-09-09&quot;:2.49},{&quot;2026-09-10&quot;:2.49},{&quot;2026-09-11&quot;:2.48}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="49012"
  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">
            Grief
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Grief
        </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 — Elemental Incarnation</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Grief" src="https://cards.scryfall.io/large/front/e/6/e6befbc4-1320-4f26-bd9f-b1814fedda10.jpg?1783926861" />
    </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.78
              </span>

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $4.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 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-11&quot;:4.24},{&quot;2026-06-12&quot;:4.24},{&quot;2026-06-13&quot;:4.29},{&quot;2026-06-14&quot;:4.29},{&quot;2026-06-15&quot;:4.29},{&quot;2026-06-16&quot;:4.29},{&quot;2026-06-17&quot;:4.29},{&quot;2026-06-18&quot;:4.29},{&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.3},{&quot;2026-06-23&quot;:4.33},{&quot;2026-06-24&quot;:4.3},{&quot;2026-06-25&quot;:4.3},{&quot;2026-06-26&quot;:4.3},{&quot;2026-06-27&quot;:4.3},{&quot;2026-06-28&quot;:4.3},{&quot;2026-06-29&quot;:4.3},{&quot;2026-06-30&quot;:4.3},{&quot;2026-07-01&quot;:4.3},{&quot;2026-07-02&quot;:4.41},{&quot;2026-07-03&quot;:4.41},{&quot;2026-07-04&quot;:4.41},{&quot;2026-07-05&quot;:4.41},{&quot;2026-07-06&quot;:4.41},{&quot;2026-07-07&quot;:4.41},{&quot;2026-07-08&quot;:4.41},{&quot;2026-07-09&quot;:4.41},{&quot;2026-07-10&quot;:4.41},{&quot;2026-07-11&quot;:4.41},{&quot;2026-07-12&quot;:4.41},{&quot;2026-07-13&quot;:4.41},{&quot;2026-07-14&quot;:4.41},{&quot;2026-07-15&quot;:4.41},{&quot;2026-07-16&quot;:4.41},{&quot;2026-07-17&quot;:4.41},{&quot;2026-07-18&quot;:4.41},{&quot;2026-07-19&quot;:4.41},{&quot;2026-07-20&quot;:4.41},{&quot;2026-07-21&quot;:4.41},{&quot;2026-07-23&quot;:4.41},{&quot;2026-07-25&quot;:4.41},{&quot;2026-07-26&quot;:4.41},{&quot;2026-07-27&quot;:4.41},{&quot;2026-07-28&quot;:4.41},{&quot;2026-07-29&quot;:4.41},{&quot;2026-07-30&quot;:4.41},{&quot;2026-07-31&quot;:4.41},{&quot;2026-08-01&quot;:4.41},{&quot;2026-08-02&quot;:4.45},{&quot;2026-08-03&quot;:4.45},{&quot;2026-08-04&quot;:4.45},{&quot;2026-08-05&quot;:4.45},{&quot;2026-08-07&quot;:4.45},{&quot;2026-08-08&quot;:4.45},{&quot;2026-08-09&quot;:4.45},{&quot;2026-08-10&quot;:4.45},{&quot;2026-08-11&quot;:4.45},{&quot;2026-08-12&quot;:4.45},{&quot;2026-08-13&quot;:4.45},{&quot;2026-08-14&quot;:4.45},{&quot;2026-08-15&quot;:4.45},{&quot;2026-08-16&quot;:4.56},{&quot;2026-08-17&quot;:4.56},{&quot;2026-08-18&quot;:4.56},{&quot;2026-08-19&quot;:4.67},{&quot;2026-08-20&quot;:4.67},{&quot;2026-08-21&quot;:4.67},{&quot;2026-08-22&quot;:4.67},{&quot;2026-08-23&quot;:4.67},{&quot;2026-08-24&quot;:4.67},{&quot;2026-08-25&quot;:4.67},{&quot;2026-08-26&quot;:4.67},{&quot;2026-08-27&quot;:4.67},{&quot;2026-08-28&quot;:4.67},{&quot;2026-08-29&quot;:4.67},{&quot;2026-08-30&quot;:4.67},{&quot;2026-08-31&quot;:4.67},{&quot;2026-09-01&quot;:4.67},{&quot;2026-09-02&quot;:4.67},{&quot;2026-09-03&quot;:4.67},{&quot;2026-09-04&quot;:4.67},{&quot;2026-09-05&quot;:4.72},{&quot;2026-09-06&quot;:4.72},{&quot;2026-09-07&quot;:4.72},{&quot;2026-09-08&quot;:4.72},{&quot;2026-09-09&quot;:4.72},{&quot;2026-09-10&quot;:4.72},{&quot;2026-09-11&quot;:4.72}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:2.63},{&quot;2026-06-12&quot;:2.62},{&quot;2026-06-13&quot;:2.61},{&quot;2026-06-14&quot;:2.6},{&quot;2026-06-15&quot;:2.51},{&quot;2026-06-16&quot;:2.52},{&quot;2026-06-17&quot;:2.59},{&quot;2026-06-18&quot;:2.58},{&quot;2026-06-19&quot;:2.57},{&quot;2026-06-20&quot;:2.59},{&quot;2026-06-21&quot;:2.55},{&quot;2026-06-22&quot;:2.59},{&quot;2026-06-23&quot;:2.58},{&quot;2026-06-24&quot;:2.58},{&quot;2026-06-25&quot;:2.6},{&quot;2026-06-26&quot;:2.61},{&quot;2026-06-27&quot;:2.63},{&quot;2026-06-28&quot;:2.62},{&quot;2026-06-29&quot;:2.62},{&quot;2026-06-30&quot;:2.68},{&quot;2026-07-01&quot;:2.75},{&quot;2026-07-02&quot;:2.75},{&quot;2026-07-03&quot;:2.75},{&quot;2026-07-04&quot;:2.75},{&quot;2026-07-05&quot;:2.77},{&quot;2026-07-06&quot;:2.75},{&quot;2026-07-07&quot;:2.8},{&quot;2026-07-08&quot;:2.8},{&quot;2026-07-09&quot;:2.84},{&quot;2026-07-10&quot;:2.87},{&quot;2026-07-11&quot;:2.89},{&quot;2026-07-12&quot;:2.93},{&quot;2026-07-13&quot;:2.98},{&quot;2026-07-14&quot;:2.98},{&quot;2026-07-15&quot;:3.02},{&quot;2026-07-16&quot;:3.04},{&quot;2026-07-17&quot;:3.04},{&quot;2026-07-18&quot;:2.99},{&quot;2026-07-19&quot;:3.03},{&quot;2026-07-20&quot;:3.05},{&quot;2026-07-21&quot;:3.04},{&quot;2026-07-23&quot;:3.11},{&quot;2026-07-25&quot;:3.07},{&quot;2026-07-26&quot;:3.08},{&quot;2026-07-27&quot;:3.08},{&quot;2026-07-28&quot;:3.15},{&quot;2026-07-29&quot;:3.19},{&quot;2026-07-30&quot;:3.19},{&quot;2026-07-31&quot;:3.22},{&quot;2026-08-01&quot;:3.2},{&quot;2026-08-02&quot;:3.18},{&quot;2026-08-03&quot;:3.18},{&quot;2026-08-04&quot;:3.23},{&quot;2026-08-05&quot;:3.29},{&quot;2026-08-07&quot;:3.31},{&quot;2026-08-08&quot;:3.47},{&quot;2026-08-09&quot;:3.47},{&quot;2026-08-10&quot;:3.47},{&quot;2026-08-11&quot;:3.52},{&quot;2026-08-12&quot;:3.62},{&quot;2026-08-13&quot;:3.63},{&quot;2026-08-14&quot;:3.58},{&quot;2026-08-15&quot;:3.58},{&quot;2026-08-16&quot;:3.51},{&quot;2026-08-17&quot;:3.5},{&quot;2026-08-18&quot;:3.58},{&quot;2026-08-19&quot;:3.58},{&quot;2026-08-20&quot;:3.58},{&quot;2026-08-21&quot;:3.49},{&quot;2026-08-22&quot;:3.49},{&quot;2026-08-23&quot;:3.58},{&quot;2026-08-24&quot;:3.51},{&quot;2026-08-25&quot;:3.52},{&quot;2026-08-26&quot;:3.43},{&quot;2026-08-27&quot;:3.43},{&quot;2026-08-28&quot;:3.34},{&quot;2026-08-29&quot;:3.34},{&quot;2026-08-30&quot;:3.26},{&quot;2026-08-31&quot;:3.18},{&quot;2026-09-01&quot;:3.26},{&quot;2026-09-02&quot;:3.26},{&quot;2026-09-03&quot;:3.1},{&quot;2026-09-04&quot;:3.1},{&quot;2026-09-05&quot;:3.1},{&quot;2026-09-06&quot;:3.0},{&quot;2026-09-07&quot;:2.9},{&quot;2026-09-08&quot;:2.86},{&quot;2026-09-09&quot;:2.81},{&quot;2026-09-10&quot;:2.78},{&quot;2026-09-11&quot;:2.78}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $2.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="High Market" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/3/c/3c99e02f-52e7-4a42-87dc-966034be79c7.jpg?1783930082" />

        <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">
            High Market
        </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="High Market" src="https://cards.scryfall.io/large/front/3/c/3c99e02f-52e7-4a42-87dc-966034be79c7.jpg?1783930082" />
    </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.71
              </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">
                $4.46
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:4.71},{&quot;2026-06-14&quot;:4.71},{&quot;2026-06-15&quot;:4.71},{&quot;2026-06-16&quot;:4.71},{&quot;2026-06-17&quot;:4.71},{&quot;2026-06-18&quot;:4.64},{&quot;2026-06-19&quot;:4.64},{&quot;2026-06-20&quot;:4.64},{&quot;2026-06-21&quot;:4.64},{&quot;2026-06-22&quot;:4.64},{&quot;2026-06-23&quot;:4.64},{&quot;2026-06-24&quot;:4.64},{&quot;2026-06-25&quot;:4.64},{&quot;2026-06-26&quot;:4.64},{&quot;2026-06-27&quot;:4.64},{&quot;2026-06-28&quot;:4.64},{&quot;2026-06-29&quot;:4.64},{&quot;2026-06-30&quot;:4.64},{&quot;2026-07-01&quot;:4.61},{&quot;2026-07-02&quot;:4.61},{&quot;2026-07-03&quot;:4.61},{&quot;2026-07-04&quot;:4.61},{&quot;2026-07-05&quot;:4.61},{&quot;2026-07-06&quot;:4.61},{&quot;2026-07-07&quot;:4.61},{&quot;2026-07-08&quot;:4.61},{&quot;2026-07-09&quot;:4.61},{&quot;2026-07-10&quot;:4.61},{&quot;2026-07-11&quot;:4.61},{&quot;2026-07-12&quot;:4.61},{&quot;2026-07-13&quot;:4.61},{&quot;2026-07-14&quot;:4.61},{&quot;2026-07-15&quot;:4.57},{&quot;2026-07-16&quot;:4.57},{&quot;2026-07-17&quot;:4.57},{&quot;2026-07-18&quot;:4.55},{&quot;2026-07-19&quot;:4.55},{&quot;2026-07-20&quot;:4.55},{&quot;2026-07-21&quot;:4.55},{&quot;2026-07-22&quot;:4.55},{&quot;2026-07-23&quot;:4.55},{&quot;2026-07-24&quot;:4.55},{&quot;2026-07-25&quot;:4.55},{&quot;2026-07-26&quot;:4.55},{&quot;2026-07-27&quot;:4.49},{&quot;2026-07-28&quot;:4.49},{&quot;2026-07-29&quot;:4.49},{&quot;2026-07-30&quot;:4.49},{&quot;2026-07-31&quot;:4.48},{&quot;2026-08-01&quot;:4.48},{&quot;2026-08-02&quot;:4.48},{&quot;2026-08-03&quot;:4.48},{&quot;2026-08-04&quot;:4.48},{&quot;2026-08-05&quot;:4.48},{&quot;2026-08-07&quot;:4.43},{&quot;2026-08-08&quot;:4.43},{&quot;2026-08-09&quot;:4.43},{&quot;2026-08-10&quot;:4.43},{&quot;2026-08-11&quot;:4.43},{&quot;2026-08-12&quot;:4.44},{&quot;2026-08-13&quot;:4.44},{&quot;2026-08-14&quot;:4.44},{&quot;2026-08-15&quot;:4.44},{&quot;2026-08-16&quot;:4.44},{&quot;2026-08-17&quot;:4.44},{&quot;2026-08-18&quot;:4.44},{&quot;2026-08-19&quot;:4.44},{&quot;2026-08-20&quot;:4.44},{&quot;2026-08-21&quot;:4.42},{&quot;2026-08-22&quot;:4.42},{&quot;2026-08-23&quot;:4.42},{&quot;2026-08-24&quot;:4.42},{&quot;2026-08-25&quot;:4.42},{&quot;2026-08-26&quot;:4.42},{&quot;2026-08-27&quot;:4.42},{&quot;2026-08-28&quot;:4.42},{&quot;2026-08-29&quot;:4.42},{&quot;2026-08-30&quot;:4.43},{&quot;2026-08-31&quot;:4.43},{&quot;2026-09-01&quot;:4.43},{&quot;2026-09-02&quot;:4.43},{&quot;2026-09-03&quot;:4.43},{&quot;2026-09-04&quot;:4.43},{&quot;2026-09-05&quot;:4.43},{&quot;2026-09-06&quot;:4.43},{&quot;2026-09-07&quot;:4.43},{&quot;2026-09-08&quot;:4.43},{&quot;2026-09-09&quot;:4.43},{&quot;2026-09-10&quot;:4.46},{&quot;2026-09-11&quot;:4.46}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:3.03},{&quot;2026-06-14&quot;:3.03},{&quot;2026-06-15&quot;:2.97},{&quot;2026-06-16&quot;:2.97},{&quot;2026-06-17&quot;:2.86},{&quot;2026-06-18&quot;:2.86},{&quot;2026-06-19&quot;:2.86},{&quot;2026-06-20&quot;:2.86},{&quot;2026-06-21&quot;:2.86},{&quot;2026-06-22&quot;:2.86},{&quot;2026-06-23&quot;:2.86},{&quot;2026-06-24&quot;:2.86},{&quot;2026-06-25&quot;:2.8},{&quot;2026-06-26&quot;:2.8},{&quot;2026-06-27&quot;:2.8},{&quot;2026-06-28&quot;:2.8},{&quot;2026-06-29&quot;:2.8},{&quot;2026-06-30&quot;:2.83},{&quot;2026-07-01&quot;:2.8},{&quot;2026-07-02&quot;:2.8},{&quot;2026-07-03&quot;:2.85},{&quot;2026-07-04&quot;:2.78},{&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.9},{&quot;2026-07-09&quot;:3.0},{&quot;2026-07-10&quot;:3.0},{&quot;2026-07-11&quot;:3.0},{&quot;2026-07-12&quot;:3.0},{&quot;2026-07-13&quot;:3.0},{&quot;2026-07-14&quot;:2.91},{&quot;2026-07-15&quot;:2.99},{&quot;2026-07-16&quot;:3.0},{&quot;2026-07-17&quot;:3.0},{&quot;2026-07-18&quot;:3.0},{&quot;2026-07-19&quot;:3.14},{&quot;2026-07-20&quot;:3.14},{&quot;2026-07-21&quot;:3.24},{&quot;2026-07-22&quot;:3.24},{&quot;2026-07-23&quot;:3.15},{&quot;2026-07-24&quot;:3.15},{&quot;2026-07-25&quot;:3.13},{&quot;2026-07-26&quot;:3.11},{&quot;2026-07-27&quot;:3.11},{&quot;2026-07-28&quot;:3.11},{&quot;2026-07-29&quot;:3.11},{&quot;2026-07-30&quot;:3.11},{&quot;2026-07-31&quot;:3.11},{&quot;2026-08-01&quot;:3.11},{&quot;2026-08-02&quot;:3.09},{&quot;2026-08-03&quot;:3.09},{&quot;2026-08-04&quot;:3.07},{&quot;2026-08-05&quot;:3.07},{&quot;2026-08-07&quot;:3.05},{&quot;2026-08-08&quot;:3.05},{&quot;2026-08-09&quot;:3.03},{&quot;2026-08-10&quot;:3.03},{&quot;2026-08-11&quot;:3.03},{&quot;2026-08-12&quot;:2.95},{&quot;2026-08-13&quot;:2.95},{&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;:2.88},{&quot;2026-08-18&quot;:2.88},{&quot;2026-08-19&quot;:2.88},{&quot;2026-08-20&quot;:2.77},{&quot;2026-08-21&quot;:2.65},{&quot;2026-08-22&quot;:2.49},{&quot;2026-08-23&quot;:2.49},{&quot;2026-08-24&quot;:2.49},{&quot;2026-08-25&quot;:2.45},{&quot;2026-08-26&quot;:2.45},{&quot;2026-08-27&quot;:2.45},{&quot;2026-08-28&quot;:2.45},{&quot;2026-08-29&quot;:2.45},{&quot;2026-08-30&quot;:2.45},{&quot;2026-08-31&quot;:2.39},{&quot;2026-09-01&quot;:2.39},{&quot;2026-09-02&quot;:2.39},{&quot;2026-09-03&quot;:2.39},{&quot;2026-09-04&quot;:2.39},{&quot;2026-09-05&quot;:2.53},{&quot;2026-09-06&quot;:2.53},{&quot;2026-09-07&quot;:2.53},{&quot;2026-09-08&quot;:2.8},{&quot;2026-09-09&quot;:2.8},{&quot;2026-09-10&quot;:2.71},{&quot;2026-09-11&quot;:2.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="77645"
  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-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">
            Cauldron Familiar
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Cauldron Familiar
        </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 — Cat</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Cauldron Familiar" src="https://cards.scryfall.io/large/front/9/a/9a539a23-8383-4525-82dd-acfe1d219fe9.jpg?1783932642" />
    </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.55
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  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">
                $4.07
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-11&quot;:3.17},{&quot;2026-06-12&quot;:3.17},{&quot;2026-06-13&quot;:3.17},{&quot;2026-06-14&quot;:3.17},{&quot;2026-06-15&quot;:3.09},{&quot;2026-06-16&quot;:3.09},{&quot;2026-06-17&quot;:3.09},{&quot;2026-06-18&quot;:3.4},{&quot;2026-06-19&quot;:3.42},{&quot;2026-06-20&quot;:3.42},{&quot;2026-06-21&quot;:3.41},{&quot;2026-06-22&quot;:3.41},{&quot;2026-06-23&quot;:3.41},{&quot;2026-06-24&quot;:3.41},{&quot;2026-06-25&quot;:3.41},{&quot;2026-06-26&quot;:3.45},{&quot;2026-06-27&quot;:3.45},{&quot;2026-06-28&quot;:3.45},{&quot;2026-06-29&quot;:3.45},{&quot;2026-06-30&quot;:3.45},{&quot;2026-07-01&quot;:3.4},{&quot;2026-07-02&quot;:3.4},{&quot;2026-07-03&quot;:3.44},{&quot;2026-07-04&quot;:3.55},{&quot;2026-07-05&quot;:3.56},{&quot;2026-07-06&quot;:3.56},{&quot;2026-07-07&quot;:3.56},{&quot;2026-07-08&quot;:3.55},{&quot;2026-07-09&quot;:3.55},{&quot;2026-07-10&quot;:3.56},{&quot;2026-07-11&quot;:3.56},{&quot;2026-07-12&quot;:3.56},{&quot;2026-07-13&quot;:3.56},{&quot;2026-07-14&quot;:3.56},{&quot;2026-07-15&quot;:3.56},{&quot;2026-07-16&quot;:3.56},{&quot;2026-07-17&quot;:3.86},{&quot;2026-07-18&quot;:4.14},{&quot;2026-07-19&quot;:4.14},{&quot;2026-07-20&quot;:4.14},{&quot;2026-07-21&quot;:4.14},{&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.24},{&quot;2026-07-28&quot;:4.24},{&quot;2026-07-29&quot;:4.24},{&quot;2026-07-30&quot;:4.24},{&quot;2026-07-31&quot;:4.24},{&quot;2026-08-01&quot;:4.43},{&quot;2026-08-02&quot;:4.5},{&quot;2026-08-03&quot;:4.5},{&quot;2026-08-04&quot;:4.5},{&quot;2026-08-05&quot;:4.5},{&quot;2026-08-07&quot;:4.5},{&quot;2026-08-08&quot;:4.5},{&quot;2026-08-09&quot;:4.44},{&quot;2026-08-10&quot;:4.44},{&quot;2026-08-11&quot;:4.44},{&quot;2026-08-12&quot;:4.44},{&quot;2026-08-13&quot;:4.44},{&quot;2026-08-14&quot;:4.44},{&quot;2026-08-15&quot;:4.44},{&quot;2026-08-16&quot;:4.44},{&quot;2026-08-17&quot;:4.44},{&quot;2026-08-18&quot;:4.28},{&quot;2026-08-19&quot;:4.28},{&quot;2026-08-20&quot;:4.28},{&quot;2026-08-21&quot;:4.28},{&quot;2026-08-22&quot;:4.28},{&quot;2026-08-23&quot;:4.28},{&quot;2026-08-24&quot;:4.28},{&quot;2026-08-25&quot;:4.28},{&quot;2026-08-26&quot;:4.28},{&quot;2026-08-27&quot;:4.28},{&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.33},{&quot;2026-09-03&quot;:4.33},{&quot;2026-09-04&quot;:4.31},{&quot;2026-09-05&quot;:4.31},{&quot;2026-09-06&quot;:4.4},{&quot;2026-09-07&quot;:4.4},{&quot;2026-09-08&quot;:4.08},{&quot;2026-09-09&quot;:4.05},{&quot;2026-09-10&quot;:4.05},{&quot;2026-09-11&quot;:4.07}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:2.69},{&quot;2026-06-12&quot;:2.75},{&quot;2026-06-13&quot;:2.88},{&quot;2026-06-14&quot;:2.78},{&quot;2026-06-15&quot;:2.93},{&quot;2026-06-16&quot;:2.93},{&quot;2026-06-17&quot;:3.03},{&quot;2026-06-18&quot;:2.96},{&quot;2026-06-19&quot;:3.0},{&quot;2026-06-20&quot;:3.06},{&quot;2026-06-21&quot;:3.09},{&quot;2026-06-22&quot;:3.04},{&quot;2026-06-23&quot;:3.05},{&quot;2026-06-24&quot;:2.93},{&quot;2026-06-25&quot;:2.65},{&quot;2026-06-26&quot;:2.19},{&quot;2026-06-27&quot;:2.12},{&quot;2026-06-28&quot;:1.77},{&quot;2026-06-29&quot;:1.78},{&quot;2026-06-30&quot;:1.92},{&quot;2026-07-01&quot;:2.16},{&quot;2026-07-02&quot;:2.33},{&quot;2026-07-03&quot;:2.26},{&quot;2026-07-04&quot;:2.24},{&quot;2026-07-05&quot;:2.24},{&quot;2026-07-06&quot;:2.3},{&quot;2026-07-07&quot;:2.26},{&quot;2026-07-08&quot;:2.35},{&quot;2026-07-09&quot;:2.49},{&quot;2026-07-10&quot;:2.53},{&quot;2026-07-11&quot;:2.26},{&quot;2026-07-12&quot;:2.19},{&quot;2026-07-13&quot;:2.16},{&quot;2026-07-14&quot;:2.2},{&quot;2026-07-15&quot;:2.19},{&quot;2026-07-16&quot;:2.12},{&quot;2026-07-17&quot;:2.15},{&quot;2026-07-18&quot;:2.2},{&quot;2026-07-19&quot;:2.1},{&quot;2026-07-20&quot;:2.03},{&quot;2026-07-21&quot;:2.1},{&quot;2026-07-23&quot;:2.36},{&quot;2026-07-25&quot;:2.37},{&quot;2026-07-26&quot;:2.38},{&quot;2026-07-27&quot;:2.49},{&quot;2026-07-28&quot;:2.28},{&quot;2026-07-29&quot;:2.42},{&quot;2026-07-30&quot;:2.47},{&quot;2026-07-31&quot;:2.58},{&quot;2026-08-01&quot;:2.61},{&quot;2026-08-02&quot;:2.7},{&quot;2026-08-03&quot;:2.8},{&quot;2026-08-04&quot;:2.69},{&quot;2026-08-05&quot;:2.75},{&quot;2026-08-07&quot;:2.81},{&quot;2026-08-08&quot;:2.86},{&quot;2026-08-09&quot;:2.76},{&quot;2026-08-10&quot;:2.77},{&quot;2026-08-11&quot;:2.73},{&quot;2026-08-12&quot;:2.68},{&quot;2026-08-13&quot;:2.56},{&quot;2026-08-14&quot;:2.4},{&quot;2026-08-15&quot;:2.42},{&quot;2026-08-16&quot;:2.41},{&quot;2026-08-17&quot;:2.51},{&quot;2026-08-18&quot;:2.49},{&quot;2026-08-19&quot;:2.47},{&quot;2026-08-20&quot;:2.47},{&quot;2026-08-21&quot;:2.48},{&quot;2026-08-22&quot;:2.55},{&quot;2026-08-23&quot;:2.78},{&quot;2026-08-24&quot;:2.78},{&quot;2026-08-25&quot;:2.78},{&quot;2026-08-26&quot;:2.72},{&quot;2026-08-27&quot;:2.79},{&quot;2026-08-28&quot;:2.67},{&quot;2026-08-29&quot;:2.67},{&quot;2026-08-30&quot;:2.4},{&quot;2026-08-31&quot;:2.37},{&quot;2026-09-01&quot;:2.37},{&quot;2026-09-02&quot;:2.25},{&quot;2026-09-03&quot;:2.21},{&quot;2026-09-04&quot;:2.24},{&quot;2026-09-05&quot;:2.26},{&quot;2026-09-06&quot;:2.26},{&quot;2026-09-07&quot;:2.36},{&quot;2026-09-08&quot;:2.48},{&quot;2026-09-09&quot;:2.42},{&quot;2026-09-10&quot;:2.45},{&quot;2026-09-11&quot;:2.55}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="95837"
  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-eoe 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">
            Swamp
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Basic Land — Swamp
      </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">
              ↑
              33%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $2.17
          </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="Swamp" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/3/e/3e724e54-a622-4c77-8183-5a397a7c14a9.jpg?1752947631" />

        <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">
            Swamp
        </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 — Swamp</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="Swamp" src="https://cards.scryfall.io/large/front/3/e/3e724e54-a622-4c77-8183-5a397a7c14a9.jpg?1752947631" />
    </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">
                $2.17
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  33%
                </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.22
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:1.91},{&quot;2026-06-14&quot;:1.66},{&quot;2026-06-15&quot;:1.84},{&quot;2026-06-16&quot;:1.79},{&quot;2026-06-17&quot;:1.84},{&quot;2026-06-18&quot;:1.73},{&quot;2026-06-19&quot;:1.68},{&quot;2026-06-20&quot;:1.68},{&quot;2026-06-21&quot;:1.67},{&quot;2026-06-22&quot;:1.55},{&quot;2026-06-23&quot;:1.54},{&quot;2026-06-24&quot;:1.61},{&quot;2026-06-25&quot;:1.57},{&quot;2026-06-26&quot;:1.6},{&quot;2026-06-27&quot;:1.66},{&quot;2026-06-28&quot;:1.69},{&quot;2026-06-29&quot;:1.68},{&quot;2026-06-30&quot;:1.64},{&quot;2026-07-01&quot;:1.66},{&quot;2026-07-02&quot;:1.62},{&quot;2026-07-03&quot;:1.65},{&quot;2026-07-04&quot;:1.59},{&quot;2026-07-05&quot;:1.45},{&quot;2026-07-06&quot;:1.47},{&quot;2026-07-07&quot;:1.59},{&quot;2026-07-08&quot;:1.58},{&quot;2026-07-09&quot;:1.57},{&quot;2026-07-10&quot;:1.66},{&quot;2026-07-11&quot;:1.79},{&quot;2026-07-12&quot;:1.78},{&quot;2026-07-13&quot;:1.82},{&quot;2026-07-14&quot;:1.78},{&quot;2026-07-15&quot;:1.93},{&quot;2026-07-16&quot;:1.94},{&quot;2026-07-17&quot;:1.98},{&quot;2026-07-18&quot;:1.98},{&quot;2026-07-19&quot;:1.95},{&quot;2026-07-20&quot;:1.83},{&quot;2026-07-21&quot;:1.76},{&quot;2026-07-22&quot;:1.72},{&quot;2026-07-23&quot;:1.61},{&quot;2026-07-24&quot;:1.59},{&quot;2026-07-25&quot;:1.6},{&quot;2026-07-26&quot;:1.59},{&quot;2026-07-27&quot;:1.51},{&quot;2026-07-28&quot;:1.54},{&quot;2026-07-29&quot;:1.54},{&quot;2026-07-30&quot;:1.53},{&quot;2026-07-31&quot;:1.58},{&quot;2026-08-01&quot;:1.7},{&quot;2026-08-02&quot;:1.89},{&quot;2026-08-03&quot;:2.18},{&quot;2026-08-04&quot;:2.18},{&quot;2026-08-05&quot;:2.09},{&quot;2026-08-07&quot;:2.08},{&quot;2026-08-08&quot;:2.09},{&quot;2026-08-09&quot;:2.11},{&quot;2026-08-10&quot;:2.1},{&quot;2026-08-11&quot;:2.04},{&quot;2026-08-12&quot;:1.92},{&quot;2026-08-13&quot;:2.06},{&quot;2026-08-14&quot;:2.27},{&quot;2026-08-15&quot;:2.28},{&quot;2026-08-16&quot;:2.18},{&quot;2026-08-17&quot;:2.23},{&quot;2026-08-18&quot;:2.48},{&quot;2026-08-19&quot;:2.27},{&quot;2026-08-20&quot;:2.35},{&quot;2026-08-21&quot;:2.35},{&quot;2026-08-22&quot;:2.49},{&quot;2026-08-23&quot;:2.45},{&quot;2026-08-24&quot;:2.41},{&quot;2026-08-25&quot;:2.39},{&quot;2026-08-26&quot;:2.37},{&quot;2026-08-27&quot;:2.4},{&quot;2026-08-28&quot;:2.35},{&quot;2026-08-29&quot;:2.35},{&quot;2026-08-30&quot;:2.54},{&quot;2026-08-31&quot;:2.49},{&quot;2026-09-01&quot;:2.47},{&quot;2026-09-02&quot;:2.84},{&quot;2026-09-03&quot;:2.78},{&quot;2026-09-04&quot;:2.72},{&quot;2026-09-05&quot;:2.72},{&quot;2026-09-06&quot;:2.43},{&quot;2026-09-07&quot;:2.43},{&quot;2026-09-08&quot;:2.38},{&quot;2026-09-09&quot;:2.6},{&quot;2026-09-10&quot;:2.19},{&quot;2026-09-11&quot;:2.22}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.24},{&quot;2026-06-14&quot;:1.18},{&quot;2026-06-15&quot;:1.22},{&quot;2026-06-16&quot;:1.22},{&quot;2026-06-17&quot;:1.39},{&quot;2026-06-18&quot;:1.28},{&quot;2026-06-19&quot;:1.27},{&quot;2026-06-20&quot;:1.17},{&quot;2026-06-21&quot;:1.23},{&quot;2026-06-22&quot;:1.2},{&quot;2026-06-23&quot;:1.2},{&quot;2026-06-24&quot;:1.15},{&quot;2026-06-25&quot;:1.12},{&quot;2026-06-26&quot;:1.12},{&quot;2026-06-27&quot;:1.17},{&quot;2026-06-28&quot;:1.14},{&quot;2026-06-29&quot;:1.08},{&quot;2026-06-30&quot;:1.09},{&quot;2026-07-01&quot;:1.14},{&quot;2026-07-02&quot;:1.16},{&quot;2026-07-03&quot;:1.17},{&quot;2026-07-04&quot;:1.18},{&quot;2026-07-05&quot;:1.21},{&quot;2026-07-06&quot;:1.23},{&quot;2026-07-07&quot;:1.27},{&quot;2026-07-08&quot;:1.33},{&quot;2026-07-09&quot;:1.44},{&quot;2026-07-10&quot;:1.43},{&quot;2026-07-11&quot;:1.37},{&quot;2026-07-12&quot;:1.35},{&quot;2026-07-13&quot;:1.31},{&quot;2026-07-14&quot;:1.31},{&quot;2026-07-15&quot;:1.37},{&quot;2026-07-16&quot;:1.44},{&quot;2026-07-17&quot;:1.36},{&quot;2026-07-18&quot;:1.32},{&quot;2026-07-19&quot;:1.36},{&quot;2026-07-20&quot;:1.53},{&quot;2026-07-21&quot;:1.44},{&quot;2026-07-22&quot;:1.44},{&quot;2026-07-23&quot;:1.36},{&quot;2026-07-24&quot;:1.4},{&quot;2026-07-25&quot;:1.39},{&quot;2026-07-26&quot;:1.36},{&quot;2026-07-27&quot;:1.36},{&quot;2026-07-28&quot;:1.36},{&quot;2026-07-29&quot;:1.36},{&quot;2026-07-30&quot;:1.57},{&quot;2026-07-31&quot;:1.63},{&quot;2026-08-01&quot;:1.61},{&quot;2026-08-02&quot;:1.77},{&quot;2026-08-03&quot;:1.64},{&quot;2026-08-04&quot;:1.64},{&quot;2026-08-05&quot;:1.63},{&quot;2026-08-07&quot;:1.41},{&quot;2026-08-08&quot;:1.43},{&quot;2026-08-09&quot;:1.41},{&quot;2026-08-10&quot;:1.36},{&quot;2026-08-11&quot;:1.21},{&quot;2026-08-12&quot;:1.21},{&quot;2026-08-13&quot;:1.67},{&quot;2026-08-14&quot;:1.79},{&quot;2026-08-15&quot;:2.06},{&quot;2026-08-16&quot;:2.0},{&quot;2026-08-17&quot;:1.88},{&quot;2026-08-18&quot;:1.85},{&quot;2026-08-19&quot;:1.64},{&quot;2026-08-20&quot;:1.67},{&quot;2026-08-21&quot;:1.52},{&quot;2026-08-22&quot;:1.5},{&quot;2026-08-23&quot;:1.8},{&quot;2026-08-24&quot;:1.81},{&quot;2026-08-25&quot;:1.86},{&quot;2026-08-26&quot;:1.96},{&quot;2026-08-27&quot;:1.98},{&quot;2026-08-28&quot;:2.06},{&quot;2026-08-29&quot;:2.06},{&quot;2026-08-30&quot;:1.67},{&quot;2026-08-31&quot;:1.67},{&quot;2026-09-01&quot;:1.68},{&quot;2026-09-02&quot;:1.69},{&quot;2026-09-03&quot;:1.72},{&quot;2026-09-04&quot;:1.77},{&quot;2026-09-05&quot;:1.63},{&quot;2026-09-06&quot;:1.62},{&quot;2026-09-07&quot;:1.84},{&quot;2026-09-08&quot;:1.6},{&quot;2026-09-09&quot;:2.18},{&quot;2026-09-10&quot;:2.17},{&quot;2026-09-11&quot;:2.17}]}"
        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="48994"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mh2 ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Damn" src="https://cards.scryfall.io/large/front/e/f/efeae088-9ac5-4d2f-a15c-d8675a471ac5.jpg?1783926863" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$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-10&quot;:3.84},{&quot;2026-06-11&quot;:3.84},{&quot;2026-06-12&quot;:3.84},{&quot;2026-06-13&quot;:3.84},{&quot;2026-06-14&quot;:3.84},{&quot;2026-06-15&quot;:3.84},{&quot;2026-06-16&quot;:3.84},{&quot;2026-06-17&quot;:3.85},{&quot;2026-06-18&quot;:3.85},{&quot;2026-06-19&quot;:3.85},{&quot;2026-06-20&quot;:3.85},{&quot;2026-06-21&quot;:3.85},{&quot;2026-06-22&quot;:3.79},{&quot;2026-06-23&quot;:3.79},{&quot;2026-06-24&quot;:3.79},{&quot;2026-06-25&quot;:3.79},{&quot;2026-06-26&quot;:3.79},{&quot;2026-06-27&quot;:3.79},{&quot;2026-06-28&quot;:3.79},{&quot;2026-06-29&quot;:3.79},{&quot;2026-06-30&quot;:3.79},{&quot;2026-07-01&quot;:3.79},{&quot;2026-07-02&quot;:3.79},{&quot;2026-07-03&quot;:3.79},{&quot;2026-07-04&quot;:3.79},{&quot;2026-07-05&quot;:3.79},{&quot;2026-07-06&quot;:3.79},{&quot;2026-07-07&quot;:3.79},{&quot;2026-07-08&quot;:3.79},{&quot;2026-07-09&quot;:3.79},{&quot;2026-07-10&quot;:3.73},{&quot;2026-07-11&quot;:3.73},{&quot;2026-07-12&quot;:3.73},{&quot;2026-07-13&quot;:3.73},{&quot;2026-07-14&quot;:3.73},{&quot;2026-07-15&quot;:3.73},{&quot;2026-07-16&quot;:3.73},{&quot;2026-07-17&quot;:3.72},{&quot;2026-07-18&quot;:3.72},{&quot;2026-07-19&quot;:3.72},{&quot;2026-07-20&quot;:3.72},{&quot;2026-07-21&quot;:3.72},{&quot;2026-07-23&quot;:3.72},{&quot;2026-07-25&quot;:3.72},{&quot;2026-07-26&quot;:3.72},{&quot;2026-07-27&quot;:3.72},{&quot;2026-07-29&quot;:3.72},{&quot;2026-07-30&quot;:3.82},{&quot;2026-07-31&quot;:3.82},{&quot;2026-08-01&quot;:3.82},{&quot;2026-08-02&quot;:3.82},{&quot;2026-08-03&quot;:3.82},{&quot;2026-08-04&quot;:3.82},{&quot;2026-08-05&quot;:3.82},{&quot;2026-08-07&quot;:3.82},{&quot;2026-08-08&quot;:3.82},{&quot;2026-08-09&quot;:3.79},{&quot;2026-08-10&quot;:3.7},{&quot;2026-08-11&quot;:3.7},{&quot;2026-08-12&quot;:3.7},{&quot;2026-08-13&quot;:3.7},{&quot;2026-08-14&quot;:3.71},{&quot;2026-08-15&quot;:3.71},{&quot;2026-08-16&quot;:3.71},{&quot;2026-08-17&quot;:3.71},{&quot;2026-08-18&quot;:3.71},{&quot;2026-08-19&quot;:3.71},{&quot;2026-08-20&quot;:3.71},{&quot;2026-08-21&quot;:3.71},{&quot;2026-08-22&quot;:3.71},{&quot;2026-08-23&quot;:3.71},{&quot;2026-08-24&quot;:3.71},{&quot;2026-08-25&quot;:3.71},{&quot;2026-08-26&quot;:3.71},{&quot;2026-08-27&quot;:3.71},{&quot;2026-08-28&quot;:3.8},{&quot;2026-08-29&quot;:3.8},{&quot;2026-08-30&quot;:3.76},{&quot;2026-08-31&quot;:3.76},{&quot;2026-09-01&quot;:3.76},{&quot;2026-09-02&quot;:3.8},{&quot;2026-09-03&quot;:3.8},{&quot;2026-09-04&quot;:3.8},{&quot;2026-09-05&quot;:3.8},{&quot;2026-09-06&quot;:3.8},{&quot;2026-09-07&quot;:3.8},{&quot;2026-09-08&quot;:3.8},{&quot;2026-09-09&quot;:3.74},{&quot;2026-09-10&quot;:3.74},{&quot;2026-09-11&quot;:3.74}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:2.65},{&quot;2026-06-11&quot;:2.7},{&quot;2026-06-12&quot;:2.67},{&quot;2026-06-13&quot;:2.96},{&quot;2026-06-14&quot;:2.96},{&quot;2026-06-15&quot;:2.83},{&quot;2026-06-16&quot;:2.76},{&quot;2026-06-17&quot;:2.92},{&quot;2026-06-18&quot;:2.92},{&quot;2026-06-19&quot;:2.91},{&quot;2026-06-20&quot;:2.88},{&quot;2026-06-21&quot;:2.75},{&quot;2026-06-22&quot;:2.71},{&quot;2026-06-23&quot;:2.27},{&quot;2026-06-24&quot;:2.08},{&quot;2026-06-25&quot;:2.02},{&quot;2026-06-26&quot;:2.05},{&quot;2026-06-27&quot;:1.97},{&quot;2026-06-28&quot;:1.82},{&quot;2026-06-29&quot;:1.66},{&quot;2026-06-30&quot;:1.84},{&quot;2026-07-01&quot;:1.79},{&quot;2026-07-02&quot;:1.79},{&quot;2026-07-03&quot;:1.72},{&quot;2026-07-04&quot;:1.58},{&quot;2026-07-05&quot;:1.6},{&quot;2026-07-06&quot;:1.58},{&quot;2026-07-07&quot;:1.59},{&quot;2026-07-08&quot;:1.69},{&quot;2026-07-09&quot;:1.68},{&quot;2026-07-10&quot;:1.72},{&quot;2026-07-11&quot;:1.71},{&quot;2026-07-12&quot;:1.76},{&quot;2026-07-13&quot;:1.8},{&quot;2026-07-14&quot;:1.84},{&quot;2026-07-15&quot;:1.84},{&quot;2026-07-16&quot;:1.84},{&quot;2026-07-17&quot;:1.84},{&quot;2026-07-18&quot;:1.86},{&quot;2026-07-19&quot;:1.88},{&quot;2026-07-20&quot;:1.86},{&quot;2026-07-21&quot;:1.85},{&quot;2026-07-23&quot;:1.89},{&quot;2026-07-25&quot;:1.81},{&quot;2026-07-26&quot;:1.71},{&quot;2026-07-27&quot;:1.71},{&quot;2026-07-29&quot;:1.77},{&quot;2026-07-30&quot;:1.77},{&quot;2026-07-31&quot;:1.66},{&quot;2026-08-01&quot;:1.64},{&quot;2026-08-02&quot;:1.64},{&quot;2026-08-03&quot;:1.68},{&quot;2026-08-04&quot;:1.76},{&quot;2026-08-05&quot;:1.75},{&quot;2026-08-07&quot;:1.73},{&quot;2026-08-08&quot;:1.73},{&quot;2026-08-09&quot;:1.76},{&quot;2026-08-10&quot;:1.77},{&quot;2026-08-11&quot;:1.84},{&quot;2026-08-12&quot;:1.83},{&quot;2026-08-13&quot;:1.82},{&quot;2026-08-14&quot;:1.81},{&quot;2026-08-15&quot;:1.73},{&quot;2026-08-16&quot;:1.71},{&quot;2026-08-17&quot;:1.67},{&quot;2026-08-18&quot;:1.67},{&quot;2026-08-19&quot;:1.67},{&quot;2026-08-20&quot;:1.67},{&quot;2026-08-21&quot;:1.86},{&quot;2026-08-22&quot;:1.87},{&quot;2026-08-23&quot;:1.87},{&quot;2026-08-24&quot;:2.02},{&quot;2026-08-25&quot;:2.02},{&quot;2026-08-26&quot;:2.05},{&quot;2026-08-27&quot;:1.93},{&quot;2026-08-28&quot;:2.0},{&quot;2026-08-29&quot;:2.0},{&quot;2026-08-30&quot;:1.9},{&quot;2026-08-31&quot;:1.92},{&quot;2026-09-01&quot;:1.92},{&quot;2026-09-02&quot;:1.99},{&quot;2026-09-03&quot;:2.05},{&quot;2026-09-04&quot;:2.03},{&quot;2026-09-05&quot;:1.97},{&quot;2026-09-06&quot;:1.94},{&quot;2026-09-07&quot;:1.93},{&quot;2026-09-08&quot;:1.9},{&quot;2026-09-09&quot;:1.91},{&quot;2026-09-10&quot;:1.92},{&quot;2026-09-11&quot;:1.92}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="21300"
  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">
            Orzhov Basilica
        </span>


      </div>

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

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

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

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

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

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

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

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

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            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="Orzhov Basilica" src="https://cards.scryfall.io/large/front/b/8/b8ee89c5-5504-4b9b-b70e-4b48e4c66c76.jpg?1783921749" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $2.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">$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;2026-06-12&quot;:2.22},{&quot;2026-06-13&quot;:2.22},{&quot;2026-06-14&quot;:2.22},{&quot;2026-06-15&quot;:2.22},{&quot;2026-06-16&quot;:2.22},{&quot;2026-06-17&quot;:2.22},{&quot;2026-06-18&quot;:2.22},{&quot;2026-06-19&quot;:2.22},{&quot;2026-06-20&quot;:2.22},{&quot;2026-06-21&quot;:2.22},{&quot;2026-06-22&quot;:2.22},{&quot;2026-06-23&quot;:2.24},{&quot;2026-06-24&quot;:2.18},{&quot;2026-06-25&quot;:2.18},{&quot;2026-06-26&quot;:2.11},{&quot;2026-06-27&quot;:2.11},{&quot;2026-06-28&quot;:2.16},{&quot;2026-06-29&quot;:2.08},{&quot;2026-06-30&quot;:2.08},{&quot;2026-07-01&quot;:2.08},{&quot;2026-07-02&quot;:2.02},{&quot;2026-07-03&quot;:2.04},{&quot;2026-07-04&quot;:1.9},{&quot;2026-07-05&quot;:1.9},{&quot;2026-07-06&quot;:1.9},{&quot;2026-07-07&quot;:1.9},{&quot;2026-07-08&quot;:1.91},{&quot;2026-07-09&quot;:1.94},{&quot;2026-07-10&quot;:1.94},{&quot;2026-07-11&quot;:1.95},{&quot;2026-07-12&quot;:1.95},{&quot;2026-07-13&quot;:1.95},{&quot;2026-07-14&quot;:1.95},{&quot;2026-07-15&quot;:1.95},{&quot;2026-07-16&quot;:1.95},{&quot;2026-07-17&quot;:1.93},{&quot;2026-07-18&quot;:1.93},{&quot;2026-07-19&quot;:1.93},{&quot;2026-07-20&quot;:1.89},{&quot;2026-07-21&quot;:1.89},{&quot;2026-07-23&quot;:1.84},{&quot;2026-07-24&quot;:1.84},{&quot;2026-07-25&quot;:1.84},{&quot;2026-07-26&quot;:1.84},{&quot;2026-07-27&quot;:1.82},{&quot;2026-07-28&quot;:1.82},{&quot;2026-07-29&quot;:1.82},{&quot;2026-07-30&quot;:1.82},{&quot;2026-07-31&quot;:1.76},{&quot;2026-08-01&quot;:1.76},{&quot;2026-08-02&quot;:1.76},{&quot;2026-08-03&quot;:1.76},{&quot;2026-08-04&quot;:1.74},{&quot;2026-08-05&quot;:1.77},{&quot;2026-08-07&quot;:1.89},{&quot;2026-08-08&quot;:1.89},{&quot;2026-08-09&quot;:1.89},{&quot;2026-08-10&quot;:1.91},{&quot;2026-08-11&quot;:2.0},{&quot;2026-08-12&quot;:2.08},{&quot;2026-08-13&quot;:2.08},{&quot;2026-08-14&quot;:2.1},{&quot;2026-08-15&quot;:2.05},{&quot;2026-08-16&quot;:2.05},{&quot;2026-08-17&quot;:2.11},{&quot;2026-08-18&quot;:2.14},{&quot;2026-08-19&quot;:2.21},{&quot;2026-08-20&quot;:2.21},{&quot;2026-08-21&quot;:2.21},{&quot;2026-08-22&quot;:2.19},{&quot;2026-08-23&quot;:2.19},{&quot;2026-08-24&quot;:2.19},{&quot;2026-08-25&quot;:2.22},{&quot;2026-08-26&quot;:2.22},{&quot;2026-08-27&quot;:2.22},{&quot;2026-08-28&quot;:2.25},{&quot;2026-08-29&quot;:2.25},{&quot;2026-08-30&quot;:2.32},{&quot;2026-08-31&quot;:2.44},{&quot;2026-09-01&quot;:2.41},{&quot;2026-09-02&quot;:2.44},{&quot;2026-09-03&quot;:2.52},{&quot;2026-09-04&quot;:2.52},{&quot;2026-09-05&quot;:2.5},{&quot;2026-09-06&quot;:2.5},{&quot;2026-09-07&quot;:2.5},{&quot;2026-09-08&quot;:2.48},{&quot;2026-09-09&quot;:2.48},{&quot;2026-09-10&quot;:2.5},{&quot;2026-09-11&quot;:2.5}],&quot;normal&quot;:[{&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.68},{&quot;2026-06-16&quot;:1.68},{&quot;2026-06-17&quot;:1.68},{&quot;2026-06-18&quot;:1.68},{&quot;2026-06-19&quot;:1.71},{&quot;2026-06-20&quot;:1.71},{&quot;2026-06-21&quot;:1.7},{&quot;2026-06-22&quot;:1.69},{&quot;2026-06-23&quot;:1.68},{&quot;2026-06-24&quot;:1.72},{&quot;2026-06-25&quot;:1.74},{&quot;2026-06-26&quot;:1.73},{&quot;2026-06-27&quot;:1.7},{&quot;2026-06-28&quot;:1.68},{&quot;2026-06-29&quot;:1.67},{&quot;2026-06-30&quot;:1.68},{&quot;2026-07-01&quot;:1.68},{&quot;2026-07-02&quot;:1.73},{&quot;2026-07-03&quot;:1.71},{&quot;2026-07-04&quot;:1.71},{&quot;2026-07-05&quot;:1.7},{&quot;2026-07-06&quot;:1.7},{&quot;2026-07-07&quot;:1.72},{&quot;2026-07-08&quot;:1.72},{&quot;2026-07-09&quot;:1.72},{&quot;2026-07-10&quot;:1.71},{&quot;2026-07-11&quot;:1.75},{&quot;2026-07-12&quot;:1.78},{&quot;2026-07-13&quot;:1.74},{&quot;2026-07-14&quot;:1.74},{&quot;2026-07-15&quot;:1.69},{&quot;2026-07-16&quot;:1.69},{&quot;2026-07-17&quot;:1.69},{&quot;2026-07-18&quot;:1.73},{&quot;2026-07-19&quot;:1.73},{&quot;2026-07-20&quot;:1.73},{&quot;2026-07-21&quot;:1.72},{&quot;2026-07-23&quot;:1.68},{&quot;2026-07-24&quot;:1.68},{&quot;2026-07-25&quot;:1.67},{&quot;2026-07-26&quot;:1.67},{&quot;2026-07-27&quot;:1.66},{&quot;2026-07-28&quot;:1.64},{&quot;2026-07-29&quot;:1.63},{&quot;2026-07-30&quot;:1.61},{&quot;2026-07-31&quot;:1.6},{&quot;2026-08-01&quot;:1.6},{&quot;2026-08-02&quot;:1.6},{&quot;2026-08-03&quot;:1.59},{&quot;2026-08-04&quot;:1.59},{&quot;2026-08-05&quot;:1.59},{&quot;2026-08-07&quot;:1.61},{&quot;2026-08-08&quot;:1.61},{&quot;2026-08-09&quot;:1.64},{&quot;2026-08-10&quot;:1.64},{&quot;2026-08-11&quot;:1.64},{&quot;2026-08-12&quot;:1.64},{&quot;2026-08-13&quot;:1.6},{&quot;2026-08-14&quot;:1.6},{&quot;2026-08-15&quot;:1.6},{&quot;2026-08-16&quot;:1.66},{&quot;2026-08-17&quot;:1.66},{&quot;2026-08-18&quot;:1.7},{&quot;2026-08-19&quot;:1.66},{&quot;2026-08-20&quot;:1.66},{&quot;2026-08-21&quot;:1.64},{&quot;2026-08-22&quot;:1.68},{&quot;2026-08-23&quot;:1.69},{&quot;2026-08-24&quot;:1.73},{&quot;2026-08-25&quot;:1.73},{&quot;2026-08-26&quot;:1.8},{&quot;2026-08-27&quot;:1.86},{&quot;2026-08-28&quot;:1.87},{&quot;2026-08-29&quot;:1.87},{&quot;2026-08-30&quot;:1.87},{&quot;2026-08-31&quot;:1.87},{&quot;2026-09-01&quot;:1.92},{&quot;2026-09-02&quot;:1.92},{&quot;2026-09-03&quot;:1.93},{&quot;2026-09-04&quot;:1.93},{&quot;2026-09-05&quot;:1.9},{&quot;2026-09-06&quot;:1.9},{&quot;2026-09-07&quot;:1.9},{&quot;2026-09-08&quot;:1.9},{&quot;2026-09-09&quot;:1.83},{&quot;2026-09-10&quot;:1.84},{&quot;2026-09-11&quot;:1.84}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="12793"
  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">
            Sol Ring
        </span>


      </div>

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

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Sol Ring" src="https://cards.scryfall.io/large/front/5/8/58b26011-e103-45c4-a253-900f4e6b2eeb.jpg?1783928686" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="21092"
  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">
            Flickerwisp
        </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">
            $1.66
          </span>
        </div>
      </div>
    </div>

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Flickerwisp" src="https://cards.scryfall.io/large/front/a/5/a595d04e-4cdb-49d1-a323-7b6d1e3ccbe9.jpg?1783921777" />
    </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.27
              </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.66
              </span>

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Foil</span>
              <span class="text-lg font-medium text-nine-white">$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-08&quot;:1.49},{&quot;2026-06-10&quot;:1.47},{&quot;2026-06-11&quot;:1.47},{&quot;2026-06-12&quot;:1.46},{&quot;2026-06-13&quot;:1.46},{&quot;2026-06-14&quot;:1.46},{&quot;2026-06-15&quot;:1.46},{&quot;2026-06-16&quot;:1.46},{&quot;2026-06-17&quot;:1.46},{&quot;2026-06-18&quot;:1.46},{&quot;2026-06-19&quot;:1.46},{&quot;2026-06-20&quot;:1.46},{&quot;2026-06-21&quot;:1.45},{&quot;2026-06-22&quot;:1.42},{&quot;2026-06-24&quot;:1.44},{&quot;2026-06-25&quot;:1.44},{&quot;2026-06-26&quot;:1.44},{&quot;2026-06-27&quot;:1.44},{&quot;2026-06-28&quot;:1.44},{&quot;2026-06-29&quot;:1.42},{&quot;2026-06-30&quot;:1.42},{&quot;2026-07-01&quot;:1.48},{&quot;2026-07-02&quot;:1.47},{&quot;2026-07-03&quot;:1.48},{&quot;2026-07-04&quot;:1.48},{&quot;2026-07-05&quot;:1.48},{&quot;2026-07-06&quot;:1.48},{&quot;2026-07-07&quot;:1.43},{&quot;2026-07-08&quot;:1.48},{&quot;2026-07-09&quot;:1.48},{&quot;2026-07-10&quot;:1.48},{&quot;2026-07-11&quot;:1.48},{&quot;2026-07-12&quot;:1.48},{&quot;2026-07-13&quot;:1.48},{&quot;2026-07-14&quot;:1.46},{&quot;2026-07-15&quot;:1.46},{&quot;2026-07-16&quot;:1.48},{&quot;2026-07-17&quot;:1.48},{&quot;2026-07-18&quot;:1.48},{&quot;2026-07-19&quot;:1.48},{&quot;2026-07-20&quot;:1.47},{&quot;2026-07-21&quot;:1.52},{&quot;2026-07-23&quot;:1.52},{&quot;2026-07-25&quot;:1.55},{&quot;2026-07-26&quot;:1.55},{&quot;2026-07-27&quot;:1.56},{&quot;2026-07-29&quot;:1.58},{&quot;2026-07-30&quot;:1.58},{&quot;2026-07-31&quot;:1.6},{&quot;2026-08-01&quot;:1.65},{&quot;2026-08-02&quot;:1.65},{&quot;2026-08-03&quot;:1.65},{&quot;2026-08-04&quot;:1.65},{&quot;2026-08-05&quot;:1.65},{&quot;2026-08-07&quot;:1.65},{&quot;2026-08-08&quot;:1.65},{&quot;2026-08-09&quot;:1.65},{&quot;2026-08-10&quot;:1.65},{&quot;2026-08-11&quot;:1.67},{&quot;2026-08-12&quot;:1.71},{&quot;2026-08-13&quot;:1.71},{&quot;2026-08-14&quot;:1.71},{&quot;2026-08-15&quot;:1.71},{&quot;2026-08-16&quot;:1.71},{&quot;2026-08-17&quot;:1.68},{&quot;2026-08-18&quot;:1.66},{&quot;2026-08-19&quot;:1.66},{&quot;2026-08-20&quot;:1.66},{&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.69},{&quot;2026-08-25&quot;:1.69},{&quot;2026-08-26&quot;:1.69},{&quot;2026-08-27&quot;:1.68},{&quot;2026-08-28&quot;:1.72},{&quot;2026-08-29&quot;:1.72},{&quot;2026-08-30&quot;:1.73},{&quot;2026-08-31&quot;:1.71},{&quot;2026-09-01&quot;:1.71},{&quot;2026-09-02&quot;:1.67},{&quot;2026-09-03&quot;:1.68},{&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.68},{&quot;2026-09-10&quot;:1.66},{&quot;2026-09-11&quot;:1.66}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:1.0},{&quot;2026-06-10&quot;:1.0},{&quot;2026-06-11&quot;:1.0},{&quot;2026-06-12&quot;:1.02},{&quot;2026-06-13&quot;:1.02},{&quot;2026-06-14&quot;:1.02},{&quot;2026-06-15&quot;:1.04},{&quot;2026-06-16&quot;:1.06},{&quot;2026-06-17&quot;:1.06},{&quot;2026-06-18&quot;:1.06},{&quot;2026-06-19&quot;:1.06},{&quot;2026-06-20&quot;:1.07},{&quot;2026-06-21&quot;:1.05},{&quot;2026-06-22&quot;:1.08},{&quot;2026-06-24&quot;:1.05},{&quot;2026-06-25&quot;:1.06},{&quot;2026-06-26&quot;:1.06},{&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.06},{&quot;2026-07-02&quot;:1.06},{&quot;2026-07-03&quot;:1.04},{&quot;2026-07-04&quot;:1.03},{&quot;2026-07-05&quot;:1.03},{&quot;2026-07-06&quot;:1.09},{&quot;2026-07-07&quot;:1.09},{&quot;2026-07-08&quot;:1.09},{&quot;2026-07-09&quot;:1.09},{&quot;2026-07-10&quot;:1.09},{&quot;2026-07-11&quot;:1.08},{&quot;2026-07-12&quot;:1.08},{&quot;2026-07-13&quot;:1.07},{&quot;2026-07-14&quot;:1.07},{&quot;2026-07-15&quot;:1.07},{&quot;2026-07-16&quot;:1.1},{&quot;2026-07-17&quot;:1.1},{&quot;2026-07-18&quot;:1.1},{&quot;2026-07-19&quot;:1.1},{&quot;2026-07-20&quot;:1.1},{&quot;2026-07-21&quot;:1.1},{&quot;2026-07-23&quot;:1.11},{&quot;2026-07-25&quot;:1.17},{&quot;2026-07-26&quot;:1.17},{&quot;2026-07-27&quot;:1.16},{&quot;2026-07-29&quot;:1.16},{&quot;2026-07-30&quot;:1.18},{&quot;2026-07-31&quot;:1.2},{&quot;2026-08-01&quot;:1.2},{&quot;2026-08-02&quot;:1.23},{&quot;2026-08-03&quot;:1.23},{&quot;2026-08-04&quot;:1.23},{&quot;2026-08-05&quot;:1.24},{&quot;2026-08-07&quot;:1.3},{&quot;2026-08-08&quot;:1.3},{&quot;2026-08-09&quot;:1.3},{&quot;2026-08-10&quot;:1.32},{&quot;2026-08-11&quot;:1.32},{&quot;2026-08-12&quot;:1.27},{&quot;2026-08-13&quot;:1.27},{&quot;2026-08-14&quot;:1.29},{&quot;2026-08-15&quot;:1.3},{&quot;2026-08-16&quot;:1.3},{&quot;2026-08-17&quot;:1.3},{&quot;2026-08-18&quot;:1.3},{&quot;2026-08-19&quot;:1.21},{&quot;2026-08-20&quot;:1.21},{&quot;2026-08-21&quot;:1.21},{&quot;2026-08-22&quot;:1.21},{&quot;2026-08-23&quot;:1.21},{&quot;2026-08-24&quot;:1.21},{&quot;2026-08-25&quot;:1.21},{&quot;2026-08-26&quot;:1.24},{&quot;2026-08-27&quot;:1.25},{&quot;2026-08-28&quot;:1.25},{&quot;2026-08-29&quot;:1.25},{&quot;2026-08-30&quot;:1.28},{&quot;2026-08-31&quot;:1.26},{&quot;2026-09-01&quot;:1.26},{&quot;2026-09-02&quot;:1.25},{&quot;2026-09-03&quot;:1.26},{&quot;2026-09-04&quot;:1.25},{&quot;2026-09-05&quot;:1.27},{&quot;2026-09-06&quot;:1.28},{&quot;2026-09-07&quot;:1.28},{&quot;2026-09-08&quot;:1.28},{&quot;2026-09-09&quot;:1.28},{&quot;2026-09-10&quot;:1.27},{&quot;2026-09-11&quot;:1.27}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="91104"
  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-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">
            Restoration Angel
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $1.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="Restoration Angel" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/6/e/6ebb5601-9ecd-4643-bcc7-e5663a471773.jpg?1783908048" />

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Restoration Angel" src="https://cards.scryfall.io/large/front/6/e/6ebb5601-9ecd-4643-bcc7-e5663a471773.jpg?1783908048" />
    </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.56
              </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">
                $1.75
              </span>

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


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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-08&quot;:1.78},{&quot;2026-06-10&quot;:1.78},{&quot;2026-06-11&quot;:1.78},{&quot;2026-06-12&quot;:1.78},{&quot;2026-06-13&quot;:1.76},{&quot;2026-06-14&quot;:1.74},{&quot;2026-06-15&quot;:1.74},{&quot;2026-06-16&quot;:1.74},{&quot;2026-06-17&quot;:1.78},{&quot;2026-06-18&quot;:1.78},{&quot;2026-06-19&quot;:1.74},{&quot;2026-06-20&quot;:1.72},{&quot;2026-06-21&quot;:1.71},{&quot;2026-06-22&quot;:1.56},{&quot;2026-06-24&quot;:1.58},{&quot;2026-06-25&quot;:1.58},{&quot;2026-06-26&quot;:1.59},{&quot;2026-06-27&quot;:1.59},{&quot;2026-06-28&quot;:1.64},{&quot;2026-06-29&quot;:1.73},{&quot;2026-06-30&quot;:1.71},{&quot;2026-07-01&quot;:1.71},{&quot;2026-07-02&quot;:1.71},{&quot;2026-07-03&quot;:1.71},{&quot;2026-07-04&quot;:1.68},{&quot;2026-07-05&quot;:1.68},{&quot;2026-07-06&quot;:1.68},{&quot;2026-07-07&quot;:1.68},{&quot;2026-07-08&quot;:1.65},{&quot;2026-07-09&quot;:1.68},{&quot;2026-07-10&quot;:1.68},{&quot;2026-07-11&quot;:1.76},{&quot;2026-07-12&quot;:1.75},{&quot;2026-07-13&quot;:1.72},{&quot;2026-07-14&quot;:1.73},{&quot;2026-07-15&quot;:1.69},{&quot;2026-07-16&quot;:1.69},{&quot;2026-07-17&quot;:1.69},{&quot;2026-07-18&quot;:1.71},{&quot;2026-07-19&quot;:1.71},{&quot;2026-07-20&quot;:1.71},{&quot;2026-07-21&quot;:1.71},{&quot;2026-07-23&quot;:1.77},{&quot;2026-07-25&quot;:1.77},{&quot;2026-07-26&quot;:1.77},{&quot;2026-07-27&quot;:1.77},{&quot;2026-07-29&quot;:1.77},{&quot;2026-07-30&quot;:1.77},{&quot;2026-07-31&quot;:1.73},{&quot;2026-08-01&quot;:1.73},{&quot;2026-08-02&quot;:1.73},{&quot;2026-08-03&quot;:1.77},{&quot;2026-08-04&quot;:1.79},{&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.77},{&quot;2026-08-13&quot;:1.71},{&quot;2026-08-14&quot;:1.71},{&quot;2026-08-15&quot;:1.71},{&quot;2026-08-16&quot;:1.71},{&quot;2026-08-17&quot;:1.71},{&quot;2026-08-18&quot;:1.71},{&quot;2026-08-19&quot;:1.71},{&quot;2026-08-20&quot;:1.71},{&quot;2026-08-21&quot;:1.71},{&quot;2026-08-22&quot;:1.85},{&quot;2026-08-23&quot;:1.85},{&quot;2026-08-24&quot;:1.85},{&quot;2026-08-25&quot;:1.85},{&quot;2026-08-26&quot;:1.83},{&quot;2026-08-27&quot;:1.83},{&quot;2026-08-28&quot;:1.83},{&quot;2026-08-29&quot;:1.83},{&quot;2026-08-30&quot;:1.83},{&quot;2026-08-31&quot;:1.83},{&quot;2026-09-01&quot;:1.83},{&quot;2026-09-02&quot;:1.83},{&quot;2026-09-03&quot;:1.83},{&quot;2026-09-04&quot;:1.7},{&quot;2026-09-05&quot;:1.7},{&quot;2026-09-06&quot;:1.7},{&quot;2026-09-07&quot;:1.74},{&quot;2026-09-08&quot;:1.75},{&quot;2026-09-09&quot;:1.75},{&quot;2026-09-10&quot;:1.75},{&quot;2026-09-11&quot;:1.75}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:1.27},{&quot;2026-06-10&quot;:1.24},{&quot;2026-06-11&quot;:1.23},{&quot;2026-06-12&quot;:1.21},{&quot;2026-06-13&quot;:1.23},{&quot;2026-06-14&quot;:1.23},{&quot;2026-06-15&quot;:1.21},{&quot;2026-06-16&quot;:1.21},{&quot;2026-06-17&quot;:1.23},{&quot;2026-06-18&quot;:1.22},{&quot;2026-06-19&quot;:1.23},{&quot;2026-06-20&quot;:1.23},{&quot;2026-06-21&quot;:1.24},{&quot;2026-06-22&quot;:1.29},{&quot;2026-06-24&quot;:1.29},{&quot;2026-06-25&quot;:1.28},{&quot;2026-06-26&quot;:1.27},{&quot;2026-06-27&quot;:1.26},{&quot;2026-06-28&quot;:1.25},{&quot;2026-06-29&quot;:1.25},{&quot;2026-06-30&quot;:1.24},{&quot;2026-07-01&quot;:1.24},{&quot;2026-07-02&quot;:1.28},{&quot;2026-07-03&quot;:1.31},{&quot;2026-07-04&quot;:1.34},{&quot;2026-07-05&quot;:1.36},{&quot;2026-07-06&quot;:1.37},{&quot;2026-07-07&quot;:1.38},{&quot;2026-07-08&quot;:1.38},{&quot;2026-07-09&quot;:1.4},{&quot;2026-07-10&quot;:1.4},{&quot;2026-07-11&quot;:1.34},{&quot;2026-07-12&quot;:1.34},{&quot;2026-07-13&quot;:1.35},{&quot;2026-07-14&quot;:1.39},{&quot;2026-07-15&quot;:1.39},{&quot;2026-07-16&quot;:1.39},{&quot;2026-07-17&quot;:1.39},{&quot;2026-07-18&quot;:1.39},{&quot;2026-07-19&quot;:1.39},{&quot;2026-07-20&quot;:1.41},{&quot;2026-07-21&quot;:1.42},{&quot;2026-07-23&quot;:1.4},{&quot;2026-07-25&quot;:1.4},{&quot;2026-07-26&quot;:1.4},{&quot;2026-07-27&quot;:1.39},{&quot;2026-07-29&quot;:1.39},{&quot;2026-07-30&quot;:1.39},{&quot;2026-07-31&quot;:1.39},{&quot;2026-08-01&quot;:1.38},{&quot;2026-08-02&quot;:1.38},{&quot;2026-08-03&quot;:1.38},{&quot;2026-08-04&quot;:1.38},{&quot;2026-08-05&quot;:1.37},{&quot;2026-08-07&quot;:1.38},{&quot;2026-08-08&quot;:1.38},{&quot;2026-08-09&quot;:1.39},{&quot;2026-08-10&quot;:1.39},{&quot;2026-08-11&quot;:1.39},{&quot;2026-08-12&quot;:1.38},{&quot;2026-08-13&quot;:1.38},{&quot;2026-08-14&quot;:1.39},{&quot;2026-08-15&quot;:1.38},{&quot;2026-08-16&quot;:1.36},{&quot;2026-08-17&quot;:1.33},{&quot;2026-08-18&quot;:1.33},{&quot;2026-08-19&quot;:1.29},{&quot;2026-08-20&quot;:1.29},{&quot;2026-08-21&quot;:1.3},{&quot;2026-08-22&quot;:1.3},{&quot;2026-08-23&quot;:1.29},{&quot;2026-08-24&quot;:1.31},{&quot;2026-08-25&quot;:1.31},{&quot;2026-08-26&quot;:1.48},{&quot;2026-08-27&quot;:1.48},{&quot;2026-08-28&quot;:1.5},{&quot;2026-08-29&quot;:1.5},{&quot;2026-08-30&quot;:1.52},{&quot;2026-08-31&quot;:1.52},{&quot;2026-09-01&quot;:1.52},{&quot;2026-09-02&quot;:1.51},{&quot;2026-09-03&quot;:1.51},{&quot;2026-09-04&quot;:1.47},{&quot;2026-09-05&quot;:1.48},{&quot;2026-09-06&quot;:1.49},{&quot;2026-09-07&quot;:1.49},{&quot;2026-09-08&quot;:1.5},{&quot;2026-09-09&quot;:1.54},{&quot;2026-09-10&quot;:1.54},{&quot;2026-09-11&quot;:1.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="96156"
  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-eoc ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Fabled Passage" src="https://cards.scryfall.io/large/front/6/a/6a21ecc8-f6fd-4670-91d8-94b9ce94c2fe.jpg?1782685675" />
    </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.41
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-08&quot;:2.51},{&quot;2026-06-10&quot;:2.34},{&quot;2026-06-11&quot;:2.27},{&quot;2026-06-12&quot;:2.27},{&quot;2026-06-13&quot;:2.21},{&quot;2026-06-14&quot;:2.17},{&quot;2026-06-15&quot;:2.13},{&quot;2026-06-16&quot;:2.17},{&quot;2026-06-17&quot;:2.15},{&quot;2026-06-18&quot;:2.04},{&quot;2026-06-19&quot;:2.07},{&quot;2026-06-20&quot;:2.05},{&quot;2026-06-21&quot;:1.92},{&quot;2026-06-22&quot;:1.96},{&quot;2026-06-24&quot;:1.83},{&quot;2026-06-25&quot;:1.71},{&quot;2026-06-26&quot;:1.74},{&quot;2026-06-27&quot;:1.68},{&quot;2026-06-28&quot;:1.66},{&quot;2026-06-29&quot;:1.64},{&quot;2026-06-30&quot;:1.61},{&quot;2026-07-01&quot;:1.6},{&quot;2026-07-02&quot;:1.57},{&quot;2026-07-03&quot;:1.59},{&quot;2026-07-04&quot;:1.69},{&quot;2026-07-05&quot;:1.76},{&quot;2026-07-06&quot;:1.66},{&quot;2026-07-07&quot;:1.64},{&quot;2026-07-08&quot;:1.6},{&quot;2026-07-09&quot;:1.56},{&quot;2026-07-10&quot;:1.58},{&quot;2026-07-11&quot;:1.6},{&quot;2026-07-12&quot;:1.6},{&quot;2026-07-13&quot;:1.58},{&quot;2026-07-14&quot;:1.55},{&quot;2026-07-15&quot;:1.6},{&quot;2026-07-16&quot;:1.63},{&quot;2026-07-17&quot;:1.6},{&quot;2026-07-18&quot;:1.58},{&quot;2026-07-19&quot;:1.57},{&quot;2026-07-20&quot;:1.62},{&quot;2026-07-21&quot;:1.7},{&quot;2026-07-23&quot;:1.62},{&quot;2026-07-25&quot;:1.4},{&quot;2026-07-26&quot;:1.4},{&quot;2026-07-27&quot;:1.4},{&quot;2026-07-29&quot;:1.49},{&quot;2026-07-30&quot;:1.49},{&quot;2026-07-31&quot;:1.55},{&quot;2026-08-01&quot;:1.56},{&quot;2026-08-02&quot;:1.54},{&quot;2026-08-03&quot;:1.48},{&quot;2026-08-04&quot;:1.49},{&quot;2026-08-05&quot;:1.5},{&quot;2026-08-07&quot;:1.47},{&quot;2026-08-08&quot;:1.44},{&quot;2026-08-09&quot;:1.45},{&quot;2026-08-10&quot;:1.46},{&quot;2026-08-11&quot;:1.46},{&quot;2026-08-12&quot;:1.61},{&quot;2026-08-13&quot;:1.66},{&quot;2026-08-14&quot;:1.59},{&quot;2026-08-15&quot;:1.56},{&quot;2026-08-16&quot;:1.44},{&quot;2026-08-17&quot;:1.55},{&quot;2026-08-18&quot;:1.49},{&quot;2026-08-19&quot;:1.48},{&quot;2026-08-20&quot;:1.48},{&quot;2026-08-21&quot;:1.62},{&quot;2026-08-22&quot;:1.5},{&quot;2026-08-23&quot;:1.51},{&quot;2026-08-24&quot;:1.44},{&quot;2026-08-25&quot;:1.44},{&quot;2026-08-26&quot;:1.42},{&quot;2026-08-27&quot;:1.22},{&quot;2026-08-28&quot;:1.23},{&quot;2026-08-29&quot;:1.23},{&quot;2026-08-30&quot;:1.39},{&quot;2026-08-31&quot;:1.35},{&quot;2026-09-01&quot;:1.35},{&quot;2026-09-02&quot;:1.39},{&quot;2026-09-03&quot;:1.34},{&quot;2026-09-04&quot;:1.35},{&quot;2026-09-05&quot;:1.32},{&quot;2026-09-06&quot;:1.33},{&quot;2026-09-07&quot;:1.36},{&quot;2026-09-08&quot;:1.36},{&quot;2026-09-09&quot;:1.36},{&quot;2026-09-10&quot;:1.39},{&quot;2026-09-11&quot;:1.41}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="19038"
  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">
            Elas il-Kor, Sadistic Pilgrim
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $1.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="Elas il-Kor, Sadistic Pilgrim" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/5/5/552fbde6-515d-457e-81c9-d67157eaaf37.jpg?1783921236" />

        <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">
            Elas il-Kor, Sadistic Pilgrim
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Elas il-Kor, Sadistic Pilgrim" src="https://cards.scryfall.io/large/front/5/5/552fbde6-515d-457e-81c9-d67157eaaf37.jpg?1783921236" />
    </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.03
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:1.47},{&quot;2026-06-14&quot;:1.47},{&quot;2026-06-15&quot;:1.47},{&quot;2026-06-16&quot;:1.47},{&quot;2026-06-17&quot;:1.46},{&quot;2026-06-18&quot;:1.48},{&quot;2026-06-19&quot;:1.48},{&quot;2026-06-20&quot;:1.47},{&quot;2026-06-21&quot;:1.47},{&quot;2026-06-22&quot;:1.47},{&quot;2026-06-23&quot;:1.47},{&quot;2026-06-24&quot;:1.46},{&quot;2026-06-25&quot;:1.46},{&quot;2026-06-26&quot;:1.46},{&quot;2026-06-27&quot;:1.46},{&quot;2026-06-28&quot;:1.47},{&quot;2026-06-29&quot;:1.48},{&quot;2026-06-30&quot;:1.42},{&quot;2026-07-01&quot;:1.42},{&quot;2026-07-02&quot;:1.45},{&quot;2026-07-03&quot;:1.49},{&quot;2026-07-04&quot;:1.54},{&quot;2026-07-05&quot;:1.55},{&quot;2026-07-06&quot;:1.55},{&quot;2026-07-07&quot;:1.55},{&quot;2026-07-08&quot;:1.55},{&quot;2026-07-09&quot;:1.48},{&quot;2026-07-10&quot;:1.48},{&quot;2026-07-11&quot;:1.49},{&quot;2026-07-12&quot;:1.53},{&quot;2026-07-13&quot;:1.4},{&quot;2026-07-14&quot;:1.48},{&quot;2026-07-15&quot;:1.48},{&quot;2026-07-16&quot;:1.48},{&quot;2026-07-17&quot;:1.49},{&quot;2026-07-18&quot;:1.49},{&quot;2026-07-19&quot;:1.51},{&quot;2026-07-20&quot;:1.53},{&quot;2026-07-21&quot;:1.53},{&quot;2026-07-22&quot;:1.53},{&quot;2026-07-23&quot;:1.53},{&quot;2026-07-24&quot;:1.53},{&quot;2026-07-25&quot;:1.53},{&quot;2026-07-26&quot;:1.53},{&quot;2026-07-27&quot;:1.53},{&quot;2026-07-28&quot;:1.54},{&quot;2026-07-29&quot;:1.54},{&quot;2026-07-30&quot;:1.52},{&quot;2026-07-31&quot;:1.49},{&quot;2026-08-01&quot;:1.49},{&quot;2026-08-02&quot;:1.49},{&quot;2026-08-03&quot;:1.49},{&quot;2026-08-04&quot;:1.49},{&quot;2026-08-05&quot;:1.49},{&quot;2026-08-07&quot;:1.52},{&quot;2026-08-08&quot;:1.52},{&quot;2026-08-09&quot;:1.52},{&quot;2026-08-10&quot;:1.58},{&quot;2026-08-11&quot;:1.53},{&quot;2026-08-12&quot;:1.52},{&quot;2026-08-13&quot;:1.52},{&quot;2026-08-14&quot;:1.51},{&quot;2026-08-15&quot;:1.48},{&quot;2026-08-16&quot;:1.54},{&quot;2026-08-17&quot;:1.6},{&quot;2026-08-18&quot;:1.58},{&quot;2026-08-19&quot;:1.59},{&quot;2026-08-20&quot;:1.59},{&quot;2026-08-21&quot;:1.59},{&quot;2026-08-22&quot;:1.58},{&quot;2026-08-23&quot;:1.58},{&quot;2026-08-24&quot;:1.59},{&quot;2026-08-25&quot;:1.56},{&quot;2026-08-26&quot;:1.53},{&quot;2026-08-27&quot;:1.53},{&quot;2026-08-28&quot;:1.45},{&quot;2026-08-29&quot;:1.45},{&quot;2026-08-30&quot;:1.49},{&quot;2026-08-31&quot;:1.5},{&quot;2026-09-01&quot;:1.48},{&quot;2026-09-02&quot;:1.35},{&quot;2026-09-03&quot;:1.33},{&quot;2026-09-04&quot;:1.33},{&quot;2026-09-05&quot;:1.29},{&quot;2026-09-06&quot;:1.17},{&quot;2026-09-07&quot;:1.13},{&quot;2026-09-08&quot;:1.13},{&quot;2026-09-09&quot;:1.12},{&quot;2026-09-10&quot;:1.12},{&quot;2026-09-11&quot;:1.12}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.37},{&quot;2026-06-14&quot;:1.31},{&quot;2026-06-15&quot;:1.26},{&quot;2026-06-16&quot;:1.24},{&quot;2026-06-17&quot;:1.2},{&quot;2026-06-18&quot;:1.27},{&quot;2026-06-19&quot;:1.29},{&quot;2026-06-20&quot;:1.26},{&quot;2026-06-21&quot;:1.2},{&quot;2026-06-22&quot;:1.2},{&quot;2026-06-23&quot;:1.15},{&quot;2026-06-24&quot;:1.12},{&quot;2026-06-25&quot;:1.13},{&quot;2026-06-26&quot;:1.08},{&quot;2026-06-27&quot;:1.06},{&quot;2026-06-28&quot;:1.12},{&quot;2026-06-29&quot;:1.09},{&quot;2026-06-30&quot;:1.14},{&quot;2026-07-01&quot;:1.08},{&quot;2026-07-02&quot;:1.08},{&quot;2026-07-03&quot;:1.08},{&quot;2026-07-04&quot;:1.05},{&quot;2026-07-05&quot;:1.1},{&quot;2026-07-06&quot;:1.1},{&quot;2026-07-07&quot;:1.18},{&quot;2026-07-08&quot;:1.12},{&quot;2026-07-09&quot;:1.11},{&quot;2026-07-10&quot;:1.18},{&quot;2026-07-11&quot;:1.19},{&quot;2026-07-12&quot;:1.13},{&quot;2026-07-13&quot;:1.05},{&quot;2026-07-14&quot;:1.0},{&quot;2026-07-15&quot;:0.98},{&quot;2026-07-16&quot;:0.94},{&quot;2026-07-17&quot;:1.01},{&quot;2026-07-18&quot;:1.03},{&quot;2026-07-19&quot;:0.98},{&quot;2026-07-20&quot;:1.03},{&quot;2026-07-21&quot;:1.04},{&quot;2026-07-22&quot;:0.98},{&quot;2026-07-23&quot;:1.01},{&quot;2026-07-24&quot;:0.99},{&quot;2026-07-25&quot;:1.02},{&quot;2026-07-26&quot;:1.02},{&quot;2026-07-27&quot;:0.96},{&quot;2026-07-28&quot;:0.85},{&quot;2026-07-29&quot;:0.87},{&quot;2026-07-30&quot;:0.87},{&quot;2026-07-31&quot;:0.83},{&quot;2026-08-01&quot;:0.81},{&quot;2026-08-02&quot;:0.81},{&quot;2026-08-03&quot;:0.86},{&quot;2026-08-04&quot;:0.86},{&quot;2026-08-05&quot;:0.86},{&quot;2026-08-07&quot;:0.93},{&quot;2026-08-08&quot;:0.93},{&quot;2026-08-09&quot;:0.9},{&quot;2026-08-10&quot;:0.93},{&quot;2026-08-11&quot;:1.06},{&quot;2026-08-12&quot;:1.11},{&quot;2026-08-13&quot;:1.18},{&quot;2026-08-14&quot;:1.28},{&quot;2026-08-15&quot;:1.29},{&quot;2026-08-16&quot;:1.29},{&quot;2026-08-17&quot;:1.22},{&quot;2026-08-18&quot;:1.13},{&quot;2026-08-19&quot;:1.2},{&quot;2026-08-20&quot;:1.15},{&quot;2026-08-21&quot;:1.13},{&quot;2026-08-22&quot;:1.19},{&quot;2026-08-23&quot;:1.23},{&quot;2026-08-24&quot;:1.13},{&quot;2026-08-25&quot;:1.11},{&quot;2026-08-26&quot;:1.09},{&quot;2026-08-27&quot;:1.01},{&quot;2026-08-28&quot;:1.06},{&quot;2026-08-29&quot;:1.06},{&quot;2026-08-30&quot;:1.08},{&quot;2026-08-31&quot;:1.12},{&quot;2026-09-01&quot;:1.14},{&quot;2026-09-02&quot;:1.2},{&quot;2026-09-03&quot;:1.19},{&quot;2026-09-04&quot;:1.22},{&quot;2026-09-05&quot;:1.08},{&quot;2026-09-06&quot;:1.03},{&quot;2026-09-07&quot;:0.97},{&quot;2026-09-08&quot;:1.01},{&quot;2026-09-09&quot;:0.99},{&quot;2026-09-10&quot;:0.99},{&quot;2026-09-11&quot;:1.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="95835"
  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-eoe ss-common ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            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-100 text-badge-text">
              ↓
              15%
            </span>

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

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

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

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Plains" src="https://cards.scryfall.io/large/front/0/8/089ae01b-e042-4255-b0ee-17d8f416a8d9.jpg?1752947623" />
    </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">
                $1.01
              </span>

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

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

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

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.80</span>
              <span class="text-xs text-grey-text">Credit: $1.04</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.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;:1.11},{&quot;2026-06-14&quot;:1.0},{&quot;2026-06-15&quot;:1.1},{&quot;2026-06-16&quot;:1.13},{&quot;2026-06-17&quot;:1.2},{&quot;2026-06-18&quot;:1.23},{&quot;2026-06-19&quot;:1.13},{&quot;2026-06-20&quot;:1.08},{&quot;2026-06-21&quot;:1.06},{&quot;2026-06-22&quot;:1.07},{&quot;2026-06-23&quot;:1.02},{&quot;2026-06-24&quot;:1.11},{&quot;2026-06-25&quot;:1.09},{&quot;2026-06-26&quot;:1.07},{&quot;2026-06-27&quot;:1.06},{&quot;2026-06-28&quot;:1.0},{&quot;2026-06-29&quot;:0.9},{&quot;2026-06-30&quot;:0.91},{&quot;2026-07-01&quot;:0.9},{&quot;2026-07-02&quot;:0.86},{&quot;2026-07-03&quot;:0.81},{&quot;2026-07-04&quot;:0.77},{&quot;2026-07-05&quot;:0.75},{&quot;2026-07-06&quot;:0.8},{&quot;2026-07-07&quot;:0.85},{&quot;2026-07-08&quot;:0.85},{&quot;2026-07-09&quot;:0.87},{&quot;2026-07-10&quot;:0.9},{&quot;2026-07-11&quot;:1.07},{&quot;2026-07-12&quot;:1.04},{&quot;2026-07-13&quot;:1.07},{&quot;2026-07-14&quot;:1.1},{&quot;2026-07-15&quot;:1.11},{&quot;2026-07-16&quot;:1.11},{&quot;2026-07-17&quot;:1.07},{&quot;2026-07-18&quot;:1.15},{&quot;2026-07-19&quot;:1.17},{&quot;2026-07-20&quot;:1.18},{&quot;2026-07-21&quot;:1.22},{&quot;2026-07-22&quot;:1.35},{&quot;2026-07-23&quot;:1.32},{&quot;2026-07-24&quot;:1.24},{&quot;2026-07-25&quot;:1.28},{&quot;2026-07-26&quot;:1.14},{&quot;2026-07-27&quot;:1.11},{&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.19},{&quot;2026-08-01&quot;:1.19},{&quot;2026-08-02&quot;:1.14},{&quot;2026-08-03&quot;:1.16},{&quot;2026-08-04&quot;:1.18},{&quot;2026-08-05&quot;:1.2},{&quot;2026-08-07&quot;:1.05},{&quot;2026-08-08&quot;:1.09},{&quot;2026-08-09&quot;:1.02},{&quot;2026-08-10&quot;:1.04},{&quot;2026-08-11&quot;:1.05},{&quot;2026-08-12&quot;:1.11},{&quot;2026-08-13&quot;:1.09},{&quot;2026-08-14&quot;:1.09},{&quot;2026-08-15&quot;:1.05},{&quot;2026-08-16&quot;:1.04},{&quot;2026-08-17&quot;:1.04},{&quot;2026-08-18&quot;:1.21},{&quot;2026-08-19&quot;:1.21},{&quot;2026-08-20&quot;:1.21},{&quot;2026-08-21&quot;:1.16},{&quot;2026-08-22&quot;:1.19},{&quot;2026-08-23&quot;:1.33},{&quot;2026-08-24&quot;:1.38},{&quot;2026-08-25&quot;:1.28},{&quot;2026-08-26&quot;:1.29},{&quot;2026-08-27&quot;:1.29},{&quot;2026-08-28&quot;:1.29},{&quot;2026-08-29&quot;:1.29},{&quot;2026-08-30&quot;:1.19},{&quot;2026-08-31&quot;:1.17},{&quot;2026-09-01&quot;:1.16},{&quot;2026-09-02&quot;:1.22},{&quot;2026-09-03&quot;:1.16},{&quot;2026-09-04&quot;:1.15},{&quot;2026-09-05&quot;:1.16},{&quot;2026-09-06&quot;:1.11},{&quot;2026-09-07&quot;:1.12},{&quot;2026-09-08&quot;:1.15},{&quot;2026-09-09&quot;:1.1},{&quot;2026-09-10&quot;:1.1},{&quot;2026-09-11&quot;:1.07}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.84},{&quot;2026-06-14&quot;:0.84},{&quot;2026-06-15&quot;:0.82},{&quot;2026-06-16&quot;:0.82},{&quot;2026-06-17&quot;:0.82},{&quot;2026-06-18&quot;:0.78},{&quot;2026-06-19&quot;:0.81},{&quot;2026-06-20&quot;:0.85},{&quot;2026-06-21&quot;:0.84},{&quot;2026-06-22&quot;:0.78},{&quot;2026-06-23&quot;:0.75},{&quot;2026-06-24&quot;:0.65},{&quot;2026-06-25&quot;:0.65},{&quot;2026-06-26&quot;:0.6},{&quot;2026-06-27&quot;:0.6},{&quot;2026-06-28&quot;:0.73},{&quot;2026-06-29&quot;:0.71},{&quot;2026-06-30&quot;:0.75},{&quot;2026-07-01&quot;:0.68},{&quot;2026-07-02&quot;:0.62},{&quot;2026-07-03&quot;:0.63},{&quot;2026-07-04&quot;:0.67},{&quot;2026-07-05&quot;:0.69},{&quot;2026-07-06&quot;:0.68},{&quot;2026-07-07&quot;:0.8},{&quot;2026-07-08&quot;:0.87},{&quot;2026-07-09&quot;:0.92},{&quot;2026-07-10&quot;:0.94},{&quot;2026-07-11&quot;:0.92},{&quot;2026-07-12&quot;:0.91},{&quot;2026-07-13&quot;:0.99},{&quot;2026-07-14&quot;:0.93},{&quot;2026-07-15&quot;:0.91},{&quot;2026-07-16&quot;:0.95},{&quot;2026-07-17&quot;:1.0},{&quot;2026-07-18&quot;:0.85},{&quot;2026-07-19&quot;:0.92},{&quot;2026-07-20&quot;:0.87},{&quot;2026-07-21&quot;:0.85},{&quot;2026-07-22&quot;:0.83},{&quot;2026-07-23&quot;:0.8},{&quot;2026-07-24&quot;:0.82},{&quot;2026-07-25&quot;:0.75},{&quot;2026-07-26&quot;:0.73},{&quot;2026-07-27&quot;:0.86},{&quot;2026-07-28&quot;:0.92},{&quot;2026-07-29&quot;:0.92},{&quot;2026-07-30&quot;:0.97},{&quot;2026-07-31&quot;:0.9},{&quot;2026-08-01&quot;:0.91},{&quot;2026-08-02&quot;:0.86},{&quot;2026-08-03&quot;:0.85},{&quot;2026-08-04&quot;:0.79},{&quot;2026-08-05&quot;:0.77},{&quot;2026-08-07&quot;:0.79},{&quot;2026-08-08&quot;:0.75},{&quot;2026-08-09&quot;:0.75},{&quot;2026-08-10&quot;:0.74},{&quot;2026-08-11&quot;:0.75},{&quot;2026-08-12&quot;:0.87},{&quot;2026-08-13&quot;:0.9},{&quot;2026-08-14&quot;:0.83},{&quot;2026-08-15&quot;:0.82},{&quot;2026-08-16&quot;:0.8},{&quot;2026-08-17&quot;:0.87},{&quot;2026-08-18&quot;:0.9},{&quot;2026-08-19&quot;:0.95},{&quot;2026-08-20&quot;:0.9},{&quot;2026-08-21&quot;:0.89},{&quot;2026-08-22&quot;:1.02},{&quot;2026-08-23&quot;:0.91},{&quot;2026-08-24&quot;:0.91},{&quot;2026-08-25&quot;:0.92},{&quot;2026-08-26&quot;:0.93},{&quot;2026-08-27&quot;:0.88},{&quot;2026-08-28&quot;:0.89},{&quot;2026-08-29&quot;:0.89},{&quot;2026-08-30&quot;:0.82},{&quot;2026-08-31&quot;:0.81},{&quot;2026-09-01&quot;:0.9},{&quot;2026-09-02&quot;:0.9},{&quot;2026-09-03&quot;:0.98},{&quot;2026-09-04&quot;:1.17},{&quot;2026-09-05&quot;:1.19},{&quot;2026-09-06&quot;:1.19},{&quot;2026-09-07&quot;:1.27},{&quot;2026-09-08&quot;:1.23},{&quot;2026-09-09&quot;:1.14},{&quot;2026-09-10&quot;:1.13},{&quot;2026-09-11&quot;:1.01}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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

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

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

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

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

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

        <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">
            Karmic Guide
        </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 — Angel Spirit</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Karmic Guide" src="https://cards.scryfall.io/large/front/9/1/915b4638-b1ec-4045-80e6-f05fb1e2a87c.jpg?1783926791" />
    </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.89
              </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">
                $4.29
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:5.65},{&quot;2026-06-14&quot;:5.65},{&quot;2026-06-15&quot;:5.65},{&quot;2026-06-16&quot;:5.65},{&quot;2026-06-17&quot;:5.65},{&quot;2026-06-18&quot;:5.65},{&quot;2026-06-19&quot;:5.65},{&quot;2026-06-20&quot;:5.65},{&quot;2026-06-21&quot;:5.65},{&quot;2026-06-22&quot;:5.65},{&quot;2026-06-23&quot;:5.65},{&quot;2026-06-24&quot;:5.65},{&quot;2026-06-25&quot;:5.65},{&quot;2026-06-26&quot;:5.65},{&quot;2026-06-27&quot;:5.65},{&quot;2026-06-28&quot;:5.65},{&quot;2026-06-29&quot;:4.42},{&quot;2026-06-30&quot;:4.42},{&quot;2026-07-01&quot;:4.5},{&quot;2026-07-02&quot;:4.5},{&quot;2026-07-03&quot;:4.5},{&quot;2026-07-04&quot;:4.5},{&quot;2026-07-05&quot;:4.5},{&quot;2026-07-06&quot;:4.44},{&quot;2026-07-07&quot;:4.44},{&quot;2026-07-08&quot;:4.44},{&quot;2026-07-09&quot;:4.44},{&quot;2026-07-10&quot;:4.44},{&quot;2026-07-11&quot;:4.44},{&quot;2026-07-12&quot;:4.44},{&quot;2026-07-13&quot;:4.44},{&quot;2026-07-14&quot;:4.44},{&quot;2026-07-15&quot;:4.44},{&quot;2026-07-16&quot;:4.44},{&quot;2026-07-17&quot;:4.44},{&quot;2026-07-18&quot;:4.44},{&quot;2026-07-19&quot;:4.5},{&quot;2026-07-20&quot;:4.5},{&quot;2026-07-21&quot;:4.5},{&quot;2026-07-22&quot;:4.5},{&quot;2026-07-23&quot;:4.5},{&quot;2026-07-24&quot;:4.5},{&quot;2026-07-25&quot;:4.5},{&quot;2026-07-26&quot;:4.5},{&quot;2026-07-27&quot;:4.5},{&quot;2026-07-28&quot;:4.5},{&quot;2026-07-29&quot;:4.5},{&quot;2026-07-30&quot;:4.5},{&quot;2026-07-31&quot;:4.5},{&quot;2026-08-01&quot;:4.5},{&quot;2026-08-02&quot;:4.5},{&quot;2026-08-03&quot;:4.5},{&quot;2026-08-04&quot;:4.5},{&quot;2026-08-05&quot;:4.53},{&quot;2026-08-07&quot;:4.48},{&quot;2026-08-08&quot;:4.43},{&quot;2026-08-09&quot;:4.46},{&quot;2026-08-10&quot;:4.46},{&quot;2026-08-11&quot;:4.46},{&quot;2026-08-12&quot;:4.46},{&quot;2026-08-13&quot;:4.46},{&quot;2026-08-14&quot;:4.46},{&quot;2026-08-15&quot;:4.39},{&quot;2026-08-16&quot;:4.39},{&quot;2026-08-17&quot;:4.39},{&quot;2026-08-18&quot;:4.39},{&quot;2026-08-19&quot;:4.39},{&quot;2026-08-20&quot;:4.39},{&quot;2026-08-21&quot;:4.39},{&quot;2026-08-22&quot;:4.39},{&quot;2026-08-23&quot;:4.39},{&quot;2026-08-24&quot;:4.39},{&quot;2026-08-25&quot;:4.39},{&quot;2026-08-26&quot;:4.39},{&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.36},{&quot;2026-08-31&quot;:4.36},{&quot;2026-09-01&quot;:4.36},{&quot;2026-09-02&quot;:4.36},{&quot;2026-09-03&quot;:4.36},{&quot;2026-09-04&quot;:4.36},{&quot;2026-09-05&quot;:4.36},{&quot;2026-09-06&quot;:4.36},{&quot;2026-09-07&quot;:4.36},{&quot;2026-09-08&quot;:4.36},{&quot;2026-09-09&quot;:4.36},{&quot;2026-09-10&quot;:4.36},{&quot;2026-09-11&quot;:4.29}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.9},{&quot;2026-06-14&quot;:0.9},{&quot;2026-06-15&quot;:0.94},{&quot;2026-06-16&quot;:0.98},{&quot;2026-06-17&quot;:0.97},{&quot;2026-06-18&quot;:0.97},{&quot;2026-06-19&quot;:0.96},{&quot;2026-06-20&quot;:0.98},{&quot;2026-06-21&quot;:0.97},{&quot;2026-06-22&quot;:0.99},{&quot;2026-06-23&quot;:1.01},{&quot;2026-06-24&quot;:0.98},{&quot;2026-06-25&quot;:0.91},{&quot;2026-06-26&quot;:0.85},{&quot;2026-06-27&quot;:0.84},{&quot;2026-06-28&quot;:0.82},{&quot;2026-06-29&quot;:0.83},{&quot;2026-06-30&quot;:0.86},{&quot;2026-07-01&quot;:0.85},{&quot;2026-07-02&quot;:0.88},{&quot;2026-07-03&quot;:0.83},{&quot;2026-07-04&quot;:0.83},{&quot;2026-07-05&quot;:0.87},{&quot;2026-07-06&quot;:0.85},{&quot;2026-07-07&quot;:0.85},{&quot;2026-07-08&quot;:0.85},{&quot;2026-07-09&quot;:0.87},{&quot;2026-07-10&quot;:0.87},{&quot;2026-07-11&quot;:0.87},{&quot;2026-07-12&quot;:0.89},{&quot;2026-07-13&quot;:0.89},{&quot;2026-07-14&quot;:0.91},{&quot;2026-07-15&quot;:0.93},{&quot;2026-07-16&quot;:0.94},{&quot;2026-07-17&quot;:0.93},{&quot;2026-07-18&quot;:0.94},{&quot;2026-07-19&quot;:0.94},{&quot;2026-07-20&quot;:0.96},{&quot;2026-07-21&quot;:0.95},{&quot;2026-07-22&quot;:0.95},{&quot;2026-07-23&quot;:0.88},{&quot;2026-07-24&quot;:0.86},{&quot;2026-07-25&quot;:0.83},{&quot;2026-07-26&quot;:0.83},{&quot;2026-07-27&quot;:0.78},{&quot;2026-07-28&quot;:0.76},{&quot;2026-07-29&quot;:0.62},{&quot;2026-07-30&quot;:0.59},{&quot;2026-07-31&quot;:0.57},{&quot;2026-08-01&quot;:0.52},{&quot;2026-08-02&quot;:0.52},{&quot;2026-08-03&quot;:0.57},{&quot;2026-08-04&quot;:0.56},{&quot;2026-08-05&quot;:0.6},{&quot;2026-08-07&quot;:0.61},{&quot;2026-08-08&quot;:0.63},{&quot;2026-08-09&quot;:0.66},{&quot;2026-08-10&quot;:0.74},{&quot;2026-08-11&quot;:0.7},{&quot;2026-08-12&quot;:0.7},{&quot;2026-08-13&quot;:0.83},{&quot;2026-08-14&quot;:0.84},{&quot;2026-08-15&quot;:0.9},{&quot;2026-08-16&quot;:0.99},{&quot;2026-08-17&quot;:1.05},{&quot;2026-08-18&quot;:1.01},{&quot;2026-08-19&quot;:1.09},{&quot;2026-08-20&quot;:1.04},{&quot;2026-08-21&quot;:1.09},{&quot;2026-08-22&quot;:1.14},{&quot;2026-08-23&quot;:1.14},{&quot;2026-08-24&quot;:0.99},{&quot;2026-08-25&quot;:0.99},{&quot;2026-08-26&quot;:0.95},{&quot;2026-08-27&quot;:0.99},{&quot;2026-08-28&quot;:0.96},{&quot;2026-08-29&quot;:0.96},{&quot;2026-08-30&quot;:0.8},{&quot;2026-08-31&quot;:0.83},{&quot;2026-09-01&quot;:0.87},{&quot;2026-09-02&quot;:0.86},{&quot;2026-09-03&quot;:0.85},{&quot;2026-09-04&quot;:0.86},{&quot;2026-09-05&quot;:0.86},{&quot;2026-09-06&quot;:0.86},{&quot;2026-09-07&quot;:0.96},{&quot;2026-09-08&quot;:0.84},{&quot;2026-09-09&quot;:0.84},{&quot;2026-09-10&quot;:0.85},{&quot;2026-09-11&quot;:0.89}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="46516"
  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-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">
            Swamp
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Swamp
        </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 — Swamp</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="Swamp" src="https://cards.scryfall.io/large/front/0/1/013612b4-fed9-4112-8018-9267ae608fd7.jpg?1783916921" />
    </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.86
              </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.86
              </span>

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.38</span>
              <span class="text-xs text-grey-text">Credit: $0.49</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.92},{&quot;2026-06-15&quot;:0.91},{&quot;2026-06-16&quot;:0.93},{&quot;2026-06-17&quot;:0.95},{&quot;2026-06-18&quot;:0.95},{&quot;2026-06-19&quot;:0.96},{&quot;2026-06-20&quot;:0.96},{&quot;2026-06-21&quot;:0.96},{&quot;2026-06-22&quot;:0.95},{&quot;2026-06-23&quot;:0.95},{&quot;2026-06-24&quot;:1.07},{&quot;2026-06-25&quot;:1.07},{&quot;2026-06-26&quot;:1.07},{&quot;2026-06-27&quot;:1.07},{&quot;2026-06-28&quot;:1.07},{&quot;2026-06-29&quot;:1.07},{&quot;2026-06-30&quot;:1.07},{&quot;2026-07-01&quot;:1.07},{&quot;2026-07-02&quot;:1.08},{&quot;2026-07-03&quot;:1.08},{&quot;2026-07-04&quot;:1.19},{&quot;2026-07-05&quot;:1.19},{&quot;2026-07-06&quot;:1.18},{&quot;2026-07-07&quot;:1.19},{&quot;2026-07-08&quot;:1.19},{&quot;2026-07-09&quot;:1.19},{&quot;2026-07-10&quot;:1.19},{&quot;2026-07-11&quot;:1.19},{&quot;2026-07-12&quot;:1.19},{&quot;2026-07-13&quot;:1.19},{&quot;2026-07-14&quot;:1.21},{&quot;2026-07-15&quot;:1.2},{&quot;2026-07-16&quot;:1.26},{&quot;2026-07-17&quot;:1.26},{&quot;2026-07-18&quot;:1.25},{&quot;2026-07-19&quot;:1.23},{&quot;2026-07-20&quot;:1.23},{&quot;2026-07-21&quot;:1.23},{&quot;2026-07-22&quot;:1.23},{&quot;2026-07-23&quot;:1.23},{&quot;2026-07-24&quot;:1.22},{&quot;2026-07-25&quot;:1.3},{&quot;2026-07-26&quot;:1.3},{&quot;2026-07-27&quot;:1.2},{&quot;2026-07-28&quot;:1.2},{&quot;2026-07-29&quot;:1.2},{&quot;2026-07-30&quot;:1.05},{&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.18},{&quot;2026-08-04&quot;:1.16},{&quot;2026-08-05&quot;:1.16},{&quot;2026-08-07&quot;:1.2},{&quot;2026-08-08&quot;:1.2},{&quot;2026-08-09&quot;:1.21},{&quot;2026-08-10&quot;:1.34},{&quot;2026-08-11&quot;:1.22},{&quot;2026-08-12&quot;:1.28},{&quot;2026-08-13&quot;:1.23},{&quot;2026-08-14&quot;:1.28},{&quot;2026-08-15&quot;:1.27},{&quot;2026-08-16&quot;:1.27},{&quot;2026-08-17&quot;:1.26},{&quot;2026-08-18&quot;:1.24},{&quot;2026-08-19&quot;:1.26},{&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.69},{&quot;2026-08-24&quot;:1.79},{&quot;2026-08-25&quot;:1.83},{&quot;2026-08-26&quot;:1.83},{&quot;2026-08-27&quot;:1.86},{&quot;2026-08-28&quot;:1.94},{&quot;2026-08-29&quot;:1.94},{&quot;2026-08-30&quot;:1.94},{&quot;2026-08-31&quot;:1.94},{&quot;2026-09-01&quot;:1.85},{&quot;2026-09-02&quot;:1.85},{&quot;2026-09-03&quot;:1.85},{&quot;2026-09-04&quot;:1.9},{&quot;2026-09-05&quot;:1.9},{&quot;2026-09-06&quot;:1.87},{&quot;2026-09-07&quot;:1.87},{&quot;2026-09-08&quot;:1.87},{&quot;2026-09-09&quot;:1.86},{&quot;2026-09-10&quot;:1.86},{&quot;2026-09-11&quot;:1.86}],&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.56},{&quot;2026-06-17&quot;:0.57},{&quot;2026-06-18&quot;:0.55},{&quot;2026-06-19&quot;:0.55},{&quot;2026-06-20&quot;:0.55},{&quot;2026-06-21&quot;:0.57},{&quot;2026-06-22&quot;:0.57},{&quot;2026-06-23&quot;:0.57},{&quot;2026-06-24&quot;:0.61},{&quot;2026-06-25&quot;:0.59},{&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.59},{&quot;2026-06-30&quot;:0.59},{&quot;2026-07-01&quot;:0.58},{&quot;2026-07-02&quot;:0.56},{&quot;2026-07-03&quot;:0.56},{&quot;2026-07-04&quot;:0.58},{&quot;2026-07-05&quot;:0.58},{&quot;2026-07-06&quot;:0.58},{&quot;2026-07-07&quot;:0.57},{&quot;2026-07-08&quot;:0.57},{&quot;2026-07-09&quot;:0.57},{&quot;2026-07-10&quot;:0.57},{&quot;2026-07-11&quot;:0.57},{&quot;2026-07-12&quot;:0.57},{&quot;2026-07-13&quot;:0.57},{&quot;2026-07-14&quot;:0.57},{&quot;2026-07-15&quot;:0.57},{&quot;2026-07-16&quot;:0.57},{&quot;2026-07-17&quot;:0.57},{&quot;2026-07-18&quot;:0.58},{&quot;2026-07-19&quot;:0.54},{&quot;2026-07-20&quot;:0.54},{&quot;2026-07-21&quot;:0.54},{&quot;2026-07-22&quot;:0.54},{&quot;2026-07-23&quot;:0.56},{&quot;2026-07-24&quot;:0.55},{&quot;2026-07-25&quot;:0.71},{&quot;2026-07-26&quot;:0.71},{&quot;2026-07-27&quot;:0.71},{&quot;2026-07-28&quot;:0.72},{&quot;2026-07-29&quot;:0.72},{&quot;2026-07-30&quot;:0.73},{&quot;2026-07-31&quot;:0.73},{&quot;2026-08-01&quot;:0.72},{&quot;2026-08-02&quot;:0.73},{&quot;2026-08-03&quot;:0.78},{&quot;2026-08-04&quot;:0.77},{&quot;2026-08-05&quot;:0.91},{&quot;2026-08-07&quot;:1.03},{&quot;2026-08-08&quot;:1.03},{&quot;2026-08-09&quot;:1.02},{&quot;2026-08-10&quot;:1.02},{&quot;2026-08-11&quot;:1.02},{&quot;2026-08-12&quot;:1.02},{&quot;2026-08-13&quot;:1.01},{&quot;2026-08-14&quot;:1.01},{&quot;2026-08-15&quot;:1.04},{&quot;2026-08-16&quot;:1.03},{&quot;2026-08-17&quot;:1.14},{&quot;2026-08-18&quot;:1.14},{&quot;2026-08-19&quot;:1.14},{&quot;2026-08-20&quot;:1.14},{&quot;2026-08-21&quot;:1.14},{&quot;2026-08-22&quot;:1.14},{&quot;2026-08-23&quot;:1.14},{&quot;2026-08-24&quot;:1.02},{&quot;2026-08-25&quot;:1.02},{&quot;2026-08-26&quot;:1.03},{&quot;2026-08-27&quot;:1.02},{&quot;2026-08-28&quot;:1.06},{&quot;2026-08-29&quot;:1.06},{&quot;2026-08-30&quot;:1.07},{&quot;2026-08-31&quot;:1.07},{&quot;2026-09-01&quot;:1.07},{&quot;2026-09-02&quot;:1.05},{&quot;2026-09-03&quot;:1.05},{&quot;2026-09-04&quot;:0.95},{&quot;2026-09-05&quot;:0.86},{&quot;2026-09-06&quot;:0.86},{&quot;2026-09-07&quot;:0.88},{&quot;2026-09-08&quot;:0.86},{&quot;2026-09-09&quot;:0.86},{&quot;2026-09-10&quot;:0.85},{&quot;2026-09-11&quot;:0.86}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="77393"
  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">
            Charming Prince
        </span>


      </div>

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

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

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

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

        <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">
            Charming Prince
        </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 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-w'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Charming Prince" src="https://cards.scryfall.io/large/front/d/c/dcb94950-3f3e-4876-84f8-d5e4d9cfecee.jpg?1783932677" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

                <span class="text-xs text-accent-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">
                $2.31
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:2.32},{&quot;2026-06-14&quot;:2.32},{&quot;2026-06-15&quot;:2.32},{&quot;2026-06-16&quot;:2.31},{&quot;2026-06-17&quot;:2.31},{&quot;2026-06-18&quot;:2.31},{&quot;2026-06-19&quot;:2.31},{&quot;2026-06-20&quot;:2.31},{&quot;2026-06-21&quot;:2.31},{&quot;2026-06-22&quot;:2.31},{&quot;2026-06-23&quot;:2.31},{&quot;2026-06-24&quot;:2.31},{&quot;2026-06-25&quot;:2.29},{&quot;2026-06-26&quot;:2.29},{&quot;2026-06-27&quot;:2.29},{&quot;2026-06-28&quot;:2.29},{&quot;2026-06-29&quot;:2.29},{&quot;2026-06-30&quot;:2.29},{&quot;2026-07-01&quot;:2.29},{&quot;2026-07-02&quot;:2.29},{&quot;2026-07-03&quot;:2.29},{&quot;2026-07-04&quot;:2.29},{&quot;2026-07-05&quot;:2.29},{&quot;2026-07-06&quot;:2.29},{&quot;2026-07-07&quot;:2.29},{&quot;2026-07-08&quot;:2.29},{&quot;2026-07-09&quot;:2.31},{&quot;2026-07-10&quot;:2.31},{&quot;2026-07-11&quot;:2.31},{&quot;2026-07-12&quot;:2.31},{&quot;2026-07-13&quot;:2.31},{&quot;2026-07-14&quot;:2.31},{&quot;2026-07-15&quot;:2.31},{&quot;2026-07-16&quot;:2.31},{&quot;2026-07-17&quot;:2.31},{&quot;2026-07-18&quot;:2.31},{&quot;2026-07-19&quot;:2.31},{&quot;2026-07-20&quot;:2.31},{&quot;2026-07-21&quot;:2.31},{&quot;2026-07-22&quot;:2.31},{&quot;2026-07-23&quot;:2.31},{&quot;2026-07-24&quot;:2.31},{&quot;2026-07-25&quot;:2.31},{&quot;2026-07-26&quot;:2.31},{&quot;2026-07-27&quot;:2.31},{&quot;2026-07-28&quot;:2.31},{&quot;2026-07-29&quot;:2.31},{&quot;2026-07-30&quot;:2.31},{&quot;2026-07-31&quot;:2.31},{&quot;2026-08-01&quot;:2.31},{&quot;2026-08-02&quot;:2.31},{&quot;2026-08-03&quot;:2.31},{&quot;2026-08-04&quot;:2.31},{&quot;2026-08-05&quot;:2.31},{&quot;2026-08-07&quot;:2.31},{&quot;2026-08-08&quot;:2.32},{&quot;2026-08-09&quot;:2.32},{&quot;2026-08-10&quot;:2.32},{&quot;2026-08-11&quot;:2.32},{&quot;2026-08-12&quot;:2.32},{&quot;2026-08-13&quot;:2.32},{&quot;2026-08-14&quot;:2.32},{&quot;2026-08-15&quot;:2.32},{&quot;2026-08-16&quot;:2.32},{&quot;2026-08-17&quot;:2.32},{&quot;2026-08-18&quot;:2.32},{&quot;2026-08-19&quot;:2.32},{&quot;2026-08-20&quot;:2.32},{&quot;2026-08-21&quot;:2.32},{&quot;2026-08-22&quot;:2.32},{&quot;2026-08-23&quot;:2.32},{&quot;2026-08-24&quot;:2.32},{&quot;2026-08-25&quot;:2.32},{&quot;2026-08-26&quot;:2.32},{&quot;2026-08-27&quot;:2.32},{&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.32},{&quot;2026-09-03&quot;:2.31},{&quot;2026-09-04&quot;:2.31},{&quot;2026-09-05&quot;:2.31},{&quot;2026-09-06&quot;:2.31},{&quot;2026-09-07&quot;:2.31},{&quot;2026-09-08&quot;:2.31},{&quot;2026-09-09&quot;:2.31},{&quot;2026-09-10&quot;:2.31},{&quot;2026-09-11&quot;:2.31}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.44},{&quot;2026-06-14&quot;:1.37},{&quot;2026-06-15&quot;:1.33},{&quot;2026-06-16&quot;:1.33},{&quot;2026-06-17&quot;:1.3},{&quot;2026-06-18&quot;:1.25},{&quot;2026-06-19&quot;:1.14},{&quot;2026-06-20&quot;:1.0},{&quot;2026-06-21&quot;:0.98},{&quot;2026-06-22&quot;:1.02},{&quot;2026-06-23&quot;:0.9},{&quot;2026-06-24&quot;:0.9},{&quot;2026-06-25&quot;:0.89},{&quot;2026-06-26&quot;:0.86},{&quot;2026-06-27&quot;:0.82},{&quot;2026-06-28&quot;:0.79},{&quot;2026-06-29&quot;:0.74},{&quot;2026-06-30&quot;:0.7},{&quot;2026-07-01&quot;:0.7},{&quot;2026-07-02&quot;:0.7},{&quot;2026-07-03&quot;:0.71},{&quot;2026-07-04&quot;:0.71},{&quot;2026-07-05&quot;:0.71},{&quot;2026-07-06&quot;:0.71},{&quot;2026-07-07&quot;:0.69},{&quot;2026-07-08&quot;:0.68},{&quot;2026-07-09&quot;:0.63},{&quot;2026-07-10&quot;:0.61},{&quot;2026-07-11&quot;:0.59},{&quot;2026-07-12&quot;:0.62},{&quot;2026-07-13&quot;:0.62},{&quot;2026-07-14&quot;:0.61},{&quot;2026-07-15&quot;:0.61},{&quot;2026-07-16&quot;:0.62},{&quot;2026-07-17&quot;:0.66},{&quot;2026-07-18&quot;:0.66},{&quot;2026-07-19&quot;:0.73},{&quot;2026-07-20&quot;:0.75},{&quot;2026-07-21&quot;:0.77},{&quot;2026-07-22&quot;:0.77},{&quot;2026-07-23&quot;:0.77},{&quot;2026-07-24&quot;:0.79},{&quot;2026-07-25&quot;:0.79},{&quot;2026-07-26&quot;:0.82},{&quot;2026-07-27&quot;:0.84},{&quot;2026-07-28&quot;:0.95},{&quot;2026-07-29&quot;:1.0},{&quot;2026-07-30&quot;:0.99},{&quot;2026-07-31&quot;:1.01},{&quot;2026-08-01&quot;:1.06},{&quot;2026-08-02&quot;:1.11},{&quot;2026-08-03&quot;:1.09},{&quot;2026-08-04&quot;:1.12},{&quot;2026-08-05&quot;:1.12},{&quot;2026-08-07&quot;:1.06},{&quot;2026-08-08&quot;:1.06},{&quot;2026-08-09&quot;:1.12},{&quot;2026-08-10&quot;:1.12},{&quot;2026-08-11&quot;:1.13},{&quot;2026-08-12&quot;:1.12},{&quot;2026-08-13&quot;:1.12},{&quot;2026-08-14&quot;:1.15},{&quot;2026-08-15&quot;:1.15},{&quot;2026-08-16&quot;:1.04},{&quot;2026-08-17&quot;:0.95},{&quot;2026-08-18&quot;:1.01},{&quot;2026-08-19&quot;:0.95},{&quot;2026-08-20&quot;:0.97},{&quot;2026-08-21&quot;:0.95},{&quot;2026-08-22&quot;:0.91},{&quot;2026-08-23&quot;:0.9},{&quot;2026-08-24&quot;:0.95},{&quot;2026-08-25&quot;:0.94},{&quot;2026-08-26&quot;:0.94},{&quot;2026-08-27&quot;:0.92},{&quot;2026-08-28&quot;:0.92},{&quot;2026-08-29&quot;:0.92},{&quot;2026-08-30&quot;:0.94},{&quot;2026-08-31&quot;:0.94},{&quot;2026-09-01&quot;:0.89},{&quot;2026-09-02&quot;:0.89},{&quot;2026-09-03&quot;:0.88},{&quot;2026-09-04&quot;:0.89},{&quot;2026-09-05&quot;:0.88},{&quot;2026-09-06&quot;:0.88},{&quot;2026-09-07&quot;:0.88},{&quot;2026-09-08&quot;:0.92},{&quot;2026-09-09&quot;:0.86},{&quot;2026-09-10&quot;:0.87},{&quot;2026-09-11&quot;:0.83}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="18727"
  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">
            Isolated Chapel
        </span>


      </div>

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

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

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

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

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

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

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Isolated Chapel" src="https://cards.scryfall.io/large/front/d/3/d359281b-b509-41be-a820-c7ac9f36f27f.jpg?1783918403" />
    </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.81
              </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.34
              </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;2026-06-10&quot;:1.37},{&quot;2026-06-11&quot;:1.37},{&quot;2026-06-12&quot;:1.33},{&quot;2026-06-13&quot;:1.33},{&quot;2026-06-14&quot;:1.33},{&quot;2026-06-15&quot;:1.33},{&quot;2026-06-16&quot;:1.33},{&quot;2026-06-17&quot;:1.33},{&quot;2026-06-18&quot;:1.33},{&quot;2026-06-19&quot;:1.35},{&quot;2026-06-20&quot;:1.35},{&quot;2026-06-21&quot;:1.35},{&quot;2026-06-22&quot;:1.35},{&quot;2026-06-23&quot;:1.35},{&quot;2026-06-24&quot;:1.35},{&quot;2026-06-25&quot;:1.35},{&quot;2026-06-26&quot;:1.35},{&quot;2026-06-27&quot;:1.35},{&quot;2026-06-28&quot;:1.35},{&quot;2026-06-29&quot;:1.35},{&quot;2026-06-30&quot;:1.35},{&quot;2026-07-01&quot;:1.35},{&quot;2026-07-02&quot;:1.35},{&quot;2026-07-03&quot;:1.35},{&quot;2026-07-04&quot;:1.35},{&quot;2026-07-05&quot;:1.36},{&quot;2026-07-06&quot;:1.41},{&quot;2026-07-07&quot;:1.37},{&quot;2026-07-08&quot;:1.37},{&quot;2026-07-09&quot;:1.37},{&quot;2026-07-10&quot;:1.37},{&quot;2026-07-11&quot;:1.41},{&quot;2026-07-12&quot;:1.41},{&quot;2026-07-13&quot;:1.41},{&quot;2026-07-14&quot;:1.43},{&quot;2026-07-15&quot;:1.43},{&quot;2026-07-16&quot;:1.43},{&quot;2026-07-17&quot;:1.4},{&quot;2026-07-18&quot;:1.43},{&quot;2026-07-19&quot;:1.43},{&quot;2026-07-20&quot;:1.43},{&quot;2026-07-21&quot;:1.43},{&quot;2026-07-23&quot;:1.43},{&quot;2026-07-25&quot;:1.43},{&quot;2026-07-26&quot;:1.43},{&quot;2026-07-27&quot;:1.43},{&quot;2026-07-29&quot;:1.43},{&quot;2026-07-30&quot;:1.43},{&quot;2026-07-31&quot;:1.45},{&quot;2026-08-01&quot;:1.45},{&quot;2026-08-02&quot;:1.45},{&quot;2026-08-03&quot;:1.46},{&quot;2026-08-04&quot;:1.46},{&quot;2026-08-05&quot;:1.4},{&quot;2026-08-07&quot;:1.39},{&quot;2026-08-08&quot;:1.4},{&quot;2026-08-09&quot;:1.4},{&quot;2026-08-10&quot;:1.4},{&quot;2026-08-11&quot;:1.4},{&quot;2026-08-12&quot;:1.4},{&quot;2026-08-13&quot;:1.4},{&quot;2026-08-14&quot;:1.4},{&quot;2026-08-15&quot;:1.41},{&quot;2026-08-16&quot;:1.37},{&quot;2026-08-17&quot;:1.37},{&quot;2026-08-18&quot;:1.33},{&quot;2026-08-19&quot;:1.34},{&quot;2026-08-20&quot;:1.34},{&quot;2026-08-21&quot;:1.34},{&quot;2026-08-22&quot;:1.34},{&quot;2026-08-23&quot;:1.34},{&quot;2026-08-24&quot;:1.34},{&quot;2026-08-25&quot;:1.34},{&quot;2026-08-26&quot;:1.34},{&quot;2026-08-27&quot;:1.34},{&quot;2026-08-28&quot;:1.34},{&quot;2026-08-29&quot;:1.34},{&quot;2026-08-30&quot;:1.34},{&quot;2026-08-31&quot;:1.36},{&quot;2026-09-01&quot;:1.36},{&quot;2026-09-02&quot;:1.36},{&quot;2026-09-03&quot;:1.36},{&quot;2026-09-04&quot;:1.36},{&quot;2026-09-05&quot;:1.36},{&quot;2026-09-06&quot;:1.34},{&quot;2026-09-07&quot;:1.34},{&quot;2026-09-08&quot;:1.31},{&quot;2026-09-09&quot;:1.31},{&quot;2026-09-10&quot;:1.31},{&quot;2026-09-11&quot;:1.34}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:0.79},{&quot;2026-06-11&quot;:0.82},{&quot;2026-06-12&quot;:0.8},{&quot;2026-06-13&quot;:0.78},{&quot;2026-06-14&quot;:0.78},{&quot;2026-06-15&quot;:0.79},{&quot;2026-06-16&quot;:0.82},{&quot;2026-06-17&quot;:0.82},{&quot;2026-06-18&quot;:0.81},{&quot;2026-06-19&quot;:0.79},{&quot;2026-06-20&quot;:0.79},{&quot;2026-06-21&quot;:0.79},{&quot;2026-06-22&quot;:0.79},{&quot;2026-06-23&quot;:0.79},{&quot;2026-06-24&quot;:0.79},{&quot;2026-06-25&quot;:0.79},{&quot;2026-06-26&quot;:0.8},{&quot;2026-06-27&quot;:0.8},{&quot;2026-06-28&quot;:0.8},{&quot;2026-06-29&quot;:0.79},{&quot;2026-06-30&quot;:0.78},{&quot;2026-07-01&quot;:0.78},{&quot;2026-07-02&quot;:0.77},{&quot;2026-07-03&quot;:0.77},{&quot;2026-07-04&quot;:0.76},{&quot;2026-07-05&quot;:0.77},{&quot;2026-07-06&quot;:0.75},{&quot;2026-07-07&quot;:0.74},{&quot;2026-07-08&quot;:0.74},{&quot;2026-07-09&quot;:0.74},{&quot;2026-07-10&quot;:0.74},{&quot;2026-07-11&quot;:0.74},{&quot;2026-07-12&quot;:0.74},{&quot;2026-07-13&quot;:0.74},{&quot;2026-07-14&quot;:0.7},{&quot;2026-07-15&quot;:0.73},{&quot;2026-07-16&quot;:0.73},{&quot;2026-07-17&quot;:0.69},{&quot;2026-07-18&quot;:0.69},{&quot;2026-07-19&quot;:0.69},{&quot;2026-07-20&quot;:0.69},{&quot;2026-07-21&quot;:0.69},{&quot;2026-07-23&quot;:0.69},{&quot;2026-07-25&quot;:0.69},{&quot;2026-07-26&quot;:0.69},{&quot;2026-07-27&quot;:0.72},{&quot;2026-07-29&quot;:0.75},{&quot;2026-07-30&quot;:0.78},{&quot;2026-07-31&quot;:0.78},{&quot;2026-08-01&quot;:0.78},{&quot;2026-08-02&quot;:0.78},{&quot;2026-08-03&quot;:0.78},{&quot;2026-08-04&quot;:0.79},{&quot;2026-08-05&quot;:0.8},{&quot;2026-08-07&quot;:0.8},{&quot;2026-08-08&quot;:0.8},{&quot;2026-08-09&quot;:0.8},{&quot;2026-08-10&quot;:0.8},{&quot;2026-08-11&quot;:0.8},{&quot;2026-08-12&quot;:0.8},{&quot;2026-08-13&quot;:0.81},{&quot;2026-08-14&quot;:0.81},{&quot;2026-08-15&quot;:0.8},{&quot;2026-08-16&quot;:0.8},{&quot;2026-08-17&quot;:0.8},{&quot;2026-08-18&quot;:0.8},{&quot;2026-08-19&quot;:0.8},{&quot;2026-08-20&quot;:0.8},{&quot;2026-08-21&quot;:0.78},{&quot;2026-08-22&quot;:0.78},{&quot;2026-08-23&quot;:0.78},{&quot;2026-08-24&quot;:0.77},{&quot;2026-08-25&quot;:0.77},{&quot;2026-08-26&quot;:0.77},{&quot;2026-08-27&quot;:0.77},{&quot;2026-08-28&quot;:0.8},{&quot;2026-08-29&quot;:0.8},{&quot;2026-08-30&quot;:0.8},{&quot;2026-08-31&quot;:0.8},{&quot;2026-09-01&quot;:0.8},{&quot;2026-09-02&quot;:0.83},{&quot;2026-09-03&quot;:0.81},{&quot;2026-09-04&quot;:0.81},{&quot;2026-09-05&quot;:0.81},{&quot;2026-09-06&quot;:0.81},{&quot;2026-09-07&quot;:0.79},{&quot;2026-09-08&quot;:0.79},{&quot;2026-09-09&quot;:0.81},{&quot;2026-09-10&quot;:0.81},{&quot;2026-09-11&quot;:0.81}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Talisman of Hierarchy" src="https://cards.scryfall.io/large/front/2/2/2299c93e-f3a6-4b41-857b-e3d1aff0f622.jpg?1783922383" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.03},{&quot;2026-06-14&quot;:1.03},{&quot;2026-06-15&quot;:1.02},{&quot;2026-06-16&quot;:1.01},{&quot;2026-06-17&quot;:0.99},{&quot;2026-06-18&quot;:0.99},{&quot;2026-06-19&quot;:0.99},{&quot;2026-06-20&quot;:0.99},{&quot;2026-06-21&quot;:0.99},{&quot;2026-06-22&quot;:0.99},{&quot;2026-06-23&quot;:0.99},{&quot;2026-06-24&quot;:1.0},{&quot;2026-06-25&quot;:1.0},{&quot;2026-06-26&quot;:0.99},{&quot;2026-06-27&quot;:0.99},{&quot;2026-06-28&quot;:0.99},{&quot;2026-06-29&quot;:0.98},{&quot;2026-06-30&quot;:0.98},{&quot;2026-07-01&quot;:0.98},{&quot;2026-07-02&quot;:0.98},{&quot;2026-07-03&quot;:0.98},{&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;:1.02},{&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.0},{&quot;2026-07-12&quot;:1.0},{&quot;2026-07-13&quot;:1.0},{&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.02},{&quot;2026-07-20&quot;:1.02},{&quot;2026-07-21&quot;:0.93},{&quot;2026-07-22&quot;:0.93},{&quot;2026-07-23&quot;:0.93},{&quot;2026-07-24&quot;:0.93},{&quot;2026-07-25&quot;:0.93},{&quot;2026-07-26&quot;:0.93},{&quot;2026-07-27&quot;:0.93},{&quot;2026-07-28&quot;:0.93},{&quot;2026-07-29&quot;:0.91},{&quot;2026-07-30&quot;:0.91},{&quot;2026-07-31&quot;:0.83},{&quot;2026-08-01&quot;:0.83},{&quot;2026-08-02&quot;:0.83},{&quot;2026-08-03&quot;:0.83},{&quot;2026-08-04&quot;:0.83},{&quot;2026-08-05&quot;:0.83},{&quot;2026-08-07&quot;:0.83},{&quot;2026-08-08&quot;:0.83},{&quot;2026-08-09&quot;:0.83},{&quot;2026-08-10&quot;:0.83},{&quot;2026-08-11&quot;:0.83},{&quot;2026-08-12&quot;:0.83},{&quot;2026-08-13&quot;:0.84},{&quot;2026-08-14&quot;:0.84},{&quot;2026-08-15&quot;:0.84},{&quot;2026-08-16&quot;:0.84},{&quot;2026-08-17&quot;:0.83},{&quot;2026-08-18&quot;:0.83},{&quot;2026-08-19&quot;:0.83},{&quot;2026-08-20&quot;:0.83},{&quot;2026-08-21&quot;:0.83},{&quot;2026-08-22&quot;:0.83},{&quot;2026-08-23&quot;:0.82},{&quot;2026-08-24&quot;:0.82},{&quot;2026-08-25&quot;:0.82},{&quot;2026-08-26&quot;:0.82},{&quot;2026-08-27&quot;:0.82},{&quot;2026-08-28&quot;:0.79},{&quot;2026-08-29&quot;:0.79},{&quot;2026-08-30&quot;:0.75},{&quot;2026-08-31&quot;:0.75},{&quot;2026-09-01&quot;:0.77},{&quot;2026-09-02&quot;:0.77},{&quot;2026-09-03&quot;:0.77},{&quot;2026-09-04&quot;:0.77},{&quot;2026-09-05&quot;:0.76},{&quot;2026-09-06&quot;:0.8},{&quot;2026-09-07&quot;:0.8},{&quot;2026-09-08&quot;:0.8},{&quot;2026-09-09&quot;:0.8},{&quot;2026-09-10&quot;:0.76},{&quot;2026-09-11&quot;:0.78}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="20154"
  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-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">
            Reveillark
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.75
          </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="Reveillark" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/5/3/53b4dcd6-b1b6-4f1c-9264-e58bdc87399b.jpg?1783921930" />

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Reveillark" src="https://cards.scryfall.io/large/front/5/3/53b4dcd6-b1b6-4f1c-9264-e58bdc87399b.jpg?1783921930" />
    </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.75
              </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.05
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-11&quot;:0.98},{&quot;2026-06-12&quot;:0.98},{&quot;2026-06-13&quot;:0.98},{&quot;2026-06-14&quot;:0.98},{&quot;2026-06-15&quot;:0.98},{&quot;2026-06-16&quot;:0.98},{&quot;2026-06-17&quot;:0.98},{&quot;2026-06-18&quot;:0.98},{&quot;2026-06-19&quot;:0.98},{&quot;2026-06-20&quot;:0.98},{&quot;2026-06-21&quot;:0.98},{&quot;2026-06-22&quot;:0.98},{&quot;2026-06-23&quot;:0.98},{&quot;2026-06-24&quot;:1.0},{&quot;2026-06-25&quot;:1.0},{&quot;2026-06-26&quot;:1.0},{&quot;2026-06-27&quot;:1.0},{&quot;2026-06-28&quot;:1.0},{&quot;2026-06-29&quot;:1.0},{&quot;2026-06-30&quot;:1.0},{&quot;2026-07-01&quot;:1.0},{&quot;2026-07-02&quot;:1.0},{&quot;2026-07-03&quot;:1.0},{&quot;2026-07-04&quot;:1.0},{&quot;2026-07-05&quot;:1.0},{&quot;2026-07-06&quot;:1.0},{&quot;2026-07-07&quot;:0.98},{&quot;2026-07-08&quot;:0.98},{&quot;2026-07-09&quot;:0.98},{&quot;2026-07-10&quot;:0.98},{&quot;2026-07-11&quot;:0.98},{&quot;2026-07-12&quot;:0.94},{&quot;2026-07-13&quot;:0.94},{&quot;2026-07-14&quot;:0.94},{&quot;2026-07-15&quot;:0.93},{&quot;2026-07-16&quot;:0.93},{&quot;2026-07-17&quot;:0.93},{&quot;2026-07-18&quot;:0.93},{&quot;2026-07-19&quot;:0.93},{&quot;2026-07-20&quot;:0.93},{&quot;2026-07-21&quot;:0.93},{&quot;2026-07-23&quot;:0.93},{&quot;2026-07-25&quot;:0.94},{&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.94},{&quot;2026-07-31&quot;:0.94},{&quot;2026-08-01&quot;:0.94},{&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.94},{&quot;2026-08-11&quot;:0.94},{&quot;2026-08-12&quot;:0.94},{&quot;2026-08-13&quot;:0.94},{&quot;2026-08-14&quot;:0.94},{&quot;2026-08-15&quot;:1.0},{&quot;2026-08-16&quot;:1.0},{&quot;2026-08-17&quot;:1.0},{&quot;2026-08-18&quot;:1.0},{&quot;2026-08-19&quot;:0.97},{&quot;2026-08-20&quot;:0.97},{&quot;2026-08-21&quot;:1.0},{&quot;2026-08-22&quot;:1.0},{&quot;2026-08-23&quot;:1.0},{&quot;2026-08-24&quot;:1.0},{&quot;2026-08-25&quot;:1.0},{&quot;2026-08-26&quot;:1.0},{&quot;2026-08-27&quot;:1.0},{&quot;2026-08-28&quot;:1.0},{&quot;2026-08-29&quot;:1.0},{&quot;2026-08-30&quot;:1.0},{&quot;2026-08-31&quot;:1.0},{&quot;2026-09-01&quot;:1.0},{&quot;2026-09-02&quot;:1.05},{&quot;2026-09-03&quot;:1.05},{&quot;2026-09-04&quot;:1.05},{&quot;2026-09-05&quot;:1.05},{&quot;2026-09-06&quot;:1.05},{&quot;2026-09-07&quot;:1.05},{&quot;2026-09-08&quot;:1.05},{&quot;2026-09-09&quot;:1.05},{&quot;2026-09-10&quot;:1.05},{&quot;2026-09-11&quot;:1.05}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:0.85},{&quot;2026-06-12&quot;:0.85},{&quot;2026-06-13&quot;:0.89},{&quot;2026-06-14&quot;:0.87},{&quot;2026-06-15&quot;:0.88},{&quot;2026-06-16&quot;:0.88},{&quot;2026-06-17&quot;:0.86},{&quot;2026-06-18&quot;:0.86},{&quot;2026-06-19&quot;:0.86},{&quot;2026-06-20&quot;:0.86},{&quot;2026-06-21&quot;:0.86},{&quot;2026-06-22&quot;:0.86},{&quot;2026-06-23&quot;:0.84},{&quot;2026-06-24&quot;:0.84},{&quot;2026-06-25&quot;:0.84},{&quot;2026-06-26&quot;:0.84},{&quot;2026-06-27&quot;:0.84},{&quot;2026-06-28&quot;:0.84},{&quot;2026-06-29&quot;:0.84},{&quot;2026-06-30&quot;:0.84},{&quot;2026-07-01&quot;:0.85},{&quot;2026-07-02&quot;:0.84},{&quot;2026-07-03&quot;:0.86},{&quot;2026-07-04&quot;:0.86},{&quot;2026-07-05&quot;:0.84},{&quot;2026-07-06&quot;:0.84},{&quot;2026-07-07&quot;:0.84},{&quot;2026-07-08&quot;:0.84},{&quot;2026-07-09&quot;:0.83},{&quot;2026-07-10&quot;:0.83},{&quot;2026-07-11&quot;:0.75},{&quot;2026-07-12&quot;:0.75},{&quot;2026-07-13&quot;:0.76},{&quot;2026-07-14&quot;:0.76},{&quot;2026-07-15&quot;:0.76},{&quot;2026-07-16&quot;:0.75},{&quot;2026-07-17&quot;:0.74},{&quot;2026-07-18&quot;:0.74},{&quot;2026-07-19&quot;:0.74},{&quot;2026-07-20&quot;:0.74},{&quot;2026-07-21&quot;:0.74},{&quot;2026-07-23&quot;:0.76},{&quot;2026-07-25&quot;:0.77},{&quot;2026-07-26&quot;:0.77},{&quot;2026-07-27&quot;:0.77},{&quot;2026-07-28&quot;:0.77},{&quot;2026-07-29&quot;:0.77},{&quot;2026-07-30&quot;:0.75},{&quot;2026-07-31&quot;:0.74},{&quot;2026-08-01&quot;:0.74},{&quot;2026-08-02&quot;:0.74},{&quot;2026-08-03&quot;:0.74},{&quot;2026-08-04&quot;:0.74},{&quot;2026-08-05&quot;:0.76},{&quot;2026-08-07&quot;:0.76},{&quot;2026-08-08&quot;:0.76},{&quot;2026-08-09&quot;:0.76},{&quot;2026-08-10&quot;:0.73},{&quot;2026-08-11&quot;:0.73},{&quot;2026-08-12&quot;:0.72},{&quot;2026-08-13&quot;:0.72},{&quot;2026-08-14&quot;:0.72},{&quot;2026-08-15&quot;:0.7},{&quot;2026-08-16&quot;:0.7},{&quot;2026-08-17&quot;:0.69},{&quot;2026-08-18&quot;:0.66},{&quot;2026-08-19&quot;:0.66},{&quot;2026-08-20&quot;:0.66},{&quot;2026-08-21&quot;:0.63},{&quot;2026-08-22&quot;:0.61},{&quot;2026-08-23&quot;:0.61},{&quot;2026-08-24&quot;:0.67},{&quot;2026-08-25&quot;:0.67},{&quot;2026-08-26&quot;:0.67},{&quot;2026-08-27&quot;:0.69},{&quot;2026-08-28&quot;:0.72},{&quot;2026-08-29&quot;:0.72},{&quot;2026-08-30&quot;:0.74},{&quot;2026-08-31&quot;:0.76},{&quot;2026-09-01&quot;:0.76},{&quot;2026-09-02&quot;:0.75},{&quot;2026-09-03&quot;:0.75},{&quot;2026-09-04&quot;:0.75},{&quot;2026-09-05&quot;:0.75},{&quot;2026-09-06&quot;:0.75},{&quot;2026-09-07&quot;:0.72},{&quot;2026-09-08&quot;:0.72},{&quot;2026-09-09&quot;:0.73},{&quot;2026-09-10&quot;:0.75},{&quot;2026-09-11&quot;:0.75}]}"
        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="96750"
  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-eoe 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">
            Requiem Monolith
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Requiem Monolith" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/c/2c44310c-80e2-4398-9b7a-097eca86ee48.jpg?1783905888" />

        <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">
            Requiem Monolith
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Requiem Monolith" src="https://cards.scryfall.io/large/front/2/c/2c44310c-80e2-4398-9b7a-097eca86ee48.jpg?1783905888" />
    </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.68
              </span>

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

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

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

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.38</span>
              <span class="text-xs text-grey-text">Credit: $0.49</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.76},{&quot;2026-06-14&quot;:0.76},{&quot;2026-06-15&quot;:0.81},{&quot;2026-06-16&quot;:0.81},{&quot;2026-06-17&quot;:0.81},{&quot;2026-06-18&quot;:0.84},{&quot;2026-06-19&quot;:0.84},{&quot;2026-06-20&quot;:0.84},{&quot;2026-06-21&quot;:0.84},{&quot;2026-06-22&quot;:0.82},{&quot;2026-06-23&quot;:0.82},{&quot;2026-06-24&quot;:0.82},{&quot;2026-06-25&quot;:0.82},{&quot;2026-06-26&quot;:0.82},{&quot;2026-06-27&quot;:0.82},{&quot;2026-06-28&quot;:0.82},{&quot;2026-06-29&quot;:0.82},{&quot;2026-06-30&quot;:0.82},{&quot;2026-07-01&quot;:0.82},{&quot;2026-07-02&quot;:0.82},{&quot;2026-07-03&quot;:0.82},{&quot;2026-07-04&quot;:0.82},{&quot;2026-07-05&quot;:0.81},{&quot;2026-07-06&quot;:0.81},{&quot;2026-07-07&quot;:0.81},{&quot;2026-07-08&quot;:0.81},{&quot;2026-07-09&quot;:0.8},{&quot;2026-07-10&quot;:0.8},{&quot;2026-07-11&quot;:0.8},{&quot;2026-07-12&quot;:0.81},{&quot;2026-07-13&quot;:0.81},{&quot;2026-07-14&quot;:0.81},{&quot;2026-07-15&quot;:0.82},{&quot;2026-07-16&quot;:0.82},{&quot;2026-07-17&quot;:0.81},{&quot;2026-07-18&quot;:0.83},{&quot;2026-07-19&quot;:0.83},{&quot;2026-07-20&quot;:0.83},{&quot;2026-07-21&quot;:0.83},{&quot;2026-07-22&quot;:0.83},{&quot;2026-07-23&quot;:0.83},{&quot;2026-07-24&quot;:0.84},{&quot;2026-07-25&quot;:0.83},{&quot;2026-07-26&quot;:0.83},{&quot;2026-07-27&quot;:0.83},{&quot;2026-07-28&quot;:0.83},{&quot;2026-07-29&quot;:0.83},{&quot;2026-07-30&quot;:0.83},{&quot;2026-07-31&quot;:0.83},{&quot;2026-08-01&quot;:0.83},{&quot;2026-08-02&quot;:0.82},{&quot;2026-08-03&quot;:0.82},{&quot;2026-08-04&quot;:0.82},{&quot;2026-08-05&quot;:0.82},{&quot;2026-08-07&quot;:0.83},{&quot;2026-08-08&quot;:0.83},{&quot;2026-08-09&quot;:0.83},{&quot;2026-08-10&quot;:0.84},{&quot;2026-08-11&quot;:0.84},{&quot;2026-08-12&quot;:0.8},{&quot;2026-08-13&quot;:0.79},{&quot;2026-08-14&quot;:0.79},{&quot;2026-08-15&quot;:0.8},{&quot;2026-08-16&quot;:0.8},{&quot;2026-08-17&quot;:0.79},{&quot;2026-08-18&quot;:0.79},{&quot;2026-08-19&quot;:0.79},{&quot;2026-08-20&quot;:0.79},{&quot;2026-08-21&quot;:0.79},{&quot;2026-08-22&quot;:0.79},{&quot;2026-08-23&quot;:0.79},{&quot;2026-08-24&quot;:0.79},{&quot;2026-08-25&quot;:0.79},{&quot;2026-08-26&quot;:0.8},{&quot;2026-08-27&quot;:0.85},{&quot;2026-08-28&quot;:0.85},{&quot;2026-08-29&quot;:0.85},{&quot;2026-08-30&quot;:0.85},{&quot;2026-08-31&quot;:0.85},{&quot;2026-09-01&quot;:0.85},{&quot;2026-09-02&quot;:0.85},{&quot;2026-09-03&quot;:0.85},{&quot;2026-09-04&quot;:0.85},{&quot;2026-09-05&quot;:0.85},{&quot;2026-09-06&quot;:0.85},{&quot;2026-09-07&quot;:0.85},{&quot;2026-09-08&quot;:0.85},{&quot;2026-09-09&quot;:0.86},{&quot;2026-09-10&quot;:0.86},{&quot;2026-09-11&quot;:0.86}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.6},{&quot;2026-06-14&quot;:0.6},{&quot;2026-06-15&quot;:0.6},{&quot;2026-06-16&quot;:0.6},{&quot;2026-06-17&quot;:0.61},{&quot;2026-06-18&quot;:0.62},{&quot;2026-06-19&quot;:0.62},{&quot;2026-06-20&quot;:0.61},{&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.65},{&quot;2026-06-26&quot;:0.65},{&quot;2026-06-27&quot;:0.65},{&quot;2026-06-28&quot;:0.65},{&quot;2026-06-29&quot;:0.64},{&quot;2026-06-30&quot;:0.64},{&quot;2026-07-01&quot;:0.64},{&quot;2026-07-02&quot;:0.63},{&quot;2026-07-03&quot;:0.62},{&quot;2026-07-04&quot;:0.64},{&quot;2026-07-05&quot;:0.64},{&quot;2026-07-06&quot;:0.66},{&quot;2026-07-07&quot;:0.66},{&quot;2026-07-08&quot;:0.67},{&quot;2026-07-09&quot;:0.68},{&quot;2026-07-10&quot;:0.68},{&quot;2026-07-11&quot;:0.69},{&quot;2026-07-12&quot;:0.68},{&quot;2026-07-13&quot;:0.68},{&quot;2026-07-14&quot;:0.68},{&quot;2026-07-15&quot;:0.68},{&quot;2026-07-16&quot;:0.68},{&quot;2026-07-17&quot;:0.69},{&quot;2026-07-18&quot;:0.69},{&quot;2026-07-19&quot;:0.69},{&quot;2026-07-20&quot;:0.7},{&quot;2026-07-21&quot;:0.7},{&quot;2026-07-22&quot;:0.7},{&quot;2026-07-23&quot;:0.7},{&quot;2026-07-24&quot;:0.7},{&quot;2026-07-25&quot;:0.7},{&quot;2026-07-26&quot;:0.7},{&quot;2026-07-27&quot;:0.67},{&quot;2026-07-28&quot;:0.67},{&quot;2026-07-29&quot;:0.67},{&quot;2026-07-30&quot;:0.67},{&quot;2026-07-31&quot;:0.66},{&quot;2026-08-01&quot;:0.66},{&quot;2026-08-02&quot;:0.66},{&quot;2026-08-03&quot;:0.66},{&quot;2026-08-04&quot;:0.66},{&quot;2026-08-05&quot;:0.66},{&quot;2026-08-07&quot;:0.66},{&quot;2026-08-08&quot;:0.66},{&quot;2026-08-09&quot;:0.65},{&quot;2026-08-10&quot;:0.65},{&quot;2026-08-11&quot;:0.65},{&quot;2026-08-12&quot;:0.65},{&quot;2026-08-13&quot;:0.65},{&quot;2026-08-14&quot;:0.62},{&quot;2026-08-15&quot;:0.62},{&quot;2026-08-16&quot;:0.61},{&quot;2026-08-17&quot;:0.61},{&quot;2026-08-18&quot;:0.6},{&quot;2026-08-19&quot;:0.59},{&quot;2026-08-20&quot;:0.59},{&quot;2026-08-21&quot;:0.59},{&quot;2026-08-22&quot;:0.58},{&quot;2026-08-23&quot;:0.58},{&quot;2026-08-24&quot;:0.58},{&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.59},{&quot;2026-08-29&quot;:0.59},{&quot;2026-08-30&quot;:0.61},{&quot;2026-08-31&quot;:0.61},{&quot;2026-09-01&quot;:0.6},{&quot;2026-09-02&quot;:0.6},{&quot;2026-09-03&quot;:0.65},{&quot;2026-09-04&quot;:0.65},{&quot;2026-09-05&quot;:0.65},{&quot;2026-09-06&quot;:0.65},{&quot;2026-09-07&quot;:0.65},{&quot;2026-09-08&quot;:0.65},{&quot;2026-09-09&quot;:0.65},{&quot;2026-09-10&quot;:0.67},{&quot;2026-09-11&quot;:0.68}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="96718"
  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-eoe 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">
            Syr Vondam, Sunstar Exemplar
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Syr Vondam, Sunstar Exemplar" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/c/9c39b081-ad53-4c43-93f4-3a4ebb24299b.jpg?1783905898" />

        <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">
            Syr Vondam, Sunstar Exemplar
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Syr Vondam, Sunstar Exemplar" src="https://cards.scryfall.io/large/front/9/c/9c39b081-ad53-4c43-93f4-3a4ebb24299b.jpg?1783905898" />
    </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.60
              </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">
                $1.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.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;:1.5},{&quot;2026-06-14&quot;:1.5},{&quot;2026-06-15&quot;:1.5},{&quot;2026-06-16&quot;:1.49},{&quot;2026-06-17&quot;:1.49},{&quot;2026-06-18&quot;:1.49},{&quot;2026-06-19&quot;:1.49},{&quot;2026-06-20&quot;:1.49},{&quot;2026-06-21&quot;:1.49},{&quot;2026-06-22&quot;:1.48},{&quot;2026-06-23&quot;:1.55},{&quot;2026-06-24&quot;:1.53},{&quot;2026-06-25&quot;:1.53},{&quot;2026-06-26&quot;:1.53},{&quot;2026-06-27&quot;:1.53},{&quot;2026-06-28&quot;:1.53},{&quot;2026-06-29&quot;:1.53},{&quot;2026-06-30&quot;:1.54},{&quot;2026-07-01&quot;:1.53},{&quot;2026-07-02&quot;:1.53},{&quot;2026-07-03&quot;:1.53},{&quot;2026-07-04&quot;:1.53},{&quot;2026-07-05&quot;:1.53},{&quot;2026-07-06&quot;:1.54},{&quot;2026-07-07&quot;:1.54},{&quot;2026-07-08&quot;:1.53},{&quot;2026-07-09&quot;:1.53},{&quot;2026-07-10&quot;:1.49},{&quot;2026-07-11&quot;:1.47},{&quot;2026-07-12&quot;:1.47},{&quot;2026-07-13&quot;:1.45},{&quot;2026-07-14&quot;:1.45},{&quot;2026-07-15&quot;:1.44},{&quot;2026-07-16&quot;:1.41},{&quot;2026-07-17&quot;:1.41},{&quot;2026-07-18&quot;:1.41},{&quot;2026-07-19&quot;:1.41},{&quot;2026-07-20&quot;:1.46},{&quot;2026-07-21&quot;:1.46},{&quot;2026-07-22&quot;:1.46},{&quot;2026-07-23&quot;:1.46},{&quot;2026-07-24&quot;:1.48},{&quot;2026-07-25&quot;:1.48},{&quot;2026-07-26&quot;:1.5},{&quot;2026-07-27&quot;:1.5},{&quot;2026-07-28&quot;:1.49},{&quot;2026-07-29&quot;:1.46},{&quot;2026-07-30&quot;:1.46},{&quot;2026-07-31&quot;:1.39},{&quot;2026-08-01&quot;:1.39},{&quot;2026-08-02&quot;:1.28},{&quot;2026-08-03&quot;:1.26},{&quot;2026-08-04&quot;:1.26},{&quot;2026-08-05&quot;:1.23},{&quot;2026-08-07&quot;:1.23},{&quot;2026-08-08&quot;:1.24},{&quot;2026-08-09&quot;:1.24},{&quot;2026-08-10&quot;:1.24},{&quot;2026-08-11&quot;:1.18},{&quot;2026-08-12&quot;:1.18},{&quot;2026-08-13&quot;:1.16},{&quot;2026-08-14&quot;:1.16},{&quot;2026-08-15&quot;:1.16},{&quot;2026-08-16&quot;:1.11},{&quot;2026-08-17&quot;:1.11},{&quot;2026-08-18&quot;:1.13},{&quot;2026-08-19&quot;:1.14},{&quot;2026-08-20&quot;:1.16},{&quot;2026-08-21&quot;:1.16},{&quot;2026-08-22&quot;:1.16},{&quot;2026-08-23&quot;:1.18},{&quot;2026-08-24&quot;:1.17},{&quot;2026-08-25&quot;:1.15},{&quot;2026-08-26&quot;:1.15},{&quot;2026-08-27&quot;:1.15},{&quot;2026-08-28&quot;:1.16},{&quot;2026-08-29&quot;:1.16},{&quot;2026-08-30&quot;:1.13},{&quot;2026-08-31&quot;:1.13},{&quot;2026-09-01&quot;:1.14},{&quot;2026-09-02&quot;:1.14},{&quot;2026-09-03&quot;:1.13},{&quot;2026-09-04&quot;:1.13},{&quot;2026-09-05&quot;:1.13},{&quot;2026-09-06&quot;:1.13},{&quot;2026-09-07&quot;:1.13},{&quot;2026-09-08&quot;:1.15},{&quot;2026-09-09&quot;:1.13},{&quot;2026-09-10&quot;:1.13},{&quot;2026-09-11&quot;:1.13}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.88},{&quot;2026-06-14&quot;:0.87},{&quot;2026-06-15&quot;:0.85},{&quot;2026-06-16&quot;:0.81},{&quot;2026-06-17&quot;:0.78},{&quot;2026-06-18&quot;:0.78},{&quot;2026-06-19&quot;:0.77},{&quot;2026-06-20&quot;:0.78},{&quot;2026-06-21&quot;:0.79},{&quot;2026-06-22&quot;:0.76},{&quot;2026-06-23&quot;:0.74},{&quot;2026-06-24&quot;:0.72},{&quot;2026-06-25&quot;:0.72},{&quot;2026-06-26&quot;:0.72},{&quot;2026-06-27&quot;:0.72},{&quot;2026-06-28&quot;:0.72},{&quot;2026-06-29&quot;:0.73},{&quot;2026-06-30&quot;:0.72},{&quot;2026-07-01&quot;:0.72},{&quot;2026-07-02&quot;:0.7},{&quot;2026-07-03&quot;:0.67},{&quot;2026-07-04&quot;:0.66},{&quot;2026-07-05&quot;:0.64},{&quot;2026-07-06&quot;:0.64},{&quot;2026-07-07&quot;:0.64},{&quot;2026-07-08&quot;:0.64},{&quot;2026-07-09&quot;:0.64},{&quot;2026-07-10&quot;:0.64},{&quot;2026-07-11&quot;:0.65},{&quot;2026-07-12&quot;:0.63},{&quot;2026-07-13&quot;:0.63},{&quot;2026-07-14&quot;:0.64},{&quot;2026-07-15&quot;:0.61},{&quot;2026-07-16&quot;:0.58},{&quot;2026-07-17&quot;:0.57},{&quot;2026-07-18&quot;:0.58},{&quot;2026-07-19&quot;:0.6},{&quot;2026-07-20&quot;:0.6},{&quot;2026-07-21&quot;:0.61},{&quot;2026-07-22&quot;:0.6},{&quot;2026-07-23&quot;:0.61},{&quot;2026-07-24&quot;:0.6},{&quot;2026-07-25&quot;:0.59},{&quot;2026-07-26&quot;:0.59},{&quot;2026-07-27&quot;:0.59},{&quot;2026-07-28&quot;:0.59},{&quot;2026-07-29&quot;:0.62},{&quot;2026-07-30&quot;:0.58},{&quot;2026-07-31&quot;:0.58},{&quot;2026-08-01&quot;:0.58},{&quot;2026-08-02&quot;:0.57},{&quot;2026-08-03&quot;:0.57},{&quot;2026-08-04&quot;:0.57},{&quot;2026-08-05&quot;:0.57},{&quot;2026-08-07&quot;:0.56},{&quot;2026-08-08&quot;:0.56},{&quot;2026-08-09&quot;:0.54},{&quot;2026-08-10&quot;:0.54},{&quot;2026-08-11&quot;:0.52},{&quot;2026-08-12&quot;:0.51},{&quot;2026-08-13&quot;:0.49},{&quot;2026-08-14&quot;:0.48},{&quot;2026-08-15&quot;:0.46},{&quot;2026-08-16&quot;:0.45},{&quot;2026-08-17&quot;:0.46},{&quot;2026-08-18&quot;:0.46},{&quot;2026-08-19&quot;:0.47},{&quot;2026-08-20&quot;:0.49},{&quot;2026-08-21&quot;:0.49},{&quot;2026-08-22&quot;:0.49},{&quot;2026-08-23&quot;:0.51},{&quot;2026-08-24&quot;:0.53},{&quot;2026-08-25&quot;:0.52},{&quot;2026-08-26&quot;:0.52},{&quot;2026-08-27&quot;:0.52},{&quot;2026-08-28&quot;:0.53},{&quot;2026-08-29&quot;:0.53},{&quot;2026-08-30&quot;:0.54},{&quot;2026-08-31&quot;:0.53},{&quot;2026-09-01&quot;:0.55},{&quot;2026-09-02&quot;:0.55},{&quot;2026-09-03&quot;:0.56},{&quot;2026-09-04&quot;:0.56},{&quot;2026-09-05&quot;:0.56},{&quot;2026-09-06&quot;:0.56},{&quot;2026-09-07&quot;:0.56},{&quot;2026-09-08&quot;:0.57},{&quot;2026-09-09&quot;:0.59},{&quot;2026-09-10&quot;:0.59},{&quot;2026-09-11&quot;:0.6}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

        <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/5/5/552be01e-cd54-46ba-b38a-96883a48d985.jpg?1783926176" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="18036"
  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">
            Sevinne&#39;s Reclamation
        </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">
              ↑
              4%
            </span>

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

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

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

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

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
          </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="Sevinne&#39;s Reclamation" src="https://cards.scryfall.io/large/front/3/b/3b272b9a-9348-4eaa-8978-2fe549182c84.jpg?1783918507" />
    </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.55
              </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">
                $1.10
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-11&quot;:1.16},{&quot;2026-06-12&quot;:1.16},{&quot;2026-06-13&quot;:1.16},{&quot;2026-06-14&quot;:1.16},{&quot;2026-06-15&quot;:1.16},{&quot;2026-06-16&quot;:1.17},{&quot;2026-06-17&quot;:1.17},{&quot;2026-06-18&quot;:1.16},{&quot;2026-06-19&quot;:1.17},{&quot;2026-06-20&quot;:1.17},{&quot;2026-06-21&quot;:1.17},{&quot;2026-06-22&quot;:1.17},{&quot;2026-06-23&quot;:1.17},{&quot;2026-06-24&quot;:1.17},{&quot;2026-06-25&quot;:1.17},{&quot;2026-06-26&quot;:1.17},{&quot;2026-06-27&quot;:1.17},{&quot;2026-06-28&quot;:1.17},{&quot;2026-06-29&quot;:1.17},{&quot;2026-06-30&quot;:1.17},{&quot;2026-07-01&quot;:1.17},{&quot;2026-07-02&quot;:1.17},{&quot;2026-07-03&quot;:1.17},{&quot;2026-07-04&quot;:1.18},{&quot;2026-07-05&quot;:1.18},{&quot;2026-07-06&quot;:1.18},{&quot;2026-07-07&quot;:1.18},{&quot;2026-07-08&quot;:1.18},{&quot;2026-07-09&quot;:1.18},{&quot;2026-07-10&quot;:1.18},{&quot;2026-07-11&quot;:1.18},{&quot;2026-07-12&quot;:1.18},{&quot;2026-07-13&quot;:1.18},{&quot;2026-07-14&quot;:1.18},{&quot;2026-07-15&quot;:1.14},{&quot;2026-07-16&quot;:1.14},{&quot;2026-07-17&quot;:1.14},{&quot;2026-07-18&quot;:1.13},{&quot;2026-07-19&quot;:1.1},{&quot;2026-07-20&quot;:1.1},{&quot;2026-07-21&quot;:1.1},{&quot;2026-07-23&quot;:1.1},{&quot;2026-07-25&quot;:1.1},{&quot;2026-07-26&quot;:1.1},{&quot;2026-07-27&quot;:1.1},{&quot;2026-07-28&quot;:1.09},{&quot;2026-07-29&quot;:1.09},{&quot;2026-07-30&quot;:1.09},{&quot;2026-07-31&quot;:1.09},{&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.09},{&quot;2026-08-09&quot;:1.09},{&quot;2026-08-10&quot;:1.09},{&quot;2026-08-11&quot;:1.09},{&quot;2026-08-12&quot;:1.06},{&quot;2026-08-13&quot;:1.06},{&quot;2026-08-14&quot;:1.03},{&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.1},{&quot;2026-08-19&quot;:1.1},{&quot;2026-08-20&quot;:1.1},{&quot;2026-08-21&quot;:1.1},{&quot;2026-08-22&quot;:1.1},{&quot;2026-08-23&quot;:1.1},{&quot;2026-08-24&quot;:1.1},{&quot;2026-08-25&quot;:1.1},{&quot;2026-08-26&quot;:1.12},{&quot;2026-08-27&quot;:1.12},{&quot;2026-08-28&quot;:1.14},{&quot;2026-08-29&quot;:1.14},{&quot;2026-08-30&quot;:1.14},{&quot;2026-08-31&quot;:1.14},{&quot;2026-09-01&quot;:1.14},{&quot;2026-09-02&quot;:1.14},{&quot;2026-09-03&quot;:1.14},{&quot;2026-09-04&quot;:1.12},{&quot;2026-09-05&quot;:1.12},{&quot;2026-09-06&quot;:1.12},{&quot;2026-09-07&quot;:1.11},{&quot;2026-09-08&quot;:1.09},{&quot;2026-09-09&quot;:1.09},{&quot;2026-09-10&quot;:1.1},{&quot;2026-09-11&quot;:1.1}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:0.61},{&quot;2026-06-12&quot;:0.61},{&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.63},{&quot;2026-06-18&quot;:0.63},{&quot;2026-06-19&quot;:0.63},{&quot;2026-06-20&quot;:0.64},{&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.59},{&quot;2026-06-25&quot;:0.58},{&quot;2026-06-26&quot;:0.58},{&quot;2026-06-27&quot;:0.58},{&quot;2026-06-28&quot;:0.58},{&quot;2026-06-29&quot;:0.58},{&quot;2026-06-30&quot;:0.58},{&quot;2026-07-01&quot;:0.58},{&quot;2026-07-02&quot;:0.58},{&quot;2026-07-03&quot;:0.58},{&quot;2026-07-04&quot;:0.58},{&quot;2026-07-05&quot;:0.59},{&quot;2026-07-06&quot;:0.59},{&quot;2026-07-07&quot;:0.59},{&quot;2026-07-08&quot;:0.59},{&quot;2026-07-09&quot;:0.59},{&quot;2026-07-10&quot;:0.59},{&quot;2026-07-11&quot;:0.59},{&quot;2026-07-12&quot;:0.59},{&quot;2026-07-13&quot;:0.59},{&quot;2026-07-14&quot;:0.59},{&quot;2026-07-15&quot;:0.57},{&quot;2026-07-16&quot;:0.56},{&quot;2026-07-17&quot;:0.56},{&quot;2026-07-18&quot;:0.58},{&quot;2026-07-19&quot;:0.58},{&quot;2026-07-20&quot;:0.58},{&quot;2026-07-21&quot;:0.58},{&quot;2026-07-23&quot;:0.55},{&quot;2026-07-25&quot;:0.54},{&quot;2026-07-26&quot;:0.54},{&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.56},{&quot;2026-08-04&quot;:0.56},{&quot;2026-08-05&quot;:0.56},{&quot;2026-08-07&quot;:0.56},{&quot;2026-08-08&quot;:0.56},{&quot;2026-08-09&quot;:0.56},{&quot;2026-08-10&quot;:0.56},{&quot;2026-08-11&quot;:0.56},{&quot;2026-08-12&quot;:0.56},{&quot;2026-08-13&quot;:0.56},{&quot;2026-08-14&quot;:0.56},{&quot;2026-08-15&quot;:0.56},{&quot;2026-08-16&quot;:0.56},{&quot;2026-08-17&quot;:0.56},{&quot;2026-08-18&quot;:0.56},{&quot;2026-08-19&quot;:0.56},{&quot;2026-08-20&quot;:0.56},{&quot;2026-08-21&quot;:0.53},{&quot;2026-08-22&quot;:0.53},{&quot;2026-08-23&quot;:0.53},{&quot;2026-08-24&quot;:0.53},{&quot;2026-08-25&quot;:0.53},{&quot;2026-08-26&quot;:0.52},{&quot;2026-08-27&quot;:0.52},{&quot;2026-08-28&quot;:0.51},{&quot;2026-08-29&quot;:0.51},{&quot;2026-08-30&quot;:0.53},{&quot;2026-08-31&quot;:0.53},{&quot;2026-09-01&quot;:0.53},{&quot;2026-09-02&quot;:0.53},{&quot;2026-09-03&quot;:0.53},{&quot;2026-09-04&quot;:0.53},{&quot;2026-09-05&quot;:0.53},{&quot;2026-09-06&quot;:0.53},{&quot;2026-09-07&quot;:0.53},{&quot;2026-09-08&quot;:0.53},{&quot;2026-09-09&quot;:0.54},{&quot;2026-09-10&quot;:0.54},{&quot;2026-09-11&quot;:0.55}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="46512"
  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-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">
            Swamp
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.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="Swamp" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/e/1/e19e24a8-5a4f-4a2d-b8dd-eb92aac7be78.jpg?1783916920" />

        <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">
            Swamp
        </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 — Swamp</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="Swamp" src="https://cards.scryfall.io/large/front/e/1/e19e24a8-5a4f-4a2d-b8dd-eb92aac7be78.jpg?1783916920" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

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

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

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

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

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

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

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

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            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="Orzhov Signet" src="https://cards.scryfall.io/large/front/d/d/ddb325f3-3c39-410b-b7a6-1615a7c4fe54.jpg?1783922388" />
    </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.45
              </span>

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

      </div>

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

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

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

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

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

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

        <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">
            Grasp of Fate
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Grasp of Fate" src="https://cards.scryfall.io/large/front/d/9/d983b297-e341-40fa-ba9b-b9f87eb25057.jpg?1783914933" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $0.44
              </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.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;2026-06-13&quot;:0.39},{&quot;2026-06-14&quot;:0.39},{&quot;2026-06-15&quot;:0.39},{&quot;2026-06-16&quot;:0.39},{&quot;2026-06-17&quot;:0.38},{&quot;2026-06-18&quot;:0.39},{&quot;2026-06-19&quot;:0.39},{&quot;2026-06-20&quot;:0.38},{&quot;2026-06-21&quot;:0.38},{&quot;2026-06-22&quot;:0.39},{&quot;2026-06-23&quot;:0.38},{&quot;2026-06-24&quot;:0.38},{&quot;2026-06-25&quot;:0.38},{&quot;2026-06-26&quot;:0.38},{&quot;2026-06-27&quot;:0.38},{&quot;2026-06-28&quot;:0.38},{&quot;2026-06-29&quot;:0.38},{&quot;2026-06-30&quot;:0.38},{&quot;2026-07-01&quot;:0.38},{&quot;2026-07-02&quot;:0.37},{&quot;2026-07-03&quot;:0.37},{&quot;2026-07-04&quot;:0.39},{&quot;2026-07-05&quot;:0.38},{&quot;2026-07-06&quot;:0.37},{&quot;2026-07-07&quot;:0.37},{&quot;2026-07-08&quot;:0.37},{&quot;2026-07-09&quot;:0.37},{&quot;2026-07-10&quot;:0.36},{&quot;2026-07-11&quot;:0.36},{&quot;2026-07-12&quot;:0.37},{&quot;2026-07-13&quot;:0.37},{&quot;2026-07-14&quot;:0.37},{&quot;2026-07-15&quot;:0.37},{&quot;2026-07-16&quot;:0.37},{&quot;2026-07-17&quot;:0.37},{&quot;2026-07-18&quot;:0.37},{&quot;2026-07-19&quot;:0.37},{&quot;2026-07-20&quot;:0.38},{&quot;2026-07-21&quot;:0.41},{&quot;2026-07-22&quot;:0.39},{&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.4},{&quot;2026-07-30&quot;:0.4},{&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.37},{&quot;2026-08-04&quot;:0.37},{&quot;2026-08-05&quot;:0.37},{&quot;2026-08-07&quot;:0.37},{&quot;2026-08-08&quot;:0.37},{&quot;2026-08-09&quot;:0.37},{&quot;2026-08-10&quot;:0.38},{&quot;2026-08-11&quot;:0.37},{&quot;2026-08-12&quot;:0.37},{&quot;2026-08-13&quot;:0.37},{&quot;2026-08-14&quot;:0.38},{&quot;2026-08-15&quot;:0.38},{&quot;2026-08-16&quot;:0.38},{&quot;2026-08-17&quot;:0.41},{&quot;2026-08-18&quot;:0.42},{&quot;2026-08-19&quot;:0.42},{&quot;2026-08-20&quot;:0.42},{&quot;2026-08-21&quot;:0.42},{&quot;2026-08-22&quot;:0.43},{&quot;2026-08-23&quot;:0.43},{&quot;2026-08-24&quot;:0.43},{&quot;2026-08-25&quot;:0.44},{&quot;2026-08-26&quot;:0.44},{&quot;2026-08-27&quot;:0.44},{&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.43},{&quot;2026-09-01&quot;:0.44},{&quot;2026-09-02&quot;:0.43},{&quot;2026-09-03&quot;:0.43},{&quot;2026-09-04&quot;:0.43},{&quot;2026-09-05&quot;:0.43},{&quot;2026-09-06&quot;:0.43},{&quot;2026-09-07&quot;:0.43},{&quot;2026-09-08&quot;:0.42},{&quot;2026-09-09&quot;:0.42},{&quot;2026-09-10&quot;:0.42},{&quot;2026-09-11&quot;:0.44}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.38},{&quot;2026-06-14&quot;:0.35},{&quot;2026-06-15&quot;:0.33},{&quot;2026-06-16&quot;:0.33},{&quot;2026-06-17&quot;:0.33},{&quot;2026-06-18&quot;:0.31},{&quot;2026-06-19&quot;:0.32},{&quot;2026-06-20&quot;:0.31},{&quot;2026-06-21&quot;:0.32},{&quot;2026-06-22&quot;:0.35},{&quot;2026-06-23&quot;:0.34},{&quot;2026-06-24&quot;:0.36},{&quot;2026-06-25&quot;:0.38},{&quot;2026-06-26&quot;:0.39},{&quot;2026-06-27&quot;:0.38},{&quot;2026-06-28&quot;:0.37},{&quot;2026-06-29&quot;:0.37},{&quot;2026-06-30&quot;:0.34},{&quot;2026-07-01&quot;:0.4},{&quot;2026-07-02&quot;:0.42},{&quot;2026-07-03&quot;:0.41},{&quot;2026-07-04&quot;:0.36},{&quot;2026-07-05&quot;:0.39},{&quot;2026-07-06&quot;:0.38},{&quot;2026-07-07&quot;:0.37},{&quot;2026-07-08&quot;:0.38},{&quot;2026-07-09&quot;:0.37},{&quot;2026-07-10&quot;:0.36},{&quot;2026-07-11&quot;:0.36},{&quot;2026-07-12&quot;:0.35},{&quot;2026-07-13&quot;:0.35},{&quot;2026-07-14&quot;:0.36},{&quot;2026-07-15&quot;:0.37},{&quot;2026-07-16&quot;:0.37},{&quot;2026-07-17&quot;:0.38},{&quot;2026-07-18&quot;:0.38},{&quot;2026-07-19&quot;:0.41},{&quot;2026-07-20&quot;:0.4},{&quot;2026-07-21&quot;:0.38},{&quot;2026-07-22&quot;:0.38},{&quot;2026-07-23&quot;:0.36},{&quot;2026-07-24&quot;:0.35},{&quot;2026-07-25&quot;:0.35},{&quot;2026-07-26&quot;:0.36},{&quot;2026-07-27&quot;:0.35},{&quot;2026-07-28&quot;:0.36},{&quot;2026-07-29&quot;:0.47},{&quot;2026-07-30&quot;:0.48},{&quot;2026-07-31&quot;:0.51},{&quot;2026-08-01&quot;:0.51},{&quot;2026-08-02&quot;:0.42},{&quot;2026-08-03&quot;:0.41},{&quot;2026-08-04&quot;:0.39},{&quot;2026-08-05&quot;:0.38},{&quot;2026-08-07&quot;:0.4},{&quot;2026-08-08&quot;:0.39},{&quot;2026-08-09&quot;:0.41},{&quot;2026-08-10&quot;:0.41},{&quot;2026-08-11&quot;:0.41},{&quot;2026-08-12&quot;:0.43},{&quot;2026-08-13&quot;:0.45},{&quot;2026-08-14&quot;:0.41},{&quot;2026-08-15&quot;:0.4},{&quot;2026-08-16&quot;:0.34},{&quot;2026-08-17&quot;:0.36},{&quot;2026-08-18&quot;:0.37},{&quot;2026-08-19&quot;:0.38},{&quot;2026-08-20&quot;:0.37},{&quot;2026-08-21&quot;:0.37},{&quot;2026-08-22&quot;:0.37},{&quot;2026-08-23&quot;:0.37},{&quot;2026-08-24&quot;:0.37},{&quot;2026-08-25&quot;:0.38},{&quot;2026-08-26&quot;:0.37},{&quot;2026-08-27&quot;:0.37},{&quot;2026-08-28&quot;:0.36},{&quot;2026-08-29&quot;:0.36},{&quot;2026-08-30&quot;:0.38},{&quot;2026-08-31&quot;:0.4},{&quot;2026-09-01&quot;:0.41},{&quot;2026-09-02&quot;:0.4},{&quot;2026-09-03&quot;:0.39},{&quot;2026-09-04&quot;:0.42},{&quot;2026-09-05&quot;:0.42},{&quot;2026-09-06&quot;:0.43},{&quot;2026-09-07&quot;:0.45},{&quot;2026-09-08&quot;:0.45},{&quot;2026-09-09&quot;:0.44},{&quot;2026-09-10&quot;:0.44},{&quot;2026-09-11&quot;:0.44}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="14135"
  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-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">
            Ravenous Chupacabra
        </span>


      </div>

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Ravenous Chupacabra" src="https://cards.scryfall.io/large/front/e/3/e3de4804-d330-403a-9ab0-e8be78655618.jpg?1783922438" />
    </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.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.17</span>
              <span class="text-xs text-grey-text">Credit: $0.22</span>
            </div>
        </div>

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="12921"
  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-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">
            Abdel Adrian, Gorion&#39;s Ward
        </span>


      </div>

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

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

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-50 text-badge-text">
              ↑
              3%
            </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="Abdel Adrian, Gorion&#39;s Ward" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/8/4857125b-bd0f-4f09-9d6c-56544834a359.jpg?1783922648" />

        <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">
            Abdel Adrian, Gorion&#39;s Ward
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Abdel Adrian, Gorion&#39;s Ward" src="https://cards.scryfall.io/large/front/4/8/4857125b-bd0f-4f09-9d6c-56544834a359.jpg?1783922648" />
    </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.27
              </span>

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

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

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="96046"
  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-eoe 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">
            Alpharael, Stonechosen
        </span>


      </div>

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

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

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-50 text-badge-text">
              ↑
              3%
            </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="Alpharael, Stonechosen" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/3/3/33063d26-37f7-4e35-8da2-5770dfabdc41.jpg?1782685526" />

        <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">
            Alpharael, Stonechosen
        </h3>

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Alpharael, Stonechosen" src="https://cards.scryfall.io/large/front/3/3/33063d26-37f7-4e35-8da2-5770dfabdc41.jpg?1782685526" />
    </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">
                  ↑
                  3%
                </span>
            </div>
          </div>

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $0.53
              </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;2026-06-10&quot;:0.76},{&quot;2026-06-11&quot;:0.76},{&quot;2026-06-12&quot;:0.76},{&quot;2026-06-13&quot;:0.76},{&quot;2026-06-14&quot;:0.76},{&quot;2026-06-15&quot;:0.76},{&quot;2026-06-16&quot;:0.76},{&quot;2026-06-17&quot;:0.73},{&quot;2026-06-18&quot;:0.71},{&quot;2026-06-19&quot;:0.7},{&quot;2026-06-20&quot;:0.67},{&quot;2026-06-21&quot;:0.67},{&quot;2026-06-22&quot;:0.67},{&quot;2026-06-23&quot;:0.67},{&quot;2026-06-24&quot;:0.67},{&quot;2026-06-25&quot;:0.67},{&quot;2026-06-26&quot;:0.67},{&quot;2026-06-27&quot;:0.67},{&quot;2026-06-28&quot;:0.67},{&quot;2026-06-29&quot;:0.67},{&quot;2026-06-30&quot;:0.67},{&quot;2026-07-01&quot;:0.67},{&quot;2026-07-02&quot;:0.67},{&quot;2026-07-03&quot;:0.66},{&quot;2026-07-04&quot;:0.66},{&quot;2026-07-05&quot;:0.66},{&quot;2026-07-06&quot;:0.68},{&quot;2026-07-07&quot;:0.68},{&quot;2026-07-08&quot;:0.68},{&quot;2026-07-09&quot;:0.64},{&quot;2026-07-10&quot;:0.64},{&quot;2026-07-11&quot;:0.64},{&quot;2026-07-12&quot;:0.64},{&quot;2026-07-13&quot;:0.64},{&quot;2026-07-14&quot;:0.64},{&quot;2026-07-15&quot;:0.64},{&quot;2026-07-16&quot;:0.64},{&quot;2026-07-17&quot;:0.64},{&quot;2026-07-18&quot;:0.64},{&quot;2026-07-19&quot;:0.64},{&quot;2026-07-20&quot;:0.64},{&quot;2026-07-21&quot;:0.64},{&quot;2026-07-23&quot;:0.64},{&quot;2026-07-25&quot;:0.64},{&quot;2026-07-26&quot;:0.64},{&quot;2026-07-27&quot;:0.64},{&quot;2026-07-29&quot;:0.62},{&quot;2026-07-30&quot;:0.62},{&quot;2026-07-31&quot;:0.62},{&quot;2026-08-01&quot;:0.62},{&quot;2026-08-02&quot;:0.62},{&quot;2026-08-03&quot;:0.63},{&quot;2026-08-04&quot;:0.64},{&quot;2026-08-05&quot;:0.63},{&quot;2026-08-07&quot;:0.63},{&quot;2026-08-08&quot;:0.64},{&quot;2026-08-09&quot;:0.64},{&quot;2026-08-10&quot;:0.64},{&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.62},{&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.61},{&quot;2026-08-20&quot;:0.61},{&quot;2026-08-21&quot;:0.61},{&quot;2026-08-22&quot;:0.61},{&quot;2026-08-23&quot;:0.6},{&quot;2026-08-24&quot;:0.6},{&quot;2026-08-25&quot;:0.6},{&quot;2026-08-26&quot;:0.59},{&quot;2026-08-27&quot;:0.59},{&quot;2026-08-28&quot;:0.59},{&quot;2026-08-29&quot;:0.59},{&quot;2026-08-30&quot;:0.57},{&quot;2026-08-31&quot;:0.55},{&quot;2026-09-01&quot;:0.55},{&quot;2026-09-02&quot;:0.55},{&quot;2026-09-03&quot;:0.55},{&quot;2026-09-04&quot;:0.55},{&quot;2026-09-05&quot;:0.53},{&quot;2026-09-06&quot;:0.53},{&quot;2026-09-07&quot;:0.53},{&quot;2026-09-08&quot;:0.53},{&quot;2026-09-09&quot;:0.53},{&quot;2026-09-10&quot;:0.53},{&quot;2026-09-11&quot;:0.53}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:0.43},{&quot;2026-06-11&quot;:0.45},{&quot;2026-06-12&quot;:0.43},{&quot;2026-06-13&quot;:0.44},{&quot;2026-06-14&quot;:0.44},{&quot;2026-06-15&quot;:0.43},{&quot;2026-06-16&quot;:0.42},{&quot;2026-06-17&quot;:0.42},{&quot;2026-06-18&quot;:0.41},{&quot;2026-06-19&quot;:0.41},{&quot;2026-06-20&quot;:0.43},{&quot;2026-06-21&quot;:0.44},{&quot;2026-06-22&quot;:0.44},{&quot;2026-06-23&quot;:0.44},{&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.4},{&quot;2026-06-28&quot;:0.4},{&quot;2026-06-29&quot;:0.4},{&quot;2026-06-30&quot;:0.41},{&quot;2026-07-01&quot;:0.43},{&quot;2026-07-02&quot;:0.42},{&quot;2026-07-03&quot;:0.41},{&quot;2026-07-04&quot;:0.41},{&quot;2026-07-05&quot;:0.4},{&quot;2026-07-06&quot;:0.4},{&quot;2026-07-07&quot;:0.41},{&quot;2026-07-08&quot;:0.4},{&quot;2026-07-09&quot;:0.4},{&quot;2026-07-10&quot;:0.4},{&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.39},{&quot;2026-07-15&quot;:0.4},{&quot;2026-07-16&quot;:0.4},{&quot;2026-07-17&quot;:0.39},{&quot;2026-07-18&quot;:0.39},{&quot;2026-07-19&quot;:0.4},{&quot;2026-07-20&quot;:0.39},{&quot;2026-07-21&quot;:0.39},{&quot;2026-07-23&quot;:0.39},{&quot;2026-07-25&quot;:0.38},{&quot;2026-07-26&quot;:0.37},{&quot;2026-07-27&quot;:0.36},{&quot;2026-07-29&quot;:0.36},{&quot;2026-07-30&quot;:0.36},{&quot;2026-07-31&quot;:0.36},{&quot;2026-08-01&quot;:0.36},{&quot;2026-08-02&quot;:0.36},{&quot;2026-08-03&quot;:0.36},{&quot;2026-08-04&quot;:0.35},{&quot;2026-08-05&quot;:0.36},{&quot;2026-08-07&quot;:0.36},{&quot;2026-08-08&quot;:0.36},{&quot;2026-08-09&quot;:0.36},{&quot;2026-08-10&quot;:0.36},{&quot;2026-08-11&quot;:0.36},{&quot;2026-08-12&quot;:0.36},{&quot;2026-08-13&quot;:0.36},{&quot;2026-08-14&quot;:0.38},{&quot;2026-08-15&quot;:0.37},{&quot;2026-08-16&quot;:0.38},{&quot;2026-08-17&quot;:0.38},{&quot;2026-08-18&quot;:0.38},{&quot;2026-08-19&quot;:0.37},{&quot;2026-08-20&quot;:0.37},{&quot;2026-08-21&quot;:0.38},{&quot;2026-08-22&quot;:0.38},{&quot;2026-08-23&quot;:0.39},{&quot;2026-08-24&quot;:0.38},{&quot;2026-08-25&quot;:0.38},{&quot;2026-08-26&quot;:0.39},{&quot;2026-08-27&quot;:0.34},{&quot;2026-08-28&quot;:0.36},{&quot;2026-08-29&quot;:0.36},{&quot;2026-08-30&quot;:0.35},{&quot;2026-08-31&quot;:0.35},{&quot;2026-09-01&quot;:0.35},{&quot;2026-09-02&quot;:0.36},{&quot;2026-09-03&quot;:0.35},{&quot;2026-09-04&quot;:0.35},{&quot;2026-09-05&quot;:0.36},{&quot;2026-09-06&quot;:0.36},{&quot;2026-09-07&quot;:0.38},{&quot;2026-09-08&quot;:0.38},{&quot;2026-09-09&quot;:0.38},{&quot;2026-09-10&quot;:0.37},{&quot;2026-09-11&quot;:0.37}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-50 text-badge-text">
              ↑
              12%
            </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="Command Tower" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/5/85eb4b03-305b-45a4-82e5-5fcd586cc744.jpg?1782685677" />

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Command Tower" src="https://cards.scryfall.io/large/front/8/5/85eb4b03-305b-45a4-82e5-5fcd586cc744.jpg?1782685677" />
    </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">
                  ↑
                  12%
                </span>
            </div>
          </div>

      </div>

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

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

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


      </div>

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

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

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

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

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

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

        <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">
            Fiend Hunter
        </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 Cleric</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Fiend Hunter" src="https://cards.scryfall.io/large/front/f/6/f606cf4d-e29b-415a-956c-b148045c44e9.jpg?1783908182" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

          <div 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>

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

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

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

    <!-- Quick Actions -->

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


    <div
      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 53 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=12&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next">2</a><a href="/load_collection?collection_id=12&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=12&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=12&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=12&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=12&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=12&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=12&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=12&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=12&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=12&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="74985"
          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">
              451
            </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-mythic ss-fw ss-2x mr-4"></i>
              The One Ring


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-4'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $115.42

                    <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">
                $85.00
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                2.55
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="74985"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_74985" src="/boxset_card/74985?collection_id=12&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="18279"
          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">
              108
            </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>
              Vampiric Tutor


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $61.56

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $28.00
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.60
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="18279"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_18279" src="/boxset_card/18279?collection_id=12&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="49469"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              248
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mh2 ss-rare ss-fw ss-2x mr-4"></i>
              Marsh Flats


            </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">
                  $30.69

                    <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">
                $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">
                0.33
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="49469"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_49469" src="/boxset_card/49469?collection_id=12&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="80754"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              248
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-uma ss-rare ss-fw ss-2x mr-4"></i>
              Phyrexian Tower


            </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">
                  $28.92

                </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">
                0.41
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="80754"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_80754" src="/boxset_card/80754?collection_id=12&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="15936"
          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">
              103
            </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-mythic ss-fw ss-2x mr-4"></i>
              Grim Tutor


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $24.58

                    <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">
                $16.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.91
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="15936"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_15936" src="/boxset_card/15936?collection_id=12&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="52989"
          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">
              106
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb2 ss-uncommon ss-fw ss-2x mr-4"></i>
              Cabal Coffers


            </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">
                  $20.74

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $15.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.06
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="52989"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_52989" src="/boxset_card/52989?collection_id=12&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="49506"
          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">
              110
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mh3 ss-rare ss-fw ss-2x mr-4"></i>
              Warren Soultrader


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Zombie Goblin 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-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $18.29

                    <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">
                $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.77
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="49506"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_49506" src="/boxset_card/49506?collection_id=12&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="21258"
          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">
              395
            </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-rare ss-fw ss-2x mr-4"></i>
              Panharmonicon


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-4'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $12.40

                    <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">
                $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.82
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="21258"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_21258" src="/boxset_card/21258?collection_id=12&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="73685"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              15
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-ltr ss-rare ss-fw ss-2x mr-4"></i>
              Flowering of the White Tree


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary 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-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $12.24

                    <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">
                $7.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.42
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="73685"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_73685" src="/boxset_card/73685?collection_id=12&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="95213"
          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-fin ss-rare ss-fw ss-2x mr-4"></i>
              Starting Town


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land — Town
            </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">
                  $10.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">
                $9.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.17
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="95213"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_95213" src="/boxset_card/95213?collection_id=12&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="95831"
          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">
              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-eoe ss-rare ss-fw ss-2x mr-4"></i>
              Godless Shrine


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land — Plains Swamp
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $8.87

                    <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">
                $7.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.13
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="95831"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_95831" src="/boxset_card/95831?collection_id=12&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="77628"
          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">
              75
            </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>
              Ayara, First of Locthwain


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Elf 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-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $8.77

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      14%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $6.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.41
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="77628"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_77628" src="/boxset_card/77628?collection_id=12&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="19288"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              378
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-dmu ss-rare ss-fw ss-2x mr-4"></i>
              Caves of Koilos


            </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">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $7.38

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $3.60
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.12
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="19288"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_19288" src="/boxset_card/19288?collection_id=12&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="77894"
          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">
              EMA-78
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Animate Dead


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Enchantment — Aura
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $6.54

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $4.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.55
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="77894"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_77894" src="/boxset_card/77894?collection_id=12&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="87020"
          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">
              A25-82
            </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-common ss-fw ss-2x mr-4"></i>
              Dark Ritual


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $5.49

                    <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">
                $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.67
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="87020"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_87020" src="/boxset_card/87020?collection_id=12&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="94749"
          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">
              96
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fin ss-rare ss-fw ss-2x mr-4"></i>
              The Darkness Crystal


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $5.31

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      23%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $3.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.66
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="94749"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_94749" src="/boxset_card/94749?collection_id=12&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="10620"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              268
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c19 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">
                  $4.30

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $2.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.20
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="10620"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_10620" src="/boxset_card/10620?collection_id=12&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="91250"
          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">
              441
            </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-rare ss-fw ss-2x mr-4"></i>
              Conjurer&#39;s Closet


            </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">
                  $3.46

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $2.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.43
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="91250"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_91250" src="/boxset_card/91250?collection_id=12&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="96029"
          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">
              19
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-eoe ss-rare ss-fw ss-2x mr-4"></i>
              Haliya, Guided by Light


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Human Soldier
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.17

                    <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">
                $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.24
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="96029"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_96029" src="/boxset_card/96029?collection_id=12&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="96312"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              317
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-eoe ss-rare ss-fw ss-2x mr-4"></i>
              Anticausal Vestige


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Eldrazi
            </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>
              </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.79

                    <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.90
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.42
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="96312"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_96312" src="/boxset_card/96312?collection_id=12&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="49012"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              87
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mh2 ss-mythic ss-fw ss-2x mr-4"></i>
              Grief


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Elemental Incarnation
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.78

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      10%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $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">
                1.01
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="49012"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_49012" src="/boxset_card/49012?collection_id=12&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="20910"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              321
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2xm ss-rare ss-fw ss-2x mr-4"></i>
              High Market


            </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">
                  $2.71

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      7%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.17
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.14
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="20910"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_20910" src="/boxset_card/20910?collection_id=12&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="77645"
          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">
              81
            </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-uncommon ss-fw ss-2x mr-4"></i>
              Cauldron Familiar


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Cat
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.55

                    <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.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.47
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="77645"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_77645" src="/boxset_card/77645?collection_id=12&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="95837"
          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">
              264
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-eoe ss-common ss-fw ss-2x mr-4"></i>
              Swamp


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Basic Land — Swamp
            </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.17

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      33%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.22

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      18%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.60
            </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="95837"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_95837" src="/boxset_card/95837?collection_id=12&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="48994"
          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">
              80
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mh2 ss-rare ss-fw ss-2x mr-4"></i>
              Damn


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.92

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.80
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.36
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="48994"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_48994" src="/boxset_card/48994?collection_id=12&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="21300"
          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">
              409
            </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>
              Orzhov Basilica


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.84

                    <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.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.12
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="21300"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_21300" src="/boxset_card/21300?collection_id=12&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12793"
          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">
              472
            </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>
              Sol Ring


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.74

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.60
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.46
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="12793"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12793" src="/boxset_card/12793?collection_id=12&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="21092"
          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">
              339
            </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>
              Flickerwisp


            </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-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.66

                    <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.60
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.26
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="21092"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_21092" src="/boxset_card/21092?collection_id=12&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="91104"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              299
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-inr ss-rare ss-fw ss-2x mr-4"></i>
              Restoration Angel


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Angel
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.56

                    <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">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.25
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="91104"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_91104" src="/boxset_card/91104?collection_id=12&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="96156"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              60
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-eoc ss-rare ss-fw ss-2x mr-4"></i>
              Fabled Passage


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.41

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      7%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.80
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.10
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="96156"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_96156" src="/boxset_card/96156?collection_id=12&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="19038"
          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">
              297
            </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>
              Elas il-Kor, Sadistic Pilgrim


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Phyrexian Kor Cleric
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.12

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      13%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.63
            </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="19038"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_19038" src="/boxset_card/19038?collection_id=12&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="95835"
          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">
              262
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-eoe ss-common ss-fw ss-2x mr-4"></i>
              Plains


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Basic Land — Plains
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.01

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      15%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.07

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      8%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.80
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.50
            </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="95835"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_95835" src="/boxset_card/95835?collection_id=12&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="49510"
          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-mh2 ss-rare ss-fw ss-2x mr-4"></i>
              Karmic Guide

                <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 — Angel Spirit
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.89

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.35
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="49510"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_49510" src="/boxset_card/49510?collection_id=12&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="46516"
          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">
              287
            </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-common ss-fw ss-2x mr-4"></i>
              Swamp


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Basic Land — Swamp
            </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.86

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.38
            </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="46516"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_46516" src="/boxset_card/46516?collection_id=12&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="77393"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              8
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-eld ss-rare ss-fw ss-2x mr-4"></i>
              Charming Prince


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Human 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-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.83

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      6%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.12
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.19
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="77393"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_77393" src="/boxset_card/77393?collection_id=12&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="18727"
          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">
              249
            </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>
              Isolated Chapel


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.81

                </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.17
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="18727"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_18727" src="/boxset_card/18727?collection_id=12&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="14465"
          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">
              878
            </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-uncommon ss-fw ss-2x mr-4"></i>
              Talisman of Hierarchy


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.78

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.27
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="14465"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_14465" src="/boxset_card/14465?collection_id=12&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="20154"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              26
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2x2 ss-rare ss-fw ss-2x mr-4"></i>
              Reveillark


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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.75

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.24
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.28
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="20154"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_20154" src="/boxset_card/20154?collection_id=12&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="96750"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              333
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-eoe ss-rare ss-fw ss-2x mr-4"></i>
              Requiem Monolith


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.68

                    <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.38
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.14
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="96750"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_96750" src="/boxset_card/96750?collection_id=12&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="96718"
          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-eoe ss-rare ss-fw ss-2x mr-4"></i>
              Syr Vondam, Sunstar Exemplar


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Human Knight
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.60

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      7%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.15
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.19
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="96718"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_96718" src="/boxset_card/96718?collection_id=12&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="28896"
          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">
              197
            </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-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.58

                    <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.38
            </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="28896"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_28896" src="/boxset_card/28896?collection_id=12&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="18036"
          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">
              27
            </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>
              Sevinne&#39;s Reclamation


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.55

                    <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.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.28
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="18036"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_18036" src="/boxset_card/18036?collection_id=12&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="46512"
          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">
              286
            </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-common ss-fw ss-2x mr-4"></i>
              Swamp


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Basic Land — Swamp
            </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.50

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      11%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.26
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.33
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="46512"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_46512" src="/boxset_card/46512?collection_id=12&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="14432"
          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">
              867
            </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-common ss-fw ss-2x mr-4"></i>
              Orzhov Signet


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.45

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      13%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.12
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="14432"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_14432" src="/boxset_card/14432?collection_id=12&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="87384"
          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">
              3
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-wot ss-uncommon ss-fw ss-2x mr-4"></i>
              Grasp of Fate


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Enchantment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.44

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      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.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.30
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="87384"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_87384" src="/boxset_card/87384?collection_id=12&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="14135"
          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">
              770
            </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-uncommon ss-fw ss-2x mr-4"></i>
              Ravenous Chupacabra


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Beast 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-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.40

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.17
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.27
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="14135"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_14135" src="/boxset_card/14135?collection_id=12&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12921"
          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">
              375
            </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-uncommon ss-fw ss-2x mr-4"></i>
              Abdel Adrian, Gorion&#39;s Ward


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Human Warrior
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-4'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </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">
                      ↑
                      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.20
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.26
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="12921"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12921" src="/boxset_card/12921?collection_id=12&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="96046"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              87
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-eoe ss-mythic ss-fw ss-2x mr-4"></i>
              Alpharael, Stonechosen


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Human Cleric
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.37

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.55
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="96046"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_96046" src="/boxset_card/96046?collection_id=12&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="96154"
          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">
              59
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-eoc ss-common ss-fw ss-2x mr-4"></i>
              Command Tower


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.37

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      12%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.38
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="96154"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_96154" src="/boxset_card/96154?collection_id=12&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="90783"
          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">
              22
            </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-uncommon ss-fw ss-2x mr-4"></i>
              Fiend Hunter


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Human Cleric
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.32

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.03
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.20
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="90783"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_90783" src="/boxset_card/90783?collection_id=12&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 53 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=12&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next">2</a><a href="/load_collection?collection_id=12&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next" aria-label="Next">&gt;</a></nav>
    </div>
</div>

</template></turbo-stream>