<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="8" 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="20781"
  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-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">
            Mox Opal
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Mox Opal
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Mox Opal" src="https://cards.scryfall.io/large/front/5/6/56001a36-126b-4c08-af98-a6cc4d84210e.jpg?1783930101" />
    </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">
                $240.21
              </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">
                $257.58
              </span>

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Foil</span>
              <span class="text-lg font-medium text-nine-white">$250.00</span>
              <span class="text-xs text-grey-text">Credit: $325.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;2026-06-13&quot;:240.66},{&quot;2026-06-14&quot;:240.66},{&quot;2026-06-15&quot;:240.66},{&quot;2026-06-16&quot;:240.66},{&quot;2026-06-17&quot;:240.66},{&quot;2026-06-18&quot;:241.89},{&quot;2026-06-19&quot;:241.89},{&quot;2026-06-20&quot;:241.89},{&quot;2026-06-21&quot;:241.89},{&quot;2026-06-22&quot;:241.89},{&quot;2026-06-23&quot;:241.89},{&quot;2026-06-24&quot;:241.89},{&quot;2026-06-25&quot;:241.89},{&quot;2026-06-26&quot;:241.89},{&quot;2026-06-27&quot;:241.89},{&quot;2026-06-28&quot;:241.89},{&quot;2026-06-29&quot;:241.89},{&quot;2026-06-30&quot;:241.89},{&quot;2026-07-01&quot;:241.89},{&quot;2026-07-02&quot;:241.89},{&quot;2026-07-03&quot;:241.89},{&quot;2026-07-04&quot;:241.89},{&quot;2026-07-05&quot;:241.89},{&quot;2026-07-06&quot;:241.89},{&quot;2026-07-07&quot;:241.89},{&quot;2026-07-08&quot;:241.89},{&quot;2026-07-09&quot;:241.89},{&quot;2026-07-10&quot;:241.89},{&quot;2026-07-11&quot;:241.89},{&quot;2026-07-12&quot;:241.89},{&quot;2026-07-13&quot;:241.89},{&quot;2026-07-14&quot;:241.89},{&quot;2026-07-15&quot;:241.89},{&quot;2026-07-16&quot;:241.89},{&quot;2026-07-17&quot;:241.89},{&quot;2026-07-18&quot;:241.89},{&quot;2026-07-19&quot;:241.89},{&quot;2026-07-20&quot;:241.89},{&quot;2026-07-21&quot;:241.89},{&quot;2026-07-22&quot;:241.89},{&quot;2026-07-23&quot;:241.89},{&quot;2026-07-24&quot;:241.89},{&quot;2026-07-25&quot;:241.89},{&quot;2026-07-26&quot;:241.89},{&quot;2026-07-27&quot;:241.89},{&quot;2026-07-28&quot;:241.89},{&quot;2026-07-29&quot;:241.89},{&quot;2026-07-30&quot;:241.89},{&quot;2026-07-31&quot;:241.89},{&quot;2026-08-01&quot;:241.89},{&quot;2026-08-02&quot;:241.89},{&quot;2026-08-03&quot;:241.89},{&quot;2026-08-04&quot;:241.89},{&quot;2026-08-05&quot;:241.89},{&quot;2026-08-07&quot;:241.89},{&quot;2026-08-08&quot;:241.89},{&quot;2026-08-09&quot;:241.89},{&quot;2026-08-10&quot;:241.89},{&quot;2026-08-11&quot;:241.89},{&quot;2026-08-12&quot;:241.89},{&quot;2026-08-13&quot;:241.89},{&quot;2026-08-14&quot;:241.89},{&quot;2026-08-15&quot;:245.54},{&quot;2026-08-16&quot;:245.54},{&quot;2026-08-17&quot;:245.54},{&quot;2026-08-18&quot;:245.54},{&quot;2026-08-19&quot;:245.54},{&quot;2026-08-20&quot;:245.54},{&quot;2026-08-21&quot;:248.32},{&quot;2026-08-22&quot;:248.32},{&quot;2026-08-23&quot;:248.32},{&quot;2026-08-24&quot;:248.32},{&quot;2026-08-25&quot;:252.02},{&quot;2026-08-26&quot;:252.02},{&quot;2026-08-27&quot;:252.02},{&quot;2026-08-28&quot;:252.02},{&quot;2026-08-29&quot;:252.02},{&quot;2026-08-30&quot;:252.11},{&quot;2026-08-31&quot;:254.42},{&quot;2026-09-01&quot;:256.1},{&quot;2026-09-02&quot;:257.66},{&quot;2026-09-03&quot;:257.66},{&quot;2026-09-04&quot;:257.66},{&quot;2026-09-05&quot;:257.66},{&quot;2026-09-06&quot;:257.58},{&quot;2026-09-07&quot;:257.58},{&quot;2026-09-08&quot;:257.58},{&quot;2026-09-09&quot;:257.58},{&quot;2026-09-10&quot;:257.58},{&quot;2026-09-11&quot;:257.58}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:237.88},{&quot;2026-06-14&quot;:238.5},{&quot;2026-06-15&quot;:242.33},{&quot;2026-06-16&quot;:242.33},{&quot;2026-06-17&quot;:242.33},{&quot;2026-06-18&quot;:242.11},{&quot;2026-06-19&quot;:242.11},{&quot;2026-06-20&quot;:242.11},{&quot;2026-06-21&quot;:242.11},{&quot;2026-06-22&quot;:242.58},{&quot;2026-06-23&quot;:242.58},{&quot;2026-06-24&quot;:242.58},{&quot;2026-06-25&quot;:242.38},{&quot;2026-06-26&quot;:242.38},{&quot;2026-06-27&quot;:242.38},{&quot;2026-06-28&quot;:241.64},{&quot;2026-06-29&quot;:241.64},{&quot;2026-06-30&quot;:242.02},{&quot;2026-07-01&quot;:245.95},{&quot;2026-07-02&quot;:245.31},{&quot;2026-07-03&quot;:245.23},{&quot;2026-07-04&quot;:245.91},{&quot;2026-07-05&quot;:248.05},{&quot;2026-07-06&quot;:248.05},{&quot;2026-07-07&quot;:248.05},{&quot;2026-07-08&quot;:245.19},{&quot;2026-07-09&quot;:245.19},{&quot;2026-07-10&quot;:244.71},{&quot;2026-07-11&quot;:244.71},{&quot;2026-07-12&quot;:243.65},{&quot;2026-07-13&quot;:244.15},{&quot;2026-07-14&quot;:244.15},{&quot;2026-07-15&quot;:244.15},{&quot;2026-07-16&quot;:246.48},{&quot;2026-07-17&quot;:246.48},{&quot;2026-07-18&quot;:247.48},{&quot;2026-07-19&quot;:247.48},{&quot;2026-07-20&quot;:247.48},{&quot;2026-07-21&quot;:247.48},{&quot;2026-07-22&quot;:247.48},{&quot;2026-07-23&quot;:247.48},{&quot;2026-07-24&quot;:247.48},{&quot;2026-07-25&quot;:247.48},{&quot;2026-07-26&quot;:247.48},{&quot;2026-07-27&quot;:247.48},{&quot;2026-07-28&quot;:247.48},{&quot;2026-07-29&quot;:247.48},{&quot;2026-07-30&quot;:247.85},{&quot;2026-07-31&quot;:247.85},{&quot;2026-08-01&quot;:247.85},{&quot;2026-08-02&quot;:247.85},{&quot;2026-08-03&quot;:247.85},{&quot;2026-08-04&quot;:247.92},{&quot;2026-08-05&quot;:246.15},{&quot;2026-08-07&quot;:244.05},{&quot;2026-08-08&quot;:245.13},{&quot;2026-08-09&quot;:245.13},{&quot;2026-08-10&quot;:245.13},{&quot;2026-08-11&quot;:243.5},{&quot;2026-08-12&quot;:243.5},{&quot;2026-08-13&quot;:243.5},{&quot;2026-08-14&quot;:243.5},{&quot;2026-08-15&quot;:243.5},{&quot;2026-08-16&quot;:241.38},{&quot;2026-08-17&quot;:240.8},{&quot;2026-08-18&quot;:240.2},{&quot;2026-08-19&quot;:240.2},{&quot;2026-08-20&quot;:240.2},{&quot;2026-08-21&quot;:238.67},{&quot;2026-08-22&quot;:238.0},{&quot;2026-08-23&quot;:238.0},{&quot;2026-08-24&quot;:238.58},{&quot;2026-08-25&quot;:238.58},{&quot;2026-08-26&quot;:238.58},{&quot;2026-08-27&quot;:237.93},{&quot;2026-08-28&quot;:237.93},{&quot;2026-08-29&quot;:237.93},{&quot;2026-08-30&quot;:241.32},{&quot;2026-08-31&quot;:241.32},{&quot;2026-09-01&quot;:241.32},{&quot;2026-09-02&quot;:241.32},{&quot;2026-09-03&quot;:241.32},{&quot;2026-09-04&quot;:241.32},{&quot;2026-09-05&quot;:241.32},{&quot;2026-09-06&quot;:242.58},{&quot;2026-09-07&quot;:242.34},{&quot;2026-09-08&quot;:240.21},{&quot;2026-09-09&quot;:240.21},{&quot;2026-09-10&quot;:240.21},{&quot;2026-09-11&quot;:240.21}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Legendary Creature — Human Soldier Mercenary
      </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">
            $189.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="Cloud, Midgar Mercenary" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/3/b358dadc-9cc9-4baf-afec-3b50d0822609.jpg?1782684308" />

        <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">
            Cloud, Midgar Mercenary
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Cloud, Midgar Mercenary" src="https://cards.scryfall.io/large/front/b/3/b358dadc-9cc9-4baf-afec-3b50d0822609.jpg?1782684308" />
    </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">
                $189.35
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:214.64},{&quot;2026-06-14&quot;:216.14},{&quot;2026-06-15&quot;:218.09},{&quot;2026-06-16&quot;:218.67},{&quot;2026-06-17&quot;:219.38},{&quot;2026-06-18&quot;:220.11},{&quot;2026-06-19&quot;:220.11},{&quot;2026-06-20&quot;:220.72},{&quot;2026-06-21&quot;:221.22},{&quot;2026-06-22&quot;:221.22},{&quot;2026-06-23&quot;:221.22},{&quot;2026-06-24&quot;:221.06},{&quot;2026-06-25&quot;:221.06},{&quot;2026-06-26&quot;:218.87},{&quot;2026-06-27&quot;:218.87},{&quot;2026-06-28&quot;:218.87},{&quot;2026-06-29&quot;:214.27},{&quot;2026-06-30&quot;:214.27},{&quot;2026-07-01&quot;:209.94},{&quot;2026-07-02&quot;:202.55},{&quot;2026-07-03&quot;:201.55},{&quot;2026-07-04&quot;:199.57},{&quot;2026-07-05&quot;:197.16},{&quot;2026-07-06&quot;:195.33},{&quot;2026-07-07&quot;:194.43},{&quot;2026-07-08&quot;:192.46},{&quot;2026-07-09&quot;:192.46},{&quot;2026-07-10&quot;:192.46},{&quot;2026-07-11&quot;:186.99},{&quot;2026-07-12&quot;:186.99},{&quot;2026-07-13&quot;:185.85},{&quot;2026-07-14&quot;:186.25},{&quot;2026-07-15&quot;:187.27},{&quot;2026-07-16&quot;:188.82},{&quot;2026-07-17&quot;:189.27},{&quot;2026-07-18&quot;:188.92},{&quot;2026-07-19&quot;:188.92},{&quot;2026-07-20&quot;:188.47},{&quot;2026-07-21&quot;:188.47},{&quot;2026-07-22&quot;:188.11},{&quot;2026-07-23&quot;:188.11},{&quot;2026-07-24&quot;:187.43},{&quot;2026-07-25&quot;:186.99},{&quot;2026-07-26&quot;:186.77},{&quot;2026-07-27&quot;:186.57},{&quot;2026-07-28&quot;:185.8},{&quot;2026-07-29&quot;:185.8},{&quot;2026-07-30&quot;:185.46},{&quot;2026-07-31&quot;:187.78},{&quot;2026-08-01&quot;:187.64},{&quot;2026-08-02&quot;:187.55},{&quot;2026-08-03&quot;:187.39},{&quot;2026-08-04&quot;:187.28},{&quot;2026-08-05&quot;:187.37},{&quot;2026-08-07&quot;:187.6},{&quot;2026-08-08&quot;:188.58},{&quot;2026-08-09&quot;:188.51},{&quot;2026-08-10&quot;:188.07},{&quot;2026-08-11&quot;:188.22},{&quot;2026-08-12&quot;:188.22},{&quot;2026-08-13&quot;:188.29},{&quot;2026-08-14&quot;:188.29},{&quot;2026-08-15&quot;:188.65},{&quot;2026-08-16&quot;:188.59},{&quot;2026-08-17&quot;:188.59},{&quot;2026-08-18&quot;:188.8},{&quot;2026-08-19&quot;:188.8},{&quot;2026-08-20&quot;:188.95},{&quot;2026-08-21&quot;:191.21},{&quot;2026-08-22&quot;:191.42},{&quot;2026-08-23&quot;:191.36},{&quot;2026-08-24&quot;:191.17},{&quot;2026-08-25&quot;:191.11},{&quot;2026-08-26&quot;:191.11},{&quot;2026-08-27&quot;:191.08},{&quot;2026-08-28&quot;:191.4},{&quot;2026-08-29&quot;:191.4},{&quot;2026-08-30&quot;:189.97},{&quot;2026-08-31&quot;:190.53},{&quot;2026-09-01&quot;:190.59},{&quot;2026-09-02&quot;:190.62},{&quot;2026-09-03&quot;:190.73},{&quot;2026-09-04&quot;:190.74},{&quot;2026-09-05&quot;:190.78},{&quot;2026-09-06&quot;:190.98},{&quot;2026-09-07&quot;:190.86},{&quot;2026-09-08&quot;:191.02},{&quot;2026-09-09&quot;:191.37},{&quot;2026-09-10&quot;:190.96},{&quot;2026-09-11&quot;:189.35}],&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="21040"
  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-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">
            Sword of Fire and Ice
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $83.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="Sword of Fire and Ice" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/2/22cd80dd-1c57-423c-81e2-9a956901565f.jpg?1783930066" />

        <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">
            Sword of Fire and Ice
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Artifact — Equipment</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="Sword of Fire and Ice" src="https://cards.scryfall.io/large/front/2/2/22cd80dd-1c57-423c-81e2-9a956901565f.jpg?1783930066" />
    </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">
                $83.13
              </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">
                $99.03
              </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">$52.00</span>
              <span class="text-xs text-grey-text">Credit: $67.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;:84.63},{&quot;2026-06-14&quot;:85.28},{&quot;2026-06-15&quot;:85.28},{&quot;2026-06-16&quot;:85.28},{&quot;2026-06-17&quot;:85.28},{&quot;2026-06-18&quot;:85.28},{&quot;2026-06-19&quot;:85.28},{&quot;2026-06-20&quot;:85.28},{&quot;2026-06-21&quot;:85.28},{&quot;2026-06-22&quot;:85.38},{&quot;2026-06-23&quot;:85.38},{&quot;2026-06-24&quot;:85.38},{&quot;2026-06-25&quot;:85.38},{&quot;2026-06-26&quot;:85.38},{&quot;2026-06-27&quot;:85.38},{&quot;2026-06-28&quot;:85.53},{&quot;2026-06-29&quot;:85.53},{&quot;2026-06-30&quot;:86.72},{&quot;2026-07-01&quot;:87.17},{&quot;2026-07-02&quot;:87.17},{&quot;2026-07-03&quot;:87.81},{&quot;2026-07-04&quot;:87.81},{&quot;2026-07-05&quot;:87.81},{&quot;2026-07-06&quot;:88.89},{&quot;2026-07-07&quot;:88.89},{&quot;2026-07-08&quot;:88.89},{&quot;2026-07-09&quot;:88.89},{&quot;2026-07-10&quot;:88.89},{&quot;2026-07-11&quot;:88.89},{&quot;2026-07-12&quot;:88.89},{&quot;2026-07-13&quot;:88.89},{&quot;2026-07-14&quot;:88.89},{&quot;2026-07-15&quot;:90.29},{&quot;2026-07-16&quot;:90.29},{&quot;2026-07-17&quot;:90.98},{&quot;2026-07-18&quot;:90.98},{&quot;2026-07-19&quot;:90.98},{&quot;2026-07-20&quot;:90.98},{&quot;2026-07-21&quot;:90.98},{&quot;2026-07-22&quot;:90.98},{&quot;2026-07-23&quot;:92.38},{&quot;2026-07-24&quot;:93.34},{&quot;2026-07-25&quot;:93.34},{&quot;2026-07-26&quot;:93.34},{&quot;2026-07-27&quot;:93.34},{&quot;2026-07-28&quot;:93.34},{&quot;2026-07-29&quot;:94.28},{&quot;2026-07-30&quot;:94.28},{&quot;2026-07-31&quot;:94.28},{&quot;2026-08-01&quot;:94.28},{&quot;2026-08-02&quot;:94.28},{&quot;2026-08-03&quot;:94.28},{&quot;2026-08-04&quot;:94.28},{&quot;2026-08-05&quot;:94.87},{&quot;2026-08-07&quot;:94.87},{&quot;2026-08-08&quot;:94.99},{&quot;2026-08-09&quot;:94.99},{&quot;2026-08-10&quot;:94.99},{&quot;2026-08-11&quot;:94.99},{&quot;2026-08-12&quot;:94.99},{&quot;2026-08-13&quot;:94.99},{&quot;2026-08-14&quot;:94.99},{&quot;2026-08-15&quot;:96.38},{&quot;2026-08-16&quot;:96.38},{&quot;2026-08-17&quot;:96.38},{&quot;2026-08-18&quot;:96.38},{&quot;2026-08-19&quot;:96.38},{&quot;2026-08-20&quot;:96.38},{&quot;2026-08-21&quot;:96.38},{&quot;2026-08-22&quot;:96.38},{&quot;2026-08-23&quot;:96.38},{&quot;2026-08-24&quot;:96.38},{&quot;2026-08-25&quot;:96.38},{&quot;2026-08-26&quot;:96.38},{&quot;2026-08-27&quot;:96.72},{&quot;2026-08-28&quot;:96.72},{&quot;2026-08-29&quot;:96.72},{&quot;2026-08-30&quot;:96.72},{&quot;2026-08-31&quot;:96.72},{&quot;2026-09-01&quot;:96.72},{&quot;2026-09-02&quot;:97.87},{&quot;2026-09-03&quot;:98.23},{&quot;2026-09-04&quot;:98.13},{&quot;2026-09-05&quot;:98.13},{&quot;2026-09-06&quot;:98.13},{&quot;2026-09-07&quot;:97.93},{&quot;2026-09-08&quot;:97.93},{&quot;2026-09-09&quot;:99.03},{&quot;2026-09-10&quot;:99.03},{&quot;2026-09-11&quot;:99.03}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:76.66},{&quot;2026-06-14&quot;:76.66},{&quot;2026-06-15&quot;:76.66},{&quot;2026-06-16&quot;:76.66},{&quot;2026-06-17&quot;:76.66},{&quot;2026-06-18&quot;:76.66},{&quot;2026-06-19&quot;:77.46},{&quot;2026-06-20&quot;:77.46},{&quot;2026-06-21&quot;:77.46},{&quot;2026-06-22&quot;:77.46},{&quot;2026-06-23&quot;:77.46},{&quot;2026-06-24&quot;:77.46},{&quot;2026-06-25&quot;:77.46},{&quot;2026-06-26&quot;:77.46},{&quot;2026-06-27&quot;:77.46},{&quot;2026-06-28&quot;:78.28},{&quot;2026-06-29&quot;:78.28},{&quot;2026-06-30&quot;:78.28},{&quot;2026-07-01&quot;:78.28},{&quot;2026-07-02&quot;:78.28},{&quot;2026-07-03&quot;:78.28},{&quot;2026-07-04&quot;:78.28},{&quot;2026-07-05&quot;:78.28},{&quot;2026-07-06&quot;:79.38},{&quot;2026-07-07&quot;:79.38},{&quot;2026-07-08&quot;:79.38},{&quot;2026-07-09&quot;:79.64},{&quot;2026-07-10&quot;:79.64},{&quot;2026-07-11&quot;:79.64},{&quot;2026-07-12&quot;:79.64},{&quot;2026-07-13&quot;:79.64},{&quot;2026-07-14&quot;:79.64},{&quot;2026-07-15&quot;:80.2},{&quot;2026-07-16&quot;:80.2},{&quot;2026-07-17&quot;:80.56},{&quot;2026-07-18&quot;:80.56},{&quot;2026-07-19&quot;:80.56},{&quot;2026-07-20&quot;:80.95},{&quot;2026-07-21&quot;:80.95},{&quot;2026-07-22&quot;:80.95},{&quot;2026-07-23&quot;:80.95},{&quot;2026-07-24&quot;:80.95},{&quot;2026-07-25&quot;:80.95},{&quot;2026-07-26&quot;:80.95},{&quot;2026-07-27&quot;:80.95},{&quot;2026-07-28&quot;:80.95},{&quot;2026-07-29&quot;:80.95},{&quot;2026-07-30&quot;:80.95},{&quot;2026-07-31&quot;:81.34},{&quot;2026-08-01&quot;:81.78},{&quot;2026-08-02&quot;:81.78},{&quot;2026-08-03&quot;:81.78},{&quot;2026-08-04&quot;:81.78},{&quot;2026-08-05&quot;:81.78},{&quot;2026-08-07&quot;:81.78},{&quot;2026-08-08&quot;:81.78},{&quot;2026-08-09&quot;:81.78},{&quot;2026-08-10&quot;:81.78},{&quot;2026-08-11&quot;:81.78},{&quot;2026-08-12&quot;:81.78},{&quot;2026-08-13&quot;:82.42},{&quot;2026-08-14&quot;:82.42},{&quot;2026-08-15&quot;:82.42},{&quot;2026-08-16&quot;:82.42},{&quot;2026-08-17&quot;:82.42},{&quot;2026-08-18&quot;:82.42},{&quot;2026-08-19&quot;:82.42},{&quot;2026-08-20&quot;:82.15},{&quot;2026-08-21&quot;:82.15},{&quot;2026-08-22&quot;:82.15},{&quot;2026-08-23&quot;:82.15},{&quot;2026-08-24&quot;:82.15},{&quot;2026-08-25&quot;:82.15},{&quot;2026-08-26&quot;:82.15},{&quot;2026-08-27&quot;:82.15},{&quot;2026-08-28&quot;:82.15},{&quot;2026-08-29&quot;:82.15},{&quot;2026-08-30&quot;:81.67},{&quot;2026-08-31&quot;:81.67},{&quot;2026-09-01&quot;:81.67},{&quot;2026-09-02&quot;:81.91},{&quot;2026-09-03&quot;:82.23},{&quot;2026-09-04&quot;:82.23},{&quot;2026-09-05&quot;:82.65},{&quot;2026-09-06&quot;:82.65},{&quot;2026-09-07&quot;:82.65},{&quot;2026-09-08&quot;:82.87},{&quot;2026-09-09&quot;:82.87},{&quot;2026-09-10&quot;:82.87},{&quot;2026-09-11&quot;:83.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="95138"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fin ss-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">
            Buster Sword
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Buster Sword" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/3/7/374d7383-a1a7-4eea-91f7-290180e14cc9.jpg?1783906560" />

        <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">
            Buster Sword
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Artifact — Equipment</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="Buster Sword" src="https://cards.scryfall.io/large/front/3/7/374d7383-a1a7-4eea-91f7-290180e14cc9.jpg?1783906560" />
    </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">
                $52.39
              </span>

            </div>
          </div>

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $56.25
              </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">$39.00</span>
              <span class="text-xs text-grey-text">Credit: $50.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-11&quot;:46.42},{&quot;2026-06-12&quot;:46.92},{&quot;2026-06-13&quot;:46.74},{&quot;2026-06-14&quot;:46.78},{&quot;2026-06-15&quot;:46.78},{&quot;2026-06-16&quot;:46.55},{&quot;2026-06-17&quot;:46.67},{&quot;2026-06-18&quot;:46.67},{&quot;2026-06-19&quot;:47.3},{&quot;2026-06-20&quot;:47.12},{&quot;2026-06-21&quot;:47.12},{&quot;2026-06-22&quot;:47.16},{&quot;2026-06-23&quot;:47.31},{&quot;2026-06-24&quot;:46.89},{&quot;2026-06-25&quot;:47.04},{&quot;2026-06-26&quot;:47.04},{&quot;2026-06-27&quot;:45.71},{&quot;2026-06-28&quot;:45.81},{&quot;2026-06-29&quot;:45.32},{&quot;2026-06-30&quot;:45.51},{&quot;2026-07-01&quot;:45.69},{&quot;2026-07-02&quot;:44.75},{&quot;2026-07-03&quot;:44.85},{&quot;2026-07-04&quot;:45.21},{&quot;2026-07-05&quot;:45.26},{&quot;2026-07-06&quot;:45.66},{&quot;2026-07-07&quot;:46.11},{&quot;2026-07-08&quot;:46.24},{&quot;2026-07-09&quot;:46.28},{&quot;2026-07-10&quot;:46.31},{&quot;2026-07-11&quot;:46.31},{&quot;2026-07-12&quot;:46.31},{&quot;2026-07-13&quot;:46.54},{&quot;2026-07-14&quot;:46.21},{&quot;2026-07-15&quot;:46.27},{&quot;2026-07-16&quot;:46.3},{&quot;2026-07-17&quot;:46.4},{&quot;2026-07-18&quot;:46.57},{&quot;2026-07-19&quot;:47.5},{&quot;2026-07-20&quot;:47.75},{&quot;2026-07-21&quot;:47.55},{&quot;2026-07-23&quot;:48.22},{&quot;2026-07-25&quot;:48.8},{&quot;2026-07-26&quot;:49.2},{&quot;2026-07-27&quot;:50.26},{&quot;2026-07-28&quot;:51.81},{&quot;2026-07-29&quot;:52.08},{&quot;2026-07-30&quot;:52.14},{&quot;2026-07-31&quot;:52.47},{&quot;2026-08-01&quot;:52.47},{&quot;2026-08-02&quot;:51.71},{&quot;2026-08-03&quot;:51.71},{&quot;2026-08-04&quot;:51.99},{&quot;2026-08-05&quot;:52.21},{&quot;2026-08-07&quot;:52.31},{&quot;2026-08-08&quot;:52.82},{&quot;2026-08-09&quot;:52.6},{&quot;2026-08-10&quot;:52.36},{&quot;2026-08-11&quot;:52.07},{&quot;2026-08-12&quot;:52.07},{&quot;2026-08-13&quot;:52.13},{&quot;2026-08-14&quot;:52.83},{&quot;2026-08-15&quot;:52.83},{&quot;2026-08-16&quot;:51.72},{&quot;2026-08-17&quot;:52.23},{&quot;2026-08-18&quot;:52.25},{&quot;2026-08-19&quot;:52.36},{&quot;2026-08-20&quot;:52.36},{&quot;2026-08-21&quot;:52.59},{&quot;2026-08-22&quot;:53.19},{&quot;2026-08-23&quot;:53.4},{&quot;2026-08-24&quot;:53.33},{&quot;2026-08-25&quot;:53.33},{&quot;2026-08-26&quot;:53.35},{&quot;2026-08-27&quot;:53.38},{&quot;2026-08-28&quot;:53.46},{&quot;2026-08-29&quot;:53.46},{&quot;2026-08-30&quot;:53.38},{&quot;2026-08-31&quot;:53.38},{&quot;2026-09-01&quot;:53.38},{&quot;2026-09-02&quot;:53.72},{&quot;2026-09-03&quot;:52.93},{&quot;2026-09-04&quot;:53.03},{&quot;2026-09-05&quot;:53.29},{&quot;2026-09-06&quot;:53.29},{&quot;2026-09-07&quot;:53.21},{&quot;2026-09-08&quot;:55.37},{&quot;2026-09-09&quot;:55.52},{&quot;2026-09-10&quot;:56.09},{&quot;2026-09-11&quot;:56.25}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:43.69},{&quot;2026-06-12&quot;:42.99},{&quot;2026-06-13&quot;:41.09},{&quot;2026-06-14&quot;:40.24},{&quot;2026-06-15&quot;:40.94},{&quot;2026-06-16&quot;:41.15},{&quot;2026-06-17&quot;:40.83},{&quot;2026-06-18&quot;:41.49},{&quot;2026-06-19&quot;:41.95},{&quot;2026-06-20&quot;:40.46},{&quot;2026-06-21&quot;:39.87},{&quot;2026-06-22&quot;:41.86},{&quot;2026-06-23&quot;:43.04},{&quot;2026-06-24&quot;:43.48},{&quot;2026-06-25&quot;:42.43},{&quot;2026-06-26&quot;:41.7},{&quot;2026-06-27&quot;:41.5},{&quot;2026-06-28&quot;:41.63},{&quot;2026-06-29&quot;:41.82},{&quot;2026-06-30&quot;:43.09},{&quot;2026-07-01&quot;:43.83},{&quot;2026-07-02&quot;:44.35},{&quot;2026-07-03&quot;:44.1},{&quot;2026-07-04&quot;:44.32},{&quot;2026-07-05&quot;:43.05},{&quot;2026-07-06&quot;:45.19},{&quot;2026-07-07&quot;:44.44},{&quot;2026-07-08&quot;:43.8},{&quot;2026-07-09&quot;:44.5},{&quot;2026-07-10&quot;:42.87},{&quot;2026-07-11&quot;:42.53},{&quot;2026-07-12&quot;:41.69},{&quot;2026-07-13&quot;:43.29},{&quot;2026-07-14&quot;:43.75},{&quot;2026-07-15&quot;:44.27},{&quot;2026-07-16&quot;:43.51},{&quot;2026-07-17&quot;:45.48},{&quot;2026-07-18&quot;:47.31},{&quot;2026-07-19&quot;:47.87},{&quot;2026-07-20&quot;:47.1},{&quot;2026-07-21&quot;:46.86},{&quot;2026-07-23&quot;:46.94},{&quot;2026-07-25&quot;:47.88},{&quot;2026-07-26&quot;:47.77},{&quot;2026-07-27&quot;:48.34},{&quot;2026-07-28&quot;:49.49},{&quot;2026-07-29&quot;:51.86},{&quot;2026-07-30&quot;:51.22},{&quot;2026-07-31&quot;:50.85},{&quot;2026-08-01&quot;:50.19},{&quot;2026-08-02&quot;:47.98},{&quot;2026-08-03&quot;:45.82},{&quot;2026-08-04&quot;:46.21},{&quot;2026-08-05&quot;:44.59},{&quot;2026-08-07&quot;:46.24},{&quot;2026-08-08&quot;:47.5},{&quot;2026-08-09&quot;:48.21},{&quot;2026-08-10&quot;:48.11},{&quot;2026-08-11&quot;:48.05},{&quot;2026-08-12&quot;:47.82},{&quot;2026-08-13&quot;:47.95},{&quot;2026-08-14&quot;:46.69},{&quot;2026-08-15&quot;:47.75},{&quot;2026-08-16&quot;:48.8},{&quot;2026-08-17&quot;:48.8},{&quot;2026-08-18&quot;:49.09},{&quot;2026-08-19&quot;:50.54},{&quot;2026-08-20&quot;:50.54},{&quot;2026-08-21&quot;:52.74},{&quot;2026-08-22&quot;:51.31},{&quot;2026-08-23&quot;:50.48},{&quot;2026-08-24&quot;:51.82},{&quot;2026-08-25&quot;:51.82},{&quot;2026-08-26&quot;:50.41},{&quot;2026-08-27&quot;:49.23},{&quot;2026-08-28&quot;:47.65},{&quot;2026-08-29&quot;:47.65},{&quot;2026-08-30&quot;:49.46},{&quot;2026-08-31&quot;:51.35},{&quot;2026-09-01&quot;:51.35},{&quot;2026-09-02&quot;:53.92},{&quot;2026-09-03&quot;:52.54},{&quot;2026-09-04&quot;:52.7},{&quot;2026-09-05&quot;:52.28},{&quot;2026-09-06&quot;:52.89},{&quot;2026-09-07&quot;:53.52},{&quot;2026-09-08&quot;:54.65},{&quot;2026-09-09&quot;:54.33},{&quot;2026-09-10&quot;:51.68},{&quot;2026-09-11&quot;:52.39}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Commander&#39;s Plate" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/9/19992dbd-7a6a-43d3-b1db-01716b2eed27.jpg?1783928762" />

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Commander&#39;s Plate" src="https://cards.scryfall.io/large/front/1/9/19992dbd-7a6a-43d3-b1db-01716b2eed27.jpg?1783928762" />
    </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">
                $49.73
              </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">
                $48.74
              </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">$32.00</span>
              <span class="text-xs text-grey-text">Credit: $41.60</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:49.06},{&quot;2026-06-11&quot;:49.06},{&quot;2026-06-12&quot;:49.06},{&quot;2026-06-13&quot;:49.06},{&quot;2026-06-14&quot;:49.34},{&quot;2026-06-15&quot;:49.34},{&quot;2026-06-16&quot;:49.34},{&quot;2026-06-17&quot;:49.34},{&quot;2026-06-18&quot;:49.34},{&quot;2026-06-19&quot;:49.34},{&quot;2026-06-20&quot;:49.34},{&quot;2026-06-21&quot;:49.34},{&quot;2026-06-22&quot;:49.34},{&quot;2026-06-23&quot;:49.34},{&quot;2026-06-24&quot;:49.34},{&quot;2026-06-25&quot;:49.34},{&quot;2026-06-26&quot;:49.34},{&quot;2026-06-27&quot;:49.34},{&quot;2026-06-28&quot;:46.06},{&quot;2026-06-29&quot;:49.34},{&quot;2026-06-30&quot;:49.4},{&quot;2026-07-01&quot;:49.41},{&quot;2026-07-02&quot;:49.41},{&quot;2026-07-03&quot;:49.41},{&quot;2026-07-04&quot;:49.41},{&quot;2026-07-05&quot;:50.01},{&quot;2026-07-06&quot;:50.01},{&quot;2026-07-07&quot;:50.01},{&quot;2026-07-08&quot;:50.01},{&quot;2026-07-09&quot;:50.25},{&quot;2026-07-10&quot;:50.25},{&quot;2026-07-11&quot;:50.25},{&quot;2026-07-12&quot;:50.25},{&quot;2026-07-13&quot;:50.25},{&quot;2026-07-14&quot;:50.25},{&quot;2026-07-15&quot;:50.58},{&quot;2026-07-16&quot;:50.75},{&quot;2026-07-17&quot;:50.75},{&quot;2026-07-18&quot;:50.75},{&quot;2026-07-19&quot;:50.75},{&quot;2026-07-20&quot;:50.75},{&quot;2026-07-21&quot;:50.75},{&quot;2026-07-23&quot;:50.75},{&quot;2026-07-25&quot;:50.49},{&quot;2026-07-26&quot;:50.49},{&quot;2026-07-27&quot;:50.49},{&quot;2026-07-29&quot;:50.09},{&quot;2026-07-30&quot;:50.09},{&quot;2026-07-31&quot;:49.55},{&quot;2026-08-01&quot;:49.55},{&quot;2026-08-02&quot;:49.55},{&quot;2026-08-03&quot;:47.97},{&quot;2026-08-04&quot;:47.99},{&quot;2026-08-05&quot;:47.99},{&quot;2026-08-07&quot;:47.97},{&quot;2026-08-08&quot;:47.97},{&quot;2026-08-09&quot;:47.97},{&quot;2026-08-10&quot;:47.97},{&quot;2026-08-11&quot;:47.97},{&quot;2026-08-12&quot;:48.03},{&quot;2026-08-13&quot;:48.17},{&quot;2026-08-14&quot;:48.17},{&quot;2026-08-15&quot;:48.17},{&quot;2026-08-16&quot;:48.17},{&quot;2026-08-17&quot;:48.17},{&quot;2026-08-18&quot;:47.98},{&quot;2026-08-19&quot;:47.98},{&quot;2026-08-20&quot;:47.98},{&quot;2026-08-21&quot;:47.98},{&quot;2026-08-22&quot;:47.98},{&quot;2026-08-23&quot;:48.09},{&quot;2026-08-24&quot;:48.09},{&quot;2026-08-25&quot;:48.09},{&quot;2026-08-26&quot;:48.09},{&quot;2026-08-27&quot;:48.09},{&quot;2026-08-28&quot;:48.09},{&quot;2026-08-29&quot;:48.09},{&quot;2026-08-30&quot;:48.09},{&quot;2026-08-31&quot;:48.09},{&quot;2026-09-01&quot;:48.09},{&quot;2026-09-02&quot;:48.09},{&quot;2026-09-03&quot;:48.09},{&quot;2026-09-04&quot;:48.74},{&quot;2026-09-05&quot;:48.74},{&quot;2026-09-06&quot;:48.74},{&quot;2026-09-07&quot;:48.74},{&quot;2026-09-08&quot;:48.74},{&quot;2026-09-09&quot;:48.74},{&quot;2026-09-10&quot;:48.74},{&quot;2026-09-11&quot;:48.74}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:44.68},{&quot;2026-06-11&quot;:45.05},{&quot;2026-06-12&quot;:45.05},{&quot;2026-06-13&quot;:44.61},{&quot;2026-06-14&quot;:44.72},{&quot;2026-06-15&quot;:45.3},{&quot;2026-06-16&quot;:45.96},{&quot;2026-06-17&quot;:45.96},{&quot;2026-06-18&quot;:45.95},{&quot;2026-06-19&quot;:46.08},{&quot;2026-06-20&quot;:45.41},{&quot;2026-06-21&quot;:45.41},{&quot;2026-06-22&quot;:45.67},{&quot;2026-06-23&quot;:45.78},{&quot;2026-06-24&quot;:45.24},{&quot;2026-06-25&quot;:45.58},{&quot;2026-06-26&quot;:45.17},{&quot;2026-06-27&quot;:45.11},{&quot;2026-06-28&quot;:45.11},{&quot;2026-06-29&quot;:45.19},{&quot;2026-06-30&quot;:44.89},{&quot;2026-07-01&quot;:44.53},{&quot;2026-07-02&quot;:44.86},{&quot;2026-07-03&quot;:44.85},{&quot;2026-07-04&quot;:44.72},{&quot;2026-07-05&quot;:45.09},{&quot;2026-07-06&quot;:44.99},{&quot;2026-07-07&quot;:44.59},{&quot;2026-07-08&quot;:44.59},{&quot;2026-07-09&quot;:44.59},{&quot;2026-07-10&quot;:45.13},{&quot;2026-07-11&quot;:44.69},{&quot;2026-07-12&quot;:44.83},{&quot;2026-07-13&quot;:44.93},{&quot;2026-07-14&quot;:45.04},{&quot;2026-07-15&quot;:45.39},{&quot;2026-07-16&quot;:45.65},{&quot;2026-07-17&quot;:45.52},{&quot;2026-07-18&quot;:45.34},{&quot;2026-07-19&quot;:47.81},{&quot;2026-07-20&quot;:47.46},{&quot;2026-07-21&quot;:47.06},{&quot;2026-07-23&quot;:47.23},{&quot;2026-07-25&quot;:45.66},{&quot;2026-07-26&quot;:45.97},{&quot;2026-07-27&quot;:45.87},{&quot;2026-07-29&quot;:44.22},{&quot;2026-07-30&quot;:43.25},{&quot;2026-07-31&quot;:42.54},{&quot;2026-08-01&quot;:42.54},{&quot;2026-08-02&quot;:42.54},{&quot;2026-08-03&quot;:43.53},{&quot;2026-08-04&quot;:43.86},{&quot;2026-08-05&quot;:44.38},{&quot;2026-08-07&quot;:45.6},{&quot;2026-08-08&quot;:45.26},{&quot;2026-08-09&quot;:45.59},{&quot;2026-08-10&quot;:45.65},{&quot;2026-08-11&quot;:45.81},{&quot;2026-08-12&quot;:46.25},{&quot;2026-08-13&quot;:47.07},{&quot;2026-08-14&quot;:46.62},{&quot;2026-08-15&quot;:46.62},{&quot;2026-08-16&quot;:46.9},{&quot;2026-08-17&quot;:46.4},{&quot;2026-08-18&quot;:45.52},{&quot;2026-08-19&quot;:44.92},{&quot;2026-08-20&quot;:44.92},{&quot;2026-08-21&quot;:46.08},{&quot;2026-08-22&quot;:47.27},{&quot;2026-08-23&quot;:47.13},{&quot;2026-08-24&quot;:45.71},{&quot;2026-08-25&quot;:45.71},{&quot;2026-08-26&quot;:45.63},{&quot;2026-08-27&quot;:45.06},{&quot;2026-08-28&quot;:45.14},{&quot;2026-08-29&quot;:45.14},{&quot;2026-08-30&quot;:46.28},{&quot;2026-08-31&quot;:46.39},{&quot;2026-09-01&quot;:46.39},{&quot;2026-09-02&quot;:47.33},{&quot;2026-09-03&quot;:47.74},{&quot;2026-09-04&quot;:48.41},{&quot;2026-09-05&quot;:48.33},{&quot;2026-09-06&quot;:49.75},{&quot;2026-09-07&quot;:49.79},{&quot;2026-09-08&quot;:49.48},{&quot;2026-09-09&quot;:49.54},{&quot;2026-09-10&quot;:49.78},{&quot;2026-09-11&quot;:49.73}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="20171"
  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">
            Teferi&#39;s Protection
        </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">
              ↑
              3%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $49.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="Teferi&#39;s Protection" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/8/483fa1cb-1e35-44f2-a143-98c0f107f5ca.jpg?1783921926" />

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

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Teferi&#39;s Protection" src="https://cards.scryfall.io/large/front/4/8/483fa1cb-1e35-44f2-a143-98c0f107f5ca.jpg?1783921926" />
    </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">
                $49.54
              </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">
                $60.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">$33.00</span>
              <span class="text-xs text-grey-text">Credit: $42.90</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-11&quot;:58.57},{&quot;2026-06-12&quot;:58.67},{&quot;2026-06-13&quot;:58.67},{&quot;2026-06-14&quot;:58.67},{&quot;2026-06-15&quot;:58.67},{&quot;2026-06-16&quot;:58.67},{&quot;2026-06-17&quot;:58.67},{&quot;2026-06-18&quot;:58.67},{&quot;2026-06-19&quot;:58.92},{&quot;2026-06-20&quot;:58.92},{&quot;2026-06-21&quot;:58.92},{&quot;2026-06-22&quot;:58.92},{&quot;2026-06-23&quot;:58.92},{&quot;2026-06-24&quot;:58.92},{&quot;2026-06-25&quot;:58.92},{&quot;2026-06-26&quot;:58.92},{&quot;2026-06-27&quot;:58.92},{&quot;2026-06-28&quot;:58.97},{&quot;2026-06-29&quot;:58.97},{&quot;2026-06-30&quot;:58.97},{&quot;2026-07-01&quot;:58.97},{&quot;2026-07-02&quot;:58.97},{&quot;2026-07-03&quot;:58.97},{&quot;2026-07-04&quot;:58.97},{&quot;2026-07-05&quot;:58.97},{&quot;2026-07-06&quot;:58.97},{&quot;2026-07-07&quot;:58.97},{&quot;2026-07-08&quot;:58.97},{&quot;2026-07-09&quot;:58.97},{&quot;2026-07-10&quot;:58.97},{&quot;2026-07-11&quot;:58.97},{&quot;2026-07-12&quot;:58.97},{&quot;2026-07-13&quot;:58.97},{&quot;2026-07-14&quot;:58.97},{&quot;2026-07-15&quot;:59.14},{&quot;2026-07-16&quot;:59.14},{&quot;2026-07-17&quot;:59.14},{&quot;2026-07-18&quot;:59.14},{&quot;2026-07-19&quot;:59.14},{&quot;2026-07-20&quot;:59.35},{&quot;2026-07-21&quot;:59.35},{&quot;2026-07-23&quot;:59.9},{&quot;2026-07-25&quot;:59.9},{&quot;2026-07-26&quot;:59.94},{&quot;2026-07-27&quot;:60.37},{&quot;2026-07-28&quot;:60.37},{&quot;2026-07-29&quot;:60.37},{&quot;2026-07-30&quot;:60.37},{&quot;2026-07-31&quot;:60.37},{&quot;2026-08-01&quot;:60.37},{&quot;2026-08-02&quot;:60.87},{&quot;2026-08-03&quot;:60.87},{&quot;2026-08-04&quot;:61.51},{&quot;2026-08-05&quot;:61.51},{&quot;2026-08-07&quot;:61.51},{&quot;2026-08-08&quot;:61.51},{&quot;2026-08-09&quot;:61.3},{&quot;2026-08-10&quot;:61.5},{&quot;2026-08-11&quot;:61.5},{&quot;2026-08-12&quot;:61.5},{&quot;2026-08-13&quot;:61.5},{&quot;2026-08-14&quot;:60.52},{&quot;2026-08-15&quot;:60.52},{&quot;2026-08-16&quot;:61.19},{&quot;2026-08-17&quot;:61.19},{&quot;2026-08-18&quot;:61.19},{&quot;2026-08-19&quot;:61.19},{&quot;2026-08-20&quot;:61.19},{&quot;2026-08-21&quot;:61.19},{&quot;2026-08-22&quot;:61.19},{&quot;2026-08-23&quot;:61.19},{&quot;2026-08-24&quot;:61.19},{&quot;2026-08-25&quot;:61.19},{&quot;2026-08-26&quot;:61.19},{&quot;2026-08-27&quot;:61.19},{&quot;2026-08-28&quot;:61.19},{&quot;2026-08-29&quot;:61.19},{&quot;2026-08-30&quot;:61.19},{&quot;2026-08-31&quot;:60.31},{&quot;2026-09-01&quot;:60.31},{&quot;2026-09-02&quot;:60.31},{&quot;2026-09-03&quot;:60.31},{&quot;2026-09-04&quot;:60.31},{&quot;2026-09-05&quot;:60.31},{&quot;2026-09-06&quot;:60.31},{&quot;2026-09-07&quot;:60.31},{&quot;2026-09-08&quot;:60.31},{&quot;2026-09-09&quot;:60.31},{&quot;2026-09-10&quot;:60.31},{&quot;2026-09-11&quot;:60.31}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:52.93},{&quot;2026-06-12&quot;:53.05},{&quot;2026-06-13&quot;:53.05},{&quot;2026-06-14&quot;:53.05},{&quot;2026-06-15&quot;:53.21},{&quot;2026-06-16&quot;:53.21},{&quot;2026-06-17&quot;:53.1},{&quot;2026-06-18&quot;:53.66},{&quot;2026-06-19&quot;:53.3},{&quot;2026-06-20&quot;:53.86},{&quot;2026-06-21&quot;:53.86},{&quot;2026-06-22&quot;:53.86},{&quot;2026-06-23&quot;:54.49},{&quot;2026-06-24&quot;:54.61},{&quot;2026-06-25&quot;:54.62},{&quot;2026-06-26&quot;:52.59},{&quot;2026-06-27&quot;:54.62},{&quot;2026-06-28&quot;:54.62},{&quot;2026-06-29&quot;:54.53},{&quot;2026-06-30&quot;:54.76},{&quot;2026-07-01&quot;:54.76},{&quot;2026-07-02&quot;:54.76},{&quot;2026-07-03&quot;:54.76},{&quot;2026-07-04&quot;:54.8},{&quot;2026-07-05&quot;:54.8},{&quot;2026-07-06&quot;:54.8},{&quot;2026-07-07&quot;:54.75},{&quot;2026-07-08&quot;:55.11},{&quot;2026-07-09&quot;:54.5},{&quot;2026-07-10&quot;:54.5},{&quot;2026-07-11&quot;:54.5},{&quot;2026-07-12&quot;:54.46},{&quot;2026-07-13&quot;:54.78},{&quot;2026-07-14&quot;:54.78},{&quot;2026-07-15&quot;:54.78},{&quot;2026-07-16&quot;:54.74},{&quot;2026-07-17&quot;:54.74},{&quot;2026-07-18&quot;:55.03},{&quot;2026-07-19&quot;:55.28},{&quot;2026-07-20&quot;:55.28},{&quot;2026-07-21&quot;:54.21},{&quot;2026-07-23&quot;:53.04},{&quot;2026-07-25&quot;:52.6},{&quot;2026-07-26&quot;:52.6},{&quot;2026-07-27&quot;:52.06},{&quot;2026-07-28&quot;:51.76},{&quot;2026-07-29&quot;:51.95},{&quot;2026-07-30&quot;:51.51},{&quot;2026-07-31&quot;:50.96},{&quot;2026-08-01&quot;:51.28},{&quot;2026-08-02&quot;:51.0},{&quot;2026-08-03&quot;:50.35},{&quot;2026-08-04&quot;:50.21},{&quot;2026-08-05&quot;:50.21},{&quot;2026-08-07&quot;:48.73},{&quot;2026-08-08&quot;:48.59},{&quot;2026-08-09&quot;:47.91},{&quot;2026-08-10&quot;:48.1},{&quot;2026-08-11&quot;:48.65},{&quot;2026-08-12&quot;:48.67},{&quot;2026-08-13&quot;:48.73},{&quot;2026-08-14&quot;:47.71},{&quot;2026-08-15&quot;:47.32},{&quot;2026-08-16&quot;:47.0},{&quot;2026-08-17&quot;:47.46},{&quot;2026-08-18&quot;:47.46},{&quot;2026-08-19&quot;:47.46},{&quot;2026-08-20&quot;:47.46},{&quot;2026-08-21&quot;:48.11},{&quot;2026-08-22&quot;:47.49},{&quot;2026-08-23&quot;:47.92},{&quot;2026-08-24&quot;:47.96},{&quot;2026-08-25&quot;:48.03},{&quot;2026-08-26&quot;:48.13},{&quot;2026-08-27&quot;:48.42},{&quot;2026-08-28&quot;:48.42},{&quot;2026-08-29&quot;:48.42},{&quot;2026-08-30&quot;:48.47},{&quot;2026-08-31&quot;:49.02},{&quot;2026-09-01&quot;:49.02},{&quot;2026-09-02&quot;:48.48},{&quot;2026-09-03&quot;:48.33},{&quot;2026-09-04&quot;:48.11},{&quot;2026-09-05&quot;:48.11},{&quot;2026-09-06&quot;:48.11},{&quot;2026-09-07&quot;:49.03},{&quot;2026-09-08&quot;:49.52},{&quot;2026-09-09&quot;:49.55},{&quot;2026-09-10&quot;:49.54},{&quot;2026-09-11&quot;:49.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="49639"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mh2 ss-mythic ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $41.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="Solitude" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/f/e/febad44a-eaf0-4122-87c5-a12d17f28392.jpg?1783926772" />

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Solitude" src="https://cards.scryfall.io/large/front/f/e/febad44a-eaf0-4122-87c5-a12d17f28392.jpg?1783926772" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-11&quot;:61.54},{&quot;2026-06-12&quot;:61.54},{&quot;2026-06-13&quot;:62.88},{&quot;2026-06-14&quot;:62.88},{&quot;2026-06-15&quot;:62.88},{&quot;2026-06-16&quot;:62.88},{&quot;2026-06-17&quot;:62.88},{&quot;2026-06-18&quot;:62.88},{&quot;2026-06-19&quot;:62.88},{&quot;2026-06-20&quot;:63.6},{&quot;2026-06-21&quot;:63.6},{&quot;2026-06-22&quot;:63.6},{&quot;2026-06-23&quot;:63.6},{&quot;2026-06-24&quot;:63.6},{&quot;2026-06-25&quot;:63.6},{&quot;2026-06-26&quot;:63.6},{&quot;2026-06-27&quot;:63.6},{&quot;2026-06-28&quot;:63.6},{&quot;2026-06-29&quot;:63.6},{&quot;2026-06-30&quot;:63.6},{&quot;2026-07-01&quot;:61.4},{&quot;2026-07-02&quot;:61.4},{&quot;2026-07-03&quot;:61.4},{&quot;2026-07-04&quot;:61.32},{&quot;2026-07-05&quot;:61.32},{&quot;2026-07-06&quot;:61.32},{&quot;2026-07-07&quot;:61.32},{&quot;2026-07-08&quot;:61.8},{&quot;2026-07-09&quot;:61.8},{&quot;2026-07-10&quot;:61.8},{&quot;2026-07-11&quot;:61.8},{&quot;2026-07-12&quot;:61.8},{&quot;2026-07-13&quot;:61.8},{&quot;2026-07-14&quot;:61.8},{&quot;2026-07-15&quot;:61.8},{&quot;2026-07-16&quot;:61.8},{&quot;2026-07-17&quot;:61.8},{&quot;2026-07-18&quot;:61.8},{&quot;2026-07-19&quot;:61.8},{&quot;2026-07-20&quot;:61.8},{&quot;2026-07-21&quot;:62.1},{&quot;2026-07-23&quot;:62.1},{&quot;2026-07-25&quot;:62.1},{&quot;2026-07-26&quot;:62.1},{&quot;2026-07-27&quot;:62.1},{&quot;2026-07-28&quot;:62.1},{&quot;2026-07-29&quot;:62.1},{&quot;2026-07-30&quot;:62.1},{&quot;2026-07-31&quot;:62.1},{&quot;2026-08-01&quot;:62.1},{&quot;2026-08-02&quot;:61.89},{&quot;2026-08-03&quot;:61.89},{&quot;2026-08-04&quot;:61.89},{&quot;2026-08-05&quot;:61.89},{&quot;2026-08-07&quot;:61.89},{&quot;2026-08-08&quot;:61.89},{&quot;2026-08-09&quot;:61.89},{&quot;2026-08-10&quot;:61.89},{&quot;2026-08-11&quot;:61.89},{&quot;2026-08-12&quot;:61.25},{&quot;2026-08-13&quot;:61.25},{&quot;2026-08-14&quot;:60.85},{&quot;2026-08-15&quot;:60.35},{&quot;2026-08-16&quot;:60.35},{&quot;2026-08-17&quot;:60.35},{&quot;2026-08-18&quot;:60.35},{&quot;2026-08-19&quot;:60.35},{&quot;2026-08-20&quot;:60.35},{&quot;2026-08-21&quot;:60.35},{&quot;2026-08-22&quot;:60.35},{&quot;2026-08-23&quot;:60.35},{&quot;2026-08-24&quot;:60.35},{&quot;2026-08-25&quot;:60.35},{&quot;2026-08-26&quot;:60.35},{&quot;2026-08-27&quot;:60.33},{&quot;2026-08-28&quot;:60.12},{&quot;2026-08-29&quot;:60.12},{&quot;2026-08-30&quot;:60.34},{&quot;2026-08-31&quot;:60.31},{&quot;2026-09-01&quot;:60.31},{&quot;2026-09-02&quot;:60.13},{&quot;2026-09-03&quot;:60.03},{&quot;2026-09-04&quot;:60.03},{&quot;2026-09-05&quot;:60.03},{&quot;2026-09-06&quot;:60.03},{&quot;2026-09-07&quot;:60.03},{&quot;2026-09-08&quot;:60.24},{&quot;2026-09-09&quot;:60.24},{&quot;2026-09-10&quot;:59.81},{&quot;2026-09-11&quot;:59.81}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:42.13},{&quot;2026-06-12&quot;:42.13},{&quot;2026-06-13&quot;:42.13},{&quot;2026-06-14&quot;:42.13},{&quot;2026-06-15&quot;:42.13},{&quot;2026-06-16&quot;:41.96},{&quot;2026-06-17&quot;:41.86},{&quot;2026-06-18&quot;:41.86},{&quot;2026-06-19&quot;:41.85},{&quot;2026-06-20&quot;:41.85},{&quot;2026-06-21&quot;:41.85},{&quot;2026-06-22&quot;:41.89},{&quot;2026-06-23&quot;:41.89},{&quot;2026-06-24&quot;:41.89},{&quot;2026-06-25&quot;:41.89},{&quot;2026-06-26&quot;:41.89},{&quot;2026-06-27&quot;:41.83},{&quot;2026-06-28&quot;:41.76},{&quot;2026-06-29&quot;:41.76},{&quot;2026-06-30&quot;:41.76},{&quot;2026-07-01&quot;:41.81},{&quot;2026-07-02&quot;:41.81},{&quot;2026-07-03&quot;:41.81},{&quot;2026-07-04&quot;:41.76},{&quot;2026-07-05&quot;:42.04},{&quot;2026-07-06&quot;:42.12},{&quot;2026-07-07&quot;:42.12},{&quot;2026-07-08&quot;:42.31},{&quot;2026-07-09&quot;:42.31},{&quot;2026-07-10&quot;:42.31},{&quot;2026-07-11&quot;:42.31},{&quot;2026-07-12&quot;:42.31},{&quot;2026-07-13&quot;:42.31},{&quot;2026-07-14&quot;:42.31},{&quot;2026-07-15&quot;:42.31},{&quot;2026-07-16&quot;:42.08},{&quot;2026-07-17&quot;:42.13},{&quot;2026-07-18&quot;:41.95},{&quot;2026-07-19&quot;:41.82},{&quot;2026-07-20&quot;:41.8},{&quot;2026-07-21&quot;:41.8},{&quot;2026-07-23&quot;:41.52},{&quot;2026-07-25&quot;:41.3},{&quot;2026-07-26&quot;:41.34},{&quot;2026-07-27&quot;:41.3},{&quot;2026-07-28&quot;:41.3},{&quot;2026-07-29&quot;:41.66},{&quot;2026-07-30&quot;:41.99},{&quot;2026-07-31&quot;:41.83},{&quot;2026-08-01&quot;:41.83},{&quot;2026-08-02&quot;:41.83},{&quot;2026-08-03&quot;:41.83},{&quot;2026-08-04&quot;:41.83},{&quot;2026-08-05&quot;:41.83},{&quot;2026-08-07&quot;:41.83},{&quot;2026-08-08&quot;:41.83},{&quot;2026-08-09&quot;:41.83},{&quot;2026-08-10&quot;:41.83},{&quot;2026-08-11&quot;:41.83},{&quot;2026-08-12&quot;:41.83},{&quot;2026-08-13&quot;:41.69},{&quot;2026-08-14&quot;:41.69},{&quot;2026-08-15&quot;:41.69},{&quot;2026-08-16&quot;:41.48},{&quot;2026-08-17&quot;:41.48},{&quot;2026-08-18&quot;:41.58},{&quot;2026-08-19&quot;:41.92},{&quot;2026-08-20&quot;:41.92},{&quot;2026-08-21&quot;:41.79},{&quot;2026-08-22&quot;:41.79},{&quot;2026-08-23&quot;:41.79},{&quot;2026-08-24&quot;:41.79},{&quot;2026-08-25&quot;:41.79},{&quot;2026-08-26&quot;:41.96},{&quot;2026-08-27&quot;:42.1},{&quot;2026-08-28&quot;:41.89},{&quot;2026-08-29&quot;:41.89},{&quot;2026-08-30&quot;:41.89},{&quot;2026-08-31&quot;:41.89},{&quot;2026-09-01&quot;:41.89},{&quot;2026-09-02&quot;:41.92},{&quot;2026-09-03&quot;:42.06},{&quot;2026-09-04&quot;:42.06},{&quot;2026-09-05&quot;:42.06},{&quot;2026-09-06&quot;:42.06},{&quot;2026-09-07&quot;:42.06},{&quot;2026-09-08&quot;:42.06},{&quot;2026-09-09&quot;:41.97},{&quot;2026-09-10&quot;:41.97},{&quot;2026-09-11&quot;:41.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="20842"
  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-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">
            Sword of Feast and Famine
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $40.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="Sword of Feast and Famine" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/7/c7710eb5-c56a-437b-8847-2a829c404d47.jpg?1783930094" />

        <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">
            Sword of Feast and Famine
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Artifact — Equipment</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="Sword of Feast and Famine" src="https://cards.scryfall.io/large/front/c/7/c7710eb5-c56a-437b-8847-2a829c404d47.jpg?1783930094" />
    </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">
                $40.56
              </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">
                $56.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">$30.00</span>
              <span class="text-xs text-grey-text">Credit: $39.00</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:54.82},{&quot;2026-06-14&quot;:54.82},{&quot;2026-06-15&quot;:54.82},{&quot;2026-06-16&quot;:54.82},{&quot;2026-06-17&quot;:54.82},{&quot;2026-06-18&quot;:54.82},{&quot;2026-06-19&quot;:54.82},{&quot;2026-06-20&quot;:54.47},{&quot;2026-06-21&quot;:54.47},{&quot;2026-06-22&quot;:54.47},{&quot;2026-06-23&quot;:54.47},{&quot;2026-06-24&quot;:54.47},{&quot;2026-06-25&quot;:54.47},{&quot;2026-06-26&quot;:54.47},{&quot;2026-06-27&quot;:54.47},{&quot;2026-06-28&quot;:54.47},{&quot;2026-06-29&quot;:54.47},{&quot;2026-06-30&quot;:54.19},{&quot;2026-07-01&quot;:54.19},{&quot;2026-07-02&quot;:54.19},{&quot;2026-07-03&quot;:54.19},{&quot;2026-07-04&quot;:52.87},{&quot;2026-07-05&quot;:52.87},{&quot;2026-07-06&quot;:52.87},{&quot;2026-07-07&quot;:53.47},{&quot;2026-07-08&quot;:53.47},{&quot;2026-07-09&quot;:53.47},{&quot;2026-07-10&quot;:53.34},{&quot;2026-07-11&quot;:53.34},{&quot;2026-07-12&quot;:53.34},{&quot;2026-07-13&quot;:53.34},{&quot;2026-07-14&quot;:53.34},{&quot;2026-07-15&quot;:53.34},{&quot;2026-07-16&quot;:53.34},{&quot;2026-07-17&quot;:54.02},{&quot;2026-07-18&quot;:54.02},{&quot;2026-07-19&quot;:54.02},{&quot;2026-07-20&quot;:54.02},{&quot;2026-07-21&quot;:54.02},{&quot;2026-07-22&quot;:54.02},{&quot;2026-07-23&quot;:54.02},{&quot;2026-07-24&quot;:54.02},{&quot;2026-07-25&quot;:54.02},{&quot;2026-07-26&quot;:54.02},{&quot;2026-07-27&quot;:54.02},{&quot;2026-07-28&quot;:54.02},{&quot;2026-07-29&quot;:54.02},{&quot;2026-07-30&quot;:54.0},{&quot;2026-07-31&quot;:54.0},{&quot;2026-08-01&quot;:54.0},{&quot;2026-08-02&quot;:54.0},{&quot;2026-08-03&quot;:54.0},{&quot;2026-08-04&quot;:54.65},{&quot;2026-08-05&quot;:54.65},{&quot;2026-08-07&quot;:54.65},{&quot;2026-08-08&quot;:54.65},{&quot;2026-08-09&quot;:54.65},{&quot;2026-08-10&quot;:55.12},{&quot;2026-08-11&quot;:55.12},{&quot;2026-08-12&quot;:55.21},{&quot;2026-08-13&quot;:55.21},{&quot;2026-08-14&quot;:55.21},{&quot;2026-08-15&quot;:55.21},{&quot;2026-08-16&quot;:55.21},{&quot;2026-08-17&quot;:55.81},{&quot;2026-08-18&quot;:55.81},{&quot;2026-08-19&quot;:55.81},{&quot;2026-08-20&quot;:55.81},{&quot;2026-08-21&quot;:56.02},{&quot;2026-08-22&quot;:56.02},{&quot;2026-08-23&quot;:56.02},{&quot;2026-08-24&quot;:56.02},{&quot;2026-08-25&quot;:56.02},{&quot;2026-08-26&quot;:56.22},{&quot;2026-08-27&quot;:56.22},{&quot;2026-08-28&quot;:56.22},{&quot;2026-08-29&quot;:56.22},{&quot;2026-08-30&quot;:56.22},{&quot;2026-08-31&quot;:56.22},{&quot;2026-09-01&quot;:56.21},{&quot;2026-09-02&quot;:56.21},{&quot;2026-09-03&quot;:56.21},{&quot;2026-09-04&quot;:56.21},{&quot;2026-09-05&quot;:56.21},{&quot;2026-09-06&quot;:56.41},{&quot;2026-09-07&quot;:56.41},{&quot;2026-09-08&quot;:56.41},{&quot;2026-09-09&quot;:56.41},{&quot;2026-09-10&quot;:56.41},{&quot;2026-09-11&quot;:56.41}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:39.57},{&quot;2026-06-14&quot;:39.52},{&quot;2026-06-15&quot;:39.4},{&quot;2026-06-16&quot;:39.4},{&quot;2026-06-17&quot;:39.2},{&quot;2026-06-18&quot;:39.21},{&quot;2026-06-19&quot;:39.21},{&quot;2026-06-20&quot;:39.21},{&quot;2026-06-21&quot;:39.21},{&quot;2026-06-22&quot;:39.21},{&quot;2026-06-23&quot;:39.21},{&quot;2026-06-24&quot;:39.21},{&quot;2026-06-25&quot;:39.21},{&quot;2026-06-26&quot;:39.21},{&quot;2026-06-27&quot;:39.21},{&quot;2026-06-28&quot;:39.21},{&quot;2026-06-29&quot;:39.19},{&quot;2026-06-30&quot;:39.19},{&quot;2026-07-01&quot;:39.19},{&quot;2026-07-02&quot;:38.64},{&quot;2026-07-03&quot;:38.68},{&quot;2026-07-04&quot;:38.68},{&quot;2026-07-05&quot;:38.94},{&quot;2026-07-06&quot;:38.94},{&quot;2026-07-07&quot;:38.85},{&quot;2026-07-08&quot;:38.85},{&quot;2026-07-09&quot;:38.87},{&quot;2026-07-10&quot;:38.87},{&quot;2026-07-11&quot;:38.81},{&quot;2026-07-12&quot;:38.81},{&quot;2026-07-13&quot;:39.02},{&quot;2026-07-14&quot;:38.76},{&quot;2026-07-15&quot;:38.72},{&quot;2026-07-16&quot;:38.72},{&quot;2026-07-17&quot;:38.74},{&quot;2026-07-18&quot;:38.74},{&quot;2026-07-19&quot;:38.79},{&quot;2026-07-20&quot;:38.78},{&quot;2026-07-21&quot;:38.83},{&quot;2026-07-22&quot;:38.75},{&quot;2026-07-23&quot;:38.87},{&quot;2026-07-24&quot;:38.87},{&quot;2026-07-25&quot;:38.99},{&quot;2026-07-26&quot;:39.18},{&quot;2026-07-27&quot;:39.18},{&quot;2026-07-28&quot;:39.18},{&quot;2026-07-29&quot;:39.18},{&quot;2026-07-30&quot;:39.81},{&quot;2026-07-31&quot;:39.74},{&quot;2026-08-01&quot;:39.66},{&quot;2026-08-02&quot;:39.9},{&quot;2026-08-03&quot;:39.76},{&quot;2026-08-04&quot;:39.76},{&quot;2026-08-05&quot;:39.74},{&quot;2026-08-07&quot;:40.11},{&quot;2026-08-08&quot;:40.1},{&quot;2026-08-09&quot;:40.1},{&quot;2026-08-10&quot;:40.21},{&quot;2026-08-11&quot;:40.21},{&quot;2026-08-12&quot;:40.13},{&quot;2026-08-13&quot;:39.88},{&quot;2026-08-14&quot;:40.32},{&quot;2026-08-15&quot;:40.32},{&quot;2026-08-16&quot;:40.09},{&quot;2026-08-17&quot;:40.22},{&quot;2026-08-18&quot;:40.22},{&quot;2026-08-19&quot;:40.08},{&quot;2026-08-20&quot;:40.08},{&quot;2026-08-21&quot;:40.18},{&quot;2026-08-22&quot;:40.82},{&quot;2026-08-23&quot;:40.82},{&quot;2026-08-24&quot;:40.84},{&quot;2026-08-25&quot;:40.84},{&quot;2026-08-26&quot;:40.84},{&quot;2026-08-27&quot;:40.86},{&quot;2026-08-28&quot;:40.89},{&quot;2026-08-29&quot;:40.89},{&quot;2026-08-30&quot;:40.96},{&quot;2026-08-31&quot;:41.07},{&quot;2026-09-01&quot;:41.07},{&quot;2026-09-02&quot;:41.07},{&quot;2026-09-03&quot;:41.07},{&quot;2026-09-04&quot;:41.07},{&quot;2026-09-05&quot;:40.81},{&quot;2026-09-06&quot;:40.81},{&quot;2026-09-07&quot;:40.81},{&quot;2026-09-08&quot;:40.74},{&quot;2026-09-09&quot;:40.74},{&quot;2026-09-10&quot;:40.89},{&quot;2026-09-11&quot;:40.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="19985"
  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-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">
            Avacyn, Angel of Hope
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $33.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="Avacyn, Angel of Hope" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/0/a0519776-3d86-4f7d-9c3b-71c1dfbf7e12.jpg?1783930219" />

        <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">
            Avacyn, Angel of Hope
        </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 — Angel</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-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Avacyn, Angel of Hope" src="https://cards.scryfall.io/large/front/a/0/a0519776-3d86-4f7d-9c3b-71c1dfbf7e12.jpg?1783930219" />
    </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.95
              </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.44
              </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">$22.00</span>
              <span class="text-xs text-grey-text">Credit: $28.60</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:36.19},{&quot;2026-06-14&quot;:36.19},{&quot;2026-06-15&quot;:36.19},{&quot;2026-06-16&quot;:36.19},{&quot;2026-06-17&quot;:36.19},{&quot;2026-06-18&quot;:36.42},{&quot;2026-06-19&quot;:36.42},{&quot;2026-06-20&quot;:36.42},{&quot;2026-06-21&quot;:36.42},{&quot;2026-06-22&quot;:36.42},{&quot;2026-06-23&quot;:36.42},{&quot;2026-06-24&quot;:36.42},{&quot;2026-06-25&quot;:36.42},{&quot;2026-06-26&quot;:36.42},{&quot;2026-06-27&quot;:36.42},{&quot;2026-06-28&quot;:36.42},{&quot;2026-06-29&quot;:36.42},{&quot;2026-06-30&quot;:36.42},{&quot;2026-07-01&quot;:36.42},{&quot;2026-07-02&quot;:36.42},{&quot;2026-07-03&quot;:36.42},{&quot;2026-07-04&quot;:36.42},{&quot;2026-07-05&quot;:36.42},{&quot;2026-07-06&quot;:36.42},{&quot;2026-07-07&quot;:36.42},{&quot;2026-07-08&quot;:36.42},{&quot;2026-07-09&quot;:36.42},{&quot;2026-07-10&quot;:36.42},{&quot;2026-07-11&quot;:36.42},{&quot;2026-07-12&quot;:36.42},{&quot;2026-07-13&quot;:36.42},{&quot;2026-07-14&quot;:36.42},{&quot;2026-07-15&quot;:36.42},{&quot;2026-07-16&quot;:36.42},{&quot;2026-07-17&quot;:36.42},{&quot;2026-07-18&quot;:36.68},{&quot;2026-07-19&quot;:36.68},{&quot;2026-07-20&quot;:36.68},{&quot;2026-07-21&quot;:36.68},{&quot;2026-07-22&quot;:36.68},{&quot;2026-07-23&quot;:36.68},{&quot;2026-07-24&quot;:36.68},{&quot;2026-07-25&quot;:36.68},{&quot;2026-07-26&quot;:36.68},{&quot;2026-07-27&quot;:36.68},{&quot;2026-07-28&quot;:36.68},{&quot;2026-07-29&quot;:36.68},{&quot;2026-07-30&quot;:36.68},{&quot;2026-07-31&quot;:36.78},{&quot;2026-08-01&quot;:36.78},{&quot;2026-08-02&quot;:37.09},{&quot;2026-08-03&quot;:37.09},{&quot;2026-08-04&quot;:37.09},{&quot;2026-08-05&quot;:37.16},{&quot;2026-08-07&quot;:37.03},{&quot;2026-08-08&quot;:37.03},{&quot;2026-08-09&quot;:37.03},{&quot;2026-08-10&quot;:37.03},{&quot;2026-08-11&quot;:37.49},{&quot;2026-08-12&quot;:37.49},{&quot;2026-08-13&quot;:37.49},{&quot;2026-08-14&quot;:37.49},{&quot;2026-08-15&quot;:37.49},{&quot;2026-08-16&quot;:37.49},{&quot;2026-08-17&quot;:37.49},{&quot;2026-08-18&quot;:37.49},{&quot;2026-08-19&quot;:37.78},{&quot;2026-08-20&quot;:38.15},{&quot;2026-08-21&quot;:38.06},{&quot;2026-08-22&quot;:38.06},{&quot;2026-08-23&quot;:38.06},{&quot;2026-08-24&quot;:38.21},{&quot;2026-08-25&quot;:38.21},{&quot;2026-08-26&quot;:38.34},{&quot;2026-08-27&quot;:38.53},{&quot;2026-08-28&quot;:38.53},{&quot;2026-08-29&quot;:38.53},{&quot;2026-08-30&quot;:38.53},{&quot;2026-08-31&quot;:38.44},{&quot;2026-09-01&quot;:38.44},{&quot;2026-09-02&quot;:38.44},{&quot;2026-09-03&quot;:38.44},{&quot;2026-09-04&quot;:38.44},{&quot;2026-09-05&quot;:38.44},{&quot;2026-09-06&quot;:38.44},{&quot;2026-09-07&quot;:38.44},{&quot;2026-09-08&quot;:38.44},{&quot;2026-09-09&quot;:38.44},{&quot;2026-09-10&quot;:38.44},{&quot;2026-09-11&quot;:38.44}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:35.47},{&quot;2026-06-14&quot;:35.63},{&quot;2026-06-15&quot;:36.41},{&quot;2026-06-16&quot;:36.52},{&quot;2026-06-17&quot;:36.52},{&quot;2026-06-18&quot;:36.52},{&quot;2026-06-19&quot;:36.52},{&quot;2026-06-20&quot;:36.52},{&quot;2026-06-21&quot;:36.52},{&quot;2026-06-22&quot;:36.55},{&quot;2026-06-23&quot;:36.55},{&quot;2026-06-24&quot;:36.55},{&quot;2026-06-25&quot;:36.55},{&quot;2026-06-26&quot;:36.55},{&quot;2026-06-27&quot;:36.58},{&quot;2026-06-28&quot;:36.58},{&quot;2026-06-29&quot;:36.58},{&quot;2026-06-30&quot;:36.58},{&quot;2026-07-01&quot;:36.58},{&quot;2026-07-02&quot;:36.58},{&quot;2026-07-03&quot;:36.58},{&quot;2026-07-04&quot;:36.58},{&quot;2026-07-05&quot;:36.58},{&quot;2026-07-06&quot;:36.58},{&quot;2026-07-07&quot;:36.57},{&quot;2026-07-08&quot;:36.57},{&quot;2026-07-09&quot;:36.57},{&quot;2026-07-10&quot;:36.57},{&quot;2026-07-11&quot;:36.57},{&quot;2026-07-12&quot;:36.57},{&quot;2026-07-13&quot;:36.57},{&quot;2026-07-14&quot;:36.56},{&quot;2026-07-15&quot;:36.56},{&quot;2026-07-16&quot;:36.56},{&quot;2026-07-17&quot;:36.56},{&quot;2026-07-18&quot;:36.56},{&quot;2026-07-19&quot;:36.56},{&quot;2026-07-20&quot;:36.56},{&quot;2026-07-21&quot;:36.56},{&quot;2026-07-22&quot;:36.56},{&quot;2026-07-23&quot;:36.56},{&quot;2026-07-24&quot;:36.12},{&quot;2026-07-25&quot;:36.12},{&quot;2026-07-26&quot;:36.12},{&quot;2026-07-27&quot;:36.12},{&quot;2026-07-28&quot;:36.04},{&quot;2026-07-29&quot;:35.96},{&quot;2026-07-30&quot;:35.98},{&quot;2026-07-31&quot;:35.98},{&quot;2026-08-01&quot;:35.98},{&quot;2026-08-02&quot;:35.94},{&quot;2026-08-03&quot;:35.94},{&quot;2026-08-04&quot;:35.41},{&quot;2026-08-05&quot;:35.41},{&quot;2026-08-07&quot;:35.39},{&quot;2026-08-08&quot;:35.45},{&quot;2026-08-09&quot;:35.42},{&quot;2026-08-10&quot;:35.42},{&quot;2026-08-11&quot;:35.42},{&quot;2026-08-12&quot;:35.4},{&quot;2026-08-13&quot;:35.33},{&quot;2026-08-14&quot;:35.33},{&quot;2026-08-15&quot;:35.18},{&quot;2026-08-16&quot;:35.18},{&quot;2026-08-17&quot;:34.49},{&quot;2026-08-18&quot;:34.49},{&quot;2026-08-19&quot;:34.53},{&quot;2026-08-20&quot;:34.53},{&quot;2026-08-21&quot;:34.53},{&quot;2026-08-22&quot;:34.58},{&quot;2026-08-23&quot;:34.58},{&quot;2026-08-24&quot;:34.58},{&quot;2026-08-25&quot;:34.58},{&quot;2026-08-26&quot;:34.58},{&quot;2026-08-27&quot;:34.58},{&quot;2026-08-28&quot;:34.58},{&quot;2026-08-29&quot;:34.58},{&quot;2026-08-30&quot;:33.75},{&quot;2026-08-31&quot;:33.75},{&quot;2026-09-01&quot;:33.75},{&quot;2026-09-02&quot;:33.81},{&quot;2026-09-03&quot;:33.81},{&quot;2026-09-04&quot;:33.92},{&quot;2026-09-05&quot;:34.02},{&quot;2026-09-06&quot;:34.02},{&quot;2026-09-07&quot;:34.02},{&quot;2026-09-08&quot;:33.95},{&quot;2026-09-09&quot;:33.95},{&quot;2026-09-10&quot;:33.95},{&quot;2026-09-11&quot;:33.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="20058"
  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">
            Stoneforge Mystic
        </span>


      </div>

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

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

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

        <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">
            Stoneforge Mystic
        </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 — Kor Artificer</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Stoneforge Mystic" src="https://cards.scryfall.io/large/front/4/d/4d3473d0-b46f-41f5-ac1e-ba217f7747d4.jpg?1783930209" />
    </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.45
              </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">
                $35.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">$17.50</span>
              <span class="text-xs text-grey-text">Credit: $22.75</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:29.7},{&quot;2026-06-11&quot;:29.7},{&quot;2026-06-12&quot;:29.7},{&quot;2026-06-13&quot;:29.7},{&quot;2026-06-14&quot;:29.7},{&quot;2026-06-15&quot;:30.29},{&quot;2026-06-16&quot;:30.29},{&quot;2026-06-17&quot;:30.29},{&quot;2026-06-18&quot;:30.29},{&quot;2026-06-19&quot;:30.29},{&quot;2026-06-20&quot;:30.29},{&quot;2026-06-21&quot;:30.29},{&quot;2026-06-22&quot;:31.68},{&quot;2026-06-23&quot;:32.28},{&quot;2026-06-24&quot;:32.28},{&quot;2026-06-25&quot;:32.28},{&quot;2026-06-26&quot;:32.28},{&quot;2026-06-27&quot;:32.28},{&quot;2026-06-28&quot;:32.71},{&quot;2026-06-29&quot;:32.79},{&quot;2026-06-30&quot;:32.75},{&quot;2026-07-01&quot;:32.75},{&quot;2026-07-02&quot;:32.75},{&quot;2026-07-03&quot;:32.75},{&quot;2026-07-04&quot;:32.75},{&quot;2026-07-05&quot;:32.75},{&quot;2026-07-06&quot;:32.75},{&quot;2026-07-07&quot;:32.75},{&quot;2026-07-08&quot;:32.75},{&quot;2026-07-09&quot;:32.75},{&quot;2026-07-10&quot;:32.79},{&quot;2026-07-11&quot;:32.79},{&quot;2026-07-12&quot;:32.79},{&quot;2026-07-13&quot;:32.79},{&quot;2026-07-14&quot;:32.79},{&quot;2026-07-15&quot;:32.79},{&quot;2026-07-16&quot;:32.79},{&quot;2026-07-17&quot;:32.91},{&quot;2026-07-18&quot;:32.91},{&quot;2026-07-19&quot;:32.91},{&quot;2026-07-20&quot;:32.91},{&quot;2026-07-21&quot;:32.91},{&quot;2026-07-23&quot;:33.31},{&quot;2026-07-25&quot;:33.31},{&quot;2026-07-26&quot;:33.31},{&quot;2026-07-27&quot;:33.52},{&quot;2026-07-29&quot;:33.52},{&quot;2026-07-30&quot;:33.52},{&quot;2026-07-31&quot;:33.82},{&quot;2026-08-01&quot;:33.82},{&quot;2026-08-02&quot;:33.82},{&quot;2026-08-03&quot;:33.82},{&quot;2026-08-04&quot;:33.82},{&quot;2026-08-05&quot;:34.07},{&quot;2026-08-07&quot;:34.07},{&quot;2026-08-08&quot;:34.07},{&quot;2026-08-09&quot;:34.56},{&quot;2026-08-10&quot;:34.86},{&quot;2026-08-11&quot;:34.86},{&quot;2026-08-12&quot;:34.86},{&quot;2026-08-13&quot;:34.86},{&quot;2026-08-14&quot;:34.86},{&quot;2026-08-15&quot;:34.86},{&quot;2026-08-16&quot;:34.86},{&quot;2026-08-17&quot;:34.86},{&quot;2026-08-18&quot;:34.79},{&quot;2026-08-19&quot;:34.79},{&quot;2026-08-20&quot;:34.79},{&quot;2026-08-21&quot;:34.79},{&quot;2026-08-22&quot;:34.79},{&quot;2026-08-23&quot;:34.79},{&quot;2026-08-24&quot;:34.94},{&quot;2026-08-25&quot;:34.94},{&quot;2026-08-26&quot;:35.31},{&quot;2026-08-27&quot;:35.31},{&quot;2026-08-28&quot;:35.31},{&quot;2026-08-29&quot;:35.31},{&quot;2026-08-30&quot;:35.31},{&quot;2026-08-31&quot;:35.31},{&quot;2026-09-01&quot;:35.31},{&quot;2026-09-02&quot;:35.31},{&quot;2026-09-03&quot;:35.31},{&quot;2026-09-04&quot;:35.31},{&quot;2026-09-05&quot;:35.31},{&quot;2026-09-06&quot;:35.31},{&quot;2026-09-07&quot;:35.31},{&quot;2026-09-08&quot;:35.31},{&quot;2026-09-09&quot;:35.31},{&quot;2026-09-10&quot;:35.31},{&quot;2026-09-11&quot;:35.31}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:29.91},{&quot;2026-06-11&quot;:29.84},{&quot;2026-06-12&quot;:30.13},{&quot;2026-06-13&quot;:30.13},{&quot;2026-06-14&quot;:30.13},{&quot;2026-06-15&quot;:30.7},{&quot;2026-06-16&quot;:30.7},{&quot;2026-06-17&quot;:30.44},{&quot;2026-06-18&quot;:30.36},{&quot;2026-06-19&quot;:30.25},{&quot;2026-06-20&quot;:30.2},{&quot;2026-06-21&quot;:29.77},{&quot;2026-06-22&quot;:29.77},{&quot;2026-06-23&quot;:29.57},{&quot;2026-06-24&quot;:29.76},{&quot;2026-06-25&quot;:29.76},{&quot;2026-06-26&quot;:30.06},{&quot;2026-06-27&quot;:29.97},{&quot;2026-06-28&quot;:30.75},{&quot;2026-06-29&quot;:30.69},{&quot;2026-06-30&quot;:30.43},{&quot;2026-07-01&quot;:29.94},{&quot;2026-07-02&quot;:30.01},{&quot;2026-07-03&quot;:30.43},{&quot;2026-07-04&quot;:30.43},{&quot;2026-07-05&quot;:30.43},{&quot;2026-07-06&quot;:30.43},{&quot;2026-07-07&quot;:30.43},{&quot;2026-07-08&quot;:30.61},{&quot;2026-07-09&quot;:30.56},{&quot;2026-07-10&quot;:30.56},{&quot;2026-07-11&quot;:30.97},{&quot;2026-07-12&quot;:31.21},{&quot;2026-07-13&quot;:31.77},{&quot;2026-07-14&quot;:31.77},{&quot;2026-07-15&quot;:32.46},{&quot;2026-07-16&quot;:31.57},{&quot;2026-07-17&quot;:31.34},{&quot;2026-07-18&quot;:31.34},{&quot;2026-07-19&quot;:31.34},{&quot;2026-07-20&quot;:31.55},{&quot;2026-07-21&quot;:31.65},{&quot;2026-07-23&quot;:31.43},{&quot;2026-07-25&quot;:31.34},{&quot;2026-07-26&quot;:31.34},{&quot;2026-07-27&quot;:31.34},{&quot;2026-07-29&quot;:31.34},{&quot;2026-07-30&quot;:31.33},{&quot;2026-07-31&quot;:31.74},{&quot;2026-08-01&quot;:31.74},{&quot;2026-08-02&quot;:31.63},{&quot;2026-08-03&quot;:31.63},{&quot;2026-08-04&quot;:31.22},{&quot;2026-08-05&quot;:31.47},{&quot;2026-08-07&quot;:31.69},{&quot;2026-08-08&quot;:31.22},{&quot;2026-08-09&quot;:31.26},{&quot;2026-08-10&quot;:30.91},{&quot;2026-08-11&quot;:31.26},{&quot;2026-08-12&quot;:31.31},{&quot;2026-08-13&quot;:31.31},{&quot;2026-08-14&quot;:31.33},{&quot;2026-08-15&quot;:30.89},{&quot;2026-08-16&quot;:31.37},{&quot;2026-08-17&quot;:31.37},{&quot;2026-08-18&quot;:31.37},{&quot;2026-08-19&quot;:31.09},{&quot;2026-08-20&quot;:31.09},{&quot;2026-08-21&quot;:31.22},{&quot;2026-08-22&quot;:31.2},{&quot;2026-08-23&quot;:31.38},{&quot;2026-08-24&quot;:31.56},{&quot;2026-08-25&quot;:31.56},{&quot;2026-08-26&quot;:31.96},{&quot;2026-08-27&quot;:31.96},{&quot;2026-08-28&quot;:31.96},{&quot;2026-08-29&quot;:31.96},{&quot;2026-08-30&quot;:32.06},{&quot;2026-08-31&quot;:31.89},{&quot;2026-09-01&quot;:31.89},{&quot;2026-09-02&quot;:31.83},{&quot;2026-09-03&quot;:31.76},{&quot;2026-09-04&quot;:31.72},{&quot;2026-09-05&quot;:31.71},{&quot;2026-09-06&quot;:31.71},{&quot;2026-09-07&quot;:31.6},{&quot;2026-09-08&quot;:31.45},{&quot;2026-09-09&quot;:31.45},{&quot;2026-09-10&quot;:31.45},{&quot;2026-09-11&quot;:31.45}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="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">
            $31.23
          </span>
        </div>
      </div>
    </div>

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

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

        <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">
            Enlightened Tutor
        </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-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="Enlightened Tutor" src="https://cards.scryfall.io/large/front/8/e/8ecea08d-7d65-4d61-a34d-2f8976af5f5e.jpg?1783918399" />
    </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.23
              </span>

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $34.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">$20.00</span>
              <span class="text-xs text-grey-text">Credit: $26.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;2026-06-12&quot;:32.5},{&quot;2026-06-13&quot;:32.56},{&quot;2026-06-14&quot;:32.47},{&quot;2026-06-15&quot;:32.47},{&quot;2026-06-16&quot;:32.81},{&quot;2026-06-17&quot;:32.89},{&quot;2026-06-18&quot;:32.89},{&quot;2026-06-19&quot;:32.89},{&quot;2026-06-20&quot;:32.89},{&quot;2026-06-21&quot;:32.96},{&quot;2026-06-22&quot;:32.96},{&quot;2026-06-23&quot;:32.98},{&quot;2026-06-24&quot;:32.98},{&quot;2026-06-25&quot;:33.12},{&quot;2026-06-26&quot;:33.12},{&quot;2026-06-27&quot;:32.75},{&quot;2026-06-28&quot;:32.94},{&quot;2026-06-29&quot;:33.23},{&quot;2026-06-30&quot;:33.48},{&quot;2026-07-01&quot;:33.71},{&quot;2026-07-02&quot;:33.22},{&quot;2026-07-03&quot;:33.22},{&quot;2026-07-04&quot;:33.28},{&quot;2026-07-05&quot;:33.28},{&quot;2026-07-06&quot;:33.28},{&quot;2026-07-07&quot;:33.28},{&quot;2026-07-08&quot;:33.7},{&quot;2026-07-09&quot;:33.7},{&quot;2026-07-10&quot;:33.7},{&quot;2026-07-11&quot;:33.73},{&quot;2026-07-12&quot;:33.73},{&quot;2026-07-13&quot;:33.73},{&quot;2026-07-14&quot;:33.55},{&quot;2026-07-15&quot;:33.68},{&quot;2026-07-16&quot;:33.9},{&quot;2026-07-17&quot;:33.9},{&quot;2026-07-18&quot;:33.75},{&quot;2026-07-19&quot;:33.75},{&quot;2026-07-20&quot;:33.75},{&quot;2026-07-21&quot;:33.75},{&quot;2026-07-23&quot;:33.59},{&quot;2026-07-24&quot;:33.91},{&quot;2026-07-25&quot;:33.89},{&quot;2026-07-26&quot;:33.89},{&quot;2026-07-27&quot;:33.89},{&quot;2026-07-28&quot;:33.89},{&quot;2026-07-29&quot;:33.96},{&quot;2026-07-30&quot;:33.96},{&quot;2026-07-31&quot;:33.96},{&quot;2026-08-01&quot;:33.8},{&quot;2026-08-02&quot;:33.8},{&quot;2026-08-03&quot;:33.8},{&quot;2026-08-04&quot;:33.84},{&quot;2026-08-05&quot;:33.61},{&quot;2026-08-07&quot;:32.74},{&quot;2026-08-08&quot;:32.74},{&quot;2026-08-09&quot;:32.74},{&quot;2026-08-10&quot;:33.28},{&quot;2026-08-11&quot;:33.61},{&quot;2026-08-12&quot;:33.3},{&quot;2026-08-13&quot;:33.3},{&quot;2026-08-14&quot;:33.3},{&quot;2026-08-15&quot;:33.23},{&quot;2026-08-16&quot;:33.23},{&quot;2026-08-17&quot;:33.23},{&quot;2026-08-18&quot;:33.78},{&quot;2026-08-19&quot;:33.33},{&quot;2026-08-20&quot;:33.33},{&quot;2026-08-21&quot;:33.47},{&quot;2026-08-22&quot;:33.64},{&quot;2026-08-23&quot;:33.48},{&quot;2026-08-24&quot;:33.48},{&quot;2026-08-25&quot;:33.61},{&quot;2026-08-26&quot;:33.62},{&quot;2026-08-27&quot;:33.76},{&quot;2026-08-28&quot;:33.76},{&quot;2026-08-29&quot;:33.76},{&quot;2026-08-30&quot;:34.33},{&quot;2026-08-31&quot;:34.33},{&quot;2026-09-01&quot;:34.51},{&quot;2026-09-02&quot;:34.51},{&quot;2026-09-03&quot;:35.16},{&quot;2026-09-04&quot;:35.16},{&quot;2026-09-05&quot;:34.79},{&quot;2026-09-06&quot;:34.72},{&quot;2026-09-07&quot;:34.84},{&quot;2026-09-08&quot;:34.61},{&quot;2026-09-09&quot;:34.61},{&quot;2026-09-10&quot;:34.61},{&quot;2026-09-11&quot;:34.7}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:32.38},{&quot;2026-06-13&quot;:32.38},{&quot;2026-06-14&quot;:32.38},{&quot;2026-06-15&quot;:32.24},{&quot;2026-06-16&quot;:32.31},{&quot;2026-06-17&quot;:32.31},{&quot;2026-06-18&quot;:32.27},{&quot;2026-06-19&quot;:32.22},{&quot;2026-06-20&quot;:32.34},{&quot;2026-06-21&quot;:32.34},{&quot;2026-06-22&quot;:32.6},{&quot;2026-06-23&quot;:32.6},{&quot;2026-06-24&quot;:32.6},{&quot;2026-06-25&quot;:32.6},{&quot;2026-06-26&quot;:32.53},{&quot;2026-06-27&quot;:32.6},{&quot;2026-06-28&quot;:32.6},{&quot;2026-06-29&quot;:32.6},{&quot;2026-06-30&quot;:32.58},{&quot;2026-07-01&quot;:32.44},{&quot;2026-07-02&quot;:32.41},{&quot;2026-07-03&quot;:32.01},{&quot;2026-07-04&quot;:32.26},{&quot;2026-07-05&quot;:32.15},{&quot;2026-07-06&quot;:32.22},{&quot;2026-07-07&quot;:32.4},{&quot;2026-07-08&quot;:32.4},{&quot;2026-07-09&quot;:32.31},{&quot;2026-07-10&quot;:32.57},{&quot;2026-07-11&quot;:32.78},{&quot;2026-07-12&quot;:32.78},{&quot;2026-07-13&quot;:32.77},{&quot;2026-07-14&quot;:32.77},{&quot;2026-07-15&quot;:32.77},{&quot;2026-07-16&quot;:32.77},{&quot;2026-07-17&quot;:32.77},{&quot;2026-07-18&quot;:32.77},{&quot;2026-07-19&quot;:32.79},{&quot;2026-07-20&quot;:32.79},{&quot;2026-07-21&quot;:32.85},{&quot;2026-07-23&quot;:32.68},{&quot;2026-07-24&quot;:32.68},{&quot;2026-07-25&quot;:32.71},{&quot;2026-07-26&quot;:32.71},{&quot;2026-07-27&quot;:32.71},{&quot;2026-07-28&quot;:32.71},{&quot;2026-07-29&quot;:32.67},{&quot;2026-07-30&quot;:32.67},{&quot;2026-07-31&quot;:32.75},{&quot;2026-08-01&quot;:32.75},{&quot;2026-08-02&quot;:32.9},{&quot;2026-08-03&quot;:32.95},{&quot;2026-08-04&quot;:32.94},{&quot;2026-08-05&quot;:32.94},{&quot;2026-08-07&quot;:32.54},{&quot;2026-08-08&quot;:32.54},{&quot;2026-08-09&quot;:32.54},{&quot;2026-08-10&quot;:32.54},{&quot;2026-08-11&quot;:32.54},{&quot;2026-08-12&quot;:32.57},{&quot;2026-08-13&quot;:32.47},{&quot;2026-08-14&quot;:32.41},{&quot;2026-08-15&quot;:32.36},{&quot;2026-08-16&quot;:32.36},{&quot;2026-08-17&quot;:32.22},{&quot;2026-08-18&quot;:31.66},{&quot;2026-08-19&quot;:31.54},{&quot;2026-08-20&quot;:31.54},{&quot;2026-08-21&quot;:30.79},{&quot;2026-08-22&quot;:30.39},{&quot;2026-08-23&quot;:30.25},{&quot;2026-08-24&quot;:30.2},{&quot;2026-08-25&quot;:30.67},{&quot;2026-08-26&quot;:30.63},{&quot;2026-08-27&quot;:30.42},{&quot;2026-08-28&quot;:30.68},{&quot;2026-08-29&quot;:30.68},{&quot;2026-08-30&quot;:31.12},{&quot;2026-08-31&quot;:31.23},{&quot;2026-09-01&quot;:31.23},{&quot;2026-09-02&quot;:31.06},{&quot;2026-09-03&quot;:31.3},{&quot;2026-09-04&quot;:32.05},{&quot;2026-09-05&quot;:31.98},{&quot;2026-09-06&quot;:31.56},{&quot;2026-09-07&quot;:31.41},{&quot;2026-09-08&quot;:31.34},{&quot;2026-09-09&quot;:31.43},{&quot;2026-09-10&quot;:31.38},{&quot;2026-09-11&quot;:31.23}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

        <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">
            Sword of Hearth and Home
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Artifact — Equipment</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="Sword of Hearth and Home" src="https://cards.scryfall.io/large/front/a/1/a16fabbe-4557-4067-b882-f2e5dbd8b458.jpg?1783926799" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:21.55},{&quot;2026-06-14&quot;:21.55},{&quot;2026-06-15&quot;:21.55},{&quot;2026-06-16&quot;:21.51},{&quot;2026-06-17&quot;:21.51},{&quot;2026-06-18&quot;:21.51},{&quot;2026-06-19&quot;:21.51},{&quot;2026-06-20&quot;:21.51},{&quot;2026-06-21&quot;:21.69},{&quot;2026-06-22&quot;:21.69},{&quot;2026-06-23&quot;:21.68},{&quot;2026-06-24&quot;:21.68},{&quot;2026-06-25&quot;:21.68},{&quot;2026-06-26&quot;:21.68},{&quot;2026-06-27&quot;:21.68},{&quot;2026-06-28&quot;:21.68},{&quot;2026-06-29&quot;:21.67},{&quot;2026-06-30&quot;:21.67},{&quot;2026-07-01&quot;:21.67},{&quot;2026-07-02&quot;:21.85},{&quot;2026-07-03&quot;:22.1},{&quot;2026-07-04&quot;:22.07},{&quot;2026-07-05&quot;:22.07},{&quot;2026-07-06&quot;:22.18},{&quot;2026-07-07&quot;:22.18},{&quot;2026-07-08&quot;:22.07},{&quot;2026-07-09&quot;:22.07},{&quot;2026-07-10&quot;:22.07},{&quot;2026-07-11&quot;:22.13},{&quot;2026-07-12&quot;:22.13},{&quot;2026-07-13&quot;:22.13},{&quot;2026-07-14&quot;:22.13},{&quot;2026-07-15&quot;:22.13},{&quot;2026-07-16&quot;:22.13},{&quot;2026-07-17&quot;:22.13},{&quot;2026-07-18&quot;:22.13},{&quot;2026-07-19&quot;:22.13},{&quot;2026-07-20&quot;:22.2},{&quot;2026-07-21&quot;:22.2},{&quot;2026-07-22&quot;:22.2},{&quot;2026-07-23&quot;:22.17},{&quot;2026-07-24&quot;:22.15},{&quot;2026-07-25&quot;:22.15},{&quot;2026-07-26&quot;:22.15},{&quot;2026-07-27&quot;:22.15},{&quot;2026-07-28&quot;:22.15},{&quot;2026-07-29&quot;:22.15},{&quot;2026-07-30&quot;:22.15},{&quot;2026-07-31&quot;:22.15},{&quot;2026-08-01&quot;:22.15},{&quot;2026-08-02&quot;:22.15},{&quot;2026-08-03&quot;:22.19},{&quot;2026-08-04&quot;:22.19},{&quot;2026-08-05&quot;:22.19},{&quot;2026-08-07&quot;:22.19},{&quot;2026-08-08&quot;:22.19},{&quot;2026-08-09&quot;:22.2},{&quot;2026-08-10&quot;:22.2},{&quot;2026-08-11&quot;:22.2},{&quot;2026-08-12&quot;:22.2},{&quot;2026-08-13&quot;:22.2},{&quot;2026-08-14&quot;:22.2},{&quot;2026-08-15&quot;:22.2},{&quot;2026-08-16&quot;:22.2},{&quot;2026-08-17&quot;:22.2},{&quot;2026-08-18&quot;:22.2},{&quot;2026-08-19&quot;:22.2},{&quot;2026-08-20&quot;:22.2},{&quot;2026-08-21&quot;:22.2},{&quot;2026-08-22&quot;:22.2},{&quot;2026-08-23&quot;:22.2},{&quot;2026-08-24&quot;:22.2},{&quot;2026-08-25&quot;:22.28},{&quot;2026-08-26&quot;:22.28},{&quot;2026-08-27&quot;:22.28},{&quot;2026-08-28&quot;:22.28},{&quot;2026-08-29&quot;:22.28},{&quot;2026-08-30&quot;:22.28},{&quot;2026-08-31&quot;:22.28},{&quot;2026-09-01&quot;:22.13},{&quot;2026-09-02&quot;:22.13},{&quot;2026-09-03&quot;:22.07},{&quot;2026-09-04&quot;:22.07},{&quot;2026-09-05&quot;:22.07},{&quot;2026-09-06&quot;:22.18},{&quot;2026-09-07&quot;:22.18},{&quot;2026-09-08&quot;:22.23},{&quot;2026-09-09&quot;:22.27},{&quot;2026-09-10&quot;:22.27},{&quot;2026-09-11&quot;:22.21}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:19.36},{&quot;2026-06-14&quot;:19.41},{&quot;2026-06-15&quot;:19.23},{&quot;2026-06-16&quot;:19.33},{&quot;2026-06-17&quot;:19.33},{&quot;2026-06-18&quot;:19.4},{&quot;2026-06-19&quot;:19.4},{&quot;2026-06-20&quot;:19.35},{&quot;2026-06-21&quot;:19.39},{&quot;2026-06-22&quot;:19.24},{&quot;2026-06-23&quot;:19.4},{&quot;2026-06-24&quot;:19.36},{&quot;2026-06-25&quot;:18.56},{&quot;2026-06-26&quot;:18.43},{&quot;2026-06-27&quot;:17.63},{&quot;2026-06-28&quot;:17.33},{&quot;2026-06-29&quot;:16.2},{&quot;2026-06-30&quot;:16.02},{&quot;2026-07-01&quot;:15.75},{&quot;2026-07-02&quot;:16.14},{&quot;2026-07-03&quot;:16.03},{&quot;2026-07-04&quot;:15.95},{&quot;2026-07-05&quot;:16.09},{&quot;2026-07-06&quot;:16.12},{&quot;2026-07-07&quot;:16.12},{&quot;2026-07-08&quot;:16.17},{&quot;2026-07-09&quot;:16.42},{&quot;2026-07-10&quot;:16.77},{&quot;2026-07-11&quot;:16.87},{&quot;2026-07-12&quot;:17.27},{&quot;2026-07-13&quot;:17.16},{&quot;2026-07-14&quot;:17.42},{&quot;2026-07-15&quot;:17.52},{&quot;2026-07-16&quot;:17.45},{&quot;2026-07-17&quot;:17.32},{&quot;2026-07-18&quot;:17.32},{&quot;2026-07-19&quot;:17.49},{&quot;2026-07-20&quot;:17.17},{&quot;2026-07-21&quot;:17.32},{&quot;2026-07-22&quot;:17.39},{&quot;2026-07-23&quot;:17.38},{&quot;2026-07-24&quot;:17.69},{&quot;2026-07-25&quot;:17.69},{&quot;2026-07-26&quot;:17.6},{&quot;2026-07-27&quot;:17.77},{&quot;2026-07-28&quot;:17.78},{&quot;2026-07-29&quot;:17.28},{&quot;2026-07-30&quot;:17.18},{&quot;2026-07-31&quot;:17.34},{&quot;2026-08-01&quot;:17.38},{&quot;2026-08-02&quot;:17.21},{&quot;2026-08-03&quot;:17.79},{&quot;2026-08-04&quot;:17.81},{&quot;2026-08-05&quot;:18.1},{&quot;2026-08-07&quot;:17.76},{&quot;2026-08-08&quot;:17.36},{&quot;2026-08-09&quot;:16.79},{&quot;2026-08-10&quot;:16.7},{&quot;2026-08-11&quot;:16.44},{&quot;2026-08-12&quot;:16.26},{&quot;2026-08-13&quot;:16.06},{&quot;2026-08-14&quot;:16.1},{&quot;2026-08-15&quot;:15.87},{&quot;2026-08-16&quot;:16.1},{&quot;2026-08-17&quot;:16.13},{&quot;2026-08-18&quot;:16.39},{&quot;2026-08-19&quot;:16.79},{&quot;2026-08-20&quot;:17.57},{&quot;2026-08-21&quot;:17.57},{&quot;2026-08-22&quot;:17.57},{&quot;2026-08-23&quot;:17.83},{&quot;2026-08-24&quot;:18.09},{&quot;2026-08-25&quot;:18.47},{&quot;2026-08-26&quot;:18.35},{&quot;2026-08-27&quot;:18.6},{&quot;2026-08-28&quot;:18.51},{&quot;2026-08-29&quot;:18.51},{&quot;2026-08-30&quot;:19.24},{&quot;2026-08-31&quot;:19.61},{&quot;2026-09-01&quot;:19.53},{&quot;2026-09-02&quot;:19.83},{&quot;2026-09-03&quot;:19.87},{&quot;2026-09-04&quot;:20.36},{&quot;2026-09-05&quot;:20.36},{&quot;2026-09-06&quot;:20.48},{&quot;2026-09-07&quot;:20.86},{&quot;2026-09-08&quot;:21.14},{&quot;2026-09-09&quot;:21.36},{&quot;2026-09-10&quot;:21.35},{&quot;2026-09-11&quot;:20.86}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="12524"
  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">
            Sigarda&#39;s Aid
        </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">
              ↓
              5%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $19.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="Sigarda&#39;s Aid" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/5/3/531da950-dc96-4050-94a8-e01b73ddd965.jpg?1783928726" />

        <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">
            Sigarda&#39;s Aid
        </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-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="Sigarda&#39;s Aid" src="https://cards.scryfall.io/large/front/5/3/531da950-dc96-4050-94a8-e01b73ddd965.jpg?1783928726" />
    </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">
                $19.66
              </span>

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

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$15.50</span>
              <span class="text-xs text-grey-text">Credit: $20.15</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;:18.28},{&quot;2026-06-14&quot;:18.25},{&quot;2026-06-15&quot;:18.46},{&quot;2026-06-16&quot;:18.46},{&quot;2026-06-17&quot;:18.48},{&quot;2026-06-18&quot;:18.53},{&quot;2026-06-19&quot;:18.55},{&quot;2026-06-20&quot;:18.68},{&quot;2026-06-21&quot;:18.65},{&quot;2026-06-22&quot;:18.67},{&quot;2026-06-23&quot;:18.67},{&quot;2026-06-24&quot;:18.45},{&quot;2026-06-25&quot;:18.4},{&quot;2026-06-26&quot;:18.41},{&quot;2026-06-27&quot;:18.36},{&quot;2026-06-28&quot;:18.35},{&quot;2026-06-29&quot;:18.38},{&quot;2026-06-30&quot;:18.39},{&quot;2026-07-01&quot;:18.41},{&quot;2026-07-02&quot;:18.6},{&quot;2026-07-03&quot;:18.48},{&quot;2026-07-04&quot;:18.52},{&quot;2026-07-05&quot;:18.45},{&quot;2026-07-06&quot;:18.38},{&quot;2026-07-07&quot;:18.39},{&quot;2026-07-08&quot;:18.37},{&quot;2026-07-09&quot;:18.49},{&quot;2026-07-10&quot;:18.45},{&quot;2026-07-11&quot;:18.4},{&quot;2026-07-12&quot;:18.4},{&quot;2026-07-13&quot;:18.28},{&quot;2026-07-14&quot;:18.36},{&quot;2026-07-15&quot;:17.68},{&quot;2026-07-16&quot;:17.84},{&quot;2026-07-17&quot;:17.92},{&quot;2026-07-18&quot;:18.16},{&quot;2026-07-19&quot;:18.36},{&quot;2026-07-20&quot;:18.14},{&quot;2026-07-21&quot;:18.2},{&quot;2026-07-22&quot;:18.21},{&quot;2026-07-23&quot;:18.21},{&quot;2026-07-24&quot;:18.21},{&quot;2026-07-25&quot;:18.19},{&quot;2026-07-26&quot;:18.3},{&quot;2026-07-27&quot;:18.3},{&quot;2026-07-28&quot;:18.33},{&quot;2026-07-29&quot;:18.38},{&quot;2026-07-30&quot;:18.32},{&quot;2026-07-31&quot;:18.39},{&quot;2026-08-01&quot;:18.39},{&quot;2026-08-02&quot;:18.39},{&quot;2026-08-03&quot;:18.53},{&quot;2026-08-04&quot;:18.26},{&quot;2026-08-05&quot;:18.27},{&quot;2026-08-07&quot;:18.51},{&quot;2026-08-08&quot;:18.78},{&quot;2026-08-09&quot;:18.65},{&quot;2026-08-10&quot;:18.6},{&quot;2026-08-11&quot;:19.12},{&quot;2026-08-12&quot;:19.19},{&quot;2026-08-13&quot;:19.43},{&quot;2026-08-14&quot;:18.99},{&quot;2026-08-15&quot;:19.88},{&quot;2026-08-16&quot;:19.82},{&quot;2026-08-17&quot;:19.89},{&quot;2026-08-18&quot;:19.42},{&quot;2026-08-19&quot;:18.88},{&quot;2026-08-20&quot;:19.09},{&quot;2026-08-21&quot;:19.63},{&quot;2026-08-22&quot;:20.26},{&quot;2026-08-23&quot;:20.65},{&quot;2026-08-24&quot;:21.14},{&quot;2026-08-25&quot;:20.95},{&quot;2026-08-26&quot;:21.5},{&quot;2026-08-27&quot;:21.5},{&quot;2026-08-28&quot;:21.48},{&quot;2026-08-29&quot;:21.48},{&quot;2026-08-30&quot;:21.52},{&quot;2026-08-31&quot;:21.51},{&quot;2026-09-01&quot;:21.42},{&quot;2026-09-02&quot;:21.53},{&quot;2026-09-03&quot;:21.53},{&quot;2026-09-04&quot;:21.2},{&quot;2026-09-05&quot;:20.68},{&quot;2026-09-06&quot;:20.67},{&quot;2026-09-07&quot;:20.33},{&quot;2026-09-08&quot;:20.31},{&quot;2026-09-09&quot;:19.95},{&quot;2026-09-10&quot;:19.87},{&quot;2026-09-11&quot;:19.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="20739"
  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">
            Hammer of Nazahn
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $16.06
          </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="Hammer of Nazahn" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/f/b/fbce79af-968a-481b-8cd7-a323c083851d.jpg?1783930109" />

        <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">
            Hammer of Nazahn
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Hammer of Nazahn" src="https://cards.scryfall.io/large/front/f/b/fbce79af-968a-481b-8cd7-a323c083851d.jpg?1783930109" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:18.25},{&quot;2026-06-14&quot;:18.25},{&quot;2026-06-15&quot;:18.25},{&quot;2026-06-16&quot;:18.25},{&quot;2026-06-17&quot;:18.27},{&quot;2026-06-18&quot;:18.27},{&quot;2026-06-19&quot;:18.27},{&quot;2026-06-20&quot;:18.27},{&quot;2026-06-21&quot;:18.27},{&quot;2026-06-22&quot;:18.27},{&quot;2026-06-23&quot;:18.27},{&quot;2026-06-24&quot;:18.27},{&quot;2026-06-25&quot;:18.27},{&quot;2026-06-26&quot;:18.14},{&quot;2026-06-27&quot;:18.14},{&quot;2026-06-28&quot;:18.14},{&quot;2026-06-29&quot;:18.14},{&quot;2026-06-30&quot;:18.27},{&quot;2026-07-01&quot;:18.27},{&quot;2026-07-02&quot;:18.27},{&quot;2026-07-03&quot;:18.62},{&quot;2026-07-04&quot;:18.62},{&quot;2026-07-05&quot;:18.62},{&quot;2026-07-06&quot;:18.92},{&quot;2026-07-07&quot;:18.92},{&quot;2026-07-08&quot;:18.92},{&quot;2026-07-09&quot;:18.92},{&quot;2026-07-10&quot;:18.92},{&quot;2026-07-11&quot;:18.92},{&quot;2026-07-12&quot;:18.92},{&quot;2026-07-13&quot;:18.92},{&quot;2026-07-14&quot;:18.92},{&quot;2026-07-15&quot;:18.92},{&quot;2026-07-16&quot;:18.92},{&quot;2026-07-17&quot;:18.92},{&quot;2026-07-18&quot;:18.92},{&quot;2026-07-19&quot;:18.92},{&quot;2026-07-20&quot;:18.92},{&quot;2026-07-21&quot;:18.92},{&quot;2026-07-22&quot;:18.92},{&quot;2026-07-23&quot;:18.92},{&quot;2026-07-24&quot;:18.92},{&quot;2026-07-25&quot;:18.92},{&quot;2026-07-26&quot;:18.92},{&quot;2026-07-27&quot;:18.92},{&quot;2026-07-28&quot;:18.92},{&quot;2026-07-29&quot;:18.92},{&quot;2026-07-30&quot;:18.92},{&quot;2026-07-31&quot;:18.92},{&quot;2026-08-01&quot;:18.92},{&quot;2026-08-02&quot;:18.92},{&quot;2026-08-03&quot;:18.92},{&quot;2026-08-04&quot;:18.92},{&quot;2026-08-05&quot;:18.92},{&quot;2026-08-07&quot;:18.92},{&quot;2026-08-08&quot;:18.92},{&quot;2026-08-09&quot;:18.92},{&quot;2026-08-10&quot;:18.95},{&quot;2026-08-11&quot;:18.95},{&quot;2026-08-12&quot;:18.95},{&quot;2026-08-13&quot;:18.95},{&quot;2026-08-14&quot;:18.95},{&quot;2026-08-15&quot;:18.86},{&quot;2026-08-16&quot;:18.86},{&quot;2026-08-17&quot;:18.86},{&quot;2026-08-18&quot;:18.86},{&quot;2026-08-19&quot;:18.86},{&quot;2026-08-20&quot;:18.86},{&quot;2026-08-21&quot;:18.86},{&quot;2026-08-22&quot;:18.86},{&quot;2026-08-23&quot;:18.88},{&quot;2026-08-24&quot;:18.88},{&quot;2026-08-25&quot;:18.88},{&quot;2026-08-26&quot;:18.88},{&quot;2026-08-27&quot;:18.88},{&quot;2026-08-28&quot;:18.88},{&quot;2026-08-29&quot;:18.88},{&quot;2026-08-30&quot;:18.93},{&quot;2026-08-31&quot;:18.96},{&quot;2026-09-01&quot;:18.96},{&quot;2026-09-02&quot;:18.99},{&quot;2026-09-03&quot;:18.99},{&quot;2026-09-04&quot;:18.99},{&quot;2026-09-05&quot;:18.99},{&quot;2026-09-06&quot;:18.99},{&quot;2026-09-07&quot;:18.8},{&quot;2026-09-08&quot;:18.8},{&quot;2026-09-09&quot;:18.8},{&quot;2026-09-10&quot;:18.8},{&quot;2026-09-11&quot;:18.8}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:15.63},{&quot;2026-06-14&quot;:15.79},{&quot;2026-06-15&quot;:15.56},{&quot;2026-06-16&quot;:15.64},{&quot;2026-06-17&quot;:15.64},{&quot;2026-06-18&quot;:15.56},{&quot;2026-06-19&quot;:15.8},{&quot;2026-06-20&quot;:15.8},{&quot;2026-06-21&quot;:15.83},{&quot;2026-06-22&quot;:15.83},{&quot;2026-06-23&quot;:15.83},{&quot;2026-06-24&quot;:15.83},{&quot;2026-06-25&quot;:15.8},{&quot;2026-06-26&quot;:15.15},{&quot;2026-06-27&quot;:15.75},{&quot;2026-06-28&quot;:15.75},{&quot;2026-06-29&quot;:15.92},{&quot;2026-06-30&quot;:15.69},{&quot;2026-07-01&quot;:15.88},{&quot;2026-07-02&quot;:15.88},{&quot;2026-07-03&quot;:15.88},{&quot;2026-07-04&quot;:15.91},{&quot;2026-07-05&quot;:15.95},{&quot;2026-07-06&quot;:15.97},{&quot;2026-07-07&quot;:15.91},{&quot;2026-07-08&quot;:15.91},{&quot;2026-07-09&quot;:16.23},{&quot;2026-07-10&quot;:16.33},{&quot;2026-07-11&quot;:16.24},{&quot;2026-07-12&quot;:16.05},{&quot;2026-07-13&quot;:16.22},{&quot;2026-07-14&quot;:16.09},{&quot;2026-07-15&quot;:16.05},{&quot;2026-07-16&quot;:15.74},{&quot;2026-07-17&quot;:15.78},{&quot;2026-07-18&quot;:15.54},{&quot;2026-07-19&quot;:15.6},{&quot;2026-07-20&quot;:15.55},{&quot;2026-07-21&quot;:15.42},{&quot;2026-07-22&quot;:15.42},{&quot;2026-07-23&quot;:15.51},{&quot;2026-07-24&quot;:15.51},{&quot;2026-07-25&quot;:15.51},{&quot;2026-07-26&quot;:15.75},{&quot;2026-07-27&quot;:15.71},{&quot;2026-07-28&quot;:15.52},{&quot;2026-07-29&quot;:15.52},{&quot;2026-07-30&quot;:15.52},{&quot;2026-07-31&quot;:16.32},{&quot;2026-08-01&quot;:16.32},{&quot;2026-08-02&quot;:16.32},{&quot;2026-08-03&quot;:16.32},{&quot;2026-08-04&quot;:16.28},{&quot;2026-08-05&quot;:16.28},{&quot;2026-08-07&quot;:16.22},{&quot;2026-08-08&quot;:16.02},{&quot;2026-08-09&quot;:16.02},{&quot;2026-08-10&quot;:16.06},{&quot;2026-08-11&quot;:15.83},{&quot;2026-08-12&quot;:15.24},{&quot;2026-08-13&quot;:15.24},{&quot;2026-08-14&quot;:15.24},{&quot;2026-08-15&quot;:14.7},{&quot;2026-08-16&quot;:14.7},{&quot;2026-08-17&quot;:14.57},{&quot;2026-08-18&quot;:14.71},{&quot;2026-08-19&quot;:14.85},{&quot;2026-08-20&quot;:15.57},{&quot;2026-08-21&quot;:15.79},{&quot;2026-08-22&quot;:15.71},{&quot;2026-08-23&quot;:15.59},{&quot;2026-08-24&quot;:15.55},{&quot;2026-08-25&quot;:15.45},{&quot;2026-08-26&quot;:15.31},{&quot;2026-08-27&quot;:15.0},{&quot;2026-08-28&quot;:14.99},{&quot;2026-08-29&quot;:14.99},{&quot;2026-08-30&quot;:15.27},{&quot;2026-08-31&quot;:15.27},{&quot;2026-09-01&quot;:15.22},{&quot;2026-09-02&quot;:15.56},{&quot;2026-09-03&quot;:15.53},{&quot;2026-09-04&quot;:15.53},{&quot;2026-09-05&quot;:15.66},{&quot;2026-09-06&quot;:15.67},{&quot;2026-09-07&quot;:15.69},{&quot;2026-09-08&quot;:15.87},{&quot;2026-09-09&quot;:15.87},{&quot;2026-09-10&quot;:16.06},{&quot;2026-09-11&quot;:16.06}]}"
        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="28350"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-afc ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

        <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">
            Robe of Stars
        </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 — Equipment</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><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="Robe of Stars" src="https://cards.scryfall.io/large/front/b/2/b2992175-5499-4a83-9ff2-03c7c34819c3.jpg?1783926256" />
    </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.15
              </span>

            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$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-12&quot;:13.54},{&quot;2026-06-13&quot;:14.11},{&quot;2026-06-14&quot;:14.42},{&quot;2026-06-15&quot;:14.55},{&quot;2026-06-16&quot;:14.55},{&quot;2026-06-17&quot;:14.23},{&quot;2026-06-18&quot;:14.47},{&quot;2026-06-19&quot;:14.38},{&quot;2026-06-20&quot;:14.36},{&quot;2026-06-21&quot;:14.36},{&quot;2026-06-22&quot;:14.36},{&quot;2026-06-23&quot;:14.36},{&quot;2026-06-24&quot;:14.32},{&quot;2026-06-25&quot;:14.44},{&quot;2026-06-26&quot;:14.42},{&quot;2026-06-27&quot;:14.48},{&quot;2026-06-28&quot;:14.75},{&quot;2026-06-29&quot;:14.73},{&quot;2026-06-30&quot;:15.18},{&quot;2026-07-01&quot;:15.18},{&quot;2026-07-02&quot;:15.18},{&quot;2026-07-03&quot;:15.26},{&quot;2026-07-04&quot;:15.29},{&quot;2026-07-05&quot;:15.29},{&quot;2026-07-06&quot;:15.29},{&quot;2026-07-07&quot;:15.32},{&quot;2026-07-08&quot;:15.22},{&quot;2026-07-09&quot;:15.22},{&quot;2026-07-10&quot;:15.22},{&quot;2026-07-11&quot;:15.27},{&quot;2026-07-12&quot;:15.0},{&quot;2026-07-13&quot;:15.0},{&quot;2026-07-14&quot;:15.0},{&quot;2026-07-15&quot;:14.63},{&quot;2026-07-16&quot;:14.65},{&quot;2026-07-17&quot;:14.34},{&quot;2026-07-18&quot;:14.29},{&quot;2026-07-19&quot;:14.25},{&quot;2026-07-20&quot;:14.26},{&quot;2026-07-21&quot;:14.3},{&quot;2026-07-23&quot;:14.33},{&quot;2026-07-24&quot;:14.34},{&quot;2026-07-25&quot;:14.3},{&quot;2026-07-26&quot;:14.24},{&quot;2026-07-27&quot;:14.18},{&quot;2026-07-28&quot;:14.33},{&quot;2026-07-29&quot;:14.41},{&quot;2026-07-30&quot;:14.68},{&quot;2026-07-31&quot;:14.74},{&quot;2026-08-01&quot;:14.81},{&quot;2026-08-02&quot;:14.83},{&quot;2026-08-03&quot;:14.98},{&quot;2026-08-04&quot;:14.89},{&quot;2026-08-05&quot;:14.7},{&quot;2026-08-07&quot;:14.96},{&quot;2026-08-08&quot;:15.37},{&quot;2026-08-09&quot;:15.31},{&quot;2026-08-10&quot;:15.3},{&quot;2026-08-11&quot;:15.09},{&quot;2026-08-12&quot;:14.97},{&quot;2026-08-13&quot;:14.97},{&quot;2026-08-14&quot;:14.85},{&quot;2026-08-15&quot;:14.64},{&quot;2026-08-16&quot;:14.66},{&quot;2026-08-17&quot;:14.71},{&quot;2026-08-18&quot;:14.34},{&quot;2026-08-19&quot;:14.31},{&quot;2026-08-20&quot;:14.31},{&quot;2026-08-21&quot;:14.17},{&quot;2026-08-22&quot;:13.95},{&quot;2026-08-23&quot;:13.96},{&quot;2026-08-24&quot;:13.96},{&quot;2026-08-25&quot;:14.36},{&quot;2026-08-26&quot;:14.36},{&quot;2026-08-27&quot;:14.44},{&quot;2026-08-28&quot;:14.74},{&quot;2026-08-29&quot;:14.74},{&quot;2026-08-30&quot;:14.98},{&quot;2026-08-31&quot;:14.98},{&quot;2026-09-01&quot;:15.05},{&quot;2026-09-02&quot;:15.05},{&quot;2026-09-03&quot;:14.84},{&quot;2026-09-04&quot;:15.08},{&quot;2026-09-05&quot;:15.16},{&quot;2026-09-06&quot;:15.16},{&quot;2026-09-07&quot;:15.27},{&quot;2026-09-08&quot;:15.27},{&quot;2026-09-09&quot;:15.01},{&quot;2026-09-10&quot;:15.15},{&quot;2026-09-11&quot;:15.15}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $12.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="Aettir and Priwen" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/3/038710ca-c756-4e66-a9de-278e676c9f5b.jpg?1783906559" />

        <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">
            Aettir and Priwen
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Aettir and Priwen" src="https://cards.scryfall.io/large/front/0/3/038710ca-c756-4e66-a9de-278e676c9f5b.jpg?1783906559" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $12.59
              </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">
                $14.07
              </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-13&quot;:8.25},{&quot;2026-06-14&quot;:8.28},{&quot;2026-06-15&quot;:8.21},{&quot;2026-06-16&quot;:8.18},{&quot;2026-06-17&quot;:8.29},{&quot;2026-06-18&quot;:8.4},{&quot;2026-06-19&quot;:8.05},{&quot;2026-06-20&quot;:8.17},{&quot;2026-06-21&quot;:8.17},{&quot;2026-06-22&quot;:8.95},{&quot;2026-06-23&quot;:8.89},{&quot;2026-06-24&quot;:8.92},{&quot;2026-06-25&quot;:8.92},{&quot;2026-06-26&quot;:9.33},{&quot;2026-06-27&quot;:9.53},{&quot;2026-06-28&quot;:9.5},{&quot;2026-06-29&quot;:9.85},{&quot;2026-06-30&quot;:10.65},{&quot;2026-07-01&quot;:11.14},{&quot;2026-07-02&quot;:11.12},{&quot;2026-07-03&quot;:11.06},{&quot;2026-07-04&quot;:11.57},{&quot;2026-07-05&quot;:11.47},{&quot;2026-07-06&quot;:11.46},{&quot;2026-07-07&quot;:11.53},{&quot;2026-07-08&quot;:11.09},{&quot;2026-07-09&quot;:11.0},{&quot;2026-07-10&quot;:11.0},{&quot;2026-07-11&quot;:10.13},{&quot;2026-07-12&quot;:9.82},{&quot;2026-07-13&quot;:9.91},{&quot;2026-07-14&quot;:9.73},{&quot;2026-07-15&quot;:9.31},{&quot;2026-07-16&quot;:9.1},{&quot;2026-07-17&quot;:9.1},{&quot;2026-07-18&quot;:9.47},{&quot;2026-07-19&quot;:10.73},{&quot;2026-07-20&quot;:10.86},{&quot;2026-07-21&quot;:10.68},{&quot;2026-07-22&quot;:11.42},{&quot;2026-07-23&quot;:11.52},{&quot;2026-07-24&quot;:11.63},{&quot;2026-07-25&quot;:11.63},{&quot;2026-07-26&quot;:11.63},{&quot;2026-07-27&quot;:12.44},{&quot;2026-07-28&quot;:12.44},{&quot;2026-07-29&quot;:12.65},{&quot;2026-07-30&quot;:12.68},{&quot;2026-07-31&quot;:12.68},{&quot;2026-08-01&quot;:12.68},{&quot;2026-08-02&quot;:12.94},{&quot;2026-08-03&quot;:12.47},{&quot;2026-08-04&quot;:12.55},{&quot;2026-08-05&quot;:12.64},{&quot;2026-08-07&quot;:12.82},{&quot;2026-08-08&quot;:13.38},{&quot;2026-08-09&quot;:13.38},{&quot;2026-08-10&quot;:12.65},{&quot;2026-08-11&quot;:12.93},{&quot;2026-08-12&quot;:12.93},{&quot;2026-08-13&quot;:12.97},{&quot;2026-08-14&quot;:12.97},{&quot;2026-08-15&quot;:13.02},{&quot;2026-08-16&quot;:13.14},{&quot;2026-08-17&quot;:13.88},{&quot;2026-08-18&quot;:13.39},{&quot;2026-08-19&quot;:13.39},{&quot;2026-08-20&quot;:13.39},{&quot;2026-08-21&quot;:13.39},{&quot;2026-08-22&quot;:13.39},{&quot;2026-08-23&quot;:14.08},{&quot;2026-08-24&quot;:14.18},{&quot;2026-08-25&quot;:14.18},{&quot;2026-08-26&quot;:14.18},{&quot;2026-08-27&quot;:13.54},{&quot;2026-08-28&quot;:13.54},{&quot;2026-08-29&quot;:13.54},{&quot;2026-08-30&quot;:14.11},{&quot;2026-08-31&quot;:14.11},{&quot;2026-09-01&quot;:14.11},{&quot;2026-09-02&quot;:14.11},{&quot;2026-09-03&quot;:14.11},{&quot;2026-09-04&quot;:14.11},{&quot;2026-09-05&quot;:14.01},{&quot;2026-09-06&quot;:14.01},{&quot;2026-09-07&quot;:14.01},{&quot;2026-09-08&quot;:14.01},{&quot;2026-09-09&quot;:14.01},{&quot;2026-09-10&quot;:14.01},{&quot;2026-09-11&quot;:14.07}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:8.96},{&quot;2026-06-14&quot;:9.18},{&quot;2026-06-15&quot;:8.41},{&quot;2026-06-16&quot;:8.44},{&quot;2026-06-17&quot;:8.67},{&quot;2026-06-18&quot;:8.64},{&quot;2026-06-19&quot;:9.25},{&quot;2026-06-20&quot;:8.6},{&quot;2026-06-21&quot;:8.89},{&quot;2026-06-22&quot;:9.19},{&quot;2026-06-23&quot;:9.33},{&quot;2026-06-24&quot;:9.21},{&quot;2026-06-25&quot;:8.74},{&quot;2026-06-26&quot;:8.57},{&quot;2026-06-27&quot;:8.61},{&quot;2026-06-28&quot;:8.81},{&quot;2026-06-29&quot;:9.81},{&quot;2026-06-30&quot;:10.07},{&quot;2026-07-01&quot;:9.89},{&quot;2026-07-02&quot;:8.97},{&quot;2026-07-03&quot;:8.62},{&quot;2026-07-04&quot;:9.24},{&quot;2026-07-05&quot;:9.17},{&quot;2026-07-06&quot;:10.32},{&quot;2026-07-07&quot;:10.2},{&quot;2026-07-08&quot;:11.55},{&quot;2026-07-09&quot;:10.73},{&quot;2026-07-10&quot;:13.2},{&quot;2026-07-11&quot;:12.76},{&quot;2026-07-12&quot;:11.87},{&quot;2026-07-13&quot;:11.17},{&quot;2026-07-14&quot;:10.7},{&quot;2026-07-15&quot;:10.5},{&quot;2026-07-16&quot;:10.88},{&quot;2026-07-17&quot;:11.12},{&quot;2026-07-18&quot;:10.48},{&quot;2026-07-19&quot;:10.9},{&quot;2026-07-20&quot;:10.97},{&quot;2026-07-21&quot;:10.9},{&quot;2026-07-22&quot;:11.22},{&quot;2026-07-23&quot;:11.03},{&quot;2026-07-24&quot;:11.07},{&quot;2026-07-25&quot;:11.82},{&quot;2026-07-26&quot;:11.08},{&quot;2026-07-27&quot;:11.51},{&quot;2026-07-28&quot;:11.59},{&quot;2026-07-29&quot;:11.83},{&quot;2026-07-30&quot;:12.57},{&quot;2026-07-31&quot;:11.9},{&quot;2026-08-01&quot;:11.86},{&quot;2026-08-02&quot;:11.01},{&quot;2026-08-03&quot;:11.33},{&quot;2026-08-04&quot;:11.57},{&quot;2026-08-05&quot;:11.54},{&quot;2026-08-07&quot;:11.64},{&quot;2026-08-08&quot;:11.69},{&quot;2026-08-09&quot;:12.36},{&quot;2026-08-10&quot;:12.25},{&quot;2026-08-11&quot;:12.25},{&quot;2026-08-12&quot;:11.88},{&quot;2026-08-13&quot;:11.77},{&quot;2026-08-14&quot;:11.46},{&quot;2026-08-15&quot;:11.17},{&quot;2026-08-16&quot;:11.07},{&quot;2026-08-17&quot;:11.41},{&quot;2026-08-18&quot;:11.69},{&quot;2026-08-19&quot;:12.08},{&quot;2026-08-20&quot;:12.27},{&quot;2026-08-21&quot;:12.19},{&quot;2026-08-22&quot;:12.47},{&quot;2026-08-23&quot;:12.72},{&quot;2026-08-24&quot;:13.0},{&quot;2026-08-25&quot;:12.66},{&quot;2026-08-26&quot;:12.58},{&quot;2026-08-27&quot;:11.31},{&quot;2026-08-28&quot;:10.61},{&quot;2026-08-29&quot;:10.61},{&quot;2026-08-30&quot;:11.17},{&quot;2026-08-31&quot;:11.36},{&quot;2026-09-01&quot;:11.43},{&quot;2026-09-02&quot;:11.71},{&quot;2026-09-03&quot;:11.66},{&quot;2026-09-04&quot;:11.72},{&quot;2026-09-05&quot;:11.9},{&quot;2026-09-06&quot;:11.97},{&quot;2026-09-07&quot;:12.26},{&quot;2026-09-08&quot;:12.22},{&quot;2026-09-09&quot;:12.25},{&quot;2026-09-10&quot;:12.35},{&quot;2026-09-11&quot;:12.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="49410"
  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-rare ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Hall of Heliod&#39;s Generosity
        </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-100 text-badge-text">
              ↓
              2%
            </span>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Hall of Heliod&#39;s Generosity" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/5/b5cbd10a-b9a6-4c00-8280-72bb4add4390.jpg?1783933066" />

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

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Hall of Heliod&#39;s Generosity
        </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="Hall of Heliod&#39;s Generosity" src="https://cards.scryfall.io/large/front/b/5/b5cbd10a-b9a6-4c00-8280-72bb4add4390.jpg?1783933066" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$7.25</span>
              <span class="text-xs text-grey-text">Credit: $9.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-10&quot;:18.5},{&quot;2026-06-11&quot;:18.5},{&quot;2026-06-12&quot;:18.49},{&quot;2026-06-13&quot;:18.49},{&quot;2026-06-14&quot;:18.74},{&quot;2026-06-15&quot;:18.74},{&quot;2026-06-16&quot;:18.74},{&quot;2026-06-17&quot;:18.74},{&quot;2026-06-18&quot;:18.74},{&quot;2026-06-19&quot;:18.74},{&quot;2026-06-20&quot;:18.74},{&quot;2026-06-21&quot;:18.74},{&quot;2026-06-22&quot;:18.74},{&quot;2026-06-23&quot;:18.74},{&quot;2026-06-24&quot;:18.74},{&quot;2026-06-25&quot;:18.74},{&quot;2026-06-26&quot;:18.74},{&quot;2026-06-27&quot;:18.74},{&quot;2026-06-28&quot;:18.74},{&quot;2026-06-29&quot;:18.74},{&quot;2026-06-30&quot;:18.74},{&quot;2026-07-01&quot;:18.74},{&quot;2026-07-02&quot;:18.74},{&quot;2026-07-03&quot;:18.73},{&quot;2026-07-04&quot;:18.73},{&quot;2026-07-05&quot;:18.73},{&quot;2026-07-06&quot;:18.73},{&quot;2026-07-07&quot;:18.73},{&quot;2026-07-08&quot;:18.73},{&quot;2026-07-09&quot;:18.73},{&quot;2026-07-10&quot;:18.73},{&quot;2026-07-11&quot;:18.73},{&quot;2026-07-12&quot;:18.73},{&quot;2026-07-13&quot;:18.73},{&quot;2026-07-14&quot;:18.73},{&quot;2026-07-15&quot;:18.73},{&quot;2026-07-16&quot;:18.71},{&quot;2026-07-17&quot;:18.71},{&quot;2026-07-18&quot;:18.71},{&quot;2026-07-19&quot;:18.71},{&quot;2026-07-20&quot;:18.71},{&quot;2026-07-21&quot;:18.71},{&quot;2026-07-23&quot;:18.71},{&quot;2026-07-25&quot;:19.12},{&quot;2026-07-26&quot;:19.12},{&quot;2026-07-27&quot;:19.12},{&quot;2026-07-29&quot;:19.12},{&quot;2026-07-30&quot;:19.12},{&quot;2026-07-31&quot;:19.12},{&quot;2026-08-01&quot;:19.12},{&quot;2026-08-02&quot;:19.12},{&quot;2026-08-03&quot;:19.12},{&quot;2026-08-04&quot;:19.12},{&quot;2026-08-05&quot;:19.12},{&quot;2026-08-07&quot;:19.13},{&quot;2026-08-08&quot;:19.13},{&quot;2026-08-09&quot;:19.13},{&quot;2026-08-10&quot;:19.13},{&quot;2026-08-11&quot;:19.13},{&quot;2026-08-12&quot;:19.15},{&quot;2026-08-13&quot;:19.23},{&quot;2026-08-14&quot;:19.23},{&quot;2026-08-15&quot;:19.23},{&quot;2026-08-16&quot;:19.27},{&quot;2026-08-17&quot;:19.27},{&quot;2026-08-18&quot;:19.27},{&quot;2026-08-19&quot;:19.27},{&quot;2026-08-20&quot;:19.27},{&quot;2026-08-21&quot;:19.27},{&quot;2026-08-22&quot;:19.27},{&quot;2026-08-23&quot;:19.32},{&quot;2026-08-24&quot;:19.32},{&quot;2026-08-25&quot;:19.32},{&quot;2026-08-26&quot;:19.32},{&quot;2026-08-27&quot;:19.32},{&quot;2026-08-28&quot;:19.32},{&quot;2026-08-29&quot;:19.32},{&quot;2026-08-30&quot;:19.32},{&quot;2026-08-31&quot;:19.4},{&quot;2026-09-01&quot;:19.4},{&quot;2026-09-02&quot;:19.4},{&quot;2026-09-03&quot;:19.4},{&quot;2026-09-04&quot;:19.4},{&quot;2026-09-05&quot;:19.4},{&quot;2026-09-06&quot;:19.4},{&quot;2026-09-07&quot;:19.4},{&quot;2026-09-08&quot;:19.4},{&quot;2026-09-09&quot;:19.4},{&quot;2026-09-10&quot;:19.4},{&quot;2026-09-11&quot;:19.4}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:12.47},{&quot;2026-06-11&quot;:12.51},{&quot;2026-06-12&quot;:12.51},{&quot;2026-06-13&quot;:12.65},{&quot;2026-06-14&quot;:12.73},{&quot;2026-06-15&quot;:12.58},{&quot;2026-06-16&quot;:12.5},{&quot;2026-06-17&quot;:11.97},{&quot;2026-06-18&quot;:11.81},{&quot;2026-06-19&quot;:12.28},{&quot;2026-06-20&quot;:12.44},{&quot;2026-06-21&quot;:12.5},{&quot;2026-06-22&quot;:12.47},{&quot;2026-06-23&quot;:12.37},{&quot;2026-06-24&quot;:12.2},{&quot;2026-06-25&quot;:12.15},{&quot;2026-06-26&quot;:12.15},{&quot;2026-06-27&quot;:12.15},{&quot;2026-06-28&quot;:12.21},{&quot;2026-06-29&quot;:12.86},{&quot;2026-06-30&quot;:12.84},{&quot;2026-07-01&quot;:12.7},{&quot;2026-07-02&quot;:12.7},{&quot;2026-07-03&quot;:12.7},{&quot;2026-07-04&quot;:12.63},{&quot;2026-07-05&quot;:12.54},{&quot;2026-07-06&quot;:12.94},{&quot;2026-07-07&quot;:13.05},{&quot;2026-07-08&quot;:12.95},{&quot;2026-07-09&quot;:13.08},{&quot;2026-07-10&quot;:12.79},{&quot;2026-07-11&quot;:12.55},{&quot;2026-07-12&quot;:12.88},{&quot;2026-07-13&quot;:12.52},{&quot;2026-07-14&quot;:12.34},{&quot;2026-07-15&quot;:12.34},{&quot;2026-07-16&quot;:12.26},{&quot;2026-07-17&quot;:12.29},{&quot;2026-07-18&quot;:12.15},{&quot;2026-07-19&quot;:12.12},{&quot;2026-07-20&quot;:11.99},{&quot;2026-07-21&quot;:12.11},{&quot;2026-07-23&quot;:12.22},{&quot;2026-07-25&quot;:12.56},{&quot;2026-07-26&quot;:12.45},{&quot;2026-07-27&quot;:12.53},{&quot;2026-07-29&quot;:12.63},{&quot;2026-07-30&quot;:12.46},{&quot;2026-07-31&quot;:12.38},{&quot;2026-08-01&quot;:12.38},{&quot;2026-08-02&quot;:12.12},{&quot;2026-08-03&quot;:12.27},{&quot;2026-08-04&quot;:12.1},{&quot;2026-08-05&quot;:12.05},{&quot;2026-08-07&quot;:11.63},{&quot;2026-08-08&quot;:11.69},{&quot;2026-08-09&quot;:11.69},{&quot;2026-08-10&quot;:11.7},{&quot;2026-08-11&quot;:11.82},{&quot;2026-08-12&quot;:12.18},{&quot;2026-08-13&quot;:12.16},{&quot;2026-08-14&quot;:12.06},{&quot;2026-08-15&quot;:11.93},{&quot;2026-08-16&quot;:11.9},{&quot;2026-08-17&quot;:12.05},{&quot;2026-08-18&quot;:12.06},{&quot;2026-08-19&quot;:11.94},{&quot;2026-08-20&quot;:11.94},{&quot;2026-08-21&quot;:11.68},{&quot;2026-08-22&quot;:11.73},{&quot;2026-08-23&quot;:11.71},{&quot;2026-08-24&quot;:11.62},{&quot;2026-08-25&quot;:11.62},{&quot;2026-08-26&quot;:11.56},{&quot;2026-08-27&quot;:11.48},{&quot;2026-08-28&quot;:11.46},{&quot;2026-08-29&quot;:11.46},{&quot;2026-08-30&quot;:11.39},{&quot;2026-08-31&quot;:11.55},{&quot;2026-09-01&quot;:11.55},{&quot;2026-09-02&quot;:11.75},{&quot;2026-09-03&quot;:12.01},{&quot;2026-09-04&quot;:11.97},{&quot;2026-09-05&quot;:12.08},{&quot;2026-09-06&quot;:12.0},{&quot;2026-09-07&quot;:12.04},{&quot;2026-09-08&quot;:11.79},{&quot;2026-09-09&quot;:11.88},{&quot;2026-09-10&quot;:11.88},{&quot;2026-09-11&quot;:11.87}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Sword of Forge and Frontier" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/d/2daa3621-8a2c-4b4b-87ac-f981192a0567.jpg?1783917985" />

        <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">
            Sword of Forge and Frontier
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Artifact — Equipment</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="Sword of Forge and Frontier" src="https://cards.scryfall.io/large/front/2/d/2daa3621-8a2c-4b4b-87ac-f981192a0567.jpg?1783917985" />
    </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">
                $9.86
              </span>

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $11.47
              </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">$6.80</span>
              <span class="text-xs text-grey-text">Credit: $8.84</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;:12.05},{&quot;2026-06-14&quot;:12.03},{&quot;2026-06-15&quot;:12.03},{&quot;2026-06-16&quot;:12.0},{&quot;2026-06-17&quot;:12.0},{&quot;2026-06-18&quot;:11.91},{&quot;2026-06-19&quot;:11.91},{&quot;2026-06-20&quot;:11.91},{&quot;2026-06-21&quot;:11.91},{&quot;2026-06-22&quot;:11.96},{&quot;2026-06-23&quot;:11.89},{&quot;2026-06-24&quot;:11.89},{&quot;2026-06-25&quot;:11.89},{&quot;2026-06-26&quot;:11.89},{&quot;2026-06-27&quot;:11.89},{&quot;2026-06-28&quot;:11.89},{&quot;2026-06-29&quot;:11.94},{&quot;2026-06-30&quot;:12.03},{&quot;2026-07-01&quot;:12.06},{&quot;2026-07-02&quot;:12.1},{&quot;2026-07-03&quot;:12.1},{&quot;2026-07-04&quot;:12.1},{&quot;2026-07-05&quot;:12.1},{&quot;2026-07-06&quot;:12.1},{&quot;2026-07-07&quot;:12.05},{&quot;2026-07-08&quot;:12.05},{&quot;2026-07-09&quot;:11.92},{&quot;2026-07-10&quot;:11.95},{&quot;2026-07-11&quot;:11.95},{&quot;2026-07-12&quot;:11.95},{&quot;2026-07-13&quot;:11.95},{&quot;2026-07-14&quot;:11.95},{&quot;2026-07-15&quot;:12.01},{&quot;2026-07-16&quot;:12.01},{&quot;2026-07-17&quot;:12.08},{&quot;2026-07-18&quot;:12.05},{&quot;2026-07-19&quot;:12.05},{&quot;2026-07-20&quot;:12.05},{&quot;2026-07-21&quot;:12.05},{&quot;2026-07-22&quot;:12.05},{&quot;2026-07-23&quot;:12.05},{&quot;2026-07-24&quot;:12.05},{&quot;2026-07-25&quot;:12.05},{&quot;2026-07-26&quot;:12.05},{&quot;2026-07-27&quot;:12.05},{&quot;2026-07-28&quot;:12.05},{&quot;2026-07-29&quot;:12.05},{&quot;2026-07-30&quot;:12.05},{&quot;2026-07-31&quot;:12.01},{&quot;2026-08-01&quot;:12.01},{&quot;2026-08-02&quot;:11.91},{&quot;2026-08-03&quot;:12.0},{&quot;2026-08-04&quot;:12.0},{&quot;2026-08-05&quot;:12.09},{&quot;2026-08-07&quot;:12.09},{&quot;2026-08-08&quot;:12.06},{&quot;2026-08-09&quot;:12.06},{&quot;2026-08-10&quot;:12.06},{&quot;2026-08-11&quot;:12.06},{&quot;2026-08-12&quot;:12.01},{&quot;2026-08-13&quot;:12.01},{&quot;2026-08-14&quot;:12.01},{&quot;2026-08-15&quot;:12.01},{&quot;2026-08-16&quot;:12.01},{&quot;2026-08-17&quot;:12.05},{&quot;2026-08-18&quot;:12.05},{&quot;2026-08-19&quot;:12.05},{&quot;2026-08-20&quot;:12.14},{&quot;2026-08-21&quot;:12.14},{&quot;2026-08-22&quot;:12.08},{&quot;2026-08-23&quot;:12.16},{&quot;2026-08-24&quot;:12.16},{&quot;2026-08-25&quot;:12.16},{&quot;2026-08-26&quot;:12.16},{&quot;2026-08-27&quot;:12.16},{&quot;2026-08-28&quot;:12.1},{&quot;2026-08-29&quot;:12.1},{&quot;2026-08-30&quot;:11.93},{&quot;2026-08-31&quot;:11.91},{&quot;2026-09-01&quot;:11.93},{&quot;2026-09-02&quot;:11.93},{&quot;2026-09-03&quot;:11.83},{&quot;2026-09-04&quot;:11.67},{&quot;2026-09-05&quot;:11.67},{&quot;2026-09-06&quot;:11.75},{&quot;2026-09-07&quot;:11.75},{&quot;2026-09-08&quot;:11.75},{&quot;2026-09-09&quot;:11.63},{&quot;2026-09-10&quot;:11.63},{&quot;2026-09-11&quot;:11.47}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:9.83},{&quot;2026-06-14&quot;:9.77},{&quot;2026-06-15&quot;:9.5},{&quot;2026-06-16&quot;:9.95},{&quot;2026-06-17&quot;:9.96},{&quot;2026-06-18&quot;:9.98},{&quot;2026-06-19&quot;:9.98},{&quot;2026-06-20&quot;:10.05},{&quot;2026-06-21&quot;:10.0},{&quot;2026-06-22&quot;:10.05},{&quot;2026-06-23&quot;:10.06},{&quot;2026-06-24&quot;:10.04},{&quot;2026-06-25&quot;:10.06},{&quot;2026-06-26&quot;:10.11},{&quot;2026-06-27&quot;:9.97},{&quot;2026-06-28&quot;:9.93},{&quot;2026-06-29&quot;:9.93},{&quot;2026-06-30&quot;:9.92},{&quot;2026-07-01&quot;:10.12},{&quot;2026-07-02&quot;:10.19},{&quot;2026-07-03&quot;:10.19},{&quot;2026-07-04&quot;:10.22},{&quot;2026-07-05&quot;:10.22},{&quot;2026-07-06&quot;:10.22},{&quot;2026-07-07&quot;:10.35},{&quot;2026-07-08&quot;:10.18},{&quot;2026-07-09&quot;:10.08},{&quot;2026-07-10&quot;:9.85},{&quot;2026-07-11&quot;:9.67},{&quot;2026-07-12&quot;:9.86},{&quot;2026-07-13&quot;:9.76},{&quot;2026-07-14&quot;:9.84},{&quot;2026-07-15&quot;:9.93},{&quot;2026-07-16&quot;:10.16},{&quot;2026-07-17&quot;:10.16},{&quot;2026-07-18&quot;:10.31},{&quot;2026-07-19&quot;:10.21},{&quot;2026-07-20&quot;:10.32},{&quot;2026-07-21&quot;:10.41},{&quot;2026-07-22&quot;:10.54},{&quot;2026-07-23&quot;:10.75},{&quot;2026-07-24&quot;:10.68},{&quot;2026-07-25&quot;:10.68},{&quot;2026-07-26&quot;:10.7},{&quot;2026-07-27&quot;:10.57},{&quot;2026-07-28&quot;:10.59},{&quot;2026-07-29&quot;:10.7},{&quot;2026-07-30&quot;:10.77},{&quot;2026-07-31&quot;:10.98},{&quot;2026-08-01&quot;:10.9},{&quot;2026-08-02&quot;:10.92},{&quot;2026-08-03&quot;:10.86},{&quot;2026-08-04&quot;:11.0},{&quot;2026-08-05&quot;:11.01},{&quot;2026-08-07&quot;:10.47},{&quot;2026-08-08&quot;:10.41},{&quot;2026-08-09&quot;:10.25},{&quot;2026-08-10&quot;:10.68},{&quot;2026-08-11&quot;:10.71},{&quot;2026-08-12&quot;:10.72},{&quot;2026-08-13&quot;:10.7},{&quot;2026-08-14&quot;:10.5},{&quot;2026-08-15&quot;:10.82},{&quot;2026-08-16&quot;:10.95},{&quot;2026-08-17&quot;:10.95},{&quot;2026-08-18&quot;:10.95},{&quot;2026-08-19&quot;:10.95},{&quot;2026-08-20&quot;:10.83},{&quot;2026-08-21&quot;:10.72},{&quot;2026-08-22&quot;:10.7},{&quot;2026-08-23&quot;:10.43},{&quot;2026-08-24&quot;:10.39},{&quot;2026-08-25&quot;:10.39},{&quot;2026-08-26&quot;:10.29},{&quot;2026-08-27&quot;:10.32},{&quot;2026-08-28&quot;:10.4},{&quot;2026-08-29&quot;:10.4},{&quot;2026-08-30&quot;:10.42},{&quot;2026-08-31&quot;:10.4},{&quot;2026-09-01&quot;:10.21},{&quot;2026-09-02&quot;:10.16},{&quot;2026-09-03&quot;:10.13},{&quot;2026-09-04&quot;:10.03},{&quot;2026-09-05&quot;:10.03},{&quot;2026-09-06&quot;:9.86},{&quot;2026-09-07&quot;:9.92},{&quot;2026-09-08&quot;:9.98},{&quot;2026-09-09&quot;:9.99},{&quot;2026-09-10&quot;:10.0},{&quot;2026-09-11&quot;:9.86}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

        <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">
            Genji Glove
        </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 — Equipment</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Genji Glove" src="https://cards.scryfall.io/large/front/f/7/f724dde1-84b0-4e3b-a9b8-44cd22bb9f79.jpg?1783906558" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:6.42},{&quot;2026-06-11&quot;:6.45},{&quot;2026-06-12&quot;:6.78},{&quot;2026-06-13&quot;:6.91},{&quot;2026-06-14&quot;:6.79},{&quot;2026-06-15&quot;:7.24},{&quot;2026-06-16&quot;:7.46},{&quot;2026-06-17&quot;:7.66},{&quot;2026-06-18&quot;:7.56},{&quot;2026-06-19&quot;:7.66},{&quot;2026-06-20&quot;:7.65},{&quot;2026-06-21&quot;:7.84},{&quot;2026-06-22&quot;:7.73},{&quot;2026-06-23&quot;:7.61},{&quot;2026-06-24&quot;:7.23},{&quot;2026-06-25&quot;:7.22},{&quot;2026-06-26&quot;:6.83},{&quot;2026-06-27&quot;:7.04},{&quot;2026-06-28&quot;:7.09},{&quot;2026-06-29&quot;:7.64},{&quot;2026-06-30&quot;:7.64},{&quot;2026-07-01&quot;:7.53},{&quot;2026-07-02&quot;:7.53},{&quot;2026-07-03&quot;:7.56},{&quot;2026-07-04&quot;:7.86},{&quot;2026-07-05&quot;:7.65},{&quot;2026-07-06&quot;:7.5},{&quot;2026-07-07&quot;:7.63},{&quot;2026-07-08&quot;:7.63},{&quot;2026-07-09&quot;:8.0},{&quot;2026-07-10&quot;:8.1},{&quot;2026-07-11&quot;:7.95},{&quot;2026-07-12&quot;:8.05},{&quot;2026-07-13&quot;:8.19},{&quot;2026-07-14&quot;:8.21},{&quot;2026-07-15&quot;:8.82},{&quot;2026-07-16&quot;:8.79},{&quot;2026-07-17&quot;:8.71},{&quot;2026-07-18&quot;:8.36},{&quot;2026-07-19&quot;:9.15},{&quot;2026-07-20&quot;:8.99},{&quot;2026-07-21&quot;:9.07},{&quot;2026-07-23&quot;:9.73},{&quot;2026-07-25&quot;:10.26},{&quot;2026-07-26&quot;:10.87},{&quot;2026-07-27&quot;:11.03},{&quot;2026-07-29&quot;:11.64},{&quot;2026-07-30&quot;:11.7},{&quot;2026-07-31&quot;:12.0},{&quot;2026-08-01&quot;:11.89},{&quot;2026-08-02&quot;:11.89},{&quot;2026-08-03&quot;:11.25},{&quot;2026-08-04&quot;:11.82},{&quot;2026-08-05&quot;:12.08},{&quot;2026-08-07&quot;:12.32},{&quot;2026-08-08&quot;:12.93},{&quot;2026-08-09&quot;:13.62},{&quot;2026-08-10&quot;:13.52},{&quot;2026-08-11&quot;:13.52},{&quot;2026-08-12&quot;:13.75},{&quot;2026-08-13&quot;:13.76},{&quot;2026-08-14&quot;:14.03},{&quot;2026-08-15&quot;:14.19},{&quot;2026-08-16&quot;:14.18},{&quot;2026-08-17&quot;:14.2},{&quot;2026-08-18&quot;:14.87},{&quot;2026-08-19&quot;:14.87},{&quot;2026-08-20&quot;:14.87},{&quot;2026-08-21&quot;:15.09},{&quot;2026-08-22&quot;:15.09},{&quot;2026-08-23&quot;:14.25},{&quot;2026-08-24&quot;:14.38},{&quot;2026-08-25&quot;:14.38},{&quot;2026-08-26&quot;:14.4},{&quot;2026-08-27&quot;:14.48},{&quot;2026-08-28&quot;:14.48},{&quot;2026-08-29&quot;:14.48},{&quot;2026-08-30&quot;:14.77},{&quot;2026-08-31&quot;:14.68},{&quot;2026-09-01&quot;:14.68},{&quot;2026-09-02&quot;:14.76},{&quot;2026-09-03&quot;:14.55},{&quot;2026-09-04&quot;:14.55},{&quot;2026-09-05&quot;:14.49},{&quot;2026-09-06&quot;:14.49},{&quot;2026-09-07&quot;:14.6},{&quot;2026-09-08&quot;:14.6},{&quot;2026-09-09&quot;:14.64},{&quot;2026-09-10&quot;:14.64},{&quot;2026-09-11&quot;:14.9}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:6.52},{&quot;2026-06-11&quot;:6.16},{&quot;2026-06-12&quot;:6.33},{&quot;2026-06-13&quot;:6.42},{&quot;2026-06-14&quot;:6.37},{&quot;2026-06-15&quot;:6.5},{&quot;2026-06-16&quot;:6.66},{&quot;2026-06-17&quot;:6.39},{&quot;2026-06-18&quot;:6.08},{&quot;2026-06-19&quot;:7.06},{&quot;2026-06-20&quot;:7.66},{&quot;2026-06-21&quot;:6.77},{&quot;2026-06-22&quot;:7.3},{&quot;2026-06-23&quot;:5.87},{&quot;2026-06-24&quot;:7.03},{&quot;2026-06-25&quot;:5.83},{&quot;2026-06-26&quot;:5.96},{&quot;2026-06-27&quot;:5.87},{&quot;2026-06-28&quot;:6.79},{&quot;2026-06-29&quot;:7.18},{&quot;2026-06-30&quot;:6.45},{&quot;2026-07-01&quot;:7.29},{&quot;2026-07-02&quot;:7.18},{&quot;2026-07-03&quot;:7.31},{&quot;2026-07-04&quot;:7.8},{&quot;2026-07-05&quot;:8.13},{&quot;2026-07-06&quot;:7.91},{&quot;2026-07-07&quot;:8.12},{&quot;2026-07-08&quot;:7.88},{&quot;2026-07-09&quot;:7.22},{&quot;2026-07-10&quot;:8.26},{&quot;2026-07-11&quot;:8.0},{&quot;2026-07-12&quot;:8.52},{&quot;2026-07-13&quot;:8.9},{&quot;2026-07-14&quot;:7.53},{&quot;2026-07-15&quot;:8.69},{&quot;2026-07-16&quot;:8.6},{&quot;2026-07-17&quot;:8.81},{&quot;2026-07-18&quot;:9.5},{&quot;2026-07-19&quot;:8.93},{&quot;2026-07-20&quot;:9.53},{&quot;2026-07-21&quot;:10.33},{&quot;2026-07-23&quot;:10.31},{&quot;2026-07-25&quot;:12.3},{&quot;2026-07-26&quot;:10.35},{&quot;2026-07-27&quot;:10.58},{&quot;2026-07-29&quot;:11.58},{&quot;2026-07-30&quot;:12.5},{&quot;2026-07-31&quot;:13.34},{&quot;2026-08-01&quot;:13.0},{&quot;2026-08-02&quot;:12.32},{&quot;2026-08-03&quot;:12.56},{&quot;2026-08-04&quot;:12.44},{&quot;2026-08-05&quot;:13.27},{&quot;2026-08-07&quot;:11.91},{&quot;2026-08-08&quot;:12.0},{&quot;2026-08-09&quot;:11.56},{&quot;2026-08-10&quot;:11.52},{&quot;2026-08-11&quot;:11.08},{&quot;2026-08-12&quot;:10.06},{&quot;2026-08-13&quot;:8.69},{&quot;2026-08-14&quot;:9.2},{&quot;2026-08-15&quot;:8.39},{&quot;2026-08-16&quot;:9.62},{&quot;2026-08-17&quot;:9.53},{&quot;2026-08-18&quot;:9.39},{&quot;2026-08-19&quot;:9.48},{&quot;2026-08-20&quot;:9.48},{&quot;2026-08-21&quot;:11.06},{&quot;2026-08-22&quot;:10.43},{&quot;2026-08-23&quot;:10.44},{&quot;2026-08-24&quot;:11.52},{&quot;2026-08-25&quot;:11.52},{&quot;2026-08-26&quot;:11.1},{&quot;2026-08-27&quot;:11.1},{&quot;2026-08-28&quot;:10.46},{&quot;2026-08-29&quot;:10.46},{&quot;2026-08-30&quot;:11.0},{&quot;2026-08-31&quot;:11.07},{&quot;2026-09-01&quot;:11.07},{&quot;2026-09-02&quot;:10.87},{&quot;2026-09-03&quot;:11.31},{&quot;2026-09-04&quot;:10.9},{&quot;2026-09-05&quot;:10.96},{&quot;2026-09-06&quot;:10.75},{&quot;2026-09-07&quot;:11.36},{&quot;2026-09-08&quot;:12.32},{&quot;2026-09-09&quot;:12.09},{&quot;2026-09-10&quot;:12.15},{&quot;2026-09-11&quot;:11.46}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $8.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="Kaldra Compleat" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/7/87cc2855-6b14-44dd-a398-7dc2bbae081f.jpg?1783926807" />

        <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">
            Kaldra Compleat
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-7'></i>
          </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="Kaldra Compleat" src="https://cards.scryfall.io/large/front/8/7/87cc2855-6b14-44dd-a398-7dc2bbae081f.jpg?1783926807" />
    </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.95
              </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">
                $15.81
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:15.46},{&quot;2026-06-11&quot;:15.46},{&quot;2026-06-12&quot;:15.71},{&quot;2026-06-13&quot;:15.71},{&quot;2026-06-14&quot;:15.71},{&quot;2026-06-15&quot;:15.71},{&quot;2026-06-16&quot;:15.71},{&quot;2026-06-17&quot;:15.71},{&quot;2026-06-18&quot;:15.71},{&quot;2026-06-19&quot;:15.71},{&quot;2026-06-20&quot;:15.71},{&quot;2026-06-21&quot;:15.71},{&quot;2026-06-22&quot;:15.78},{&quot;2026-06-23&quot;:15.78},{&quot;2026-06-24&quot;:15.78},{&quot;2026-06-25&quot;:15.78},{&quot;2026-06-26&quot;:15.78},{&quot;2026-06-27&quot;:15.78},{&quot;2026-06-28&quot;:15.81},{&quot;2026-06-29&quot;:16.05},{&quot;2026-06-30&quot;:16.05},{&quot;2026-07-01&quot;:16.05},{&quot;2026-07-02&quot;:16.05},{&quot;2026-07-03&quot;:16.05},{&quot;2026-07-04&quot;:16.05},{&quot;2026-07-05&quot;:16.05},{&quot;2026-07-06&quot;:16.05},{&quot;2026-07-07&quot;:16.05},{&quot;2026-07-08&quot;:16.05},{&quot;2026-07-09&quot;:16.05},{&quot;2026-07-10&quot;:16.05},{&quot;2026-07-11&quot;:16.05},{&quot;2026-07-12&quot;:16.05},{&quot;2026-07-13&quot;:16.05},{&quot;2026-07-14&quot;:16.05},{&quot;2026-07-15&quot;:16.05},{&quot;2026-07-16&quot;:16.05},{&quot;2026-07-17&quot;:16.13},{&quot;2026-07-18&quot;:15.74},{&quot;2026-07-19&quot;:15.74},{&quot;2026-07-20&quot;:15.74},{&quot;2026-07-21&quot;:15.74},{&quot;2026-07-23&quot;:15.9},{&quot;2026-07-25&quot;:15.82},{&quot;2026-07-26&quot;:15.82},{&quot;2026-07-27&quot;:15.82},{&quot;2026-07-29&quot;:15.96},{&quot;2026-07-30&quot;:15.96},{&quot;2026-07-31&quot;:15.96},{&quot;2026-08-01&quot;:15.96},{&quot;2026-08-02&quot;:15.96},{&quot;2026-08-03&quot;:15.96},{&quot;2026-08-04&quot;:15.84},{&quot;2026-08-05&quot;:15.84},{&quot;2026-08-07&quot;:15.84},{&quot;2026-08-08&quot;:15.77},{&quot;2026-08-09&quot;:15.77},{&quot;2026-08-10&quot;:15.77},{&quot;2026-08-11&quot;:15.77},{&quot;2026-08-12&quot;:15.77},{&quot;2026-08-13&quot;:15.77},{&quot;2026-08-14&quot;:15.77},{&quot;2026-08-15&quot;:15.77},{&quot;2026-08-16&quot;:15.77},{&quot;2026-08-17&quot;:15.82},{&quot;2026-08-18&quot;:15.82},{&quot;2026-08-19&quot;:15.82},{&quot;2026-08-20&quot;:15.82},{&quot;2026-08-21&quot;:15.82},{&quot;2026-08-22&quot;:15.82},{&quot;2026-08-23&quot;:15.82},{&quot;2026-08-24&quot;:15.82},{&quot;2026-08-25&quot;:15.82},{&quot;2026-08-26&quot;:15.82},{&quot;2026-08-27&quot;:15.82},{&quot;2026-08-28&quot;:15.82},{&quot;2026-08-29&quot;:15.82},{&quot;2026-08-30&quot;:15.82},{&quot;2026-08-31&quot;:15.82},{&quot;2026-09-01&quot;:15.82},{&quot;2026-09-02&quot;:15.82},{&quot;2026-09-03&quot;:15.82},{&quot;2026-09-04&quot;:15.81},{&quot;2026-09-05&quot;:15.81},{&quot;2026-09-06&quot;:15.81},{&quot;2026-09-07&quot;:15.81},{&quot;2026-09-08&quot;:15.81},{&quot;2026-09-09&quot;:15.81},{&quot;2026-09-10&quot;:15.81},{&quot;2026-09-11&quot;:15.81}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:7.37},{&quot;2026-06-11&quot;:7.48},{&quot;2026-06-12&quot;:7.26},{&quot;2026-06-13&quot;:7.29},{&quot;2026-06-14&quot;:7.39},{&quot;2026-06-15&quot;:7.48},{&quot;2026-06-16&quot;:7.63},{&quot;2026-06-17&quot;:7.55},{&quot;2026-06-18&quot;:7.58},{&quot;2026-06-19&quot;:7.6},{&quot;2026-06-20&quot;:7.57},{&quot;2026-06-21&quot;:7.84},{&quot;2026-06-22&quot;:7.66},{&quot;2026-06-23&quot;:7.72},{&quot;2026-06-24&quot;:7.65},{&quot;2026-06-25&quot;:7.68},{&quot;2026-06-26&quot;:7.66},{&quot;2026-06-27&quot;:7.39},{&quot;2026-06-28&quot;:7.61},{&quot;2026-06-29&quot;:7.6},{&quot;2026-06-30&quot;:7.73},{&quot;2026-07-01&quot;:7.81},{&quot;2026-07-02&quot;:7.64},{&quot;2026-07-03&quot;:7.57},{&quot;2026-07-04&quot;:7.56},{&quot;2026-07-05&quot;:7.61},{&quot;2026-07-06&quot;:7.69},{&quot;2026-07-07&quot;:7.65},{&quot;2026-07-08&quot;:7.92},{&quot;2026-07-09&quot;:8.0},{&quot;2026-07-10&quot;:8.02},{&quot;2026-07-11&quot;:8.02},{&quot;2026-07-12&quot;:8.41},{&quot;2026-07-13&quot;:8.44},{&quot;2026-07-14&quot;:8.56},{&quot;2026-07-15&quot;:8.84},{&quot;2026-07-16&quot;:8.81},{&quot;2026-07-17&quot;:8.75},{&quot;2026-07-18&quot;:8.4},{&quot;2026-07-19&quot;:8.28},{&quot;2026-07-20&quot;:8.09},{&quot;2026-07-21&quot;:7.87},{&quot;2026-07-23&quot;:8.04},{&quot;2026-07-25&quot;:7.58},{&quot;2026-07-26&quot;:7.57},{&quot;2026-07-27&quot;:7.86},{&quot;2026-07-29&quot;:7.99},{&quot;2026-07-30&quot;:8.13},{&quot;2026-07-31&quot;:8.36},{&quot;2026-08-01&quot;:8.47},{&quot;2026-08-02&quot;:8.38},{&quot;2026-08-03&quot;:8.82},{&quot;2026-08-04&quot;:8.8},{&quot;2026-08-05&quot;:8.98},{&quot;2026-08-07&quot;:8.76},{&quot;2026-08-08&quot;:8.75},{&quot;2026-08-09&quot;:8.7},{&quot;2026-08-10&quot;:8.8},{&quot;2026-08-11&quot;:8.85},{&quot;2026-08-12&quot;:8.94},{&quot;2026-08-13&quot;:8.78},{&quot;2026-08-14&quot;:8.69},{&quot;2026-08-15&quot;:8.79},{&quot;2026-08-16&quot;:8.55},{&quot;2026-08-17&quot;:8.64},{&quot;2026-08-18&quot;:8.81},{&quot;2026-08-19&quot;:9.25},{&quot;2026-08-20&quot;:9.25},{&quot;2026-08-21&quot;:10.12},{&quot;2026-08-22&quot;:10.06},{&quot;2026-08-23&quot;:10.32},{&quot;2026-08-24&quot;:10.82},{&quot;2026-08-25&quot;:10.82},{&quot;2026-08-26&quot;:10.53},{&quot;2026-08-27&quot;:10.37},{&quot;2026-08-28&quot;:10.42},{&quot;2026-08-29&quot;:10.42},{&quot;2026-08-30&quot;:10.19},{&quot;2026-08-31&quot;:10.26},{&quot;2026-09-01&quot;:10.26},{&quot;2026-09-02&quot;:9.65},{&quot;2026-09-03&quot;:9.41},{&quot;2026-09-04&quot;:9.43},{&quot;2026-09-05&quot;:9.35},{&quot;2026-09-06&quot;:9.22},{&quot;2026-09-07&quot;:9.3},{&quot;2026-09-08&quot;:9.14},{&quot;2026-09-09&quot;:9.04},{&quot;2026-09-10&quot;:8.89},{&quot;2026-09-11&quot;:8.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="42224"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-neo ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Farewell" src="https://cards.scryfall.io/large/front/9/8/98c664bc-9585-47a7-9514-b3e30a4e1b59.jpg?1783923777" />
    </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.64
              </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">
                $16.12
              </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">$7.00</span>
              <span class="text-xs text-grey-text">Credit: $9.10</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-12&quot;:15.16},{&quot;2026-06-13&quot;:15.16},{&quot;2026-06-14&quot;:15.16},{&quot;2026-06-15&quot;:15.16},{&quot;2026-06-16&quot;:15.16},{&quot;2026-06-17&quot;:15.17},{&quot;2026-06-18&quot;:15.17},{&quot;2026-06-19&quot;:15.17},{&quot;2026-06-20&quot;:15.17},{&quot;2026-06-21&quot;:15.09},{&quot;2026-06-22&quot;:15.09},{&quot;2026-06-23&quot;:15.12},{&quot;2026-06-24&quot;:15.24},{&quot;2026-06-25&quot;:15.24},{&quot;2026-06-26&quot;:15.24},{&quot;2026-06-27&quot;:15.24},{&quot;2026-06-28&quot;:15.24},{&quot;2026-06-29&quot;:15.24},{&quot;2026-06-30&quot;:15.24},{&quot;2026-07-01&quot;:15.24},{&quot;2026-07-02&quot;:15.24},{&quot;2026-07-03&quot;:15.24},{&quot;2026-07-04&quot;:15.24},{&quot;2026-07-05&quot;:15.24},{&quot;2026-07-06&quot;:15.24},{&quot;2026-07-07&quot;:15.24},{&quot;2026-07-08&quot;:15.24},{&quot;2026-07-09&quot;:15.24},{&quot;2026-07-10&quot;:15.24},{&quot;2026-07-11&quot;:15.32},{&quot;2026-07-12&quot;:15.32},{&quot;2026-07-13&quot;:15.32},{&quot;2026-07-14&quot;:15.32},{&quot;2026-07-15&quot;:15.57},{&quot;2026-07-16&quot;:15.57},{&quot;2026-07-17&quot;:15.6},{&quot;2026-07-18&quot;:15.6},{&quot;2026-07-19&quot;:15.6},{&quot;2026-07-20&quot;:15.6},{&quot;2026-07-21&quot;:15.6},{&quot;2026-07-23&quot;:15.6},{&quot;2026-07-24&quot;:15.6},{&quot;2026-07-25&quot;:15.6},{&quot;2026-07-26&quot;:15.6},{&quot;2026-07-27&quot;:15.6},{&quot;2026-07-28&quot;:15.6},{&quot;2026-07-29&quot;:15.6},{&quot;2026-07-30&quot;:15.6},{&quot;2026-07-31&quot;:15.6},{&quot;2026-08-01&quot;:15.6},{&quot;2026-08-02&quot;:15.6},{&quot;2026-08-03&quot;:15.6},{&quot;2026-08-04&quot;:15.6},{&quot;2026-08-05&quot;:15.6},{&quot;2026-08-07&quot;:15.6},{&quot;2026-08-08&quot;:15.6},{&quot;2026-08-09&quot;:15.6},{&quot;2026-08-10&quot;:15.62},{&quot;2026-08-11&quot;:15.62},{&quot;2026-08-12&quot;:15.6},{&quot;2026-08-13&quot;:15.7},{&quot;2026-08-14&quot;:15.7},{&quot;2026-08-15&quot;:15.7},{&quot;2026-08-16&quot;:15.71},{&quot;2026-08-17&quot;:15.71},{&quot;2026-08-18&quot;:15.74},{&quot;2026-08-19&quot;:15.74},{&quot;2026-08-20&quot;:15.74},{&quot;2026-08-21&quot;:15.74},{&quot;2026-08-22&quot;:15.82},{&quot;2026-08-23&quot;:15.82},{&quot;2026-08-24&quot;:15.82},{&quot;2026-08-25&quot;:15.82},{&quot;2026-08-26&quot;:15.73},{&quot;2026-08-27&quot;:15.73},{&quot;2026-08-28&quot;:15.73},{&quot;2026-08-29&quot;:15.73},{&quot;2026-08-30&quot;:15.73},{&quot;2026-08-31&quot;:15.73},{&quot;2026-09-01&quot;:15.73},{&quot;2026-09-02&quot;:15.7},{&quot;2026-09-03&quot;:15.7},{&quot;2026-09-04&quot;:15.67},{&quot;2026-09-05&quot;:15.84},{&quot;2026-09-06&quot;:15.9},{&quot;2026-09-07&quot;:15.9},{&quot;2026-09-08&quot;:15.9},{&quot;2026-09-09&quot;:16.08},{&quot;2026-09-10&quot;:16.08},{&quot;2026-09-11&quot;:16.12}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:9.41},{&quot;2026-06-13&quot;:9.41},{&quot;2026-06-14&quot;:9.23},{&quot;2026-06-15&quot;:9.23},{&quot;2026-06-16&quot;:9.23},{&quot;2026-06-17&quot;:9.12},{&quot;2026-06-18&quot;:9.17},{&quot;2026-06-19&quot;:9.18},{&quot;2026-06-20&quot;:9.18},{&quot;2026-06-21&quot;:9.2},{&quot;2026-06-22&quot;:9.2},{&quot;2026-06-23&quot;:9.2},{&quot;2026-06-24&quot;:9.2},{&quot;2026-06-25&quot;:9.2},{&quot;2026-06-26&quot;:9.2},{&quot;2026-06-27&quot;:9.19},{&quot;2026-06-28&quot;:9.3},{&quot;2026-06-29&quot;:9.41},{&quot;2026-06-30&quot;:9.41},{&quot;2026-07-01&quot;:9.41},{&quot;2026-07-02&quot;:9.41},{&quot;2026-07-03&quot;:9.5},{&quot;2026-07-04&quot;:9.62},{&quot;2026-07-05&quot;:9.77},{&quot;2026-07-06&quot;:9.77},{&quot;2026-07-07&quot;:9.88},{&quot;2026-07-08&quot;:9.96},{&quot;2026-07-09&quot;:9.92},{&quot;2026-07-10&quot;:9.92},{&quot;2026-07-11&quot;:10.03},{&quot;2026-07-12&quot;:10.05},{&quot;2026-07-13&quot;:10.14},{&quot;2026-07-14&quot;:10.14},{&quot;2026-07-15&quot;:10.14},{&quot;2026-07-16&quot;:10.19},{&quot;2026-07-17&quot;:10.25},{&quot;2026-07-18&quot;:10.34},{&quot;2026-07-19&quot;:10.34},{&quot;2026-07-20&quot;:10.34},{&quot;2026-07-21&quot;:10.46},{&quot;2026-07-23&quot;:10.75},{&quot;2026-07-24&quot;:10.66},{&quot;2026-07-25&quot;:10.56},{&quot;2026-07-26&quot;:10.66},{&quot;2026-07-27&quot;:10.78},{&quot;2026-07-28&quot;:10.57},{&quot;2026-07-29&quot;:10.6},{&quot;2026-07-30&quot;:10.57},{&quot;2026-07-31&quot;:10.7},{&quot;2026-08-01&quot;:10.7},{&quot;2026-08-02&quot;:10.79},{&quot;2026-08-03&quot;:10.78},{&quot;2026-08-04&quot;:10.78},{&quot;2026-08-05&quot;:10.78},{&quot;2026-08-07&quot;:10.59},{&quot;2026-08-08&quot;:10.59},{&quot;2026-08-09&quot;:10.59},{&quot;2026-08-10&quot;:10.54},{&quot;2026-08-11&quot;:10.54},{&quot;2026-08-12&quot;:9.89},{&quot;2026-08-13&quot;:9.76},{&quot;2026-08-14&quot;:9.71},{&quot;2026-08-15&quot;:9.36},{&quot;2026-08-16&quot;:9.27},{&quot;2026-08-17&quot;:9.05},{&quot;2026-08-18&quot;:9.05},{&quot;2026-08-19&quot;:8.92},{&quot;2026-08-20&quot;:8.92},{&quot;2026-08-21&quot;:8.47},{&quot;2026-08-22&quot;:8.42},{&quot;2026-08-23&quot;:8.47},{&quot;2026-08-24&quot;:8.63},{&quot;2026-08-25&quot;:8.6},{&quot;2026-08-26&quot;:8.73},{&quot;2026-08-27&quot;:8.65},{&quot;2026-08-28&quot;:8.71},{&quot;2026-08-29&quot;:8.71},{&quot;2026-08-30&quot;:8.59},{&quot;2026-08-31&quot;:8.69},{&quot;2026-09-01&quot;:8.7},{&quot;2026-09-02&quot;:8.75},{&quot;2026-09-03&quot;:8.73},{&quot;2026-09-04&quot;:8.75},{&quot;2026-09-05&quot;:8.75},{&quot;2026-09-06&quot;:8.78},{&quot;2026-09-07&quot;:8.63},{&quot;2026-09-08&quot;:8.63},{&quot;2026-09-09&quot;:8.49},{&quot;2026-09-10&quot;:8.62},{&quot;2026-09-11&quot;:8.64}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="20062"
  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">
            Stonehewer Giant
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Stonehewer Giant
        </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 — Giant Warrior</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Stonehewer Giant" src="https://cards.scryfall.io/large/front/0/e/0efda05d-01ea-4478-b075-00a31d7037f8.jpg?1783930208" />
    </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.50
              </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">
                $8.60
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-11&quot;:8.74},{&quot;2026-06-12&quot;:8.74},{&quot;2026-06-13&quot;:8.74},{&quot;2026-06-14&quot;:8.74},{&quot;2026-06-15&quot;:8.74},{&quot;2026-06-16&quot;:8.76},{&quot;2026-06-17&quot;:8.76},{&quot;2026-06-18&quot;:8.76},{&quot;2026-06-19&quot;:8.76},{&quot;2026-06-20&quot;:8.76},{&quot;2026-06-21&quot;:8.74},{&quot;2026-06-22&quot;:8.74},{&quot;2026-06-23&quot;:8.74},{&quot;2026-06-24&quot;:8.74},{&quot;2026-06-25&quot;:8.74},{&quot;2026-06-26&quot;:8.74},{&quot;2026-06-27&quot;:8.74},{&quot;2026-06-28&quot;:8.74},{&quot;2026-06-29&quot;:8.74},{&quot;2026-06-30&quot;:8.74},{&quot;2026-07-01&quot;:8.74},{&quot;2026-07-02&quot;:8.74},{&quot;2026-07-03&quot;:8.74},{&quot;2026-07-04&quot;:8.74},{&quot;2026-07-05&quot;:8.74},{&quot;2026-07-06&quot;:8.74},{&quot;2026-07-07&quot;:8.74},{&quot;2026-07-08&quot;:8.74},{&quot;2026-07-09&quot;:8.74},{&quot;2026-07-10&quot;:8.74},{&quot;2026-07-11&quot;:8.81},{&quot;2026-07-12&quot;:8.81},{&quot;2026-07-13&quot;:8.74},{&quot;2026-07-14&quot;:8.74},{&quot;2026-07-15&quot;:8.74},{&quot;2026-07-16&quot;:8.74},{&quot;2026-07-17&quot;:8.74},{&quot;2026-07-18&quot;:8.74},{&quot;2026-07-19&quot;:8.74},{&quot;2026-07-20&quot;:8.74},{&quot;2026-07-21&quot;:8.74},{&quot;2026-07-23&quot;:8.74},{&quot;2026-07-25&quot;:8.74},{&quot;2026-07-26&quot;:8.74},{&quot;2026-07-27&quot;:8.74},{&quot;2026-07-28&quot;:8.74},{&quot;2026-07-29&quot;:8.74},{&quot;2026-07-30&quot;:8.74},{&quot;2026-07-31&quot;:8.74},{&quot;2026-08-01&quot;:8.74},{&quot;2026-08-02&quot;:8.74},{&quot;2026-08-03&quot;:8.9},{&quot;2026-08-04&quot;:8.9},{&quot;2026-08-05&quot;:8.9},{&quot;2026-08-07&quot;:8.9},{&quot;2026-08-08&quot;:8.83},{&quot;2026-08-09&quot;:8.83},{&quot;2026-08-10&quot;:8.83},{&quot;2026-08-11&quot;:8.83},{&quot;2026-08-12&quot;:8.83},{&quot;2026-08-13&quot;:8.83},{&quot;2026-08-14&quot;:8.74},{&quot;2026-08-15&quot;:8.61},{&quot;2026-08-16&quot;:8.61},{&quot;2026-08-17&quot;:8.61},{&quot;2026-08-18&quot;:8.61},{&quot;2026-08-19&quot;:8.61},{&quot;2026-08-20&quot;:8.61},{&quot;2026-08-21&quot;:8.55},{&quot;2026-08-22&quot;:8.55},{&quot;2026-08-23&quot;:8.55},{&quot;2026-08-24&quot;:8.55},{&quot;2026-08-25&quot;:8.55},{&quot;2026-08-26&quot;:8.55},{&quot;2026-08-27&quot;:8.55},{&quot;2026-08-28&quot;:8.55},{&quot;2026-08-29&quot;:8.55},{&quot;2026-08-30&quot;:8.56},{&quot;2026-08-31&quot;:8.56},{&quot;2026-09-01&quot;:8.56},{&quot;2026-09-02&quot;:8.6},{&quot;2026-09-03&quot;:8.6},{&quot;2026-09-04&quot;:8.6},{&quot;2026-09-05&quot;:8.6},{&quot;2026-09-06&quot;:8.6},{&quot;2026-09-07&quot;:8.6},{&quot;2026-09-08&quot;:8.6},{&quot;2026-09-09&quot;:8.6},{&quot;2026-09-10&quot;:8.6},{&quot;2026-09-11&quot;:8.6}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:7.99},{&quot;2026-06-12&quot;:8.17},{&quot;2026-06-13&quot;:8.18},{&quot;2026-06-14&quot;:8.18},{&quot;2026-06-15&quot;:8.17},{&quot;2026-06-16&quot;:8.12},{&quot;2026-06-17&quot;:8.12},{&quot;2026-06-18&quot;:8.14},{&quot;2026-06-19&quot;:8.3},{&quot;2026-06-20&quot;:8.44},{&quot;2026-06-21&quot;:8.56},{&quot;2026-06-22&quot;:8.59},{&quot;2026-06-23&quot;:8.59},{&quot;2026-06-24&quot;:8.72},{&quot;2026-06-25&quot;:8.5},{&quot;2026-06-26&quot;:8.52},{&quot;2026-06-27&quot;:8.52},{&quot;2026-06-28&quot;:8.67},{&quot;2026-06-29&quot;:8.67},{&quot;2026-06-30&quot;:8.35},{&quot;2026-07-01&quot;:8.4},{&quot;2026-07-02&quot;:8.5},{&quot;2026-07-03&quot;:8.42},{&quot;2026-07-04&quot;:8.54},{&quot;2026-07-05&quot;:8.54},{&quot;2026-07-06&quot;:8.61},{&quot;2026-07-07&quot;:8.79},{&quot;2026-07-08&quot;:8.65},{&quot;2026-07-09&quot;:8.75},{&quot;2026-07-10&quot;:8.73},{&quot;2026-07-11&quot;:8.73},{&quot;2026-07-12&quot;:8.56},{&quot;2026-07-13&quot;:8.49},{&quot;2026-07-14&quot;:8.55},{&quot;2026-07-15&quot;:8.62},{&quot;2026-07-16&quot;:8.53},{&quot;2026-07-17&quot;:8.53},{&quot;2026-07-18&quot;:8.56},{&quot;2026-07-19&quot;:8.34},{&quot;2026-07-20&quot;:8.34},{&quot;2026-07-21&quot;:8.4},{&quot;2026-07-23&quot;:8.46},{&quot;2026-07-25&quot;:8.37},{&quot;2026-07-26&quot;:8.37},{&quot;2026-07-27&quot;:8.42},{&quot;2026-07-28&quot;:8.43},{&quot;2026-07-29&quot;:8.36},{&quot;2026-07-30&quot;:8.42},{&quot;2026-07-31&quot;:8.34},{&quot;2026-08-01&quot;:8.21},{&quot;2026-08-02&quot;:8.17},{&quot;2026-08-03&quot;:8.17},{&quot;2026-08-04&quot;:8.1},{&quot;2026-08-05&quot;:8.03},{&quot;2026-08-07&quot;:8.1},{&quot;2026-08-08&quot;:8.13},{&quot;2026-08-09&quot;:8.19},{&quot;2026-08-10&quot;:8.18},{&quot;2026-08-11&quot;:8.12},{&quot;2026-08-12&quot;:8.13},{&quot;2026-08-13&quot;:8.06},{&quot;2026-08-14&quot;:8.19},{&quot;2026-08-15&quot;:8.38},{&quot;2026-08-16&quot;:8.59},{&quot;2026-08-17&quot;:8.59},{&quot;2026-08-18&quot;:8.51},{&quot;2026-08-19&quot;:8.51},{&quot;2026-08-20&quot;:8.51},{&quot;2026-08-21&quot;:8.37},{&quot;2026-08-22&quot;:8.45},{&quot;2026-08-23&quot;:8.45},{&quot;2026-08-24&quot;:8.47},{&quot;2026-08-25&quot;:8.47},{&quot;2026-08-26&quot;:8.43},{&quot;2026-08-27&quot;:8.51},{&quot;2026-08-28&quot;:8.51},{&quot;2026-08-29&quot;:8.51},{&quot;2026-08-30&quot;:8.51},{&quot;2026-08-31&quot;:8.45},{&quot;2026-09-01&quot;:8.45},{&quot;2026-09-02&quot;:8.52},{&quot;2026-09-03&quot;:8.62},{&quot;2026-09-04&quot;:8.62},{&quot;2026-09-05&quot;:8.62},{&quot;2026-09-06&quot;:8.62},{&quot;2026-09-07&quot;:8.56},{&quot;2026-09-08&quot;:8.63},{&quot;2026-09-09&quot;:8.59},{&quot;2026-09-10&quot;:8.5},{&quot;2026-09-11&quot;:8.5}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

        <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">
            Mantle of the Ancients
        </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 — Aura</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Mantle of the Ancients" src="https://cards.scryfall.io/large/front/8/6/867124fc-c8e4-4e0e-be41-b74a6bb34e86.jpg?1783926258" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-08&quot;:9.4},{&quot;2026-06-10&quot;:8.61},{&quot;2026-06-11&quot;:8.66},{&quot;2026-06-12&quot;:8.44},{&quot;2026-06-13&quot;:8.49},{&quot;2026-06-14&quot;:8.49},{&quot;2026-06-15&quot;:8.31},{&quot;2026-06-16&quot;:8.31},{&quot;2026-06-17&quot;:8.31},{&quot;2026-06-18&quot;:8.62},{&quot;2026-06-19&quot;:8.61},{&quot;2026-06-20&quot;:8.61},{&quot;2026-06-21&quot;:8.9},{&quot;2026-06-22&quot;:9.24},{&quot;2026-06-24&quot;:9.5},{&quot;2026-06-25&quot;:9.56},{&quot;2026-06-26&quot;:9.59},{&quot;2026-06-27&quot;:9.45},{&quot;2026-06-28&quot;:9.31},{&quot;2026-06-29&quot;:9.22},{&quot;2026-06-30&quot;:9.3},{&quot;2026-07-01&quot;:9.51},{&quot;2026-07-02&quot;:9.47},{&quot;2026-07-03&quot;:9.53},{&quot;2026-07-04&quot;:9.53},{&quot;2026-07-05&quot;:9.6},{&quot;2026-07-06&quot;:9.6},{&quot;2026-07-07&quot;:9.56},{&quot;2026-07-08&quot;:9.54},{&quot;2026-07-09&quot;:9.08},{&quot;2026-07-10&quot;:9.33},{&quot;2026-07-11&quot;:9.36},{&quot;2026-07-12&quot;:9.36},{&quot;2026-07-13&quot;:9.38},{&quot;2026-07-14&quot;:9.38},{&quot;2026-07-15&quot;:9.38},{&quot;2026-07-16&quot;:9.34},{&quot;2026-07-17&quot;:9.34},{&quot;2026-07-18&quot;:9.17},{&quot;2026-07-19&quot;:9.17},{&quot;2026-07-20&quot;:9.24},{&quot;2026-07-21&quot;:8.93},{&quot;2026-07-23&quot;:9.0},{&quot;2026-07-25&quot;:8.95},{&quot;2026-07-26&quot;:8.96},{&quot;2026-07-27&quot;:8.97},{&quot;2026-07-29&quot;:9.06},{&quot;2026-07-30&quot;:9.2},{&quot;2026-07-31&quot;:9.38},{&quot;2026-08-01&quot;:9.51},{&quot;2026-08-02&quot;:9.57},{&quot;2026-08-03&quot;:9.57},{&quot;2026-08-04&quot;:9.57},{&quot;2026-08-05&quot;:9.57},{&quot;2026-08-07&quot;:9.55},{&quot;2026-08-08&quot;:9.55},{&quot;2026-08-09&quot;:9.47},{&quot;2026-08-10&quot;:9.49},{&quot;2026-08-11&quot;:9.41},{&quot;2026-08-12&quot;:9.34},{&quot;2026-08-13&quot;:9.26},{&quot;2026-08-14&quot;:9.14},{&quot;2026-08-15&quot;:9.18},{&quot;2026-08-16&quot;:9.07},{&quot;2026-08-17&quot;:9.11},{&quot;2026-08-18&quot;:9.11},{&quot;2026-08-19&quot;:9.06},{&quot;2026-08-20&quot;:9.06},{&quot;2026-08-21&quot;:9.13},{&quot;2026-08-22&quot;:9.1},{&quot;2026-08-23&quot;:9.1},{&quot;2026-08-24&quot;:9.1},{&quot;2026-08-25&quot;:9.1},{&quot;2026-08-26&quot;:9.1},{&quot;2026-08-27&quot;:8.9},{&quot;2026-08-28&quot;:8.94},{&quot;2026-08-29&quot;:8.94},{&quot;2026-08-30&quot;:8.94},{&quot;2026-08-31&quot;:9.0},{&quot;2026-09-01&quot;:9.0},{&quot;2026-09-02&quot;:8.97},{&quot;2026-09-03&quot;:9.01},{&quot;2026-09-04&quot;:9.02},{&quot;2026-09-05&quot;:8.8},{&quot;2026-09-06&quot;:8.77},{&quot;2026-09-07&quot;:8.64},{&quot;2026-09-08&quot;:8.6},{&quot;2026-09-09&quot;:8.6},{&quot;2026-09-10&quot;:8.33},{&quot;2026-09-11&quot;:8.42}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Sram, Senior Edificer" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/8/084d7a61-ef18-42e3-8485-76ae9a36ef7b.jpg?1783906394" />

        <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">
            Sram, Senior Edificer
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Sram, Senior Edificer" src="https://cards.scryfall.io/large/front/0/8/084d7a61-ef18-42e3-8485-76ae9a36ef7b.jpg?1783906394" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:25.87},{&quot;2026-06-14&quot;:25.87},{&quot;2026-06-15&quot;:25.87},{&quot;2026-06-16&quot;:25.92},{&quot;2026-06-17&quot;:25.92},{&quot;2026-06-18&quot;:25.92},{&quot;2026-06-19&quot;:25.92},{&quot;2026-06-20&quot;:25.92},{&quot;2026-06-21&quot;:25.92},{&quot;2026-06-22&quot;:27.43},{&quot;2026-06-23&quot;:27.43},{&quot;2026-06-24&quot;:27.43},{&quot;2026-06-25&quot;:27.6},{&quot;2026-06-26&quot;:27.6},{&quot;2026-06-27&quot;:27.63},{&quot;2026-06-28&quot;:27.63},{&quot;2026-06-29&quot;:27.63},{&quot;2026-06-30&quot;:27.63},{&quot;2026-07-01&quot;:27.42},{&quot;2026-07-02&quot;:27.42},{&quot;2026-07-03&quot;:27.42},{&quot;2026-07-04&quot;:27.74},{&quot;2026-07-05&quot;:27.74},{&quot;2026-07-06&quot;:27.74},{&quot;2026-07-07&quot;:27.74},{&quot;2026-07-08&quot;:27.74},{&quot;2026-07-09&quot;:27.75},{&quot;2026-07-10&quot;:27.82},{&quot;2026-07-11&quot;:28.13},{&quot;2026-07-12&quot;:28.77},{&quot;2026-07-13&quot;:28.77},{&quot;2026-07-14&quot;:28.93},{&quot;2026-07-15&quot;:29.25},{&quot;2026-07-16&quot;:29.76},{&quot;2026-07-17&quot;:29.76},{&quot;2026-07-18&quot;:29.76},{&quot;2026-07-19&quot;:29.76},{&quot;2026-07-20&quot;:29.75},{&quot;2026-07-21&quot;:29.75},{&quot;2026-07-22&quot;:29.75},{&quot;2026-07-23&quot;:29.75},{&quot;2026-07-24&quot;:29.75},{&quot;2026-07-25&quot;:29.75},{&quot;2026-07-26&quot;:30.08},{&quot;2026-07-27&quot;:30.14},{&quot;2026-07-28&quot;:30.31},{&quot;2026-07-29&quot;:30.43},{&quot;2026-07-30&quot;:29.37},{&quot;2026-07-31&quot;:29.08},{&quot;2026-08-01&quot;:29.08},{&quot;2026-08-02&quot;:30.45},{&quot;2026-08-03&quot;:34.07},{&quot;2026-08-04&quot;:34.07},{&quot;2026-08-05&quot;:33.72},{&quot;2026-08-07&quot;:34.62},{&quot;2026-08-08&quot;:34.46},{&quot;2026-08-09&quot;:36.57},{&quot;2026-08-10&quot;:36.57},{&quot;2026-08-11&quot;:37.81},{&quot;2026-08-12&quot;:38.67},{&quot;2026-08-13&quot;:38.68},{&quot;2026-08-14&quot;:39.53},{&quot;2026-08-15&quot;:40.34},{&quot;2026-08-16&quot;:40.34},{&quot;2026-08-17&quot;:40.34},{&quot;2026-08-18&quot;:40.34},{&quot;2026-08-19&quot;:40.34},{&quot;2026-08-20&quot;:41.51},{&quot;2026-08-21&quot;:42.59},{&quot;2026-08-22&quot;:43.82},{&quot;2026-08-23&quot;:43.82},{&quot;2026-08-24&quot;:44.62},{&quot;2026-08-25&quot;:45.69},{&quot;2026-08-26&quot;:45.69},{&quot;2026-08-27&quot;:47.15},{&quot;2026-08-28&quot;:47.15},{&quot;2026-08-29&quot;:47.15},{&quot;2026-08-30&quot;:48.31},{&quot;2026-08-31&quot;:48.31},{&quot;2026-09-01&quot;:48.31},{&quot;2026-09-02&quot;:48.31},{&quot;2026-09-03&quot;:48.31},{&quot;2026-09-04&quot;:48.99},{&quot;2026-09-05&quot;:50.11},{&quot;2026-09-06&quot;:50.67},{&quot;2026-09-07&quot;:50.67},{&quot;2026-09-08&quot;:51.29},{&quot;2026-09-09&quot;:51.83},{&quot;2026-09-10&quot;:51.83},{&quot;2026-09-11&quot;:51.93}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:5.8},{&quot;2026-06-14&quot;:5.89},{&quot;2026-06-15&quot;:5.87},{&quot;2026-06-16&quot;:5.86},{&quot;2026-06-17&quot;:5.93},{&quot;2026-06-18&quot;:6.03},{&quot;2026-06-19&quot;:6.06},{&quot;2026-06-20&quot;:6.12},{&quot;2026-06-21&quot;:6.2},{&quot;2026-06-22&quot;:6.14},{&quot;2026-06-23&quot;:6.12},{&quot;2026-06-24&quot;:6.14},{&quot;2026-06-25&quot;:6.15},{&quot;2026-06-26&quot;:7.9},{&quot;2026-06-27&quot;:7.69},{&quot;2026-06-28&quot;:7.78},{&quot;2026-06-29&quot;:7.76},{&quot;2026-06-30&quot;:7.84},{&quot;2026-07-01&quot;:7.73},{&quot;2026-07-02&quot;:7.92},{&quot;2026-07-03&quot;:8.01},{&quot;2026-07-04&quot;:6.33},{&quot;2026-07-05&quot;:6.12},{&quot;2026-07-06&quot;:6.19},{&quot;2026-07-07&quot;:6.29},{&quot;2026-07-08&quot;:6.35},{&quot;2026-07-09&quot;:6.55},{&quot;2026-07-10&quot;:6.97},{&quot;2026-07-11&quot;:7.28},{&quot;2026-07-12&quot;:7.27},{&quot;2026-07-13&quot;:7.57},{&quot;2026-07-14&quot;:7.96},{&quot;2026-07-15&quot;:7.83},{&quot;2026-07-16&quot;:7.71},{&quot;2026-07-17&quot;:7.05},{&quot;2026-07-18&quot;:6.83},{&quot;2026-07-19&quot;:6.09},{&quot;2026-07-20&quot;:6.41},{&quot;2026-07-21&quot;:6.59},{&quot;2026-07-22&quot;:6.54},{&quot;2026-07-23&quot;:6.74},{&quot;2026-07-24&quot;:6.72},{&quot;2026-07-25&quot;:6.69},{&quot;2026-07-26&quot;:6.61},{&quot;2026-07-27&quot;:6.37},{&quot;2026-07-28&quot;:6.17},{&quot;2026-07-29&quot;:6.2},{&quot;2026-07-30&quot;:6.1},{&quot;2026-07-31&quot;:5.88},{&quot;2026-08-01&quot;:5.78},{&quot;2026-08-02&quot;:5.83},{&quot;2026-08-03&quot;:5.79},{&quot;2026-08-04&quot;:5.75},{&quot;2026-08-05&quot;:5.8},{&quot;2026-08-07&quot;:6.1},{&quot;2026-08-08&quot;:6.04},{&quot;2026-08-09&quot;:6.06},{&quot;2026-08-10&quot;:6.07},{&quot;2026-08-11&quot;:6.16},{&quot;2026-08-12&quot;:6.37},{&quot;2026-08-13&quot;:6.48},{&quot;2026-08-14&quot;:6.52},{&quot;2026-08-15&quot;:6.55},{&quot;2026-08-16&quot;:6.4},{&quot;2026-08-17&quot;:6.37},{&quot;2026-08-18&quot;:6.57},{&quot;2026-08-19&quot;:6.82},{&quot;2026-08-20&quot;:6.7},{&quot;2026-08-21&quot;:6.8},{&quot;2026-08-22&quot;:7.29},{&quot;2026-08-23&quot;:7.35},{&quot;2026-08-24&quot;:7.64},{&quot;2026-08-25&quot;:7.73},{&quot;2026-08-26&quot;:7.44},{&quot;2026-08-27&quot;:7.42},{&quot;2026-08-28&quot;:7.36},{&quot;2026-08-29&quot;:7.36},{&quot;2026-08-30&quot;:6.56},{&quot;2026-08-31&quot;:5.89},{&quot;2026-09-01&quot;:7.63},{&quot;2026-09-02&quot;:7.98},{&quot;2026-09-03&quot;:7.98},{&quot;2026-09-04&quot;:8.01},{&quot;2026-09-05&quot;:9.16},{&quot;2026-09-06&quot;:8.22},{&quot;2026-09-07&quot;:8.19},{&quot;2026-09-08&quot;:8.19},{&quot;2026-09-09&quot;:8.1},{&quot;2026-09-10&quot;:8.41},{&quot;2026-09-11&quot;:8.42}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="20986"
  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">
            Darksteel Plate
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Darksteel Plate
        </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 — Equipment</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="Darksteel Plate" src="https://cards.scryfall.io/large/front/3/f/3f99fb1e-99a6-4c83-98eb-7bff23996a7f.jpg?1783921791" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-08&quot;:7.17},{&quot;2026-06-10&quot;:7.17},{&quot;2026-06-11&quot;:7.17},{&quot;2026-06-12&quot;:7.15},{&quot;2026-06-13&quot;:7.23},{&quot;2026-06-14&quot;:7.23},{&quot;2026-06-15&quot;:7.23},{&quot;2026-06-16&quot;:7.23},{&quot;2026-06-17&quot;:7.23},{&quot;2026-06-18&quot;:7.4},{&quot;2026-06-19&quot;:7.4},{&quot;2026-06-20&quot;:7.4},{&quot;2026-06-21&quot;:7.4},{&quot;2026-06-22&quot;:7.4},{&quot;2026-06-24&quot;:7.4},{&quot;2026-06-25&quot;:7.4},{&quot;2026-06-26&quot;:7.33},{&quot;2026-06-27&quot;:7.33},{&quot;2026-06-28&quot;:7.19},{&quot;2026-06-29&quot;:7.19},{&quot;2026-06-30&quot;:7.19},{&quot;2026-07-01&quot;:7.2},{&quot;2026-07-02&quot;:7.2},{&quot;2026-07-03&quot;:7.2},{&quot;2026-07-04&quot;:7.28},{&quot;2026-07-05&quot;:7.28},{&quot;2026-07-06&quot;:7.28},{&quot;2026-07-07&quot;:7.28},{&quot;2026-07-08&quot;:7.26},{&quot;2026-07-09&quot;:7.26},{&quot;2026-07-10&quot;:7.26},{&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.4},{&quot;2026-07-17&quot;:7.4},{&quot;2026-07-18&quot;:7.42},{&quot;2026-07-19&quot;:7.42},{&quot;2026-07-20&quot;:7.42},{&quot;2026-07-21&quot;:7.42},{&quot;2026-07-23&quot;:7.39},{&quot;2026-07-25&quot;:7.39},{&quot;2026-07-26&quot;:7.39},{&quot;2026-07-27&quot;:7.42},{&quot;2026-07-29&quot;:7.46},{&quot;2026-07-30&quot;:7.46},{&quot;2026-07-31&quot;:7.46},{&quot;2026-08-01&quot;:7.46},{&quot;2026-08-02&quot;:7.5},{&quot;2026-08-03&quot;:7.5},{&quot;2026-08-04&quot;:7.5},{&quot;2026-08-05&quot;:7.5},{&quot;2026-08-07&quot;:7.5},{&quot;2026-08-08&quot;:7.5},{&quot;2026-08-09&quot;:7.5},{&quot;2026-08-10&quot;:7.5},{&quot;2026-08-11&quot;:7.5},{&quot;2026-08-12&quot;:7.51},{&quot;2026-08-13&quot;:7.27},{&quot;2026-08-14&quot;:7.27},{&quot;2026-08-15&quot;:7.27},{&quot;2026-08-16&quot;:7.18},{&quot;2026-08-17&quot;:7.18},{&quot;2026-08-18&quot;:7.18},{&quot;2026-08-19&quot;:7.18},{&quot;2026-08-20&quot;:7.18},{&quot;2026-08-21&quot;:7.11},{&quot;2026-08-22&quot;:7.15},{&quot;2026-08-23&quot;:7.17},{&quot;2026-08-24&quot;:7.17},{&quot;2026-08-25&quot;:7.17},{&quot;2026-08-26&quot;:7.17},{&quot;2026-08-27&quot;:7.17},{&quot;2026-08-28&quot;:7.17},{&quot;2026-08-29&quot;:7.17},{&quot;2026-08-30&quot;:7.17},{&quot;2026-08-31&quot;:7.17},{&quot;2026-09-01&quot;:7.17},{&quot;2026-09-02&quot;:7.17},{&quot;2026-09-03&quot;:7.17},{&quot;2026-09-04&quot;:7.17},{&quot;2026-09-05&quot;:7.19},{&quot;2026-09-06&quot;:7.19},{&quot;2026-09-07&quot;:7.19},{&quot;2026-09-08&quot;:7.19},{&quot;2026-09-09&quot;:7.19},{&quot;2026-09-10&quot;:7.19},{&quot;2026-09-11&quot;:7.19}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:6.05},{&quot;2026-06-10&quot;:6.51},{&quot;2026-06-11&quot;:6.41},{&quot;2026-06-12&quot;:6.41},{&quot;2026-06-13&quot;:6.41},{&quot;2026-06-14&quot;:6.41},{&quot;2026-06-15&quot;:6.54},{&quot;2026-06-16&quot;:6.54},{&quot;2026-06-17&quot;:6.36},{&quot;2026-06-18&quot;:6.46},{&quot;2026-06-19&quot;:6.58},{&quot;2026-06-20&quot;:6.58},{&quot;2026-06-21&quot;:6.59},{&quot;2026-06-22&quot;:6.59},{&quot;2026-06-24&quot;:6.9},{&quot;2026-06-25&quot;:6.89},{&quot;2026-06-26&quot;:6.72},{&quot;2026-06-27&quot;:7.04},{&quot;2026-06-28&quot;:7.04},{&quot;2026-06-29&quot;:6.65},{&quot;2026-06-30&quot;:6.69},{&quot;2026-07-01&quot;:6.67},{&quot;2026-07-02&quot;:6.85},{&quot;2026-07-03&quot;:6.65},{&quot;2026-07-04&quot;:6.6},{&quot;2026-07-05&quot;:6.47},{&quot;2026-07-06&quot;:6.42},{&quot;2026-07-07&quot;:6.45},{&quot;2026-07-08&quot;:6.2},{&quot;2026-07-09&quot;:6.25},{&quot;2026-07-10&quot;:6.1},{&quot;2026-07-11&quot;:6.1},{&quot;2026-07-12&quot;:6.29},{&quot;2026-07-13&quot;:6.47},{&quot;2026-07-14&quot;:6.47},{&quot;2026-07-15&quot;:6.53},{&quot;2026-07-16&quot;:6.5},{&quot;2026-07-17&quot;:6.4},{&quot;2026-07-18&quot;:6.43},{&quot;2026-07-19&quot;:6.44},{&quot;2026-07-20&quot;:6.44},{&quot;2026-07-21&quot;:6.58},{&quot;2026-07-23&quot;:6.95},{&quot;2026-07-25&quot;:6.95},{&quot;2026-07-26&quot;:6.88},{&quot;2026-07-27&quot;:6.8},{&quot;2026-07-29&quot;:6.82},{&quot;2026-07-30&quot;:6.73},{&quot;2026-07-31&quot;:6.71},{&quot;2026-08-01&quot;:6.71},{&quot;2026-08-02&quot;:6.76},{&quot;2026-08-03&quot;:6.91},{&quot;2026-08-04&quot;:6.97},{&quot;2026-08-05&quot;:6.97},{&quot;2026-08-07&quot;:6.92},{&quot;2026-08-08&quot;:6.92},{&quot;2026-08-09&quot;:6.91},{&quot;2026-08-10&quot;:6.83},{&quot;2026-08-11&quot;:6.85},{&quot;2026-08-12&quot;:6.73},{&quot;2026-08-13&quot;:6.65},{&quot;2026-08-14&quot;:6.65},{&quot;2026-08-15&quot;:6.62},{&quot;2026-08-16&quot;:6.87},{&quot;2026-08-17&quot;:6.93},{&quot;2026-08-18&quot;:6.87},{&quot;2026-08-19&quot;:6.87},{&quot;2026-08-20&quot;:6.87},{&quot;2026-08-21&quot;:6.43},{&quot;2026-08-22&quot;:6.52},{&quot;2026-08-23&quot;:6.51},{&quot;2026-08-24&quot;:6.57},{&quot;2026-08-25&quot;:6.57},{&quot;2026-08-26&quot;:6.64},{&quot;2026-08-27&quot;:6.65},{&quot;2026-08-28&quot;:6.63},{&quot;2026-08-29&quot;:6.63},{&quot;2026-08-30&quot;:6.74},{&quot;2026-08-31&quot;:6.78},{&quot;2026-09-01&quot;:6.78},{&quot;2026-09-02&quot;:6.67},{&quot;2026-09-03&quot;:6.7},{&quot;2026-09-04&quot;:6.6},{&quot;2026-09-05&quot;:6.58},{&quot;2026-09-06&quot;:6.84},{&quot;2026-09-07&quot;:7.01},{&quot;2026-09-08&quot;:7.37},{&quot;2026-09-09&quot;:7.43},{&quot;2026-09-10&quot;:7.48},{&quot;2026-09-11&quot;:7.81}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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


      </div>

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

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            8 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.91
          </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 Plains" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/a/7a961768-6166-4852-b518-23eb4cced47d.jpg?1783933064" />

        <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 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 Snow 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="Snow-Covered Plains" src="https://cards.scryfall.io/large/front/7/a/7a961768-6166-4852-b518-23eb4cced47d.jpg?1783933064" />
    </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">
            7
          </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.91
              </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">
                $7.80
              </span>

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.52</span>
              <span class="text-xs text-grey-text">Credit: $0.68</span>
            </div>
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Foil</span>
              <span class="text-lg font-medium text-nine-white">$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-12&quot;:6.4},{&quot;2026-06-13&quot;:6.92},{&quot;2026-06-14&quot;:7.05},{&quot;2026-06-15&quot;:7.05},{&quot;2026-06-16&quot;:7.05},{&quot;2026-06-17&quot;:7.05},{&quot;2026-06-18&quot;:7.05},{&quot;2026-06-19&quot;:7.05},{&quot;2026-06-20&quot;:7.05},{&quot;2026-06-21&quot;:7.05},{&quot;2026-06-22&quot;:7.05},{&quot;2026-06-23&quot;:7.05},{&quot;2026-06-24&quot;:7.05},{&quot;2026-06-25&quot;:7.05},{&quot;2026-06-26&quot;:7.05},{&quot;2026-06-27&quot;:7.05},{&quot;2026-06-28&quot;:7.05},{&quot;2026-06-29&quot;:7.05},{&quot;2026-06-30&quot;:7.2},{&quot;2026-07-01&quot;:7.2},{&quot;2026-07-02&quot;:7.2},{&quot;2026-07-03&quot;:7.2},{&quot;2026-07-04&quot;:7.2},{&quot;2026-07-05&quot;:7.2},{&quot;2026-07-06&quot;:7.2},{&quot;2026-07-07&quot;:7.2},{&quot;2026-07-08&quot;:7.2},{&quot;2026-07-09&quot;:7.2},{&quot;2026-07-10&quot;:7.2},{&quot;2026-07-11&quot;:7.2},{&quot;2026-07-12&quot;:7.2},{&quot;2026-07-13&quot;:7.2},{&quot;2026-07-14&quot;:7.2},{&quot;2026-07-15&quot;:7.2},{&quot;2026-07-16&quot;:7.11},{&quot;2026-07-17&quot;:7.11},{&quot;2026-07-18&quot;:7.11},{&quot;2026-07-19&quot;:7.11},{&quot;2026-07-20&quot;:7.11},{&quot;2026-07-21&quot;:7.11},{&quot;2026-07-23&quot;:7.08},{&quot;2026-07-24&quot;:7.08},{&quot;2026-07-25&quot;:7.08},{&quot;2026-07-26&quot;:7.08},{&quot;2026-07-27&quot;:7.08},{&quot;2026-07-28&quot;:7.08},{&quot;2026-07-29&quot;:7.08},{&quot;2026-07-30&quot;:7.08},{&quot;2026-07-31&quot;:7.08},{&quot;2026-08-01&quot;:7.08},{&quot;2026-08-02&quot;:7.08},{&quot;2026-08-03&quot;:7.08},{&quot;2026-08-04&quot;:7.08},{&quot;2026-08-05&quot;:7.08},{&quot;2026-08-07&quot;:7.08},{&quot;2026-08-08&quot;:7.17},{&quot;2026-08-09&quot;:7.17},{&quot;2026-08-10&quot;:7.17},{&quot;2026-08-11&quot;:7.17},{&quot;2026-08-12&quot;:7.17},{&quot;2026-08-13&quot;:7.17},{&quot;2026-08-14&quot;:7.22},{&quot;2026-08-15&quot;:7.22},{&quot;2026-08-16&quot;:7.22},{&quot;2026-08-17&quot;:7.22},{&quot;2026-08-18&quot;:7.22},{&quot;2026-08-19&quot;:7.3},{&quot;2026-08-20&quot;:7.3},{&quot;2026-08-21&quot;:7.3},{&quot;2026-08-22&quot;:7.3},{&quot;2026-08-23&quot;:7.3},{&quot;2026-08-24&quot;:7.3},{&quot;2026-08-25&quot;:7.3},{&quot;2026-08-26&quot;:7.3},{&quot;2026-08-27&quot;:7.3},{&quot;2026-08-28&quot;:7.3},{&quot;2026-08-29&quot;:7.3},{&quot;2026-08-30&quot;:7.3},{&quot;2026-08-31&quot;:7.3},{&quot;2026-09-01&quot;:7.3},{&quot;2026-09-02&quot;:7.8},{&quot;2026-09-03&quot;:7.8},{&quot;2026-09-04&quot;:7.8},{&quot;2026-09-05&quot;:7.8},{&quot;2026-09-06&quot;:7.8},{&quot;2026-09-07&quot;:7.8},{&quot;2026-09-08&quot;:7.8},{&quot;2026-09-09&quot;:7.8},{&quot;2026-09-10&quot;:7.8},{&quot;2026-09-11&quot;:7.8}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:0.79},{&quot;2026-06-13&quot;:0.81},{&quot;2026-06-14&quot;:0.85},{&quot;2026-06-15&quot;:0.85},{&quot;2026-06-16&quot;:0.82},{&quot;2026-06-17&quot;:0.81},{&quot;2026-06-18&quot;:0.81},{&quot;2026-06-19&quot;:0.77},{&quot;2026-06-20&quot;:0.78},{&quot;2026-06-21&quot;:0.8},{&quot;2026-06-22&quot;:0.86},{&quot;2026-06-23&quot;:0.88},{&quot;2026-06-24&quot;:0.85},{&quot;2026-06-25&quot;:0.85},{&quot;2026-06-26&quot;:0.92},{&quot;2026-06-27&quot;:0.91},{&quot;2026-06-28&quot;:0.93},{&quot;2026-06-29&quot;:0.93},{&quot;2026-06-30&quot;:0.91},{&quot;2026-07-01&quot;:0.91},{&quot;2026-07-02&quot;:0.85},{&quot;2026-07-03&quot;:0.87},{&quot;2026-07-04&quot;:0.89},{&quot;2026-07-05&quot;:0.94},{&quot;2026-07-06&quot;:0.95},{&quot;2026-07-07&quot;:0.98},{&quot;2026-07-08&quot;:0.96},{&quot;2026-07-09&quot;:0.95},{&quot;2026-07-10&quot;:0.98},{&quot;2026-07-11&quot;:0.98},{&quot;2026-07-12&quot;:0.96},{&quot;2026-07-13&quot;:0.97},{&quot;2026-07-14&quot;:0.93},{&quot;2026-07-15&quot;:0.9},{&quot;2026-07-16&quot;:0.9},{&quot;2026-07-17&quot;:0.88},{&quot;2026-07-18&quot;:0.92},{&quot;2026-07-19&quot;:0.9},{&quot;2026-07-20&quot;:0.9},{&quot;2026-07-21&quot;:0.92},{&quot;2026-07-23&quot;:0.97},{&quot;2026-07-24&quot;:0.95},{&quot;2026-07-25&quot;:0.93},{&quot;2026-07-26&quot;:0.94},{&quot;2026-07-27&quot;:0.94},{&quot;2026-07-28&quot;:1.0},{&quot;2026-07-29&quot;:1.0},{&quot;2026-07-30&quot;:0.99},{&quot;2026-07-31&quot;:0.98},{&quot;2026-08-01&quot;:0.98},{&quot;2026-08-02&quot;:0.99},{&quot;2026-08-03&quot;:0.98},{&quot;2026-08-04&quot;:1.02},{&quot;2026-08-05&quot;:1.01},{&quot;2026-08-07&quot;:0.96},{&quot;2026-08-08&quot;:0.83},{&quot;2026-08-09&quot;:0.83},{&quot;2026-08-10&quot;:0.83},{&quot;2026-08-11&quot;:0.86},{&quot;2026-08-12&quot;:0.84},{&quot;2026-08-13&quot;:0.89},{&quot;2026-08-14&quot;:0.88},{&quot;2026-08-15&quot;:0.84},{&quot;2026-08-16&quot;:0.83},{&quot;2026-08-17&quot;:0.74},{&quot;2026-08-18&quot;:0.75},{&quot;2026-08-19&quot;:0.73},{&quot;2026-08-20&quot;:0.73},{&quot;2026-08-21&quot;:0.74},{&quot;2026-08-22&quot;:0.78},{&quot;2026-08-23&quot;:0.81},{&quot;2026-08-24&quot;:0.82},{&quot;2026-08-25&quot;:0.8},{&quot;2026-08-26&quot;:0.84},{&quot;2026-08-27&quot;:0.82},{&quot;2026-08-28&quot;:0.78},{&quot;2026-08-29&quot;:0.78},{&quot;2026-08-30&quot;:0.78},{&quot;2026-08-31&quot;:0.82},{&quot;2026-09-01&quot;:0.84},{&quot;2026-09-02&quot;:0.85},{&quot;2026-09-03&quot;:0.87},{&quot;2026-09-04&quot;:0.88},{&quot;2026-09-05&quot;:0.88},{&quot;2026-09-06&quot;:0.89},{&quot;2026-09-07&quot;:0.91},{&quot;2026-09-08&quot;:0.91},{&quot;2026-09-09&quot;:0.9},{&quot;2026-09-10&quot;:0.9},{&quot;2026-09-11&quot;:0.91}]}"
        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="47311"
  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-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">
            Avacyn&#39;s Memorial
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Avacyn&#39;s Memorial" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/8/c8134a08-4c7f-419e-940d-95bc9f630ae2.jpg?1783925373" />

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

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-5'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i><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="Avacyn&#39;s Memorial" src="https://cards.scryfall.io/large/front/c/8/c8134a08-4c7f-419e-940d-95bc9f630ae2.jpg?1783925373" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-11&quot;:8.48},{&quot;2026-06-12&quot;:8.47},{&quot;2026-06-13&quot;:8.53},{&quot;2026-06-14&quot;:8.55},{&quot;2026-06-15&quot;:8.51},{&quot;2026-06-16&quot;:8.51},{&quot;2026-06-17&quot;:8.51},{&quot;2026-06-18&quot;:8.51},{&quot;2026-06-19&quot;:8.51},{&quot;2026-06-20&quot;:8.52},{&quot;2026-06-21&quot;:8.5},{&quot;2026-06-22&quot;:8.5},{&quot;2026-06-23&quot;:8.5},{&quot;2026-06-24&quot;:8.5},{&quot;2026-06-25&quot;:8.41},{&quot;2026-06-26&quot;:8.41},{&quot;2026-06-27&quot;:8.46},{&quot;2026-06-28&quot;:8.46},{&quot;2026-06-29&quot;:8.41},{&quot;2026-06-30&quot;:8.4},{&quot;2026-07-01&quot;:8.34},{&quot;2026-07-02&quot;:8.34},{&quot;2026-07-03&quot;:8.38},{&quot;2026-07-04&quot;:8.31},{&quot;2026-07-05&quot;:8.54},{&quot;2026-07-06&quot;:8.61},{&quot;2026-07-07&quot;:8.68},{&quot;2026-07-08&quot;:8.76},{&quot;2026-07-09&quot;:8.76},{&quot;2026-07-10&quot;:8.76},{&quot;2026-07-11&quot;:8.76},{&quot;2026-07-12&quot;:8.76},{&quot;2026-07-13&quot;:8.76},{&quot;2026-07-14&quot;:8.66},{&quot;2026-07-15&quot;:8.7},{&quot;2026-07-16&quot;:8.58},{&quot;2026-07-17&quot;:8.73},{&quot;2026-07-18&quot;:8.89},{&quot;2026-07-19&quot;:8.89},{&quot;2026-07-20&quot;:8.95},{&quot;2026-07-21&quot;:8.99},{&quot;2026-07-23&quot;:8.88},{&quot;2026-07-25&quot;:8.79},{&quot;2026-07-26&quot;:8.79},{&quot;2026-07-27&quot;:8.79},{&quot;2026-07-28&quot;:8.75},{&quot;2026-07-29&quot;:8.75},{&quot;2026-07-30&quot;:8.64},{&quot;2026-07-31&quot;:8.67},{&quot;2026-08-01&quot;:8.63},{&quot;2026-08-02&quot;:8.56},{&quot;2026-08-03&quot;:8.56},{&quot;2026-08-04&quot;:8.64},{&quot;2026-08-05&quot;:8.25},{&quot;2026-08-07&quot;:8.22},{&quot;2026-08-08&quot;:8.22},{&quot;2026-08-09&quot;:8.22},{&quot;2026-08-10&quot;:8.22},{&quot;2026-08-11&quot;:8.19},{&quot;2026-08-12&quot;:7.35},{&quot;2026-08-13&quot;:7.26},{&quot;2026-08-14&quot;:7.26},{&quot;2026-08-15&quot;:7.44},{&quot;2026-08-16&quot;:7.44},{&quot;2026-08-17&quot;:7.49},{&quot;2026-08-18&quot;:7.59},{&quot;2026-08-19&quot;:7.55},{&quot;2026-08-20&quot;:7.55},{&quot;2026-08-21&quot;:7.71},{&quot;2026-08-22&quot;:7.71},{&quot;2026-08-23&quot;:7.69},{&quot;2026-08-24&quot;:7.69},{&quot;2026-08-25&quot;:7.69},{&quot;2026-08-26&quot;:7.69},{&quot;2026-08-27&quot;:7.69},{&quot;2026-08-28&quot;:7.5},{&quot;2026-08-29&quot;:7.5},{&quot;2026-08-30&quot;:7.51},{&quot;2026-08-31&quot;:7.59},{&quot;2026-09-01&quot;:7.68},{&quot;2026-09-02&quot;:7.68},{&quot;2026-09-03&quot;:7.67},{&quot;2026-09-04&quot;:7.67},{&quot;2026-09-05&quot;:7.69},{&quot;2026-09-06&quot;:7.7},{&quot;2026-09-07&quot;:7.75},{&quot;2026-09-08&quot;:7.78},{&quot;2026-09-09&quot;:7.78},{&quot;2026-09-10&quot;:7.78},{&quot;2026-09-11&quot;:7.79}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Skullclamp" src="https://cards.scryfall.io/large/front/5/5/55318397-de3c-47ea-a088-72a24df5c8fa.jpg?1783944419" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="83902"
  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">
            Recruiter of the Guard
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Recruiter of the Guard
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Recruiter of the Guard" src="https://cards.scryfall.io/large/front/3/c/3cb635bb-def8-43f9-aad1-dd298dcc730b.jpg?1783931946" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-08&quot;:5.37},{&quot;2026-06-10&quot;:5.39},{&quot;2026-06-11&quot;:5.39},{&quot;2026-06-12&quot;:5.35},{&quot;2026-06-13&quot;:5.36},{&quot;2026-06-14&quot;:5.43},{&quot;2026-06-15&quot;:5.43},{&quot;2026-06-16&quot;:5.64},{&quot;2026-06-17&quot;:5.65},{&quot;2026-06-18&quot;:5.64},{&quot;2026-06-19&quot;:5.66},{&quot;2026-06-20&quot;:5.74},{&quot;2026-06-21&quot;:5.75},{&quot;2026-06-22&quot;:5.82},{&quot;2026-06-24&quot;:5.82},{&quot;2026-06-25&quot;:5.86},{&quot;2026-06-26&quot;:5.77},{&quot;2026-06-27&quot;:5.81},{&quot;2026-06-28&quot;:5.81},{&quot;2026-06-29&quot;:5.91},{&quot;2026-06-30&quot;:5.86},{&quot;2026-07-01&quot;:5.86},{&quot;2026-07-02&quot;:5.88},{&quot;2026-07-03&quot;:5.84},{&quot;2026-07-04&quot;:5.84},{&quot;2026-07-05&quot;:5.84},{&quot;2026-07-06&quot;:5.81},{&quot;2026-07-07&quot;:5.81},{&quot;2026-07-08&quot;:5.81},{&quot;2026-07-09&quot;:5.81},{&quot;2026-07-10&quot;:5.81},{&quot;2026-07-11&quot;:5.7},{&quot;2026-07-12&quot;:5.58},{&quot;2026-07-13&quot;:5.51},{&quot;2026-07-14&quot;:5.54},{&quot;2026-07-15&quot;:5.54},{&quot;2026-07-16&quot;:5.54},{&quot;2026-07-17&quot;:5.52},{&quot;2026-07-18&quot;:5.52},{&quot;2026-07-19&quot;:5.49},{&quot;2026-07-20&quot;:5.49},{&quot;2026-07-21&quot;:5.52},{&quot;2026-07-23&quot;:5.55},{&quot;2026-07-25&quot;:5.54},{&quot;2026-07-26&quot;:5.54},{&quot;2026-07-27&quot;:5.54},{&quot;2026-07-29&quot;:5.59},{&quot;2026-07-30&quot;:5.77},{&quot;2026-07-31&quot;:5.9},{&quot;2026-08-01&quot;:5.9},{&quot;2026-08-02&quot;:5.97},{&quot;2026-08-03&quot;:6.11},{&quot;2026-08-04&quot;:6.36},{&quot;2026-08-05&quot;:6.36},{&quot;2026-08-07&quot;:6.43},{&quot;2026-08-08&quot;:6.43},{&quot;2026-08-09&quot;:6.43},{&quot;2026-08-10&quot;:6.43},{&quot;2026-08-11&quot;:6.43},{&quot;2026-08-12&quot;:6.44},{&quot;2026-08-13&quot;:6.44},{&quot;2026-08-14&quot;:6.35},{&quot;2026-08-15&quot;:6.35},{&quot;2026-08-16&quot;:6.38},{&quot;2026-08-17&quot;:6.56},{&quot;2026-08-18&quot;:6.6},{&quot;2026-08-19&quot;:6.49},{&quot;2026-08-20&quot;:6.49},{&quot;2026-08-21&quot;:6.61},{&quot;2026-08-22&quot;:6.66},{&quot;2026-08-23&quot;:6.65},{&quot;2026-08-24&quot;:6.63},{&quot;2026-08-25&quot;:6.63},{&quot;2026-08-26&quot;:6.61},{&quot;2026-08-27&quot;:6.61},{&quot;2026-08-28&quot;:6.43},{&quot;2026-08-29&quot;:6.43},{&quot;2026-08-30&quot;:6.13},{&quot;2026-08-31&quot;:6.13},{&quot;2026-09-01&quot;:6.13},{&quot;2026-09-02&quot;:6.16},{&quot;2026-09-03&quot;:6.11},{&quot;2026-09-04&quot;:6.14},{&quot;2026-09-05&quot;:6.21},{&quot;2026-09-06&quot;:6.14},{&quot;2026-09-07&quot;:6.08},{&quot;2026-09-08&quot;:5.95},{&quot;2026-09-09&quot;:6.22},{&quot;2026-09-10&quot;:6.41},{&quot;2026-09-11&quot;:6.62}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="88007"
  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">
            Lightning Greaves
        </span>


      </div>

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

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Lightning Greaves" src="https://cards.scryfall.io/large/front/e/f/ef5c570d-e415-4ac3-b48f-574ce109303a.jpg?1783931747" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-12&quot;:6.05},{&quot;2026-06-13&quot;:6.18},{&quot;2026-06-14&quot;:6.18},{&quot;2026-06-15&quot;:6.18},{&quot;2026-06-16&quot;:6.08},{&quot;2026-06-17&quot;:6.08},{&quot;2026-06-18&quot;:6.08},{&quot;2026-06-19&quot;:6.1},{&quot;2026-06-20&quot;:6.1},{&quot;2026-06-21&quot;:5.94},{&quot;2026-06-22&quot;:5.84},{&quot;2026-06-23&quot;:5.71},{&quot;2026-06-24&quot;:5.71},{&quot;2026-06-25&quot;:5.85},{&quot;2026-06-26&quot;:5.85},{&quot;2026-06-27&quot;:5.85},{&quot;2026-06-28&quot;:5.85},{&quot;2026-06-29&quot;:5.7},{&quot;2026-06-30&quot;:5.7},{&quot;2026-07-01&quot;:5.85},{&quot;2026-07-02&quot;:5.8},{&quot;2026-07-03&quot;:5.8},{&quot;2026-07-04&quot;:5.7},{&quot;2026-07-05&quot;:5.7},{&quot;2026-07-06&quot;:5.7},{&quot;2026-07-07&quot;:5.67},{&quot;2026-07-08&quot;:5.67},{&quot;2026-07-09&quot;:5.67},{&quot;2026-07-10&quot;:5.67},{&quot;2026-07-11&quot;:5.67},{&quot;2026-07-12&quot;:5.6},{&quot;2026-07-13&quot;:5.6},{&quot;2026-07-14&quot;:5.6},{&quot;2026-07-15&quot;:5.47},{&quot;2026-07-16&quot;:5.47},{&quot;2026-07-17&quot;:5.47},{&quot;2026-07-18&quot;:5.42},{&quot;2026-07-19&quot;:5.43},{&quot;2026-07-20&quot;:5.27},{&quot;2026-07-21&quot;:5.27},{&quot;2026-07-23&quot;:5.22},{&quot;2026-07-24&quot;:5.22},{&quot;2026-07-25&quot;:5.34},{&quot;2026-07-26&quot;:5.4},{&quot;2026-07-27&quot;:5.19},{&quot;2026-07-28&quot;:5.31},{&quot;2026-07-29&quot;:5.51},{&quot;2026-07-30&quot;:5.42},{&quot;2026-07-31&quot;:5.42},{&quot;2026-08-01&quot;:5.42},{&quot;2026-08-02&quot;:5.34},{&quot;2026-08-03&quot;:5.34},{&quot;2026-08-04&quot;:5.34},{&quot;2026-08-05&quot;:5.29},{&quot;2026-08-07&quot;:5.35},{&quot;2026-08-08&quot;:5.35},{&quot;2026-08-09&quot;:5.35},{&quot;2026-08-10&quot;:5.38},{&quot;2026-08-11&quot;:5.4},{&quot;2026-08-12&quot;:5.21},{&quot;2026-08-13&quot;:5.21},{&quot;2026-08-14&quot;:5.13},{&quot;2026-08-15&quot;:5.02},{&quot;2026-08-16&quot;:4.96},{&quot;2026-08-17&quot;:4.97},{&quot;2026-08-18&quot;:5.64},{&quot;2026-08-19&quot;:5.55},{&quot;2026-08-20&quot;:5.55},{&quot;2026-08-21&quot;:5.32},{&quot;2026-08-22&quot;:5.32},{&quot;2026-08-23&quot;:5.32},{&quot;2026-08-24&quot;:5.33},{&quot;2026-08-25&quot;:5.33},{&quot;2026-08-26&quot;:5.33},{&quot;2026-08-27&quot;:5.33},{&quot;2026-08-28&quot;:5.33},{&quot;2026-08-29&quot;:5.33},{&quot;2026-08-30&quot;:5.33},{&quot;2026-08-31&quot;:5.33},{&quot;2026-09-01&quot;:5.33},{&quot;2026-09-02&quot;:5.33},{&quot;2026-09-03&quot;:5.33},{&quot;2026-09-04&quot;:5.24},{&quot;2026-09-05&quot;:5.36},{&quot;2026-09-06&quot;:5.35},{&quot;2026-09-07&quot;:5.42},{&quot;2026-09-08&quot;:5.79},{&quot;2026-09-09&quot;:6.03},{&quot;2026-09-10&quot;:6.1},{&quot;2026-09-11&quot;:6.12}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $5.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="Sword of the Animist" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/3/b/3bfa6b8c-6e4b-42fa-9f6c-40c95e162b9a.jpg?1783926167" />

        <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">
            Sword of the Animist
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Sword of the Animist" src="https://cards.scryfall.io/large/front/3/b/3bfa6b8c-6e4b-42fa-9f6c-40c95e162b9a.jpg?1783926167" />
    </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.97
              </span>

            </div>
          </div>

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:9.37},{&quot;2026-06-14&quot;:9.37},{&quot;2026-06-15&quot;:9.43},{&quot;2026-06-16&quot;:9.43},{&quot;2026-06-17&quot;:9.24},{&quot;2026-06-18&quot;:9.34},{&quot;2026-06-19&quot;:9.34},{&quot;2026-06-20&quot;:9.19},{&quot;2026-06-21&quot;:9.19},{&quot;2026-06-22&quot;:8.9},{&quot;2026-06-23&quot;:8.9},{&quot;2026-06-24&quot;:8.9},{&quot;2026-06-25&quot;:8.76},{&quot;2026-06-26&quot;:8.67},{&quot;2026-06-27&quot;:8.67},{&quot;2026-06-28&quot;:8.67},{&quot;2026-06-29&quot;:8.63},{&quot;2026-06-30&quot;:8.63},{&quot;2026-07-01&quot;:8.63},{&quot;2026-07-02&quot;:8.65},{&quot;2026-07-03&quot;:8.46},{&quot;2026-07-04&quot;:8.46},{&quot;2026-07-05&quot;:8.29},{&quot;2026-07-06&quot;:8.07},{&quot;2026-07-07&quot;:8.07},{&quot;2026-07-08&quot;:8.07},{&quot;2026-07-09&quot;:7.88},{&quot;2026-07-10&quot;:7.62},{&quot;2026-07-11&quot;:7.55},{&quot;2026-07-12&quot;:7.16},{&quot;2026-07-13&quot;:6.95},{&quot;2026-07-14&quot;:6.78},{&quot;2026-07-15&quot;:6.3},{&quot;2026-07-16&quot;:6.34},{&quot;2026-07-17&quot;:6.23},{&quot;2026-07-18&quot;:6.26},{&quot;2026-07-19&quot;:6.22},{&quot;2026-07-20&quot;:6.56},{&quot;2026-07-21&quot;:6.43},{&quot;2026-07-22&quot;:6.43},{&quot;2026-07-23&quot;:6.43},{&quot;2026-07-24&quot;:6.54},{&quot;2026-07-25&quot;:6.54},{&quot;2026-07-26&quot;:6.41},{&quot;2026-07-27&quot;:6.65},{&quot;2026-07-28&quot;:6.75},{&quot;2026-07-29&quot;:6.89},{&quot;2026-07-30&quot;:6.89},{&quot;2026-07-31&quot;:6.89},{&quot;2026-08-01&quot;:6.84},{&quot;2026-08-02&quot;:6.8},{&quot;2026-08-03&quot;:6.8},{&quot;2026-08-04&quot;:6.8},{&quot;2026-08-05&quot;:6.8},{&quot;2026-08-07&quot;:6.8},{&quot;2026-08-08&quot;:6.8},{&quot;2026-08-09&quot;:6.75},{&quot;2026-08-10&quot;:6.75},{&quot;2026-08-11&quot;:6.75},{&quot;2026-08-12&quot;:6.75},{&quot;2026-08-13&quot;:6.75},{&quot;2026-08-14&quot;:6.75},{&quot;2026-08-15&quot;:6.59},{&quot;2026-08-16&quot;:6.61},{&quot;2026-08-17&quot;:6.63},{&quot;2026-08-18&quot;:6.71},{&quot;2026-08-19&quot;:6.71},{&quot;2026-08-20&quot;:6.71},{&quot;2026-08-21&quot;:6.71},{&quot;2026-08-22&quot;:6.66},{&quot;2026-08-23&quot;:6.63},{&quot;2026-08-24&quot;:6.63},{&quot;2026-08-25&quot;:6.76},{&quot;2026-08-26&quot;:6.68},{&quot;2026-08-27&quot;:6.46},{&quot;2026-08-28&quot;:6.09},{&quot;2026-08-29&quot;:6.09},{&quot;2026-08-30&quot;:6.14},{&quot;2026-08-31&quot;:6.14},{&quot;2026-09-01&quot;:6.18},{&quot;2026-09-02&quot;:6.25},{&quot;2026-09-03&quot;:6.3},{&quot;2026-09-04&quot;:6.21},{&quot;2026-09-05&quot;:5.99},{&quot;2026-09-06&quot;:5.99},{&quot;2026-09-07&quot;:5.98},{&quot;2026-09-08&quot;:5.98},{&quot;2026-09-09&quot;:5.98},{&quot;2026-09-10&quot;:5.97},{&quot;2026-09-11&quot;:5.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="20079"
  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">
            Wrath of God
        </span>


      </div>

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

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Wrath of God" src="https://cards.scryfall.io/large/front/6/6/664e6656-36a3-4635-9f33-9f8901afd397.jpg?1783930206" />
    </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.81
              </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">
                $5.59
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:6.26},{&quot;2026-06-14&quot;:6.26},{&quot;2026-06-15&quot;:6.26},{&quot;2026-06-16&quot;:6.26},{&quot;2026-06-17&quot;:6.26},{&quot;2026-06-18&quot;:6.26},{&quot;2026-06-19&quot;:6.26},{&quot;2026-06-20&quot;:6.26},{&quot;2026-06-21&quot;:6.26},{&quot;2026-06-22&quot;:6.26},{&quot;2026-06-23&quot;:6.26},{&quot;2026-06-24&quot;:6.26},{&quot;2026-06-25&quot;:6.26},{&quot;2026-06-26&quot;:6.26},{&quot;2026-06-27&quot;:6.26},{&quot;2026-06-28&quot;:6.26},{&quot;2026-06-29&quot;:6.26},{&quot;2026-06-30&quot;:6.26},{&quot;2026-07-01&quot;:6.26},{&quot;2026-07-02&quot;:6.26},{&quot;2026-07-03&quot;:6.26},{&quot;2026-07-04&quot;:6.26},{&quot;2026-07-05&quot;:6.26},{&quot;2026-07-06&quot;:6.26},{&quot;2026-07-07&quot;:6.26},{&quot;2026-07-08&quot;:6.26},{&quot;2026-07-09&quot;:6.26},{&quot;2026-07-10&quot;:6.26},{&quot;2026-07-11&quot;:6.26},{&quot;2026-07-12&quot;:6.26},{&quot;2026-07-13&quot;:6.26},{&quot;2026-07-14&quot;:6.26},{&quot;2026-07-15&quot;:6.26},{&quot;2026-07-16&quot;:6.26},{&quot;2026-07-17&quot;:6.26},{&quot;2026-07-18&quot;:6.24},{&quot;2026-07-19&quot;:6.24},{&quot;2026-07-20&quot;:6.24},{&quot;2026-07-21&quot;:6.24},{&quot;2026-07-22&quot;:6.06},{&quot;2026-07-23&quot;:6.06},{&quot;2026-07-24&quot;:6.06},{&quot;2026-07-25&quot;:6.06},{&quot;2026-07-26&quot;:6.15},{&quot;2026-07-27&quot;:6.15},{&quot;2026-07-28&quot;:6.15},{&quot;2026-07-29&quot;:6.15},{&quot;2026-07-30&quot;:6.32},{&quot;2026-07-31&quot;:6.32},{&quot;2026-08-01&quot;:6.32},{&quot;2026-08-02&quot;:6.32},{&quot;2026-08-03&quot;:6.32},{&quot;2026-08-04&quot;:6.32},{&quot;2026-08-05&quot;:6.32},{&quot;2026-08-07&quot;:5.77},{&quot;2026-08-08&quot;:6.32},{&quot;2026-08-09&quot;:5.87},{&quot;2026-08-10&quot;:5.87},{&quot;2026-08-11&quot;:5.87},{&quot;2026-08-12&quot;:5.87},{&quot;2026-08-13&quot;:5.87},{&quot;2026-08-14&quot;:5.87},{&quot;2026-08-15&quot;:5.87},{&quot;2026-08-16&quot;:5.87},{&quot;2026-08-17&quot;:5.87},{&quot;2026-08-18&quot;:5.87},{&quot;2026-08-19&quot;:5.87},{&quot;2026-08-20&quot;:5.87},{&quot;2026-08-21&quot;:6.05},{&quot;2026-08-22&quot;:5.55},{&quot;2026-08-23&quot;:5.55},{&quot;2026-08-24&quot;:5.55},{&quot;2026-08-25&quot;:5.55},{&quot;2026-08-26&quot;:5.55},{&quot;2026-08-27&quot;:5.55},{&quot;2026-08-28&quot;:5.55},{&quot;2026-08-29&quot;:5.55},{&quot;2026-08-30&quot;:5.55},{&quot;2026-08-31&quot;:5.55},{&quot;2026-09-01&quot;:5.55},{&quot;2026-09-02&quot;:5.55},{&quot;2026-09-03&quot;:5.55},{&quot;2026-09-04&quot;:5.55},{&quot;2026-09-05&quot;:5.55},{&quot;2026-09-06&quot;:5.55},{&quot;2026-09-07&quot;:5.55},{&quot;2026-09-08&quot;:5.55},{&quot;2026-09-09&quot;:5.55},{&quot;2026-09-10&quot;:5.59},{&quot;2026-09-11&quot;:5.59}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:4.72},{&quot;2026-06-14&quot;:4.81},{&quot;2026-06-15&quot;:4.93},{&quot;2026-06-16&quot;:4.93},{&quot;2026-06-17&quot;:5.01},{&quot;2026-06-18&quot;:4.96},{&quot;2026-06-19&quot;:5.03},{&quot;2026-06-20&quot;:5.11},{&quot;2026-06-21&quot;:5.15},{&quot;2026-06-22&quot;:5.17},{&quot;2026-06-23&quot;:5.17},{&quot;2026-06-24&quot;:5.17},{&quot;2026-06-25&quot;:5.25},{&quot;2026-06-26&quot;:5.15},{&quot;2026-06-27&quot;:5.15},{&quot;2026-06-28&quot;:5.15},{&quot;2026-06-29&quot;:5.12},{&quot;2026-06-30&quot;:5.12},{&quot;2026-07-01&quot;:5.12},{&quot;2026-07-02&quot;:5.12},{&quot;2026-07-03&quot;:5.12},{&quot;2026-07-04&quot;:5.08},{&quot;2026-07-05&quot;:5.08},{&quot;2026-07-06&quot;:5.15},{&quot;2026-07-07&quot;:5.15},{&quot;2026-07-08&quot;:5.17},{&quot;2026-07-09&quot;:5.18},{&quot;2026-07-10&quot;:5.22},{&quot;2026-07-11&quot;:5.22},{&quot;2026-07-12&quot;:5.22},{&quot;2026-07-13&quot;:5.22},{&quot;2026-07-14&quot;:5.07},{&quot;2026-07-15&quot;:5.05},{&quot;2026-07-16&quot;:5.05},{&quot;2026-07-17&quot;:5.05},{&quot;2026-07-18&quot;:5.05},{&quot;2026-07-19&quot;:5.05},{&quot;2026-07-20&quot;:4.77},{&quot;2026-07-21&quot;:4.77},{&quot;2026-07-22&quot;:4.79},{&quot;2026-07-23&quot;:4.77},{&quot;2026-07-24&quot;:4.96},{&quot;2026-07-25&quot;:5.1},{&quot;2026-07-26&quot;:5.07},{&quot;2026-07-27&quot;:5.09},{&quot;2026-07-28&quot;:5.09},{&quot;2026-07-29&quot;:5.11},{&quot;2026-07-30&quot;:5.17},{&quot;2026-07-31&quot;:5.1},{&quot;2026-08-01&quot;:5.1},{&quot;2026-08-02&quot;:5.27},{&quot;2026-08-03&quot;:5.27},{&quot;2026-08-04&quot;:5.48},{&quot;2026-08-05&quot;:5.48},{&quot;2026-08-07&quot;:5.48},{&quot;2026-08-08&quot;:5.48},{&quot;2026-08-09&quot;:5.48},{&quot;2026-08-10&quot;:5.48},{&quot;2026-08-11&quot;:5.56},{&quot;2026-08-12&quot;:5.56},{&quot;2026-08-13&quot;:5.56},{&quot;2026-08-14&quot;:5.56},{&quot;2026-08-15&quot;:5.59},{&quot;2026-08-16&quot;:5.65},{&quot;2026-08-17&quot;:5.65},{&quot;2026-08-18&quot;:5.76},{&quot;2026-08-19&quot;:5.76},{&quot;2026-08-20&quot;:5.76},{&quot;2026-08-21&quot;:5.76},{&quot;2026-08-22&quot;:5.72},{&quot;2026-08-23&quot;:5.67},{&quot;2026-08-24&quot;:5.67},{&quot;2026-08-25&quot;:5.74},{&quot;2026-08-26&quot;:5.74},{&quot;2026-08-27&quot;:5.74},{&quot;2026-08-28&quot;:5.71},{&quot;2026-08-29&quot;:5.71},{&quot;2026-08-30&quot;:5.63},{&quot;2026-08-31&quot;:5.57},{&quot;2026-09-01&quot;:5.57},{&quot;2026-09-02&quot;:5.57},{&quot;2026-09-03&quot;:5.57},{&quot;2026-09-04&quot;:5.54},{&quot;2026-09-05&quot;:5.64},{&quot;2026-09-06&quot;:5.61},{&quot;2026-09-07&quot;:5.53},{&quot;2026-09-08&quot;:5.53},{&quot;2026-09-09&quot;:5.65},{&quot;2026-09-10&quot;:5.81},{&quot;2026-09-11&quot;:5.81}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Eiganjo, Seat of the Empire" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/3/c375a022-5b57-496d-a802-e4ea8376e9e4.jpg?1783923818" />

        <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">
            Eiganjo, Seat of the Empire
        </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="Eiganjo, Seat of the Empire" src="https://cards.scryfall.io/large/front/c/3/c375a022-5b57-496d-a802-e4ea8376e9e4.jpg?1783923818" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-11&quot;:6.02},{&quot;2026-06-12&quot;:6.02},{&quot;2026-06-13&quot;:6.05},{&quot;2026-06-14&quot;:5.99},{&quot;2026-06-15&quot;:5.99},{&quot;2026-06-16&quot;:5.84},{&quot;2026-06-17&quot;:5.84},{&quot;2026-06-18&quot;:5.82},{&quot;2026-06-19&quot;:5.82},{&quot;2026-06-20&quot;:5.86},{&quot;2026-06-21&quot;:5.77},{&quot;2026-06-22&quot;:5.69},{&quot;2026-06-23&quot;:5.65},{&quot;2026-06-24&quot;:5.67},{&quot;2026-06-25&quot;:5.67},{&quot;2026-06-26&quot;:5.72},{&quot;2026-06-27&quot;:5.72},{&quot;2026-06-28&quot;:5.72},{&quot;2026-06-29&quot;:5.87},{&quot;2026-06-30&quot;:5.87},{&quot;2026-07-01&quot;:5.83},{&quot;2026-07-02&quot;:5.82},{&quot;2026-07-03&quot;:5.8},{&quot;2026-07-04&quot;:5.8},{&quot;2026-07-05&quot;:5.8},{&quot;2026-07-06&quot;:5.8},{&quot;2026-07-07&quot;:5.87},{&quot;2026-07-08&quot;:5.9},{&quot;2026-07-09&quot;:5.97},{&quot;2026-07-10&quot;:5.83},{&quot;2026-07-11&quot;:5.83},{&quot;2026-07-12&quot;:5.83},{&quot;2026-07-13&quot;:5.83},{&quot;2026-07-14&quot;:5.83},{&quot;2026-07-15&quot;:5.84},{&quot;2026-07-16&quot;:5.84},{&quot;2026-07-17&quot;:5.83},{&quot;2026-07-18&quot;:5.73},{&quot;2026-07-19&quot;:5.64},{&quot;2026-07-20&quot;:5.56},{&quot;2026-07-21&quot;:5.56},{&quot;2026-07-23&quot;:5.56},{&quot;2026-07-25&quot;:5.56},{&quot;2026-07-26&quot;:5.56},{&quot;2026-07-27&quot;:5.63},{&quot;2026-07-28&quot;:5.63},{&quot;2026-07-29&quot;:5.65},{&quot;2026-07-30&quot;:5.57},{&quot;2026-07-31&quot;:5.56},{&quot;2026-08-01&quot;:5.56},{&quot;2026-08-02&quot;:5.52},{&quot;2026-08-03&quot;:5.5},{&quot;2026-08-04&quot;:5.5},{&quot;2026-08-05&quot;:5.5},{&quot;2026-08-07&quot;:5.39},{&quot;2026-08-08&quot;:5.4},{&quot;2026-08-09&quot;:5.4},{&quot;2026-08-10&quot;:5.46},{&quot;2026-08-11&quot;:5.46},{&quot;2026-08-12&quot;:5.44},{&quot;2026-08-13&quot;:5.47},{&quot;2026-08-14&quot;:5.5},{&quot;2026-08-15&quot;:5.51},{&quot;2026-08-16&quot;:5.51},{&quot;2026-08-17&quot;:5.51},{&quot;2026-08-18&quot;:5.51},{&quot;2026-08-19&quot;:5.51},{&quot;2026-08-20&quot;:5.51},{&quot;2026-08-21&quot;:5.49},{&quot;2026-08-22&quot;:5.49},{&quot;2026-08-23&quot;:5.56},{&quot;2026-08-24&quot;:5.58},{&quot;2026-08-25&quot;:5.58},{&quot;2026-08-26&quot;:5.59},{&quot;2026-08-27&quot;:5.59},{&quot;2026-08-28&quot;:5.59},{&quot;2026-08-29&quot;:5.59},{&quot;2026-08-30&quot;:5.62},{&quot;2026-08-31&quot;:5.62},{&quot;2026-09-01&quot;:5.62},{&quot;2026-09-02&quot;:5.6},{&quot;2026-09-03&quot;:5.6},{&quot;2026-09-04&quot;:5.6},{&quot;2026-09-05&quot;:5.6},{&quot;2026-09-06&quot;:5.6},{&quot;2026-09-07&quot;:5.6},{&quot;2026-09-08&quot;:5.6},{&quot;2026-09-09&quot;:5.63},{&quot;2026-09-10&quot;:5.68},{&quot;2026-09-11&quot;:5.72}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:6.27},{&quot;2026-06-12&quot;:6.57},{&quot;2026-06-13&quot;:6.45},{&quot;2026-06-14&quot;:6.43},{&quot;2026-06-15&quot;:6.64},{&quot;2026-06-16&quot;:6.43},{&quot;2026-06-17&quot;:7.0},{&quot;2026-06-18&quot;:7.04},{&quot;2026-06-19&quot;:6.83},{&quot;2026-06-20&quot;:6.74},{&quot;2026-06-21&quot;:6.58},{&quot;2026-06-22&quot;:6.25},{&quot;2026-06-23&quot;:6.25},{&quot;2026-06-24&quot;:5.84},{&quot;2026-06-25&quot;:5.66},{&quot;2026-06-26&quot;:5.51},{&quot;2026-06-27&quot;:5.37},{&quot;2026-06-28&quot;:5.24},{&quot;2026-06-29&quot;:5.11},{&quot;2026-06-30&quot;:5.25},{&quot;2026-07-01&quot;:5.34},{&quot;2026-07-02&quot;:5.18},{&quot;2026-07-03&quot;:5.29},{&quot;2026-07-04&quot;:5.26},{&quot;2026-07-05&quot;:5.33},{&quot;2026-07-06&quot;:5.41},{&quot;2026-07-07&quot;:5.38},{&quot;2026-07-08&quot;:5.42},{&quot;2026-07-09&quot;:5.37},{&quot;2026-07-10&quot;:5.49},{&quot;2026-07-11&quot;:5.44},{&quot;2026-07-12&quot;:5.4},{&quot;2026-07-13&quot;:5.4},{&quot;2026-07-14&quot;:5.28},{&quot;2026-07-15&quot;:5.24},{&quot;2026-07-16&quot;:5.26},{&quot;2026-07-17&quot;:5.25},{&quot;2026-07-18&quot;:5.17},{&quot;2026-07-19&quot;:5.18},{&quot;2026-07-20&quot;:5.13},{&quot;2026-07-21&quot;:5.12},{&quot;2026-07-23&quot;:5.03},{&quot;2026-07-25&quot;:5.17},{&quot;2026-07-26&quot;:5.12},{&quot;2026-07-27&quot;:5.23},{&quot;2026-07-28&quot;:5.31},{&quot;2026-07-29&quot;:5.17},{&quot;2026-07-30&quot;:5.08},{&quot;2026-07-31&quot;:4.75},{&quot;2026-08-01&quot;:4.74},{&quot;2026-08-02&quot;:4.73},{&quot;2026-08-03&quot;:4.82},{&quot;2026-08-04&quot;:5.15},{&quot;2026-08-05&quot;:5.17},{&quot;2026-08-07&quot;:5.14},{&quot;2026-08-08&quot;:5.13},{&quot;2026-08-09&quot;:5.14},{&quot;2026-08-10&quot;:5.16},{&quot;2026-08-11&quot;:5.15},{&quot;2026-08-12&quot;:5.14},{&quot;2026-08-13&quot;:5.05},{&quot;2026-08-14&quot;:5.04},{&quot;2026-08-15&quot;:5.03},{&quot;2026-08-16&quot;:5.19},{&quot;2026-08-17&quot;:5.16},{&quot;2026-08-18&quot;:5.28},{&quot;2026-08-19&quot;:5.39},{&quot;2026-08-20&quot;:5.39},{&quot;2026-08-21&quot;:5.77},{&quot;2026-08-22&quot;:5.8},{&quot;2026-08-23&quot;:5.85},{&quot;2026-08-24&quot;:5.83},{&quot;2026-08-25&quot;:5.83},{&quot;2026-08-26&quot;:5.41},{&quot;2026-08-27&quot;:5.32},{&quot;2026-08-28&quot;:5.38},{&quot;2026-08-29&quot;:5.38},{&quot;2026-08-30&quot;:5.48},{&quot;2026-08-31&quot;:5.48},{&quot;2026-09-01&quot;:5.48},{&quot;2026-09-02&quot;:5.54},{&quot;2026-09-03&quot;:5.47},{&quot;2026-09-04&quot;:5.38},{&quot;2026-09-05&quot;:5.31},{&quot;2026-09-06&quot;:5.34},{&quot;2026-09-07&quot;:5.25},{&quot;2026-09-08&quot;:5.35},{&quot;2026-09-09&quot;:5.55},{&quot;2026-09-10&quot;:5.52},{&quot;2026-09-11&quot;:5.51}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

        <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">
            Basilisk Collar
        </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 — Equipment</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Basilisk Collar" src="https://cards.scryfall.io/large/front/0/d/0d85fb76-2ae9-425b-9c5e-2c63471c9599.jpg?1783926175" />
    </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.46
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-12&quot;:3.9},{&quot;2026-06-13&quot;:4.03},{&quot;2026-06-14&quot;:4.02},{&quot;2026-06-15&quot;:4.02},{&quot;2026-06-16&quot;:3.94},{&quot;2026-06-17&quot;:3.98},{&quot;2026-06-18&quot;:3.99},{&quot;2026-06-19&quot;:4.05},{&quot;2026-06-20&quot;:4.08},{&quot;2026-06-21&quot;:4.08},{&quot;2026-06-22&quot;:4.06},{&quot;2026-06-23&quot;:4.07},{&quot;2026-06-24&quot;:4.1},{&quot;2026-06-25&quot;:4.07},{&quot;2026-06-26&quot;:4.2},{&quot;2026-06-27&quot;:4.18},{&quot;2026-06-28&quot;:4.2},{&quot;2026-06-29&quot;:4.24},{&quot;2026-06-30&quot;:4.62},{&quot;2026-07-01&quot;:4.62},{&quot;2026-07-02&quot;:4.65},{&quot;2026-07-03&quot;:4.77},{&quot;2026-07-04&quot;:4.84},{&quot;2026-07-05&quot;:5.05},{&quot;2026-07-06&quot;:5.15},{&quot;2026-07-07&quot;:5.22},{&quot;2026-07-08&quot;:5.22},{&quot;2026-07-09&quot;:5.22},{&quot;2026-07-10&quot;:5.22},{&quot;2026-07-11&quot;:5.19},{&quot;2026-07-12&quot;:5.25},{&quot;2026-07-13&quot;:5.3},{&quot;2026-07-14&quot;:5.3},{&quot;2026-07-15&quot;:5.43},{&quot;2026-07-16&quot;:5.39},{&quot;2026-07-17&quot;:5.22},{&quot;2026-07-18&quot;:5.28},{&quot;2026-07-19&quot;:5.26},{&quot;2026-07-20&quot;:5.19},{&quot;2026-07-21&quot;:5.18},{&quot;2026-07-23&quot;:5.37},{&quot;2026-07-24&quot;:5.37},{&quot;2026-07-25&quot;:5.41},{&quot;2026-07-26&quot;:5.42},{&quot;2026-07-27&quot;:5.54},{&quot;2026-07-28&quot;:5.97},{&quot;2026-07-29&quot;:5.97},{&quot;2026-07-30&quot;:6.07},{&quot;2026-07-31&quot;:6.05},{&quot;2026-08-01&quot;:6.07},{&quot;2026-08-02&quot;:6.07},{&quot;2026-08-03&quot;:6.12},{&quot;2026-08-04&quot;:6.12},{&quot;2026-08-05&quot;:6.05},{&quot;2026-08-07&quot;:6.06},{&quot;2026-08-08&quot;:5.98},{&quot;2026-08-09&quot;:6.18},{&quot;2026-08-10&quot;:6.16},{&quot;2026-08-11&quot;:6.16},{&quot;2026-08-12&quot;:6.09},{&quot;2026-08-13&quot;:6.03},{&quot;2026-08-14&quot;:6.03},{&quot;2026-08-15&quot;:5.98},{&quot;2026-08-16&quot;:5.98},{&quot;2026-08-17&quot;:5.86},{&quot;2026-08-18&quot;:5.82},{&quot;2026-08-19&quot;:5.82},{&quot;2026-08-20&quot;:5.82},{&quot;2026-08-21&quot;:5.86},{&quot;2026-08-22&quot;:5.89},{&quot;2026-08-23&quot;:5.89},{&quot;2026-08-24&quot;:5.95},{&quot;2026-08-25&quot;:5.87},{&quot;2026-08-26&quot;:5.7},{&quot;2026-08-27&quot;:5.7},{&quot;2026-08-28&quot;:5.7},{&quot;2026-08-29&quot;:5.7},{&quot;2026-08-30&quot;:5.62},{&quot;2026-08-31&quot;:5.43},{&quot;2026-09-01&quot;:5.43},{&quot;2026-09-02&quot;:5.43},{&quot;2026-09-03&quot;:5.43},{&quot;2026-09-04&quot;:5.43},{&quot;2026-09-05&quot;:5.54},{&quot;2026-09-06&quot;:5.46},{&quot;2026-09-07&quot;:5.46},{&quot;2026-09-08&quot;:5.61},{&quot;2026-09-09&quot;:5.46},{&quot;2026-09-10&quot;:5.46},{&quot;2026-09-11&quot;:5.46}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="72268"
  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">
            Loran of the Third Path
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $4.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="Loran of the Third Path" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/5/9/59faa45d-868b-4bc7-934c-0e077642e129.jpg?1783920128" />

        <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">
            Loran of the Third Path
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Legendary Creature — Human Artificer</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="Loran of the Third Path" src="https://cards.scryfall.io/large/front/5/9/59faa45d-868b-4bc7-934c-0e077642e129.jpg?1783920128" />
    </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.65
              </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.63
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:4.23},{&quot;2026-06-14&quot;:4.23},{&quot;2026-06-15&quot;:4.34},{&quot;2026-06-16&quot;:4.3},{&quot;2026-06-17&quot;:4.3},{&quot;2026-06-18&quot;:4.3},{&quot;2026-06-19&quot;:4.3},{&quot;2026-06-20&quot;:4.3},{&quot;2026-06-21&quot;:4.3},{&quot;2026-06-22&quot;:4.3},{&quot;2026-06-23&quot;:4.3},{&quot;2026-06-24&quot;:4.3},{&quot;2026-06-25&quot;:4.3},{&quot;2026-06-26&quot;:4.3},{&quot;2026-06-27&quot;:4.31},{&quot;2026-06-28&quot;:4.31},{&quot;2026-06-29&quot;:4.3},{&quot;2026-06-30&quot;:4.37},{&quot;2026-07-01&quot;:4.37},{&quot;2026-07-02&quot;:4.37},{&quot;2026-07-03&quot;:4.37},{&quot;2026-07-04&quot;:4.78},{&quot;2026-07-05&quot;:4.78},{&quot;2026-07-06&quot;:4.81},{&quot;2026-07-07&quot;:4.81},{&quot;2026-07-08&quot;:4.82},{&quot;2026-07-09&quot;:4.7},{&quot;2026-07-10&quot;:4.7},{&quot;2026-07-11&quot;:4.74},{&quot;2026-07-12&quot;:4.74},{&quot;2026-07-13&quot;:4.91},{&quot;2026-07-14&quot;:4.95},{&quot;2026-07-15&quot;:4.94},{&quot;2026-07-16&quot;:4.94},{&quot;2026-07-17&quot;:5.09},{&quot;2026-07-18&quot;:5.09},{&quot;2026-07-19&quot;:5.14},{&quot;2026-07-20&quot;:5.12},{&quot;2026-07-21&quot;:5.12},{&quot;2026-07-22&quot;:5.12},{&quot;2026-07-23&quot;:5.12},{&quot;2026-07-24&quot;:5.26},{&quot;2026-07-25&quot;:5.26},{&quot;2026-07-26&quot;:5.11},{&quot;2026-07-27&quot;:5.14},{&quot;2026-07-28&quot;:5.17},{&quot;2026-07-29&quot;:5.26},{&quot;2026-07-30&quot;:5.28},{&quot;2026-07-31&quot;:5.09},{&quot;2026-08-01&quot;:5.09},{&quot;2026-08-02&quot;:5.09},{&quot;2026-08-03&quot;:5.11},{&quot;2026-08-04&quot;:5.26},{&quot;2026-08-05&quot;:5.44},{&quot;2026-08-07&quot;:5.45},{&quot;2026-08-08&quot;:5.52},{&quot;2026-08-09&quot;:5.52},{&quot;2026-08-10&quot;:5.69},{&quot;2026-08-11&quot;:5.69},{&quot;2026-08-12&quot;:6.03},{&quot;2026-08-13&quot;:6.03},{&quot;2026-08-14&quot;:6.14},{&quot;2026-08-15&quot;:6.32},{&quot;2026-08-16&quot;:6.26},{&quot;2026-08-17&quot;:6.26},{&quot;2026-08-18&quot;:6.34},{&quot;2026-08-19&quot;:6.31},{&quot;2026-08-20&quot;:6.54},{&quot;2026-08-21&quot;:6.57},{&quot;2026-08-22&quot;:6.57},{&quot;2026-08-23&quot;:6.57},{&quot;2026-08-24&quot;:6.57},{&quot;2026-08-25&quot;:6.51},{&quot;2026-08-26&quot;:6.51},{&quot;2026-08-27&quot;:6.52},{&quot;2026-08-28&quot;:6.5},{&quot;2026-08-29&quot;:6.5},{&quot;2026-08-30&quot;:6.5},{&quot;2026-08-31&quot;:6.53},{&quot;2026-09-01&quot;:6.58},{&quot;2026-09-02&quot;:6.58},{&quot;2026-09-03&quot;:6.56},{&quot;2026-09-04&quot;:6.56},{&quot;2026-09-05&quot;:6.56},{&quot;2026-09-06&quot;:6.56},{&quot;2026-09-07&quot;:6.56},{&quot;2026-09-08&quot;:6.68},{&quot;2026-09-09&quot;:6.68},{&quot;2026-09-10&quot;:6.68},{&quot;2026-09-11&quot;:6.63}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:3.63},{&quot;2026-06-14&quot;:3.73},{&quot;2026-06-15&quot;:3.73},{&quot;2026-06-16&quot;:3.72},{&quot;2026-06-17&quot;:3.61},{&quot;2026-06-18&quot;:3.66},{&quot;2026-06-19&quot;:3.76},{&quot;2026-06-20&quot;:3.76},{&quot;2026-06-21&quot;:3.75},{&quot;2026-06-22&quot;:3.76},{&quot;2026-06-23&quot;:3.7},{&quot;2026-06-24&quot;:3.69},{&quot;2026-06-25&quot;:3.58},{&quot;2026-06-26&quot;:3.83},{&quot;2026-06-27&quot;:3.82},{&quot;2026-06-28&quot;:3.89},{&quot;2026-06-29&quot;:3.9},{&quot;2026-06-30&quot;:4.06},{&quot;2026-07-01&quot;:4.35},{&quot;2026-07-02&quot;:4.6},{&quot;2026-07-03&quot;:4.65},{&quot;2026-07-04&quot;:4.75},{&quot;2026-07-05&quot;:4.53},{&quot;2026-07-06&quot;:4.53},{&quot;2026-07-07&quot;:4.43},{&quot;2026-07-08&quot;:4.44},{&quot;2026-07-09&quot;:4.52},{&quot;2026-07-10&quot;:4.44},{&quot;2026-07-11&quot;:4.44},{&quot;2026-07-12&quot;:4.53},{&quot;2026-07-13&quot;:4.36},{&quot;2026-07-14&quot;:4.28},{&quot;2026-07-15&quot;:4.69},{&quot;2026-07-16&quot;:4.99},{&quot;2026-07-17&quot;:5.09},{&quot;2026-07-18&quot;:5.1},{&quot;2026-07-19&quot;:5.27},{&quot;2026-07-20&quot;:5.21},{&quot;2026-07-21&quot;:5.21},{&quot;2026-07-22&quot;:5.1},{&quot;2026-07-23&quot;:5.1},{&quot;2026-07-24&quot;:5.1},{&quot;2026-07-25&quot;:5.02},{&quot;2026-07-26&quot;:5.05},{&quot;2026-07-27&quot;:5.08},{&quot;2026-07-28&quot;:5.03},{&quot;2026-07-29&quot;:4.9},{&quot;2026-07-30&quot;:4.94},{&quot;2026-07-31&quot;:5.39},{&quot;2026-08-01&quot;:5.31},{&quot;2026-08-02&quot;:5.27},{&quot;2026-08-03&quot;:5.21},{&quot;2026-08-04&quot;:5.4},{&quot;2026-08-05&quot;:5.27},{&quot;2026-08-07&quot;:4.95},{&quot;2026-08-08&quot;:5.0},{&quot;2026-08-09&quot;:5.17},{&quot;2026-08-10&quot;:5.01},{&quot;2026-08-11&quot;:4.93},{&quot;2026-08-12&quot;:4.84},{&quot;2026-08-13&quot;:4.99},{&quot;2026-08-14&quot;:4.76},{&quot;2026-08-15&quot;:4.62},{&quot;2026-08-16&quot;:4.65},{&quot;2026-08-17&quot;:4.82},{&quot;2026-08-18&quot;:4.84},{&quot;2026-08-19&quot;:4.75},{&quot;2026-08-20&quot;:4.75},{&quot;2026-08-21&quot;:4.58},{&quot;2026-08-22&quot;:4.62},{&quot;2026-08-23&quot;:4.9},{&quot;2026-08-24&quot;:5.25},{&quot;2026-08-25&quot;:5.47},{&quot;2026-08-26&quot;:5.43},{&quot;2026-08-27&quot;:5.49},{&quot;2026-08-28&quot;:5.29},{&quot;2026-08-29&quot;:5.29},{&quot;2026-08-30&quot;:5.26},{&quot;2026-08-31&quot;:5.14},{&quot;2026-09-01&quot;:4.86},{&quot;2026-09-02&quot;:4.95},{&quot;2026-09-03&quot;:4.87},{&quot;2026-09-04&quot;:4.75},{&quot;2026-09-05&quot;:4.64},{&quot;2026-09-06&quot;:4.62},{&quot;2026-09-07&quot;:4.69},{&quot;2026-09-08&quot;:4.59},{&quot;2026-09-09&quot;:4.65},{&quot;2026-09-10&quot;:4.69},{&quot;2026-09-11&quot;:4.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="43516"
  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">
            Reliquary Tower
        </span>


      </div>

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

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

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

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

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

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

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

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

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            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="Reliquary Tower" src="https://cards.scryfall.io/large/front/d/2/d27b6a46-f9be-437a-a13c-ad8077ac0127.jpg?1783930798" />
    </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">
                $4.25
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:3.74},{&quot;2026-06-14&quot;:3.74},{&quot;2026-06-15&quot;:3.85},{&quot;2026-06-16&quot;:3.75},{&quot;2026-06-17&quot;:3.75},{&quot;2026-06-18&quot;:3.78},{&quot;2026-06-19&quot;:3.66},{&quot;2026-06-20&quot;:3.58},{&quot;2026-06-21&quot;:3.49},{&quot;2026-06-22&quot;:3.18},{&quot;2026-06-23&quot;:3.12},{&quot;2026-06-24&quot;:3.17},{&quot;2026-06-25&quot;:3.17},{&quot;2026-06-26&quot;:3.19},{&quot;2026-06-27&quot;:3.19},{&quot;2026-06-28&quot;:3.19},{&quot;2026-06-29&quot;:3.18},{&quot;2026-06-30&quot;:3.4},{&quot;2026-07-01&quot;:3.41},{&quot;2026-07-02&quot;:3.5},{&quot;2026-07-03&quot;:3.56},{&quot;2026-07-04&quot;:3.6},{&quot;2026-07-05&quot;:3.71},{&quot;2026-07-06&quot;:3.71},{&quot;2026-07-07&quot;:3.71},{&quot;2026-07-08&quot;:3.71},{&quot;2026-07-09&quot;:3.68},{&quot;2026-07-10&quot;:3.65},{&quot;2026-07-11&quot;:3.65},{&quot;2026-07-12&quot;:3.66},{&quot;2026-07-13&quot;:4.04},{&quot;2026-07-14&quot;:3.99},{&quot;2026-07-15&quot;:3.98},{&quot;2026-07-16&quot;:3.97},{&quot;2026-07-17&quot;:3.94},{&quot;2026-07-18&quot;:3.96},{&quot;2026-07-19&quot;:3.94},{&quot;2026-07-20&quot;:3.99},{&quot;2026-07-21&quot;:4.06},{&quot;2026-07-22&quot;:4.1},{&quot;2026-07-23&quot;:3.78},{&quot;2026-07-24&quot;:3.77},{&quot;2026-07-25&quot;:3.8},{&quot;2026-07-26&quot;:3.8},{&quot;2026-07-27&quot;:3.82},{&quot;2026-07-28&quot;:3.82},{&quot;2026-07-29&quot;:3.88},{&quot;2026-07-30&quot;:3.88},{&quot;2026-07-31&quot;:4.13},{&quot;2026-08-01&quot;:4.15},{&quot;2026-08-02&quot;:4.23},{&quot;2026-08-03&quot;:4.24},{&quot;2026-08-04&quot;:4.21},{&quot;2026-08-05&quot;:4.27},{&quot;2026-08-07&quot;:4.27},{&quot;2026-08-08&quot;:4.13},{&quot;2026-08-09&quot;:4.12},{&quot;2026-08-10&quot;:4.03},{&quot;2026-08-11&quot;:4.08},{&quot;2026-08-12&quot;:4.08},{&quot;2026-08-13&quot;:4.04},{&quot;2026-08-14&quot;:3.92},{&quot;2026-08-15&quot;:3.96},{&quot;2026-08-16&quot;:4.03},{&quot;2026-08-17&quot;:4.04},{&quot;2026-08-18&quot;:4.05},{&quot;2026-08-19&quot;:4.13},{&quot;2026-08-20&quot;:4.13},{&quot;2026-08-21&quot;:4.23},{&quot;2026-08-22&quot;:4.23},{&quot;2026-08-23&quot;:4.35},{&quot;2026-08-24&quot;:4.37},{&quot;2026-08-25&quot;:4.37},{&quot;2026-08-26&quot;:4.37},{&quot;2026-08-27&quot;:4.36},{&quot;2026-08-28&quot;:4.36},{&quot;2026-08-29&quot;:4.36},{&quot;2026-08-30&quot;:4.15},{&quot;2026-08-31&quot;:3.96},{&quot;2026-09-01&quot;:3.97},{&quot;2026-09-02&quot;:4.14},{&quot;2026-09-03&quot;:3.98},{&quot;2026-09-04&quot;:4.09},{&quot;2026-09-05&quot;:4.03},{&quot;2026-09-06&quot;:4.15},{&quot;2026-09-07&quot;:4.3},{&quot;2026-09-08&quot;:4.2},{&quot;2026-09-09&quot;:4.2},{&quot;2026-09-10&quot;:4.25},{&quot;2026-09-11&quot;:4.25}],&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="11420"
  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">
            Armored Skyhunter
        </span>


      </div>

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

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

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

        <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">
            Armored Skyhunter
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Creature — Cat Knight</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="Armored Skyhunter" src="https://cards.scryfall.io/large/front/2/b/2bf63241-9091-42f5-b997-9ce5aa3484f1.jpg?1783928889" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-08&quot;:4.34},{&quot;2026-06-10&quot;:4.34},{&quot;2026-06-11&quot;:4.34},{&quot;2026-06-12&quot;:4.34},{&quot;2026-06-13&quot;:4.34},{&quot;2026-06-14&quot;:4.34},{&quot;2026-06-15&quot;:4.34},{&quot;2026-06-16&quot;:4.34},{&quot;2026-06-17&quot;:4.34},{&quot;2026-06-18&quot;:4.34},{&quot;2026-06-19&quot;:4.34},{&quot;2026-06-20&quot;:4.34},{&quot;2026-06-21&quot;:4.34},{&quot;2026-06-22&quot;:4.34},{&quot;2026-06-24&quot;:4.34},{&quot;2026-06-25&quot;:4.34},{&quot;2026-06-26&quot;:4.34},{&quot;2026-06-27&quot;:4.34},{&quot;2026-06-28&quot;:4.34},{&quot;2026-06-29&quot;:4.34},{&quot;2026-06-30&quot;:4.34},{&quot;2026-07-01&quot;:4.34},{&quot;2026-07-02&quot;:4.34},{&quot;2026-07-03&quot;:4.34},{&quot;2026-07-04&quot;:4.32},{&quot;2026-07-05&quot;:4.32},{&quot;2026-07-06&quot;:4.32},{&quot;2026-07-07&quot;:4.32},{&quot;2026-07-08&quot;:4.32},{&quot;2026-07-09&quot;:4.32},{&quot;2026-07-10&quot;:4.32},{&quot;2026-07-11&quot;:4.35},{&quot;2026-07-12&quot;:4.35},{&quot;2026-07-13&quot;:4.35},{&quot;2026-07-14&quot;:4.35},{&quot;2026-07-15&quot;:4.29},{&quot;2026-07-16&quot;:4.29},{&quot;2026-07-17&quot;:4.29},{&quot;2026-07-18&quot;:4.24},{&quot;2026-07-19&quot;:4.19},{&quot;2026-07-20&quot;:4.19},{&quot;2026-07-21&quot;:4.19},{&quot;2026-07-23&quot;:4.19},{&quot;2026-07-25&quot;:4.19},{&quot;2026-07-26&quot;:4.19},{&quot;2026-07-27&quot;:4.19},{&quot;2026-07-29&quot;:4.19},{&quot;2026-07-30&quot;:4.19},{&quot;2026-07-31&quot;:4.19},{&quot;2026-08-01&quot;:4.19},{&quot;2026-08-02&quot;:4.19},{&quot;2026-08-03&quot;:4.14},{&quot;2026-08-04&quot;:4.14},{&quot;2026-08-05&quot;:4.09},{&quot;2026-08-07&quot;:4.09},{&quot;2026-08-08&quot;:4.09},{&quot;2026-08-09&quot;:4.09},{&quot;2026-08-10&quot;:4.09},{&quot;2026-08-11&quot;:4.09},{&quot;2026-08-12&quot;:4.04},{&quot;2026-08-13&quot;:4.04},{&quot;2026-08-14&quot;:4.04},{&quot;2026-08-15&quot;:4.04},{&quot;2026-08-16&quot;:4.04},{&quot;2026-08-17&quot;:4.04},{&quot;2026-08-18&quot;:4.04},{&quot;2026-08-19&quot;:4.04},{&quot;2026-08-20&quot;:4.04},{&quot;2026-08-21&quot;:4.01},{&quot;2026-08-22&quot;:4.01},{&quot;2026-08-23&quot;:4.04},{&quot;2026-08-24&quot;:4.04},{&quot;2026-08-25&quot;:4.04},{&quot;2026-08-26&quot;:4.01},{&quot;2026-08-27&quot;:4.01},{&quot;2026-08-28&quot;:4.01},{&quot;2026-08-29&quot;:4.01},{&quot;2026-08-30&quot;:4.01},{&quot;2026-08-31&quot;:4.01},{&quot;2026-09-01&quot;:4.01},{&quot;2026-09-02&quot;:4.01},{&quot;2026-09-03&quot;:4.01},{&quot;2026-09-04&quot;:4.01},{&quot;2026-09-05&quot;:3.97},{&quot;2026-09-06&quot;:3.97},{&quot;2026-09-07&quot;:3.97},{&quot;2026-09-08&quot;:3.97},{&quot;2026-09-09&quot;:3.97},{&quot;2026-09-10&quot;:3.96},{&quot;2026-09-11&quot;:3.96}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:2.07},{&quot;2026-06-10&quot;:2.01},{&quot;2026-06-11&quot;:2.01},{&quot;2026-06-12&quot;:1.92},{&quot;2026-06-13&quot;:1.92},{&quot;2026-06-14&quot;:1.9},{&quot;2026-06-15&quot;:1.9},{&quot;2026-06-16&quot;:2.01},{&quot;2026-06-17&quot;:2.07},{&quot;2026-06-18&quot;:1.98},{&quot;2026-06-19&quot;:1.89},{&quot;2026-06-20&quot;:1.96},{&quot;2026-06-21&quot;:1.93},{&quot;2026-06-22&quot;:1.93},{&quot;2026-06-24&quot;:1.86},{&quot;2026-06-25&quot;:1.86},{&quot;2026-06-26&quot;:1.71},{&quot;2026-06-27&quot;:1.71},{&quot;2026-06-28&quot;:1.68},{&quot;2026-06-29&quot;:1.59},{&quot;2026-06-30&quot;:1.56},{&quot;2026-07-01&quot;:1.52},{&quot;2026-07-02&quot;:1.51},{&quot;2026-07-03&quot;:1.43},{&quot;2026-07-04&quot;:1.44},{&quot;2026-07-05&quot;:1.41},{&quot;2026-07-06&quot;:1.42},{&quot;2026-07-07&quot;:1.44},{&quot;2026-07-08&quot;:1.47},{&quot;2026-07-09&quot;:1.48},{&quot;2026-07-10&quot;:1.42},{&quot;2026-07-11&quot;:1.46},{&quot;2026-07-12&quot;:1.42},{&quot;2026-07-13&quot;:1.32},{&quot;2026-07-14&quot;:1.3},{&quot;2026-07-15&quot;:1.29},{&quot;2026-07-16&quot;:1.3},{&quot;2026-07-17&quot;:1.36},{&quot;2026-07-18&quot;:1.36},{&quot;2026-07-19&quot;:1.36},{&quot;2026-07-20&quot;:1.42},{&quot;2026-07-21&quot;:1.47},{&quot;2026-07-23&quot;:1.43},{&quot;2026-07-25&quot;:1.41},{&quot;2026-07-26&quot;:1.41},{&quot;2026-07-27&quot;:1.4},{&quot;2026-07-29&quot;:1.29},{&quot;2026-07-30&quot;:1.17},{&quot;2026-07-31&quot;:1.18},{&quot;2026-08-01&quot;:1.29},{&quot;2026-08-02&quot;:1.28},{&quot;2026-08-03&quot;:1.33},{&quot;2026-08-04&quot;:1.33},{&quot;2026-08-05&quot;:1.36},{&quot;2026-08-07&quot;:1.36},{&quot;2026-08-08&quot;:1.36},{&quot;2026-08-09&quot;:1.36},{&quot;2026-08-10&quot;:1.36},{&quot;2026-08-11&quot;:1.45},{&quot;2026-08-12&quot;:1.43},{&quot;2026-08-13&quot;:1.48},{&quot;2026-08-14&quot;:1.48},{&quot;2026-08-15&quot;:1.47},{&quot;2026-08-16&quot;:1.46},{&quot;2026-08-17&quot;:1.57},{&quot;2026-08-18&quot;:1.64},{&quot;2026-08-19&quot;:1.57},{&quot;2026-08-20&quot;:1.57},{&quot;2026-08-21&quot;:1.7},{&quot;2026-08-22&quot;:1.7},{&quot;2026-08-23&quot;:1.7},{&quot;2026-08-24&quot;:1.59},{&quot;2026-08-25&quot;:1.59},{&quot;2026-08-26&quot;:1.61},{&quot;2026-08-27&quot;:1.71},{&quot;2026-08-28&quot;:1.86},{&quot;2026-08-29&quot;:1.86},{&quot;2026-08-30&quot;:1.89},{&quot;2026-08-31&quot;:1.95},{&quot;2026-09-01&quot;:1.95},{&quot;2026-09-02&quot;:2.01},{&quot;2026-09-03&quot;:2.01},{&quot;2026-09-04&quot;:2.0},{&quot;2026-09-05&quot;:2.0},{&quot;2026-09-06&quot;:2.01},{&quot;2026-09-07&quot;:2.01},{&quot;2026-09-08&quot;:1.98},{&quot;2026-09-09&quot;:1.94},{&quot;2026-09-10&quot;:1.82},{&quot;2026-09-11&quot;:1.82}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="11490"
  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">
            Open the Armory
        </span>


      </div>

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

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

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-50 text-badge-text">
              ↑
              1%
            </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="Open the Armory" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/6/d/6db45698-9da9-4cea-b9bf-0f84ab276b51.jpg?1783928877" />

        <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">
            Open the Armory
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Open the Armory" src="https://cards.scryfall.io/large/front/6/d/6db45698-9da9-4cea-b9bf-0f84ab276b51.jpg?1783928877" />
    </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.20
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:3.95},{&quot;2026-06-14&quot;:3.95},{&quot;2026-06-15&quot;:4.03},{&quot;2026-06-16&quot;:4.03},{&quot;2026-06-17&quot;:4.03},{&quot;2026-06-18&quot;:4.04},{&quot;2026-06-19&quot;:3.97},{&quot;2026-06-20&quot;:3.97},{&quot;2026-06-21&quot;:3.83},{&quot;2026-06-22&quot;:3.94},{&quot;2026-06-23&quot;:4.03},{&quot;2026-06-24&quot;:4.03},{&quot;2026-06-25&quot;:4.11},{&quot;2026-06-26&quot;:4.11},{&quot;2026-06-27&quot;:4.11},{&quot;2026-06-28&quot;:4.11},{&quot;2026-06-29&quot;:4.11},{&quot;2026-06-30&quot;:4.15},{&quot;2026-07-01&quot;:4.13},{&quot;2026-07-02&quot;:4.13},{&quot;2026-07-03&quot;:4.13},{&quot;2026-07-04&quot;:4.13},{&quot;2026-07-05&quot;:4.13},{&quot;2026-07-06&quot;:4.13},{&quot;2026-07-07&quot;:4.13},{&quot;2026-07-08&quot;:4.13},{&quot;2026-07-09&quot;:4.13},{&quot;2026-07-10&quot;:4.15},{&quot;2026-07-11&quot;:4.17},{&quot;2026-07-12&quot;:4.39},{&quot;2026-07-13&quot;:4.39},{&quot;2026-07-14&quot;:4.39},{&quot;2026-07-15&quot;:4.39},{&quot;2026-07-16&quot;:4.39},{&quot;2026-07-17&quot;:4.39},{&quot;2026-07-18&quot;:4.39},{&quot;2026-07-19&quot;:4.43},{&quot;2026-07-20&quot;:4.43},{&quot;2026-07-21&quot;:4.43},{&quot;2026-07-22&quot;:4.45},{&quot;2026-07-23&quot;:4.45},{&quot;2026-07-24&quot;:4.45},{&quot;2026-07-25&quot;:4.45},{&quot;2026-07-26&quot;:4.48},{&quot;2026-07-27&quot;:4.51},{&quot;2026-07-28&quot;:4.61},{&quot;2026-07-29&quot;:4.61},{&quot;2026-07-30&quot;:4.61},{&quot;2026-07-31&quot;:4.63},{&quot;2026-08-01&quot;:4.63},{&quot;2026-08-02&quot;:4.63},{&quot;2026-08-03&quot;:4.63},{&quot;2026-08-04&quot;:4.63},{&quot;2026-08-05&quot;:4.63},{&quot;2026-08-07&quot;:4.63},{&quot;2026-08-08&quot;:4.63},{&quot;2026-08-09&quot;:4.63},{&quot;2026-08-10&quot;:4.59},{&quot;2026-08-11&quot;:4.62},{&quot;2026-08-12&quot;:4.62},{&quot;2026-08-13&quot;:4.56},{&quot;2026-08-14&quot;:4.76},{&quot;2026-08-15&quot;:4.76},{&quot;2026-08-16&quot;:4.76},{&quot;2026-08-17&quot;:4.76},{&quot;2026-08-18&quot;:4.76},{&quot;2026-08-19&quot;:4.76},{&quot;2026-08-20&quot;:4.79},{&quot;2026-08-21&quot;:4.79},{&quot;2026-08-22&quot;:4.79},{&quot;2026-08-23&quot;:4.76},{&quot;2026-08-24&quot;:4.81},{&quot;2026-08-25&quot;:4.76},{&quot;2026-08-26&quot;:4.71},{&quot;2026-08-27&quot;:4.71},{&quot;2026-08-28&quot;:4.71},{&quot;2026-08-29&quot;:4.71},{&quot;2026-08-30&quot;:4.66},{&quot;2026-08-31&quot;:4.66},{&quot;2026-09-01&quot;:4.66},{&quot;2026-09-02&quot;:5.38},{&quot;2026-09-03&quot;:5.38},{&quot;2026-09-04&quot;:5.38},{&quot;2026-09-05&quot;:5.38},{&quot;2026-09-06&quot;:5.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.37},{&quot;2026-09-11&quot;:5.37}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:2.87},{&quot;2026-06-14&quot;:2.83},{&quot;2026-06-15&quot;:2.85},{&quot;2026-06-16&quot;:2.79},{&quot;2026-06-17&quot;:2.75},{&quot;2026-06-18&quot;:2.73},{&quot;2026-06-19&quot;:2.77},{&quot;2026-06-20&quot;:2.87},{&quot;2026-06-21&quot;:2.83},{&quot;2026-06-22&quot;:2.79},{&quot;2026-06-23&quot;:2.86},{&quot;2026-06-24&quot;:2.9},{&quot;2026-06-25&quot;:2.92},{&quot;2026-06-26&quot;:2.93},{&quot;2026-06-27&quot;:2.85},{&quot;2026-06-28&quot;:2.87},{&quot;2026-06-29&quot;:2.84},{&quot;2026-06-30&quot;:2.84},{&quot;2026-07-01&quot;:2.64},{&quot;2026-07-02&quot;:2.82},{&quot;2026-07-03&quot;:2.86},{&quot;2026-07-04&quot;:2.91},{&quot;2026-07-05&quot;:2.58},{&quot;2026-07-06&quot;:2.44},{&quot;2026-07-07&quot;:2.46},{&quot;2026-07-08&quot;:2.67},{&quot;2026-07-09&quot;:2.75},{&quot;2026-07-10&quot;:2.73},{&quot;2026-07-11&quot;:2.79},{&quot;2026-07-12&quot;:2.8},{&quot;2026-07-13&quot;:2.78},{&quot;2026-07-14&quot;:2.78},{&quot;2026-07-15&quot;:2.74},{&quot;2026-07-16&quot;:2.81},{&quot;2026-07-17&quot;:2.67},{&quot;2026-07-18&quot;:2.63},{&quot;2026-07-19&quot;:2.43},{&quot;2026-07-20&quot;:2.45},{&quot;2026-07-21&quot;:2.68},{&quot;2026-07-22&quot;:2.64},{&quot;2026-07-23&quot;:2.73},{&quot;2026-07-24&quot;:2.73},{&quot;2026-07-25&quot;:2.82},{&quot;2026-07-26&quot;:2.85},{&quot;2026-07-27&quot;:2.84},{&quot;2026-07-28&quot;:2.72},{&quot;2026-07-29&quot;:2.76},{&quot;2026-07-30&quot;:2.66},{&quot;2026-07-31&quot;:2.52},{&quot;2026-08-01&quot;:2.41},{&quot;2026-08-02&quot;:2.38},{&quot;2026-08-03&quot;:2.38},{&quot;2026-08-04&quot;:2.43},{&quot;2026-08-05&quot;:2.61},{&quot;2026-08-07&quot;:2.69},{&quot;2026-08-08&quot;:2.76},{&quot;2026-08-09&quot;:2.86},{&quot;2026-08-10&quot;:2.79},{&quot;2026-08-11&quot;:2.8},{&quot;2026-08-12&quot;:2.71},{&quot;2026-08-13&quot;:2.81},{&quot;2026-08-14&quot;:2.87},{&quot;2026-08-15&quot;:2.87},{&quot;2026-08-16&quot;:2.91},{&quot;2026-08-17&quot;:2.97},{&quot;2026-08-18&quot;:2.84},{&quot;2026-08-19&quot;:3.01},{&quot;2026-08-20&quot;:3.11},{&quot;2026-08-21&quot;:3.16},{&quot;2026-08-22&quot;:3.34},{&quot;2026-08-23&quot;:3.13},{&quot;2026-08-24&quot;:3.1},{&quot;2026-08-25&quot;:3.16},{&quot;2026-08-26&quot;:3.04},{&quot;2026-08-27&quot;:3.23},{&quot;2026-08-28&quot;:3.23},{&quot;2026-08-29&quot;:3.23},{&quot;2026-08-30&quot;:3.28},{&quot;2026-08-31&quot;:3.3},{&quot;2026-09-01&quot;:3.4},{&quot;2026-09-02&quot;:3.37},{&quot;2026-09-03&quot;:3.24},{&quot;2026-09-04&quot;:3.18},{&quot;2026-09-05&quot;:3.18},{&quot;2026-09-06&quot;:3.26},{&quot;2026-09-07&quot;:3.2},{&quot;2026-09-08&quot;:3.16},{&quot;2026-09-09&quot;:3.25},{&quot;2026-09-10&quot;:3.3},{&quot;2026-09-11&quot;:3.2}]}"
        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="12750"
  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">
            Blackblade Reforged
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Blackblade Reforged
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Blackblade Reforged" src="https://cards.scryfall.io/large/front/2/f/2f192c3e-34ce-4857-82ef-a0423823220d.jpg?1783928693" />
    </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.12
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:3.13},{&quot;2026-06-14&quot;:3.13},{&quot;2026-06-15&quot;:3.12},{&quot;2026-06-16&quot;:3.1},{&quot;2026-06-17&quot;:3.07},{&quot;2026-06-18&quot;:3.09},{&quot;2026-06-19&quot;:3.06},{&quot;2026-06-20&quot;:3.06},{&quot;2026-06-21&quot;:3.06},{&quot;2026-06-22&quot;:3.06},{&quot;2026-06-23&quot;:3.03},{&quot;2026-06-24&quot;:3.02},{&quot;2026-06-25&quot;:3.04},{&quot;2026-06-26&quot;:2.94},{&quot;2026-06-27&quot;:2.98},{&quot;2026-06-28&quot;:2.95},{&quot;2026-06-29&quot;:2.97},{&quot;2026-06-30&quot;:2.92},{&quot;2026-07-01&quot;:2.96},{&quot;2026-07-02&quot;:2.94},{&quot;2026-07-03&quot;:2.92},{&quot;2026-07-04&quot;:2.91},{&quot;2026-07-05&quot;:2.92},{&quot;2026-07-06&quot;:2.9},{&quot;2026-07-07&quot;:2.92},{&quot;2026-07-08&quot;:2.92},{&quot;2026-07-09&quot;:2.94},{&quot;2026-07-10&quot;:2.94},{&quot;2026-07-11&quot;:2.94},{&quot;2026-07-12&quot;:2.94},{&quot;2026-07-13&quot;:2.94},{&quot;2026-07-14&quot;:2.95},{&quot;2026-07-15&quot;:2.91},{&quot;2026-07-16&quot;:3.04},{&quot;2026-07-17&quot;:3.04},{&quot;2026-07-18&quot;:3.05},{&quot;2026-07-19&quot;:3.04},{&quot;2026-07-20&quot;:3.03},{&quot;2026-07-21&quot;:3.02},{&quot;2026-07-22&quot;:2.88},{&quot;2026-07-23&quot;:2.95},{&quot;2026-07-24&quot;:2.84},{&quot;2026-07-25&quot;:2.86},{&quot;2026-07-26&quot;:2.86},{&quot;2026-07-27&quot;:2.89},{&quot;2026-07-28&quot;:2.88},{&quot;2026-07-29&quot;:2.88},{&quot;2026-07-30&quot;:2.87},{&quot;2026-07-31&quot;:2.87},{&quot;2026-08-01&quot;:2.83},{&quot;2026-08-02&quot;:2.82},{&quot;2026-08-03&quot;:2.81},{&quot;2026-08-04&quot;:2.82},{&quot;2026-08-05&quot;:2.82},{&quot;2026-08-07&quot;:2.87},{&quot;2026-08-08&quot;:2.87},{&quot;2026-08-09&quot;:2.94},{&quot;2026-08-10&quot;:2.97},{&quot;2026-08-11&quot;:2.97},{&quot;2026-08-12&quot;:2.92},{&quot;2026-08-13&quot;:2.91},{&quot;2026-08-14&quot;:2.97},{&quot;2026-08-15&quot;:2.98},{&quot;2026-08-16&quot;:2.97},{&quot;2026-08-17&quot;:2.88},{&quot;2026-08-18&quot;:2.88},{&quot;2026-08-19&quot;:2.88},{&quot;2026-08-20&quot;:2.85},{&quot;2026-08-21&quot;:2.85},{&quot;2026-08-22&quot;:2.89},{&quot;2026-08-23&quot;:2.97},{&quot;2026-08-24&quot;:2.97},{&quot;2026-08-25&quot;:2.97},{&quot;2026-08-26&quot;:2.98},{&quot;2026-08-27&quot;:2.96},{&quot;2026-08-28&quot;:2.96},{&quot;2026-08-29&quot;:2.96},{&quot;2026-08-30&quot;:3.03},{&quot;2026-08-31&quot;:3.03},{&quot;2026-09-01&quot;:3.05},{&quot;2026-09-02&quot;:3.11},{&quot;2026-09-03&quot;:3.16},{&quot;2026-09-04&quot;:3.28},{&quot;2026-09-05&quot;:3.26},{&quot;2026-09-06&quot;:3.21},{&quot;2026-09-07&quot;:3.15},{&quot;2026-09-08&quot;:3.11},{&quot;2026-09-09&quot;:3.11},{&quot;2026-09-10&quot;:3.14},{&quot;2026-09-11&quot;:3.12}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

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

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Argentum Armor
        </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 — Equipment</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Argentum Armor" src="https://cards.scryfall.io/large/front/f/b/fb1b7468-85f9-472e-9f7c-b268f84aea1c.jpg?1783926176" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-11&quot;:2.61},{&quot;2026-06-12&quot;:2.61},{&quot;2026-06-13&quot;:2.61},{&quot;2026-06-14&quot;:2.61},{&quot;2026-06-15&quot;:2.62},{&quot;2026-06-16&quot;:2.66},{&quot;2026-06-17&quot;:2.67},{&quot;2026-06-18&quot;:2.67},{&quot;2026-06-19&quot;:2.72},{&quot;2026-06-20&quot;:2.72},{&quot;2026-06-21&quot;:2.69},{&quot;2026-06-22&quot;:2.7},{&quot;2026-06-23&quot;:2.63},{&quot;2026-06-24&quot;:2.61},{&quot;2026-06-25&quot;:2.59},{&quot;2026-06-26&quot;:2.56},{&quot;2026-06-27&quot;:2.47},{&quot;2026-06-28&quot;:2.58},{&quot;2026-06-29&quot;:2.58},{&quot;2026-06-30&quot;:2.58},{&quot;2026-07-01&quot;:2.51},{&quot;2026-07-02&quot;:2.51},{&quot;2026-07-03&quot;:2.45},{&quot;2026-07-04&quot;:2.41},{&quot;2026-07-05&quot;:2.41},{&quot;2026-07-06&quot;:2.38},{&quot;2026-07-07&quot;:2.36},{&quot;2026-07-08&quot;:2.32},{&quot;2026-07-09&quot;:2.26},{&quot;2026-07-10&quot;:2.28},{&quot;2026-07-11&quot;:2.15},{&quot;2026-07-12&quot;:2.12},{&quot;2026-07-13&quot;:2.12},{&quot;2026-07-14&quot;:2.11},{&quot;2026-07-15&quot;:2.16},{&quot;2026-07-16&quot;:2.16},{&quot;2026-07-17&quot;:2.13},{&quot;2026-07-18&quot;:2.12},{&quot;2026-07-19&quot;:2.2},{&quot;2026-07-20&quot;:2.22},{&quot;2026-07-21&quot;:2.22},{&quot;2026-07-23&quot;:2.36},{&quot;2026-07-25&quot;:2.54},{&quot;2026-07-26&quot;:2.54},{&quot;2026-07-27&quot;:2.56},{&quot;2026-07-28&quot;:2.56},{&quot;2026-07-29&quot;:2.59},{&quot;2026-07-30&quot;:2.58},{&quot;2026-07-31&quot;:2.6},{&quot;2026-08-01&quot;:2.63},{&quot;2026-08-02&quot;:2.63},{&quot;2026-08-03&quot;:2.67},{&quot;2026-08-04&quot;:2.76},{&quot;2026-08-05&quot;:2.75},{&quot;2026-08-07&quot;:2.75},{&quot;2026-08-08&quot;:2.72},{&quot;2026-08-09&quot;:2.7},{&quot;2026-08-10&quot;:2.7},{&quot;2026-08-11&quot;:2.7},{&quot;2026-08-12&quot;:2.7},{&quot;2026-08-13&quot;:2.69},{&quot;2026-08-14&quot;:2.69},{&quot;2026-08-15&quot;:2.7},{&quot;2026-08-16&quot;:2.7},{&quot;2026-08-17&quot;:2.78},{&quot;2026-08-18&quot;:2.8},{&quot;2026-08-19&quot;:2.85},{&quot;2026-08-20&quot;:2.85},{&quot;2026-08-21&quot;:3.03},{&quot;2026-08-22&quot;:3.03},{&quot;2026-08-23&quot;:3.03},{&quot;2026-08-24&quot;:3.03},{&quot;2026-08-25&quot;:3.03},{&quot;2026-08-26&quot;:3.02},{&quot;2026-08-27&quot;:3.03},{&quot;2026-08-28&quot;:2.98},{&quot;2026-08-29&quot;:2.98},{&quot;2026-08-30&quot;:3.03},{&quot;2026-08-31&quot;:3.08},{&quot;2026-09-01&quot;:3.08},{&quot;2026-09-02&quot;:3.08},{&quot;2026-09-03&quot;:3.08},{&quot;2026-09-04&quot;:3.04},{&quot;2026-09-05&quot;:3.11},{&quot;2026-09-06&quot;:3.11},{&quot;2026-09-07&quot;:3.05},{&quot;2026-09-08&quot;:3.05},{&quot;2026-09-09&quot;:2.93},{&quot;2026-09-10&quot;:2.93},{&quot;2026-09-11&quot;:2.87}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="79783"
  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">
            Whispersilk Cloak
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Whispersilk Cloak" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/4/7485dde2-ee5a-4c5e-a969-354a7b3f7936.jpg?1783932149" />

        <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">
            Whispersilk Cloak
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-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="Whispersilk Cloak" src="https://cards.scryfall.io/large/front/7/4/7485dde2-ee5a-4c5e-a969-354a7b3f7936.jpg?1783932149" />
    </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.75
              </span>

            </div>
          </div>

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:2.48},{&quot;2026-06-14&quot;:2.49},{&quot;2026-06-15&quot;:2.54},{&quot;2026-06-16&quot;:2.54},{&quot;2026-06-17&quot;:2.55},{&quot;2026-06-18&quot;:2.54},{&quot;2026-06-19&quot;:2.54},{&quot;2026-06-20&quot;:2.54},{&quot;2026-06-21&quot;:2.54},{&quot;2026-06-22&quot;:2.54},{&quot;2026-06-23&quot;:2.54},{&quot;2026-06-24&quot;:2.77},{&quot;2026-06-25&quot;:2.77},{&quot;2026-06-26&quot;:2.77},{&quot;2026-06-27&quot;:2.78},{&quot;2026-06-28&quot;:2.78},{&quot;2026-06-29&quot;:2.78},{&quot;2026-06-30&quot;:2.76},{&quot;2026-07-01&quot;:2.76},{&quot;2026-07-02&quot;:2.76},{&quot;2026-07-03&quot;:2.76},{&quot;2026-07-04&quot;:2.84},{&quot;2026-07-05&quot;:2.84},{&quot;2026-07-06&quot;:2.84},{&quot;2026-07-07&quot;:2.84},{&quot;2026-07-08&quot;:2.84},{&quot;2026-07-09&quot;:2.84},{&quot;2026-07-10&quot;:2.82},{&quot;2026-07-11&quot;:2.85},{&quot;2026-07-12&quot;:2.85},{&quot;2026-07-13&quot;:2.86},{&quot;2026-07-14&quot;:2.86},{&quot;2026-07-15&quot;:2.86},{&quot;2026-07-16&quot;:2.87},{&quot;2026-07-17&quot;:2.87},{&quot;2026-07-18&quot;:2.87},{&quot;2026-07-19&quot;:2.91},{&quot;2026-07-20&quot;:2.91},{&quot;2026-07-21&quot;:2.91},{&quot;2026-07-22&quot;:2.91},{&quot;2026-07-23&quot;:2.91},{&quot;2026-07-24&quot;:2.91},{&quot;2026-07-25&quot;:2.95},{&quot;2026-07-26&quot;:2.95},{&quot;2026-07-27&quot;:2.95},{&quot;2026-07-28&quot;:2.95},{&quot;2026-07-29&quot;:2.95},{&quot;2026-07-30&quot;:2.94},{&quot;2026-07-31&quot;:2.94},{&quot;2026-08-01&quot;:2.94},{&quot;2026-08-02&quot;:2.94},{&quot;2026-08-03&quot;:2.94},{&quot;2026-08-04&quot;:2.94},{&quot;2026-08-05&quot;:2.97},{&quot;2026-08-07&quot;:2.97},{&quot;2026-08-08&quot;:2.96},{&quot;2026-08-09&quot;:2.96},{&quot;2026-08-10&quot;:2.96},{&quot;2026-08-11&quot;:2.96},{&quot;2026-08-12&quot;:2.96},{&quot;2026-08-13&quot;:2.97},{&quot;2026-08-14&quot;:2.97},{&quot;2026-08-15&quot;:2.97},{&quot;2026-08-16&quot;:2.97},{&quot;2026-08-17&quot;:2.97},{&quot;2026-08-18&quot;:2.97},{&quot;2026-08-19&quot;:2.97},{&quot;2026-08-20&quot;:2.91},{&quot;2026-08-21&quot;:2.92},{&quot;2026-08-22&quot;:2.92},{&quot;2026-08-23&quot;:2.92},{&quot;2026-08-24&quot;:2.94},{&quot;2026-08-25&quot;:2.97},{&quot;2026-08-26&quot;:2.78},{&quot;2026-08-27&quot;:2.83},{&quot;2026-08-28&quot;:2.82},{&quot;2026-08-29&quot;:2.82},{&quot;2026-08-30&quot;:2.8},{&quot;2026-08-31&quot;:2.8},{&quot;2026-09-01&quot;:2.8},{&quot;2026-09-02&quot;:2.8},{&quot;2026-09-03&quot;:2.74},{&quot;2026-09-04&quot;:2.74},{&quot;2026-09-05&quot;:2.74},{&quot;2026-09-06&quot;:2.74},{&quot;2026-09-07&quot;:2.74},{&quot;2026-09-08&quot;:2.75},{&quot;2026-09-09&quot;:2.75},{&quot;2026-09-10&quot;:2.75},{&quot;2026-09-11&quot;:2.75}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="9860"
  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">
            Swiftfoot Boots
        </span>


      </div>

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

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Swiftfoot Boots" src="https://cards.scryfall.io/large/front/1/a/1ae84b5c-d3ad-48a3-9ccc-1dd76cee392c.jpg?1783934256" />
    </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.46
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.94},{&quot;2026-06-14&quot;:1.94},{&quot;2026-06-15&quot;:1.94},{&quot;2026-06-16&quot;:1.94},{&quot;2026-06-17&quot;:1.94},{&quot;2026-06-18&quot;:1.93},{&quot;2026-06-19&quot;:1.93},{&quot;2026-06-20&quot;:1.93},{&quot;2026-06-21&quot;:1.93},{&quot;2026-06-22&quot;:1.93},{&quot;2026-06-23&quot;:1.93},{&quot;2026-06-24&quot;:1.93},{&quot;2026-06-25&quot;:1.93},{&quot;2026-06-26&quot;:1.9},{&quot;2026-06-27&quot;:1.89},{&quot;2026-06-28&quot;:1.89},{&quot;2026-06-29&quot;:1.89},{&quot;2026-06-30&quot;:1.9},{&quot;2026-07-01&quot;:1.92},{&quot;2026-07-02&quot;:1.92},{&quot;2026-07-03&quot;:1.95},{&quot;2026-07-04&quot;:1.97},{&quot;2026-07-05&quot;:1.97},{&quot;2026-07-06&quot;:1.97},{&quot;2026-07-07&quot;:1.97},{&quot;2026-07-08&quot;:1.97},{&quot;2026-07-09&quot;:1.97},{&quot;2026-07-10&quot;:1.99},{&quot;2026-07-11&quot;:1.99},{&quot;2026-07-12&quot;:1.99},{&quot;2026-07-13&quot;:1.99},{&quot;2026-07-14&quot;:1.92},{&quot;2026-07-15&quot;:1.93},{&quot;2026-07-16&quot;:1.93},{&quot;2026-07-17&quot;:1.94},{&quot;2026-07-18&quot;:1.94},{&quot;2026-07-19&quot;:2.02},{&quot;2026-07-20&quot;:2.02},{&quot;2026-07-21&quot;:2.02},{&quot;2026-07-22&quot;:2.02},{&quot;2026-07-23&quot;:2.07},{&quot;2026-07-24&quot;:2.07},{&quot;2026-07-25&quot;:2.07},{&quot;2026-07-26&quot;:2.07},{&quot;2026-07-27&quot;:2.07},{&quot;2026-07-28&quot;:2.07},{&quot;2026-07-29&quot;:2.07},{&quot;2026-07-30&quot;:2.07},{&quot;2026-07-31&quot;:2.07},{&quot;2026-08-01&quot;:2.07},{&quot;2026-08-02&quot;:2.07},{&quot;2026-08-03&quot;:2.07},{&quot;2026-08-04&quot;:2.07},{&quot;2026-08-05&quot;:2.07},{&quot;2026-08-07&quot;:2.08},{&quot;2026-08-08&quot;:2.18},{&quot;2026-08-09&quot;:2.18},{&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.24},{&quot;2026-08-23&quot;:2.25},{&quot;2026-08-24&quot;:2.25},{&quot;2026-08-25&quot;:2.3},{&quot;2026-08-26&quot;:2.31},{&quot;2026-08-27&quot;:2.31},{&quot;2026-08-28&quot;:2.31},{&quot;2026-08-29&quot;:2.31},{&quot;2026-08-30&quot;:2.31},{&quot;2026-08-31&quot;:2.32},{&quot;2026-09-01&quot;:2.32},{&quot;2026-09-02&quot;:2.34},{&quot;2026-09-03&quot;:2.34},{&quot;2026-09-04&quot;:2.34},{&quot;2026-09-05&quot;:2.34},{&quot;2026-09-06&quot;:2.35},{&quot;2026-09-07&quot;:2.36},{&quot;2026-09-08&quot;:2.36},{&quot;2026-09-09&quot;:2.36},{&quot;2026-09-10&quot;:2.43},{&quot;2026-09-11&quot;:2.46}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="16439"
  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-voc 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">
            Knight of the White Orchid
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $2.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="Knight of the White Orchid" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/0/2096c0f1-9a61-4c2a-ac1a-a2fb4e73d121.jpg?1783924972" />

        <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">
            Knight of the White Orchid
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Knight of the White Orchid" src="https://cards.scryfall.io/large/front/2/0/2096c0f1-9a61-4c2a-ac1a-a2fb4e73d121.jpg?1783924972" />
    </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.38
              </span>

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

      </div>

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

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $2.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="Reprieve" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/b/1bd3fa8a-6c50-4f7f-9ae3-0810eec5e3db.jpg?1783916330" />

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

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Reprieve" src="https://cards.scryfall.io/large/front/1/b/1bd3fa8a-6c50-4f7f-9ae3-0810eec5e3db.jpg?1783916330" />
    </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.28
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-08&quot;:2.08},{&quot;2026-06-10&quot;:2.01},{&quot;2026-06-11&quot;:2.01},{&quot;2026-06-12&quot;:2.01},{&quot;2026-06-13&quot;:1.97},{&quot;2026-06-14&quot;:1.97},{&quot;2026-06-15&quot;:1.97},{&quot;2026-06-16&quot;:1.96},{&quot;2026-06-17&quot;:1.96},{&quot;2026-06-18&quot;:1.99},{&quot;2026-06-19&quot;:1.99},{&quot;2026-06-20&quot;:1.99},{&quot;2026-06-21&quot;:1.99},{&quot;2026-06-22&quot;:2.03},{&quot;2026-06-24&quot;:2.07},{&quot;2026-06-25&quot;:2.07},{&quot;2026-06-26&quot;:2.07},{&quot;2026-06-27&quot;:2.07},{&quot;2026-06-28&quot;:2.05},{&quot;2026-06-29&quot;:2.03},{&quot;2026-06-30&quot;:2.04},{&quot;2026-07-01&quot;:1.99},{&quot;2026-07-02&quot;:2.01},{&quot;2026-07-03&quot;:1.99},{&quot;2026-07-04&quot;:2.06},{&quot;2026-07-05&quot;:1.96},{&quot;2026-07-06&quot;:1.97},{&quot;2026-07-07&quot;:1.97},{&quot;2026-07-08&quot;:1.92},{&quot;2026-07-09&quot;:1.96},{&quot;2026-07-10&quot;:1.96},{&quot;2026-07-11&quot;:1.97},{&quot;2026-07-12&quot;:1.93},{&quot;2026-07-13&quot;:1.95},{&quot;2026-07-14&quot;:1.9},{&quot;2026-07-15&quot;:1.9},{&quot;2026-07-16&quot;:1.91},{&quot;2026-07-17&quot;:1.91},{&quot;2026-07-18&quot;:1.9},{&quot;2026-07-19&quot;:1.9},{&quot;2026-07-20&quot;:1.9},{&quot;2026-07-21&quot;:2.0},{&quot;2026-07-23&quot;:2.05},{&quot;2026-07-25&quot;:2.01},{&quot;2026-07-26&quot;:2.01},{&quot;2026-07-27&quot;:2.03},{&quot;2026-07-29&quot;:2.24},{&quot;2026-07-30&quot;:2.22},{&quot;2026-07-31&quot;:2.4},{&quot;2026-08-01&quot;:2.44},{&quot;2026-08-02&quot;:2.33},{&quot;2026-08-03&quot;:2.32},{&quot;2026-08-04&quot;:2.4},{&quot;2026-08-05&quot;:2.33},{&quot;2026-08-07&quot;:2.44},{&quot;2026-08-08&quot;:2.44},{&quot;2026-08-09&quot;:2.43},{&quot;2026-08-10&quot;:2.39},{&quot;2026-08-11&quot;:2.39},{&quot;2026-08-12&quot;:2.39},{&quot;2026-08-13&quot;:2.47},{&quot;2026-08-14&quot;:2.56},{&quot;2026-08-15&quot;:2.64},{&quot;2026-08-16&quot;:2.64},{&quot;2026-08-17&quot;:2.64},{&quot;2026-08-18&quot;:2.64},{&quot;2026-08-19&quot;:2.63},{&quot;2026-08-20&quot;:2.63},{&quot;2026-08-21&quot;:2.91},{&quot;2026-08-22&quot;:2.89},{&quot;2026-08-23&quot;:2.89},{&quot;2026-08-24&quot;:2.87},{&quot;2026-08-25&quot;:2.87},{&quot;2026-08-26&quot;:2.67},{&quot;2026-08-27&quot;:2.58},{&quot;2026-08-28&quot;:2.58},{&quot;2026-08-29&quot;:2.58},{&quot;2026-08-30&quot;:2.59},{&quot;2026-08-31&quot;:2.59},{&quot;2026-09-01&quot;:2.59},{&quot;2026-09-02&quot;:2.53},{&quot;2026-09-03&quot;:2.5},{&quot;2026-09-04&quot;:2.57},{&quot;2026-09-05&quot;:2.57},{&quot;2026-09-06&quot;:2.57},{&quot;2026-09-07&quot;:2.56},{&quot;2026-09-08&quot;:2.62},{&quot;2026-09-09&quot;:2.6},{&quot;2026-09-10&quot;:2.6},{&quot;2026-09-11&quot;:2.46}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:1.88},{&quot;2026-06-10&quot;:1.76},{&quot;2026-06-11&quot;:1.62},{&quot;2026-06-12&quot;:1.38},{&quot;2026-06-13&quot;:1.32},{&quot;2026-06-14&quot;:1.34},{&quot;2026-06-15&quot;:1.33},{&quot;2026-06-16&quot;:1.31},{&quot;2026-06-17&quot;:1.25},{&quot;2026-06-18&quot;:1.24},{&quot;2026-06-19&quot;:1.15},{&quot;2026-06-20&quot;:1.15},{&quot;2026-06-21&quot;:1.06},{&quot;2026-06-22&quot;:0.94},{&quot;2026-06-24&quot;:0.94},{&quot;2026-06-25&quot;:0.98},{&quot;2026-06-26&quot;:0.93},{&quot;2026-06-27&quot;:1.0},{&quot;2026-06-28&quot;:1.04},{&quot;2026-06-29&quot;:1.21},{&quot;2026-06-30&quot;:1.56},{&quot;2026-07-01&quot;:1.55},{&quot;2026-07-02&quot;:1.69},{&quot;2026-07-03&quot;:1.66},{&quot;2026-07-04&quot;:1.61},{&quot;2026-07-05&quot;:1.44},{&quot;2026-07-06&quot;:1.39},{&quot;2026-07-07&quot;:1.3},{&quot;2026-07-08&quot;:1.26},{&quot;2026-07-09&quot;:1.32},{&quot;2026-07-10&quot;:1.31},{&quot;2026-07-11&quot;:1.25},{&quot;2026-07-12&quot;:1.32},{&quot;2026-07-13&quot;:1.37},{&quot;2026-07-14&quot;:1.37},{&quot;2026-07-15&quot;:1.46},{&quot;2026-07-16&quot;:1.62},{&quot;2026-07-17&quot;:1.87},{&quot;2026-07-18&quot;:1.73},{&quot;2026-07-19&quot;:1.66},{&quot;2026-07-20&quot;:2.26},{&quot;2026-07-21&quot;:2.24},{&quot;2026-07-23&quot;:1.64},{&quot;2026-07-25&quot;:1.33},{&quot;2026-07-26&quot;:1.54},{&quot;2026-07-27&quot;:1.71},{&quot;2026-07-29&quot;:1.63},{&quot;2026-07-30&quot;:1.39},{&quot;2026-07-31&quot;:1.65},{&quot;2026-08-01&quot;:1.69},{&quot;2026-08-02&quot;:2.18},{&quot;2026-08-03&quot;:2.12},{&quot;2026-08-04&quot;:2.24},{&quot;2026-08-05&quot;:2.14},{&quot;2026-08-07&quot;:1.86},{&quot;2026-08-08&quot;:1.8},{&quot;2026-08-09&quot;:1.76},{&quot;2026-08-10&quot;:1.7},{&quot;2026-08-11&quot;:1.63},{&quot;2026-08-12&quot;:2.01},{&quot;2026-08-13&quot;:2.29},{&quot;2026-08-14&quot;:2.47},{&quot;2026-08-15&quot;:1.87},{&quot;2026-08-16&quot;:1.36},{&quot;2026-08-17&quot;:1.68},{&quot;2026-08-18&quot;:2.02},{&quot;2026-08-19&quot;:2.17},{&quot;2026-08-20&quot;:2.17},{&quot;2026-08-21&quot;:1.78},{&quot;2026-08-22&quot;:1.43},{&quot;2026-08-23&quot;:1.35},{&quot;2026-08-24&quot;:1.6},{&quot;2026-08-25&quot;:1.6},{&quot;2026-08-26&quot;:1.94},{&quot;2026-08-27&quot;:1.81},{&quot;2026-08-28&quot;:1.53},{&quot;2026-08-29&quot;:1.53},{&quot;2026-08-30&quot;:1.71},{&quot;2026-08-31&quot;:1.65},{&quot;2026-09-01&quot;:1.65},{&quot;2026-09-02&quot;:1.94},{&quot;2026-09-03&quot;:2.05},{&quot;2026-09-04&quot;:1.81},{&quot;2026-09-05&quot;:1.84},{&quot;2026-09-06&quot;:1.96},{&quot;2026-09-07&quot;:1.99},{&quot;2026-09-08&quot;:1.96},{&quot;2026-09-09&quot;:2.27},{&quot;2026-09-10&quot;:2.22},{&quot;2026-09-11&quot;:2.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="16414"
  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-voc 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">
            Darksteel Mutation
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $1.99
          </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="Darksteel Mutation" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/f/afa4c889-0577-4173-9f85-42a7bf675aaf.jpg?1783924975" />

        <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">
            Darksteel Mutation
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Darksteel Mutation" src="https://cards.scryfall.io/large/front/a/f/afa4c889-0577-4173-9f85-42a7bf675aaf.jpg?1783924975" />
    </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.99
              </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.45</span>
              <span class="text-xs text-grey-text">Credit: $0.59</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:2.42},{&quot;2026-06-14&quot;:2.42},{&quot;2026-06-15&quot;:2.47},{&quot;2026-06-16&quot;:2.47},{&quot;2026-06-17&quot;:2.47},{&quot;2026-06-18&quot;:2.47},{&quot;2026-06-19&quot;:2.42},{&quot;2026-06-20&quot;:2.42},{&quot;2026-06-21&quot;:2.4},{&quot;2026-06-22&quot;:2.4},{&quot;2026-06-23&quot;:2.43},{&quot;2026-06-24&quot;:2.37},{&quot;2026-06-25&quot;:2.32},{&quot;2026-06-26&quot;:2.32},{&quot;2026-06-27&quot;:2.32},{&quot;2026-06-28&quot;:2.29},{&quot;2026-06-29&quot;:2.26},{&quot;2026-06-30&quot;:2.26},{&quot;2026-07-01&quot;:2.26},{&quot;2026-07-02&quot;:2.26},{&quot;2026-07-03&quot;:2.26},{&quot;2026-07-04&quot;:2.26},{&quot;2026-07-05&quot;:2.22},{&quot;2026-07-06&quot;:2.2},{&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.2},{&quot;2026-07-11&quot;:2.18},{&quot;2026-07-12&quot;:2.11},{&quot;2026-07-13&quot;:2.11},{&quot;2026-07-14&quot;:2.11},{&quot;2026-07-15&quot;:2.11},{&quot;2026-07-16&quot;:2.11},{&quot;2026-07-17&quot;:2.09},{&quot;2026-07-18&quot;:2.1},{&quot;2026-07-19&quot;:2.13},{&quot;2026-07-20&quot;:2.13},{&quot;2026-07-21&quot;:2.07},{&quot;2026-07-22&quot;:2.06},{&quot;2026-07-23&quot;:2.06},{&quot;2026-07-24&quot;:2.06},{&quot;2026-07-25&quot;:2.06},{&quot;2026-07-26&quot;:2.06},{&quot;2026-07-27&quot;:2.03},{&quot;2026-07-28&quot;:2.02},{&quot;2026-07-29&quot;:2.01},{&quot;2026-07-30&quot;:1.93},{&quot;2026-07-31&quot;:1.89},{&quot;2026-08-01&quot;:1.91},{&quot;2026-08-02&quot;:1.88},{&quot;2026-08-03&quot;:1.86},{&quot;2026-08-04&quot;:1.86},{&quot;2026-08-05&quot;:1.9},{&quot;2026-08-07&quot;:1.86},{&quot;2026-08-08&quot;:1.79},{&quot;2026-08-09&quot;:1.82},{&quot;2026-08-10&quot;:1.77},{&quot;2026-08-11&quot;:1.81},{&quot;2026-08-12&quot;:1.8},{&quot;2026-08-13&quot;:1.78},{&quot;2026-08-14&quot;:1.78},{&quot;2026-08-15&quot;:1.78},{&quot;2026-08-16&quot;:1.79},{&quot;2026-08-17&quot;:1.84},{&quot;2026-08-18&quot;:1.88},{&quot;2026-08-19&quot;:1.95},{&quot;2026-08-20&quot;:1.99},{&quot;2026-08-21&quot;:1.99},{&quot;2026-08-22&quot;:2.02},{&quot;2026-08-23&quot;:2.05},{&quot;2026-08-24&quot;:2.08},{&quot;2026-08-25&quot;:2.08},{&quot;2026-08-26&quot;:2.1},{&quot;2026-08-27&quot;:2.07},{&quot;2026-08-28&quot;:2.03},{&quot;2026-08-29&quot;:2.03},{&quot;2026-08-30&quot;:2.03},{&quot;2026-08-31&quot;:2.03},{&quot;2026-09-01&quot;:2.03},{&quot;2026-09-02&quot;:2.05},{&quot;2026-09-03&quot;:2.05},{&quot;2026-09-04&quot;:2.05},{&quot;2026-09-05&quot;:2.05},{&quot;2026-09-06&quot;:2.06},{&quot;2026-09-07&quot;:2.06},{&quot;2026-09-08&quot;:2.02},{&quot;2026-09-09&quot;:2.05},{&quot;2026-09-10&quot;:2.01},{&quot;2026-09-11&quot;:1.99}]}"
        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="28518"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-afc ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

        <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">
            Puresteel Paladin
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Puresteel Paladin" src="https://cards.scryfall.io/large/front/6/d/6dfd52a8-14c0-4e53-862e-01da4d7823e2.jpg?1783926232" />
    </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.93
              </span>

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

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$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-12&quot;:1.32},{&quot;2026-06-13&quot;:1.35},{&quot;2026-06-14&quot;:1.35},{&quot;2026-06-15&quot;:1.35},{&quot;2026-06-16&quot;:1.42},{&quot;2026-06-17&quot;:1.47},{&quot;2026-06-18&quot;:1.46},{&quot;2026-06-19&quot;:1.46},{&quot;2026-06-20&quot;:1.45},{&quot;2026-06-21&quot;:1.51},{&quot;2026-06-22&quot;:1.55},{&quot;2026-06-23&quot;:1.51},{&quot;2026-06-24&quot;:1.49},{&quot;2026-06-25&quot;:1.53},{&quot;2026-06-26&quot;:1.53},{&quot;2026-06-27&quot;:1.44},{&quot;2026-06-28&quot;:1.44},{&quot;2026-06-29&quot;:1.44},{&quot;2026-06-30&quot;:1.44},{&quot;2026-07-01&quot;:1.49},{&quot;2026-07-02&quot;:1.49},{&quot;2026-07-03&quot;:1.39},{&quot;2026-07-04&quot;:1.55},{&quot;2026-07-05&quot;:1.55},{&quot;2026-07-06&quot;:1.57},{&quot;2026-07-07&quot;:1.55},{&quot;2026-07-08&quot;:1.53},{&quot;2026-07-09&quot;:1.53},{&quot;2026-07-10&quot;:1.6},{&quot;2026-07-11&quot;:1.61},{&quot;2026-07-12&quot;:1.61},{&quot;2026-07-13&quot;:1.61},{&quot;2026-07-14&quot;:1.61},{&quot;2026-07-15&quot;:1.56},{&quot;2026-07-16&quot;:1.56},{&quot;2026-07-17&quot;:1.56},{&quot;2026-07-18&quot;:1.56},{&quot;2026-07-19&quot;:1.66},{&quot;2026-07-20&quot;:1.75},{&quot;2026-07-21&quot;:1.82},{&quot;2026-07-23&quot;:1.82},{&quot;2026-07-24&quot;:1.82},{&quot;2026-07-25&quot;:1.8},{&quot;2026-07-26&quot;:1.77},{&quot;2026-07-27&quot;:1.77},{&quot;2026-07-28&quot;:1.77},{&quot;2026-07-29&quot;:1.83},{&quot;2026-07-30&quot;:1.83},{&quot;2026-07-31&quot;:1.92},{&quot;2026-08-01&quot;:1.92},{&quot;2026-08-02&quot;:2.05},{&quot;2026-08-03&quot;:2.07},{&quot;2026-08-04&quot;:2.07},{&quot;2026-08-05&quot;:2.01},{&quot;2026-08-07&quot;:2.02},{&quot;2026-08-08&quot;:2.0},{&quot;2026-08-09&quot;:2.0},{&quot;2026-08-10&quot;:2.0},{&quot;2026-08-11&quot;:2.04},{&quot;2026-08-12&quot;:1.96},{&quot;2026-08-13&quot;:1.96},{&quot;2026-08-14&quot;:2.07},{&quot;2026-08-15&quot;:2.07},{&quot;2026-08-16&quot;:2.07},{&quot;2026-08-17&quot;:2.0},{&quot;2026-08-18&quot;:2.16},{&quot;2026-08-19&quot;:2.16},{&quot;2026-08-20&quot;:2.16},{&quot;2026-08-21&quot;:2.16},{&quot;2026-08-22&quot;:2.1},{&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;:1.95},{&quot;2026-08-27&quot;:1.95},{&quot;2026-08-28&quot;:2.01},{&quot;2026-08-29&quot;:2.01},{&quot;2026-08-30&quot;:2.1},{&quot;2026-08-31&quot;:2.1},{&quot;2026-09-01&quot;:2.1},{&quot;2026-09-02&quot;:2.1},{&quot;2026-09-03&quot;:2.1},{&quot;2026-09-04&quot;:2.11},{&quot;2026-09-05&quot;:2.32},{&quot;2026-09-06&quot;:2.32},{&quot;2026-09-07&quot;:2.25},{&quot;2026-09-08&quot;:2.2},{&quot;2026-09-09&quot;:2.04},{&quot;2026-09-10&quot;:2.0},{&quot;2026-09-11&quot;:1.93}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="47505"
  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">
            Swords to Plowshares
        </span>


      </div>

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

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Swords to Plowshares" src="https://cards.scryfall.io/large/front/1/2/12401907-17c5-47cc-8e10-fa917a5f14ea.jpg?1783925349" />
    </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.89
              </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;normal&quot;:[{&quot;2026-06-10&quot;:1.6},{&quot;2026-06-11&quot;:1.6},{&quot;2026-06-12&quot;:1.66},{&quot;2026-06-13&quot;:1.66},{&quot;2026-06-14&quot;:1.7},{&quot;2026-06-15&quot;:1.72},{&quot;2026-06-16&quot;:1.72},{&quot;2026-06-17&quot;:1.7},{&quot;2026-06-18&quot;:1.72},{&quot;2026-06-19&quot;:1.72},{&quot;2026-06-20&quot;:1.75},{&quot;2026-06-21&quot;:1.75},{&quot;2026-06-22&quot;:1.78},{&quot;2026-06-23&quot;:1.77},{&quot;2026-06-24&quot;:1.77},{&quot;2026-06-25&quot;:1.77},{&quot;2026-06-26&quot;:1.77},{&quot;2026-06-27&quot;:1.77},{&quot;2026-06-28&quot;:1.75},{&quot;2026-06-29&quot;:1.75},{&quot;2026-06-30&quot;:1.79},{&quot;2026-07-01&quot;:1.79},{&quot;2026-07-02&quot;:1.79},{&quot;2026-07-03&quot;:1.79},{&quot;2026-07-04&quot;:1.79},{&quot;2026-07-05&quot;:1.78},{&quot;2026-07-06&quot;:1.78},{&quot;2026-07-07&quot;:1.79},{&quot;2026-07-08&quot;:1.8},{&quot;2026-07-09&quot;:1.8},{&quot;2026-07-10&quot;:1.8},{&quot;2026-07-11&quot;:1.83},{&quot;2026-07-12&quot;:1.83},{&quot;2026-07-13&quot;:1.83},{&quot;2026-07-14&quot;:1.82},{&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.82},{&quot;2026-07-19&quot;:1.82},{&quot;2026-07-20&quot;:1.82},{&quot;2026-07-21&quot;:1.79},{&quot;2026-07-23&quot;:1.79},{&quot;2026-07-25&quot;:1.78},{&quot;2026-07-26&quot;:1.77},{&quot;2026-07-27&quot;:1.77},{&quot;2026-07-29&quot;:1.77},{&quot;2026-07-30&quot;:1.78},{&quot;2026-07-31&quot;:1.78},{&quot;2026-08-01&quot;:1.78},{&quot;2026-08-02&quot;:1.78},{&quot;2026-08-03&quot;:1.78},{&quot;2026-08-04&quot;:1.78},{&quot;2026-08-05&quot;:1.77},{&quot;2026-08-07&quot;:1.75},{&quot;2026-08-08&quot;:1.75},{&quot;2026-08-09&quot;:1.75},{&quot;2026-08-10&quot;:1.75},{&quot;2026-08-11&quot;:1.73},{&quot;2026-08-12&quot;:1.73},{&quot;2026-08-13&quot;:1.73},{&quot;2026-08-14&quot;:1.71},{&quot;2026-08-15&quot;:1.69},{&quot;2026-08-16&quot;:1.69},{&quot;2026-08-17&quot;:1.67},{&quot;2026-08-18&quot;:1.61},{&quot;2026-08-19&quot;:1.6},{&quot;2026-08-20&quot;:1.6},{&quot;2026-08-21&quot;:1.58},{&quot;2026-08-22&quot;:1.6},{&quot;2026-08-23&quot;:1.6},{&quot;2026-08-24&quot;:1.56},{&quot;2026-08-25&quot;:1.56},{&quot;2026-08-26&quot;:1.64},{&quot;2026-08-27&quot;:1.69},{&quot;2026-08-28&quot;:1.98},{&quot;2026-08-29&quot;:1.98},{&quot;2026-08-30&quot;:1.96},{&quot;2026-08-31&quot;:1.94},{&quot;2026-09-01&quot;:1.94},{&quot;2026-09-02&quot;:1.97},{&quot;2026-09-03&quot;:1.96},{&quot;2026-09-04&quot;:1.95},{&quot;2026-09-05&quot;:1.93},{&quot;2026-09-06&quot;:1.93},{&quot;2026-09-07&quot;:1.93},{&quot;2026-09-08&quot;:1.92},{&quot;2026-09-09&quot;:1.93},{&quot;2026-09-10&quot;:1.9},{&quot;2026-09-11&quot;:1.89}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

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

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

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

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

        <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/c/4/c46138f0-224a-4ca9-bf03-badb2ae5ee21.jpg?1783925320" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="33860"
  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-iko 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">
            Luminous Broodmoth
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $1.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="Luminous Broodmoth" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/b/bb65df55-d6a6-4a57-a903-e5eb17637982.jpg?1783931087" />

        <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">
            Luminous Broodmoth
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Luminous Broodmoth" src="https://cards.scryfall.io/large/front/b/b/bb65df55-d6a6-4a57-a903-e5eb17637982.jpg?1783931087" />
    </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.70
              </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">
                $5.09
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:4.92},{&quot;2026-06-14&quot;:4.92},{&quot;2026-06-15&quot;:4.92},{&quot;2026-06-16&quot;:4.92},{&quot;2026-06-17&quot;:4.92},{&quot;2026-06-18&quot;:4.92},{&quot;2026-06-19&quot;:4.92},{&quot;2026-06-20&quot;:4.98},{&quot;2026-06-21&quot;:5.03},{&quot;2026-06-22&quot;:5.03},{&quot;2026-06-23&quot;:5.03},{&quot;2026-06-24&quot;:4.99},{&quot;2026-06-25&quot;:4.94},{&quot;2026-06-26&quot;:4.94},{&quot;2026-06-27&quot;:4.99},{&quot;2026-06-28&quot;:4.99},{&quot;2026-06-29&quot;:4.99},{&quot;2026-06-30&quot;:4.99},{&quot;2026-07-01&quot;:4.99},{&quot;2026-07-02&quot;:4.99},{&quot;2026-07-03&quot;:4.99},{&quot;2026-07-04&quot;:4.99},{&quot;2026-07-05&quot;:4.99},{&quot;2026-07-06&quot;:4.99},{&quot;2026-07-07&quot;:4.99},{&quot;2026-07-08&quot;:4.99},{&quot;2026-07-09&quot;:4.99},{&quot;2026-07-10&quot;:4.99},{&quot;2026-07-11&quot;:4.99},{&quot;2026-07-12&quot;:4.99},{&quot;2026-07-13&quot;:4.99},{&quot;2026-07-14&quot;:4.99},{&quot;2026-07-15&quot;:4.99},{&quot;2026-07-16&quot;:4.99},{&quot;2026-07-17&quot;:4.99},{&quot;2026-07-18&quot;:4.99},{&quot;2026-07-19&quot;:4.98},{&quot;2026-07-20&quot;:4.98},{&quot;2026-07-21&quot;:4.98},{&quot;2026-07-22&quot;:4.98},{&quot;2026-07-23&quot;:4.96},{&quot;2026-07-24&quot;:4.96},{&quot;2026-07-25&quot;:4.96},{&quot;2026-07-26&quot;:4.96},{&quot;2026-07-27&quot;:4.96},{&quot;2026-07-28&quot;:4.96},{&quot;2026-07-29&quot;:4.96},{&quot;2026-07-30&quot;:4.96},{&quot;2026-07-31&quot;:4.95},{&quot;2026-08-01&quot;:4.95},{&quot;2026-08-02&quot;:4.95},{&quot;2026-08-03&quot;:4.95},{&quot;2026-08-04&quot;:4.95},{&quot;2026-08-05&quot;:4.95},{&quot;2026-08-07&quot;:4.95},{&quot;2026-08-08&quot;:4.95},{&quot;2026-08-09&quot;:5.0},{&quot;2026-08-10&quot;:5.0},{&quot;2026-08-11&quot;:5.0},{&quot;2026-08-12&quot;:5.0},{&quot;2026-08-13&quot;:5.0},{&quot;2026-08-14&quot;:5.0},{&quot;2026-08-15&quot;:5.0},{&quot;2026-08-16&quot;:5.0},{&quot;2026-08-17&quot;:4.97},{&quot;2026-08-18&quot;:4.97},{&quot;2026-08-19&quot;:4.97},{&quot;2026-08-20&quot;:4.97},{&quot;2026-08-21&quot;:5.03},{&quot;2026-08-22&quot;:5.03},{&quot;2026-08-23&quot;:5.03},{&quot;2026-08-24&quot;:5.03},{&quot;2026-08-25&quot;:5.03},{&quot;2026-08-26&quot;:5.03},{&quot;2026-08-27&quot;:5.03},{&quot;2026-08-28&quot;:5.03},{&quot;2026-08-29&quot;:5.03},{&quot;2026-08-30&quot;:5.09},{&quot;2026-08-31&quot;:5.09},{&quot;2026-09-01&quot;:5.09},{&quot;2026-09-02&quot;:5.09},{&quot;2026-09-03&quot;:5.09},{&quot;2026-09-04&quot;:5.09},{&quot;2026-09-05&quot;:5.09},{&quot;2026-09-06&quot;:5.09},{&quot;2026-09-07&quot;:5.09},{&quot;2026-09-08&quot;:5.09},{&quot;2026-09-09&quot;:5.09},{&quot;2026-09-10&quot;:5.09},{&quot;2026-09-11&quot;:5.09}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:2.1},{&quot;2026-06-14&quot;:2.06},{&quot;2026-06-15&quot;:2.03},{&quot;2026-06-16&quot;:2.03},{&quot;2026-06-17&quot;:1.99},{&quot;2026-06-18&quot;:1.99},{&quot;2026-06-19&quot;:2.0},{&quot;2026-06-20&quot;:2.0},{&quot;2026-06-21&quot;:1.99},{&quot;2026-06-22&quot;:1.99},{&quot;2026-06-23&quot;:1.99},{&quot;2026-06-24&quot;:1.95},{&quot;2026-06-25&quot;:1.95},{&quot;2026-06-26&quot;:1.95},{&quot;2026-06-27&quot;:1.97},{&quot;2026-06-28&quot;:1.94},{&quot;2026-06-29&quot;:1.93},{&quot;2026-06-30&quot;:1.93},{&quot;2026-07-01&quot;:1.92},{&quot;2026-07-02&quot;:1.91},{&quot;2026-07-03&quot;:1.91},{&quot;2026-07-04&quot;:1.89},{&quot;2026-07-05&quot;:1.88},{&quot;2026-07-06&quot;:1.88},{&quot;2026-07-07&quot;:1.88},{&quot;2026-07-08&quot;:1.85},{&quot;2026-07-09&quot;:1.85},{&quot;2026-07-10&quot;:1.82},{&quot;2026-07-11&quot;:1.8},{&quot;2026-07-12&quot;:1.8},{&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.81},{&quot;2026-07-18&quot;:1.83},{&quot;2026-07-19&quot;:1.81},{&quot;2026-07-20&quot;:1.79},{&quot;2026-07-21&quot;:1.79},{&quot;2026-07-22&quot;:1.79},{&quot;2026-07-23&quot;:1.79},{&quot;2026-07-24&quot;:1.79},{&quot;2026-07-25&quot;:1.79},{&quot;2026-07-26&quot;:1.82},{&quot;2026-07-27&quot;:1.82},{&quot;2026-07-28&quot;:1.82},{&quot;2026-07-29&quot;:1.81},{&quot;2026-07-30&quot;:1.81},{&quot;2026-07-31&quot;:1.79},{&quot;2026-08-01&quot;:1.78},{&quot;2026-08-02&quot;:1.78},{&quot;2026-08-03&quot;:1.77},{&quot;2026-08-04&quot;:1.73},{&quot;2026-08-05&quot;:1.78},{&quot;2026-08-07&quot;:1.69},{&quot;2026-08-08&quot;:1.69},{&quot;2026-08-09&quot;:1.69},{&quot;2026-08-10&quot;:1.66},{&quot;2026-08-11&quot;:1.65},{&quot;2026-08-12&quot;:1.65},{&quot;2026-08-13&quot;:1.66},{&quot;2026-08-14&quot;:1.66},{&quot;2026-08-15&quot;:1.66},{&quot;2026-08-16&quot;:1.66},{&quot;2026-08-17&quot;:1.64},{&quot;2026-08-18&quot;:1.64},{&quot;2026-08-19&quot;:1.64},{&quot;2026-08-20&quot;:1.61},{&quot;2026-08-21&quot;:1.63},{&quot;2026-08-22&quot;:1.61},{&quot;2026-08-23&quot;:1.61},{&quot;2026-08-24&quot;:1.61},{&quot;2026-08-25&quot;:1.6},{&quot;2026-08-26&quot;:1.56},{&quot;2026-08-27&quot;:1.56},{&quot;2026-08-28&quot;:1.56},{&quot;2026-08-29&quot;:1.56},{&quot;2026-08-30&quot;:1.56},{&quot;2026-08-31&quot;:1.58},{&quot;2026-09-01&quot;:1.6},{&quot;2026-09-02&quot;:1.6},{&quot;2026-09-03&quot;:1.6},{&quot;2026-09-04&quot;:1.6},{&quot;2026-09-05&quot;:1.6},{&quot;2026-09-06&quot;:1.61},{&quot;2026-09-07&quot;:1.61},{&quot;2026-09-08&quot;:1.64},{&quot;2026-09-09&quot;:1.67},{&quot;2026-09-10&quot;:1.67},{&quot;2026-09-11&quot;:1.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="20038"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2xm ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

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

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

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

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

        <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 to Exile
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Path to Exile" src="https://cards.scryfall.io/large/front/e/9/e9d36855-c38a-4bba-a642-cff3f81e057e.jpg?1783930212" />
    </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.64
              </span>

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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


    <div
      class="
        flex flex-col gap-2 w-full px-4 py-3 mt-2 bg-foreground text-sm
        rounded-xl
      "
    >
      <div class="text-grey-text"><span class="pagy info">Displaying items 1-50 of 69 in total</span></div>

      <div class="overflow-x-auto">
        <nav class="pagy series-nav" aria-label="Pages"><a role="link" aria-disabled="true" aria-label="Previous">&lt;</a><a role="link" aria-disabled="true" aria-current="page">1</a><a href="/load_collection?collection_id=8&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next">2</a><a href="/load_collection?collection_id=8&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next" aria-label="Next">&gt;</a></nav>
      </div>
    </div>
</div>

<!-- Desktop Table View -->
<div class="hidden lg:block mb-24 overflow-x-auto border rounded-3xl border-highlight">
  <table class="min-w-full divide-y table-auto divide-background">
    <thead class="bg-background" data-controller="table-sort">
      <tr>
          <th
            class="
              py-3 pl-4 pr-0 text-xs font-normal tracking-wider text-left
              normal-case text-grey-text
            "
          >
            <a data-turbo-stream="true" data-action="click-&gt;table-sort#sort" class="flex items-center gap-1 hover:text-white" href="/load_collection?collection_id=8&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=8&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=8&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=8&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=8&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=8&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=8&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=8&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=8&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="20781"
          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">
              275
            </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-mythic ss-fw ss-2x mr-4"></i>
              Mox Opal


            </td>

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

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

                </div>
            </td>

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $250.00
            </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="20781"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_20781" src="/boxset_card/20781?collection_id=8&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fin ss-mythic ss-fw ss-2x mr-4"></i>
              Cloud, Midgar Mercenary


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Human Soldier Mercenary
            </td>

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

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="21040"
          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">
              365
            </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-mythic ss-fw ss-2x mr-4"></i>
              Sword of Fire and Ice


            </td>

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

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

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

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      1%
                    </span>
                </div>
            </td>

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

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

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

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

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

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

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


            </td>

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

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

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

                </div>
            </td>

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $39.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.96
            </td>
        </tr>

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-mythic ss-fw ss-2x mr-4"></i>
              Commander&#39;s Plate


            </td>

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

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

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

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      3%
                    </span>
                </div>
            </td>

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="20171"
          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">
              32
            </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>
              Teferi&#39;s Protection


            </td>

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

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

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

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

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

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

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

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

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


            </td>

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

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

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

                </div>
            </td>

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $36.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.73
            </td>
        </tr>

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="20842"
          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">
              296
            </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-mythic ss-fw ss-2x mr-4"></i>
              Sword of Feast and Famine


            </td>

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

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

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

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      1%
                    </span>
                </div>
            </td>

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

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

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

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2xm ss-mythic ss-fw ss-2x mr-4"></i>
              Avacyn, Angel of Hope


            </td>

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-5'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i><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">
                  $33.95

                </div>
            </td>

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $22.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.35
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="19985"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_19985" src="/boxset_card/19985?collection_id=8&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="20058"
          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">
              31
            </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>
              Stoneforge Mystic


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Kor Artificer
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $31.45

                    <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">
                $17.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.78
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="20058"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_20058" src="/boxset_card/20058?collection_id=8&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="18771"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              263
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-dmr ss-rare ss-fw ss-2x mr-4"></i>
              Enlightened Tutor


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $31.23

                    <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">
                $20.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.15
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="18771"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_18771" src="/boxset_card/18771?collection_id=8&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="49444"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              238
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mh2 ss-mythic ss-fw ss-2x mr-4"></i>
              Sword of Hearth and Home


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact — Equipment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $20.86

                    <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">
                $11.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.58
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="49444"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_49444" src="/boxset_card/49444?collection_id=8&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12524"
          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">
              384
            </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>
              Sigarda&#39;s Aid


            </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-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $19.66

                    <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">
                $15.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.66
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="12524"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12524" src="/boxset_card/12524?collection_id=8&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="20739"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              260
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2xm ss-rare ss-fw ss-2x mr-4"></i>
              Hammer of Nazahn


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Artifact — Equipment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-4'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $16.06

                    <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">
                $6.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.45
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="20739"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_20739" src="/boxset_card/20739?collection_id=8&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="28350"
          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">
              11
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-afc ss-rare ss-fw ss-2x mr-4"></i>
              Robe of Stars


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact — Equipment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><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.15

                </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.44
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="28350"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_28350" src="/boxset_card/28350?collection_id=8&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="95134"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              253
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fin ss-mythic ss-fw ss-2x mr-4"></i>
              Aettir and Priwen


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Artifact — Equipment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-6'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $12.59

                    <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">
                $8.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.45
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="95134"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_95134" src="/boxset_card/95134?collection_id=8&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="49410"
          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">
              241
            </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-rare ss-fw ss-2x mr-4"></i>
              Hall of Heliod&#39;s Generosity


            </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">
                  $11.87

                    <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">
                $7.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.36
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="49410"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_49410" src="/boxset_card/49410?collection_id=8&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="57677"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              244
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-one ss-mythic ss-fw ss-2x mr-4"></i>
              Sword of Forge and Frontier


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact — Equipment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></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">
                  $11.47

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $6.80
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.42
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="57677"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_57677" src="/boxset_card/57677?collection_id=8&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="95142"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              258
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fin ss-rare ss-fw ss-2x mr-4"></i>
              Genji Glove


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact — Equipment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-5'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $11.46

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      5%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $8.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.49
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="95142"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_95142" src="/boxset_card/95142?collection_id=8&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="49414"
          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">
              227
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mh2 ss-mythic ss-fw ss-2x mr-4"></i>
              Kaldra Compleat


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Artifact — Equipment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-7'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $8.95

                    <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">
                $4.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.48
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="49414"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_49414" src="/boxset_card/49414?collection_id=8&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="42224"
          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">
              365
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-neo ss-rare ss-fw ss-2x mr-4"></i>
              Farewell


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-4'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $8.64

                    <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">
                $7.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                2.13
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="42224"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_42224" src="/boxset_card/42224?collection_id=8&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="20062"
          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">
              32
            </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>
              Stonehewer Giant


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Giant Warrior
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $8.50

                    <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">
                $5.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.40
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="20062"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_20062" src="/boxset_card/20062?collection_id=8&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="28341"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              8
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-afc ss-rare ss-fw ss-2x mr-4"></i>
              Mantle of the Ancients


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Enchantment — Aura
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $8.42

                    <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">
                $3.80
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.34
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="28341"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_28341" src="/boxset_card/28341?collection_id=8&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="94783"
          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-fca ss-rare ss-fw ss-2x mr-4"></i>
              Sram, Senior Edificer


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Dwarf Advisor
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $8.42

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      8%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $5.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.30
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="94783"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_94783" src="/boxset_card/94783?collection_id=8&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="20986"
          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">
              304
            </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>
              Darksteel Plate


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact — Equipment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $7.81

                    <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">
                $3.20
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.33
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="20986"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_20986" src="/boxset_card/20986?collection_id=8&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="49437"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              250
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mh1 ss-common ss-fw ss-2x mr-4"></i>
              Snow-Covered Plains


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Basic Snow 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.91

                    <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">
                <div class="flex items-center gap-2">
                  $7.80

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.52
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $4.40
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.29
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="49437"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_49437" src="/boxset_card/49437?collection_id=8&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="47311"
          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">
              31
            </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-mythic ss-fw ss-2x mr-4"></i>
              Avacyn&#39;s Memorial


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-5'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $7.79

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $6.40
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.68
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="47311"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_47311" src="/boxset_card/47311?collection_id=8&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="17235"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              140
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-dst ss-uncommon ss-fw ss-2x mr-4"></i>
              Skullclamp


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact — Equipment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $6.74

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      6%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $6.40
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.83
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="17235"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_17235" src="/boxset_card/17235?collection_id=8&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="83902"
          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">
              CN2-22
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-rare ss-fw ss-2x mr-4"></i>
              Recruiter of the Guard


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Human Soldier
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $6.62

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      7%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $4.80
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.48
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="83902"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_83902" src="/boxset_card/83902?collection_id=8&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="88007"
          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">
              C19-217
            </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>
              Lightning Greaves


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact — Equipment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $6.12

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      14%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $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.53
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="88007"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_88007" src="/boxset_card/88007?collection_id=8&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="28957"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              218
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-afc ss-rare ss-fw ss-2x mr-4"></i>
              Sword of the Animist


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Artifact — Equipment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $5.97

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.40
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.37
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="28957"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_28957" src="/boxset_card/28957?collection_id=8&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="20079"
          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">
              39
            </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>
              Wrath of God


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $5.81

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.45
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="20079"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_20079" src="/boxset_card/20079?collection_id=8&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="41915"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              268
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-neo ss-rare ss-fw ss-2x mr-4"></i>
              Eiganjo, Seat of the Empire


            </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">
                  $5.51

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      4%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $4.30
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.21
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="41915"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_41915" src="/boxset_card/41915?collection_id=8&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="28901"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              199
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-afc ss-rare ss-fw ss-2x mr-4"></i>
              Basilisk Collar


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact — Equipment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $5.46

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $2.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.44
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="28901"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_28901" src="/boxset_card/28901?collection_id=8&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="72268"
          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">
              12
            </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>
              Loran of the Third Path


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Human Artificer
            </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">
                  $4.65

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $4.70
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.30
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="72268"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_72268" src="/boxset_card/72268?collection_id=8&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="43516"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              1
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-pmei ss-rare ss-fw ss-2x mr-4"></i>
              Reliquary Tower


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $4.25

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      5%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $4.20
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.20
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="43516"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_43516" src="/boxset_card/43516?collection_id=8&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="11420"
          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">
              11
            </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>
              Armored Skyhunter


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Cat 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-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">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.96

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $3.00
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.35
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="11420"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_11420" src="/boxset_card/11420?collection_id=8&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="11490"
          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">
              34
            </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>
              Open the Armory


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </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-50 text-badge-text">
                      ↑
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.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.40
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="11490"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_11490" src="/boxset_card/11490?collection_id=8&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12750"
          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">
              457
            </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>
              Blackblade Reforged


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Artifact — Equipment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.12

                    <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.90
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.36
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="12750"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12750" src="/boxset_card/12750?collection_id=8&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="28898"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              198
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-afc ss-rare ss-fw ss-2x mr-4"></i>
              Argentum Armor


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact — Equipment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-6'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.87

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      8%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $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.33
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="28898"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_28898" src="/boxset_card/28898?collection_id=8&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="79783"
          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">
              PCA-115
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Whispersilk Cloak


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact — Equipment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.75

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.30
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.44
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="79783"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_79783" src="/boxset_card/79783?collection_id=8&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="9860"
          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">
              225
            </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>
              Swiftfoot Boots


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact — Equipment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.46

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      5%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $3.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.38
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="9860"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_9860" src="/boxset_card/9860?collection_id=8&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="16439"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              92
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-voc ss-rare ss-fw ss-2x mr-4"></i>
              Knight of the White Orchid


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Human Knight
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.38

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.90
            </td>

            <td class="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="16439"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_16439" src="/boxset_card/16439?collection_id=8&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="73715"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              26
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-ltr ss-uncommon ss-fw ss-2x mr-4"></i>
              Reprieve


            </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>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.28

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      24%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.90
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.35
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="73715"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_73715" src="/boxset_card/73715?collection_id=8&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="16414"
          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">
              84
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-voc ss-uncommon ss-fw ss-2x mr-4"></i>
              Darksteel Mutation


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Enchantment — Aura
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.99

                    <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.45
            </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.97
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="16414"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_16414" src="/boxset_card/16414?collection_id=8&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="28518"
          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">
              69
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-afc ss-rare ss-fw ss-2x mr-4"></i>
              Puresteel Paladin


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Human Knight
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.93

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      17%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $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.43
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="28518"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_28518" src="/boxset_card/28518?collection_id=8&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="47505"
          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">
              94
            </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>
              Swords to Plowshares


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.89

                    <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="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.45
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="47505"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_47505" src="/boxset_card/47505?collection_id=8&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="47706"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              162
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mic 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.73

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.75
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.46
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="47706"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_47706" src="/boxset_card/47706?collection_id=8&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="33860"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              21
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-iko ss-mythic ss-fw ss-2x mr-4"></i>
              Luminous Broodmoth


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Insect
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.70

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      6%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.58
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="33860"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_33860" src="/boxset_card/33860?collection_id=8&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="20038"
          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">
              25
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2xm ss-uncommon ss-fw ss-2x mr-4"></i>
              Path to Exile


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.64

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      8%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.30
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.44
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="20038"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_20038" src="/boxset_card/20038?collection_id=8&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>
    </tbody>
  </table>

    <div class="flex flex-row items-center justify-between w-full p-6 space-x-4">
      <span class="pagy info">Displaying items 1-50 of 69 in total</span>
      <nav class="pagy series-nav" aria-label="Pages"><a role="link" aria-disabled="true" aria-label="Previous">&lt;</a><a role="link" aria-disabled="true" aria-current="page">1</a><a href="/load_collection?collection_id=8&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next">2</a><a href="/load_collection?collection_id=8&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next" aria-label="Next">&gt;</a></nav>
    </div>
</div>

</template></turbo-stream>