<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="218" 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="21004"
  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">
            Phyrexian Altar
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $58.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="Phyrexian Altar" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/5/95d9f93c-50a8-41a9-be98-d1900bf1c12f.jpg?1783921789" />

        <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 Altar
        </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-3'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Phyrexian Altar" src="https://cards.scryfall.io/large/front/9/5/95d9f93c-50a8-41a9-be98-d1900bf1c12f.jpg?1783921789" />
    </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">
                $58.83
              </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">
                $59.67
              </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">$42.00</span>
              <span class="text-xs text-grey-text">Credit: $54.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;:54.04},{&quot;2026-06-14&quot;:54.49},{&quot;2026-06-15&quot;:54.81},{&quot;2026-06-16&quot;:54.81},{&quot;2026-06-17&quot;:54.81},{&quot;2026-06-18&quot;:54.81},{&quot;2026-06-19&quot;:54.93},{&quot;2026-06-20&quot;:54.93},{&quot;2026-06-21&quot;:54.93},{&quot;2026-06-22&quot;:54.93},{&quot;2026-06-23&quot;:54.93},{&quot;2026-06-24&quot;:55.26},{&quot;2026-06-25&quot;:55.26},{&quot;2026-06-26&quot;:55.51},{&quot;2026-06-27&quot;:55.51},{&quot;2026-06-28&quot;:55.51},{&quot;2026-06-29&quot;:55.51},{&quot;2026-06-30&quot;:55.51},{&quot;2026-07-01&quot;:55.74},{&quot;2026-07-02&quot;:55.74},{&quot;2026-07-03&quot;:55.74},{&quot;2026-07-04&quot;:55.74},{&quot;2026-07-05&quot;:55.74},{&quot;2026-07-06&quot;:55.74},{&quot;2026-07-07&quot;:55.74},{&quot;2026-07-08&quot;:55.96},{&quot;2026-07-09&quot;:55.96},{&quot;2026-07-10&quot;:55.96},{&quot;2026-07-11&quot;:55.65},{&quot;2026-07-12&quot;:55.65},{&quot;2026-07-13&quot;:55.65},{&quot;2026-07-14&quot;:55.65},{&quot;2026-07-15&quot;:55.65},{&quot;2026-07-16&quot;:55.65},{&quot;2026-07-17&quot;:55.57},{&quot;2026-07-18&quot;:55.57},{&quot;2026-07-19&quot;:55.57},{&quot;2026-07-20&quot;:55.57},{&quot;2026-07-21&quot;:55.57},{&quot;2026-07-22&quot;:55.41},{&quot;2026-07-23&quot;:55.41},{&quot;2026-07-24&quot;:55.41},{&quot;2026-07-25&quot;:56.02},{&quot;2026-07-26&quot;:56.02},{&quot;2026-07-27&quot;:56.02},{&quot;2026-07-28&quot;:56.02},{&quot;2026-07-29&quot;:56.02},{&quot;2026-07-30&quot;:56.1},{&quot;2026-07-31&quot;:56.1},{&quot;2026-08-01&quot;:56.1},{&quot;2026-08-02&quot;:57.4},{&quot;2026-08-03&quot;:57.89},{&quot;2026-08-04&quot;:57.89},{&quot;2026-08-05&quot;:57.89},{&quot;2026-08-07&quot;:59.27},{&quot;2026-08-08&quot;:59.27},{&quot;2026-08-09&quot;:59.27},{&quot;2026-08-10&quot;:59.36},{&quot;2026-08-11&quot;:59.36},{&quot;2026-08-12&quot;:59.53},{&quot;2026-08-13&quot;:59.52},{&quot;2026-08-14&quot;:59.52},{&quot;2026-08-15&quot;:59.52},{&quot;2026-08-16&quot;:59.51},{&quot;2026-08-17&quot;:59.51},{&quot;2026-08-18&quot;:59.32},{&quot;2026-08-19&quot;:59.32},{&quot;2026-08-20&quot;:59.32},{&quot;2026-08-21&quot;:59.32},{&quot;2026-08-22&quot;:59.32},{&quot;2026-08-23&quot;:59.32},{&quot;2026-08-24&quot;:59.32},{&quot;2026-08-25&quot;:59.28},{&quot;2026-08-26&quot;:59.28},{&quot;2026-08-27&quot;:59.28},{&quot;2026-08-28&quot;:59.28},{&quot;2026-08-29&quot;:59.28},{&quot;2026-08-30&quot;:59.21},{&quot;2026-08-31&quot;:59.39},{&quot;2026-09-01&quot;:59.39},{&quot;2026-09-02&quot;:59.61},{&quot;2026-09-03&quot;:59.61},{&quot;2026-09-04&quot;:59.61},{&quot;2026-09-05&quot;:59.67},{&quot;2026-09-06&quot;:59.67},{&quot;2026-09-07&quot;:59.67},{&quot;2026-09-08&quot;:59.67},{&quot;2026-09-09&quot;:59.67},{&quot;2026-09-10&quot;:59.67},{&quot;2026-09-11&quot;:59.67}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:55.26},{&quot;2026-06-14&quot;:55.58},{&quot;2026-06-15&quot;:55.53},{&quot;2026-06-16&quot;:55.51},{&quot;2026-06-17&quot;:55.38},{&quot;2026-06-18&quot;:56.16},{&quot;2026-06-19&quot;:55.81},{&quot;2026-06-20&quot;:55.89},{&quot;2026-06-21&quot;:56.28},{&quot;2026-06-22&quot;:56.27},{&quot;2026-06-23&quot;:56.03},{&quot;2026-06-24&quot;:56.72},{&quot;2026-06-25&quot;:57.02},{&quot;2026-06-26&quot;:57.47},{&quot;2026-06-27&quot;:57.24},{&quot;2026-06-28&quot;:57.21},{&quot;2026-06-29&quot;:57.21},{&quot;2026-06-30&quot;:57.38},{&quot;2026-07-01&quot;:57.11},{&quot;2026-07-02&quot;:56.71},{&quot;2026-07-03&quot;:56.79},{&quot;2026-07-04&quot;:56.79},{&quot;2026-07-05&quot;:56.75},{&quot;2026-07-06&quot;:56.75},{&quot;2026-07-07&quot;:56.91},{&quot;2026-07-08&quot;:56.91},{&quot;2026-07-09&quot;:56.91},{&quot;2026-07-10&quot;:56.91},{&quot;2026-07-11&quot;:56.83},{&quot;2026-07-12&quot;:56.83},{&quot;2026-07-13&quot;:56.86},{&quot;2026-07-14&quot;:57.5},{&quot;2026-07-15&quot;:57.09},{&quot;2026-07-16&quot;:57.09},{&quot;2026-07-17&quot;:57.33},{&quot;2026-07-18&quot;:57.17},{&quot;2026-07-19&quot;:57.05},{&quot;2026-07-20&quot;:56.92},{&quot;2026-07-21&quot;:56.88},{&quot;2026-07-22&quot;:56.74},{&quot;2026-07-23&quot;:56.98},{&quot;2026-07-24&quot;:56.98},{&quot;2026-07-25&quot;:56.98},{&quot;2026-07-26&quot;:56.67},{&quot;2026-07-27&quot;:57.03},{&quot;2026-07-28&quot;:56.51},{&quot;2026-07-29&quot;:56.51},{&quot;2026-07-30&quot;:56.5},{&quot;2026-07-31&quot;:56.35},{&quot;2026-08-01&quot;:56.2},{&quot;2026-08-02&quot;:56.24},{&quot;2026-08-03&quot;:56.24},{&quot;2026-08-04&quot;:56.24},{&quot;2026-08-05&quot;:56.2},{&quot;2026-08-07&quot;:56.59},{&quot;2026-08-08&quot;:56.07},{&quot;2026-08-09&quot;:55.67},{&quot;2026-08-10&quot;:55.78},{&quot;2026-08-11&quot;:55.68},{&quot;2026-08-12&quot;:55.39},{&quot;2026-08-13&quot;:55.75},{&quot;2026-08-14&quot;:55.71},{&quot;2026-08-15&quot;:55.22},{&quot;2026-08-16&quot;:55.48},{&quot;2026-08-17&quot;:55.54},{&quot;2026-08-18&quot;:55.77},{&quot;2026-08-19&quot;:55.68},{&quot;2026-08-20&quot;:56.16},{&quot;2026-08-21&quot;:56.15},{&quot;2026-08-22&quot;:56.03},{&quot;2026-08-23&quot;:55.54},{&quot;2026-08-24&quot;:55.81},{&quot;2026-08-25&quot;:56.15},{&quot;2026-08-26&quot;:56.15},{&quot;2026-08-27&quot;:55.99},{&quot;2026-08-28&quot;:55.86},{&quot;2026-08-29&quot;:55.86},{&quot;2026-08-30&quot;:56.1},{&quot;2026-08-31&quot;:56.31},{&quot;2026-09-01&quot;:56.33},{&quot;2026-09-02&quot;:56.33},{&quot;2026-09-03&quot;:56.76},{&quot;2026-09-04&quot;:56.76},{&quot;2026-09-05&quot;:56.88},{&quot;2026-09-06&quot;:56.68},{&quot;2026-09-07&quot;:56.96},{&quot;2026-09-08&quot;:57.61},{&quot;2026-09-09&quot;:57.61},{&quot;2026-09-10&quot;:58.83},{&quot;2026-09-11&quot;:58.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="79538"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tsr ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $57.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="Urborg, Tomb of Yawgmoth" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/e/9e1a9e38-6ffc-490f-b0be-23ba4e8204c6.jpg?1783927747" />

        <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">
            Urborg, Tomb of Yawgmoth
        </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="Urborg, Tomb of Yawgmoth" src="https://cards.scryfall.io/large/front/9/e/9e1a9e38-6ffc-490f-b0be-23ba4e8204c6.jpg?1783927747" />
    </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">
                $57.37
              </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">
                $74.08
              </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">$42.00</span>
              <span class="text-xs text-grey-text">Credit: $54.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;:64.73},{&quot;2026-06-14&quot;:64.73},{&quot;2026-06-15&quot;:66.17},{&quot;2026-06-16&quot;:66.17},{&quot;2026-06-17&quot;:66.17},{&quot;2026-06-18&quot;:66.17},{&quot;2026-06-19&quot;:66.17},{&quot;2026-06-20&quot;:66.17},{&quot;2026-06-21&quot;:66.17},{&quot;2026-06-22&quot;:66.17},{&quot;2026-06-23&quot;:66.17},{&quot;2026-06-24&quot;:66.17},{&quot;2026-06-25&quot;:66.17},{&quot;2026-06-26&quot;:66.17},{&quot;2026-06-27&quot;:66.17},{&quot;2026-06-28&quot;:66.17},{&quot;2026-06-29&quot;:66.17},{&quot;2026-06-30&quot;:66.17},{&quot;2026-07-01&quot;:66.17},{&quot;2026-07-02&quot;:66.17},{&quot;2026-07-03&quot;:66.17},{&quot;2026-07-04&quot;:66.47},{&quot;2026-07-05&quot;:66.47},{&quot;2026-07-06&quot;:68.55},{&quot;2026-07-07&quot;:68.55},{&quot;2026-07-08&quot;:68.55},{&quot;2026-07-09&quot;:68.55},{&quot;2026-07-10&quot;:68.96},{&quot;2026-07-11&quot;:68.96},{&quot;2026-07-12&quot;:68.96},{&quot;2026-07-13&quot;:68.96},{&quot;2026-07-14&quot;:68.96},{&quot;2026-07-15&quot;:69.32},{&quot;2026-07-16&quot;:69.32},{&quot;2026-07-17&quot;:69.32},{&quot;2026-07-18&quot;:70.66},{&quot;2026-07-19&quot;:70.66},{&quot;2026-07-20&quot;:71.14},{&quot;2026-07-21&quot;:71.14},{&quot;2026-07-22&quot;:71.14},{&quot;2026-07-23&quot;:71.78},{&quot;2026-07-24&quot;:72.26},{&quot;2026-07-25&quot;:72.26},{&quot;2026-07-26&quot;:72.26},{&quot;2026-07-27&quot;:72.26},{&quot;2026-07-28&quot;:72.26},{&quot;2026-07-29&quot;:72.26},{&quot;2026-07-30&quot;:72.26},{&quot;2026-07-31&quot;:72.79},{&quot;2026-08-01&quot;:72.79},{&quot;2026-08-02&quot;:72.79},{&quot;2026-08-03&quot;:72.79},{&quot;2026-08-04&quot;:72.79},{&quot;2026-08-05&quot;:72.79},{&quot;2026-08-07&quot;:72.79},{&quot;2026-08-08&quot;:72.79},{&quot;2026-08-09&quot;:72.79},{&quot;2026-08-10&quot;:72.9},{&quot;2026-08-11&quot;:72.9},{&quot;2026-08-12&quot;:72.9},{&quot;2026-08-13&quot;:73.74},{&quot;2026-08-14&quot;:74.27},{&quot;2026-08-15&quot;:74.27},{&quot;2026-08-16&quot;:74.27},{&quot;2026-08-17&quot;:74.27},{&quot;2026-08-18&quot;:74.27},{&quot;2026-08-19&quot;:74.27},{&quot;2026-08-20&quot;:74.27},{&quot;2026-08-21&quot;:74.27},{&quot;2026-08-22&quot;:74.27},{&quot;2026-08-23&quot;:74.27},{&quot;2026-08-24&quot;:74.27},{&quot;2026-08-25&quot;:74.87},{&quot;2026-08-26&quot;:74.87},{&quot;2026-08-27&quot;:74.0},{&quot;2026-08-28&quot;:74.0},{&quot;2026-08-29&quot;:74.0},{&quot;2026-08-30&quot;:74.0},{&quot;2026-08-31&quot;:74.0},{&quot;2026-09-01&quot;:74.0},{&quot;2026-09-02&quot;:74.0},{&quot;2026-09-03&quot;:74.0},{&quot;2026-09-04&quot;:74.0},{&quot;2026-09-05&quot;:74.08},{&quot;2026-09-06&quot;:74.08},{&quot;2026-09-07&quot;:74.08},{&quot;2026-09-08&quot;:74.08},{&quot;2026-09-09&quot;:74.08},{&quot;2026-09-10&quot;:74.08},{&quot;2026-09-11&quot;:74.08}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:62.93},{&quot;2026-06-14&quot;:62.93},{&quot;2026-06-15&quot;:63.55},{&quot;2026-06-16&quot;:64.75},{&quot;2026-06-17&quot;:64.23},{&quot;2026-06-18&quot;:64.19},{&quot;2026-06-19&quot;:63.77},{&quot;2026-06-20&quot;:64.27},{&quot;2026-06-21&quot;:63.58},{&quot;2026-06-22&quot;:64.34},{&quot;2026-06-23&quot;:63.99},{&quot;2026-06-24&quot;:64.27},{&quot;2026-06-25&quot;:64.43},{&quot;2026-06-26&quot;:64.0},{&quot;2026-06-27&quot;:62.91},{&quot;2026-06-28&quot;:63.74},{&quot;2026-06-29&quot;:63.19},{&quot;2026-06-30&quot;:63.9},{&quot;2026-07-01&quot;:64.08},{&quot;2026-07-02&quot;:64.16},{&quot;2026-07-03&quot;:63.64},{&quot;2026-07-04&quot;:63.49},{&quot;2026-07-05&quot;:63.33},{&quot;2026-07-06&quot;:63.33},{&quot;2026-07-07&quot;:63.84},{&quot;2026-07-08&quot;:63.85},{&quot;2026-07-09&quot;:63.85},{&quot;2026-07-10&quot;:63.85},{&quot;2026-07-11&quot;:63.9},{&quot;2026-07-12&quot;:63.98},{&quot;2026-07-13&quot;:63.58},{&quot;2026-07-14&quot;:62.99},{&quot;2026-07-15&quot;:63.06},{&quot;2026-07-16&quot;:62.78},{&quot;2026-07-17&quot;:62.29},{&quot;2026-07-18&quot;:62.3},{&quot;2026-07-19&quot;:62.3},{&quot;2026-07-20&quot;:62.3},{&quot;2026-07-21&quot;:61.55},{&quot;2026-07-22&quot;:61.55},{&quot;2026-07-23&quot;:62.32},{&quot;2026-07-24&quot;:61.46},{&quot;2026-07-25&quot;:61.67},{&quot;2026-07-26&quot;:61.67},{&quot;2026-07-27&quot;:61.75},{&quot;2026-07-28&quot;:62.29},{&quot;2026-07-29&quot;:62.74},{&quot;2026-07-30&quot;:63.16},{&quot;2026-07-31&quot;:63.19},{&quot;2026-08-01&quot;:63.19},{&quot;2026-08-02&quot;:63.19},{&quot;2026-08-03&quot;:63.06},{&quot;2026-08-04&quot;:62.65},{&quot;2026-08-05&quot;:63.27},{&quot;2026-08-07&quot;:63.36},{&quot;2026-08-08&quot;:63.36},{&quot;2026-08-09&quot;:62.68},{&quot;2026-08-10&quot;:62.65},{&quot;2026-08-11&quot;:62.98},{&quot;2026-08-12&quot;:62.07},{&quot;2026-08-13&quot;:61.88},{&quot;2026-08-14&quot;:62.16},{&quot;2026-08-15&quot;:61.88},{&quot;2026-08-16&quot;:61.23},{&quot;2026-08-17&quot;:61.76},{&quot;2026-08-18&quot;:61.4},{&quot;2026-08-19&quot;:59.24},{&quot;2026-08-20&quot;:59.24},{&quot;2026-08-21&quot;:58.41},{&quot;2026-08-22&quot;:56.62},{&quot;2026-08-23&quot;:54.84},{&quot;2026-08-24&quot;:54.31},{&quot;2026-08-25&quot;:54.6},{&quot;2026-08-26&quot;:54.44},{&quot;2026-08-27&quot;:54.1},{&quot;2026-08-28&quot;:55.13},{&quot;2026-08-29&quot;:55.13},{&quot;2026-08-30&quot;:55.92},{&quot;2026-08-31&quot;:56.18},{&quot;2026-09-01&quot;:55.87},{&quot;2026-09-02&quot;:55.92},{&quot;2026-09-03&quot;:55.92},{&quot;2026-09-04&quot;:55.78},{&quot;2026-09-05&quot;:56.16},{&quot;2026-09-06&quot;:56.44},{&quot;2026-09-07&quot;:55.92},{&quot;2026-09-08&quot;:56.72},{&quot;2026-09-09&quot;:57.38},{&quot;2026-09-10&quot;:57.38},{&quot;2026-09-11&quot;:57.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="21034"
  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-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">
            Cavern of Souls
        </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">
              ↑
              1%
            </span>

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

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

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

        <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">
            Cavern of Souls
        </h3>

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Cavern of Souls" src="https://cards.scryfall.io/large/front/e/6/e697ea72-e10e-4fed-be8f-8c6455cc3fc8.jpg?1783921785" />
    </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">
                $50.85
              </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">
                $54.61
              </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">$38.00</span>
              <span class="text-xs text-grey-text">Credit: $49.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-13&quot;:51.56},{&quot;2026-06-14&quot;:51.56},{&quot;2026-06-15&quot;:51.56},{&quot;2026-06-16&quot;:51.56},{&quot;2026-06-17&quot;:51.56},{&quot;2026-06-18&quot;:51.56},{&quot;2026-06-19&quot;:51.56},{&quot;2026-06-20&quot;:51.56},{&quot;2026-06-21&quot;:52.34},{&quot;2026-06-22&quot;:52.34},{&quot;2026-06-23&quot;:52.34},{&quot;2026-06-24&quot;:52.34},{&quot;2026-06-25&quot;:52.34},{&quot;2026-06-26&quot;:52.34},{&quot;2026-06-27&quot;:52.34},{&quot;2026-06-28&quot;:52.34},{&quot;2026-06-29&quot;:52.34},{&quot;2026-06-30&quot;:52.34},{&quot;2026-07-01&quot;:52.34},{&quot;2026-07-02&quot;:52.34},{&quot;2026-07-03&quot;:52.34},{&quot;2026-07-04&quot;:52.34},{&quot;2026-07-05&quot;:52.34},{&quot;2026-07-06&quot;:52.34},{&quot;2026-07-07&quot;:52.34},{&quot;2026-07-08&quot;:52.34},{&quot;2026-07-09&quot;:52.76},{&quot;2026-07-10&quot;:53.06},{&quot;2026-07-11&quot;:53.06},{&quot;2026-07-12&quot;:53.06},{&quot;2026-07-13&quot;:53.06},{&quot;2026-07-14&quot;:53.78},{&quot;2026-07-15&quot;:53.78},{&quot;2026-07-16&quot;:53.78},{&quot;2026-07-17&quot;:53.78},{&quot;2026-07-18&quot;:53.78},{&quot;2026-07-19&quot;:53.78},{&quot;2026-07-20&quot;:53.78},{&quot;2026-07-21&quot;:53.78},{&quot;2026-07-22&quot;:53.78},{&quot;2026-07-23&quot;:53.78},{&quot;2026-07-24&quot;:53.78},{&quot;2026-07-25&quot;:54.17},{&quot;2026-07-26&quot;:54.17},{&quot;2026-07-27&quot;:54.17},{&quot;2026-07-28&quot;:54.17},{&quot;2026-07-29&quot;:54.17},{&quot;2026-07-30&quot;:54.69},{&quot;2026-07-31&quot;:54.69},{&quot;2026-08-01&quot;:54.69},{&quot;2026-08-02&quot;:54.69},{&quot;2026-08-03&quot;:54.69},{&quot;2026-08-04&quot;:54.69},{&quot;2026-08-05&quot;:54.68},{&quot;2026-08-07&quot;:54.68},{&quot;2026-08-08&quot;:54.68},{&quot;2026-08-09&quot;:54.68},{&quot;2026-08-10&quot;:54.68},{&quot;2026-08-11&quot;:54.68},{&quot;2026-08-12&quot;:54.68},{&quot;2026-08-13&quot;:54.68},{&quot;2026-08-14&quot;:54.68},{&quot;2026-08-15&quot;:54.68},{&quot;2026-08-16&quot;:54.68},{&quot;2026-08-17&quot;:54.68},{&quot;2026-08-18&quot;:54.68},{&quot;2026-08-19&quot;:55.12},{&quot;2026-08-20&quot;:55.12},{&quot;2026-08-21&quot;:55.12},{&quot;2026-08-22&quot;:55.12},{&quot;2026-08-23&quot;:55.12},{&quot;2026-08-24&quot;:55.12},{&quot;2026-08-25&quot;:55.12},{&quot;2026-08-26&quot;:55.12},{&quot;2026-08-27&quot;:55.12},{&quot;2026-08-28&quot;:55.12},{&quot;2026-08-29&quot;:55.12},{&quot;2026-08-30&quot;:54.61},{&quot;2026-08-31&quot;:54.61},{&quot;2026-09-01&quot;:54.61},{&quot;2026-09-02&quot;:54.61},{&quot;2026-09-03&quot;:54.61},{&quot;2026-09-04&quot;:54.61},{&quot;2026-09-05&quot;:54.61},{&quot;2026-09-06&quot;:54.61},{&quot;2026-09-07&quot;:54.61},{&quot;2026-09-08&quot;:54.61},{&quot;2026-09-09&quot;:54.61},{&quot;2026-09-10&quot;:54.61},{&quot;2026-09-11&quot;:54.61}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:52.99},{&quot;2026-06-14&quot;:52.99},{&quot;2026-06-15&quot;:53.43},{&quot;2026-06-16&quot;:53.43},{&quot;2026-06-17&quot;:53.43},{&quot;2026-06-18&quot;:53.43},{&quot;2026-06-19&quot;:53.43},{&quot;2026-06-20&quot;:53.43},{&quot;2026-06-21&quot;:53.43},{&quot;2026-06-22&quot;:53.43},{&quot;2026-06-23&quot;:53.43},{&quot;2026-06-24&quot;:53.43},{&quot;2026-06-25&quot;:53.43},{&quot;2026-06-26&quot;:53.89},{&quot;2026-06-27&quot;:54.52},{&quot;2026-06-28&quot;:54.52},{&quot;2026-06-29&quot;:54.51},{&quot;2026-06-30&quot;:54.59},{&quot;2026-07-01&quot;:54.59},{&quot;2026-07-02&quot;:54.59},{&quot;2026-07-03&quot;:54.88},{&quot;2026-07-04&quot;:54.88},{&quot;2026-07-05&quot;:54.39},{&quot;2026-07-06&quot;:54.58},{&quot;2026-07-07&quot;:54.72},{&quot;2026-07-08&quot;:54.33},{&quot;2026-07-09&quot;:54.33},{&quot;2026-07-10&quot;:54.33},{&quot;2026-07-11&quot;:53.93},{&quot;2026-07-12&quot;:53.68},{&quot;2026-07-13&quot;:53.64},{&quot;2026-07-14&quot;:53.64},{&quot;2026-07-15&quot;:53.64},{&quot;2026-07-16&quot;:53.64},{&quot;2026-07-17&quot;:53.64},{&quot;2026-07-18&quot;:53.64},{&quot;2026-07-19&quot;:52.68},{&quot;2026-07-20&quot;:52.71},{&quot;2026-07-21&quot;:52.71},{&quot;2026-07-22&quot;:52.71},{&quot;2026-07-23&quot;:52.84},{&quot;2026-07-24&quot;:52.84},{&quot;2026-07-25&quot;:52.84},{&quot;2026-07-26&quot;:52.84},{&quot;2026-07-27&quot;:52.84},{&quot;2026-07-28&quot;:52.96},{&quot;2026-07-29&quot;:52.81},{&quot;2026-07-30&quot;:52.81},{&quot;2026-07-31&quot;:52.49},{&quot;2026-08-01&quot;:52.49},{&quot;2026-08-02&quot;:52.49},{&quot;2026-08-03&quot;:51.55},{&quot;2026-08-04&quot;:51.99},{&quot;2026-08-05&quot;:52.26},{&quot;2026-08-07&quot;:52.4},{&quot;2026-08-08&quot;:52.4},{&quot;2026-08-09&quot;:52.4},{&quot;2026-08-10&quot;:52.48},{&quot;2026-08-11&quot;:52.89},{&quot;2026-08-12&quot;:52.89},{&quot;2026-08-13&quot;:52.89},{&quot;2026-08-14&quot;:52.89},{&quot;2026-08-15&quot;:52.8},{&quot;2026-08-16&quot;:53.04},{&quot;2026-08-17&quot;:53.12},{&quot;2026-08-18&quot;:52.99},{&quot;2026-08-19&quot;:52.02},{&quot;2026-08-20&quot;:52.02},{&quot;2026-08-21&quot;:51.35},{&quot;2026-08-22&quot;:51.09},{&quot;2026-08-23&quot;:50.84},{&quot;2026-08-24&quot;:50.87},{&quot;2026-08-25&quot;:50.69},{&quot;2026-08-26&quot;:50.69},{&quot;2026-08-27&quot;:50.69},{&quot;2026-08-28&quot;:50.87},{&quot;2026-08-29&quot;:50.87},{&quot;2026-08-30&quot;:50.69},{&quot;2026-08-31&quot;:50.69},{&quot;2026-09-01&quot;:50.69},{&quot;2026-09-02&quot;:50.54},{&quot;2026-09-03&quot;:50.22},{&quot;2026-09-04&quot;:50.09},{&quot;2026-09-05&quot;:50.13},{&quot;2026-09-06&quot;:50.13},{&quot;2026-09-07&quot;:50.13},{&quot;2026-09-08&quot;:50.71},{&quot;2026-09-09&quot;:50.71},{&quot;2026-09-10&quot;:50.85},{&quot;2026-09-11&quot;:50.85}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="98748"
  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-tle 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">
            Deadly Rollick
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $33.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="Deadly Rollick" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/3/3/33ace025-c949-482d-bb6a-b3ad13bc981c.jpg?1783904751" />

        <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">
            Deadly Rollick
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-3'></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="Deadly Rollick" src="https://cards.scryfall.io/large/front/3/3/33ace025-c949-482d-bb6a-b3ad13bc981c.jpg?1783904751" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-11&quot;:32.73},{&quot;2026-06-12&quot;:32.64},{&quot;2026-06-13&quot;:32.65},{&quot;2026-06-14&quot;:31.91},{&quot;2026-06-15&quot;:31.79},{&quot;2026-06-16&quot;:31.42},{&quot;2026-06-17&quot;:31.48},{&quot;2026-06-18&quot;:31.54},{&quot;2026-06-19&quot;:31.54},{&quot;2026-06-20&quot;:31.74},{&quot;2026-06-21&quot;:31.97},{&quot;2026-06-22&quot;:31.92},{&quot;2026-06-23&quot;:32.44},{&quot;2026-06-24&quot;:32.36},{&quot;2026-06-25&quot;:32.36},{&quot;2026-06-26&quot;:32.04},{&quot;2026-06-27&quot;:33.1},{&quot;2026-06-28&quot;:33.26},{&quot;2026-06-29&quot;:32.63},{&quot;2026-06-30&quot;:32.43},{&quot;2026-07-01&quot;:31.96},{&quot;2026-07-02&quot;:31.38},{&quot;2026-07-03&quot;:31.45},{&quot;2026-07-04&quot;:31.68},{&quot;2026-07-05&quot;:30.3},{&quot;2026-07-06&quot;:30.11},{&quot;2026-07-07&quot;:30.26},{&quot;2026-07-08&quot;:31.16},{&quot;2026-07-09&quot;:31.22},{&quot;2026-07-10&quot;:31.92},{&quot;2026-07-11&quot;:31.93},{&quot;2026-07-12&quot;:32.12},{&quot;2026-07-13&quot;:32.28},{&quot;2026-07-14&quot;:32.76},{&quot;2026-07-15&quot;:32.57},{&quot;2026-07-16&quot;:32.52},{&quot;2026-07-17&quot;:32.52},{&quot;2026-07-18&quot;:32.39},{&quot;2026-07-19&quot;:32.25},{&quot;2026-07-20&quot;:32.38},{&quot;2026-07-21&quot;:32.38},{&quot;2026-07-23&quot;:32.7},{&quot;2026-07-25&quot;:33.29},{&quot;2026-07-26&quot;:33.29},{&quot;2026-07-27&quot;:33.78},{&quot;2026-07-28&quot;:33.84},{&quot;2026-07-29&quot;:33.74},{&quot;2026-07-30&quot;:33.55},{&quot;2026-07-31&quot;:33.58},{&quot;2026-08-01&quot;:33.58},{&quot;2026-08-02&quot;:33.56},{&quot;2026-08-03&quot;:33.7},{&quot;2026-08-04&quot;:33.21},{&quot;2026-08-05&quot;:33.59},{&quot;2026-08-07&quot;:33.53},{&quot;2026-08-08&quot;:33.53},{&quot;2026-08-09&quot;:33.96},{&quot;2026-08-10&quot;:33.99},{&quot;2026-08-11&quot;:34.48},{&quot;2026-08-12&quot;:35.4},{&quot;2026-08-13&quot;:35.35},{&quot;2026-08-14&quot;:35.15},{&quot;2026-08-15&quot;:36.32},{&quot;2026-08-16&quot;:35.96},{&quot;2026-08-17&quot;:37.28},{&quot;2026-08-18&quot;:37.28},{&quot;2026-08-19&quot;:37.29},{&quot;2026-08-20&quot;:37.29},{&quot;2026-08-21&quot;:36.55},{&quot;2026-08-22&quot;:35.72},{&quot;2026-08-23&quot;:35.72},{&quot;2026-08-24&quot;:35.7},{&quot;2026-08-25&quot;:35.7},{&quot;2026-08-26&quot;:35.32},{&quot;2026-08-27&quot;:33.91},{&quot;2026-08-28&quot;:33.91},{&quot;2026-08-29&quot;:33.91},{&quot;2026-08-30&quot;:33.12},{&quot;2026-08-31&quot;:32.6},{&quot;2026-09-01&quot;:32.6},{&quot;2026-09-02&quot;:32.77},{&quot;2026-09-03&quot;:32.68},{&quot;2026-09-04&quot;:32.6},{&quot;2026-09-05&quot;:32.49},{&quot;2026-09-06&quot;:32.31},{&quot;2026-09-07&quot;:32.66},{&quot;2026-09-08&quot;:33.07},{&quot;2026-09-09&quot;:33.1},{&quot;2026-09-10&quot;:33.77},{&quot;2026-09-11&quot;:33.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="20105"
  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">
            Cyclonic Rift
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $31.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="Cyclonic Rift" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/f/f/ff08e5ed-f47b-4d8e-8b8b-41675dccef8b.jpg?1783930200" />

        <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">
            Cyclonic Rift
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Cyclonic Rift" src="https://cards.scryfall.io/large/front/f/f/ff08e5ed-f47b-4d8e-8b8b-41675dccef8b.jpg?1783930200" />
    </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">
                $31.40
              </span>

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $36.67
              </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;:34.53},{&quot;2026-06-14&quot;:34.3},{&quot;2026-06-15&quot;:34.3},{&quot;2026-06-16&quot;:34.3},{&quot;2026-06-17&quot;:34.3},{&quot;2026-06-18&quot;:34.3},{&quot;2026-06-19&quot;:34.3},{&quot;2026-06-20&quot;:34.3},{&quot;2026-06-21&quot;:34.3},{&quot;2026-06-22&quot;:34.3},{&quot;2026-06-23&quot;:34.3},{&quot;2026-06-24&quot;:34.3},{&quot;2026-06-25&quot;:34.3},{&quot;2026-06-26&quot;:34.3},{&quot;2026-06-27&quot;:34.3},{&quot;2026-06-28&quot;:34.3},{&quot;2026-06-29&quot;:34.3},{&quot;2026-06-30&quot;:34.3},{&quot;2026-07-01&quot;:34.3},{&quot;2026-07-02&quot;:34.25},{&quot;2026-07-03&quot;:34.25},{&quot;2026-07-04&quot;:34.25},{&quot;2026-07-05&quot;:34.25},{&quot;2026-07-06&quot;:34.25},{&quot;2026-07-07&quot;:34.25},{&quot;2026-07-08&quot;:34.25},{&quot;2026-07-09&quot;:34.25},{&quot;2026-07-10&quot;:34.25},{&quot;2026-07-11&quot;:34.25},{&quot;2026-07-12&quot;:34.25},{&quot;2026-07-13&quot;:34.25},{&quot;2026-07-14&quot;:34.25},{&quot;2026-07-15&quot;:34.25},{&quot;2026-07-16&quot;:34.25},{&quot;2026-07-17&quot;:34.39},{&quot;2026-07-18&quot;:34.39},{&quot;2026-07-19&quot;:34.39},{&quot;2026-07-20&quot;:34.62},{&quot;2026-07-21&quot;:34.62},{&quot;2026-07-22&quot;:34.62},{&quot;2026-07-23&quot;:34.62},{&quot;2026-07-24&quot;:34.62},{&quot;2026-07-25&quot;:34.62},{&quot;2026-07-26&quot;:34.62},{&quot;2026-07-27&quot;:34.64},{&quot;2026-07-28&quot;:34.66},{&quot;2026-07-29&quot;:34.66},{&quot;2026-07-30&quot;:35.24},{&quot;2026-07-31&quot;:35.24},{&quot;2026-08-01&quot;:35.24},{&quot;2026-08-02&quot;:35.24},{&quot;2026-08-03&quot;:35.24},{&quot;2026-08-04&quot;:35.24},{&quot;2026-08-05&quot;:35.24},{&quot;2026-08-07&quot;:35.57},{&quot;2026-08-08&quot;:35.81},{&quot;2026-08-09&quot;:36.41},{&quot;2026-08-10&quot;:36.41},{&quot;2026-08-11&quot;:36.41},{&quot;2026-08-12&quot;:36.41},{&quot;2026-08-13&quot;:36.41},{&quot;2026-08-14&quot;:36.41},{&quot;2026-08-15&quot;:36.41},{&quot;2026-08-16&quot;:36.41},{&quot;2026-08-17&quot;:36.19},{&quot;2026-08-18&quot;:36.17},{&quot;2026-08-19&quot;:36.17},{&quot;2026-08-20&quot;:36.17},{&quot;2026-08-21&quot;:36.17},{&quot;2026-08-22&quot;:36.17},{&quot;2026-08-23&quot;:36.17},{&quot;2026-08-24&quot;:36.17},{&quot;2026-08-25&quot;:36.17},{&quot;2026-08-26&quot;:36.58},{&quot;2026-08-27&quot;:36.58},{&quot;2026-08-28&quot;:36.58},{&quot;2026-08-29&quot;:36.58},{&quot;2026-08-30&quot;:36.58},{&quot;2026-08-31&quot;:36.58},{&quot;2026-09-01&quot;:36.58},{&quot;2026-09-02&quot;:36.58},{&quot;2026-09-03&quot;:36.58},{&quot;2026-09-04&quot;:36.58},{&quot;2026-09-05&quot;:36.67},{&quot;2026-09-06&quot;:36.67},{&quot;2026-09-07&quot;:36.67},{&quot;2026-09-08&quot;:36.67},{&quot;2026-09-09&quot;:36.67},{&quot;2026-09-10&quot;:36.67},{&quot;2026-09-11&quot;:36.67}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:33.53},{&quot;2026-06-14&quot;:33.44},{&quot;2026-06-15&quot;:33.44},{&quot;2026-06-16&quot;:33.16},{&quot;2026-06-17&quot;:33.61},{&quot;2026-06-18&quot;:33.5},{&quot;2026-06-19&quot;:33.5},{&quot;2026-06-20&quot;:33.36},{&quot;2026-06-21&quot;:33.36},{&quot;2026-06-22&quot;:33.35},{&quot;2026-06-23&quot;:33.33},{&quot;2026-06-24&quot;:33.11},{&quot;2026-06-25&quot;:33.11},{&quot;2026-06-26&quot;:31.97},{&quot;2026-06-27&quot;:33.11},{&quot;2026-06-28&quot;:33.11},{&quot;2026-06-29&quot;:33.2},{&quot;2026-06-30&quot;:33.4},{&quot;2026-07-01&quot;:33.65},{&quot;2026-07-02&quot;:33.65},{&quot;2026-07-03&quot;:33.61},{&quot;2026-07-04&quot;:33.87},{&quot;2026-07-05&quot;:33.82},{&quot;2026-07-06&quot;:33.82},{&quot;2026-07-07&quot;:33.82},{&quot;2026-07-08&quot;:33.82},{&quot;2026-07-09&quot;:33.82},{&quot;2026-07-10&quot;:33.29},{&quot;2026-07-11&quot;:33.1},{&quot;2026-07-12&quot;:33.1},{&quot;2026-07-13&quot;:32.65},{&quot;2026-07-14&quot;:32.17},{&quot;2026-07-15&quot;:32.07},{&quot;2026-07-16&quot;:32.07},{&quot;2026-07-17&quot;:32.07},{&quot;2026-07-18&quot;:31.83},{&quot;2026-07-19&quot;:31.63},{&quot;2026-07-20&quot;:31.63},{&quot;2026-07-21&quot;:31.51},{&quot;2026-07-22&quot;:30.82},{&quot;2026-07-23&quot;:30.56},{&quot;2026-07-24&quot;:30.56},{&quot;2026-07-25&quot;:30.56},{&quot;2026-07-26&quot;:30.56},{&quot;2026-07-27&quot;:30.58},{&quot;2026-07-28&quot;:31.06},{&quot;2026-07-29&quot;:31.45},{&quot;2026-07-30&quot;:31.45},{&quot;2026-07-31&quot;:31.45},{&quot;2026-08-01&quot;:31.68},{&quot;2026-08-02&quot;:31.68},{&quot;2026-08-03&quot;:31.68},{&quot;2026-08-04&quot;:31.78},{&quot;2026-08-05&quot;:31.82},{&quot;2026-08-07&quot;:32.53},{&quot;2026-08-08&quot;:32.55},{&quot;2026-08-09&quot;:32.55},{&quot;2026-08-10&quot;:32.55},{&quot;2026-08-11&quot;:32.55},{&quot;2026-08-12&quot;:31.96},{&quot;2026-08-13&quot;:32.06},{&quot;2026-08-14&quot;:32.06},{&quot;2026-08-15&quot;:32.27},{&quot;2026-08-16&quot;:32.27},{&quot;2026-08-17&quot;:32.27},{&quot;2026-08-18&quot;:32.1},{&quot;2026-08-19&quot;:32.06},{&quot;2026-08-20&quot;:32.06},{&quot;2026-08-21&quot;:32.2},{&quot;2026-08-22&quot;:31.84},{&quot;2026-08-23&quot;:31.84},{&quot;2026-08-24&quot;:30.68},{&quot;2026-08-25&quot;:30.68},{&quot;2026-08-26&quot;:30.68},{&quot;2026-08-27&quot;:30.68},{&quot;2026-08-28&quot;:30.68},{&quot;2026-08-29&quot;:30.68},{&quot;2026-08-30&quot;:30.24},{&quot;2026-08-31&quot;:29.55},{&quot;2026-09-01&quot;:29.56},{&quot;2026-09-02&quot;:29.28},{&quot;2026-09-03&quot;:29.28},{&quot;2026-09-04&quot;:29.22},{&quot;2026-09-05&quot;:29.71},{&quot;2026-09-06&quot;:30.61},{&quot;2026-09-07&quot;:30.61},{&quot;2026-09-08&quot;:31.4},{&quot;2026-09-09&quot;:31.4},{&quot;2026-09-10&quot;:31.4},{&quot;2026-09-11&quot;:31.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="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="14017"
  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-cmm ss-rare ss-fw ss-2x flex-shrink-0"></i>

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

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

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

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Vault of Champions" src="https://cards.scryfall.io/large/front/0/b/0be7c23e-312d-4b20-9bb7-0344a73acac9.jpg?1783915505" />
    </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.48
              </span>

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:19.81},{&quot;2026-06-11&quot;:20.01},{&quot;2026-06-12&quot;:20.07},{&quot;2026-06-13&quot;:20.07},{&quot;2026-06-14&quot;:19.92},{&quot;2026-06-15&quot;:19.92},{&quot;2026-06-16&quot;:19.99},{&quot;2026-06-17&quot;:19.99},{&quot;2026-06-18&quot;:19.99},{&quot;2026-06-19&quot;:19.99},{&quot;2026-06-20&quot;:19.99},{&quot;2026-06-21&quot;:19.99},{&quot;2026-06-22&quot;:20.01},{&quot;2026-06-23&quot;:20.01},{&quot;2026-06-24&quot;:20.06},{&quot;2026-06-25&quot;:20.06},{&quot;2026-06-26&quot;:20.06},{&quot;2026-06-27&quot;:20.2},{&quot;2026-06-28&quot;:20.2},{&quot;2026-06-29&quot;:20.2},{&quot;2026-06-30&quot;:20.31},{&quot;2026-07-01&quot;:20.31},{&quot;2026-07-02&quot;:20.31},{&quot;2026-07-03&quot;:20.31},{&quot;2026-07-04&quot;:20.33},{&quot;2026-07-05&quot;:20.33},{&quot;2026-07-06&quot;:20.33},{&quot;2026-07-07&quot;:20.41},{&quot;2026-07-08&quot;:20.36},{&quot;2026-07-09&quot;:20.36},{&quot;2026-07-10&quot;:20.36},{&quot;2026-07-11&quot;:20.55},{&quot;2026-07-12&quot;:20.55},{&quot;2026-07-13&quot;:20.47},{&quot;2026-07-14&quot;:20.47},{&quot;2026-07-15&quot;:20.3},{&quot;2026-07-16&quot;:20.3},{&quot;2026-07-17&quot;:20.3},{&quot;2026-07-18&quot;:20.16},{&quot;2026-07-19&quot;:20.06},{&quot;2026-07-20&quot;:20.06},{&quot;2026-07-21&quot;:20.06},{&quot;2026-07-23&quot;:19.71},{&quot;2026-07-25&quot;:19.71},{&quot;2026-07-26&quot;:19.63},{&quot;2026-07-27&quot;:19.6},{&quot;2026-07-29&quot;:19.71},{&quot;2026-07-30&quot;:19.71},{&quot;2026-07-31&quot;:19.71},{&quot;2026-08-01&quot;:19.71},{&quot;2026-08-02&quot;:19.71},{&quot;2026-08-03&quot;:19.71},{&quot;2026-08-04&quot;:19.59},{&quot;2026-08-05&quot;:19.59},{&quot;2026-08-07&quot;:19.6},{&quot;2026-08-08&quot;:19.6},{&quot;2026-08-09&quot;:19.6},{&quot;2026-08-10&quot;:19.61},{&quot;2026-08-11&quot;:19.7},{&quot;2026-08-12&quot;:19.62},{&quot;2026-08-13&quot;:19.62},{&quot;2026-08-14&quot;:19.62},{&quot;2026-08-15&quot;:19.61},{&quot;2026-08-16&quot;:19.61},{&quot;2026-08-17&quot;:19.63},{&quot;2026-08-18&quot;:19.73},{&quot;2026-08-19&quot;:19.73},{&quot;2026-08-20&quot;:19.73},{&quot;2026-08-21&quot;:19.6},{&quot;2026-08-22&quot;:19.6},{&quot;2026-08-23&quot;:19.82},{&quot;2026-08-24&quot;:19.82},{&quot;2026-08-25&quot;:19.82},{&quot;2026-08-26&quot;:19.58},{&quot;2026-08-27&quot;:19.59},{&quot;2026-08-28&quot;:19.63},{&quot;2026-08-29&quot;:19.63},{&quot;2026-08-30&quot;:19.63},{&quot;2026-08-31&quot;:19.56},{&quot;2026-09-01&quot;:19.56},{&quot;2026-09-02&quot;:19.61},{&quot;2026-09-03&quot;:19.61},{&quot;2026-09-04&quot;:19.54},{&quot;2026-09-05&quot;:19.43},{&quot;2026-09-06&quot;:19.43},{&quot;2026-09-07&quot;:19.43},{&quot;2026-09-08&quot;:19.41},{&quot;2026-09-09&quot;:19.41},{&quot;2026-09-10&quot;:19.38},{&quot;2026-09-11&quot;:19.38}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:17.58},{&quot;2026-06-11&quot;:17.54},{&quot;2026-06-12&quot;:17.61},{&quot;2026-06-13&quot;:17.61},{&quot;2026-06-14&quot;:17.64},{&quot;2026-06-15&quot;:17.72},{&quot;2026-06-16&quot;:17.6},{&quot;2026-06-17&quot;:17.71},{&quot;2026-06-18&quot;:17.87},{&quot;2026-06-19&quot;:17.94},{&quot;2026-06-20&quot;:17.94},{&quot;2026-06-21&quot;:18.12},{&quot;2026-06-22&quot;:18.06},{&quot;2026-06-23&quot;:18.06},{&quot;2026-06-24&quot;:18.06},{&quot;2026-06-25&quot;:18.06},{&quot;2026-06-26&quot;:18.01},{&quot;2026-06-27&quot;:18.01},{&quot;2026-06-28&quot;:17.89},{&quot;2026-06-29&quot;:17.79},{&quot;2026-06-30&quot;:17.85},{&quot;2026-07-01&quot;:17.89},{&quot;2026-07-02&quot;:17.91},{&quot;2026-07-03&quot;:18.04},{&quot;2026-07-04&quot;:18.04},{&quot;2026-07-05&quot;:18.12},{&quot;2026-07-06&quot;:18.12},{&quot;2026-07-07&quot;:18.12},{&quot;2026-07-08&quot;:18.12},{&quot;2026-07-09&quot;:18.08},{&quot;2026-07-10&quot;:18.11},{&quot;2026-07-11&quot;:18.08},{&quot;2026-07-12&quot;:17.8},{&quot;2026-07-13&quot;:17.51},{&quot;2026-07-14&quot;:17.38},{&quot;2026-07-15&quot;:17.29},{&quot;2026-07-16&quot;:17.29},{&quot;2026-07-17&quot;:17.29},{&quot;2026-07-18&quot;:17.29},{&quot;2026-07-19&quot;:17.31},{&quot;2026-07-20&quot;:17.31},{&quot;2026-07-21&quot;:17.45},{&quot;2026-07-23&quot;:17.44},{&quot;2026-07-25&quot;:17.35},{&quot;2026-07-26&quot;:17.4},{&quot;2026-07-27&quot;:17.54},{&quot;2026-07-29&quot;:17.54},{&quot;2026-07-30&quot;:17.52},{&quot;2026-07-31&quot;:17.92},{&quot;2026-08-01&quot;:17.99},{&quot;2026-08-02&quot;:17.99},{&quot;2026-08-03&quot;:18.4},{&quot;2026-08-04&quot;:18.67},{&quot;2026-08-05&quot;:18.74},{&quot;2026-08-07&quot;:18.94},{&quot;2026-08-08&quot;:18.94},{&quot;2026-08-09&quot;:18.97},{&quot;2026-08-10&quot;:19.05},{&quot;2026-08-11&quot;:18.97},{&quot;2026-08-12&quot;:18.94},{&quot;2026-08-13&quot;:18.96},{&quot;2026-08-14&quot;:18.96},{&quot;2026-08-15&quot;:18.96},{&quot;2026-08-16&quot;:18.96},{&quot;2026-08-17&quot;:18.76},{&quot;2026-08-18&quot;:18.63},{&quot;2026-08-19&quot;:18.58},{&quot;2026-08-20&quot;:18.58},{&quot;2026-08-21&quot;:18.42},{&quot;2026-08-22&quot;:18.45},{&quot;2026-08-23&quot;:18.3},{&quot;2026-08-24&quot;:18.3},{&quot;2026-08-25&quot;:18.3},{&quot;2026-08-26&quot;:18.14},{&quot;2026-08-27&quot;:18.21},{&quot;2026-08-28&quot;:18.28},{&quot;2026-08-29&quot;:18.28},{&quot;2026-08-30&quot;:18.22},{&quot;2026-08-31&quot;:18.2},{&quot;2026-09-01&quot;:18.2},{&quot;2026-09-02&quot;:18.32},{&quot;2026-09-03&quot;:18.37},{&quot;2026-09-04&quot;:18.61},{&quot;2026-09-05&quot;:18.61},{&quot;2026-09-06&quot;:18.62},{&quot;2026-09-07&quot;:18.62},{&quot;2026-09-08&quot;:18.62},{&quot;2026-09-09&quot;:18.62},{&quot;2026-09-10&quot;:18.51},{&quot;2026-09-11&quot;:18.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="13820"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-clb ss-rare ss-fw ss-2x flex-shrink-0"></i>

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Black Market Connections" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/1/d13cb0d3-3452-4c1f-81ec-024b4c45bbad.jpg?1783922505" />

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

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

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Black Market Connections" src="https://cards.scryfall.io/large/front/d/1/d13cb0d3-3452-4c1f-81ec-024b4c45bbad.jpg?1783922505" />
    </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.13
              </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">$10.00</span>
              <span class="text-xs text-grey-text">Credit: $13.00</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:20.06},{&quot;2026-06-14&quot;:20.06},{&quot;2026-06-15&quot;:19.62},{&quot;2026-06-16&quot;:19.87},{&quot;2026-06-17&quot;:19.88},{&quot;2026-06-18&quot;:19.87},{&quot;2026-06-19&quot;:19.87},{&quot;2026-06-20&quot;:19.95},{&quot;2026-06-21&quot;:19.89},{&quot;2026-06-22&quot;:20.09},{&quot;2026-06-23&quot;:20.09},{&quot;2026-06-24&quot;:20.15},{&quot;2026-06-25&quot;:20.11},{&quot;2026-06-26&quot;:20.15},{&quot;2026-06-27&quot;:20.23},{&quot;2026-06-28&quot;:20.01},{&quot;2026-06-29&quot;:20.01},{&quot;2026-06-30&quot;:20.01},{&quot;2026-07-01&quot;:19.7},{&quot;2026-07-02&quot;:19.7},{&quot;2026-07-03&quot;:19.7},{&quot;2026-07-04&quot;:19.99},{&quot;2026-07-05&quot;:19.97},{&quot;2026-07-06&quot;:19.85},{&quot;2026-07-07&quot;:19.66},{&quot;2026-07-08&quot;:19.7},{&quot;2026-07-09&quot;:19.7},{&quot;2026-07-10&quot;:19.67},{&quot;2026-07-11&quot;:19.67},{&quot;2026-07-12&quot;:19.67},{&quot;2026-07-13&quot;:19.55},{&quot;2026-07-14&quot;:19.28},{&quot;2026-07-15&quot;:19.28},{&quot;2026-07-16&quot;:19.28},{&quot;2026-07-17&quot;:19.28},{&quot;2026-07-18&quot;:19.21},{&quot;2026-07-19&quot;:19.21},{&quot;2026-07-20&quot;:19.1},{&quot;2026-07-21&quot;:19.1},{&quot;2026-07-22&quot;:19.1},{&quot;2026-07-23&quot;:19.01},{&quot;2026-07-24&quot;:19.14},{&quot;2026-07-25&quot;:19.14},{&quot;2026-07-26&quot;:19.14},{&quot;2026-07-27&quot;:19.14},{&quot;2026-07-28&quot;:19.14},{&quot;2026-07-29&quot;:19.05},{&quot;2026-07-30&quot;:19.15},{&quot;2026-07-31&quot;:19.24},{&quot;2026-08-01&quot;:19.12},{&quot;2026-08-02&quot;:19.04},{&quot;2026-08-03&quot;:18.99},{&quot;2026-08-04&quot;:18.99},{&quot;2026-08-05&quot;:18.99},{&quot;2026-08-07&quot;:18.94},{&quot;2026-08-08&quot;:18.84},{&quot;2026-08-09&quot;:18.84},{&quot;2026-08-10&quot;:18.84},{&quot;2026-08-11&quot;:18.84},{&quot;2026-08-12&quot;:18.84},{&quot;2026-08-13&quot;:18.68},{&quot;2026-08-14&quot;:18.73},{&quot;2026-08-15&quot;:18.63},{&quot;2026-08-16&quot;:18.63},{&quot;2026-08-17&quot;:18.54},{&quot;2026-08-18&quot;:18.54},{&quot;2026-08-19&quot;:18.52},{&quot;2026-08-20&quot;:18.52},{&quot;2026-08-21&quot;:18.5},{&quot;2026-08-22&quot;:18.5},{&quot;2026-08-23&quot;:18.5},{&quot;2026-08-24&quot;:18.54},{&quot;2026-08-25&quot;:18.38},{&quot;2026-08-26&quot;:18.35},{&quot;2026-08-27&quot;:18.32},{&quot;2026-08-28&quot;:18.31},{&quot;2026-08-29&quot;:18.31},{&quot;2026-08-30&quot;:18.25},{&quot;2026-08-31&quot;:18.25},{&quot;2026-09-01&quot;:18.06},{&quot;2026-09-02&quot;:17.82},{&quot;2026-09-03&quot;:18.02},{&quot;2026-09-04&quot;:17.82},{&quot;2026-09-05&quot;:17.76},{&quot;2026-09-06&quot;:17.84},{&quot;2026-09-07&quot;:17.85},{&quot;2026-09-08&quot;:17.96},{&quot;2026-09-09&quot;:17.96},{&quot;2026-09-10&quot;:18.03},{&quot;2026-09-11&quot;:18.13}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

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

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Akroma&#39;s Will" src="https://cards.scryfall.io/large/front/c/2/c281997b-1566-4469-a14c-6645f81ab023.jpg?1783928892" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $15.97
              </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.92
              </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;:17.76},{&quot;2026-06-10&quot;:17.8},{&quot;2026-06-11&quot;:17.8},{&quot;2026-06-12&quot;:17.8},{&quot;2026-06-13&quot;:17.8},{&quot;2026-06-14&quot;:17.8},{&quot;2026-06-15&quot;:17.8},{&quot;2026-06-16&quot;:17.8},{&quot;2026-06-17&quot;:17.8},{&quot;2026-06-18&quot;:17.8},{&quot;2026-06-19&quot;:17.8},{&quot;2026-06-20&quot;:17.8},{&quot;2026-06-21&quot;:17.8},{&quot;2026-06-22&quot;:17.77},{&quot;2026-06-24&quot;:17.73},{&quot;2026-06-25&quot;:17.74},{&quot;2026-06-26&quot;:17.74},{&quot;2026-06-27&quot;:17.74},{&quot;2026-06-28&quot;:17.74},{&quot;2026-06-29&quot;:17.74},{&quot;2026-06-30&quot;:17.74},{&quot;2026-07-01&quot;:17.62},{&quot;2026-07-02&quot;:17.62},{&quot;2026-07-03&quot;:17.65},{&quot;2026-07-04&quot;:17.6},{&quot;2026-07-05&quot;:17.56},{&quot;2026-07-06&quot;:17.56},{&quot;2026-07-07&quot;:17.56},{&quot;2026-07-08&quot;:17.56},{&quot;2026-07-09&quot;:17.56},{&quot;2026-07-10&quot;:17.56},{&quot;2026-07-11&quot;:17.56},{&quot;2026-07-12&quot;:17.56},{&quot;2026-07-13&quot;:17.56},{&quot;2026-07-14&quot;:17.56},{&quot;2026-07-15&quot;:17.56},{&quot;2026-07-16&quot;:17.56},{&quot;2026-07-17&quot;:17.57},{&quot;2026-07-18&quot;:17.59},{&quot;2026-07-19&quot;:17.59},{&quot;2026-07-20&quot;:17.6},{&quot;2026-07-21&quot;:17.6},{&quot;2026-07-23&quot;:17.61},{&quot;2026-07-25&quot;:17.57},{&quot;2026-07-26&quot;:17.57},{&quot;2026-07-27&quot;:17.46},{&quot;2026-07-29&quot;:17.46},{&quot;2026-07-30&quot;:17.55},{&quot;2026-07-31&quot;:17.49},{&quot;2026-08-01&quot;:17.49},{&quot;2026-08-02&quot;:17.49},{&quot;2026-08-03&quot;:17.49},{&quot;2026-08-04&quot;:17.49},{&quot;2026-08-05&quot;:17.49},{&quot;2026-08-07&quot;:17.49},{&quot;2026-08-08&quot;:17.49},{&quot;2026-08-09&quot;:17.49},{&quot;2026-08-10&quot;:17.49},{&quot;2026-08-11&quot;:17.67},{&quot;2026-08-12&quot;:17.67},{&quot;2026-08-13&quot;:17.67},{&quot;2026-08-14&quot;:17.71},{&quot;2026-08-15&quot;:17.71},{&quot;2026-08-16&quot;:17.71},{&quot;2026-08-17&quot;:17.71},{&quot;2026-08-18&quot;:17.71},{&quot;2026-08-19&quot;:17.72},{&quot;2026-08-20&quot;:17.72},{&quot;2026-08-21&quot;:17.72},{&quot;2026-08-22&quot;:17.72},{&quot;2026-08-23&quot;:17.62},{&quot;2026-08-24&quot;:17.75},{&quot;2026-08-25&quot;:17.75},{&quot;2026-08-26&quot;:17.75},{&quot;2026-08-27&quot;:17.75},{&quot;2026-08-28&quot;:17.79},{&quot;2026-08-29&quot;:17.79},{&quot;2026-08-30&quot;:17.91},{&quot;2026-08-31&quot;:17.92},{&quot;2026-09-01&quot;:17.92},{&quot;2026-09-02&quot;:17.92},{&quot;2026-09-03&quot;:17.92},{&quot;2026-09-04&quot;:17.92},{&quot;2026-09-05&quot;:17.92},{&quot;2026-09-06&quot;:17.92},{&quot;2026-09-07&quot;:17.92},{&quot;2026-09-08&quot;:17.92},{&quot;2026-09-09&quot;:17.92},{&quot;2026-09-10&quot;:17.92},{&quot;2026-09-11&quot;:17.92}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:15.91},{&quot;2026-06-10&quot;:15.51},{&quot;2026-06-11&quot;:15.49},{&quot;2026-06-12&quot;:15.58},{&quot;2026-06-13&quot;:15.58},{&quot;2026-06-14&quot;:15.58},{&quot;2026-06-15&quot;:15.54},{&quot;2026-06-16&quot;:15.81},{&quot;2026-06-17&quot;:15.75},{&quot;2026-06-18&quot;:15.75},{&quot;2026-06-19&quot;:15.8},{&quot;2026-06-20&quot;:15.81},{&quot;2026-06-21&quot;:15.71},{&quot;2026-06-22&quot;:15.71},{&quot;2026-06-24&quot;:15.31},{&quot;2026-06-25&quot;:15.39},{&quot;2026-06-26&quot;:15.39},{&quot;2026-06-27&quot;:15.39},{&quot;2026-06-28&quot;:15.06},{&quot;2026-06-29&quot;:14.93},{&quot;2026-06-30&quot;:14.76},{&quot;2026-07-01&quot;:14.51},{&quot;2026-07-02&quot;:14.07},{&quot;2026-07-03&quot;:13.96},{&quot;2026-07-04&quot;:14.02},{&quot;2026-07-05&quot;:13.75},{&quot;2026-07-06&quot;:13.63},{&quot;2026-07-07&quot;:13.41},{&quot;2026-07-08&quot;:13.51},{&quot;2026-07-09&quot;:13.39},{&quot;2026-07-10&quot;:13.52},{&quot;2026-07-11&quot;:13.71},{&quot;2026-07-12&quot;:13.69},{&quot;2026-07-13&quot;:13.45},{&quot;2026-07-14&quot;:13.48},{&quot;2026-07-15&quot;:13.31},{&quot;2026-07-16&quot;:13.78},{&quot;2026-07-17&quot;:13.95},{&quot;2026-07-18&quot;:14.05},{&quot;2026-07-19&quot;:14.43},{&quot;2026-07-20&quot;:13.95},{&quot;2026-07-21&quot;:13.86},{&quot;2026-07-23&quot;:14.08},{&quot;2026-07-25&quot;:14.18},{&quot;2026-07-26&quot;:14.26},{&quot;2026-07-27&quot;:14.51},{&quot;2026-07-29&quot;:14.69},{&quot;2026-07-30&quot;:14.85},{&quot;2026-07-31&quot;:14.6},{&quot;2026-08-01&quot;:14.59},{&quot;2026-08-02&quot;:14.59},{&quot;2026-08-03&quot;:14.57},{&quot;2026-08-04&quot;:14.47},{&quot;2026-08-05&quot;:14.8},{&quot;2026-08-07&quot;:14.74},{&quot;2026-08-08&quot;:14.74},{&quot;2026-08-09&quot;:14.76},{&quot;2026-08-10&quot;:14.7},{&quot;2026-08-11&quot;:14.59},{&quot;2026-08-12&quot;:13.99},{&quot;2026-08-13&quot;:14.09},{&quot;2026-08-14&quot;:14.54},{&quot;2026-08-15&quot;:14.61},{&quot;2026-08-16&quot;:14.65},{&quot;2026-08-17&quot;:14.41},{&quot;2026-08-18&quot;:14.12},{&quot;2026-08-19&quot;:14.51},{&quot;2026-08-20&quot;:14.51},{&quot;2026-08-21&quot;:15.18},{&quot;2026-08-22&quot;:15.31},{&quot;2026-08-23&quot;:15.49},{&quot;2026-08-24&quot;:15.17},{&quot;2026-08-25&quot;:15.17},{&quot;2026-08-26&quot;:15.09},{&quot;2026-08-27&quot;:15.05},{&quot;2026-08-28&quot;:15.24},{&quot;2026-08-29&quot;:15.24},{&quot;2026-08-30&quot;:15.33},{&quot;2026-08-31&quot;:15.35},{&quot;2026-09-01&quot;:15.35},{&quot;2026-09-02&quot;:15.29},{&quot;2026-09-03&quot;:15.37},{&quot;2026-09-04&quot;:15.33},{&quot;2026-09-05&quot;:15.4},{&quot;2026-09-06&quot;:15.73},{&quot;2026-09-07&quot;:15.64},{&quot;2026-09-08&quot;:15.95},{&quot;2026-09-09&quot;:15.91},{&quot;2026-09-10&quot;:16.03},{&quot;2026-09-11&quot;:15.97}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Undead Warchief" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/f/7/f7d770b6-7765-4e48-ab31-98a58ff4de66.jpg?1783931274" />

        <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">
            Undead Warchief
        </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</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="Undead Warchief" src="https://cards.scryfall.io/large/front/f/7/f7d770b6-7765-4e48-ab31-98a58ff4de66.jpg?1783931274" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $15.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 Foil</span>
              <span class="text-lg font-medium text-nine-white">$7.75</span>
              <span class="text-xs text-grey-text">Credit: $10.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;:17.26},{&quot;2026-06-14&quot;:17.26},{&quot;2026-06-15&quot;:17.06},{&quot;2026-06-16&quot;:17.06},{&quot;2026-06-17&quot;:17.06},{&quot;2026-06-18&quot;:17.06},{&quot;2026-06-19&quot;:16.87},{&quot;2026-06-20&quot;:16.87},{&quot;2026-06-21&quot;:16.87},{&quot;2026-06-22&quot;:16.87},{&quot;2026-06-23&quot;:16.87},{&quot;2026-06-24&quot;:16.87},{&quot;2026-06-25&quot;:16.87},{&quot;2026-06-26&quot;:16.87},{&quot;2026-06-27&quot;:16.87},{&quot;2026-06-28&quot;:16.85},{&quot;2026-06-29&quot;:16.85},{&quot;2026-06-30&quot;:16.85},{&quot;2026-07-01&quot;:16.85},{&quot;2026-07-02&quot;:16.85},{&quot;2026-07-03&quot;:16.85},{&quot;2026-07-04&quot;:16.85},{&quot;2026-07-05&quot;:16.69},{&quot;2026-07-06&quot;:16.4},{&quot;2026-07-07&quot;:16.4},{&quot;2026-07-08&quot;:16.2},{&quot;2026-07-09&quot;:16.2},{&quot;2026-07-10&quot;:16.2},{&quot;2026-07-11&quot;:16.2},{&quot;2026-07-12&quot;:16.23},{&quot;2026-07-13&quot;:16.39},{&quot;2026-07-14&quot;:16.39},{&quot;2026-07-15&quot;:16.42},{&quot;2026-07-16&quot;:16.42},{&quot;2026-07-17&quot;:16.42},{&quot;2026-07-18&quot;:16.42},{&quot;2026-07-19&quot;:15.76},{&quot;2026-07-20&quot;:15.57},{&quot;2026-07-21&quot;:15.49},{&quot;2026-07-22&quot;:15.39},{&quot;2026-07-23&quot;:15.39},{&quot;2026-07-24&quot;:15.13},{&quot;2026-07-25&quot;:15.13},{&quot;2026-07-26&quot;:15.13},{&quot;2026-07-27&quot;:15.16},{&quot;2026-07-28&quot;:15.16},{&quot;2026-07-29&quot;:15.06},{&quot;2026-07-30&quot;:15.06},{&quot;2026-07-31&quot;:15.03},{&quot;2026-08-01&quot;:15.08},{&quot;2026-08-02&quot;:15.06},{&quot;2026-08-03&quot;:14.84},{&quot;2026-08-04&quot;:14.84},{&quot;2026-08-05&quot;:14.76},{&quot;2026-08-07&quot;:14.76},{&quot;2026-08-08&quot;:14.76},{&quot;2026-08-09&quot;:14.76},{&quot;2026-08-10&quot;:14.69},{&quot;2026-08-11&quot;:14.67},{&quot;2026-08-12&quot;:14.67},{&quot;2026-08-13&quot;:14.86},{&quot;2026-08-14&quot;:14.83},{&quot;2026-08-15&quot;:14.81},{&quot;2026-08-16&quot;:14.81},{&quot;2026-08-17&quot;:14.96},{&quot;2026-08-18&quot;:14.96},{&quot;2026-08-19&quot;:14.96},{&quot;2026-08-20&quot;:14.96},{&quot;2026-08-21&quot;:15.11},{&quot;2026-08-22&quot;:14.94},{&quot;2026-08-23&quot;:14.94},{&quot;2026-08-24&quot;:14.94},{&quot;2026-08-25&quot;:14.94},{&quot;2026-08-26&quot;:14.94},{&quot;2026-08-27&quot;:14.94},{&quot;2026-08-28&quot;:14.92},{&quot;2026-08-29&quot;:14.92},{&quot;2026-08-30&quot;:14.82},{&quot;2026-08-31&quot;:14.82},{&quot;2026-09-01&quot;:14.91},{&quot;2026-09-02&quot;:14.92},{&quot;2026-09-03&quot;:15.13},{&quot;2026-09-04&quot;:15.45},{&quot;2026-09-05&quot;:15.47},{&quot;2026-09-06&quot;:15.47},{&quot;2026-09-07&quot;:15.78},{&quot;2026-09-08&quot;:15.78},{&quot;2026-09-09&quot;:15.78},{&quot;2026-09-10&quot;:15.59},{&quot;2026-09-11&quot;:15.53}],&quot;normal&quot;:[]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="32825"
  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-gtc 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">
            Watery Grave
        </span>


      </div>

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

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

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

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

        <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">
            Watery Grave
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Land — Island 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="Watery Grave" src="https://cards.scryfall.io/large/front/4/7/47fde349-010e-4a2e-838e-e924dbeec355.jpg?1783940086" />
    </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.95
              </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">
                $19.58
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-12&quot;:18.87},{&quot;2026-06-13&quot;:18.87},{&quot;2026-06-14&quot;:18.87},{&quot;2026-06-15&quot;:18.87},{&quot;2026-06-16&quot;:18.87},{&quot;2026-06-17&quot;:19.07},{&quot;2026-06-18&quot;:19.07},{&quot;2026-06-19&quot;:19.07},{&quot;2026-06-20&quot;:19.07},{&quot;2026-06-21&quot;:19.07},{&quot;2026-06-22&quot;:19.07},{&quot;2026-06-23&quot;:19.07},{&quot;2026-06-24&quot;:19.07},{&quot;2026-06-25&quot;:18.91},{&quot;2026-06-26&quot;:18.91},{&quot;2026-06-27&quot;:18.91},{&quot;2026-06-28&quot;:19.09},{&quot;2026-06-29&quot;:19.09},{&quot;2026-06-30&quot;:19.09},{&quot;2026-07-01&quot;:19.14},{&quot;2026-07-02&quot;:19.14},{&quot;2026-07-03&quot;:19.14},{&quot;2026-07-04&quot;:19.14},{&quot;2026-07-05&quot;:19.27},{&quot;2026-07-06&quot;:19.27},{&quot;2026-07-07&quot;:19.27},{&quot;2026-07-08&quot;:19.27},{&quot;2026-07-09&quot;:19.27},{&quot;2026-07-10&quot;:19.27},{&quot;2026-07-11&quot;:19.27},{&quot;2026-07-12&quot;:19.27},{&quot;2026-07-13&quot;:19.27},{&quot;2026-07-14&quot;:19.27},{&quot;2026-07-15&quot;:19.27},{&quot;2026-07-16&quot;:19.27},{&quot;2026-07-17&quot;:19.31},{&quot;2026-07-18&quot;:19.34},{&quot;2026-07-19&quot;:19.34},{&quot;2026-07-20&quot;:19.34},{&quot;2026-07-21&quot;:19.34},{&quot;2026-07-23&quot;:19.42},{&quot;2026-07-24&quot;:19.42},{&quot;2026-07-25&quot;:19.42},{&quot;2026-07-26&quot;:19.42},{&quot;2026-07-27&quot;:19.42},{&quot;2026-07-28&quot;:19.42},{&quot;2026-07-29&quot;:19.42},{&quot;2026-07-30&quot;:19.42},{&quot;2026-07-31&quot;:19.42},{&quot;2026-08-01&quot;:19.42},{&quot;2026-08-02&quot;:19.55},{&quot;2026-08-03&quot;:19.51},{&quot;2026-08-04&quot;:19.51},{&quot;2026-08-05&quot;:19.7},{&quot;2026-08-07&quot;:19.7},{&quot;2026-08-08&quot;:19.7},{&quot;2026-08-09&quot;:19.7},{&quot;2026-08-10&quot;:19.7},{&quot;2026-08-11&quot;:19.7},{&quot;2026-08-12&quot;:19.7},{&quot;2026-08-13&quot;:19.7},{&quot;2026-08-14&quot;:19.67},{&quot;2026-08-15&quot;:19.67},{&quot;2026-08-16&quot;:19.67},{&quot;2026-08-17&quot;:19.67},{&quot;2026-08-18&quot;:19.67},{&quot;2026-08-19&quot;:19.67},{&quot;2026-08-20&quot;:19.67},{&quot;2026-08-21&quot;:19.73},{&quot;2026-08-22&quot;:19.73},{&quot;2026-08-23&quot;:19.72},{&quot;2026-08-24&quot;:19.72},{&quot;2026-08-25&quot;:19.76},{&quot;2026-08-26&quot;:19.76},{&quot;2026-08-27&quot;:19.76},{&quot;2026-08-28&quot;:19.76},{&quot;2026-08-29&quot;:19.76},{&quot;2026-08-30&quot;:19.76},{&quot;2026-08-31&quot;:19.76},{&quot;2026-09-01&quot;:19.76},{&quot;2026-09-02&quot;:19.76},{&quot;2026-09-03&quot;:19.76},{&quot;2026-09-04&quot;:19.76},{&quot;2026-09-05&quot;:19.76},{&quot;2026-09-06&quot;:19.76},{&quot;2026-09-07&quot;:19.76},{&quot;2026-09-08&quot;:19.76},{&quot;2026-09-09&quot;:19.58},{&quot;2026-09-10&quot;:19.58},{&quot;2026-09-11&quot;:19.58}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:12.04},{&quot;2026-06-13&quot;:12.04},{&quot;2026-06-14&quot;:12.05},{&quot;2026-06-15&quot;:11.48},{&quot;2026-06-16&quot;:11.21},{&quot;2026-06-17&quot;:11.39},{&quot;2026-06-18&quot;:11.39},{&quot;2026-06-19&quot;:11.41},{&quot;2026-06-20&quot;:11.35},{&quot;2026-06-21&quot;:11.41},{&quot;2026-06-22&quot;:11.23},{&quot;2026-06-23&quot;:11.21},{&quot;2026-06-24&quot;:11.21},{&quot;2026-06-25&quot;:11.18},{&quot;2026-06-26&quot;:11.18},{&quot;2026-06-27&quot;:11.18},{&quot;2026-06-28&quot;:10.96},{&quot;2026-06-29&quot;:10.96},{&quot;2026-06-30&quot;:10.96},{&quot;2026-07-01&quot;:11.1},{&quot;2026-07-02&quot;:11.1},{&quot;2026-07-03&quot;:11.07},{&quot;2026-07-04&quot;:11.07},{&quot;2026-07-05&quot;:11.07},{&quot;2026-07-06&quot;:11.07},{&quot;2026-07-07&quot;:11.07},{&quot;2026-07-08&quot;:11.07},{&quot;2026-07-09&quot;:11.18},{&quot;2026-07-10&quot;:11.18},{&quot;2026-07-11&quot;:11.18},{&quot;2026-07-12&quot;:11.18},{&quot;2026-07-13&quot;:11.4},{&quot;2026-07-14&quot;:11.4},{&quot;2026-07-15&quot;:11.4},{&quot;2026-07-16&quot;:11.47},{&quot;2026-07-17&quot;:11.47},{&quot;2026-07-18&quot;:11.42},{&quot;2026-07-19&quot;:11.42},{&quot;2026-07-20&quot;:11.42},{&quot;2026-07-21&quot;:11.42},{&quot;2026-07-23&quot;:11.35},{&quot;2026-07-24&quot;:11.3},{&quot;2026-07-25&quot;:11.03},{&quot;2026-07-26&quot;:10.9},{&quot;2026-07-27&quot;:10.81},{&quot;2026-07-28&quot;:10.49},{&quot;2026-07-29&quot;:10.25},{&quot;2026-07-30&quot;:10.18},{&quot;2026-07-31&quot;:9.86},{&quot;2026-08-01&quot;:9.6},{&quot;2026-08-02&quot;:9.12},{&quot;2026-08-03&quot;:9.11},{&quot;2026-08-04&quot;:9.03},{&quot;2026-08-05&quot;:9.1},{&quot;2026-08-07&quot;:9.01},{&quot;2026-08-08&quot;:9.02},{&quot;2026-08-09&quot;:9.02},{&quot;2026-08-10&quot;:8.99},{&quot;2026-08-11&quot;:9.11},{&quot;2026-08-12&quot;:9.39},{&quot;2026-08-13&quot;:8.99},{&quot;2026-08-14&quot;:8.61},{&quot;2026-08-15&quot;:8.61},{&quot;2026-08-16&quot;:8.33},{&quot;2026-08-17&quot;:8.63},{&quot;2026-08-18&quot;:9.24},{&quot;2026-08-19&quot;:9.57},{&quot;2026-08-20&quot;:9.57},{&quot;2026-08-21&quot;:9.84},{&quot;2026-08-22&quot;:9.87},{&quot;2026-08-23&quot;:10.15},{&quot;2026-08-24&quot;:10.12},{&quot;2026-08-25&quot;:10.2},{&quot;2026-08-26&quot;:10.09},{&quot;2026-08-27&quot;:10.06},{&quot;2026-08-28&quot;:10.25},{&quot;2026-08-29&quot;:10.25},{&quot;2026-08-30&quot;:10.45},{&quot;2026-08-31&quot;:10.64},{&quot;2026-09-01&quot;:10.67},{&quot;2026-09-02&quot;:10.64},{&quot;2026-09-03&quot;:10.66},{&quot;2026-09-04&quot;:10.66},{&quot;2026-09-05&quot;:10.55},{&quot;2026-09-06&quot;:10.59},{&quot;2026-09-07&quot;:10.6},{&quot;2026-09-08&quot;:10.77},{&quot;2026-09-09&quot;:10.86},{&quot;2026-09-10&quot;:10.86},{&quot;2026-09-11&quot;:10.95}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="32807"
  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-gtc 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="text-sm font-medium text-nine-white">
            $8.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="Godless Shrine" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/6/f/6fd672bb-18cf-44e3-8dda-5310b1e0fffe.jpg?1783940089" />

        <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/6/f/6fd672bb-18cf-44e3-8dda-5310b1e0fffe.jpg?1783940089" />
    </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.56
              </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">
                $20.66
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:20.26},{&quot;2026-06-14&quot;:20.33},{&quot;2026-06-15&quot;:20.33},{&quot;2026-06-16&quot;:20.33},{&quot;2026-06-17&quot;:20.33},{&quot;2026-06-18&quot;:20.33},{&quot;2026-06-19&quot;:20.33},{&quot;2026-06-20&quot;:20.33},{&quot;2026-06-21&quot;:20.33},{&quot;2026-06-22&quot;:20.33},{&quot;2026-06-23&quot;:20.33},{&quot;2026-06-24&quot;:20.33},{&quot;2026-06-25&quot;:20.33},{&quot;2026-06-26&quot;:20.33},{&quot;2026-06-27&quot;:20.33},{&quot;2026-06-28&quot;:20.26},{&quot;2026-06-29&quot;:20.26},{&quot;2026-06-30&quot;:20.26},{&quot;2026-07-01&quot;:20.26},{&quot;2026-07-02&quot;:20.26},{&quot;2026-07-03&quot;:20.26},{&quot;2026-07-04&quot;:20.26},{&quot;2026-07-05&quot;:20.35},{&quot;2026-07-06&quot;:20.35},{&quot;2026-07-07&quot;:20.35},{&quot;2026-07-08&quot;:20.27},{&quot;2026-07-09&quot;:20.27},{&quot;2026-07-10&quot;:20.28},{&quot;2026-07-11&quot;:20.28},{&quot;2026-07-12&quot;:20.28},{&quot;2026-07-13&quot;:20.28},{&quot;2026-07-14&quot;:20.28},{&quot;2026-07-15&quot;:20.28},{&quot;2026-07-16&quot;:20.28},{&quot;2026-07-17&quot;:20.28},{&quot;2026-07-18&quot;:20.28},{&quot;2026-07-19&quot;:20.28},{&quot;2026-07-20&quot;:20.28},{&quot;2026-07-21&quot;:20.28},{&quot;2026-07-22&quot;:20.28},{&quot;2026-07-23&quot;:20.28},{&quot;2026-07-24&quot;:20.28},{&quot;2026-07-25&quot;:20.28},{&quot;2026-07-26&quot;:20.28},{&quot;2026-07-27&quot;:20.28},{&quot;2026-07-28&quot;:20.28},{&quot;2026-07-29&quot;:20.28},{&quot;2026-07-30&quot;:20.28},{&quot;2026-07-31&quot;:20.28},{&quot;2026-08-01&quot;:20.28},{&quot;2026-08-02&quot;:20.28},{&quot;2026-08-03&quot;:20.28},{&quot;2026-08-04&quot;:20.28},{&quot;2026-08-05&quot;:20.28},{&quot;2026-08-07&quot;:20.27},{&quot;2026-08-08&quot;:20.27},{&quot;2026-08-09&quot;:20.17},{&quot;2026-08-10&quot;:20.17},{&quot;2026-08-11&quot;:20.17},{&quot;2026-08-12&quot;:20.17},{&quot;2026-08-13&quot;:20.17},{&quot;2026-08-14&quot;:20.17},{&quot;2026-08-15&quot;:20.17},{&quot;2026-08-16&quot;:20.17},{&quot;2026-08-17&quot;:20.17},{&quot;2026-08-18&quot;:20.15},{&quot;2026-08-19&quot;:20.15},{&quot;2026-08-20&quot;:20.15},{&quot;2026-08-21&quot;:20.15},{&quot;2026-08-22&quot;:20.15},{&quot;2026-08-23&quot;:20.5},{&quot;2026-08-24&quot;:20.5},{&quot;2026-08-25&quot;:20.5},{&quot;2026-08-26&quot;:20.68},{&quot;2026-08-27&quot;:20.68},{&quot;2026-08-28&quot;:20.68},{&quot;2026-08-29&quot;:20.68},{&quot;2026-08-30&quot;:20.66},{&quot;2026-08-31&quot;:20.66},{&quot;2026-09-01&quot;:20.66},{&quot;2026-09-02&quot;:20.66},{&quot;2026-09-03&quot;:20.66},{&quot;2026-09-04&quot;:20.66},{&quot;2026-09-05&quot;:20.66},{&quot;2026-09-06&quot;:20.66},{&quot;2026-09-07&quot;:20.66},{&quot;2026-09-08&quot;:20.66},{&quot;2026-09-09&quot;:20.66},{&quot;2026-09-10&quot;:20.66},{&quot;2026-09-11&quot;:20.66}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:10.44},{&quot;2026-06-14&quot;:10.79},{&quot;2026-06-15&quot;:10.79},{&quot;2026-06-16&quot;:10.79},{&quot;2026-06-17&quot;:10.79},{&quot;2026-06-18&quot;:10.87},{&quot;2026-06-19&quot;:10.87},{&quot;2026-06-20&quot;:10.87},{&quot;2026-06-21&quot;:10.87},{&quot;2026-06-22&quot;:10.87},{&quot;2026-06-23&quot;:10.89},{&quot;2026-06-24&quot;:10.91},{&quot;2026-06-25&quot;:10.91},{&quot;2026-06-26&quot;:10.91},{&quot;2026-06-27&quot;:10.87},{&quot;2026-06-28&quot;:10.87},{&quot;2026-06-29&quot;:10.77},{&quot;2026-06-30&quot;:10.77},{&quot;2026-07-01&quot;:10.77},{&quot;2026-07-02&quot;:10.77},{&quot;2026-07-03&quot;:10.79},{&quot;2026-07-04&quot;:10.79},{&quot;2026-07-05&quot;:10.79},{&quot;2026-07-06&quot;:10.4},{&quot;2026-07-07&quot;:10.4},{&quot;2026-07-08&quot;:10.45},{&quot;2026-07-09&quot;:10.47},{&quot;2026-07-10&quot;:10.47},{&quot;2026-07-11&quot;:10.47},{&quot;2026-07-12&quot;:10.4},{&quot;2026-07-13&quot;:10.4},{&quot;2026-07-14&quot;:10.29},{&quot;2026-07-15&quot;:10.29},{&quot;2026-07-16&quot;:10.29},{&quot;2026-07-17&quot;:10.19},{&quot;2026-07-18&quot;:10.19},{&quot;2026-07-19&quot;:10.19},{&quot;2026-07-20&quot;:10.09},{&quot;2026-07-21&quot;:9.99},{&quot;2026-07-22&quot;:9.71},{&quot;2026-07-23&quot;:9.71},{&quot;2026-07-24&quot;:9.71},{&quot;2026-07-25&quot;:9.55},{&quot;2026-07-26&quot;:9.55},{&quot;2026-07-27&quot;:9.37},{&quot;2026-07-28&quot;:9.22},{&quot;2026-07-29&quot;:9.22},{&quot;2026-07-30&quot;:9.22},{&quot;2026-07-31&quot;:9.27},{&quot;2026-08-01&quot;:9.27},{&quot;2026-08-02&quot;:9.08},{&quot;2026-08-03&quot;:8.96},{&quot;2026-08-04&quot;:8.9},{&quot;2026-08-05&quot;:8.9},{&quot;2026-08-07&quot;:8.77},{&quot;2026-08-08&quot;:8.77},{&quot;2026-08-09&quot;:8.7},{&quot;2026-08-10&quot;:8.7},{&quot;2026-08-11&quot;:8.7},{&quot;2026-08-12&quot;:8.61},{&quot;2026-08-13&quot;:8.46},{&quot;2026-08-14&quot;:8.46},{&quot;2026-08-15&quot;:8.34},{&quot;2026-08-16&quot;:8.13},{&quot;2026-08-17&quot;:8.08},{&quot;2026-08-18&quot;:8.08},{&quot;2026-08-19&quot;:8.09},{&quot;2026-08-20&quot;:8.11},{&quot;2026-08-21&quot;:8.05},{&quot;2026-08-22&quot;:8.01},{&quot;2026-08-23&quot;:8.02},{&quot;2026-08-24&quot;:8.12},{&quot;2026-08-25&quot;:8.12},{&quot;2026-08-26&quot;:8.04},{&quot;2026-08-27&quot;:7.98},{&quot;2026-08-28&quot;:7.99},{&quot;2026-08-29&quot;:7.99},{&quot;2026-08-30&quot;:8.47},{&quot;2026-08-31&quot;:8.47},{&quot;2026-09-01&quot;:8.47},{&quot;2026-09-02&quot;:8.54},{&quot;2026-09-03&quot;:8.59},{&quot;2026-09-04&quot;:8.59},{&quot;2026-09-05&quot;:8.59},{&quot;2026-09-06&quot;:8.55},{&quot;2026-09-07&quot;:8.62},{&quot;2026-09-08&quot;:8.59},{&quot;2026-09-09&quot;:8.58},{&quot;2026-09-10&quot;:8.58},{&quot;2026-09-11&quot;:8.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="47557"
  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-mic 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">
            Diregraf Colossus
        </span>


      </div>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Diregraf Colossus" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/2/02351d67-2d73-43e3-82f7-5277c532d7ac.jpg?1783925341" />

        <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">
            Diregraf Colossus
        </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 Giant</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="Diregraf Colossus" src="https://cards.scryfall.io/large/front/0/2/02351d67-2d73-43e3-82f7-5277c532d7ac.jpg?1783925341" />
    </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.70
              </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">$3.50</span>
              <span class="text-xs text-grey-text">Credit: $4.55</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-08&quot;:6.24},{&quot;2026-06-10&quot;:6.24},{&quot;2026-06-11&quot;:6.24},{&quot;2026-06-12&quot;:6.21},{&quot;2026-06-13&quot;:6.31},{&quot;2026-06-14&quot;:6.18},{&quot;2026-06-15&quot;:6.18},{&quot;2026-06-16&quot;:6.29},{&quot;2026-06-17&quot;:6.21},{&quot;2026-06-18&quot;:6.21},{&quot;2026-06-19&quot;:6.33},{&quot;2026-06-20&quot;:6.55},{&quot;2026-06-21&quot;:6.71},{&quot;2026-06-22&quot;:6.71},{&quot;2026-06-24&quot;:6.81},{&quot;2026-06-25&quot;:6.81},{&quot;2026-06-26&quot;:6.67},{&quot;2026-06-27&quot;:6.67},{&quot;2026-06-28&quot;:6.41},{&quot;2026-06-29&quot;:6.02},{&quot;2026-06-30&quot;:6.02},{&quot;2026-07-01&quot;:6.09},{&quot;2026-07-02&quot;:6.08},{&quot;2026-07-03&quot;:5.91},{&quot;2026-07-04&quot;:6.19},{&quot;2026-07-05&quot;:6.07},{&quot;2026-07-06&quot;:6.1},{&quot;2026-07-07&quot;:5.99},{&quot;2026-07-08&quot;:5.7},{&quot;2026-07-09&quot;:5.86},{&quot;2026-07-10&quot;:5.93},{&quot;2026-07-11&quot;:5.93},{&quot;2026-07-12&quot;:6.15},{&quot;2026-07-13&quot;:6.15},{&quot;2026-07-14&quot;:6.1},{&quot;2026-07-15&quot;:6.24},{&quot;2026-07-16&quot;:6.26},{&quot;2026-07-17&quot;:6.44},{&quot;2026-07-18&quot;:6.09},{&quot;2026-07-19&quot;:5.94},{&quot;2026-07-20&quot;:6.05},{&quot;2026-07-21&quot;:5.99},{&quot;2026-07-23&quot;:5.82},{&quot;2026-07-25&quot;:5.79},{&quot;2026-07-26&quot;:5.88},{&quot;2026-07-27&quot;:5.55},{&quot;2026-07-29&quot;:4.91},{&quot;2026-07-30&quot;:4.78},{&quot;2026-07-31&quot;:4.6},{&quot;2026-08-01&quot;:4.78},{&quot;2026-08-02&quot;:4.81},{&quot;2026-08-03&quot;:5.37},{&quot;2026-08-04&quot;:5.39},{&quot;2026-08-05&quot;:5.67},{&quot;2026-08-07&quot;:6.3},{&quot;2026-08-08&quot;:6.46},{&quot;2026-08-09&quot;:6.27},{&quot;2026-08-10&quot;:6.28},{&quot;2026-08-11&quot;:6.05},{&quot;2026-08-12&quot;:5.86},{&quot;2026-08-13&quot;:5.78},{&quot;2026-08-14&quot;:5.67},{&quot;2026-08-15&quot;:5.67},{&quot;2026-08-16&quot;:5.46},{&quot;2026-08-17&quot;:5.44},{&quot;2026-08-18&quot;:5.44},{&quot;2026-08-19&quot;:5.77},{&quot;2026-08-20&quot;:5.77},{&quot;2026-08-21&quot;:6.15},{&quot;2026-08-22&quot;:6.1},{&quot;2026-08-23&quot;:5.94},{&quot;2026-08-24&quot;:5.78},{&quot;2026-08-25&quot;:5.78},{&quot;2026-08-26&quot;:6.03},{&quot;2026-08-27&quot;:5.93},{&quot;2026-08-28&quot;:5.75},{&quot;2026-08-29&quot;:5.75},{&quot;2026-08-30&quot;:5.69},{&quot;2026-08-31&quot;:5.66},{&quot;2026-09-01&quot;:5.66},{&quot;2026-09-02&quot;:5.86},{&quot;2026-09-03&quot;:5.98},{&quot;2026-09-04&quot;:5.91},{&quot;2026-09-05&quot;:5.86},{&quot;2026-09-06&quot;:5.84},{&quot;2026-09-07&quot;:5.84},{&quot;2026-09-08&quot;:5.78},{&quot;2026-09-09&quot;:5.78},{&quot;2026-09-10&quot;:5.8},{&quot;2026-09-11&quot;:5.7}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="73134"
  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-bro 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">
            Underground River
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $5.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="Underground River" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/b/4b4fa784-010d-4b27-9e35-43ad78e1ed5e.jpg?1783919991" />

        <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">
            Underground River
        </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="Underground River" src="https://cards.scryfall.io/large/front/4/b/4b4fa784-010d-4b27-9e35-43ad78e1ed5e.jpg?1783919991" />
    </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.54
              </span>

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:11.29},{&quot;2026-06-14&quot;:11.29},{&quot;2026-06-15&quot;:11.36},{&quot;2026-06-16&quot;:11.36},{&quot;2026-06-17&quot;:11.29},{&quot;2026-06-18&quot;:11.29},{&quot;2026-06-19&quot;:11.29},{&quot;2026-06-20&quot;:11.29},{&quot;2026-06-21&quot;:11.29},{&quot;2026-06-22&quot;:11.29},{&quot;2026-06-23&quot;:11.29},{&quot;2026-06-24&quot;:11.29},{&quot;2026-06-25&quot;:11.29},{&quot;2026-06-26&quot;:11.29},{&quot;2026-06-27&quot;:11.37},{&quot;2026-06-28&quot;:11.29},{&quot;2026-06-29&quot;:11.29},{&quot;2026-06-30&quot;:11.29},{&quot;2026-07-01&quot;:11.29},{&quot;2026-07-02&quot;:11.29},{&quot;2026-07-03&quot;:11.34},{&quot;2026-07-04&quot;:11.39},{&quot;2026-07-05&quot;:11.39},{&quot;2026-07-06&quot;:11.39},{&quot;2026-07-07&quot;:11.39},{&quot;2026-07-08&quot;:11.39},{&quot;2026-07-09&quot;:11.31},{&quot;2026-07-10&quot;:11.31},{&quot;2026-07-11&quot;:11.31},{&quot;2026-07-12&quot;:11.35},{&quot;2026-07-13&quot;:11.47},{&quot;2026-07-14&quot;:11.47},{&quot;2026-07-15&quot;:11.47},{&quot;2026-07-16&quot;:11.47},{&quot;2026-07-17&quot;:11.39},{&quot;2026-07-18&quot;:11.42},{&quot;2026-07-19&quot;:11.42},{&quot;2026-07-20&quot;:11.43},{&quot;2026-07-21&quot;:11.32},{&quot;2026-07-22&quot;:11.3},{&quot;2026-07-23&quot;:11.33},{&quot;2026-07-24&quot;:11.41},{&quot;2026-07-25&quot;:11.28},{&quot;2026-07-26&quot;:11.28},{&quot;2026-07-27&quot;:11.28},{&quot;2026-07-28&quot;:11.51},{&quot;2026-07-29&quot;:11.48},{&quot;2026-07-30&quot;:11.48},{&quot;2026-07-31&quot;:11.48},{&quot;2026-08-01&quot;:11.48},{&quot;2026-08-02&quot;:11.48},{&quot;2026-08-03&quot;:11.48},{&quot;2026-08-04&quot;:11.49},{&quot;2026-08-05&quot;:11.49},{&quot;2026-08-07&quot;:11.37},{&quot;2026-08-08&quot;:11.25},{&quot;2026-08-09&quot;:11.25},{&quot;2026-08-10&quot;:11.25},{&quot;2026-08-11&quot;:11.25},{&quot;2026-08-12&quot;:11.25},{&quot;2026-08-13&quot;:11.25},{&quot;2026-08-14&quot;:11.25},{&quot;2026-08-15&quot;:11.25},{&quot;2026-08-16&quot;:11.34},{&quot;2026-08-17&quot;:11.34},{&quot;2026-08-18&quot;:11.29},{&quot;2026-08-19&quot;:11.28},{&quot;2026-08-20&quot;:11.28},{&quot;2026-08-21&quot;:11.28},{&quot;2026-08-22&quot;:11.28},{&quot;2026-08-23&quot;:11.28},{&quot;2026-08-24&quot;:11.28},{&quot;2026-08-25&quot;:11.28},{&quot;2026-08-26&quot;:11.28},{&quot;2026-08-27&quot;:11.35},{&quot;2026-08-28&quot;:11.34},{&quot;2026-08-29&quot;:11.34},{&quot;2026-08-30&quot;:11.27},{&quot;2026-08-31&quot;:11.27},{&quot;2026-09-01&quot;:11.27},{&quot;2026-09-02&quot;:11.29},{&quot;2026-09-03&quot;:11.29},{&quot;2026-09-04&quot;:11.37},{&quot;2026-09-05&quot;:11.37},{&quot;2026-09-06&quot;:11.37},{&quot;2026-09-07&quot;:11.37},{&quot;2026-09-08&quot;:11.37},{&quot;2026-09-09&quot;:11.37},{&quot;2026-09-10&quot;:11.26},{&quot;2026-09-11&quot;:11.26}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:4.7},{&quot;2026-06-14&quot;:4.7},{&quot;2026-06-15&quot;:4.65},{&quot;2026-06-16&quot;:4.63},{&quot;2026-06-17&quot;:4.63},{&quot;2026-06-18&quot;:4.63},{&quot;2026-06-19&quot;:4.75},{&quot;2026-06-20&quot;:4.8},{&quot;2026-06-21&quot;:4.76},{&quot;2026-06-22&quot;:4.75},{&quot;2026-06-23&quot;:4.8},{&quot;2026-06-24&quot;:4.84},{&quot;2026-06-25&quot;:4.81},{&quot;2026-06-26&quot;:4.87},{&quot;2026-06-27&quot;:4.93},{&quot;2026-06-28&quot;:4.88},{&quot;2026-06-29&quot;:4.94},{&quot;2026-06-30&quot;:4.94},{&quot;2026-07-01&quot;:4.91},{&quot;2026-07-02&quot;:5.0},{&quot;2026-07-03&quot;:4.95},{&quot;2026-07-04&quot;:4.96},{&quot;2026-07-05&quot;:5.01},{&quot;2026-07-06&quot;:5.05},{&quot;2026-07-07&quot;:5.09},{&quot;2026-07-08&quot;:5.09},{&quot;2026-07-09&quot;:5.05},{&quot;2026-07-10&quot;:4.98},{&quot;2026-07-11&quot;:5.0},{&quot;2026-07-12&quot;:5.05},{&quot;2026-07-13&quot;:5.1},{&quot;2026-07-14&quot;:5.1},{&quot;2026-07-15&quot;:5.12},{&quot;2026-07-16&quot;:5.17},{&quot;2026-07-17&quot;:5.17},{&quot;2026-07-18&quot;:5.13},{&quot;2026-07-19&quot;:5.14},{&quot;2026-07-20&quot;:5.14},{&quot;2026-07-21&quot;:5.1},{&quot;2026-07-22&quot;:5.05},{&quot;2026-07-23&quot;:5.01},{&quot;2026-07-24&quot;:5.01},{&quot;2026-07-25&quot;:5.08},{&quot;2026-07-26&quot;:5.13},{&quot;2026-07-27&quot;:5.13},{&quot;2026-07-28&quot;:5.12},{&quot;2026-07-29&quot;:5.12},{&quot;2026-07-30&quot;:5.07},{&quot;2026-07-31&quot;:5.03},{&quot;2026-08-01&quot;:5.04},{&quot;2026-08-02&quot;:5.01},{&quot;2026-08-03&quot;:5.04},{&quot;2026-08-04&quot;:5.01},{&quot;2026-08-05&quot;:4.96},{&quot;2026-08-07&quot;:4.86},{&quot;2026-08-08&quot;:4.87},{&quot;2026-08-09&quot;:4.48},{&quot;2026-08-10&quot;:4.33},{&quot;2026-08-11&quot;:4.3},{&quot;2026-08-12&quot;:4.29},{&quot;2026-08-13&quot;:4.26},{&quot;2026-08-14&quot;:4.25},{&quot;2026-08-15&quot;:4.27},{&quot;2026-08-16&quot;:4.2},{&quot;2026-08-17&quot;:4.11},{&quot;2026-08-18&quot;:4.12},{&quot;2026-08-19&quot;:3.89},{&quot;2026-08-20&quot;:3.94},{&quot;2026-08-21&quot;:3.97},{&quot;2026-08-22&quot;:4.17},{&quot;2026-08-23&quot;:4.19},{&quot;2026-08-24&quot;:4.19},{&quot;2026-08-25&quot;:4.21},{&quot;2026-08-26&quot;:4.2},{&quot;2026-08-27&quot;:4.05},{&quot;2026-08-28&quot;:4.08},{&quot;2026-08-29&quot;:4.08},{&quot;2026-08-30&quot;:4.19},{&quot;2026-08-31&quot;:4.39},{&quot;2026-09-01&quot;:4.43},{&quot;2026-09-02&quot;:4.45},{&quot;2026-09-03&quot;:4.39},{&quot;2026-09-04&quot;:4.69},{&quot;2026-09-05&quot;:4.99},{&quot;2026-09-06&quot;:5.05},{&quot;2026-09-07&quot;:5.1},{&quot;2026-09-08&quot;:5.21},{&quot;2026-09-09&quot;:5.2},{&quot;2026-09-10&quot;:5.42},{&quot;2026-09-11&quot;:5.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="15853"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-m21 ss-rare ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Teferi&#39;s Ageless Insight
        </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">
              ↑
              10%
            </span>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Teferi&#39;s Ageless Insight" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/3/c38d1722-96b0-4756-9da9-fe18b1c80649.jpg?1783930719" />

        <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">
            Teferi&#39;s Ageless Insight
        </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-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Teferi&#39;s Ageless Insight" src="https://cards.scryfall.io/large/front/c/3/c38d1722-96b0-4756-9da9-fe18b1c80649.jpg?1783930719" />
    </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.53
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-12&quot;:4.2},{&quot;2026-06-13&quot;:4.2},{&quot;2026-06-14&quot;:4.17},{&quot;2026-06-15&quot;:4.33},{&quot;2026-06-16&quot;:4.34},{&quot;2026-06-17&quot;:4.39},{&quot;2026-06-18&quot;:4.39},{&quot;2026-06-19&quot;:4.4},{&quot;2026-06-20&quot;:4.4},{&quot;2026-06-21&quot;:4.42},{&quot;2026-06-22&quot;:4.42},{&quot;2026-06-23&quot;:4.42},{&quot;2026-06-24&quot;:4.42},{&quot;2026-06-25&quot;:4.42},{&quot;2026-06-26&quot;:4.41},{&quot;2026-06-27&quot;:4.41},{&quot;2026-06-28&quot;:4.43},{&quot;2026-06-29&quot;:4.43},{&quot;2026-06-30&quot;:4.43},{&quot;2026-07-01&quot;:4.43},{&quot;2026-07-02&quot;:4.42},{&quot;2026-07-03&quot;:4.49},{&quot;2026-07-04&quot;:4.76},{&quot;2026-07-05&quot;:5.08},{&quot;2026-07-06&quot;:5.49},{&quot;2026-07-07&quot;:5.62},{&quot;2026-07-08&quot;:5.73},{&quot;2026-07-09&quot;:5.85},{&quot;2026-07-10&quot;:5.85},{&quot;2026-07-11&quot;:5.85},{&quot;2026-07-12&quot;:5.85},{&quot;2026-07-13&quot;:5.85},{&quot;2026-07-14&quot;:5.93},{&quot;2026-07-15&quot;:5.9},{&quot;2026-07-16&quot;:5.98},{&quot;2026-07-17&quot;:6.2},{&quot;2026-07-18&quot;:6.35},{&quot;2026-07-19&quot;:6.33},{&quot;2026-07-20&quot;:6.27},{&quot;2026-07-21&quot;:6.42},{&quot;2026-07-23&quot;:6.41},{&quot;2026-07-24&quot;:6.42},{&quot;2026-07-25&quot;:6.42},{&quot;2026-07-26&quot;:6.37},{&quot;2026-07-27&quot;:6.25},{&quot;2026-07-28&quot;:6.11},{&quot;2026-07-29&quot;:6.11},{&quot;2026-07-30&quot;:5.96},{&quot;2026-07-31&quot;:5.88},{&quot;2026-08-01&quot;:5.88},{&quot;2026-08-02&quot;:5.88},{&quot;2026-08-03&quot;:5.88},{&quot;2026-08-04&quot;:5.88},{&quot;2026-08-05&quot;:5.88},{&quot;2026-08-07&quot;:5.91},{&quot;2026-08-08&quot;:5.97},{&quot;2026-08-09&quot;:5.97},{&quot;2026-08-10&quot;:5.97},{&quot;2026-08-11&quot;:5.97},{&quot;2026-08-12&quot;:5.97},{&quot;2026-08-13&quot;:5.97},{&quot;2026-08-14&quot;:5.97},{&quot;2026-08-15&quot;:5.97},{&quot;2026-08-16&quot;:5.88},{&quot;2026-08-17&quot;:5.8},{&quot;2026-08-18&quot;:5.8},{&quot;2026-08-19&quot;:5.8},{&quot;2026-08-20&quot;:5.8},{&quot;2026-08-21&quot;:5.61},{&quot;2026-08-22&quot;:5.56},{&quot;2026-08-23&quot;:5.56},{&quot;2026-08-24&quot;:5.56},{&quot;2026-08-25&quot;:5.52},{&quot;2026-08-26&quot;:5.52},{&quot;2026-08-27&quot;:5.52},{&quot;2026-08-28&quot;:5.45},{&quot;2026-08-29&quot;:5.45},{&quot;2026-08-30&quot;:5.37},{&quot;2026-08-31&quot;:5.37},{&quot;2026-09-01&quot;:5.37},{&quot;2026-09-02&quot;:5.37},{&quot;2026-09-03&quot;:5.37},{&quot;2026-09-04&quot;:5.37},{&quot;2026-09-05&quot;:5.37},{&quot;2026-09-06&quot;:5.37},{&quot;2026-09-07&quot;:5.37},{&quot;2026-09-08&quot;:5.37},{&quot;2026-09-09&quot;:5.37},{&quot;2026-09-10&quot;:5.32},{&quot;2026-09-11&quot;:5.32}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:4.24},{&quot;2026-06-13&quot;:4.4},{&quot;2026-06-14&quot;:4.32},{&quot;2026-06-15&quot;:3.71},{&quot;2026-06-16&quot;:3.67},{&quot;2026-06-17&quot;:3.75},{&quot;2026-06-18&quot;:3.83},{&quot;2026-06-19&quot;:3.74},{&quot;2026-06-20&quot;:3.87},{&quot;2026-06-21&quot;:4.59},{&quot;2026-06-22&quot;:4.81},{&quot;2026-06-23&quot;:4.9},{&quot;2026-06-24&quot;:5.2},{&quot;2026-06-25&quot;:5.4},{&quot;2026-06-26&quot;:5.65},{&quot;2026-06-27&quot;:5.63},{&quot;2026-06-28&quot;:5.5},{&quot;2026-06-29&quot;:5.88},{&quot;2026-06-30&quot;:5.75},{&quot;2026-07-01&quot;:5.76},{&quot;2026-07-02&quot;:5.84},{&quot;2026-07-03&quot;:5.42},{&quot;2026-07-04&quot;:5.52},{&quot;2026-07-05&quot;:5.47},{&quot;2026-07-06&quot;:5.17},{&quot;2026-07-07&quot;:4.73},{&quot;2026-07-08&quot;:4.38},{&quot;2026-07-09&quot;:3.81},{&quot;2026-07-10&quot;:3.69},{&quot;2026-07-11&quot;:3.51},{&quot;2026-07-12&quot;:3.6},{&quot;2026-07-13&quot;:3.98},{&quot;2026-07-14&quot;:4.36},{&quot;2026-07-15&quot;:4.37},{&quot;2026-07-16&quot;:4.75},{&quot;2026-07-17&quot;:4.92},{&quot;2026-07-18&quot;:4.69},{&quot;2026-07-19&quot;:4.51},{&quot;2026-07-20&quot;:4.58},{&quot;2026-07-21&quot;:4.96},{&quot;2026-07-23&quot;:5.25},{&quot;2026-07-24&quot;:5.1},{&quot;2026-07-25&quot;:5.46},{&quot;2026-07-26&quot;:5.46},{&quot;2026-07-27&quot;:5.48},{&quot;2026-07-28&quot;:4.89},{&quot;2026-07-29&quot;:5.26},{&quot;2026-07-30&quot;:5.22},{&quot;2026-07-31&quot;:5.45},{&quot;2026-08-01&quot;:5.42},{&quot;2026-08-02&quot;:5.38},{&quot;2026-08-03&quot;:5.68},{&quot;2026-08-04&quot;:6.08},{&quot;2026-08-05&quot;:5.99},{&quot;2026-08-07&quot;:6.19},{&quot;2026-08-08&quot;:6.04},{&quot;2026-08-09&quot;:5.55},{&quot;2026-08-10&quot;:5.28},{&quot;2026-08-11&quot;:5.21},{&quot;2026-08-12&quot;:5.21},{&quot;2026-08-13&quot;:5.21},{&quot;2026-08-14&quot;:5.38},{&quot;2026-08-15&quot;:5.38},{&quot;2026-08-16&quot;:5.98},{&quot;2026-08-17&quot;:5.99},{&quot;2026-08-18&quot;:6.22},{&quot;2026-08-19&quot;:6.49},{&quot;2026-08-20&quot;:6.49},{&quot;2026-08-21&quot;:6.37},{&quot;2026-08-22&quot;:6.07},{&quot;2026-08-23&quot;:5.54},{&quot;2026-08-24&quot;:5.48},{&quot;2026-08-25&quot;:5.5},{&quot;2026-08-26&quot;:5.51},{&quot;2026-08-27&quot;:5.51},{&quot;2026-08-28&quot;:5.51},{&quot;2026-08-29&quot;:5.51},{&quot;2026-08-30&quot;:6.04},{&quot;2026-08-31&quot;:5.9},{&quot;2026-09-01&quot;:5.9},{&quot;2026-09-02&quot;:5.63},{&quot;2026-09-03&quot;:5.44},{&quot;2026-09-04&quot;:5.39},{&quot;2026-09-05&quot;:5.04},{&quot;2026-09-06&quot;:5.4},{&quot;2026-09-07&quot;:5.4},{&quot;2026-09-08&quot;:5.31},{&quot;2026-09-09&quot;:5.34},{&quot;2026-09-10&quot;:5.31},{&quot;2026-09-11&quot;:5.53}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="47554"
  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-mic 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">
            Death Baron
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $5.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="Death Baron" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/1/11641a17-e979-4edb-adba-789f21fd017d.jpg?1783925342" />

        <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">
            Death Baron
        </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 Wizard</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Death Baron" src="https://cards.scryfall.io/large/front/1/1/11641a17-e979-4edb-adba-789f21fd017d.jpg?1783925342" />
    </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.40
              </span>

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

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$2.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-11&quot;:5.32},{&quot;2026-06-12&quot;:5.35},{&quot;2026-06-13&quot;:5.47},{&quot;2026-06-14&quot;:5.41},{&quot;2026-06-15&quot;:5.5},{&quot;2026-06-16&quot;:5.5},{&quot;2026-06-17&quot;:5.27},{&quot;2026-06-18&quot;:5.27},{&quot;2026-06-19&quot;:5.18},{&quot;2026-06-20&quot;:5.2},{&quot;2026-06-21&quot;:5.22},{&quot;2026-06-22&quot;:5.15},{&quot;2026-06-23&quot;:5.18},{&quot;2026-06-24&quot;:5.16},{&quot;2026-06-25&quot;:5.12},{&quot;2026-06-26&quot;:5.35},{&quot;2026-06-27&quot;:5.27},{&quot;2026-06-28&quot;:5.31},{&quot;2026-06-29&quot;:5.31},{&quot;2026-06-30&quot;:5.38},{&quot;2026-07-01&quot;:5.38},{&quot;2026-07-02&quot;:5.39},{&quot;2026-07-03&quot;:5.26},{&quot;2026-07-04&quot;:5.22},{&quot;2026-07-05&quot;:4.9},{&quot;2026-07-06&quot;:4.9},{&quot;2026-07-07&quot;:4.95},{&quot;2026-07-08&quot;:5.15},{&quot;2026-07-09&quot;:5.16},{&quot;2026-07-10&quot;:5.24},{&quot;2026-07-11&quot;:5.15},{&quot;2026-07-12&quot;:5.15},{&quot;2026-07-13&quot;:5.04},{&quot;2026-07-14&quot;:5.12},{&quot;2026-07-15&quot;:5.11},{&quot;2026-07-16&quot;:5.12},{&quot;2026-07-17&quot;:5.12},{&quot;2026-07-18&quot;:5.18},{&quot;2026-07-19&quot;:5.18},{&quot;2026-07-20&quot;:5.12},{&quot;2026-07-21&quot;:5.15},{&quot;2026-07-23&quot;:4.96},{&quot;2026-07-25&quot;:4.93},{&quot;2026-07-26&quot;:5.02},{&quot;2026-07-27&quot;:4.91},{&quot;2026-07-28&quot;:4.82},{&quot;2026-07-29&quot;:4.61},{&quot;2026-07-30&quot;:4.61},{&quot;2026-07-31&quot;:4.61},{&quot;2026-08-01&quot;:4.51},{&quot;2026-08-02&quot;:4.58},{&quot;2026-08-03&quot;:4.55},{&quot;2026-08-04&quot;:4.45},{&quot;2026-08-05&quot;:4.55},{&quot;2026-08-07&quot;:5.03},{&quot;2026-08-08&quot;:4.87},{&quot;2026-08-09&quot;:4.7},{&quot;2026-08-10&quot;:4.78},{&quot;2026-08-11&quot;:4.94},{&quot;2026-08-12&quot;:4.61},{&quot;2026-08-13&quot;:4.55},{&quot;2026-08-14&quot;:4.57},{&quot;2026-08-15&quot;:4.65},{&quot;2026-08-16&quot;:4.7},{&quot;2026-08-17&quot;:4.82},{&quot;2026-08-18&quot;:5.05},{&quot;2026-08-19&quot;:4.98},{&quot;2026-08-20&quot;:4.98},{&quot;2026-08-21&quot;:5.25},{&quot;2026-08-22&quot;:5.25},{&quot;2026-08-23&quot;:5.17},{&quot;2026-08-24&quot;:5.29},{&quot;2026-08-25&quot;:5.34},{&quot;2026-08-26&quot;:5.23},{&quot;2026-08-27&quot;:5.13},{&quot;2026-08-28&quot;:5.05},{&quot;2026-08-29&quot;:5.05},{&quot;2026-08-30&quot;:5.14},{&quot;2026-08-31&quot;:5.24},{&quot;2026-09-01&quot;:5.33},{&quot;2026-09-02&quot;:5.23},{&quot;2026-09-03&quot;:5.19},{&quot;2026-09-04&quot;:5.64},{&quot;2026-09-05&quot;:5.53},{&quot;2026-09-06&quot;:5.57},{&quot;2026-09-07&quot;:5.42},{&quot;2026-09-08&quot;:5.52},{&quot;2026-09-09&quot;:5.6},{&quot;2026-09-10&quot;:5.4},{&quot;2026-09-11&quot;:5.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="48930"
  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-mh1 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">
            Carrion Feeder
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Carrion Feeder
        </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 — Zombie</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="Carrion Feeder" src="https://cards.scryfall.io/large/front/0/a/0a19da90-880e-4eca-8cf7-6d7baf090d53.jpg?1783933131" />
    </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.13
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:7.14},{&quot;2026-06-14&quot;:7.14},{&quot;2026-06-15&quot;:7.14},{&quot;2026-06-16&quot;:7.14},{&quot;2026-06-17&quot;:7.14},{&quot;2026-06-18&quot;:7.14},{&quot;2026-06-19&quot;:7.14},{&quot;2026-06-20&quot;:7.14},{&quot;2026-06-21&quot;:7.14},{&quot;2026-06-22&quot;:7.14},{&quot;2026-06-23&quot;:7.14},{&quot;2026-06-24&quot;:7.14},{&quot;2026-06-25&quot;:7.14},{&quot;2026-06-26&quot;:7.14},{&quot;2026-06-27&quot;:7.14},{&quot;2026-06-28&quot;:7.14},{&quot;2026-06-29&quot;:7.14},{&quot;2026-06-30&quot;:7.14},{&quot;2026-07-01&quot;:7.14},{&quot;2026-07-02&quot;:7.14},{&quot;2026-07-03&quot;:7.14},{&quot;2026-07-04&quot;:7.21},{&quot;2026-07-05&quot;:7.21},{&quot;2026-07-06&quot;:7.21},{&quot;2026-07-07&quot;:7.23},{&quot;2026-07-08&quot;:7.23},{&quot;2026-07-09&quot;:7.23},{&quot;2026-07-10&quot;:7.31},{&quot;2026-07-11&quot;:7.31},{&quot;2026-07-12&quot;:7.31},{&quot;2026-07-13&quot;:7.31},{&quot;2026-07-14&quot;:7.31},{&quot;2026-07-15&quot;:7.31},{&quot;2026-07-16&quot;:7.86},{&quot;2026-07-17&quot;:7.86},{&quot;2026-07-18&quot;:7.86},{&quot;2026-07-19&quot;:7.86},{&quot;2026-07-20&quot;:7.86},{&quot;2026-07-21&quot;:7.86},{&quot;2026-07-22&quot;:7.86},{&quot;2026-07-23&quot;:7.86},{&quot;2026-07-24&quot;:7.86},{&quot;2026-07-25&quot;:7.98},{&quot;2026-07-26&quot;:8.12},{&quot;2026-07-27&quot;:8.12},{&quot;2026-07-28&quot;:8.12},{&quot;2026-07-29&quot;:8.12},{&quot;2026-07-30&quot;:8.12},{&quot;2026-07-31&quot;:8.12},{&quot;2026-08-01&quot;:8.12},{&quot;2026-08-02&quot;:8.12},{&quot;2026-08-03&quot;:8.12},{&quot;2026-08-04&quot;:8.12},{&quot;2026-08-05&quot;:8.12},{&quot;2026-08-07&quot;:8.12},{&quot;2026-08-08&quot;:8.12},{&quot;2026-08-09&quot;:8.42},{&quot;2026-08-10&quot;:8.42},{&quot;2026-08-11&quot;:8.42},{&quot;2026-08-12&quot;:8.42},{&quot;2026-08-13&quot;:8.42},{&quot;2026-08-14&quot;:8.42},{&quot;2026-08-15&quot;:8.42},{&quot;2026-08-16&quot;:8.42},{&quot;2026-08-17&quot;:8.42},{&quot;2026-08-18&quot;:8.42},{&quot;2026-08-19&quot;:8.42},{&quot;2026-08-20&quot;:8.42},{&quot;2026-08-21&quot;:8.42},{&quot;2026-08-22&quot;:8.42},{&quot;2026-08-23&quot;:8.42},{&quot;2026-08-24&quot;:8.42},{&quot;2026-08-25&quot;:8.39},{&quot;2026-08-26&quot;:8.39},{&quot;2026-08-27&quot;:8.39},{&quot;2026-08-28&quot;:8.39},{&quot;2026-08-29&quot;:8.39},{&quot;2026-08-30&quot;:8.42},{&quot;2026-08-31&quot;:8.42},{&quot;2026-09-01&quot;:8.42},{&quot;2026-09-02&quot;:8.42},{&quot;2026-09-03&quot;:8.33},{&quot;2026-09-04&quot;:8.46},{&quot;2026-09-05&quot;:8.46},{&quot;2026-09-06&quot;:8.46},{&quot;2026-09-07&quot;:8.5},{&quot;2026-09-08&quot;:8.5},{&quot;2026-09-09&quot;:8.5},{&quot;2026-09-10&quot;:8.5},{&quot;2026-09-11&quot;:8.5}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:4.49},{&quot;2026-06-14&quot;:4.47},{&quot;2026-06-15&quot;:4.52},{&quot;2026-06-16&quot;:4.57},{&quot;2026-06-17&quot;:4.57},{&quot;2026-06-18&quot;:4.36},{&quot;2026-06-19&quot;:4.34},{&quot;2026-06-20&quot;:4.06},{&quot;2026-06-21&quot;:3.77},{&quot;2026-06-22&quot;:3.74},{&quot;2026-06-23&quot;:3.66},{&quot;2026-06-24&quot;:3.9},{&quot;2026-06-25&quot;:3.89},{&quot;2026-06-26&quot;:3.98},{&quot;2026-06-27&quot;:3.95},{&quot;2026-06-28&quot;:3.81},{&quot;2026-06-29&quot;:3.83},{&quot;2026-06-30&quot;:3.82},{&quot;2026-07-01&quot;:3.81},{&quot;2026-07-02&quot;:3.81},{&quot;2026-07-03&quot;:3.92},{&quot;2026-07-04&quot;:3.9},{&quot;2026-07-05&quot;:4.03},{&quot;2026-07-06&quot;:4.14},{&quot;2026-07-07&quot;:4.41},{&quot;2026-07-08&quot;:4.45},{&quot;2026-07-09&quot;:4.42},{&quot;2026-07-10&quot;:4.37},{&quot;2026-07-11&quot;:4.3},{&quot;2026-07-12&quot;:4.41},{&quot;2026-07-13&quot;:4.54},{&quot;2026-07-14&quot;:4.43},{&quot;2026-07-15&quot;:4.54},{&quot;2026-07-16&quot;:4.15},{&quot;2026-07-17&quot;:4.14},{&quot;2026-07-18&quot;:4.06},{&quot;2026-07-19&quot;:4.02},{&quot;2026-07-20&quot;:3.87},{&quot;2026-07-21&quot;:4.1},{&quot;2026-07-22&quot;:4.2},{&quot;2026-07-23&quot;:4.1},{&quot;2026-07-24&quot;:4.0},{&quot;2026-07-25&quot;:3.47},{&quot;2026-07-26&quot;:3.46},{&quot;2026-07-27&quot;:3.52},{&quot;2026-07-28&quot;:3.8},{&quot;2026-07-29&quot;:4.04},{&quot;2026-07-30&quot;:4.26},{&quot;2026-07-31&quot;:4.47},{&quot;2026-08-01&quot;:4.43},{&quot;2026-08-02&quot;:4.24},{&quot;2026-08-03&quot;:4.33},{&quot;2026-08-04&quot;:4.28},{&quot;2026-08-05&quot;:4.34},{&quot;2026-08-07&quot;:4.33},{&quot;2026-08-08&quot;:4.44},{&quot;2026-08-09&quot;:4.41},{&quot;2026-08-10&quot;:4.59},{&quot;2026-08-11&quot;:4.68},{&quot;2026-08-12&quot;:4.22},{&quot;2026-08-13&quot;:4.11},{&quot;2026-08-14&quot;:4.45},{&quot;2026-08-15&quot;:4.33},{&quot;2026-08-16&quot;:4.14},{&quot;2026-08-17&quot;:4.49},{&quot;2026-08-18&quot;:4.44},{&quot;2026-08-19&quot;:4.61},{&quot;2026-08-20&quot;:4.45},{&quot;2026-08-21&quot;:4.49},{&quot;2026-08-22&quot;:4.37},{&quot;2026-08-23&quot;:4.32},{&quot;2026-08-24&quot;:4.51},{&quot;2026-08-25&quot;:4.42},{&quot;2026-08-26&quot;:4.51},{&quot;2026-08-27&quot;:4.43},{&quot;2026-08-28&quot;:4.68},{&quot;2026-08-29&quot;:4.68},{&quot;2026-08-30&quot;:4.58},{&quot;2026-08-31&quot;:4.55},{&quot;2026-09-01&quot;:4.6},{&quot;2026-09-02&quot;:4.53},{&quot;2026-09-03&quot;:4.62},{&quot;2026-09-04&quot;:4.61},{&quot;2026-09-05&quot;:4.54},{&quot;2026-09-06&quot;:4.45},{&quot;2026-09-07&quot;:4.24},{&quot;2026-09-08&quot;:4.25},{&quot;2026-09-09&quot;:4.1},{&quot;2026-09-10&quot;:4.15},{&quot;2026-09-11&quot;:4.13}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $3.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="Unholy Grotto" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/8/a8a7f3c1-3afb-4fd3-8b33-d3e66e388af5.jpg?1783925190" />

        <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">
            Unholy Grotto
        </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="Unholy Grotto" src="https://cards.scryfall.io/large/front/a/8/a8a7f3c1-3afb-4fd3-8b33-d3e66e388af5.jpg?1783925190" />
    </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.84
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:3.72},{&quot;2026-06-11&quot;:3.72},{&quot;2026-06-12&quot;:3.72},{&quot;2026-06-13&quot;:3.72},{&quot;2026-06-14&quot;:3.72},{&quot;2026-06-15&quot;:3.72},{&quot;2026-06-16&quot;:3.72},{&quot;2026-06-17&quot;:3.72},{&quot;2026-06-18&quot;:3.72},{&quot;2026-06-19&quot;:3.72},{&quot;2026-06-20&quot;:3.72},{&quot;2026-06-21&quot;:3.72},{&quot;2026-06-22&quot;:3.72},{&quot;2026-06-23&quot;:3.72},{&quot;2026-06-24&quot;:3.72},{&quot;2026-06-25&quot;:3.72},{&quot;2026-06-26&quot;:3.72},{&quot;2026-06-27&quot;:3.72},{&quot;2026-06-28&quot;:3.72},{&quot;2026-06-29&quot;:3.72},{&quot;2026-06-30&quot;:3.72},{&quot;2026-07-01&quot;:3.72},{&quot;2026-07-02&quot;:3.72},{&quot;2026-07-03&quot;:3.72},{&quot;2026-07-04&quot;:3.74},{&quot;2026-07-05&quot;:3.74},{&quot;2026-07-06&quot;:3.74},{&quot;2026-07-07&quot;:3.74},{&quot;2026-07-08&quot;:3.74},{&quot;2026-07-09&quot;:3.74},{&quot;2026-07-10&quot;:3.74},{&quot;2026-07-11&quot;:3.74},{&quot;2026-07-12&quot;:3.74},{&quot;2026-07-13&quot;:3.74},{&quot;2026-07-14&quot;:3.74},{&quot;2026-07-15&quot;:3.69},{&quot;2026-07-16&quot;:3.69},{&quot;2026-07-17&quot;:3.69},{&quot;2026-07-18&quot;:3.69},{&quot;2026-07-19&quot;:3.69},{&quot;2026-07-20&quot;:3.69},{&quot;2026-07-21&quot;:3.69},{&quot;2026-07-23&quot;:3.74},{&quot;2026-07-25&quot;:3.77},{&quot;2026-07-26&quot;:3.82},{&quot;2026-07-27&quot;:3.82},{&quot;2026-07-29&quot;:3.82},{&quot;2026-07-30&quot;:3.82},{&quot;2026-07-31&quot;:3.86},{&quot;2026-08-01&quot;:3.86},{&quot;2026-08-02&quot;:3.98},{&quot;2026-08-03&quot;:3.98},{&quot;2026-08-04&quot;:3.98},{&quot;2026-08-05&quot;:3.98},{&quot;2026-08-07&quot;:3.98},{&quot;2026-08-08&quot;:3.98},{&quot;2026-08-09&quot;:3.98},{&quot;2026-08-10&quot;:3.98},{&quot;2026-08-11&quot;:3.98},{&quot;2026-08-12&quot;:3.87},{&quot;2026-08-13&quot;:3.87},{&quot;2026-08-14&quot;:3.87},{&quot;2026-08-15&quot;:3.87},{&quot;2026-08-16&quot;:3.87},{&quot;2026-08-17&quot;:3.87},{&quot;2026-08-18&quot;:3.87},{&quot;2026-08-19&quot;:3.87},{&quot;2026-08-20&quot;:3.87},{&quot;2026-08-21&quot;:3.87},{&quot;2026-08-22&quot;:3.87},{&quot;2026-08-23&quot;:3.87},{&quot;2026-08-24&quot;:3.87},{&quot;2026-08-25&quot;:3.87},{&quot;2026-08-26&quot;:3.87},{&quot;2026-08-27&quot;:3.87},{&quot;2026-08-28&quot;:3.87},{&quot;2026-08-29&quot;:3.87},{&quot;2026-08-30&quot;:3.87},{&quot;2026-08-31&quot;:3.87},{&quot;2026-09-01&quot;:3.87},{&quot;2026-09-02&quot;:3.82},{&quot;2026-09-03&quot;:3.82},{&quot;2026-09-04&quot;:3.82},{&quot;2026-09-05&quot;:3.82},{&quot;2026-09-06&quot;:3.82},{&quot;2026-09-07&quot;:3.82},{&quot;2026-09-08&quot;:3.82},{&quot;2026-09-09&quot;:3.82},{&quot;2026-09-10&quot;:3.82},{&quot;2026-09-11&quot;:3.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="9327"
  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-c18 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">
            Varina, Lich Queen
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $3.20
          </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="Varina, Lich Queen" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/1/715af497-ea9d-440e-90eb-5da45a61c1ac.jpg?1783934327" />

        <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">
            Varina, Lich Queen
        </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 — Zombie Wizard</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></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="Varina, Lich Queen" src="https://cards.scryfall.io/large/front/7/1/715af497-ea9d-440e-90eb-5da45a61c1ac.jpg?1783934327" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:3.91},{&quot;2026-06-14&quot;:3.91},{&quot;2026-06-15&quot;:3.9},{&quot;2026-06-16&quot;:3.87},{&quot;2026-06-17&quot;:3.87},{&quot;2026-06-18&quot;:3.9},{&quot;2026-06-19&quot;:3.92},{&quot;2026-06-20&quot;:3.84},{&quot;2026-06-21&quot;:3.97},{&quot;2026-06-22&quot;:4.09},{&quot;2026-06-23&quot;:4.24},{&quot;2026-06-24&quot;:4.17},{&quot;2026-06-25&quot;:4.17},{&quot;2026-06-26&quot;:4.04},{&quot;2026-06-27&quot;:3.9},{&quot;2026-06-28&quot;:3.9},{&quot;2026-06-29&quot;:3.9},{&quot;2026-06-30&quot;:3.98},{&quot;2026-07-01&quot;:3.85},{&quot;2026-07-02&quot;:3.85},{&quot;2026-07-03&quot;:3.85},{&quot;2026-07-04&quot;:3.85},{&quot;2026-07-05&quot;:3.85},{&quot;2026-07-06&quot;:3.85},{&quot;2026-07-07&quot;:3.79},{&quot;2026-07-08&quot;:3.84},{&quot;2026-07-09&quot;:3.84},{&quot;2026-07-10&quot;:3.84},{&quot;2026-07-11&quot;:3.84},{&quot;2026-07-12&quot;:3.84},{&quot;2026-07-13&quot;:3.84},{&quot;2026-07-14&quot;:3.84},{&quot;2026-07-15&quot;:3.83},{&quot;2026-07-16&quot;:3.83},{&quot;2026-07-17&quot;:3.83},{&quot;2026-07-18&quot;:3.83},{&quot;2026-07-19&quot;:3.83},{&quot;2026-07-20&quot;:3.69},{&quot;2026-07-21&quot;:3.79},{&quot;2026-07-22&quot;:3.9},{&quot;2026-07-23&quot;:3.73},{&quot;2026-07-24&quot;:3.73},{&quot;2026-07-25&quot;:3.79},{&quot;2026-07-26&quot;:3.79},{&quot;2026-07-27&quot;:3.79},{&quot;2026-07-28&quot;:3.8},{&quot;2026-07-29&quot;:3.73},{&quot;2026-07-30&quot;:3.73},{&quot;2026-07-31&quot;:3.56},{&quot;2026-08-01&quot;:3.57},{&quot;2026-08-02&quot;:3.57},{&quot;2026-08-03&quot;:3.57},{&quot;2026-08-04&quot;:3.57},{&quot;2026-08-05&quot;:3.33},{&quot;2026-08-07&quot;:3.33},{&quot;2026-08-08&quot;:3.31},{&quot;2026-08-09&quot;:3.37},{&quot;2026-08-10&quot;:3.37},{&quot;2026-08-11&quot;:3.36},{&quot;2026-08-12&quot;:3.34},{&quot;2026-08-13&quot;:3.44},{&quot;2026-08-14&quot;:3.49},{&quot;2026-08-15&quot;:3.39},{&quot;2026-08-16&quot;:3.39},{&quot;2026-08-17&quot;:3.39},{&quot;2026-08-18&quot;:3.39},{&quot;2026-08-19&quot;:3.39},{&quot;2026-08-20&quot;:3.39},{&quot;2026-08-21&quot;:3.31},{&quot;2026-08-22&quot;:3.31},{&quot;2026-08-23&quot;:3.24},{&quot;2026-08-24&quot;:3.24},{&quot;2026-08-25&quot;:3.11},{&quot;2026-08-26&quot;:3.17},{&quot;2026-08-27&quot;:3.05},{&quot;2026-08-28&quot;:3.12},{&quot;2026-08-29&quot;:3.12},{&quot;2026-08-30&quot;:3.12},{&quot;2026-08-31&quot;:3.26},{&quot;2026-09-01&quot;:3.26},{&quot;2026-09-02&quot;:3.26},{&quot;2026-09-03&quot;:3.26},{&quot;2026-09-04&quot;:3.26},{&quot;2026-09-05&quot;:3.26},{&quot;2026-09-06&quot;:3.26},{&quot;2026-09-07&quot;:3.26},{&quot;2026-09-08&quot;:3.23},{&quot;2026-09-09&quot;:3.2},{&quot;2026-09-10&quot;:3.2},{&quot;2026-09-11&quot;:3.2}],&quot;normal&quot;:[]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="20574"
  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">
            Anguished Unmaking
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Anguished Unmaking" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/6/16de91dc-5d82-43ec-84ad-67bae644795a.jpg?1783921856" />

        <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">
            Anguished Unmaking
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Anguished Unmaking" src="https://cards.scryfall.io/large/front/1/6/16de91dc-5d82-43ec-84ad-67bae644795a.jpg?1783921856" />
    </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.61
              </span>

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-08&quot;:3.55},{&quot;2026-06-10&quot;:3.55},{&quot;2026-06-11&quot;:3.55},{&quot;2026-06-12&quot;:3.55},{&quot;2026-06-13&quot;:3.57},{&quot;2026-06-14&quot;:3.57},{&quot;2026-06-15&quot;:3.57},{&quot;2026-06-16&quot;:3.57},{&quot;2026-06-17&quot;:3.57},{&quot;2026-06-18&quot;:3.57},{&quot;2026-06-19&quot;:3.57},{&quot;2026-06-20&quot;:3.57},{&quot;2026-06-21&quot;:3.57},{&quot;2026-06-22&quot;:3.57},{&quot;2026-06-24&quot;:3.57},{&quot;2026-06-25&quot;:3.57},{&quot;2026-06-26&quot;:3.57},{&quot;2026-06-27&quot;:3.5},{&quot;2026-06-28&quot;:3.5},{&quot;2026-06-29&quot;:3.5},{&quot;2026-06-30&quot;:3.5},{&quot;2026-07-01&quot;:3.5},{&quot;2026-07-02&quot;:3.5},{&quot;2026-07-03&quot;:3.5},{&quot;2026-07-04&quot;:3.5},{&quot;2026-07-05&quot;:3.5},{&quot;2026-07-06&quot;:3.52},{&quot;2026-07-07&quot;:3.52},{&quot;2026-07-08&quot;:3.52},{&quot;2026-07-09&quot;:3.52},{&quot;2026-07-10&quot;:3.52},{&quot;2026-07-11&quot;:3.52},{&quot;2026-07-12&quot;:3.52},{&quot;2026-07-13&quot;:3.5},{&quot;2026-07-14&quot;:3.5},{&quot;2026-07-15&quot;:3.5},{&quot;2026-07-16&quot;:3.5},{&quot;2026-07-17&quot;:3.5},{&quot;2026-07-18&quot;:3.5},{&quot;2026-07-19&quot;:3.5},{&quot;2026-07-20&quot;:3.5},{&quot;2026-07-21&quot;:3.5},{&quot;2026-07-23&quot;:3.5},{&quot;2026-07-25&quot;:3.51},{&quot;2026-07-26&quot;:3.51},{&quot;2026-07-27&quot;:3.51},{&quot;2026-07-29&quot;:3.49},{&quot;2026-07-30&quot;:3.49},{&quot;2026-07-31&quot;:3.47},{&quot;2026-08-01&quot;:3.47},{&quot;2026-08-02&quot;:3.47},{&quot;2026-08-03&quot;:3.47},{&quot;2026-08-04&quot;:3.47},{&quot;2026-08-05&quot;:3.43},{&quot;2026-08-07&quot;:3.52},{&quot;2026-08-08&quot;:3.52},{&quot;2026-08-09&quot;:3.53},{&quot;2026-08-10&quot;:3.53},{&quot;2026-08-11&quot;:3.53},{&quot;2026-08-12&quot;:3.53},{&quot;2026-08-13&quot;:3.53},{&quot;2026-08-14&quot;:3.53},{&quot;2026-08-15&quot;:3.53},{&quot;2026-08-16&quot;:3.53},{&quot;2026-08-17&quot;:3.53},{&quot;2026-08-18&quot;:3.53},{&quot;2026-08-19&quot;:3.53},{&quot;2026-08-20&quot;:3.53},{&quot;2026-08-21&quot;:3.53},{&quot;2026-08-22&quot;:3.53},{&quot;2026-08-23&quot;:3.53},{&quot;2026-08-24&quot;:3.53},{&quot;2026-08-25&quot;:3.53},{&quot;2026-08-26&quot;:3.53},{&quot;2026-08-27&quot;:3.53},{&quot;2026-08-28&quot;:3.53},{&quot;2026-08-29&quot;:3.53},{&quot;2026-08-30&quot;:3.53},{&quot;2026-08-31&quot;:3.55},{&quot;2026-09-01&quot;:3.55},{&quot;2026-09-02&quot;:3.55},{&quot;2026-09-03&quot;:3.56},{&quot;2026-09-04&quot;:3.56},{&quot;2026-09-05&quot;:3.56},{&quot;2026-09-06&quot;:3.56},{&quot;2026-09-07&quot;:3.58},{&quot;2026-09-08&quot;:3.56},{&quot;2026-09-09&quot;:3.56},{&quot;2026-09-10&quot;:3.56},{&quot;2026-09-11&quot;:3.56}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:2.9},{&quot;2026-06-10&quot;:2.9},{&quot;2026-06-11&quot;:2.9},{&quot;2026-06-12&quot;:2.9},{&quot;2026-06-13&quot;:2.94},{&quot;2026-06-14&quot;:2.82},{&quot;2026-06-15&quot;:2.92},{&quot;2026-06-16&quot;:2.88},{&quot;2026-06-17&quot;:2.83},{&quot;2026-06-18&quot;:2.83},{&quot;2026-06-19&quot;:2.83},{&quot;2026-06-20&quot;:2.83},{&quot;2026-06-21&quot;:2.83},{&quot;2026-06-22&quot;:2.83},{&quot;2026-06-24&quot;:2.76},{&quot;2026-06-25&quot;:2.73},{&quot;2026-06-26&quot;:2.71},{&quot;2026-06-27&quot;:2.64},{&quot;2026-06-28&quot;:2.67},{&quot;2026-06-29&quot;:2.67},{&quot;2026-06-30&quot;:2.65},{&quot;2026-07-01&quot;:2.65},{&quot;2026-07-02&quot;:2.58},{&quot;2026-07-03&quot;:2.6},{&quot;2026-07-04&quot;:2.58},{&quot;2026-07-05&quot;:2.66},{&quot;2026-07-06&quot;:2.66},{&quot;2026-07-07&quot;:2.61},{&quot;2026-07-08&quot;:2.53},{&quot;2026-07-09&quot;:2.52},{&quot;2026-07-10&quot;:2.53},{&quot;2026-07-11&quot;:2.5},{&quot;2026-07-12&quot;:2.45},{&quot;2026-07-13&quot;:2.42},{&quot;2026-07-14&quot;:2.29},{&quot;2026-07-15&quot;:2.2},{&quot;2026-07-16&quot;:2.29},{&quot;2026-07-17&quot;:2.2},{&quot;2026-07-18&quot;:2.14},{&quot;2026-07-19&quot;:2.08},{&quot;2026-07-20&quot;:2.23},{&quot;2026-07-21&quot;:2.15},{&quot;2026-07-23&quot;:2.02},{&quot;2026-07-25&quot;:2.03},{&quot;2026-07-26&quot;:2.03},{&quot;2026-07-27&quot;:2.23},{&quot;2026-07-29&quot;:2.13},{&quot;2026-07-30&quot;:2.13},{&quot;2026-07-31&quot;:2.13},{&quot;2026-08-01&quot;:2.15},{&quot;2026-08-02&quot;:2.15},{&quot;2026-08-03&quot;:2.2},{&quot;2026-08-04&quot;:2.2},{&quot;2026-08-05&quot;:2.2},{&quot;2026-08-07&quot;:2.2},{&quot;2026-08-08&quot;:2.24},{&quot;2026-08-09&quot;:2.18},{&quot;2026-08-10&quot;:2.19},{&quot;2026-08-11&quot;:2.19},{&quot;2026-08-12&quot;:2.19},{&quot;2026-08-13&quot;:2.13},{&quot;2026-08-14&quot;:2.14},{&quot;2026-08-15&quot;:2.15},{&quot;2026-08-16&quot;:2.15},{&quot;2026-08-17&quot;:2.19},{&quot;2026-08-18&quot;:2.15},{&quot;2026-08-19&quot;:2.15},{&quot;2026-08-20&quot;:2.15},{&quot;2026-08-21&quot;:2.15},{&quot;2026-08-22&quot;:2.17},{&quot;2026-08-23&quot;:2.18},{&quot;2026-08-24&quot;:2.23},{&quot;2026-08-25&quot;:2.23},{&quot;2026-08-26&quot;:2.23},{&quot;2026-08-27&quot;:2.16},{&quot;2026-08-28&quot;:2.16},{&quot;2026-08-29&quot;:2.16},{&quot;2026-08-30&quot;:2.21},{&quot;2026-08-31&quot;:2.21},{&quot;2026-09-01&quot;:2.21},{&quot;2026-09-02&quot;:2.36},{&quot;2026-09-03&quot;:2.36},{&quot;2026-09-04&quot;:2.36},{&quot;2026-09-05&quot;:2.35},{&quot;2026-09-06&quot;:2.35},{&quot;2026-09-07&quot;:2.39},{&quot;2026-09-08&quot;:2.39},{&quot;2026-09-09&quot;:2.49},{&quot;2026-09-10&quot;:2.49},{&quot;2026-09-11&quot;:2.61}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="14359"
  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">
            Drown in the Loch
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Drown in the Loch" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/e/b/eb7b9762-740b-4c1c-a411-20dbf023aea5.jpg?1783922399" />

        <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">
            Drown in the Loch
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-u'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Drown in the Loch" src="https://cards.scryfall.io/large/front/e/b/eb7b9762-740b-4c1c-a411-20dbf023aea5.jpg?1783922399" />
    </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.35
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-08&quot;:1.37},{&quot;2026-06-10&quot;:1.41},{&quot;2026-06-11&quot;:1.43},{&quot;2026-06-12&quot;:1.44},{&quot;2026-06-13&quot;:1.45},{&quot;2026-06-14&quot;:1.45},{&quot;2026-06-15&quot;:1.45},{&quot;2026-06-16&quot;:1.45},{&quot;2026-06-17&quot;:1.45},{&quot;2026-06-18&quot;:1.54},{&quot;2026-06-19&quot;:1.6},{&quot;2026-06-20&quot;:1.83},{&quot;2026-06-21&quot;:1.9},{&quot;2026-06-22&quot;:2.09},{&quot;2026-06-24&quot;:2.57},{&quot;2026-06-25&quot;:2.75},{&quot;2026-06-26&quot;:2.75},{&quot;2026-06-27&quot;:2.79},{&quot;2026-06-28&quot;:2.79},{&quot;2026-06-29&quot;:3.0},{&quot;2026-06-30&quot;:4.14},{&quot;2026-07-01&quot;:3.96},{&quot;2026-07-02&quot;:3.96},{&quot;2026-07-03&quot;:3.96},{&quot;2026-07-04&quot;:4.75},{&quot;2026-07-05&quot;:4.75},{&quot;2026-07-06&quot;:5.31},{&quot;2026-07-07&quot;:5.86},{&quot;2026-07-08&quot;:5.91},{&quot;2026-07-09&quot;:5.91},{&quot;2026-07-10&quot;:5.84},{&quot;2026-07-11&quot;:5.84},{&quot;2026-07-12&quot;:5.85},{&quot;2026-07-13&quot;:5.85},{&quot;2026-07-14&quot;:5.85},{&quot;2026-07-15&quot;:5.83},{&quot;2026-07-16&quot;:5.83},{&quot;2026-07-17&quot;:5.83},{&quot;2026-07-18&quot;:5.83},{&quot;2026-07-19&quot;:5.94},{&quot;2026-07-20&quot;:5.94},{&quot;2026-07-21&quot;:5.94},{&quot;2026-07-23&quot;:5.94},{&quot;2026-07-25&quot;:5.94},{&quot;2026-07-26&quot;:5.76},{&quot;2026-07-27&quot;:5.89},{&quot;2026-07-29&quot;:5.89},{&quot;2026-07-30&quot;:5.89},{&quot;2026-07-31&quot;:5.89},{&quot;2026-08-01&quot;:5.97},{&quot;2026-08-02&quot;:5.97},{&quot;2026-08-03&quot;:5.97},{&quot;2026-08-04&quot;:5.94},{&quot;2026-08-05&quot;:5.94},{&quot;2026-08-07&quot;:5.81},{&quot;2026-08-08&quot;:5.28},{&quot;2026-08-09&quot;:5.28},{&quot;2026-08-10&quot;:5.28},{&quot;2026-08-11&quot;:5.28},{&quot;2026-08-12&quot;:5.28},{&quot;2026-08-13&quot;:5.28},{&quot;2026-08-14&quot;:4.79},{&quot;2026-08-15&quot;:4.71},{&quot;2026-08-16&quot;:4.71},{&quot;2026-08-17&quot;:4.58},{&quot;2026-08-18&quot;:4.7},{&quot;2026-08-19&quot;:4.7},{&quot;2026-08-20&quot;:4.7},{&quot;2026-08-21&quot;:4.63},{&quot;2026-08-22&quot;:3.85},{&quot;2026-08-23&quot;:3.66},{&quot;2026-08-24&quot;:3.66},{&quot;2026-08-25&quot;:3.66},{&quot;2026-08-26&quot;:3.66},{&quot;2026-08-27&quot;:3.78},{&quot;2026-08-28&quot;:3.69},{&quot;2026-08-29&quot;:3.69},{&quot;2026-08-30&quot;:3.69},{&quot;2026-08-31&quot;:2.26},{&quot;2026-09-01&quot;:2.26},{&quot;2026-09-02&quot;:2.26},{&quot;2026-09-03&quot;:2.3},{&quot;2026-09-04&quot;:2.3},{&quot;2026-09-05&quot;:2.25},{&quot;2026-09-06&quot;:2.3},{&quot;2026-09-07&quot;:2.3},{&quot;2026-09-08&quot;:2.3},{&quot;2026-09-09&quot;:2.3},{&quot;2026-09-10&quot;:2.35},{&quot;2026-09-11&quot;:2.35}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="47530"
  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-mic 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">
            Rooftop Storm
        </span>


      </div>

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Rooftop Storm" src="https://cards.scryfall.io/large/front/8/0/80cdee59-0ead-4b95-a348-c1e360d781ab.jpg?1783925343" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:1.77},{&quot;2026-06-11&quot;:1.81},{&quot;2026-06-12&quot;:1.85},{&quot;2026-06-13&quot;:1.89},{&quot;2026-06-14&quot;:1.9},{&quot;2026-06-15&quot;:1.97},{&quot;2026-06-16&quot;:2.04},{&quot;2026-06-17&quot;:2.04},{&quot;2026-06-18&quot;:1.98},{&quot;2026-06-19&quot;:1.98},{&quot;2026-06-20&quot;:2.0},{&quot;2026-06-21&quot;:2.06},{&quot;2026-06-22&quot;:2.16},{&quot;2026-06-23&quot;:2.25},{&quot;2026-06-24&quot;:2.38},{&quot;2026-06-25&quot;:2.38},{&quot;2026-06-26&quot;:2.38},{&quot;2026-06-27&quot;:2.34},{&quot;2026-06-28&quot;:2.3},{&quot;2026-06-29&quot;:2.38},{&quot;2026-06-30&quot;:2.43},{&quot;2026-07-01&quot;:2.42},{&quot;2026-07-02&quot;:2.42},{&quot;2026-07-03&quot;:2.38},{&quot;2026-07-04&quot;:2.43},{&quot;2026-07-05&quot;:2.44},{&quot;2026-07-06&quot;:2.38},{&quot;2026-07-07&quot;:2.56},{&quot;2026-07-08&quot;:2.48},{&quot;2026-07-09&quot;:2.71},{&quot;2026-07-10&quot;:2.73},{&quot;2026-07-11&quot;:2.73},{&quot;2026-07-12&quot;:2.83},{&quot;2026-07-13&quot;:2.9},{&quot;2026-07-14&quot;:3.09},{&quot;2026-07-15&quot;:3.12},{&quot;2026-07-16&quot;:3.01},{&quot;2026-07-17&quot;:3.01},{&quot;2026-07-18&quot;:2.89},{&quot;2026-07-19&quot;:2.69},{&quot;2026-07-20&quot;:2.57},{&quot;2026-07-21&quot;:2.42},{&quot;2026-07-23&quot;:2.3},{&quot;2026-07-25&quot;:2.29},{&quot;2026-07-26&quot;:2.18},{&quot;2026-07-27&quot;:2.15},{&quot;2026-07-29&quot;:1.95},{&quot;2026-07-30&quot;:1.95},{&quot;2026-07-31&quot;:1.98},{&quot;2026-08-01&quot;:2.24},{&quot;2026-08-02&quot;:2.32},{&quot;2026-08-03&quot;:2.39},{&quot;2026-08-04&quot;:2.49},{&quot;2026-08-05&quot;:2.47},{&quot;2026-08-07&quot;:2.47},{&quot;2026-08-08&quot;:2.5},{&quot;2026-08-09&quot;:2.5},{&quot;2026-08-10&quot;:2.51},{&quot;2026-08-11&quot;:2.53},{&quot;2026-08-12&quot;:2.53},{&quot;2026-08-13&quot;:2.53},{&quot;2026-08-14&quot;:2.45},{&quot;2026-08-15&quot;:2.47},{&quot;2026-08-16&quot;:2.47},{&quot;2026-08-17&quot;:2.53},{&quot;2026-08-18&quot;:2.51},{&quot;2026-08-19&quot;:2.52},{&quot;2026-08-20&quot;:2.52},{&quot;2026-08-21&quot;:2.42},{&quot;2026-08-22&quot;:2.48},{&quot;2026-08-23&quot;:2.31},{&quot;2026-08-24&quot;:2.38},{&quot;2026-08-25&quot;:2.38},{&quot;2026-08-26&quot;:2.44},{&quot;2026-08-27&quot;:2.36},{&quot;2026-08-28&quot;:2.36},{&quot;2026-08-29&quot;:2.36},{&quot;2026-08-30&quot;:2.25},{&quot;2026-08-31&quot;:2.25},{&quot;2026-09-01&quot;:2.25},{&quot;2026-09-02&quot;:2.18},{&quot;2026-09-03&quot;:2.21},{&quot;2026-09-04&quot;:2.28},{&quot;2026-09-05&quot;:2.36},{&quot;2026-09-06&quot;:2.32},{&quot;2026-09-07&quot;:2.13},{&quot;2026-09-08&quot;:1.96},{&quot;2026-09-09&quot;:1.96},{&quot;2026-09-10&quot;:2.14},{&quot;2026-09-11&quot;:2.32}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

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

        <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">
            Gravecrawler
        </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</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="Gravecrawler" src="https://cards.scryfall.io/large/front/9/5/951ff2ed-9af0-4551-929a-ba6679fc2e15.jpg?1783921905" />
    </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.19
              </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">
                $4.65
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:4.86},{&quot;2026-06-11&quot;:4.86},{&quot;2026-06-12&quot;:4.86},{&quot;2026-06-13&quot;:4.86},{&quot;2026-06-14&quot;:4.86},{&quot;2026-06-15&quot;:4.86},{&quot;2026-06-16&quot;:4.86},{&quot;2026-06-17&quot;:4.86},{&quot;2026-06-18&quot;:4.86},{&quot;2026-06-19&quot;:4.86},{&quot;2026-06-20&quot;:4.86},{&quot;2026-06-21&quot;:4.86},{&quot;2026-06-22&quot;:4.86},{&quot;2026-06-23&quot;:4.86},{&quot;2026-06-24&quot;:4.83},{&quot;2026-06-25&quot;:4.83},{&quot;2026-06-26&quot;:4.84},{&quot;2026-06-27&quot;:4.84},{&quot;2026-06-28&quot;:4.84},{&quot;2026-06-29&quot;:4.84},{&quot;2026-06-30&quot;:4.84},{&quot;2026-07-01&quot;:4.84},{&quot;2026-07-02&quot;:4.76},{&quot;2026-07-03&quot;:4.76},{&quot;2026-07-04&quot;:4.76},{&quot;2026-07-05&quot;:4.76},{&quot;2026-07-06&quot;:4.76},{&quot;2026-07-07&quot;:4.85},{&quot;2026-07-08&quot;:4.85},{&quot;2026-07-09&quot;:4.85},{&quot;2026-07-10&quot;:4.86},{&quot;2026-07-11&quot;:4.86},{&quot;2026-07-12&quot;:4.86},{&quot;2026-07-13&quot;:4.86},{&quot;2026-07-14&quot;:4.86},{&quot;2026-07-15&quot;:4.86},{&quot;2026-07-16&quot;:4.86},{&quot;2026-07-17&quot;:4.86},{&quot;2026-07-18&quot;:4.86},{&quot;2026-07-19&quot;:4.86},{&quot;2026-07-20&quot;:4.86},{&quot;2026-07-21&quot;:4.86},{&quot;2026-07-23&quot;:4.86},{&quot;2026-07-25&quot;:4.86},{&quot;2026-07-26&quot;:4.86},{&quot;2026-07-27&quot;:4.86},{&quot;2026-07-29&quot;:4.95},{&quot;2026-07-30&quot;:4.97},{&quot;2026-07-31&quot;:4.99},{&quot;2026-08-01&quot;:4.86},{&quot;2026-08-02&quot;:4.86},{&quot;2026-08-03&quot;:4.86},{&quot;2026-08-04&quot;:4.86},{&quot;2026-08-05&quot;:4.86},{&quot;2026-08-07&quot;:4.81},{&quot;2026-08-08&quot;:4.81},{&quot;2026-08-09&quot;:4.91},{&quot;2026-08-10&quot;:4.91},{&quot;2026-08-11&quot;:4.91},{&quot;2026-08-12&quot;:4.91},{&quot;2026-08-13&quot;:4.91},{&quot;2026-08-14&quot;:4.91},{&quot;2026-08-15&quot;:4.91},{&quot;2026-08-16&quot;:4.89},{&quot;2026-08-17&quot;:4.89},{&quot;2026-08-18&quot;:4.78},{&quot;2026-08-19&quot;:4.78},{&quot;2026-08-20&quot;:4.78},{&quot;2026-08-21&quot;:4.78},{&quot;2026-08-22&quot;:4.78},{&quot;2026-08-23&quot;:4.78},{&quot;2026-08-24&quot;:4.78},{&quot;2026-08-25&quot;:4.78},{&quot;2026-08-26&quot;:4.8},{&quot;2026-08-27&quot;:4.8},{&quot;2026-08-28&quot;:4.8},{&quot;2026-08-29&quot;:4.8},{&quot;2026-08-30&quot;:4.8},{&quot;2026-08-31&quot;:4.8},{&quot;2026-09-01&quot;:4.8},{&quot;2026-09-02&quot;:4.8},{&quot;2026-09-03&quot;:4.8},{&quot;2026-09-04&quot;:4.8},{&quot;2026-09-05&quot;:4.8},{&quot;2026-09-06&quot;:4.8},{&quot;2026-09-07&quot;:4.65},{&quot;2026-09-08&quot;:4.65},{&quot;2026-09-09&quot;:4.65},{&quot;2026-09-10&quot;:4.65},{&quot;2026-09-11&quot;:4.65}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:2.05},{&quot;2026-06-11&quot;:2.04},{&quot;2026-06-12&quot;:2.04},{&quot;2026-06-13&quot;:2.02},{&quot;2026-06-14&quot;:2.0},{&quot;2026-06-15&quot;:1.94},{&quot;2026-06-16&quot;:1.99},{&quot;2026-06-17&quot;:1.99},{&quot;2026-06-18&quot;:1.99},{&quot;2026-06-19&quot;:1.97},{&quot;2026-06-20&quot;:1.94},{&quot;2026-06-21&quot;:1.94},{&quot;2026-06-22&quot;:1.94},{&quot;2026-06-23&quot;:1.94},{&quot;2026-06-24&quot;:1.94},{&quot;2026-06-25&quot;:1.94},{&quot;2026-06-26&quot;:1.94},{&quot;2026-06-27&quot;:1.94},{&quot;2026-06-28&quot;:1.93},{&quot;2026-06-29&quot;:1.93},{&quot;2026-06-30&quot;:1.86},{&quot;2026-07-01&quot;:1.79},{&quot;2026-07-02&quot;:1.94},{&quot;2026-07-03&quot;:1.94},{&quot;2026-07-04&quot;:1.91},{&quot;2026-07-05&quot;:1.91},{&quot;2026-07-06&quot;:1.91},{&quot;2026-07-07&quot;:1.94},{&quot;2026-07-08&quot;:1.94},{&quot;2026-07-09&quot;:1.96},{&quot;2026-07-10&quot;:1.93},{&quot;2026-07-11&quot;:1.93},{&quot;2026-07-12&quot;:1.93},{&quot;2026-07-13&quot;:1.93},{&quot;2026-07-14&quot;:1.93},{&quot;2026-07-15&quot;:1.93},{&quot;2026-07-16&quot;:1.98},{&quot;2026-07-17&quot;:1.98},{&quot;2026-07-18&quot;:1.98},{&quot;2026-07-19&quot;:2.03},{&quot;2026-07-20&quot;:2.02},{&quot;2026-07-21&quot;:2.06},{&quot;2026-07-23&quot;:2.12},{&quot;2026-07-25&quot;:2.23},{&quot;2026-07-26&quot;:2.23},{&quot;2026-07-27&quot;:2.2},{&quot;2026-07-29&quot;:2.25},{&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.22},{&quot;2026-08-03&quot;:2.22},{&quot;2026-08-04&quot;:2.22},{&quot;2026-08-05&quot;:2.22},{&quot;2026-08-07&quot;:2.22},{&quot;2026-08-08&quot;:2.22},{&quot;2026-08-09&quot;:2.22},{&quot;2026-08-10&quot;:2.19},{&quot;2026-08-11&quot;:2.19},{&quot;2026-08-12&quot;:2.13},{&quot;2026-08-13&quot;:2.14},{&quot;2026-08-14&quot;:2.13},{&quot;2026-08-15&quot;:2.12},{&quot;2026-08-16&quot;:2.08},{&quot;2026-08-17&quot;:2.08},{&quot;2026-08-18&quot;:2.1},{&quot;2026-08-19&quot;:2.1},{&quot;2026-08-20&quot;:2.1},{&quot;2026-08-21&quot;:2.1},{&quot;2026-08-22&quot;:2.1},{&quot;2026-08-23&quot;:2.09},{&quot;2026-08-24&quot;:2.24},{&quot;2026-08-25&quot;:2.24},{&quot;2026-08-26&quot;:2.34},{&quot;2026-08-27&quot;:2.3},{&quot;2026-08-28&quot;:2.21},{&quot;2026-08-29&quot;:2.21},{&quot;2026-08-30&quot;:2.19},{&quot;2026-08-31&quot;:2.19},{&quot;2026-09-01&quot;:2.19},{&quot;2026-09-02&quot;:2.15},{&quot;2026-09-03&quot;:2.15},{&quot;2026-09-04&quot;:2.15},{&quot;2026-09-05&quot;:2.15},{&quot;2026-09-06&quot;:2.16},{&quot;2026-09-07&quot;:2.17},{&quot;2026-09-08&quot;:2.14},{&quot;2026-09-09&quot;:2.14},{&quot;2026-09-10&quot;:2.14},{&quot;2026-09-11&quot;:2.19}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Champion of the Perished" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/e/1/e1c35c4d-7af9-467b-ba09-eef26671641b.jpg?1783907948" />

        <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">
            Champion of the Perished
        </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</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="Champion of the Perished" src="https://cards.scryfall.io/large/front/e/1/e1c35c4d-7af9-467b-ba09-eef26671641b.jpg?1783907948" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-08&quot;:2.15},{&quot;2026-06-10&quot;:2.16},{&quot;2026-06-11&quot;:2.2},{&quot;2026-06-12&quot;:2.2},{&quot;2026-06-13&quot;:2.21},{&quot;2026-06-14&quot;:2.23},{&quot;2026-06-15&quot;:2.21},{&quot;2026-06-16&quot;:2.21},{&quot;2026-06-17&quot;:2.22},{&quot;2026-06-18&quot;:2.2},{&quot;2026-06-19&quot;:2.2},{&quot;2026-06-20&quot;:2.14},{&quot;2026-06-21&quot;:2.14},{&quot;2026-06-22&quot;:2.14},{&quot;2026-06-24&quot;:2.08},{&quot;2026-06-25&quot;:2.08},{&quot;2026-06-26&quot;:2.08},{&quot;2026-06-27&quot;:2.08},{&quot;2026-06-28&quot;:2.11},{&quot;2026-06-29&quot;:2.11},{&quot;2026-06-30&quot;:2.11},{&quot;2026-07-01&quot;:2.19},{&quot;2026-07-02&quot;:2.21},{&quot;2026-07-03&quot;:2.24},{&quot;2026-07-04&quot;:2.17},{&quot;2026-07-05&quot;:2.17},{&quot;2026-07-06&quot;:2.18},{&quot;2026-07-07&quot;:2.18},{&quot;2026-07-08&quot;:2.18},{&quot;2026-07-09&quot;:2.18},{&quot;2026-07-10&quot;:2.18},{&quot;2026-07-11&quot;:2.17},{&quot;2026-07-12&quot;:2.17},{&quot;2026-07-13&quot;:2.17},{&quot;2026-07-14&quot;:2.17},{&quot;2026-07-15&quot;:2.17},{&quot;2026-07-16&quot;:2.17},{&quot;2026-07-17&quot;:2.09},{&quot;2026-07-18&quot;:2.16},{&quot;2026-07-19&quot;:2.16},{&quot;2026-07-20&quot;:2.16},{&quot;2026-07-21&quot;:2.14},{&quot;2026-07-23&quot;:2.15},{&quot;2026-07-25&quot;:2.15},{&quot;2026-07-26&quot;:2.15},{&quot;2026-07-27&quot;:2.15},{&quot;2026-07-29&quot;:2.16},{&quot;2026-07-30&quot;:2.16},{&quot;2026-07-31&quot;:2.16},{&quot;2026-08-01&quot;:2.16},{&quot;2026-08-02&quot;:2.11},{&quot;2026-08-03&quot;:2.11},{&quot;2026-08-04&quot;:2.15},{&quot;2026-08-05&quot;:2.15},{&quot;2026-08-07&quot;:2.15},{&quot;2026-08-08&quot;:2.15},{&quot;2026-08-09&quot;:2.14},{&quot;2026-08-10&quot;:2.12},{&quot;2026-08-11&quot;:2.16},{&quot;2026-08-12&quot;:2.16},{&quot;2026-08-13&quot;:2.18},{&quot;2026-08-14&quot;:2.06},{&quot;2026-08-15&quot;:2.04},{&quot;2026-08-16&quot;:2.03},{&quot;2026-08-17&quot;:2.08},{&quot;2026-08-18&quot;:2.02},{&quot;2026-08-19&quot;:2.01},{&quot;2026-08-20&quot;:2.01},{&quot;2026-08-21&quot;:2.01},{&quot;2026-08-22&quot;:2.01},{&quot;2026-08-23&quot;:2.0},{&quot;2026-08-24&quot;:2.0},{&quot;2026-08-25&quot;:2.0},{&quot;2026-08-26&quot;:2.0},{&quot;2026-08-27&quot;:2.0},{&quot;2026-08-28&quot;:2.0},{&quot;2026-08-29&quot;:2.0},{&quot;2026-08-30&quot;:2.0},{&quot;2026-08-31&quot;:2.0},{&quot;2026-09-01&quot;:2.0},{&quot;2026-09-02&quot;:2.0},{&quot;2026-09-03&quot;:1.99},{&quot;2026-09-04&quot;:1.99},{&quot;2026-09-05&quot;:1.99},{&quot;2026-09-06&quot;:1.99},{&quot;2026-09-07&quot;:1.98},{&quot;2026-09-08&quot;:1.98},{&quot;2026-09-09&quot;:1.98},{&quot;2026-09-10&quot;:2.01},{&quot;2026-09-11&quot;:2.01}],&quot;normal&quot;:[]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="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="9852"
  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-c18 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">
              ↓
              7%
            </span>

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Sol Ring" src="https://cards.scryfall.io/large/front/8/3/83a0f2eb-2f6d-4aaa-b7a9-ea06d5de7eca.jpg?1783934257" />
    </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.65
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-12&quot;:1.86},{&quot;2026-06-13&quot;:1.76},{&quot;2026-06-14&quot;:1.77},{&quot;2026-06-15&quot;:1.74},{&quot;2026-06-16&quot;:1.77},{&quot;2026-06-17&quot;:1.77},{&quot;2026-06-18&quot;:1.77},{&quot;2026-06-19&quot;:1.77},{&quot;2026-06-20&quot;:1.83},{&quot;2026-06-21&quot;:1.83},{&quot;2026-06-22&quot;:1.83},{&quot;2026-06-23&quot;:1.78},{&quot;2026-06-24&quot;:1.87},{&quot;2026-06-25&quot;:1.91},{&quot;2026-06-26&quot;:1.91},{&quot;2026-06-27&quot;:1.93},{&quot;2026-06-28&quot;:1.9},{&quot;2026-06-29&quot;:1.9},{&quot;2026-06-30&quot;:1.8},{&quot;2026-07-01&quot;:1.8},{&quot;2026-07-02&quot;:1.67},{&quot;2026-07-03&quot;:1.63},{&quot;2026-07-04&quot;:1.66},{&quot;2026-07-05&quot;:1.64},{&quot;2026-07-06&quot;:1.64},{&quot;2026-07-07&quot;:1.52},{&quot;2026-07-08&quot;:1.52},{&quot;2026-07-09&quot;:1.52},{&quot;2026-07-10&quot;:1.48},{&quot;2026-07-11&quot;:1.48},{&quot;2026-07-12&quot;:1.48},{&quot;2026-07-13&quot;:1.52},{&quot;2026-07-14&quot;:1.54},{&quot;2026-07-15&quot;:1.58},{&quot;2026-07-16&quot;:1.63},{&quot;2026-07-17&quot;:1.62},{&quot;2026-07-18&quot;:1.62},{&quot;2026-07-19&quot;:1.61},{&quot;2026-07-20&quot;:1.61},{&quot;2026-07-21&quot;:1.57},{&quot;2026-07-23&quot;:1.77},{&quot;2026-07-24&quot;:1.76},{&quot;2026-07-25&quot;:1.76},{&quot;2026-07-26&quot;:1.79},{&quot;2026-07-27&quot;:1.81},{&quot;2026-07-28&quot;:1.81},{&quot;2026-07-29&quot;:1.87},{&quot;2026-07-30&quot;:1.83},{&quot;2026-07-31&quot;:1.82},{&quot;2026-08-01&quot;:1.85},{&quot;2026-08-02&quot;:1.89},{&quot;2026-08-03&quot;:1.88},{&quot;2026-08-04&quot;:1.88},{&quot;2026-08-05&quot;:1.93},{&quot;2026-08-07&quot;:1.96},{&quot;2026-08-08&quot;:1.96},{&quot;2026-08-09&quot;:1.96},{&quot;2026-08-10&quot;:1.96},{&quot;2026-08-11&quot;:1.98},{&quot;2026-08-12&quot;:2.0},{&quot;2026-08-13&quot;:2.0},{&quot;2026-08-14&quot;:2.0},{&quot;2026-08-15&quot;:2.0},{&quot;2026-08-16&quot;:2.0},{&quot;2026-08-17&quot;:2.0},{&quot;2026-08-18&quot;:1.97},{&quot;2026-08-19&quot;:1.94},{&quot;2026-08-20&quot;:1.94},{&quot;2026-08-21&quot;:1.96},{&quot;2026-08-22&quot;:1.96},{&quot;2026-08-23&quot;:1.94},{&quot;2026-08-24&quot;:1.93},{&quot;2026-08-25&quot;:1.93},{&quot;2026-08-26&quot;:1.93},{&quot;2026-08-27&quot;:1.95},{&quot;2026-08-28&quot;:1.93},{&quot;2026-08-29&quot;:1.93},{&quot;2026-08-30&quot;:1.88},{&quot;2026-08-31&quot;:1.9},{&quot;2026-09-01&quot;:1.9},{&quot;2026-09-02&quot;:1.86},{&quot;2026-09-03&quot;:1.85},{&quot;2026-09-04&quot;:1.81},{&quot;2026-09-05&quot;:1.78},{&quot;2026-09-06&quot;:1.78},{&quot;2026-09-07&quot;:1.78},{&quot;2026-09-08&quot;:1.72},{&quot;2026-09-09&quot;:1.74},{&quot;2026-09-10&quot;:1.68},{&quot;2026-09-11&quot;:1.65}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

        <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/2/4/24179418-d92c-43eb-a8f6-b8ea83f8c80f.jpg?1783915505" />
    </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.59
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  22%
                </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.45
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:4.94},{&quot;2026-06-11&quot;:4.91},{&quot;2026-06-12&quot;:4.92},{&quot;2026-06-13&quot;:4.92},{&quot;2026-06-14&quot;:4.92},{&quot;2026-06-15&quot;:5.0},{&quot;2026-06-16&quot;:5.03},{&quot;2026-06-17&quot;:5.07},{&quot;2026-06-18&quot;:5.2},{&quot;2026-06-19&quot;:5.33},{&quot;2026-06-20&quot;:5.33},{&quot;2026-06-21&quot;:5.26},{&quot;2026-06-22&quot;:5.33},{&quot;2026-06-23&quot;:5.24},{&quot;2026-06-24&quot;:5.24},{&quot;2026-06-25&quot;:5.27},{&quot;2026-06-26&quot;:5.21},{&quot;2026-06-27&quot;:5.1},{&quot;2026-06-28&quot;:5.16},{&quot;2026-06-29&quot;:5.13},{&quot;2026-06-30&quot;:5.13},{&quot;2026-07-01&quot;:5.13},{&quot;2026-07-02&quot;:5.15},{&quot;2026-07-03&quot;:5.16},{&quot;2026-07-04&quot;:5.04},{&quot;2026-07-05&quot;:4.9},{&quot;2026-07-06&quot;:4.9},{&quot;2026-07-07&quot;:4.78},{&quot;2026-07-08&quot;:4.78},{&quot;2026-07-09&quot;:4.75},{&quot;2026-07-10&quot;:4.59},{&quot;2026-07-11&quot;:4.56},{&quot;2026-07-12&quot;:4.7},{&quot;2026-07-13&quot;:4.83},{&quot;2026-07-14&quot;:4.83},{&quot;2026-07-15&quot;:4.83},{&quot;2026-07-16&quot;:4.91},{&quot;2026-07-17&quot;:5.05},{&quot;2026-07-18&quot;:5.01},{&quot;2026-07-19&quot;:5.01},{&quot;2026-07-20&quot;:4.87},{&quot;2026-07-21&quot;:4.92},{&quot;2026-07-23&quot;:5.07},{&quot;2026-07-25&quot;:5.07},{&quot;2026-07-26&quot;:5.09},{&quot;2026-07-27&quot;:4.95},{&quot;2026-07-29&quot;:4.82},{&quot;2026-07-30&quot;:4.82},{&quot;2026-07-31&quot;:4.82},{&quot;2026-08-01&quot;:4.82},{&quot;2026-08-02&quot;:4.59},{&quot;2026-08-03&quot;:4.4},{&quot;2026-08-04&quot;:4.43},{&quot;2026-08-05&quot;:4.42},{&quot;2026-08-07&quot;:4.44},{&quot;2026-08-08&quot;:4.44},{&quot;2026-08-09&quot;:4.28},{&quot;2026-08-10&quot;:4.32},{&quot;2026-08-11&quot;:4.1},{&quot;2026-08-12&quot;:4.08},{&quot;2026-08-13&quot;:4.09},{&quot;2026-08-14&quot;:4.18},{&quot;2026-08-15&quot;:4.18},{&quot;2026-08-16&quot;:4.2},{&quot;2026-08-17&quot;:4.37},{&quot;2026-08-18&quot;:4.31},{&quot;2026-08-19&quot;:4.39},{&quot;2026-08-20&quot;:4.39},{&quot;2026-08-21&quot;:4.35},{&quot;2026-08-22&quot;:4.38},{&quot;2026-08-23&quot;:4.34},{&quot;2026-08-24&quot;:4.34},{&quot;2026-08-25&quot;:4.34},{&quot;2026-08-26&quot;:4.37},{&quot;2026-08-27&quot;:4.37},{&quot;2026-08-28&quot;:4.42},{&quot;2026-08-29&quot;:4.42},{&quot;2026-08-30&quot;:4.53},{&quot;2026-08-31&quot;:4.53},{&quot;2026-09-01&quot;:4.53},{&quot;2026-09-02&quot;:4.51},{&quot;2026-09-03&quot;:4.58},{&quot;2026-09-04&quot;:4.55},{&quot;2026-09-05&quot;:4.45},{&quot;2026-09-06&quot;:4.44},{&quot;2026-09-07&quot;:4.44},{&quot;2026-09-08&quot;:4.44},{&quot;2026-09-09&quot;:4.5},{&quot;2026-09-10&quot;:4.45},{&quot;2026-09-11&quot;:4.45}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:1.97},{&quot;2026-06-11&quot;:2.13},{&quot;2026-06-12&quot;:2.22},{&quot;2026-06-13&quot;:2.26},{&quot;2026-06-14&quot;:2.23},{&quot;2026-06-15&quot;:2.24},{&quot;2026-06-16&quot;:2.24},{&quot;2026-06-17&quot;:2.27},{&quot;2026-06-18&quot;:2.25},{&quot;2026-06-19&quot;:2.28},{&quot;2026-06-20&quot;:2.18},{&quot;2026-06-21&quot;:2.16},{&quot;2026-06-22&quot;:2.1},{&quot;2026-06-23&quot;:2.12},{&quot;2026-06-24&quot;:2.1},{&quot;2026-06-25&quot;:2.07},{&quot;2026-06-26&quot;:2.01},{&quot;2026-06-27&quot;:2.06},{&quot;2026-06-28&quot;:2.05},{&quot;2026-06-29&quot;:2.04},{&quot;2026-06-30&quot;:1.94},{&quot;2026-07-01&quot;:1.98},{&quot;2026-07-02&quot;:2.01},{&quot;2026-07-03&quot;:1.97},{&quot;2026-07-04&quot;:1.94},{&quot;2026-07-05&quot;:1.92},{&quot;2026-07-06&quot;:1.99},{&quot;2026-07-07&quot;:2.01},{&quot;2026-07-08&quot;:2.07},{&quot;2026-07-09&quot;:2.11},{&quot;2026-07-10&quot;:2.08},{&quot;2026-07-11&quot;:2.0},{&quot;2026-07-12&quot;:1.88},{&quot;2026-07-13&quot;:1.84},{&quot;2026-07-14&quot;:1.86},{&quot;2026-07-15&quot;:1.74},{&quot;2026-07-16&quot;:1.65},{&quot;2026-07-17&quot;:1.66},{&quot;2026-07-18&quot;:1.65},{&quot;2026-07-19&quot;:1.7},{&quot;2026-07-20&quot;:1.86},{&quot;2026-07-21&quot;:1.92},{&quot;2026-07-23&quot;:1.89},{&quot;2026-07-25&quot;:2.1},{&quot;2026-07-26&quot;:2.16},{&quot;2026-07-27&quot;:2.24},{&quot;2026-07-29&quot;:2.34},{&quot;2026-07-30&quot;:2.28},{&quot;2026-07-31&quot;:2.28},{&quot;2026-08-01&quot;:2.24},{&quot;2026-08-02&quot;:2.24},{&quot;2026-08-03&quot;:2.21},{&quot;2026-08-04&quot;:2.13},{&quot;2026-08-05&quot;:2.18},{&quot;2026-08-07&quot;:2.2},{&quot;2026-08-08&quot;:2.1},{&quot;2026-08-09&quot;:2.21},{&quot;2026-08-10&quot;:2.13},{&quot;2026-08-11&quot;:2.16},{&quot;2026-08-12&quot;:2.16},{&quot;2026-08-13&quot;:2.04},{&quot;2026-08-14&quot;:2.11},{&quot;2026-08-15&quot;:2.09},{&quot;2026-08-16&quot;:2.07},{&quot;2026-08-17&quot;:2.07},{&quot;2026-08-18&quot;:2.05},{&quot;2026-08-19&quot;:2.06},{&quot;2026-08-20&quot;:2.06},{&quot;2026-08-21&quot;:2.24},{&quot;2026-08-22&quot;:2.17},{&quot;2026-08-23&quot;:2.13},{&quot;2026-08-24&quot;:2.15},{&quot;2026-08-25&quot;:2.15},{&quot;2026-08-26&quot;:1.85},{&quot;2026-08-27&quot;:2.03},{&quot;2026-08-28&quot;:2.14},{&quot;2026-08-29&quot;:2.14},{&quot;2026-08-30&quot;:2.35},{&quot;2026-08-31&quot;:2.27},{&quot;2026-09-01&quot;:2.27},{&quot;2026-09-02&quot;:1.92},{&quot;2026-09-03&quot;:1.96},{&quot;2026-09-04&quot;:1.95},{&quot;2026-09-05&quot;:2.04},{&quot;2026-09-06&quot;:1.9},{&quot;2026-09-07&quot;:1.83},{&quot;2026-09-08&quot;:1.81},{&quot;2026-09-09&quot;:1.73},{&quot;2026-09-10&quot;:1.71},{&quot;2026-09-11&quot;:1.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="49443"
  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-mh1 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">
            Snow-Covered Swamp
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Snow-Covered Swamp" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/8/c835f235-4196-4281-9788-13e5d54a92d0.jpg?1783933062" />

        <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">
            Snow-Covered 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 Snow 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="Snow-Covered Swamp" src="https://cards.scryfall.io/large/front/c/8/c835f235-4196-4281-9788-13e5d54a92d0.jpg?1783933062" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.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-13&quot;:5.43},{&quot;2026-06-14&quot;:5.5},{&quot;2026-06-15&quot;:5.5},{&quot;2026-06-16&quot;:5.53},{&quot;2026-06-17&quot;:5.53},{&quot;2026-06-18&quot;:5.53},{&quot;2026-06-19&quot;:5.53},{&quot;2026-06-20&quot;:5.53},{&quot;2026-06-21&quot;:5.53},{&quot;2026-06-22&quot;:5.53},{&quot;2026-06-23&quot;:5.53},{&quot;2026-06-24&quot;:5.53},{&quot;2026-06-25&quot;:5.53},{&quot;2026-06-26&quot;:5.53},{&quot;2026-06-27&quot;:5.53},{&quot;2026-06-28&quot;:5.51},{&quot;2026-06-29&quot;:5.51},{&quot;2026-06-30&quot;:5.51},{&quot;2026-07-01&quot;:5.51},{&quot;2026-07-02&quot;:5.51},{&quot;2026-07-03&quot;:5.57},{&quot;2026-07-04&quot;:5.57},{&quot;2026-07-05&quot;:5.57},{&quot;2026-07-06&quot;:5.57},{&quot;2026-07-07&quot;:5.57},{&quot;2026-07-08&quot;:5.57},{&quot;2026-07-09&quot;:5.57},{&quot;2026-07-10&quot;:5.57},{&quot;2026-07-11&quot;:5.57},{&quot;2026-07-12&quot;:5.57},{&quot;2026-07-13&quot;:5.57},{&quot;2026-07-14&quot;:5.57},{&quot;2026-07-15&quot;:5.57},{&quot;2026-07-16&quot;:5.57},{&quot;2026-07-17&quot;:5.57},{&quot;2026-07-18&quot;:5.57},{&quot;2026-07-19&quot;:5.61},{&quot;2026-07-20&quot;:5.61},{&quot;2026-07-21&quot;:5.61},{&quot;2026-07-22&quot;:5.61},{&quot;2026-07-23&quot;:5.61},{&quot;2026-07-24&quot;:5.61},{&quot;2026-07-25&quot;:5.61},{&quot;2026-07-26&quot;:5.64},{&quot;2026-07-27&quot;:5.61},{&quot;2026-07-28&quot;:5.61},{&quot;2026-07-29&quot;:5.61},{&quot;2026-07-30&quot;:5.61},{&quot;2026-07-31&quot;:5.61},{&quot;2026-08-01&quot;:5.61},{&quot;2026-08-02&quot;:5.61},{&quot;2026-08-03&quot;:5.61},{&quot;2026-08-04&quot;:5.61},{&quot;2026-08-05&quot;:5.61},{&quot;2026-08-07&quot;:5.61},{&quot;2026-08-08&quot;:5.69},{&quot;2026-08-09&quot;:5.69},{&quot;2026-08-10&quot;:5.69},{&quot;2026-08-11&quot;:5.69},{&quot;2026-08-12&quot;:5.69},{&quot;2026-08-13&quot;:5.69},{&quot;2026-08-14&quot;:5.69},{&quot;2026-08-15&quot;:5.69},{&quot;2026-08-16&quot;:5.78},{&quot;2026-08-17&quot;:6.12},{&quot;2026-08-18&quot;:6.12},{&quot;2026-08-19&quot;:6.19},{&quot;2026-08-20&quot;:6.19},{&quot;2026-08-21&quot;:6.19},{&quot;2026-08-22&quot;:6.19},{&quot;2026-08-23&quot;:6.19},{&quot;2026-08-24&quot;:6.19},{&quot;2026-08-25&quot;:6.19},{&quot;2026-08-26&quot;:6.19},{&quot;2026-08-27&quot;:6.22},{&quot;2026-08-28&quot;:6.28},{&quot;2026-08-29&quot;:6.28},{&quot;2026-08-30&quot;:6.28},{&quot;2026-08-31&quot;:6.28},{&quot;2026-09-01&quot;:6.28},{&quot;2026-09-02&quot;:6.45},{&quot;2026-09-03&quot;:6.45},{&quot;2026-09-04&quot;:6.45},{&quot;2026-09-05&quot;:6.45},{&quot;2026-09-06&quot;:6.45},{&quot;2026-09-07&quot;:6.58},{&quot;2026-09-08&quot;:6.58},{&quot;2026-09-09&quot;:6.58},{&quot;2026-09-10&quot;:6.6},{&quot;2026-09-11&quot;:6.68}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.08},{&quot;2026-06-14&quot;:1.03},{&quot;2026-06-15&quot;:1.05},{&quot;2026-06-16&quot;:0.93},{&quot;2026-06-17&quot;:0.91},{&quot;2026-06-18&quot;:0.88},{&quot;2026-06-19&quot;:0.89},{&quot;2026-06-20&quot;:0.84},{&quot;2026-06-21&quot;:0.85},{&quot;2026-06-22&quot;:0.84},{&quot;2026-06-23&quot;:0.86},{&quot;2026-06-24&quot;:0.86},{&quot;2026-06-25&quot;:0.93},{&quot;2026-06-26&quot;:0.95},{&quot;2026-06-27&quot;:0.93},{&quot;2026-06-28&quot;:0.86},{&quot;2026-06-29&quot;:0.92},{&quot;2026-06-30&quot;:0.89},{&quot;2026-07-01&quot;:0.89},{&quot;2026-07-02&quot;:0.83},{&quot;2026-07-03&quot;:0.91},{&quot;2026-07-04&quot;:0.95},{&quot;2026-07-05&quot;:0.96},{&quot;2026-07-06&quot;:0.92},{&quot;2026-07-07&quot;:0.96},{&quot;2026-07-08&quot;:0.94},{&quot;2026-07-09&quot;:0.98},{&quot;2026-07-10&quot;:0.97},{&quot;2026-07-11&quot;:0.98},{&quot;2026-07-12&quot;:0.99},{&quot;2026-07-13&quot;:1.04},{&quot;2026-07-14&quot;:1.04},{&quot;2026-07-15&quot;:1.04},{&quot;2026-07-16&quot;:1.05},{&quot;2026-07-17&quot;:1.05},{&quot;2026-07-18&quot;:1.02},{&quot;2026-07-19&quot;:1.03},{&quot;2026-07-20&quot;:1.04},{&quot;2026-07-21&quot;:1.02},{&quot;2026-07-22&quot;:1.08},{&quot;2026-07-23&quot;:1.05},{&quot;2026-07-24&quot;:1.01},{&quot;2026-07-25&quot;:1.0},{&quot;2026-07-26&quot;:0.95},{&quot;2026-07-27&quot;:0.97},{&quot;2026-07-28&quot;:0.94},{&quot;2026-07-29&quot;:0.96},{&quot;2026-07-30&quot;:0.97},{&quot;2026-07-31&quot;:1.04},{&quot;2026-08-01&quot;:1.04},{&quot;2026-08-02&quot;:1.04},{&quot;2026-08-03&quot;:1.09},{&quot;2026-08-04&quot;:1.14},{&quot;2026-08-05&quot;:1.14},{&quot;2026-08-07&quot;:1.05},{&quot;2026-08-08&quot;:0.94},{&quot;2026-08-09&quot;:0.93},{&quot;2026-08-10&quot;:0.92},{&quot;2026-08-11&quot;:0.92},{&quot;2026-08-12&quot;:0.85},{&quot;2026-08-13&quot;:0.87},{&quot;2026-08-14&quot;:0.81},{&quot;2026-08-15&quot;:0.83},{&quot;2026-08-16&quot;:0.84},{&quot;2026-08-17&quot;:0.86},{&quot;2026-08-18&quot;:0.8},{&quot;2026-08-19&quot;:0.81},{&quot;2026-08-20&quot;:0.87},{&quot;2026-08-21&quot;:0.87},{&quot;2026-08-22&quot;:0.88},{&quot;2026-08-23&quot;:0.88},{&quot;2026-08-24&quot;:0.87},{&quot;2026-08-25&quot;:0.91},{&quot;2026-08-26&quot;:0.9},{&quot;2026-08-27&quot;:0.85},{&quot;2026-08-28&quot;:0.83},{&quot;2026-08-29&quot;:0.83},{&quot;2026-08-30&quot;:0.79},{&quot;2026-08-31&quot;:0.83},{&quot;2026-09-01&quot;:0.83},{&quot;2026-09-02&quot;:0.9},{&quot;2026-09-03&quot;:0.91},{&quot;2026-09-04&quot;:0.95},{&quot;2026-09-05&quot;:1.0},{&quot;2026-09-06&quot;:1.01},{&quot;2026-09-07&quot;:0.99},{&quot;2026-09-08&quot;:0.92},{&quot;2026-09-09&quot;:0.91},{&quot;2026-09-10&quot;:0.92},{&quot;2026-09-11&quot;:0.9}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.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="Haakon, Stromgald Scourge" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/6/0/60dd9df6-478c-475e-a04e-86a2cd5abf3a.jpg?1783932277" />

        <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">
            Haakon, Stromgald Scourge
        </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 — Zombie Knight</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="Haakon, Stromgald Scourge" src="https://cards.scryfall.io/large/front/6/0/60dd9df6-478c-475e-a04e-86a2cd5abf3a.jpg?1783932277" />
    </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.84
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.74},{&quot;2026-06-14&quot;:0.74},{&quot;2026-06-15&quot;:0.74},{&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.74},{&quot;2026-06-20&quot;:0.74},{&quot;2026-06-21&quot;:0.74},{&quot;2026-06-22&quot;:0.74},{&quot;2026-06-23&quot;:0.74},{&quot;2026-06-24&quot;:0.74},{&quot;2026-06-25&quot;:0.76},{&quot;2026-06-26&quot;:0.76},{&quot;2026-06-27&quot;:0.76},{&quot;2026-06-28&quot;:0.76},{&quot;2026-06-29&quot;:0.76},{&quot;2026-06-30&quot;:0.69},{&quot;2026-07-01&quot;:0.69},{&quot;2026-07-02&quot;:0.69},{&quot;2026-07-03&quot;:0.69},{&quot;2026-07-04&quot;:0.71},{&quot;2026-07-05&quot;:0.7},{&quot;2026-07-06&quot;:0.7},{&quot;2026-07-07&quot;:0.7},{&quot;2026-07-08&quot;:0.68},{&quot;2026-07-09&quot;:0.68},{&quot;2026-07-10&quot;:0.68},{&quot;2026-07-11&quot;:0.68},{&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.68},{&quot;2026-07-18&quot;:0.68},{&quot;2026-07-19&quot;:0.69},{&quot;2026-07-20&quot;:0.69},{&quot;2026-07-21&quot;:0.69},{&quot;2026-07-22&quot;:0.69},{&quot;2026-07-23&quot;:0.69},{&quot;2026-07-24&quot;:0.69},{&quot;2026-07-25&quot;:0.68},{&quot;2026-07-26&quot;:0.68},{&quot;2026-07-27&quot;:0.67},{&quot;2026-07-28&quot;:0.67},{&quot;2026-07-29&quot;:0.73},{&quot;2026-07-30&quot;:0.73},{&quot;2026-07-31&quot;:0.72},{&quot;2026-08-01&quot;:0.72},{&quot;2026-08-02&quot;:0.73},{&quot;2026-08-03&quot;:0.73},{&quot;2026-08-04&quot;:0.76},{&quot;2026-08-05&quot;:0.79},{&quot;2026-08-07&quot;:0.79},{&quot;2026-08-08&quot;:0.79},{&quot;2026-08-09&quot;:0.79},{&quot;2026-08-10&quot;:0.79},{&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.83},{&quot;2026-08-16&quot;:0.83},{&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.82},{&quot;2026-08-22&quot;:0.82},{&quot;2026-08-23&quot;:0.82},{&quot;2026-08-24&quot;:0.82},{&quot;2026-08-25&quot;:0.83},{&quot;2026-08-26&quot;:0.83},{&quot;2026-08-27&quot;:0.85},{&quot;2026-08-28&quot;:0.84},{&quot;2026-08-29&quot;:0.84},{&quot;2026-08-30&quot;:0.84},{&quot;2026-08-31&quot;:0.84},{&quot;2026-09-01&quot;:0.84},{&quot;2026-09-02&quot;:0.84},{&quot;2026-09-03&quot;:0.84},{&quot;2026-09-04&quot;:0.84},{&quot;2026-09-05&quot;:0.87},{&quot;2026-09-06&quot;:0.87},{&quot;2026-09-07&quot;:0.84},{&quot;2026-09-08&quot;:0.85},{&quot;2026-09-09&quot;:0.84},{&quot;2026-09-10&quot;:0.84},{&quot;2026-09-11&quot;:0.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="13940"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-clb ss-rare ss-fw ss-2x flex-shrink-0"></i>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Sevinne&#39;s Reclamation" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/5/458db878-07ba-42cc-9bee-910957685596.jpg?1783922481" />

        <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/4/5/458db878-07ba-42cc-9bee-910957685596.jpg?1783922481" />
    </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.70
              </span>

            </div>
          </div>

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="12267"
  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">
            Arcane Signet
        </span>


      </div>

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

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Arcane Signet" src="https://cards.scryfall.io/large/front/e/e/ee40458c-7f3a-4fa6-976f-be1f7a336fdc.jpg?1783928764" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="49350"
  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">
            Master of Death
        </span>


      </div>

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

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

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

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

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

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

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

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Master of Death
        </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 Wizard</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Master of Death" src="https://cards.scryfall.io/large/front/b/9/b9775175-6763-4826-afc8-dc520a235c36.jpg?1783926815" />
    </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.34
              </span>

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $0.61
              </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.16</span>
              <span class="text-xs text-grey-text">Credit: $0.21</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.56},{&quot;2026-06-11&quot;:0.56},{&quot;2026-06-12&quot;:0.56},{&quot;2026-06-13&quot;:0.56},{&quot;2026-06-14&quot;:0.56},{&quot;2026-06-15&quot;:0.56},{&quot;2026-06-16&quot;:0.56},{&quot;2026-06-17&quot;:0.56},{&quot;2026-06-18&quot;:0.56},{&quot;2026-06-19&quot;:0.56},{&quot;2026-06-20&quot;:0.56},{&quot;2026-06-21&quot;:0.56},{&quot;2026-06-22&quot;:0.56},{&quot;2026-06-23&quot;:0.56},{&quot;2026-06-24&quot;:0.56},{&quot;2026-06-25&quot;:0.55},{&quot;2026-06-26&quot;:0.55},{&quot;2026-06-27&quot;:0.55},{&quot;2026-06-28&quot;:0.55},{&quot;2026-06-29&quot;:0.55},{&quot;2026-06-30&quot;:0.55},{&quot;2026-07-01&quot;:0.56},{&quot;2026-07-02&quot;:0.56},{&quot;2026-07-03&quot;:0.56},{&quot;2026-07-04&quot;:0.56},{&quot;2026-07-05&quot;:0.56},{&quot;2026-07-06&quot;:0.56},{&quot;2026-07-07&quot;:0.56},{&quot;2026-07-08&quot;:0.56},{&quot;2026-07-09&quot;:0.56},{&quot;2026-07-10&quot;:0.58},{&quot;2026-07-11&quot;:0.58},{&quot;2026-07-12&quot;:0.58},{&quot;2026-07-13&quot;:0.58},{&quot;2026-07-14&quot;:0.58},{&quot;2026-07-15&quot;:0.58},{&quot;2026-07-16&quot;:0.58},{&quot;2026-07-17&quot;:0.58},{&quot;2026-07-18&quot;:0.58},{&quot;2026-07-19&quot;:0.58},{&quot;2026-07-20&quot;:0.58},{&quot;2026-07-21&quot;:0.58},{&quot;2026-07-23&quot;:0.58},{&quot;2026-07-25&quot;:0.58},{&quot;2026-07-26&quot;:0.58},{&quot;2026-07-27&quot;:0.58},{&quot;2026-07-29&quot;:0.58},{&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.59},{&quot;2026-08-03&quot;:0.59},{&quot;2026-08-04&quot;:0.59},{&quot;2026-08-05&quot;:0.59},{&quot;2026-08-07&quot;:0.59},{&quot;2026-08-08&quot;:0.59},{&quot;2026-08-09&quot;:0.59},{&quot;2026-08-10&quot;:0.59},{&quot;2026-08-11&quot;:0.59},{&quot;2026-08-12&quot;:0.6},{&quot;2026-08-13&quot;:0.59},{&quot;2026-08-14&quot;:0.59},{&quot;2026-08-15&quot;:0.59},{&quot;2026-08-16&quot;:0.59},{&quot;2026-08-17&quot;:0.58},{&quot;2026-08-18&quot;:0.58},{&quot;2026-08-19&quot;:0.58},{&quot;2026-08-20&quot;:0.58},{&quot;2026-08-21&quot;:0.58},{&quot;2026-08-22&quot;:0.6},{&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.6},{&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.59},{&quot;2026-08-31&quot;:0.59},{&quot;2026-09-01&quot;:0.59},{&quot;2026-09-02&quot;:0.61},{&quot;2026-09-03&quot;:0.61},{&quot;2026-09-04&quot;:0.61},{&quot;2026-09-05&quot;:0.61},{&quot;2026-09-06&quot;:0.61},{&quot;2026-09-07&quot;:0.61},{&quot;2026-09-08&quot;:0.61},{&quot;2026-09-09&quot;:0.61},{&quot;2026-09-10&quot;:0.61},{&quot;2026-09-11&quot;:0.61}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:0.27},{&quot;2026-06-11&quot;:0.28},{&quot;2026-06-12&quot;:0.28},{&quot;2026-06-13&quot;:0.27},{&quot;2026-06-14&quot;:0.28},{&quot;2026-06-15&quot;:0.29},{&quot;2026-06-16&quot;:0.31},{&quot;2026-06-17&quot;:0.31},{&quot;2026-06-18&quot;:0.31},{&quot;2026-06-19&quot;:0.31},{&quot;2026-06-20&quot;:0.31},{&quot;2026-06-21&quot;:0.31},{&quot;2026-06-22&quot;:0.31},{&quot;2026-06-23&quot;:0.31},{&quot;2026-06-24&quot;:0.31},{&quot;2026-06-25&quot;:0.31},{&quot;2026-06-26&quot;:0.32},{&quot;2026-06-27&quot;:0.32},{&quot;2026-06-28&quot;:0.32},{&quot;2026-06-29&quot;:0.33},{&quot;2026-06-30&quot;:0.33},{&quot;2026-07-01&quot;:0.33},{&quot;2026-07-02&quot;:0.33},{&quot;2026-07-03&quot;:0.33},{&quot;2026-07-04&quot;:0.33},{&quot;2026-07-05&quot;:0.32},{&quot;2026-07-06&quot;:0.32},{&quot;2026-07-07&quot;:0.27},{&quot;2026-07-08&quot;:0.26},{&quot;2026-07-09&quot;:0.27},{&quot;2026-07-10&quot;:0.28},{&quot;2026-07-11&quot;:0.29},{&quot;2026-07-12&quot;:0.3},{&quot;2026-07-13&quot;:0.3},{&quot;2026-07-14&quot;:0.3},{&quot;2026-07-15&quot;:0.3},{&quot;2026-07-16&quot;:0.3},{&quot;2026-07-17&quot;:0.3},{&quot;2026-07-18&quot;:0.3},{&quot;2026-07-19&quot;:0.3},{&quot;2026-07-20&quot;:0.3},{&quot;2026-07-21&quot;:0.29},{&quot;2026-07-23&quot;:0.29},{&quot;2026-07-25&quot;:0.3},{&quot;2026-07-26&quot;:0.3},{&quot;2026-07-27&quot;:0.3},{&quot;2026-07-29&quot;:0.31},{&quot;2026-07-30&quot;:0.31},{&quot;2026-07-31&quot;:0.31},{&quot;2026-08-01&quot;:0.31},{&quot;2026-08-02&quot;:0.31},{&quot;2026-08-03&quot;:0.31},{&quot;2026-08-04&quot;:0.31},{&quot;2026-08-05&quot;:0.31},{&quot;2026-08-07&quot;:0.3},{&quot;2026-08-08&quot;:0.3},{&quot;2026-08-09&quot;:0.3},{&quot;2026-08-10&quot;:0.3},{&quot;2026-08-11&quot;:0.3},{&quot;2026-08-12&quot;:0.3},{&quot;2026-08-13&quot;:0.3},{&quot;2026-08-14&quot;:0.29},{&quot;2026-08-15&quot;:0.42},{&quot;2026-08-16&quot;:0.42},{&quot;2026-08-17&quot;:0.42},{&quot;2026-08-18&quot;:0.41},{&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.41},{&quot;2026-08-23&quot;:0.4},{&quot;2026-08-24&quot;:0.41},{&quot;2026-08-25&quot;:0.41},{&quot;2026-08-26&quot;:0.44},{&quot;2026-08-27&quot;:0.44},{&quot;2026-08-28&quot;:0.43},{&quot;2026-08-29&quot;:0.43},{&quot;2026-08-30&quot;:0.42},{&quot;2026-08-31&quot;:0.43},{&quot;2026-09-01&quot;:0.43},{&quot;2026-09-02&quot;:0.33},{&quot;2026-09-03&quot;:0.34},{&quot;2026-09-04&quot;:0.32},{&quot;2026-09-05&quot;:0.32},{&quot;2026-09-06&quot;:0.32},{&quot;2026-09-07&quot;:0.32},{&quot;2026-09-08&quot;:0.33},{&quot;2026-09-09&quot;:0.31},{&quot;2026-09-10&quot;:0.34},{&quot;2026-09-11&quot;:0.34}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="53243"
  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-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">
            Zombie Master
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Zombie Master
        </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</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="Zombie Master" src="https://cards.scryfall.io/large/front/8/b/8b0715e7-8552-4e6f-bb3f-110275f59e88.jpg?1783910562" />
    </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.61
              </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">
                $12.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.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;:13.5},{&quot;2026-06-14&quot;:13.33},{&quot;2026-06-15&quot;:13.33},{&quot;2026-06-16&quot;:13.33},{&quot;2026-06-17&quot;:13.33},{&quot;2026-06-18&quot;:13.33},{&quot;2026-06-19&quot;:13.33},{&quot;2026-06-20&quot;:13.33},{&quot;2026-06-21&quot;:13.33},{&quot;2026-06-22&quot;:13.33},{&quot;2026-06-23&quot;:13.33},{&quot;2026-06-24&quot;:13.33},{&quot;2026-06-25&quot;:13.33},{&quot;2026-06-26&quot;:13.33},{&quot;2026-06-27&quot;:13.33},{&quot;2026-06-28&quot;:13.27},{&quot;2026-06-29&quot;:13.27},{&quot;2026-06-30&quot;:13.27},{&quot;2026-07-01&quot;:13.27},{&quot;2026-07-02&quot;:13.27},{&quot;2026-07-03&quot;:13.27},{&quot;2026-07-04&quot;:13.27},{&quot;2026-07-05&quot;:13.27},{&quot;2026-07-06&quot;:13.27},{&quot;2026-07-07&quot;:13.27},{&quot;2026-07-08&quot;:13.27},{&quot;2026-07-09&quot;:13.27},{&quot;2026-07-10&quot;:13.27},{&quot;2026-07-11&quot;:13.27},{&quot;2026-07-12&quot;:13.27},{&quot;2026-07-13&quot;:13.2},{&quot;2026-07-14&quot;:13.2},{&quot;2026-07-15&quot;:13.2},{&quot;2026-07-16&quot;:13.2},{&quot;2026-07-17&quot;:13.2},{&quot;2026-07-18&quot;:13.0},{&quot;2026-07-19&quot;:13.0},{&quot;2026-07-20&quot;:13.0},{&quot;2026-07-21&quot;:13.0},{&quot;2026-07-22&quot;:13.0},{&quot;2026-07-23&quot;:13.0},{&quot;2026-07-24&quot;:13.0},{&quot;2026-07-25&quot;:13.0},{&quot;2026-07-26&quot;:12.85},{&quot;2026-07-27&quot;:12.85},{&quot;2026-07-28&quot;:12.85},{&quot;2026-07-29&quot;:12.85},{&quot;2026-07-30&quot;:12.85},{&quot;2026-07-31&quot;:12.85},{&quot;2026-08-01&quot;:12.85},{&quot;2026-08-02&quot;:12.85},{&quot;2026-08-03&quot;:12.85},{&quot;2026-08-04&quot;:12.85},{&quot;2026-08-05&quot;:12.85},{&quot;2026-08-07&quot;:12.85},{&quot;2026-08-08&quot;:12.85},{&quot;2026-08-09&quot;:12.83},{&quot;2026-08-10&quot;:12.83},{&quot;2026-08-11&quot;:12.83},{&quot;2026-08-12&quot;:12.83},{&quot;2026-08-13&quot;:12.83},{&quot;2026-08-14&quot;:12.83},{&quot;2026-08-15&quot;:12.83},{&quot;2026-08-16&quot;:12.83},{&quot;2026-08-17&quot;:12.83},{&quot;2026-08-18&quot;:12.83},{&quot;2026-08-19&quot;:12.83},{&quot;2026-08-20&quot;:12.83},{&quot;2026-08-21&quot;:12.83},{&quot;2026-08-22&quot;:12.83},{&quot;2026-08-23&quot;:12.83},{&quot;2026-08-24&quot;:12.83},{&quot;2026-08-25&quot;:12.72},{&quot;2026-08-26&quot;:12.72},{&quot;2026-08-27&quot;:12.72},{&quot;2026-08-28&quot;:12.72},{&quot;2026-08-29&quot;:12.72},{&quot;2026-08-30&quot;:12.72},{&quot;2026-08-31&quot;:12.72},{&quot;2026-09-01&quot;:12.72},{&quot;2026-09-02&quot;:12.72},{&quot;2026-09-03&quot;:12.72},{&quot;2026-09-04&quot;:12.72},{&quot;2026-09-05&quot;:12.72},{&quot;2026-09-06&quot;:12.72},{&quot;2026-09-07&quot;:12.72},{&quot;2026-09-08&quot;:12.72},{&quot;2026-09-09&quot;:12.72},{&quot;2026-09-10&quot;:12.72},{&quot;2026-09-11&quot;:12.72}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.73},{&quot;2026-06-14&quot;:0.72},{&quot;2026-06-15&quot;:0.74},{&quot;2026-06-16&quot;:0.74},{&quot;2026-06-17&quot;:0.74},{&quot;2026-06-18&quot;:0.75},{&quot;2026-06-19&quot;:0.75},{&quot;2026-06-20&quot;:0.73},{&quot;2026-06-21&quot;:0.73},{&quot;2026-06-22&quot;:0.73},{&quot;2026-06-23&quot;:0.73},{&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.72},{&quot;2026-06-30&quot;:0.74},{&quot;2026-07-01&quot;:0.74},{&quot;2026-07-02&quot;:0.74},{&quot;2026-07-03&quot;:0.74},{&quot;2026-07-04&quot;:0.72},{&quot;2026-07-05&quot;:0.72},{&quot;2026-07-06&quot;:0.73},{&quot;2026-07-07&quot;:0.73},{&quot;2026-07-08&quot;:0.73},{&quot;2026-07-09&quot;:0.73},{&quot;2026-07-10&quot;:0.73},{&quot;2026-07-11&quot;:0.73},{&quot;2026-07-12&quot;:0.73},{&quot;2026-07-13&quot;:0.73},{&quot;2026-07-14&quot;:0.73},{&quot;2026-07-15&quot;:0.73},{&quot;2026-07-16&quot;:0.73},{&quot;2026-07-17&quot;:0.73},{&quot;2026-07-18&quot;:0.73},{&quot;2026-07-19&quot;:0.73},{&quot;2026-07-20&quot;:0.73},{&quot;2026-07-21&quot;:0.72},{&quot;2026-07-22&quot;:0.77},{&quot;2026-07-23&quot;:0.77},{&quot;2026-07-24&quot;:0.77},{&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.78},{&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.79},{&quot;2026-08-04&quot;:0.81},{&quot;2026-08-05&quot;:0.76},{&quot;2026-08-07&quot;:0.74},{&quot;2026-08-08&quot;:0.74},{&quot;2026-08-09&quot;:0.74},{&quot;2026-08-10&quot;:0.71},{&quot;2026-08-11&quot;:0.71},{&quot;2026-08-12&quot;:0.71},{&quot;2026-08-13&quot;:0.69},{&quot;2026-08-14&quot;:0.67},{&quot;2026-08-15&quot;:0.65},{&quot;2026-08-16&quot;:0.65},{&quot;2026-08-17&quot;:0.59},{&quot;2026-08-18&quot;:0.65},{&quot;2026-08-19&quot;:0.66},{&quot;2026-08-20&quot;:0.63},{&quot;2026-08-21&quot;:0.61},{&quot;2026-08-22&quot;:0.6},{&quot;2026-08-23&quot;:0.59},{&quot;2026-08-24&quot;:0.6},{&quot;2026-08-25&quot;:0.65},{&quot;2026-08-26&quot;:0.65},{&quot;2026-08-27&quot;:0.64},{&quot;2026-08-28&quot;:0.66},{&quot;2026-08-29&quot;:0.66},{&quot;2026-08-30&quot;:0.64},{&quot;2026-08-31&quot;:0.64},{&quot;2026-09-01&quot;:0.64},{&quot;2026-09-02&quot;:0.64},{&quot;2026-09-03&quot;:0.63},{&quot;2026-09-04&quot;:0.63},{&quot;2026-09-05&quot;:0.64},{&quot;2026-09-06&quot;:0.64},{&quot;2026-09-07&quot;:0.64},{&quot;2026-09-08&quot;:0.62},{&quot;2026-09-09&quot;:0.64},{&quot;2026-09-10&quot;:0.61},{&quot;2026-09-11&quot;:0.61}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="36455"
  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-mid 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">
            Island
        </span>


      </div>

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

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

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

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Island" src="https://cards.scryfall.io/large/front/e/d/ed2cfa62-c972-4373-b405-a075697d009c.jpg?1783925541" />
    </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.37
              </span>

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

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

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

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Foil</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;:0.65},{&quot;2026-06-14&quot;:0.65},{&quot;2026-06-15&quot;:0.65},{&quot;2026-06-16&quot;:0.67},{&quot;2026-06-17&quot;:0.67},{&quot;2026-06-18&quot;:0.67},{&quot;2026-06-19&quot;:0.69},{&quot;2026-06-20&quot;:0.68},{&quot;2026-06-21&quot;:0.69},{&quot;2026-06-22&quot;:0.69},{&quot;2026-06-23&quot;:0.69},{&quot;2026-06-24&quot;:0.71},{&quot;2026-06-25&quot;:0.71},{&quot;2026-06-26&quot;:0.71},{&quot;2026-06-27&quot;:0.71},{&quot;2026-06-28&quot;:0.71},{&quot;2026-06-29&quot;:0.73},{&quot;2026-06-30&quot;:0.74},{&quot;2026-07-01&quot;:0.74},{&quot;2026-07-02&quot;:0.72},{&quot;2026-07-03&quot;:0.72},{&quot;2026-07-04&quot;:0.74},{&quot;2026-07-05&quot;:0.74},{&quot;2026-07-06&quot;:0.74},{&quot;2026-07-07&quot;:0.7},{&quot;2026-07-08&quot;:0.7},{&quot;2026-07-09&quot;:0.7},{&quot;2026-07-10&quot;:0.71},{&quot;2026-07-11&quot;:0.69},{&quot;2026-07-12&quot;:0.7},{&quot;2026-07-13&quot;:0.7},{&quot;2026-07-14&quot;:0.7},{&quot;2026-07-15&quot;:0.7},{&quot;2026-07-16&quot;:0.7},{&quot;2026-07-17&quot;:0.7},{&quot;2026-07-18&quot;:0.7},{&quot;2026-07-19&quot;:0.7},{&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.69},{&quot;2026-07-26&quot;:0.71},{&quot;2026-07-27&quot;:0.71},{&quot;2026-07-28&quot;:0.71},{&quot;2026-07-29&quot;:0.71},{&quot;2026-07-30&quot;:0.71},{&quot;2026-07-31&quot;:0.71},{&quot;2026-08-01&quot;:0.71},{&quot;2026-08-02&quot;:0.69},{&quot;2026-08-03&quot;:0.69},{&quot;2026-08-04&quot;:0.69},{&quot;2026-08-05&quot;:0.69},{&quot;2026-08-07&quot;:0.7},{&quot;2026-08-08&quot;:0.7},{&quot;2026-08-09&quot;:0.7},{&quot;2026-08-10&quot;:0.68},{&quot;2026-08-11&quot;:0.68},{&quot;2026-08-12&quot;:0.68},{&quot;2026-08-13&quot;:0.68},{&quot;2026-08-14&quot;:0.68},{&quot;2026-08-15&quot;:0.68},{&quot;2026-08-16&quot;:0.68},{&quot;2026-08-17&quot;:0.68},{&quot;2026-08-18&quot;:0.67},{&quot;2026-08-19&quot;:0.66},{&quot;2026-08-20&quot;:0.66},{&quot;2026-08-21&quot;:0.66},{&quot;2026-08-22&quot;:0.65},{&quot;2026-08-23&quot;:0.65},{&quot;2026-08-24&quot;:0.65},{&quot;2026-08-25&quot;:0.63},{&quot;2026-08-26&quot;:0.65},{&quot;2026-08-27&quot;:0.65},{&quot;2026-08-28&quot;:0.65},{&quot;2026-08-29&quot;:0.65},{&quot;2026-08-30&quot;:0.65},{&quot;2026-08-31&quot;:0.65},{&quot;2026-09-01&quot;:0.65},{&quot;2026-09-02&quot;:0.65},{&quot;2026-09-03&quot;:0.63},{&quot;2026-09-04&quot;:0.65},{&quot;2026-09-05&quot;:0.62},{&quot;2026-09-06&quot;:0.59},{&quot;2026-09-07&quot;:0.59},{&quot;2026-09-08&quot;:0.59},{&quot;2026-09-09&quot;:0.59},{&quot;2026-09-10&quot;:0.59},{&quot;2026-09-11&quot;:0.59}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.32},{&quot;2026-06-14&quot;:0.33},{&quot;2026-06-15&quot;:0.33},{&quot;2026-06-16&quot;:0.34},{&quot;2026-06-17&quot;:0.34},{&quot;2026-06-18&quot;:0.35},{&quot;2026-06-19&quot;:0.33},{&quot;2026-06-20&quot;:0.32},{&quot;2026-06-21&quot;:0.33},{&quot;2026-06-22&quot;:0.33},{&quot;2026-06-23&quot;:0.33},{&quot;2026-06-24&quot;:0.33},{&quot;2026-06-25&quot;:0.33},{&quot;2026-06-26&quot;:0.32},{&quot;2026-06-27&quot;:0.32},{&quot;2026-06-28&quot;:0.32},{&quot;2026-06-29&quot;:0.32},{&quot;2026-06-30&quot;:0.31},{&quot;2026-07-01&quot;:0.31},{&quot;2026-07-02&quot;:0.32},{&quot;2026-07-03&quot;:0.34},{&quot;2026-07-04&quot;:0.35},{&quot;2026-07-05&quot;:0.38},{&quot;2026-07-06&quot;:0.38},{&quot;2026-07-07&quot;:0.38},{&quot;2026-07-08&quot;:0.38},{&quot;2026-07-09&quot;:0.38},{&quot;2026-07-10&quot;:0.38},{&quot;2026-07-11&quot;:0.38},{&quot;2026-07-12&quot;:0.39},{&quot;2026-07-13&quot;:0.38},{&quot;2026-07-14&quot;:0.37},{&quot;2026-07-15&quot;:0.36},{&quot;2026-07-16&quot;:0.36},{&quot;2026-07-17&quot;:0.36},{&quot;2026-07-18&quot;:0.35},{&quot;2026-07-19&quot;:0.35},{&quot;2026-07-20&quot;:0.33},{&quot;2026-07-21&quot;:0.34},{&quot;2026-07-22&quot;:0.35},{&quot;2026-07-23&quot;:0.34},{&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.36},{&quot;2026-07-28&quot;:0.35},{&quot;2026-07-29&quot;:0.35},{&quot;2026-07-30&quot;:0.36},{&quot;2026-07-31&quot;:0.37},{&quot;2026-08-01&quot;:0.37},{&quot;2026-08-02&quot;:0.37},{&quot;2026-08-03&quot;:0.39},{&quot;2026-08-04&quot;:0.42},{&quot;2026-08-05&quot;:0.42},{&quot;2026-08-07&quot;:0.42},{&quot;2026-08-08&quot;:0.42},{&quot;2026-08-09&quot;:0.42},{&quot;2026-08-10&quot;:0.42},{&quot;2026-08-11&quot;:0.42},{&quot;2026-08-12&quot;:0.41},{&quot;2026-08-13&quot;:0.37},{&quot;2026-08-14&quot;:0.36},{&quot;2026-08-15&quot;:0.36},{&quot;2026-08-16&quot;:0.36},{&quot;2026-08-17&quot;:0.36},{&quot;2026-08-18&quot;:0.35},{&quot;2026-08-19&quot;:0.35},{&quot;2026-08-20&quot;:0.34},{&quot;2026-08-21&quot;:0.34},{&quot;2026-08-22&quot;:0.34},{&quot;2026-08-23&quot;:0.34},{&quot;2026-08-24&quot;:0.34},{&quot;2026-08-25&quot;:0.34},{&quot;2026-08-26&quot;:0.34},{&quot;2026-08-27&quot;:0.33},{&quot;2026-08-28&quot;:0.33},{&quot;2026-08-29&quot;:0.33},{&quot;2026-08-30&quot;:0.34},{&quot;2026-08-31&quot;:0.34},{&quot;2026-09-01&quot;:0.34},{&quot;2026-09-02&quot;:0.34},{&quot;2026-09-03&quot;:0.33},{&quot;2026-09-04&quot;:0.34},{&quot;2026-09-05&quot;:0.34},{&quot;2026-09-06&quot;:0.35},{&quot;2026-09-07&quot;:0.35},{&quot;2026-09-08&quot;:0.36},{&quot;2026-09-09&quot;:0.35},{&quot;2026-09-10&quot;:0.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="9881"
  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-c18 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.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="Arcane Sanctum" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/d/cd6e86fc-1f51-4837-9b92-bd76700e62f2.jpg?1783934255" />

        <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 Sanctum
        </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="Arcane Sanctum" src="https://cards.scryfall.io/large/front/c/d/cd6e86fc-1f51-4837-9b92-bd76700e62f2.jpg?1783934255" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="47664"
  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-mic 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">
            Diregraf Captain
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Zombie 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="text-sm font-medium text-nine-white">
            $0.41
          </span>
        </div>
      </div>
    </div>

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Diregraf Captain" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/5/158407ad-35a9-40e1-9762-1c0572b56ecb.jpg?1783925325" />

        <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">
            Diregraf Captain
        </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 — Zombie Soldier</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></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="Diregraf Captain" src="https://cards.scryfall.io/large/front/1/5/158407ad-35a9-40e1-9762-1c0572b56ecb.jpg?1783925325" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="16540"
  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-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">
            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="Plains" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/f/2f6778ff-6c1c-498a-bbfa-46c35b77a72a.jpg?1783930628" />

        <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/2/f/2f6778ff-6c1c-498a-bbfa-46c35b77a72a.jpg?1783930628" />
    </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 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.57
              </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.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-10&quot;:0.6},{&quot;2026-06-11&quot;:0.6},{&quot;2026-06-12&quot;:0.6},{&quot;2026-06-13&quot;:0.61},{&quot;2026-06-14&quot;:0.61},{&quot;2026-06-15&quot;:0.61},{&quot;2026-06-16&quot;:0.61},{&quot;2026-06-17&quot;:0.61},{&quot;2026-06-18&quot;:0.6},{&quot;2026-06-19&quot;:0.61},{&quot;2026-06-20&quot;:0.61},{&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.59},{&quot;2026-06-25&quot;:0.59},{&quot;2026-06-26&quot;:0.59},{&quot;2026-06-27&quot;:0.59},{&quot;2026-06-28&quot;:0.59},{&quot;2026-06-29&quot;:0.59},{&quot;2026-06-30&quot;:0.58},{&quot;2026-07-01&quot;:0.57},{&quot;2026-07-02&quot;:0.57},{&quot;2026-07-03&quot;:0.57},{&quot;2026-07-04&quot;:0.57},{&quot;2026-07-05&quot;:0.57},{&quot;2026-07-06&quot;:0.57},{&quot;2026-07-07&quot;:0.57},{&quot;2026-07-08&quot;:0.56},{&quot;2026-07-09&quot;:0.56},{&quot;2026-07-10&quot;:0.55},{&quot;2026-07-11&quot;:0.56},{&quot;2026-07-12&quot;:0.56},{&quot;2026-07-13&quot;:0.56},{&quot;2026-07-14&quot;:0.59},{&quot;2026-07-15&quot;:0.58},{&quot;2026-07-16&quot;:0.58},{&quot;2026-07-17&quot;:0.58},{&quot;2026-07-18&quot;:0.58},{&quot;2026-07-19&quot;:0.57},{&quot;2026-07-20&quot;:0.55},{&quot;2026-07-21&quot;:0.55},{&quot;2026-07-23&quot;:0.6},{&quot;2026-07-25&quot;:0.59},{&quot;2026-07-26&quot;:0.58},{&quot;2026-07-27&quot;:0.59},{&quot;2026-07-29&quot;:0.59},{&quot;2026-07-30&quot;:0.6},{&quot;2026-07-31&quot;:0.6},{&quot;2026-08-01&quot;:0.6},{&quot;2026-08-02&quot;:0.6},{&quot;2026-08-03&quot;:0.6},{&quot;2026-08-04&quot;:0.59},{&quot;2026-08-05&quot;:0.59},{&quot;2026-08-07&quot;:0.6},{&quot;2026-08-08&quot;:0.58},{&quot;2026-08-09&quot;:0.58},{&quot;2026-08-10&quot;:0.58},{&quot;2026-08-11&quot;:0.58},{&quot;2026-08-12&quot;:0.59},{&quot;2026-08-13&quot;:0.58},{&quot;2026-08-14&quot;:0.58},{&quot;2026-08-15&quot;:0.58},{&quot;2026-08-16&quot;:0.61},{&quot;2026-08-17&quot;:0.59},{&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.58},{&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.58},{&quot;2026-08-26&quot;:0.58},{&quot;2026-08-27&quot;:0.58},{&quot;2026-08-28&quot;:0.6},{&quot;2026-08-29&quot;:0.6},{&quot;2026-08-30&quot;:0.6},{&quot;2026-08-31&quot;:0.63},{&quot;2026-09-01&quot;:0.63},{&quot;2026-09-02&quot;:0.62},{&quot;2026-09-03&quot;:0.62},{&quot;2026-09-04&quot;:0.61},{&quot;2026-09-05&quot;:0.58},{&quot;2026-09-06&quot;:0.58},{&quot;2026-09-07&quot;:0.58},{&quot;2026-09-08&quot;:0.58},{&quot;2026-09-09&quot;:0.57},{&quot;2026-09-10&quot;:0.57},{&quot;2026-09-11&quot;:0.57}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:0.39},{&quot;2026-06-11&quot;:0.39},{&quot;2026-06-12&quot;:0.39},{&quot;2026-06-13&quot;:0.39},{&quot;2026-06-14&quot;:0.39},{&quot;2026-06-15&quot;:0.4},{&quot;2026-06-16&quot;:0.4},{&quot;2026-06-17&quot;:0.4},{&quot;2026-06-18&quot;:0.4},{&quot;2026-06-19&quot;:0.4},{&quot;2026-06-20&quot;:0.4},{&quot;2026-06-21&quot;:0.4},{&quot;2026-06-22&quot;:0.39},{&quot;2026-06-23&quot;:0.39},{&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.37},{&quot;2026-07-01&quot;:0.37},{&quot;2026-07-02&quot;:0.37},{&quot;2026-07-03&quot;:0.37},{&quot;2026-07-04&quot;:0.36},{&quot;2026-07-05&quot;:0.36},{&quot;2026-07-06&quot;:0.37},{&quot;2026-07-07&quot;:0.37},{&quot;2026-07-08&quot;:0.36},{&quot;2026-07-09&quot;:0.36},{&quot;2026-07-10&quot;:0.38},{&quot;2026-07-11&quot;:0.38},{&quot;2026-07-12&quot;:0.38},{&quot;2026-07-13&quot;:0.38},{&quot;2026-07-14&quot;:0.38},{&quot;2026-07-15&quot;:0.39},{&quot;2026-07-16&quot;:0.39},{&quot;2026-07-17&quot;:0.4},{&quot;2026-07-18&quot;:0.39},{&quot;2026-07-19&quot;:0.39},{&quot;2026-07-20&quot;:0.39},{&quot;2026-07-21&quot;:0.39},{&quot;2026-07-23&quot;:0.41},{&quot;2026-07-25&quot;:0.37},{&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.33},{&quot;2026-08-05&quot;:0.33},{&quot;2026-08-07&quot;:0.32},{&quot;2026-08-08&quot;:0.32},{&quot;2026-08-09&quot;:0.31},{&quot;2026-08-10&quot;:0.3},{&quot;2026-08-11&quot;:0.3},{&quot;2026-08-12&quot;:0.3},{&quot;2026-08-13&quot;:0.28},{&quot;2026-08-14&quot;:0.28},{&quot;2026-08-15&quot;:0.31},{&quot;2026-08-16&quot;:0.31},{&quot;2026-08-17&quot;:0.31},{&quot;2026-08-18&quot;:0.31},{&quot;2026-08-19&quot;:0.32},{&quot;2026-08-20&quot;:0.32},{&quot;2026-08-21&quot;:0.32},{&quot;2026-08-22&quot;:0.34},{&quot;2026-08-23&quot;:0.34},{&quot;2026-08-24&quot;:0.34},{&quot;2026-08-25&quot;:0.34},{&quot;2026-08-26&quot;:0.35},{&quot;2026-08-27&quot;:0.35},{&quot;2026-08-28&quot;:0.35},{&quot;2026-08-29&quot;:0.35},{&quot;2026-08-30&quot;:0.35},{&quot;2026-08-31&quot;:0.35},{&quot;2026-09-01&quot;:0.35},{&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="47596"
  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-mic 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">
            Midnight Reaper
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Zombie 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">
              ↑
              6%
            </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="Midnight Reaper" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/e/ce14d37a-1f25-44e6-a6e5-c91851c887c5.jpg?1783925335" />

        <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">
            Midnight Reaper
        </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 Knight</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
          </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="Midnight Reaper" src="https://cards.scryfall.io/large/front/c/e/ce14d37a-1f25-44e6-a6e5-c91851c887c5.jpg?1783925335" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="49022"
  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-mh1 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">
            Undead Augur
        </span>


      </div>

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

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

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

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

        <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">
            Undead Augur
        </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 — Zombie Wizard</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-b'></i><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="Undead Augur" src="https://cards.scryfall.io/large/front/c/6/c6e3049e-9397-4bef-914b-e9664661419c.jpg?1783933118" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

          <div 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.23
              </span>

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

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="47673"
  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-mic 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">
            Gleaming Overseer
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Gleaming Overseer
        </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 — Zombie Wizard</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Gleaming Overseer" src="https://cards.scryfall.io/large/front/9/4/94fa19ef-3e27-43a6-ac19-c4f532dfac8d.jpg?1783925325" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.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="Lazotep Chancellor" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/2/82e68f3d-ef94-4651-a256-c72017f64b21.jpg?1783926815" />

        <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">
            Lazotep Chancellor
        </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 — Zombie Wizard</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-u'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Lazotep Chancellor" src="https://cards.scryfall.io/large/front/8/2/82e68f3d-ef94-4651-a256-c72017f64b21.jpg?1783926815" />
    </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.22
              </span>

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

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

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="77671"
  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">
            Foulmire Knight 
        </span>


      </div>

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Foulmire Knight // Profane Insight" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/5/c5f6c745-e46a-42eb-8eca-b7b74ab1245e.jpg?1783932638" />

        <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">
            Foulmire Knight 
        </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 — Zombie Knight</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"
    >
        <div data-controller="card-flip" class="flex flex-col items-center">
          <div
            data-action="click->card-flip#flip"
            class="flip-container cursor-pointer w-full max-w-xs mx-auto"
          >
            <div data-card-flip-target="card" class="flip-card">
              <div class="flip-card-front">
                <img class="w-full h-auto rounded-2xl" alt="Foulmire Knight // Profane Insight" src="https://cards.scryfall.io/large/front/c/5/c5f6c745-e46a-42eb-8eca-b7b74ab1245e.jpg?1783932638" />
              </div>

              <div class="flip-card-back">
                <img class="w-full h-auto rounded-2xl" alt="Foulmire Knight // Profane Insight" src="https://cards.scryfall.io/large/front/c/5/c5f6c745-e46a-42eb-8eca-b7b74ab1245e.jpg?1783932638" />
              </div>
            </div>
          </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="14552"
  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">
            Path of Ancestry
        </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">
              ↑
              19%
            </span>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Path of Ancestry" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/3/43710f35-c43f-48bf-82e1-64ba5c3fa03e.jpg?1783922370" />

        <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">
            Path of Ancestry
        </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="Path of Ancestry" src="https://cards.scryfall.io/large/front/4/3/43710f35-c43f-48bf-82e1-64ba5c3fa03e.jpg?1783922370" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="47594"
  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-mic 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">
            Lord of the Accursed
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Lord of the Accursed" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/0/20bfecb3-2dc8-4549-9297-413131de8fdc.jpg?1783925336" />

        <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">
            Lord of the Accursed
        </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 — Zombie</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="Lord of the Accursed" src="https://cards.scryfall.io/large/front/2/0/20bfecb3-2dc8-4549-9297-413131de8fdc.jpg?1783925336" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="16041"
  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-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">
            Silversmote Ghoul
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Silversmote Ghoul
        </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 — Zombie Vampire</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Silversmote Ghoul" src="https://cards.scryfall.io/large/front/f/f/ff5444cb-0ecd-4482-a8d8-09332f382dbd.jpg?1783930700" />
    </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.28
              </span>

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

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

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

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

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

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

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


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Zombie 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="text-sm font-medium text-nine-white">
            $0.28
          </span>
        </div>
      </div>
    </div>

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

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

        <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">
            Bladestitched Skaab
        </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 — Zombie Soldier</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-u'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Bladestitched Skaab" src="https://cards.scryfall.io/large/front/b/8/b8a73f77-aab5-47e3-bfc1-97f6374f40fc.jpg?1783925567" />
    </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.28
              </span>

            </div>
          </div>

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

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

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

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

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

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


      </div>

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

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

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

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

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

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

        <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">
            Stromgald Crusader
        </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 — Zombie Knight</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="Stromgald Crusader" src="https://cards.scryfall.io/large/front/7/0/709f1b1c-d6a1-4db9-821b-0fbe6ab0a7ed.jpg?1783910301" />
    </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.19
              </span>

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

      </div>


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

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

      <div class="overflow-x-auto">
        <nav class="pagy series-nav" aria-label="Page"><a role="link" aria-disabled="true" aria-label="Previous">&lt;</a><a role="link" aria-disabled="true" aria-current="page">1</a><a role="link" aria-disabled="true" 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=218&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=218&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=218&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=218&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=218&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=218&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=218&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=218&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=218&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="21004"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              311
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2x2 ss-rare ss-fw ss-2x mr-4"></i>
              Phyrexian Altar


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $58.83

                    <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">
                $42.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.26
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="21004"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_21004" src="/boxset_card/21004?collection_id=218&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="79538"
          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-tsr ss-rare ss-fw ss-2x mr-4"></i>
              Urborg, Tomb of Yawgmoth


            </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">
                  $57.37

                    <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">
                $42.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.49
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="79538"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_79538" src="/boxset_card/79538?collection_id=218&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="21034"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              320
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2x2 ss-mythic ss-fw ss-2x mr-4"></i>
              Cavern of Souls


            </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">
                  $50.85

                    <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">
                $38.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.67
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="21034"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_21034" src="/boxset_card/21034?collection_id=218&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="98748"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              309
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tle ss-rare ss-fw ss-2x mr-4"></i>
              Deadly Rollick


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $33.77

                    <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">
                $27.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.46
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="98748"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_98748" src="/boxset_card/98748?collection_id=218&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="20105"
          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">
              47
            </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>
              Cyclonic Rift


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $31.40

                    <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">
                $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">
                2.36
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="20105"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_20105" src="/boxset_card/20105?collection_id=218&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=218&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="14017"
          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">
              667
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmm ss-rare ss-fw ss-2x mr-4"></i>
              Vault of Champions


            </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">
                  $18.48

                    <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">
                $12.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.21
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="14017"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_14017" src="/boxset_card/14017?collection_id=218&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="13820"
          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">
              669
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-clb ss-rare ss-fw ss-2x mr-4"></i>
              Black Market Connections


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Enchantment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $18.13

                    <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">
                $10.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.56
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="13820"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_13820" src="/boxset_card/13820?collection_id=218&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="11397"
          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-cmr ss-rare ss-fw ss-2x mr-4"></i>
              Akroma&#39;s Will


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $15.97

                    <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">
                $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">
                1.18
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="11397"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_11397" src="/boxset_card/11397?collection_id=218&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="76619"
          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">
              TSB-52
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-rare ss-fw ss-2x mr-4"></i>
              Undead Warchief


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Zombie
            </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">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $15.53

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $7.75
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.23
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="76619"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_76619" src="/boxset_card/76619?collection_id=218&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="32825"
          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-gtc ss-rare ss-fw ss-2x mr-4"></i>
              Watery Grave


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land — Island 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">
                  $10.95

                    <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">
                $9.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.31
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="32825"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_32825" src="/boxset_card/32825?collection_id=218&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="32807"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              242
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-gtc 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.56

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $6.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.13
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="32807"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_32807" src="/boxset_card/32807?collection_id=218&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="47557"
          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">
              112
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mic ss-rare ss-fw ss-2x mr-4"></i>
              Diregraf Colossus


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Zombie Giant
            </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">
                  $5.70

                    <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">
                $3.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.19
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="47557"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_47557" src="/boxset_card/47557?collection_id=218&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="73134"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              300
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-bro ss-rare ss-fw ss-2x mr-4"></i>
              Underground River


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $5.54

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      11%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $4.40
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.21
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="73134"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_73134" src="/boxset_card/73134?collection_id=218&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="15853"
          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">
              76
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-m21 ss-rare ss-fw ss-2x mr-4"></i>
              Teferi&#39;s Ageless Insight


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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $5.53

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      10%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.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.49
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="15853"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_15853" src="/boxset_card/15853?collection_id=218&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="47554"
          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">
              111
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mic ss-rare ss-fw ss-2x mr-4"></i>
              Death Baron


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Zombie Wizard
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-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.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">
                $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.22
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="47554"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_47554" src="/boxset_card/47554?collection_id=218&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="48930"
          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-mh1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Carrion Feeder


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Zombie
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $4.13

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      9%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $2.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.32
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="48930"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_48930" src="/boxset_card/48930?collection_id=218&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="85541"
          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">
              ONS-327
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-rare ss-fw ss-2x mr-4"></i>
              Unholy Grotto


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.84

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $3.70
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.18
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="85541"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_85541" src="/boxset_card/85541?collection_id=218&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="9327"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              48
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c18 ss-mythic ss-fw ss-2x mr-4"></i>
              Varina, Lich Queen


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Zombie Wizard
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></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">
                  $3.20

                    <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.80
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.44
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="9327"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_9327" src="/boxset_card/9327?collection_id=218&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="20574"
          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">
              170
            </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>
              Anguished Unmaking


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-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">
                  $2.61

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      11%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.23
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="20574"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_20574" src="/boxset_card/20574?collection_id=218&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="14359"
          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">
              842
            </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>
              Drown in the Loch


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-u'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.35

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      4%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.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.26
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="14359"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_14359" src="/boxset_card/14359?collection_id=218&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="47530"
          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-mic ss-rare ss-fw ss-2x mr-4"></i>
              Rooftop Storm


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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.32

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.86
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="47530"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_47530" src="/boxset_card/47530?collection_id=218&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="20302"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              78
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2x2 ss-rare ss-fw ss-2x mr-4"></i>
              Gravecrawler


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Zombie
            </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.19

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.70
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.60
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="20302"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_20302" src="/boxset_card/20302?collection_id=218&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="92408"
          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">
              837
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-pmei ss-rare ss-fw ss-2x mr-4"></i>
              Champion of the Perished


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Zombie
            </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">
                  $2.01

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.95
            </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="92408"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_92408" src="/boxset_card/92408?collection_id=218&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=218&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="9852"
          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">
              222
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c18 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.65

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      7%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.30
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.46
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="9852"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_9852" src="/boxset_card/9852?collection_id=218&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="13995"
          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">
              659
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmm 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">
                  $1.59

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      22%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.38
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="13995"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_13995" src="/boxset_card/13995?collection_id=218&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="49443"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              252
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mh1 ss-common ss-fw ss-2x mr-4"></i>
              Snow-Covered Swamp


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Basic Snow 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.90

                    <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.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.05
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="49443"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_49443" src="/boxset_card/49443?collection_id=218&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="77066"
          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">
              CSP-61
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-rare ss-fw ss-2x mr-4"></i>
              Haakon, Stromgald Scourge


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Zombie 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-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.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.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.24
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="77066"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_77066" src="/boxset_card/77066?collection_id=218&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="13940"
          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">
              707
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-clb ss-rare ss-fw ss-2x mr-4"></i>
              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.70

                </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.28
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="13940"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_13940" src="/boxset_card/13940?collection_id=218&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12267"
          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-cmr ss-uncommon ss-fw ss-2x mr-4"></i>
              Arcane Signet


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.66

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      4%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.33
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.24
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="12267"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12267" src="/boxset_card/12267?collection_id=218&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="49350"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              205
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mh2 ss-rare ss-fw ss-2x mr-4"></i>
              Master of Death


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Zombie Wizard
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.61

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.16
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.44
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="49350"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_49350" src="/boxset_card/49350?collection_id=218&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="53243"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              188
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb2 ss-rare ss-fw ss-2x mr-4"></i>
              Zombie Master


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Zombie
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.61

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      5%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.33
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="53243"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_53243" src="/boxset_card/53243?collection_id=218&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="36455"
          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">
              271
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mid ss-common ss-fw ss-2x mr-4"></i>
              Island


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Basic Land — Island
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.59

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      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.12
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.92
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="36455"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_36455" src="/boxset_card/36455?collection_id=218&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="9881"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              232
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c18 ss-uncommon ss-fw ss-2x mr-4"></i>
              Arcane Sanctum


            </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.56

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.10
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.07
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="9881"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_9881" src="/boxset_card/9881?collection_id=218&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="47664"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              148
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mic ss-uncommon ss-fw ss-2x mr-4"></i>
              Diregraf Captain


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Zombie Soldier
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.41

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.13
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="47664"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_47664" src="/boxset_card/47664?collection_id=218&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="16540"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              309
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-m21 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">
                  $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.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.31
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="16540"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_16540" src="/boxset_card/16540?collection_id=218&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="47596"
          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">
              125
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mic ss-rare ss-fw ss-2x mr-4"></i>
              Midnight Reaper


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Zombie Knight
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.38

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      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.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.17
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="47596"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_47596" src="/boxset_card/47596?collection_id=218&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="49022"
          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">
              112
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mh1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Undead Augur


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Zombie Wizard
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.35

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      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.19
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="49022"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_49022" src="/boxset_card/49022?collection_id=218&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="47673"
          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">
              151
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mic ss-uncommon ss-fw ss-2x mr-4"></i>
              Gleaming Overseer


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Zombie Wizard
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.33

                </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.24
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="47673"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_47673" src="/boxset_card/47673?collection_id=218&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="49344"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              203
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mh2 ss-uncommon ss-fw ss-2x mr-4"></i>
              Lazotep Chancellor


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Zombie Wizard
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-u'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.32

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.10
            </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="49344"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_49344" src="/boxset_card/49344?collection_id=218&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="77671"
          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">
              90
            </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>
              Foulmire Knight // Profane Insight


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Zombie 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-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.32

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      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.01
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.24
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="77671"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_77671" src="/boxset_card/77671?collection_id=218&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="14552"
          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">
              907
            </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>
              Path of Ancestry


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.31

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      19%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.06
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.13
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="14552"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_14552" src="/boxset_card/14552?collection_id=218&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="47594"
          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">
              124
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mic ss-uncommon ss-fw ss-2x mr-4"></i>
              Lord of the Accursed


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Zombie
            </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.31

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.04
            </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="47594"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_47594" src="/boxset_card/47594?collection_id=218&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="16041"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              122
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-m21 ss-uncommon ss-fw ss-2x mr-4"></i>
              Silversmote Ghoul


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Zombie Vampire
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.28

                    <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.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.14
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="16041"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_16041" src="/boxset_card/16041?collection_id=218&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="36251"
          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">
              212
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mid ss-uncommon ss-fw ss-2x mr-4"></i>
              Bladestitched Skaab


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Zombie 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-u'></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.28

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.02
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.36
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="36251"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_36251" src="/boxset_card/36251?collection_id=218&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="77526"
          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">
              CSP-71
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Stromgald Crusader


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Zombie 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-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.19

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      5%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.31
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="77526"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_77526" src="/boxset_card/77526?collection_id=218&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 47 items</span>
      <nav class="pagy series-nav" aria-label="Page"><a role="link" aria-disabled="true" aria-label="Previous">&lt;</a><a role="link" aria-disabled="true" aria-current="page">1</a><a role="link" aria-disabled="true" aria-label="Next">&gt;</a></nav>
    </div>
</div>

</template></turbo-stream>