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

          <span class="text-sm font-medium text-nine-white">
            $93.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="Mox Amber" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/8/08c63a42-7969-4e07-ad98-c312156ad0d2.jpg?1783919748" />

        <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 Amber
        </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 Amber" src="https://cards.scryfall.io/large/front/0/8/08c63a42-7969-4e07-ad98-c312156ad0d2.jpg?1783919748" />
    </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">
                $93.97
              </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">
                $248.98
              </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">$70.00</span>
              <span class="text-xs text-grey-text">Credit: $91.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-08&quot;:222.33},{&quot;2026-06-10&quot;:222.33},{&quot;2026-06-11&quot;:219.21},{&quot;2026-06-12&quot;:219.21},{&quot;2026-06-13&quot;:219.21},{&quot;2026-06-14&quot;:219.21},{&quot;2026-06-15&quot;:219.21},{&quot;2026-06-16&quot;:219.21},{&quot;2026-06-17&quot;:219.21},{&quot;2026-06-18&quot;:219.21},{&quot;2026-06-19&quot;:220.33},{&quot;2026-06-20&quot;:220.33},{&quot;2026-06-21&quot;:220.33},{&quot;2026-06-22&quot;:220.33},{&quot;2026-06-24&quot;:224.33},{&quot;2026-06-25&quot;:224.33},{&quot;2026-06-26&quot;:224.33},{&quot;2026-06-27&quot;:224.33},{&quot;2026-06-28&quot;:224.33},{&quot;2026-06-29&quot;:224.33},{&quot;2026-06-30&quot;:224.33},{&quot;2026-07-01&quot;:224.33},{&quot;2026-07-02&quot;:224.33},{&quot;2026-07-03&quot;:224.33},{&quot;2026-07-04&quot;:224.33},{&quot;2026-07-05&quot;:224.33},{&quot;2026-07-06&quot;:229.38},{&quot;2026-07-07&quot;:229.38},{&quot;2026-07-08&quot;:229.38},{&quot;2026-07-09&quot;:229.38},{&quot;2026-07-10&quot;:228.42},{&quot;2026-07-11&quot;:228.42},{&quot;2026-07-12&quot;:228.42},{&quot;2026-07-13&quot;:228.42},{&quot;2026-07-14&quot;:228.42},{&quot;2026-07-15&quot;:228.42},{&quot;2026-07-16&quot;:228.42},{&quot;2026-07-17&quot;:228.42},{&quot;2026-07-18&quot;:228.42},{&quot;2026-07-19&quot;:228.42},{&quot;2026-07-20&quot;:228.42},{&quot;2026-07-21&quot;:228.42},{&quot;2026-07-23&quot;:228.42},{&quot;2026-07-25&quot;:232.12},{&quot;2026-07-26&quot;:232.12},{&quot;2026-07-27&quot;:232.12},{&quot;2026-07-29&quot;:232.12},{&quot;2026-07-30&quot;:232.12},{&quot;2026-07-31&quot;:232.12},{&quot;2026-08-01&quot;:232.12},{&quot;2026-08-02&quot;:232.12},{&quot;2026-08-03&quot;:232.12},{&quot;2026-08-04&quot;:232.12},{&quot;2026-08-05&quot;:235.4},{&quot;2026-08-07&quot;:235.4},{&quot;2026-08-08&quot;:235.4},{&quot;2026-08-09&quot;:235.4},{&quot;2026-08-10&quot;:235.4},{&quot;2026-08-11&quot;:235.4},{&quot;2026-08-12&quot;:235.4},{&quot;2026-08-13&quot;:235.4},{&quot;2026-08-14&quot;:235.4},{&quot;2026-08-15&quot;:235.4},{&quot;2026-08-16&quot;:235.4},{&quot;2026-08-17&quot;:235.4},{&quot;2026-08-18&quot;:235.4},{&quot;2026-08-19&quot;:235.4},{&quot;2026-08-20&quot;:235.4},{&quot;2026-08-21&quot;:235.4},{&quot;2026-08-22&quot;:239.2},{&quot;2026-08-23&quot;:239.2},{&quot;2026-08-24&quot;:239.2},{&quot;2026-08-25&quot;:239.2},{&quot;2026-08-26&quot;:243.61},{&quot;2026-08-27&quot;:243.61},{&quot;2026-08-28&quot;:246.81},{&quot;2026-08-29&quot;:246.81},{&quot;2026-08-30&quot;:246.81},{&quot;2026-08-31&quot;:246.81},{&quot;2026-09-01&quot;:246.81},{&quot;2026-09-02&quot;:246.81},{&quot;2026-09-03&quot;:246.81},{&quot;2026-09-04&quot;:246.81},{&quot;2026-09-05&quot;:246.81},{&quot;2026-09-06&quot;:246.81},{&quot;2026-09-07&quot;:248.98},{&quot;2026-09-08&quot;:248.98},{&quot;2026-09-09&quot;:248.98},{&quot;2026-09-10&quot;:248.98},{&quot;2026-09-11&quot;:248.98}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:86.92},{&quot;2026-06-10&quot;:87.02},{&quot;2026-06-11&quot;:87.25},{&quot;2026-06-12&quot;:87.31},{&quot;2026-06-13&quot;:87.25},{&quot;2026-06-14&quot;:87.25},{&quot;2026-06-15&quot;:87.25},{&quot;2026-06-16&quot;:87.59},{&quot;2026-06-17&quot;:87.59},{&quot;2026-06-18&quot;:87.59},{&quot;2026-06-19&quot;:87.6},{&quot;2026-06-20&quot;:87.6},{&quot;2026-06-21&quot;:87.76},{&quot;2026-06-22&quot;:87.76},{&quot;2026-06-24&quot;:88.48},{&quot;2026-06-25&quot;:88.64},{&quot;2026-06-26&quot;:88.64},{&quot;2026-06-27&quot;:89.02},{&quot;2026-06-28&quot;:88.54},{&quot;2026-06-29&quot;:88.54},{&quot;2026-06-30&quot;:88.54},{&quot;2026-07-01&quot;:88.49},{&quot;2026-07-02&quot;:88.53},{&quot;2026-07-03&quot;:88.56},{&quot;2026-07-04&quot;:88.74},{&quot;2026-07-05&quot;:88.74},{&quot;2026-07-06&quot;:89.17},{&quot;2026-07-07&quot;:89.25},{&quot;2026-07-08&quot;:88.85},{&quot;2026-07-09&quot;:88.85},{&quot;2026-07-10&quot;:88.85},{&quot;2026-07-11&quot;:89.05},{&quot;2026-07-12&quot;:89.05},{&quot;2026-07-13&quot;:89.05},{&quot;2026-07-14&quot;:89.1},{&quot;2026-07-15&quot;:89.13},{&quot;2026-07-16&quot;:89.13},{&quot;2026-07-17&quot;:89.18},{&quot;2026-07-18&quot;:89.38},{&quot;2026-07-19&quot;:89.38},{&quot;2026-07-20&quot;:89.38},{&quot;2026-07-21&quot;:89.38},{&quot;2026-07-23&quot;:89.38},{&quot;2026-07-25&quot;:89.81},{&quot;2026-07-26&quot;:89.89},{&quot;2026-07-27&quot;:90.05},{&quot;2026-07-29&quot;:90.05},{&quot;2026-07-30&quot;:90.05},{&quot;2026-07-31&quot;:90.14},{&quot;2026-08-01&quot;:90.14},{&quot;2026-08-02&quot;:90.14},{&quot;2026-08-03&quot;:90.14},{&quot;2026-08-04&quot;:90.38},{&quot;2026-08-05&quot;:90.38},{&quot;2026-08-07&quot;:90.56},{&quot;2026-08-08&quot;:91.32},{&quot;2026-08-09&quot;:91.96},{&quot;2026-08-10&quot;:92.24},{&quot;2026-08-11&quot;:93.43},{&quot;2026-08-12&quot;:93.43},{&quot;2026-08-13&quot;:93.43},{&quot;2026-08-14&quot;:93.43},{&quot;2026-08-15&quot;:93.43},{&quot;2026-08-16&quot;:93.43},{&quot;2026-08-17&quot;:93.43},{&quot;2026-08-18&quot;:93.91},{&quot;2026-08-19&quot;:93.91},{&quot;2026-08-20&quot;:93.91},{&quot;2026-08-21&quot;:94.15},{&quot;2026-08-22&quot;:94.07},{&quot;2026-08-23&quot;:93.73},{&quot;2026-08-24&quot;:94.29},{&quot;2026-08-25&quot;:94.29},{&quot;2026-08-26&quot;:94.14},{&quot;2026-08-27&quot;:94.37},{&quot;2026-08-28&quot;:94.17},{&quot;2026-08-29&quot;:94.17},{&quot;2026-08-30&quot;:94.32},{&quot;2026-08-31&quot;:94.32},{&quot;2026-09-01&quot;:94.32},{&quot;2026-09-02&quot;:94.32},{&quot;2026-09-03&quot;:94.79},{&quot;2026-09-04&quot;:94.79},{&quot;2026-09-05&quot;:94.79},{&quot;2026-09-06&quot;:94.79},{&quot;2026-09-07&quot;:94.59},{&quot;2026-09-08&quot;:94.48},{&quot;2026-09-09&quot;:94.48},{&quot;2026-09-10&quot;:93.97},{&quot;2026-09-11&quot;:93.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="95282"
  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">
            Sephiroth, Fabled SOLDIER 
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $71.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="Sephiroth, Fabled SOLDIER // Sephiroth, One-Winged Angel" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/3/83c82209-47d5-4c4c-b8ec-96ab907e15d3.jpg?1783906538" />

        <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">
            Sephiroth, Fabled SOLDIER 
        </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 Avatar 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-b'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <div data-controller="card-flip" class="flex flex-col items-center">
          <div
            data-action="click->card-flip#flip"
            class="flip-container cursor-pointer w-full max-w-xs mx-auto"
          >
            <div data-card-flip-target="card" class="flip-card">
              <div class="flip-card-front">
                <img class="w-full h-auto rounded-2xl" alt="Sephiroth, Fabled SOLDIER // Sephiroth, One-Winged Angel" src="https://cards.scryfall.io/large/front/8/3/83c82209-47d5-4c4c-b8ec-96ab907e15d3.jpg?1783906538" />
              </div>

              <div class="flip-card-back">
                <img class="w-full h-auto rounded-2xl" alt="Sephiroth, Fabled SOLDIER // Sephiroth, One-Winged Angel" src="https://cards.scryfall.io/large/back/8/3/83c82209-47d5-4c4c-b8ec-96ab907e15d3.jpg?1783906538" />
              </div>
            </div>
          </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:138.76},{&quot;2026-06-14&quot;:141.44},{&quot;2026-06-15&quot;:143.69},{&quot;2026-06-16&quot;:143.69},{&quot;2026-06-17&quot;:145.62},{&quot;2026-06-18&quot;:147.26},{&quot;2026-06-19&quot;:149.27},{&quot;2026-06-20&quot;:149.27},{&quot;2026-06-21&quot;:149.45},{&quot;2026-06-22&quot;:149.45},{&quot;2026-06-23&quot;:150.0},{&quot;2026-06-24&quot;:150.0},{&quot;2026-06-25&quot;:151.23},{&quot;2026-06-26&quot;:151.23},{&quot;2026-06-27&quot;:151.23},{&quot;2026-06-28&quot;:151.23},{&quot;2026-06-29&quot;:153.08},{&quot;2026-06-30&quot;:153.38},{&quot;2026-07-01&quot;:154.61},{&quot;2026-07-02&quot;:156.67},{&quot;2026-07-03&quot;:156.67},{&quot;2026-07-04&quot;:156.67},{&quot;2026-07-05&quot;:157.16},{&quot;2026-07-06&quot;:158.16},{&quot;2026-07-07&quot;:158.16},{&quot;2026-07-08&quot;:159.36},{&quot;2026-07-09&quot;:159.36},{&quot;2026-07-10&quot;:159.36},{&quot;2026-07-11&quot;:159.56},{&quot;2026-07-12&quot;:159.34},{&quot;2026-07-13&quot;:159.71},{&quot;2026-07-14&quot;:161.01},{&quot;2026-07-15&quot;:161.01},{&quot;2026-07-16&quot;:161.01},{&quot;2026-07-17&quot;:160.64},{&quot;2026-07-18&quot;:162.9},{&quot;2026-07-19&quot;:162.9},{&quot;2026-07-20&quot;:162.9},{&quot;2026-07-21&quot;:162.9},{&quot;2026-07-22&quot;:165.01},{&quot;2026-07-23&quot;:166.36},{&quot;2026-07-24&quot;:166.36},{&quot;2026-07-25&quot;:166.36},{&quot;2026-07-26&quot;:167.76},{&quot;2026-07-27&quot;:170.76},{&quot;2026-07-28&quot;:173.58},{&quot;2026-07-29&quot;:173.58},{&quot;2026-07-30&quot;:173.58},{&quot;2026-07-31&quot;:173.58},{&quot;2026-08-01&quot;:173.58},{&quot;2026-08-02&quot;:173.58},{&quot;2026-08-03&quot;:176.88},{&quot;2026-08-04&quot;:176.88},{&quot;2026-08-05&quot;:176.77},{&quot;2026-08-07&quot;:176.68},{&quot;2026-08-08&quot;:176.68},{&quot;2026-08-09&quot;:177.8},{&quot;2026-08-10&quot;:177.8},{&quot;2026-08-11&quot;:178.37},{&quot;2026-08-12&quot;:178.37},{&quot;2026-08-13&quot;:177.44},{&quot;2026-08-14&quot;:177.44},{&quot;2026-08-15&quot;:177.44},{&quot;2026-08-16&quot;:178.29},{&quot;2026-08-17&quot;:178.48},{&quot;2026-08-18&quot;:177.72},{&quot;2026-08-19&quot;:177.72},{&quot;2026-08-20&quot;:177.72},{&quot;2026-08-21&quot;:177.72},{&quot;2026-08-22&quot;:177.72},{&quot;2026-08-23&quot;:177.72},{&quot;2026-08-24&quot;:178.07},{&quot;2026-08-25&quot;:176.11},{&quot;2026-08-26&quot;:176.11},{&quot;2026-08-27&quot;:176.11},{&quot;2026-08-28&quot;:175.59},{&quot;2026-08-29&quot;:175.59},{&quot;2026-08-30&quot;:175.59},{&quot;2026-08-31&quot;:175.59},{&quot;2026-09-01&quot;:175.59},{&quot;2026-09-02&quot;:175.59},{&quot;2026-09-03&quot;:175.59},{&quot;2026-09-04&quot;:175.59},{&quot;2026-09-05&quot;:175.59},{&quot;2026-09-06&quot;:175.59},{&quot;2026-09-07&quot;:175.59},{&quot;2026-09-08&quot;:175.59},{&quot;2026-09-09&quot;:176.01},{&quot;2026-09-10&quot;:176.61},{&quot;2026-09-11&quot;:176.28}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:73.97},{&quot;2026-06-14&quot;:73.66},{&quot;2026-06-15&quot;:73.66},{&quot;2026-06-16&quot;:73.56},{&quot;2026-06-17&quot;:72.51},{&quot;2026-06-18&quot;:73.21},{&quot;2026-06-19&quot;:71.87},{&quot;2026-06-20&quot;:69.47},{&quot;2026-06-21&quot;:69.47},{&quot;2026-06-22&quot;:69.3},{&quot;2026-06-23&quot;:69.23},{&quot;2026-06-24&quot;:68.83},{&quot;2026-06-25&quot;:68.79},{&quot;2026-06-26&quot;:69.0},{&quot;2026-06-27&quot;:73.21},{&quot;2026-06-28&quot;:74.1},{&quot;2026-06-29&quot;:74.1},{&quot;2026-06-30&quot;:75.41},{&quot;2026-07-01&quot;:74.87},{&quot;2026-07-02&quot;:74.87},{&quot;2026-07-03&quot;:74.85},{&quot;2026-07-04&quot;:74.85},{&quot;2026-07-05&quot;:74.99},{&quot;2026-07-06&quot;:75.04},{&quot;2026-07-07&quot;:75.02},{&quot;2026-07-08&quot;:75.24},{&quot;2026-07-09&quot;:75.4},{&quot;2026-07-10&quot;:75.1},{&quot;2026-07-11&quot;:77.22},{&quot;2026-07-12&quot;:73.11},{&quot;2026-07-13&quot;:73.11},{&quot;2026-07-14&quot;:73.11},{&quot;2026-07-15&quot;:72.35},{&quot;2026-07-16&quot;:72.12},{&quot;2026-07-17&quot;:72.06},{&quot;2026-07-18&quot;:72.71},{&quot;2026-07-19&quot;:73.1},{&quot;2026-07-20&quot;:73.1},{&quot;2026-07-21&quot;:73.06},{&quot;2026-07-22&quot;:72.64},{&quot;2026-07-23&quot;:71.1},{&quot;2026-07-24&quot;:71.06},{&quot;2026-07-25&quot;:70.41},{&quot;2026-07-26&quot;:70.77},{&quot;2026-07-27&quot;:70.99},{&quot;2026-07-28&quot;:70.99},{&quot;2026-07-29&quot;:70.95},{&quot;2026-07-30&quot;:71.28},{&quot;2026-07-31&quot;:67.05},{&quot;2026-08-01&quot;:66.49},{&quot;2026-08-02&quot;:67.05},{&quot;2026-08-03&quot;:66.64},{&quot;2026-08-04&quot;:66.55},{&quot;2026-08-05&quot;:66.35},{&quot;2026-08-07&quot;:66.15},{&quot;2026-08-08&quot;:66.2},{&quot;2026-08-09&quot;:64.68},{&quot;2026-08-10&quot;:64.68},{&quot;2026-08-11&quot;:63.97},{&quot;2026-08-12&quot;:63.71},{&quot;2026-08-13&quot;:65.48},{&quot;2026-08-14&quot;:66.55},{&quot;2026-08-15&quot;:66.51},{&quot;2026-08-16&quot;:66.59},{&quot;2026-08-17&quot;:66.65},{&quot;2026-08-18&quot;:66.48},{&quot;2026-08-19&quot;:68.09},{&quot;2026-08-20&quot;:68.2},{&quot;2026-08-21&quot;:68.11},{&quot;2026-08-22&quot;:68.16},{&quot;2026-08-23&quot;:69.91},{&quot;2026-08-24&quot;:69.91},{&quot;2026-08-25&quot;:69.48},{&quot;2026-08-26&quot;:69.36},{&quot;2026-08-27&quot;:70.19},{&quot;2026-08-28&quot;:70.7},{&quot;2026-08-29&quot;:70.7},{&quot;2026-08-30&quot;:70.12},{&quot;2026-08-31&quot;:69.56},{&quot;2026-09-01&quot;:69.56},{&quot;2026-09-02&quot;:71.25},{&quot;2026-09-03&quot;:71.4},{&quot;2026-09-04&quot;:71.68},{&quot;2026-09-05&quot;:71.68},{&quot;2026-09-06&quot;:70.35},{&quot;2026-09-07&quot;:70.96},{&quot;2026-09-08&quot;:71.13},{&quot;2026-09-09&quot;:70.46},{&quot;2026-09-10&quot;:70.31},{&quot;2026-09-11&quot;:71.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="84582"
  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-war 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">
            Bolas&#39;s Citadel
        </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-100 text-badge-text">
              ↓
              3%
            </span>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Bolas&#39;s Citadel" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/2/d2124603-d20e-40eb-97f0-a66323397ac2.jpg?1783933451" />

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Bolas&#39;s Citadel" src="https://cards.scryfall.io/large/front/d/2/d2124603-d20e-40eb-97f0-a66323397ac2.jpg?1783933451" />
    </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.14
              </span>

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $19.30
              </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">$5.25</span>
              <span class="text-xs text-grey-text">Credit: $6.83</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.38},{&quot;2026-06-14&quot;:21.38},{&quot;2026-06-15&quot;:21.38},{&quot;2026-06-16&quot;:21.57},{&quot;2026-06-17&quot;:21.57},{&quot;2026-06-18&quot;:21.57},{&quot;2026-06-19&quot;:21.57},{&quot;2026-06-20&quot;:21.57},{&quot;2026-06-21&quot;:21.87},{&quot;2026-06-22&quot;:21.87},{&quot;2026-06-23&quot;:21.87},{&quot;2026-06-24&quot;:21.87},{&quot;2026-06-25&quot;:21.87},{&quot;2026-06-26&quot;:21.87},{&quot;2026-06-27&quot;:21.87},{&quot;2026-06-28&quot;:21.87},{&quot;2026-06-29&quot;:21.87},{&quot;2026-06-30&quot;:21.87},{&quot;2026-07-01&quot;:22.1},{&quot;2026-07-02&quot;:22.1},{&quot;2026-07-03&quot;:22.1},{&quot;2026-07-04&quot;:22.1},{&quot;2026-07-05&quot;:22.1},{&quot;2026-07-06&quot;:22.1},{&quot;2026-07-07&quot;:22.1},{&quot;2026-07-08&quot;:22.1},{&quot;2026-07-09&quot;:22.1},{&quot;2026-07-10&quot;:22.12},{&quot;2026-07-11&quot;:22.12},{&quot;2026-07-12&quot;:22.12},{&quot;2026-07-13&quot;:22.12},{&quot;2026-07-14&quot;:22.12},{&quot;2026-07-15&quot;:22.12},{&quot;2026-07-16&quot;:22.36},{&quot;2026-07-17&quot;:22.36},{&quot;2026-07-18&quot;:22.36},{&quot;2026-07-19&quot;:22.36},{&quot;2026-07-20&quot;:22.36},{&quot;2026-07-21&quot;:22.36},{&quot;2026-07-22&quot;:22.36},{&quot;2026-07-23&quot;:22.36},{&quot;2026-07-24&quot;:22.36},{&quot;2026-07-25&quot;:22.36},{&quot;2026-07-26&quot;:22.36},{&quot;2026-07-27&quot;:22.36},{&quot;2026-07-28&quot;:22.36},{&quot;2026-07-29&quot;:22.36},{&quot;2026-07-30&quot;:22.36},{&quot;2026-07-31&quot;:22.39},{&quot;2026-08-01&quot;:22.33},{&quot;2026-08-02&quot;:22.33},{&quot;2026-08-03&quot;:22.33},{&quot;2026-08-04&quot;:21.89},{&quot;2026-08-05&quot;:21.89},{&quot;2026-08-07&quot;:21.89},{&quot;2026-08-08&quot;:21.89},{&quot;2026-08-09&quot;:21.89},{&quot;2026-08-10&quot;:21.89},{&quot;2026-08-11&quot;:21.45},{&quot;2026-08-12&quot;:21.45},{&quot;2026-08-13&quot;:21.45},{&quot;2026-08-14&quot;:20.92},{&quot;2026-08-15&quot;:20.92},{&quot;2026-08-16&quot;:20.92},{&quot;2026-08-17&quot;:20.92},{&quot;2026-08-18&quot;:20.92},{&quot;2026-08-19&quot;:20.92},{&quot;2026-08-20&quot;:20.79},{&quot;2026-08-21&quot;:20.76},{&quot;2026-08-22&quot;:20.76},{&quot;2026-08-23&quot;:20.76},{&quot;2026-08-24&quot;:20.76},{&quot;2026-08-25&quot;:20.71},{&quot;2026-08-26&quot;:20.71},{&quot;2026-08-27&quot;:20.71},{&quot;2026-08-28&quot;:20.71},{&quot;2026-08-29&quot;:20.71},{&quot;2026-08-30&quot;:20.71},{&quot;2026-08-31&quot;:20.71},{&quot;2026-09-01&quot;:20.71},{&quot;2026-09-02&quot;:20.75},{&quot;2026-09-03&quot;:20.75},{&quot;2026-09-04&quot;:20.26},{&quot;2026-09-05&quot;:20.26},{&quot;2026-09-06&quot;:20.15},{&quot;2026-09-07&quot;:20.15},{&quot;2026-09-08&quot;:19.38},{&quot;2026-09-09&quot;:19.38},{&quot;2026-09-10&quot;:19.3},{&quot;2026-09-11&quot;:19.3}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:17.8},{&quot;2026-06-14&quot;:17.76},{&quot;2026-06-15&quot;:17.94},{&quot;2026-06-16&quot;:18.1},{&quot;2026-06-17&quot;:18.22},{&quot;2026-06-18&quot;:18.24},{&quot;2026-06-19&quot;:17.68},{&quot;2026-06-20&quot;:17.76},{&quot;2026-06-21&quot;:17.63},{&quot;2026-06-22&quot;:17.23},{&quot;2026-06-23&quot;:16.84},{&quot;2026-06-24&quot;:16.75},{&quot;2026-06-25&quot;:16.37},{&quot;2026-06-26&quot;:16.28},{&quot;2026-06-27&quot;:16.21},{&quot;2026-06-28&quot;:16.06},{&quot;2026-06-29&quot;:16.08},{&quot;2026-06-30&quot;:16.15},{&quot;2026-07-01&quot;:16.34},{&quot;2026-07-02&quot;:16.32},{&quot;2026-07-03&quot;:16.16},{&quot;2026-07-04&quot;:16.62},{&quot;2026-07-05&quot;:16.88},{&quot;2026-07-06&quot;:16.81},{&quot;2026-07-07&quot;:17.32},{&quot;2026-07-08&quot;:17.46},{&quot;2026-07-09&quot;:17.17},{&quot;2026-07-10&quot;:17.54},{&quot;2026-07-11&quot;:17.37},{&quot;2026-07-12&quot;:17.15},{&quot;2026-07-13&quot;:17.12},{&quot;2026-07-14&quot;:16.87},{&quot;2026-07-15&quot;:16.93},{&quot;2026-07-16&quot;:17.02},{&quot;2026-07-17&quot;:16.89},{&quot;2026-07-18&quot;:16.47},{&quot;2026-07-19&quot;:16.51},{&quot;2026-07-20&quot;:16.31},{&quot;2026-07-21&quot;:16.01},{&quot;2026-07-22&quot;:15.8},{&quot;2026-07-23&quot;:15.8},{&quot;2026-07-24&quot;:15.87},{&quot;2026-07-25&quot;:15.9},{&quot;2026-07-26&quot;:16.2},{&quot;2026-07-27&quot;:15.83},{&quot;2026-07-28&quot;:16.04},{&quot;2026-07-29&quot;:15.8},{&quot;2026-07-30&quot;:15.75},{&quot;2026-07-31&quot;:15.69},{&quot;2026-08-01&quot;:15.99},{&quot;2026-08-02&quot;:16.3},{&quot;2026-08-03&quot;:16.57},{&quot;2026-08-04&quot;:17.16},{&quot;2026-08-05&quot;:16.67},{&quot;2026-08-07&quot;:16.57},{&quot;2026-08-08&quot;:16.41},{&quot;2026-08-09&quot;:16.24},{&quot;2026-08-10&quot;:15.75},{&quot;2026-08-11&quot;:15.74},{&quot;2026-08-12&quot;:15.55},{&quot;2026-08-13&quot;:15.31},{&quot;2026-08-14&quot;:15.28},{&quot;2026-08-15&quot;:15.61},{&quot;2026-08-16&quot;:15.48},{&quot;2026-08-17&quot;:14.57},{&quot;2026-08-18&quot;:14.3},{&quot;2026-08-19&quot;:14.18},{&quot;2026-08-20&quot;:14.28},{&quot;2026-08-21&quot;:14.72},{&quot;2026-08-22&quot;:14.39},{&quot;2026-08-23&quot;:14.64},{&quot;2026-08-24&quot;:14.89},{&quot;2026-08-25&quot;:14.93},{&quot;2026-08-26&quot;:14.7},{&quot;2026-08-27&quot;:14.96},{&quot;2026-08-28&quot;:16.29},{&quot;2026-08-29&quot;:16.29},{&quot;2026-08-30&quot;:16.53},{&quot;2026-08-31&quot;:16.54},{&quot;2026-09-01&quot;:15.65},{&quot;2026-09-02&quot;:16.13},{&quot;2026-09-03&quot;:16.01},{&quot;2026-09-04&quot;:15.57},{&quot;2026-09-05&quot;:16.63},{&quot;2026-09-06&quot;:16.74},{&quot;2026-09-07&quot;:16.63},{&quot;2026-09-08&quot;:16.31},{&quot;2026-09-09&quot;:16.37},{&quot;2026-09-10&quot;:16.51},{&quot;2026-09-11&quot;:16.14}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="61286"
  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-rvr 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">
            Sacred Foundry
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $13.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="Sacred Foundry" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/0/8076a8c3-7c6c-4636-b5d8-9b09ee95f92c.jpg?1783913254" />

        <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">
            Sacred Foundry
        </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 — Mountain 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="Sacred Foundry" src="https://cards.scryfall.io/large/front/8/0/8076a8c3-7c6c-4636-b5d8-9b09ee95f92c.jpg?1783913254" />
    </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">
                $12.28
              </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">
                $13.66
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:13.31},{&quot;2026-06-14&quot;:13.29},{&quot;2026-06-15&quot;:13.29},{&quot;2026-06-16&quot;:13.29},{&quot;2026-06-17&quot;:13.29},{&quot;2026-06-18&quot;:13.29},{&quot;2026-06-19&quot;:13.29},{&quot;2026-06-20&quot;:13.29},{&quot;2026-06-21&quot;:13.29},{&quot;2026-06-22&quot;:13.29},{&quot;2026-06-23&quot;:13.24},{&quot;2026-06-24&quot;:13.24},{&quot;2026-06-25&quot;:13.24},{&quot;2026-06-26&quot;:13.24},{&quot;2026-06-27&quot;:13.24},{&quot;2026-06-28&quot;:13.42},{&quot;2026-06-29&quot;:13.42},{&quot;2026-06-30&quot;:13.42},{&quot;2026-07-01&quot;:13.42},{&quot;2026-07-02&quot;:13.31},{&quot;2026-07-03&quot;:13.31},{&quot;2026-07-04&quot;:13.31},{&quot;2026-07-05&quot;:13.31},{&quot;2026-07-06&quot;:13.31},{&quot;2026-07-07&quot;:13.31},{&quot;2026-07-08&quot;:13.31},{&quot;2026-07-09&quot;:13.31},{&quot;2026-07-10&quot;:13.31},{&quot;2026-07-11&quot;:13.22},{&quot;2026-07-12&quot;:13.22},{&quot;2026-07-13&quot;:13.23},{&quot;2026-07-14&quot;:13.23},{&quot;2026-07-15&quot;:13.23},{&quot;2026-07-16&quot;:13.23},{&quot;2026-07-17&quot;:13.23},{&quot;2026-07-18&quot;:13.16},{&quot;2026-07-19&quot;:13.16},{&quot;2026-07-20&quot;:13.21},{&quot;2026-07-21&quot;:13.21},{&quot;2026-07-22&quot;:13.21},{&quot;2026-07-23&quot;:13.21},{&quot;2026-07-24&quot;:13.17},{&quot;2026-07-25&quot;:13.17},{&quot;2026-07-26&quot;:13.17},{&quot;2026-07-27&quot;:13.17},{&quot;2026-07-28&quot;:13.17},{&quot;2026-07-29&quot;:13.17},{&quot;2026-07-30&quot;:13.17},{&quot;2026-07-31&quot;:13.22},{&quot;2026-08-01&quot;:13.22},{&quot;2026-08-02&quot;:13.22},{&quot;2026-08-03&quot;:13.22},{&quot;2026-08-04&quot;:13.22},{&quot;2026-08-05&quot;:13.22},{&quot;2026-08-07&quot;:13.45},{&quot;2026-08-08&quot;:13.45},{&quot;2026-08-09&quot;:13.45},{&quot;2026-08-10&quot;:13.45},{&quot;2026-08-11&quot;:13.53},{&quot;2026-08-12&quot;:13.53},{&quot;2026-08-13&quot;:13.53},{&quot;2026-08-14&quot;:13.53},{&quot;2026-08-15&quot;:13.57},{&quot;2026-08-16&quot;:13.6},{&quot;2026-08-17&quot;:13.6},{&quot;2026-08-18&quot;:13.62},{&quot;2026-08-19&quot;:13.62},{&quot;2026-08-20&quot;:13.62},{&quot;2026-08-21&quot;:13.62},{&quot;2026-08-22&quot;:13.62},{&quot;2026-08-23&quot;:13.62},{&quot;2026-08-24&quot;:13.62},{&quot;2026-08-25&quot;:13.54},{&quot;2026-08-26&quot;:13.54},{&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;:13.66},{&quot;2026-08-31&quot;:13.66},{&quot;2026-09-01&quot;:13.66},{&quot;2026-09-02&quot;:13.66},{&quot;2026-09-03&quot;:13.66},{&quot;2026-09-04&quot;:13.66},{&quot;2026-09-05&quot;:13.66},{&quot;2026-09-06&quot;:13.66},{&quot;2026-09-07&quot;:13.66},{&quot;2026-09-08&quot;:13.66},{&quot;2026-09-09&quot;:13.66},{&quot;2026-09-10&quot;:13.66},{&quot;2026-09-11&quot;:13.66}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:11.82},{&quot;2026-06-14&quot;:11.93},{&quot;2026-06-15&quot;:11.93},{&quot;2026-06-16&quot;:11.93},{&quot;2026-06-17&quot;:12.0},{&quot;2026-06-18&quot;:12.0},{&quot;2026-06-19&quot;:11.99},{&quot;2026-06-20&quot;:12.06},{&quot;2026-06-21&quot;:11.99},{&quot;2026-06-22&quot;:11.95},{&quot;2026-06-23&quot;:11.95},{&quot;2026-06-24&quot;:11.95},{&quot;2026-06-25&quot;:12.03},{&quot;2026-06-26&quot;:12.03},{&quot;2026-06-27&quot;:11.95},{&quot;2026-06-28&quot;:11.95},{&quot;2026-06-29&quot;:11.95},{&quot;2026-06-30&quot;:11.95},{&quot;2026-07-01&quot;:11.9},{&quot;2026-07-02&quot;:11.89},{&quot;2026-07-03&quot;:11.89},{&quot;2026-07-04&quot;:11.91},{&quot;2026-07-05&quot;:11.86},{&quot;2026-07-06&quot;:11.88},{&quot;2026-07-07&quot;:11.88},{&quot;2026-07-08&quot;:11.58},{&quot;2026-07-09&quot;:11.58},{&quot;2026-07-10&quot;:11.58},{&quot;2026-07-11&quot;:11.5},{&quot;2026-07-12&quot;:11.56},{&quot;2026-07-13&quot;:11.56},{&quot;2026-07-14&quot;:11.56},{&quot;2026-07-15&quot;:11.48},{&quot;2026-07-16&quot;:11.48},{&quot;2026-07-17&quot;:11.44},{&quot;2026-07-18&quot;:11.42},{&quot;2026-07-19&quot;:11.41},{&quot;2026-07-20&quot;:11.36},{&quot;2026-07-21&quot;:11.36},{&quot;2026-07-22&quot;:11.36},{&quot;2026-07-23&quot;:11.44},{&quot;2026-07-24&quot;:11.47},{&quot;2026-07-25&quot;:11.61},{&quot;2026-07-26&quot;:11.61},{&quot;2026-07-27&quot;:11.5},{&quot;2026-07-28&quot;:11.5},{&quot;2026-07-29&quot;:11.51},{&quot;2026-07-30&quot;:11.61},{&quot;2026-07-31&quot;:11.84},{&quot;2026-08-01&quot;:11.84},{&quot;2026-08-02&quot;:11.84},{&quot;2026-08-03&quot;:11.89},{&quot;2026-08-04&quot;:11.89},{&quot;2026-08-05&quot;:11.89},{&quot;2026-08-07&quot;:11.89},{&quot;2026-08-08&quot;:11.89},{&quot;2026-08-09&quot;:11.89},{&quot;2026-08-10&quot;:11.89},{&quot;2026-08-11&quot;:11.94},{&quot;2026-08-12&quot;:11.94},{&quot;2026-08-13&quot;:11.94},{&quot;2026-08-14&quot;:11.92},{&quot;2026-08-15&quot;:11.92},{&quot;2026-08-16&quot;:11.92},{&quot;2026-08-17&quot;:11.89},{&quot;2026-08-18&quot;:11.89},{&quot;2026-08-19&quot;:11.93},{&quot;2026-08-20&quot;:11.93},{&quot;2026-08-21&quot;:11.93},{&quot;2026-08-22&quot;:11.58},{&quot;2026-08-23&quot;:11.76},{&quot;2026-08-24&quot;:11.76},{&quot;2026-08-25&quot;:11.76},{&quot;2026-08-26&quot;:11.76},{&quot;2026-08-27&quot;:11.76},{&quot;2026-08-28&quot;:11.76},{&quot;2026-08-29&quot;:11.76},{&quot;2026-08-30&quot;:11.93},{&quot;2026-08-31&quot;:11.91},{&quot;2026-09-01&quot;:11.91},{&quot;2026-09-02&quot;:11.89},{&quot;2026-09-03&quot;:11.89},{&quot;2026-09-04&quot;:11.84},{&quot;2026-09-05&quot;:11.84},{&quot;2026-09-06&quot;:11.75},{&quot;2026-09-07&quot;:11.89},{&quot;2026-09-08&quot;:12.26},{&quot;2026-09-09&quot;:12.31},{&quot;2026-09-10&quot;:12.31},{&quot;2026-09-11&quot;:12.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="19351"
  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-dmc 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">
            Dihada, Binder of Wills
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Dihada, Binder of Wills" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/d/ddeb54d6-a600-42b9-98df-20f8d58caed8.jpg?1783921477" />

        <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">
            Dihada, Binder of Wills
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Dihada, Binder of Wills" src="https://cards.scryfall.io/large/front/d/d/ddeb54d6-a600-42b9-98df-20f8d58caed8.jpg?1783921477" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

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

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

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$10.50</span>
              <span class="text-xs text-grey-text">Credit: $13.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;:19.7},{&quot;2026-06-14&quot;:19.7},{&quot;2026-06-15&quot;:19.7},{&quot;2026-06-16&quot;:19.92},{&quot;2026-06-17&quot;:19.84},{&quot;2026-06-18&quot;:20.07},{&quot;2026-06-19&quot;:20.35},{&quot;2026-06-20&quot;:20.35},{&quot;2026-06-21&quot;:20.31},{&quot;2026-06-22&quot;:20.31},{&quot;2026-06-23&quot;:20.31},{&quot;2026-06-24&quot;:20.32},{&quot;2026-06-25&quot;:20.32},{&quot;2026-06-26&quot;:20.32},{&quot;2026-06-27&quot;:20.32},{&quot;2026-06-28&quot;:20.31},{&quot;2026-06-29&quot;:20.31},{&quot;2026-06-30&quot;:20.17},{&quot;2026-07-01&quot;:20.65},{&quot;2026-07-02&quot;:20.75},{&quot;2026-07-03&quot;:20.89},{&quot;2026-07-04&quot;:20.89},{&quot;2026-07-05&quot;:20.73},{&quot;2026-07-06&quot;:22.66},{&quot;2026-07-07&quot;:22.54},{&quot;2026-07-08&quot;:22.54},{&quot;2026-07-09&quot;:22.54},{&quot;2026-07-10&quot;:22.05},{&quot;2026-07-11&quot;:21.92},{&quot;2026-07-12&quot;:21.81},{&quot;2026-07-13&quot;:21.54},{&quot;2026-07-14&quot;:21.04},{&quot;2026-07-15&quot;:21.04},{&quot;2026-07-16&quot;:20.78},{&quot;2026-07-17&quot;:20.08},{&quot;2026-07-18&quot;:19.6},{&quot;2026-07-19&quot;:19.3},{&quot;2026-07-20&quot;:19.3},{&quot;2026-07-21&quot;:19.3},{&quot;2026-07-22&quot;:18.5},{&quot;2026-07-23&quot;:18.38},{&quot;2026-07-24&quot;:15.88},{&quot;2026-07-25&quot;:15.01},{&quot;2026-07-26&quot;:15.23},{&quot;2026-07-27&quot;:15.49},{&quot;2026-07-28&quot;:15.48},{&quot;2026-07-29&quot;:15.59},{&quot;2026-07-30&quot;:15.67},{&quot;2026-07-31&quot;:15.25},{&quot;2026-08-01&quot;:15.25},{&quot;2026-08-02&quot;:15.26},{&quot;2026-08-03&quot;:15.33},{&quot;2026-08-04&quot;:15.09},{&quot;2026-08-05&quot;:15.16},{&quot;2026-08-07&quot;:15.21},{&quot;2026-08-08&quot;:15.21},{&quot;2026-08-09&quot;:15.21},{&quot;2026-08-10&quot;:15.53},{&quot;2026-08-11&quot;:15.52},{&quot;2026-08-12&quot;:15.52},{&quot;2026-08-13&quot;:15.52},{&quot;2026-08-14&quot;:15.28},{&quot;2026-08-15&quot;:15.28},{&quot;2026-08-16&quot;:15.0},{&quot;2026-08-17&quot;:15.04},{&quot;2026-08-18&quot;:15.01},{&quot;2026-08-19&quot;:14.52},{&quot;2026-08-20&quot;:14.46},{&quot;2026-08-21&quot;:14.45},{&quot;2026-08-22&quot;:14.4},{&quot;2026-08-23&quot;:14.4},{&quot;2026-08-24&quot;:14.25},{&quot;2026-08-25&quot;:14.25},{&quot;2026-08-26&quot;:14.28},{&quot;2026-08-27&quot;:14.23},{&quot;2026-08-28&quot;:14.02},{&quot;2026-08-29&quot;:14.02},{&quot;2026-08-30&quot;:13.88},{&quot;2026-08-31&quot;:13.94},{&quot;2026-09-01&quot;:13.93},{&quot;2026-09-02&quot;:14.0},{&quot;2026-09-03&quot;:14.0},{&quot;2026-09-04&quot;:13.97},{&quot;2026-09-05&quot;:13.97},{&quot;2026-09-06&quot;:14.15},{&quot;2026-09-07&quot;:14.03},{&quot;2026-09-08&quot;:13.92},{&quot;2026-09-09&quot;:13.74},{&quot;2026-09-10&quot;:13.78},{&quot;2026-09-11&quot;:13.76}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:14.18},{&quot;2026-06-14&quot;:14.24},{&quot;2026-06-15&quot;:14.23},{&quot;2026-06-16&quot;:14.19},{&quot;2026-06-17&quot;:14.19},{&quot;2026-06-18&quot;:14.19},{&quot;2026-06-19&quot;:14.11},{&quot;2026-06-20&quot;:14.11},{&quot;2026-06-21&quot;:14.16},{&quot;2026-06-22&quot;:14.16},{&quot;2026-06-23&quot;:14.06},{&quot;2026-06-24&quot;:13.93},{&quot;2026-06-25&quot;:13.87},{&quot;2026-06-26&quot;:13.87},{&quot;2026-06-27&quot;:13.91},{&quot;2026-06-28&quot;:13.91},{&quot;2026-06-29&quot;:13.8},{&quot;2026-06-30&quot;:13.71},{&quot;2026-07-01&quot;:13.71},{&quot;2026-07-02&quot;:13.76},{&quot;2026-07-03&quot;:13.74},{&quot;2026-07-04&quot;:13.72},{&quot;2026-07-05&quot;:13.68},{&quot;2026-07-06&quot;:13.71},{&quot;2026-07-07&quot;:13.72},{&quot;2026-07-08&quot;:13.72},{&quot;2026-07-09&quot;:13.72},{&quot;2026-07-10&quot;:13.7},{&quot;2026-07-11&quot;:13.7},{&quot;2026-07-12&quot;:13.67},{&quot;2026-07-13&quot;:13.67},{&quot;2026-07-14&quot;:13.72},{&quot;2026-07-15&quot;:13.72},{&quot;2026-07-16&quot;:13.73},{&quot;2026-07-17&quot;:13.73},{&quot;2026-07-18&quot;:13.73},{&quot;2026-07-19&quot;:13.73},{&quot;2026-07-20&quot;:13.98},{&quot;2026-07-21&quot;:13.98},{&quot;2026-07-22&quot;:13.98},{&quot;2026-07-23&quot;:13.92},{&quot;2026-07-24&quot;:13.92},{&quot;2026-07-25&quot;:13.92},{&quot;2026-07-26&quot;:13.92},{&quot;2026-07-27&quot;:13.83},{&quot;2026-07-28&quot;:13.73},{&quot;2026-07-29&quot;:13.68},{&quot;2026-07-30&quot;:13.68},{&quot;2026-07-31&quot;:13.75},{&quot;2026-08-01&quot;:13.75},{&quot;2026-08-02&quot;:13.77},{&quot;2026-08-03&quot;:13.75},{&quot;2026-08-04&quot;:13.69},{&quot;2026-08-05&quot;:13.69},{&quot;2026-08-07&quot;:13.64},{&quot;2026-08-08&quot;:13.52},{&quot;2026-08-09&quot;:13.44},{&quot;2026-08-10&quot;:13.44},{&quot;2026-08-11&quot;:13.5},{&quot;2026-08-12&quot;:13.55},{&quot;2026-08-13&quot;:13.55},{&quot;2026-08-14&quot;:13.55},{&quot;2026-08-15&quot;:13.55},{&quot;2026-08-16&quot;:13.55},{&quot;2026-08-17&quot;:13.55},{&quot;2026-08-18&quot;:13.54},{&quot;2026-08-19&quot;:13.54},{&quot;2026-08-20&quot;:13.54},{&quot;2026-08-21&quot;:13.55},{&quot;2026-08-22&quot;:13.64},{&quot;2026-08-23&quot;:13.64},{&quot;2026-08-24&quot;:13.63},{&quot;2026-08-25&quot;:13.6},{&quot;2026-08-26&quot;:13.5},{&quot;2026-08-27&quot;:13.33},{&quot;2026-08-28&quot;:13.27},{&quot;2026-08-29&quot;:13.27},{&quot;2026-08-30&quot;:13.27},{&quot;2026-08-31&quot;:13.28},{&quot;2026-09-01&quot;:13.28},{&quot;2026-09-02&quot;:13.36},{&quot;2026-09-03&quot;:13.34},{&quot;2026-09-04&quot;:13.34},{&quot;2026-09-05&quot;:13.33},{&quot;2026-09-06&quot;:13.33},{&quot;2026-09-07&quot;:13.33},{&quot;2026-09-08&quot;:13.33},{&quot;2026-09-09&quot;:13.33},{&quot;2026-09-10&quot;:13.33},{&quot;2026-09-11&quot;:13.33}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="41942"
  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">
            Takenuma, Abandoned Mire
        </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">
              ↑
              9%
            </span>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Takenuma, Abandoned Mire" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/9/499037cc-a577-41cb-8ca2-5e117945634f.jpg?1783923812" />

        <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">
            Takenuma, Abandoned Mire
        </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="Takenuma, Abandoned Mire" src="https://cards.scryfall.io/large/front/4/9/499037cc-a577-41cb-8ca2-5e117945634f.jpg?1783923812" />
    </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.48
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:11.4},{&quot;2026-06-14&quot;:11.23},{&quot;2026-06-15&quot;:11.23},{&quot;2026-06-16&quot;:11.23},{&quot;2026-06-17&quot;:11.23},{&quot;2026-06-18&quot;:11.23},{&quot;2026-06-19&quot;:11.23},{&quot;2026-06-20&quot;:11.23},{&quot;2026-06-21&quot;:11.3},{&quot;2026-06-22&quot;:11.26},{&quot;2026-06-23&quot;:11.36},{&quot;2026-06-24&quot;:11.35},{&quot;2026-06-25&quot;:11.34},{&quot;2026-06-26&quot;:11.34},{&quot;2026-06-27&quot;:11.31},{&quot;2026-06-28&quot;:11.31},{&quot;2026-06-29&quot;:11.31},{&quot;2026-06-30&quot;:11.34},{&quot;2026-07-01&quot;:11.4},{&quot;2026-07-02&quot;:11.4},{&quot;2026-07-03&quot;:11.4},{&quot;2026-07-04&quot;:11.4},{&quot;2026-07-05&quot;:11.52},{&quot;2026-07-06&quot;:11.52},{&quot;2026-07-07&quot;:11.41},{&quot;2026-07-08&quot;:11.41},{&quot;2026-07-09&quot;:11.54},{&quot;2026-07-10&quot;:11.41},{&quot;2026-07-11&quot;:11.4},{&quot;2026-07-12&quot;:11.4},{&quot;2026-07-13&quot;:11.4},{&quot;2026-07-14&quot;:11.53},{&quot;2026-07-15&quot;:11.51},{&quot;2026-07-16&quot;:11.51},{&quot;2026-07-17&quot;:11.53},{&quot;2026-07-18&quot;:11.53},{&quot;2026-07-19&quot;:11.53},{&quot;2026-07-20&quot;:11.53},{&quot;2026-07-21&quot;:11.65},{&quot;2026-07-22&quot;:11.65},{&quot;2026-07-23&quot;:11.65},{&quot;2026-07-24&quot;:11.7},{&quot;2026-07-25&quot;:11.79},{&quot;2026-07-26&quot;:11.79},{&quot;2026-07-27&quot;:11.77},{&quot;2026-07-28&quot;:11.91},{&quot;2026-07-29&quot;:11.91},{&quot;2026-07-30&quot;:11.91},{&quot;2026-07-31&quot;:11.88},{&quot;2026-08-01&quot;:11.88},{&quot;2026-08-02&quot;:11.88},{&quot;2026-08-03&quot;:12.16},{&quot;2026-08-04&quot;:12.16},{&quot;2026-08-05&quot;:12.5},{&quot;2026-08-07&quot;:12.5},{&quot;2026-08-08&quot;:12.5},{&quot;2026-08-09&quot;:12.47},{&quot;2026-08-10&quot;:12.43},{&quot;2026-08-11&quot;:12.5},{&quot;2026-08-12&quot;:12.5},{&quot;2026-08-13&quot;:12.5},{&quot;2026-08-14&quot;:12.5},{&quot;2026-08-15&quot;:12.59},{&quot;2026-08-16&quot;:12.52},{&quot;2026-08-17&quot;:12.52},{&quot;2026-08-18&quot;:12.52},{&quot;2026-08-19&quot;:12.61},{&quot;2026-08-20&quot;:12.65},{&quot;2026-08-21&quot;:12.65},{&quot;2026-08-22&quot;:12.77},{&quot;2026-08-23&quot;:12.77},{&quot;2026-08-24&quot;:12.77},{&quot;2026-08-25&quot;:12.77},{&quot;2026-08-26&quot;:12.88},{&quot;2026-08-27&quot;:12.88},{&quot;2026-08-28&quot;:12.82},{&quot;2026-08-29&quot;:12.82},{&quot;2026-08-30&quot;:12.82},{&quot;2026-08-31&quot;:12.82},{&quot;2026-09-01&quot;:12.82},{&quot;2026-09-02&quot;:12.82},{&quot;2026-09-03&quot;:12.82},{&quot;2026-09-04&quot;:12.82},{&quot;2026-09-05&quot;:12.82},{&quot;2026-09-06&quot;:12.76},{&quot;2026-09-07&quot;:12.51},{&quot;2026-09-08&quot;:12.49},{&quot;2026-09-09&quot;:12.3},{&quot;2026-09-10&quot;:12.22},{&quot;2026-09-11&quot;:11.94}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:10.97},{&quot;2026-06-14&quot;:10.95},{&quot;2026-06-15&quot;:10.74},{&quot;2026-06-16&quot;:10.89},{&quot;2026-06-17&quot;:10.92},{&quot;2026-06-18&quot;:10.82},{&quot;2026-06-19&quot;:10.57},{&quot;2026-06-20&quot;:10.62},{&quot;2026-06-21&quot;:10.6},{&quot;2026-06-22&quot;:10.46},{&quot;2026-06-23&quot;:10.07},{&quot;2026-06-24&quot;:10.2},{&quot;2026-06-25&quot;:10.11},{&quot;2026-06-26&quot;:10.28},{&quot;2026-06-27&quot;:10.43},{&quot;2026-06-28&quot;:10.57},{&quot;2026-06-29&quot;:10.47},{&quot;2026-06-30&quot;:10.66},{&quot;2026-07-01&quot;:10.71},{&quot;2026-07-02&quot;:10.58},{&quot;2026-07-03&quot;:10.68},{&quot;2026-07-04&quot;:10.86},{&quot;2026-07-05&quot;:10.91},{&quot;2026-07-06&quot;:10.98},{&quot;2026-07-07&quot;:11.1},{&quot;2026-07-08&quot;:11.13},{&quot;2026-07-09&quot;:11.42},{&quot;2026-07-10&quot;:11.35},{&quot;2026-07-11&quot;:11.35},{&quot;2026-07-12&quot;:11.29},{&quot;2026-07-13&quot;:11.17},{&quot;2026-07-14&quot;:11.39},{&quot;2026-07-15&quot;:11.49},{&quot;2026-07-16&quot;:11.38},{&quot;2026-07-17&quot;:11.46},{&quot;2026-07-18&quot;:11.51},{&quot;2026-07-19&quot;:11.22},{&quot;2026-07-20&quot;:11.56},{&quot;2026-07-21&quot;:11.63},{&quot;2026-07-22&quot;:11.63},{&quot;2026-07-23&quot;:11.0},{&quot;2026-07-24&quot;:11.31},{&quot;2026-07-25&quot;:11.27},{&quot;2026-07-26&quot;:11.59},{&quot;2026-07-27&quot;:11.9},{&quot;2026-07-28&quot;:12.53},{&quot;2026-07-29&quot;:12.39},{&quot;2026-07-30&quot;:12.38},{&quot;2026-07-31&quot;:12.0},{&quot;2026-08-01&quot;:11.91},{&quot;2026-08-02&quot;:11.57},{&quot;2026-08-03&quot;:11.17},{&quot;2026-08-04&quot;:11.17},{&quot;2026-08-05&quot;:11.04},{&quot;2026-08-07&quot;:11.3},{&quot;2026-08-08&quot;:11.45},{&quot;2026-08-09&quot;:11.46},{&quot;2026-08-10&quot;:11.35},{&quot;2026-08-11&quot;:11.02},{&quot;2026-08-12&quot;:10.99},{&quot;2026-08-13&quot;:10.96},{&quot;2026-08-14&quot;:10.98},{&quot;2026-08-15&quot;:10.81},{&quot;2026-08-16&quot;:11.05},{&quot;2026-08-17&quot;:11.13},{&quot;2026-08-18&quot;:11.26},{&quot;2026-08-19&quot;:11.21},{&quot;2026-08-20&quot;:11.27},{&quot;2026-08-21&quot;:11.17},{&quot;2026-08-22&quot;:10.59},{&quot;2026-08-23&quot;:10.43},{&quot;2026-08-24&quot;:10.63},{&quot;2026-08-25&quot;:10.89},{&quot;2026-08-26&quot;:10.73},{&quot;2026-08-27&quot;:10.67},{&quot;2026-08-28&quot;:10.71},{&quot;2026-08-29&quot;:10.71},{&quot;2026-08-30&quot;:10.8},{&quot;2026-08-31&quot;:11.11},{&quot;2026-09-01&quot;:11.29},{&quot;2026-09-02&quot;:11.37},{&quot;2026-09-03&quot;:11.17},{&quot;2026-09-04&quot;:10.8},{&quot;2026-09-05&quot;:10.54},{&quot;2026-09-06&quot;:10.64},{&quot;2026-09-07&quot;:11.05},{&quot;2026-09-08&quot;:11.18},{&quot;2026-09-09&quot;:11.61},{&quot;2026-09-10&quot;:11.61},{&quot;2026-09-11&quot;:11.48}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="24343"
  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-dsk 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">
            Blazemire Verge
        </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">
              ↑
              4%
            </span>

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

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

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

        <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">
            Blazemire Verge
        </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="Blazemire Verge" src="https://cards.scryfall.io/large/front/d/1/d151c8e2-d715-470d-868a-f45191db9fa0.jpg?1783909431" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $10.77
              </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">
                $11.12
              </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">$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;2026-06-13&quot;:9.12},{&quot;2026-06-14&quot;:9.18},{&quot;2026-06-15&quot;:9.18},{&quot;2026-06-16&quot;:9.13},{&quot;2026-06-17&quot;:9.13},{&quot;2026-06-18&quot;:9.18},{&quot;2026-06-19&quot;:9.27},{&quot;2026-06-20&quot;:9.27},{&quot;2026-06-21&quot;:9.21},{&quot;2026-06-22&quot;:9.2},{&quot;2026-06-23&quot;:9.19},{&quot;2026-06-24&quot;:9.19},{&quot;2026-06-25&quot;:9.19},{&quot;2026-06-26&quot;:9.19},{&quot;2026-06-27&quot;:9.19},{&quot;2026-06-28&quot;:9.22},{&quot;2026-06-29&quot;:9.15},{&quot;2026-06-30&quot;:9.09},{&quot;2026-07-01&quot;:9.01},{&quot;2026-07-02&quot;:9.01},{&quot;2026-07-03&quot;:8.98},{&quot;2026-07-04&quot;:8.98},{&quot;2026-07-05&quot;:8.98},{&quot;2026-07-06&quot;:8.87},{&quot;2026-07-07&quot;:8.9},{&quot;2026-07-08&quot;:8.9},{&quot;2026-07-09&quot;:8.97},{&quot;2026-07-10&quot;:9.03},{&quot;2026-07-11&quot;:9.03},{&quot;2026-07-12&quot;:9.06},{&quot;2026-07-13&quot;:9.06},{&quot;2026-07-14&quot;:9.1},{&quot;2026-07-15&quot;:9.1},{&quot;2026-07-16&quot;:9.02},{&quot;2026-07-17&quot;:9.02},{&quot;2026-07-18&quot;:9.02},{&quot;2026-07-19&quot;:8.98},{&quot;2026-07-20&quot;:8.98},{&quot;2026-07-21&quot;:8.99},{&quot;2026-07-22&quot;:8.99},{&quot;2026-07-23&quot;:9.1},{&quot;2026-07-24&quot;:9.1},{&quot;2026-07-25&quot;:9.1},{&quot;2026-07-26&quot;:9.15},{&quot;2026-07-27&quot;:9.15},{&quot;2026-07-28&quot;:9.16},{&quot;2026-07-29&quot;:9.37},{&quot;2026-07-30&quot;:9.37},{&quot;2026-07-31&quot;:9.43},{&quot;2026-08-01&quot;:9.43},{&quot;2026-08-02&quot;:9.43},{&quot;2026-08-03&quot;:9.43},{&quot;2026-08-04&quot;:9.43},{&quot;2026-08-05&quot;:9.43},{&quot;2026-08-07&quot;:9.43},{&quot;2026-08-08&quot;:9.64},{&quot;2026-08-09&quot;:9.64},{&quot;2026-08-10&quot;:9.64},{&quot;2026-08-11&quot;:9.59},{&quot;2026-08-12&quot;:9.59},{&quot;2026-08-13&quot;:9.59},{&quot;2026-08-14&quot;:9.48},{&quot;2026-08-15&quot;:9.77},{&quot;2026-08-16&quot;:9.77},{&quot;2026-08-17&quot;:9.71},{&quot;2026-08-18&quot;:9.87},{&quot;2026-08-19&quot;:9.96},{&quot;2026-08-20&quot;:9.95},{&quot;2026-08-21&quot;:10.17},{&quot;2026-08-22&quot;:11.16},{&quot;2026-08-23&quot;:11.1},{&quot;2026-08-24&quot;:11.0},{&quot;2026-08-25&quot;:11.0},{&quot;2026-08-26&quot;:11.0},{&quot;2026-08-27&quot;:11.0},{&quot;2026-08-28&quot;:10.99},{&quot;2026-08-29&quot;:10.99},{&quot;2026-08-30&quot;:10.93},{&quot;2026-08-31&quot;:11.13},{&quot;2026-09-01&quot;:11.18},{&quot;2026-09-02&quot;:11.18},{&quot;2026-09-03&quot;:11.0},{&quot;2026-09-04&quot;:11.0},{&quot;2026-09-05&quot;:11.0},{&quot;2026-09-06&quot;:11.09},{&quot;2026-09-07&quot;:11.12},{&quot;2026-09-08&quot;:11.12},{&quot;2026-09-09&quot;:11.11},{&quot;2026-09-10&quot;:11.11},{&quot;2026-09-11&quot;:11.12}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:8.72},{&quot;2026-06-14&quot;:8.45},{&quot;2026-06-15&quot;:8.57},{&quot;2026-06-16&quot;:8.9},{&quot;2026-06-17&quot;:8.68},{&quot;2026-06-18&quot;:8.74},{&quot;2026-06-19&quot;:8.74},{&quot;2026-06-20&quot;:8.74},{&quot;2026-06-21&quot;:8.59},{&quot;2026-06-22&quot;:8.7},{&quot;2026-06-23&quot;:8.74},{&quot;2026-06-24&quot;:8.67},{&quot;2026-06-25&quot;:8.53},{&quot;2026-06-26&quot;:8.57},{&quot;2026-06-27&quot;:8.49},{&quot;2026-06-28&quot;:8.41},{&quot;2026-06-29&quot;:8.65},{&quot;2026-06-30&quot;:8.66},{&quot;2026-07-01&quot;:8.58},{&quot;2026-07-02&quot;:8.1},{&quot;2026-07-03&quot;:7.96},{&quot;2026-07-04&quot;:7.99},{&quot;2026-07-05&quot;:7.99},{&quot;2026-07-06&quot;:8.37},{&quot;2026-07-07&quot;:8.73},{&quot;2026-07-08&quot;:8.67},{&quot;2026-07-09&quot;:8.71},{&quot;2026-07-10&quot;:8.54},{&quot;2026-07-11&quot;:8.91},{&quot;2026-07-12&quot;:9.04},{&quot;2026-07-13&quot;:9.04},{&quot;2026-07-14&quot;:8.98},{&quot;2026-07-15&quot;:8.59},{&quot;2026-07-16&quot;:8.48},{&quot;2026-07-17&quot;:8.4},{&quot;2026-07-18&quot;:8.37},{&quot;2026-07-19&quot;:8.37},{&quot;2026-07-20&quot;:8.18},{&quot;2026-07-21&quot;:8.05},{&quot;2026-07-22&quot;:8.14},{&quot;2026-07-23&quot;:8.6},{&quot;2026-07-24&quot;:8.81},{&quot;2026-07-25&quot;:8.76},{&quot;2026-07-26&quot;:8.98},{&quot;2026-07-27&quot;:9.18},{&quot;2026-07-28&quot;:8.85},{&quot;2026-07-29&quot;:8.59},{&quot;2026-07-30&quot;:8.6},{&quot;2026-07-31&quot;:8.63},{&quot;2026-08-01&quot;:8.63},{&quot;2026-08-02&quot;:8.4},{&quot;2026-08-03&quot;:8.55},{&quot;2026-08-04&quot;:8.6},{&quot;2026-08-05&quot;:8.54},{&quot;2026-08-07&quot;:8.06},{&quot;2026-08-08&quot;:8.07},{&quot;2026-08-09&quot;:7.98},{&quot;2026-08-10&quot;:8.78},{&quot;2026-08-11&quot;:9.35},{&quot;2026-08-12&quot;:9.75},{&quot;2026-08-13&quot;:10.32},{&quot;2026-08-14&quot;:10.29},{&quot;2026-08-15&quot;:10.13},{&quot;2026-08-16&quot;:9.28},{&quot;2026-08-17&quot;:9.12},{&quot;2026-08-18&quot;:9.67},{&quot;2026-08-19&quot;:9.7},{&quot;2026-08-20&quot;:9.89},{&quot;2026-08-21&quot;:9.97},{&quot;2026-08-22&quot;:9.88},{&quot;2026-08-23&quot;:9.41},{&quot;2026-08-24&quot;:9.96},{&quot;2026-08-25&quot;:9.75},{&quot;2026-08-26&quot;:9.68},{&quot;2026-08-27&quot;:9.7},{&quot;2026-08-28&quot;:9.7},{&quot;2026-08-29&quot;:9.7},{&quot;2026-08-30&quot;:9.82},{&quot;2026-08-31&quot;:10.24},{&quot;2026-09-01&quot;:10.4},{&quot;2026-09-02&quot;:10.54},{&quot;2026-09-03&quot;:10.89},{&quot;2026-09-04&quot;:10.79},{&quot;2026-09-05&quot;:10.33},{&quot;2026-09-06&quot;:10.4},{&quot;2026-09-07&quot;:10.33},{&quot;2026-09-08&quot;:10.86},{&quot;2026-09-09&quot;:10.8},{&quot;2026-09-10&quot;:10.91},{&quot;2026-09-11&quot;:10.77}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $10.09
          </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="Reanimate" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/4/04fc99dc-bfbe-4567-b791-6b1db96471ec.jpg?1783933816" />

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

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
          </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="Reanimate" src="https://cards.scryfall.io/large/front/0/4/04fc99dc-bfbe-4567-b791-6b1db96471ec.jpg?1783933816" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:24.53},{&quot;2026-06-11&quot;:24.53},{&quot;2026-06-12&quot;:24.53},{&quot;2026-06-13&quot;:24.53},{&quot;2026-06-14&quot;:24.53},{&quot;2026-06-15&quot;:24.53},{&quot;2026-06-16&quot;:24.53},{&quot;2026-06-17&quot;:24.53},{&quot;2026-06-18&quot;:24.53},{&quot;2026-06-19&quot;:24.53},{&quot;2026-06-20&quot;:24.73},{&quot;2026-06-21&quot;:24.73},{&quot;2026-06-22&quot;:24.73},{&quot;2026-06-23&quot;:24.73},{&quot;2026-06-24&quot;:24.73},{&quot;2026-06-25&quot;:24.73},{&quot;2026-06-26&quot;:24.81},{&quot;2026-06-27&quot;:24.81},{&quot;2026-06-28&quot;:24.81},{&quot;2026-06-29&quot;:24.81},{&quot;2026-06-30&quot;:24.81},{&quot;2026-07-01&quot;:24.97},{&quot;2026-07-02&quot;:24.97},{&quot;2026-07-03&quot;:24.97},{&quot;2026-07-04&quot;:24.97},{&quot;2026-07-05&quot;:25.11},{&quot;2026-07-06&quot;:25.11},{&quot;2026-07-07&quot;:25.11},{&quot;2026-07-08&quot;:25.11},{&quot;2026-07-09&quot;:25.11},{&quot;2026-07-10&quot;:25.11},{&quot;2026-07-11&quot;:25.11},{&quot;2026-07-12&quot;:25.11},{&quot;2026-07-13&quot;:25.11},{&quot;2026-07-14&quot;:25.11},{&quot;2026-07-15&quot;:25.11},{&quot;2026-07-16&quot;:25.11},{&quot;2026-07-17&quot;:25.11},{&quot;2026-07-18&quot;:25.11},{&quot;2026-07-19&quot;:25.11},{&quot;2026-07-20&quot;:25.11},{&quot;2026-07-21&quot;:25.19},{&quot;2026-07-23&quot;:25.31},{&quot;2026-07-25&quot;:25.31},{&quot;2026-07-26&quot;:25.31},{&quot;2026-07-27&quot;:25.31},{&quot;2026-07-29&quot;:25.31},{&quot;2026-07-30&quot;:25.31},{&quot;2026-07-31&quot;:25.31},{&quot;2026-08-01&quot;:25.31},{&quot;2026-08-02&quot;:25.31},{&quot;2026-08-03&quot;:25.31},{&quot;2026-08-04&quot;:25.31},{&quot;2026-08-05&quot;:25.31},{&quot;2026-08-07&quot;:25.31},{&quot;2026-08-08&quot;:25.31},{&quot;2026-08-09&quot;:25.31},{&quot;2026-08-10&quot;:25.31},{&quot;2026-08-11&quot;:25.41},{&quot;2026-08-12&quot;:25.41},{&quot;2026-08-13&quot;:25.44},{&quot;2026-08-14&quot;:25.44},{&quot;2026-08-15&quot;:25.44},{&quot;2026-08-16&quot;:25.44},{&quot;2026-08-17&quot;:25.44},{&quot;2026-08-18&quot;:25.44},{&quot;2026-08-19&quot;:25.44},{&quot;2026-08-20&quot;:25.44},{&quot;2026-08-21&quot;:25.44},{&quot;2026-08-22&quot;:25.44},{&quot;2026-08-23&quot;:25.44},{&quot;2026-08-24&quot;:25.44},{&quot;2026-08-25&quot;:25.44},{&quot;2026-08-26&quot;:25.64},{&quot;2026-08-27&quot;:25.64},{&quot;2026-08-28&quot;:25.64},{&quot;2026-08-29&quot;:25.64},{&quot;2026-08-30&quot;:25.64},{&quot;2026-08-31&quot;:25.79},{&quot;2026-09-01&quot;:25.79},{&quot;2026-09-02&quot;:25.79},{&quot;2026-09-03&quot;:25.79},{&quot;2026-09-04&quot;:25.87},{&quot;2026-09-05&quot;:25.87},{&quot;2026-09-06&quot;:25.87},{&quot;2026-09-07&quot;:25.87},{&quot;2026-09-08&quot;:25.87},{&quot;2026-09-09&quot;:25.87},{&quot;2026-09-10&quot;:25.88},{&quot;2026-09-11&quot;:26.04}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:9.34},{&quot;2026-06-11&quot;:9.34},{&quot;2026-06-12&quot;:9.34},{&quot;2026-06-13&quot;:9.34},{&quot;2026-06-14&quot;:9.34},{&quot;2026-06-15&quot;:9.34},{&quot;2026-06-16&quot;:9.2},{&quot;2026-06-17&quot;:9.2},{&quot;2026-06-18&quot;:9.2},{&quot;2026-06-19&quot;:9.2},{&quot;2026-06-20&quot;:9.2},{&quot;2026-06-21&quot;:9.2},{&quot;2026-06-22&quot;:9.17},{&quot;2026-06-23&quot;:9.19},{&quot;2026-06-24&quot;:9.12},{&quot;2026-06-25&quot;:9.12},{&quot;2026-06-26&quot;:9.31},{&quot;2026-06-27&quot;:9.43},{&quot;2026-06-28&quot;:9.43},{&quot;2026-06-29&quot;:9.43},{&quot;2026-06-30&quot;:9.43},{&quot;2026-07-01&quot;:9.43},{&quot;2026-07-02&quot;:9.55},{&quot;2026-07-03&quot;:9.55},{&quot;2026-07-04&quot;:9.57},{&quot;2026-07-05&quot;:9.71},{&quot;2026-07-06&quot;:9.54},{&quot;2026-07-07&quot;:9.54},{&quot;2026-07-08&quot;:9.54},{&quot;2026-07-09&quot;:9.76},{&quot;2026-07-10&quot;:9.82},{&quot;2026-07-11&quot;:9.84},{&quot;2026-07-12&quot;:9.7},{&quot;2026-07-13&quot;:9.6},{&quot;2026-07-14&quot;:9.61},{&quot;2026-07-15&quot;:9.67},{&quot;2026-07-16&quot;:9.67},{&quot;2026-07-17&quot;:9.67},{&quot;2026-07-18&quot;:9.69},{&quot;2026-07-19&quot;:9.69},{&quot;2026-07-20&quot;:9.63},{&quot;2026-07-21&quot;:9.69},{&quot;2026-07-23&quot;:9.69},{&quot;2026-07-25&quot;:9.67},{&quot;2026-07-26&quot;:9.67},{&quot;2026-07-27&quot;:9.67},{&quot;2026-07-29&quot;:9.67},{&quot;2026-07-30&quot;:9.67},{&quot;2026-07-31&quot;:9.67},{&quot;2026-08-01&quot;:9.74},{&quot;2026-08-02&quot;:9.74},{&quot;2026-08-03&quot;:9.74},{&quot;2026-08-04&quot;:9.74},{&quot;2026-08-05&quot;:9.75},{&quot;2026-08-07&quot;:9.64},{&quot;2026-08-08&quot;:9.64},{&quot;2026-08-09&quot;:9.64},{&quot;2026-08-10&quot;:9.59},{&quot;2026-08-11&quot;:9.6},{&quot;2026-08-12&quot;:9.6},{&quot;2026-08-13&quot;:9.6},{&quot;2026-08-14&quot;:9.6},{&quot;2026-08-15&quot;:9.6},{&quot;2026-08-16&quot;:9.6},{&quot;2026-08-17&quot;:9.72},{&quot;2026-08-18&quot;:9.74},{&quot;2026-08-19&quot;:9.72},{&quot;2026-08-20&quot;:9.72},{&quot;2026-08-21&quot;:9.92},{&quot;2026-08-22&quot;:10.03},{&quot;2026-08-23&quot;:9.91},{&quot;2026-08-24&quot;:10.01},{&quot;2026-08-25&quot;:10.01},{&quot;2026-08-26&quot;:9.88},{&quot;2026-08-27&quot;:9.86},{&quot;2026-08-28&quot;:9.77},{&quot;2026-08-29&quot;:9.77},{&quot;2026-08-30&quot;:9.83},{&quot;2026-08-31&quot;:9.84},{&quot;2026-09-01&quot;:9.84},{&quot;2026-09-02&quot;:9.98},{&quot;2026-09-03&quot;:9.88},{&quot;2026-09-04&quot;:9.95},{&quot;2026-09-05&quot;:10.14},{&quot;2026-09-06&quot;:10.14},{&quot;2026-09-07&quot;:10.26},{&quot;2026-09-08&quot;:10.18},{&quot;2026-09-09&quot;:10.18},{&quot;2026-09-10&quot;:10.18},{&quot;2026-09-11&quot;:10.09}]}"
        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="64757"
  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">
            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-50 text-badge-text">
              ↑
              2%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $9.09
          </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/f/7/f74afebc-452d-42bf-8cf4-9a7a8e91e315.jpg?1783911014" />

        <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">
            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="Swords to Plowshares" src="https://cards.scryfall.io/large/front/f/7/f74afebc-452d-42bf-8cf4-9a7a8e91e315.jpg?1783911014" />
    </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">
                $9.09
              </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">
                $47.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">$3.10</span>
              <span class="text-xs text-grey-text">Credit: $4.03</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-08&quot;:47.41},{&quot;2026-06-10&quot;:47.41},{&quot;2026-06-11&quot;:47.41},{&quot;2026-06-12&quot;:47.41},{&quot;2026-06-13&quot;:47.41},{&quot;2026-06-14&quot;:47.41},{&quot;2026-06-15&quot;:47.41},{&quot;2026-06-16&quot;:47.41},{&quot;2026-06-17&quot;:47.41},{&quot;2026-06-18&quot;:47.41},{&quot;2026-06-19&quot;:47.41},{&quot;2026-06-20&quot;:47.41},{&quot;2026-06-21&quot;:47.41},{&quot;2026-06-22&quot;:47.41},{&quot;2026-06-24&quot;:47.41},{&quot;2026-06-25&quot;:47.41},{&quot;2026-06-26&quot;:47.41},{&quot;2026-06-27&quot;:47.41},{&quot;2026-06-28&quot;:47.41},{&quot;2026-06-29&quot;:47.37},{&quot;2026-06-30&quot;:47.37},{&quot;2026-07-01&quot;:47.37},{&quot;2026-07-02&quot;:47.37},{&quot;2026-07-03&quot;:47.37},{&quot;2026-07-04&quot;:47.37},{&quot;2026-07-05&quot;:47.37},{&quot;2026-07-06&quot;:47.37},{&quot;2026-07-07&quot;:47.37},{&quot;2026-07-08&quot;:47.46},{&quot;2026-07-09&quot;:47.46},{&quot;2026-07-10&quot;:47.34},{&quot;2026-07-11&quot;:47.34},{&quot;2026-07-12&quot;:47.34},{&quot;2026-07-13&quot;:47.34},{&quot;2026-07-14&quot;:47.34},{&quot;2026-07-15&quot;:47.34},{&quot;2026-07-16&quot;:47.34},{&quot;2026-07-17&quot;:47.37},{&quot;2026-07-18&quot;:47.37},{&quot;2026-07-19&quot;:47.37},{&quot;2026-07-20&quot;:47.37},{&quot;2026-07-21&quot;:47.37},{&quot;2026-07-23&quot;:47.31},{&quot;2026-07-25&quot;:47.31},{&quot;2026-07-26&quot;:47.38},{&quot;2026-07-27&quot;:47.38},{&quot;2026-07-29&quot;:47.38},{&quot;2026-07-30&quot;:47.38},{&quot;2026-07-31&quot;:47.38},{&quot;2026-08-01&quot;:47.38},{&quot;2026-08-02&quot;:47.38},{&quot;2026-08-03&quot;:47.38},{&quot;2026-08-04&quot;:47.38},{&quot;2026-08-05&quot;:47.38},{&quot;2026-08-07&quot;:47.38},{&quot;2026-08-08&quot;:47.38},{&quot;2026-08-09&quot;:47.38},{&quot;2026-08-10&quot;:47.38},{&quot;2026-08-11&quot;:47.5},{&quot;2026-08-12&quot;:47.5},{&quot;2026-08-13&quot;:47.5},{&quot;2026-08-14&quot;:47.5},{&quot;2026-08-15&quot;:47.5},{&quot;2026-08-16&quot;:47.5},{&quot;2026-08-17&quot;:47.44},{&quot;2026-08-18&quot;:47.44},{&quot;2026-08-19&quot;:47.44},{&quot;2026-08-20&quot;:47.44},{&quot;2026-08-21&quot;:47.44},{&quot;2026-08-22&quot;:47.44},{&quot;2026-08-23&quot;:47.44},{&quot;2026-08-24&quot;:47.44},{&quot;2026-08-25&quot;:47.44},{&quot;2026-08-26&quot;:47.44},{&quot;2026-08-27&quot;:47.44},{&quot;2026-08-28&quot;:47.44},{&quot;2026-08-29&quot;:47.44},{&quot;2026-08-30&quot;:47.44},{&quot;2026-08-31&quot;:47.44},{&quot;2026-09-01&quot;:47.44},{&quot;2026-09-02&quot;:47.44},{&quot;2026-09-03&quot;:47.44},{&quot;2026-09-04&quot;:47.44},{&quot;2026-09-05&quot;:47.46},{&quot;2026-09-06&quot;:47.46},{&quot;2026-09-07&quot;:47.45},{&quot;2026-09-08&quot;:47.45},{&quot;2026-09-09&quot;:47.45},{&quot;2026-09-10&quot;:47.45},{&quot;2026-09-11&quot;:47.44}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:8.31},{&quot;2026-06-10&quot;:8.35},{&quot;2026-06-11&quot;:8.41},{&quot;2026-06-12&quot;:8.51},{&quot;2026-06-13&quot;:8.54},{&quot;2026-06-14&quot;:8.42},{&quot;2026-06-15&quot;:8.47},{&quot;2026-06-16&quot;:8.47},{&quot;2026-06-17&quot;:8.52},{&quot;2026-06-18&quot;:8.67},{&quot;2026-06-19&quot;:8.67},{&quot;2026-06-20&quot;:8.6},{&quot;2026-06-21&quot;:8.66},{&quot;2026-06-22&quot;:8.67},{&quot;2026-06-24&quot;:8.79},{&quot;2026-06-25&quot;:8.79},{&quot;2026-06-26&quot;:8.79},{&quot;2026-06-27&quot;:8.88},{&quot;2026-06-28&quot;:8.9},{&quot;2026-06-29&quot;:8.86},{&quot;2026-06-30&quot;:8.89},{&quot;2026-07-01&quot;:8.89},{&quot;2026-07-02&quot;:8.94},{&quot;2026-07-03&quot;:8.92},{&quot;2026-07-04&quot;:8.92},{&quot;2026-07-05&quot;:8.84},{&quot;2026-07-06&quot;:8.84},{&quot;2026-07-07&quot;:8.82},{&quot;2026-07-08&quot;:9.21},{&quot;2026-07-09&quot;:9.21},{&quot;2026-07-10&quot;:9.21},{&quot;2026-07-11&quot;:9.24},{&quot;2026-07-12&quot;:9.24},{&quot;2026-07-13&quot;:9.24},{&quot;2026-07-14&quot;:9.16},{&quot;2026-07-15&quot;:9.17},{&quot;2026-07-16&quot;:9.27},{&quot;2026-07-17&quot;:9.27},{&quot;2026-07-18&quot;:9.17},{&quot;2026-07-19&quot;:9.17},{&quot;2026-07-20&quot;:9.33},{&quot;2026-07-21&quot;:9.12},{&quot;2026-07-23&quot;:8.74},{&quot;2026-07-25&quot;:8.49},{&quot;2026-07-26&quot;:8.49},{&quot;2026-07-27&quot;:8.62},{&quot;2026-07-29&quot;:8.64},{&quot;2026-07-30&quot;:8.48},{&quot;2026-07-31&quot;:8.48},{&quot;2026-08-01&quot;:8.63},{&quot;2026-08-02&quot;:8.91},{&quot;2026-08-03&quot;:8.91},{&quot;2026-08-04&quot;:9.2},{&quot;2026-08-05&quot;:9.05},{&quot;2026-08-07&quot;:9.55},{&quot;2026-08-08&quot;:9.78},{&quot;2026-08-09&quot;:9.78},{&quot;2026-08-10&quot;:9.78},{&quot;2026-08-11&quot;:9.92},{&quot;2026-08-12&quot;:9.9},{&quot;2026-08-13&quot;:9.9},{&quot;2026-08-14&quot;:9.9},{&quot;2026-08-15&quot;:9.9},{&quot;2026-08-16&quot;:9.83},{&quot;2026-08-17&quot;:9.78},{&quot;2026-08-18&quot;:9.53},{&quot;2026-08-19&quot;:9.41},{&quot;2026-08-20&quot;:9.41},{&quot;2026-08-21&quot;:9.26},{&quot;2026-08-22&quot;:8.97},{&quot;2026-08-23&quot;:8.97},{&quot;2026-08-24&quot;:9.02},{&quot;2026-08-25&quot;:9.02},{&quot;2026-08-26&quot;:9.02},{&quot;2026-08-27&quot;:9.02},{&quot;2026-08-28&quot;:8.83},{&quot;2026-08-29&quot;:8.83},{&quot;2026-08-30&quot;:8.79},{&quot;2026-08-31&quot;:8.79},{&quot;2026-09-01&quot;:8.79},{&quot;2026-09-02&quot;:8.69},{&quot;2026-09-03&quot;:8.62},{&quot;2026-09-04&quot;:8.87},{&quot;2026-09-05&quot;:8.87},{&quot;2026-09-06&quot;:8.91},{&quot;2026-09-07&quot;:8.87},{&quot;2026-09-08&quot;:8.88},{&quot;2026-09-09&quot;:8.88},{&quot;2026-09-10&quot;:9.09},{&quot;2026-09-11&quot;:9.09}]}"
        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="86409"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-mythic ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

        <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">
            Cavalier of Night
        </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 Knight</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Cavalier of Night" src="https://cards.scryfall.io/large/front/a/1/a1f0a051-325f-4853-9529-7206f02787e3.jpg?1783925015" />
    </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.53
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:12.45},{&quot;2026-06-14&quot;:12.45},{&quot;2026-06-15&quot;:12.45},{&quot;2026-06-16&quot;:12.45},{&quot;2026-06-17&quot;:12.09},{&quot;2026-06-18&quot;:12.09},{&quot;2026-06-19&quot;:12.09},{&quot;2026-06-20&quot;:12.09},{&quot;2026-06-21&quot;:12.09},{&quot;2026-06-22&quot;:12.09},{&quot;2026-06-23&quot;:11.88},{&quot;2026-06-24&quot;:11.88},{&quot;2026-06-25&quot;:11.68},{&quot;2026-06-26&quot;:11.45},{&quot;2026-06-27&quot;:11.45},{&quot;2026-06-28&quot;:11.14},{&quot;2026-06-29&quot;:11.14},{&quot;2026-06-30&quot;:10.82},{&quot;2026-07-01&quot;:10.82},{&quot;2026-07-02&quot;:10.82},{&quot;2026-07-03&quot;:10.82},{&quot;2026-07-04&quot;:10.82},{&quot;2026-07-05&quot;:10.82},{&quot;2026-07-06&quot;:10.82},{&quot;2026-07-07&quot;:10.82},{&quot;2026-07-08&quot;:10.59},{&quot;2026-07-09&quot;:10.59},{&quot;2026-07-10&quot;:10.65},{&quot;2026-07-11&quot;:10.55},{&quot;2026-07-12&quot;:10.55},{&quot;2026-07-13&quot;:10.59},{&quot;2026-07-14&quot;:10.56},{&quot;2026-07-15&quot;:10.62},{&quot;2026-07-16&quot;:10.36},{&quot;2026-07-17&quot;:10.14},{&quot;2026-07-18&quot;:10.14},{&quot;2026-07-19&quot;:9.66},{&quot;2026-07-20&quot;:9.66},{&quot;2026-07-21&quot;:9.66},{&quot;2026-07-22&quot;:9.66},{&quot;2026-07-23&quot;:9.66},{&quot;2026-07-24&quot;:9.45},{&quot;2026-07-25&quot;:9.45},{&quot;2026-07-26&quot;:9.45},{&quot;2026-07-27&quot;:9.45},{&quot;2026-07-28&quot;:9.45},{&quot;2026-07-29&quot;:9.3},{&quot;2026-07-30&quot;:9.17},{&quot;2026-07-31&quot;:8.92},{&quot;2026-08-01&quot;:8.92},{&quot;2026-08-02&quot;:8.92},{&quot;2026-08-03&quot;:8.92},{&quot;2026-08-04&quot;:8.74},{&quot;2026-08-05&quot;:8.74},{&quot;2026-08-07&quot;:8.74},{&quot;2026-08-08&quot;:8.71},{&quot;2026-08-09&quot;:8.71},{&quot;2026-08-10&quot;:8.57},{&quot;2026-08-11&quot;:8.37},{&quot;2026-08-12&quot;:8.28},{&quot;2026-08-13&quot;:8.26},{&quot;2026-08-14&quot;:8.26},{&quot;2026-08-15&quot;:8.26},{&quot;2026-08-16&quot;:8.26},{&quot;2026-08-17&quot;:8.1},{&quot;2026-08-18&quot;:8.14},{&quot;2026-08-19&quot;:8.14},{&quot;2026-08-20&quot;:8.14},{&quot;2026-08-21&quot;:8.18},{&quot;2026-08-22&quot;:8.24},{&quot;2026-08-23&quot;:8.24},{&quot;2026-08-24&quot;:8.24},{&quot;2026-08-25&quot;:8.24},{&quot;2026-08-26&quot;:8.24},{&quot;2026-08-27&quot;:8.24},{&quot;2026-08-28&quot;:8.29},{&quot;2026-08-29&quot;:8.29},{&quot;2026-08-30&quot;:8.37},{&quot;2026-08-31&quot;:8.38},{&quot;2026-09-01&quot;:8.38},{&quot;2026-09-02&quot;:8.48},{&quot;2026-09-03&quot;:8.48},{&quot;2026-09-04&quot;:8.48},{&quot;2026-09-05&quot;:8.48},{&quot;2026-09-06&quot;:8.48},{&quot;2026-09-07&quot;:8.48},{&quot;2026-09-08&quot;:8.46},{&quot;2026-09-09&quot;:8.52},{&quot;2026-09-10&quot;:8.53},{&quot;2026-09-11&quot;:8.53}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="40284"
  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-khc 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">
            Eerie Interlude
        </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">
            $7.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="Eerie Interlude" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/b/4ba9f15f-00d2-4797-9228-91b320e85705.jpg?1783928332" />

        <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">
            Eerie Interlude
        </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="Eerie Interlude" src="https://cards.scryfall.io/large/front/4/b/4ba9f15f-00d2-4797-9228-91b320e85705.jpg?1783928332" />
    </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.75
              </span>

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

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$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-13&quot;:6.77},{&quot;2026-06-14&quot;:6.9},{&quot;2026-06-15&quot;:6.97},{&quot;2026-06-16&quot;:6.97},{&quot;2026-06-17&quot;:7.14},{&quot;2026-06-18&quot;:7.43},{&quot;2026-06-19&quot;:7.57},{&quot;2026-06-20&quot;:7.67},{&quot;2026-06-21&quot;:7.57},{&quot;2026-06-22&quot;:8.14},{&quot;2026-06-23&quot;:8.02},{&quot;2026-06-24&quot;:8.25},{&quot;2026-06-25&quot;:8.34},{&quot;2026-06-26&quot;:8.56},{&quot;2026-06-27&quot;:8.22},{&quot;2026-06-28&quot;:7.92},{&quot;2026-06-29&quot;:7.35},{&quot;2026-06-30&quot;:7.39},{&quot;2026-07-01&quot;:7.43},{&quot;2026-07-02&quot;:7.28},{&quot;2026-07-03&quot;:7.37},{&quot;2026-07-04&quot;:7.42},{&quot;2026-07-05&quot;:7.43},{&quot;2026-07-06&quot;:7.29},{&quot;2026-07-07&quot;:7.18},{&quot;2026-07-08&quot;:7.18},{&quot;2026-07-09&quot;:7.23},{&quot;2026-07-10&quot;:7.79},{&quot;2026-07-11&quot;:8.16},{&quot;2026-07-12&quot;:8.16},{&quot;2026-07-13&quot;:8.21},{&quot;2026-07-14&quot;:8.21},{&quot;2026-07-15&quot;:8.08},{&quot;2026-07-16&quot;:8.22},{&quot;2026-07-17&quot;:8.23},{&quot;2026-07-18&quot;:8.05},{&quot;2026-07-19&quot;:8.05},{&quot;2026-07-20&quot;:8.18},{&quot;2026-07-21&quot;:8.43},{&quot;2026-07-22&quot;:8.37},{&quot;2026-07-23&quot;:8.36},{&quot;2026-07-24&quot;:8.32},{&quot;2026-07-25&quot;:8.37},{&quot;2026-07-26&quot;:8.4},{&quot;2026-07-27&quot;:8.34},{&quot;2026-07-28&quot;:8.34},{&quot;2026-07-29&quot;:8.24},{&quot;2026-07-30&quot;:8.05},{&quot;2026-07-31&quot;:7.99},{&quot;2026-08-01&quot;:7.99},{&quot;2026-08-02&quot;:7.99},{&quot;2026-08-03&quot;:7.74},{&quot;2026-08-04&quot;:7.35},{&quot;2026-08-05&quot;:7.35},{&quot;2026-08-07&quot;:7.35},{&quot;2026-08-08&quot;:7.42},{&quot;2026-08-09&quot;:7.42},{&quot;2026-08-10&quot;:7.42},{&quot;2026-08-11&quot;:7.41},{&quot;2026-08-12&quot;:7.45},{&quot;2026-08-13&quot;:7.22},{&quot;2026-08-14&quot;:7.16},{&quot;2026-08-15&quot;:6.88},{&quot;2026-08-16&quot;:6.74},{&quot;2026-08-17&quot;:6.68},{&quot;2026-08-18&quot;:6.59},{&quot;2026-08-19&quot;:6.74},{&quot;2026-08-20&quot;:6.8},{&quot;2026-08-21&quot;:6.99},{&quot;2026-08-22&quot;:7.03},{&quot;2026-08-23&quot;:7.03},{&quot;2026-08-24&quot;:7.11},{&quot;2026-08-25&quot;:7.26},{&quot;2026-08-26&quot;:7.26},{&quot;2026-08-27&quot;:7.18},{&quot;2026-08-28&quot;:7.18},{&quot;2026-08-29&quot;:7.18},{&quot;2026-08-30&quot;:7.17},{&quot;2026-08-31&quot;:7.17},{&quot;2026-09-01&quot;:7.38},{&quot;2026-09-02&quot;:7.46},{&quot;2026-09-03&quot;:7.94},{&quot;2026-09-04&quot;:7.94},{&quot;2026-09-05&quot;:7.94},{&quot;2026-09-06&quot;:7.94},{&quot;2026-09-07&quot;:7.83},{&quot;2026-09-08&quot;:7.89},{&quot;2026-09-09&quot;:7.75},{&quot;2026-09-10&quot;:7.75},{&quot;2026-09-11&quot;:7.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="42653"
  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">
              ↑
              2%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $7.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/e/c/ecb53f59-d89b-481c-af98-75c11c30ee17.jpg?1783923724" />

        <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/e/c/ecb53f59-d89b-481c-af98-75c11c30ee17.jpg?1783923724" />
    </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.51
              </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">
                $8.28
              </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">$7.00</span>
              <span class="text-xs text-grey-text">Credit: $9.10</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-08&quot;:7.5},{&quot;2026-06-10&quot;:7.5},{&quot;2026-06-11&quot;:7.44},{&quot;2026-06-12&quot;:7.44},{&quot;2026-06-13&quot;:7.44},{&quot;2026-06-14&quot;:7.44},{&quot;2026-06-15&quot;:7.45},{&quot;2026-06-16&quot;:7.45},{&quot;2026-06-17&quot;:7.45},{&quot;2026-06-18&quot;:7.45},{&quot;2026-06-19&quot;:7.45},{&quot;2026-06-20&quot;:7.63},{&quot;2026-06-21&quot;:7.64},{&quot;2026-06-22&quot;:7.64},{&quot;2026-06-24&quot;:7.64},{&quot;2026-06-25&quot;:7.64},{&quot;2026-06-26&quot;:7.64},{&quot;2026-06-27&quot;:7.67},{&quot;2026-06-28&quot;:7.67},{&quot;2026-06-29&quot;:7.65},{&quot;2026-06-30&quot;:7.65},{&quot;2026-07-01&quot;:7.65},{&quot;2026-07-02&quot;:7.69},{&quot;2026-07-03&quot;:7.79},{&quot;2026-07-04&quot;:7.94},{&quot;2026-07-05&quot;:7.94},{&quot;2026-07-06&quot;:7.94},{&quot;2026-07-07&quot;:7.94},{&quot;2026-07-08&quot;:7.94},{&quot;2026-07-09&quot;:7.94},{&quot;2026-07-10&quot;:7.94},{&quot;2026-07-11&quot;:7.94},{&quot;2026-07-12&quot;:7.94},{&quot;2026-07-13&quot;:7.94},{&quot;2026-07-14&quot;:7.94},{&quot;2026-07-15&quot;:7.94},{&quot;2026-07-16&quot;:7.94},{&quot;2026-07-17&quot;:7.94},{&quot;2026-07-18&quot;:7.94},{&quot;2026-07-19&quot;:7.94},{&quot;2026-07-20&quot;:8.09},{&quot;2026-07-21&quot;:8.09},{&quot;2026-07-23&quot;:8.09},{&quot;2026-07-25&quot;:8.13},{&quot;2026-07-26&quot;:8.13},{&quot;2026-07-27&quot;:8.13},{&quot;2026-07-29&quot;:8.09},{&quot;2026-07-30&quot;:8.09},{&quot;2026-07-31&quot;:8.09},{&quot;2026-08-01&quot;:8.09},{&quot;2026-08-02&quot;:8.09},{&quot;2026-08-03&quot;:8.09},{&quot;2026-08-04&quot;:8.14},{&quot;2026-08-05&quot;:8.14},{&quot;2026-08-07&quot;:8.52},{&quot;2026-08-08&quot;:8.52},{&quot;2026-08-09&quot;:8.52},{&quot;2026-08-10&quot;:8.52},{&quot;2026-08-11&quot;:8.52},{&quot;2026-08-12&quot;:8.56},{&quot;2026-08-13&quot;:8.56},{&quot;2026-08-14&quot;:8.56},{&quot;2026-08-15&quot;:8.56},{&quot;2026-08-16&quot;:8.57},{&quot;2026-08-17&quot;:8.57},{&quot;2026-08-18&quot;:8.59},{&quot;2026-08-19&quot;:8.63},{&quot;2026-08-20&quot;:8.63},{&quot;2026-08-21&quot;:8.63},{&quot;2026-08-22&quot;:8.51},{&quot;2026-08-23&quot;:8.51},{&quot;2026-08-24&quot;:8.54},{&quot;2026-08-25&quot;:8.54},{&quot;2026-08-26&quot;:8.43},{&quot;2026-08-27&quot;:8.43},{&quot;2026-08-28&quot;:8.49},{&quot;2026-08-29&quot;:8.49},{&quot;2026-08-30&quot;:8.4},{&quot;2026-08-31&quot;:8.4},{&quot;2026-09-01&quot;:8.4},{&quot;2026-09-02&quot;:8.4},{&quot;2026-09-03&quot;:8.4},{&quot;2026-09-04&quot;:8.4},{&quot;2026-09-05&quot;:8.4},{&quot;2026-09-06&quot;:8.4},{&quot;2026-09-07&quot;:8.21},{&quot;2026-09-08&quot;:8.21},{&quot;2026-09-09&quot;:8.21},{&quot;2026-09-10&quot;:8.21},{&quot;2026-09-11&quot;:8.28}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:6.34},{&quot;2026-06-10&quot;:6.34},{&quot;2026-06-11&quot;:6.34},{&quot;2026-06-12&quot;:6.31},{&quot;2026-06-13&quot;:6.38},{&quot;2026-06-14&quot;:6.43},{&quot;2026-06-15&quot;:6.52},{&quot;2026-06-16&quot;:6.55},{&quot;2026-06-17&quot;:6.55},{&quot;2026-06-18&quot;:6.55},{&quot;2026-06-19&quot;:6.54},{&quot;2026-06-20&quot;:6.54},{&quot;2026-06-21&quot;:6.63},{&quot;2026-06-22&quot;:6.63},{&quot;2026-06-24&quot;:6.68},{&quot;2026-06-25&quot;:6.68},{&quot;2026-06-26&quot;:6.67},{&quot;2026-06-27&quot;:6.67},{&quot;2026-06-28&quot;:6.68},{&quot;2026-06-29&quot;:6.68},{&quot;2026-06-30&quot;:6.67},{&quot;2026-07-01&quot;:6.69},{&quot;2026-07-02&quot;:6.69},{&quot;2026-07-03&quot;:6.69},{&quot;2026-07-04&quot;:6.71},{&quot;2026-07-05&quot;:6.71},{&quot;2026-07-06&quot;:6.89},{&quot;2026-07-07&quot;:6.89},{&quot;2026-07-08&quot;:6.89},{&quot;2026-07-09&quot;:6.96},{&quot;2026-07-10&quot;:6.96},{&quot;2026-07-11&quot;:6.96},{&quot;2026-07-12&quot;:7.02},{&quot;2026-07-13&quot;:7.04},{&quot;2026-07-14&quot;:7.04},{&quot;2026-07-15&quot;:7.04},{&quot;2026-07-16&quot;:7.04},{&quot;2026-07-17&quot;:7.04},{&quot;2026-07-18&quot;:7.04},{&quot;2026-07-19&quot;:7.04},{&quot;2026-07-20&quot;:7.14},{&quot;2026-07-21&quot;:6.95},{&quot;2026-07-23&quot;:7.18},{&quot;2026-07-25&quot;:7.24},{&quot;2026-07-26&quot;:7.24},{&quot;2026-07-27&quot;:7.24},{&quot;2026-07-29&quot;:7.31},{&quot;2026-07-30&quot;:7.34},{&quot;2026-07-31&quot;:7.37},{&quot;2026-08-01&quot;:7.37},{&quot;2026-08-02&quot;:7.37},{&quot;2026-08-03&quot;:7.37},{&quot;2026-08-04&quot;:7.37},{&quot;2026-08-05&quot;:7.37},{&quot;2026-08-07&quot;:7.4},{&quot;2026-08-08&quot;:7.4},{&quot;2026-08-09&quot;:7.4},{&quot;2026-08-10&quot;:7.4},{&quot;2026-08-11&quot;:7.4},{&quot;2026-08-12&quot;:7.55},{&quot;2026-08-13&quot;:7.55},{&quot;2026-08-14&quot;:7.52},{&quot;2026-08-15&quot;:7.5},{&quot;2026-08-16&quot;:7.5},{&quot;2026-08-17&quot;:7.5},{&quot;2026-08-18&quot;:7.5},{&quot;2026-08-19&quot;:7.5},{&quot;2026-08-20&quot;:7.5},{&quot;2026-08-21&quot;:7.37},{&quot;2026-08-22&quot;:7.37},{&quot;2026-08-23&quot;:7.37},{&quot;2026-08-24&quot;:7.37},{&quot;2026-08-25&quot;:7.37},{&quot;2026-08-26&quot;:7.37},{&quot;2026-08-27&quot;:7.37},{&quot;2026-08-28&quot;:7.37},{&quot;2026-08-29&quot;:7.37},{&quot;2026-08-30&quot;:7.36},{&quot;2026-08-31&quot;:7.35},{&quot;2026-09-01&quot;:7.35},{&quot;2026-09-02&quot;:7.35},{&quot;2026-09-03&quot;:7.36},{&quot;2026-09-04&quot;:7.36},{&quot;2026-09-05&quot;:7.36},{&quot;2026-09-06&quot;:7.36},{&quot;2026-09-07&quot;:7.38},{&quot;2026-09-08&quot;:7.38},{&quot;2026-09-09&quot;:7.38},{&quot;2026-09-10&quot;:7.47},{&quot;2026-09-11&quot;:7.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="75887"
  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-lcc 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">
            Elenda, the Dusk Rose
        </span>


      </div>

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

          <span class="text-sm font-medium text-nine-white">
            $5.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="Elenda, the Dusk Rose" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/e/1/e18feca3-1b1b-4456-8873-25a24849a917.jpg?1783913851" />

        <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">
            Elenda, the Dusk Rose
        </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 — Vampire Knight</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Elenda, the Dusk Rose" src="https://cards.scryfall.io/large/front/e/1/e18feca3-1b1b-4456-8873-25a24849a917.jpg?1783913851" />
    </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.64
              </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">$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;normal&quot;:[{&quot;2026-06-12&quot;:5.09},{&quot;2026-06-13&quot;:5.29},{&quot;2026-06-14&quot;:5.27},{&quot;2026-06-15&quot;:5.39},{&quot;2026-06-16&quot;:5.37},{&quot;2026-06-17&quot;:5.37},{&quot;2026-06-18&quot;:5.39},{&quot;2026-06-19&quot;:5.31},{&quot;2026-06-20&quot;:5.27},{&quot;2026-06-21&quot;:5.45},{&quot;2026-06-22&quot;:5.44},{&quot;2026-06-23&quot;:5.46},{&quot;2026-06-24&quot;:5.38},{&quot;2026-06-25&quot;:5.43},{&quot;2026-06-26&quot;:5.37},{&quot;2026-06-27&quot;:5.39},{&quot;2026-06-28&quot;:5.28},{&quot;2026-06-29&quot;:5.18},{&quot;2026-06-30&quot;:5.12},{&quot;2026-07-01&quot;:5.23},{&quot;2026-07-02&quot;:5.33},{&quot;2026-07-03&quot;:5.35},{&quot;2026-07-04&quot;:5.38},{&quot;2026-07-05&quot;:5.38},{&quot;2026-07-06&quot;:5.33},{&quot;2026-07-07&quot;:5.18},{&quot;2026-07-08&quot;:5.1},{&quot;2026-07-09&quot;:5.04},{&quot;2026-07-10&quot;:5.06},{&quot;2026-07-11&quot;:5.06},{&quot;2026-07-12&quot;:5.03},{&quot;2026-07-13&quot;:4.89},{&quot;2026-07-14&quot;:5.1},{&quot;2026-07-15&quot;:5.16},{&quot;2026-07-16&quot;:5.02},{&quot;2026-07-17&quot;:5.11},{&quot;2026-07-18&quot;:4.53},{&quot;2026-07-19&quot;:4.3},{&quot;2026-07-20&quot;:4.31},{&quot;2026-07-21&quot;:4.5},{&quot;2026-07-23&quot;:5.1},{&quot;2026-07-24&quot;:5.35},{&quot;2026-07-25&quot;:5.38},{&quot;2026-07-26&quot;:5.35},{&quot;2026-07-27&quot;:5.36},{&quot;2026-07-28&quot;:5.21},{&quot;2026-07-29&quot;:5.26},{&quot;2026-07-30&quot;:5.41},{&quot;2026-07-31&quot;:5.33},{&quot;2026-08-01&quot;:5.33},{&quot;2026-08-02&quot;:5.7},{&quot;2026-08-03&quot;:5.72},{&quot;2026-08-04&quot;:5.61},{&quot;2026-08-05&quot;:5.45},{&quot;2026-08-07&quot;:5.64},{&quot;2026-08-08&quot;:5.8},{&quot;2026-08-09&quot;:5.73},{&quot;2026-08-10&quot;:5.74},{&quot;2026-08-11&quot;:5.72},{&quot;2026-08-12&quot;:5.48},{&quot;2026-08-13&quot;:5.36},{&quot;2026-08-14&quot;:5.37},{&quot;2026-08-15&quot;:5.4},{&quot;2026-08-16&quot;:5.31},{&quot;2026-08-17&quot;:5.25},{&quot;2026-08-18&quot;:5.18},{&quot;2026-08-19&quot;:5.07},{&quot;2026-08-20&quot;:5.07},{&quot;2026-08-21&quot;:5.49},{&quot;2026-08-22&quot;:5.43},{&quot;2026-08-23&quot;:5.63},{&quot;2026-08-24&quot;:5.88},{&quot;2026-08-25&quot;:5.53},{&quot;2026-08-26&quot;:5.23},{&quot;2026-08-27&quot;:5.25},{&quot;2026-08-28&quot;:5.25},{&quot;2026-08-29&quot;:5.25},{&quot;2026-08-30&quot;:5.28},{&quot;2026-08-31&quot;:5.52},{&quot;2026-09-01&quot;:5.99},{&quot;2026-09-02&quot;:5.99},{&quot;2026-09-03&quot;:6.0},{&quot;2026-09-04&quot;:6.13},{&quot;2026-09-05&quot;:5.89},{&quot;2026-09-06&quot;:5.64},{&quot;2026-09-07&quot;:5.44},{&quot;2026-09-08&quot;:5.44},{&quot;2026-09-09&quot;:5.17},{&quot;2026-09-10&quot;:5.12},{&quot;2026-09-11&quot;:5.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="19299"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-dmu ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

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

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

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Land</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="Sulfurous Springs" src="https://cards.scryfall.io/large/front/0/b/0ba5d3e7-afd9-40c5-8ee9-238ba47f0841.jpg?1783921200" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:5.56},{&quot;2026-06-14&quot;:5.56},{&quot;2026-06-15&quot;:5.57},{&quot;2026-06-16&quot;:5.57},{&quot;2026-06-17&quot;:5.57},{&quot;2026-06-18&quot;:5.57},{&quot;2026-06-19&quot;:5.57},{&quot;2026-06-20&quot;:5.57},{&quot;2026-06-21&quot;:5.57},{&quot;2026-06-22&quot;:5.57},{&quot;2026-06-23&quot;:5.55},{&quot;2026-06-24&quot;:5.68},{&quot;2026-06-25&quot;:5.76},{&quot;2026-06-26&quot;:5.77},{&quot;2026-06-27&quot;:5.77},{&quot;2026-06-28&quot;:5.77},{&quot;2026-06-29&quot;:5.77},{&quot;2026-06-30&quot;:5.76},{&quot;2026-07-01&quot;:5.76},{&quot;2026-07-02&quot;:5.78},{&quot;2026-07-03&quot;:5.84},{&quot;2026-07-04&quot;:5.84},{&quot;2026-07-05&quot;:5.79},{&quot;2026-07-06&quot;:5.79},{&quot;2026-07-07&quot;:5.79},{&quot;2026-07-08&quot;:5.83},{&quot;2026-07-09&quot;:5.91},{&quot;2026-07-10&quot;:5.91},{&quot;2026-07-11&quot;:5.87},{&quot;2026-07-12&quot;:5.86},{&quot;2026-07-13&quot;:5.95},{&quot;2026-07-14&quot;:5.95},{&quot;2026-07-15&quot;:5.95},{&quot;2026-07-16&quot;:5.94},{&quot;2026-07-17&quot;:5.94},{&quot;2026-07-18&quot;:5.94},{&quot;2026-07-19&quot;:5.93},{&quot;2026-07-20&quot;:5.93},{&quot;2026-07-21&quot;:5.97},{&quot;2026-07-22&quot;:5.96},{&quot;2026-07-23&quot;:6.01},{&quot;2026-07-24&quot;:6.01},{&quot;2026-07-25&quot;:6.01},{&quot;2026-07-26&quot;:5.96},{&quot;2026-07-27&quot;:5.98},{&quot;2026-07-28&quot;:5.98},{&quot;2026-07-29&quot;:5.98},{&quot;2026-07-30&quot;:5.98},{&quot;2026-07-31&quot;:5.95},{&quot;2026-08-01&quot;:5.94},{&quot;2026-08-02&quot;:5.94},{&quot;2026-08-03&quot;:5.94},{&quot;2026-08-04&quot;:5.94},{&quot;2026-08-05&quot;:5.98},{&quot;2026-08-07&quot;:5.9},{&quot;2026-08-08&quot;:5.79},{&quot;2026-08-09&quot;:5.83},{&quot;2026-08-10&quot;:5.83},{&quot;2026-08-11&quot;:5.77},{&quot;2026-08-12&quot;:5.77},{&quot;2026-08-13&quot;:5.77},{&quot;2026-08-14&quot;:5.77},{&quot;2026-08-15&quot;:5.77},{&quot;2026-08-16&quot;:5.63},{&quot;2026-08-17&quot;:5.59},{&quot;2026-08-18&quot;:5.6},{&quot;2026-08-19&quot;:5.6},{&quot;2026-08-20&quot;:5.6},{&quot;2026-08-21&quot;:5.6},{&quot;2026-08-22&quot;:5.58},{&quot;2026-08-23&quot;:5.51},{&quot;2026-08-24&quot;:5.57},{&quot;2026-08-25&quot;:5.57},{&quot;2026-08-26&quot;:5.66},{&quot;2026-08-27&quot;:5.66},{&quot;2026-08-28&quot;:5.66},{&quot;2026-08-29&quot;:5.66},{&quot;2026-08-30&quot;:5.68},{&quot;2026-08-31&quot;:5.64},{&quot;2026-09-01&quot;:5.64},{&quot;2026-09-02&quot;:5.64},{&quot;2026-09-03&quot;:5.63},{&quot;2026-09-04&quot;:5.63},{&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.53},{&quot;2026-09-09&quot;:5.53},{&quot;2026-09-10&quot;:5.53},{&quot;2026-09-11&quot;:5.56}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:3.11},{&quot;2026-06-14&quot;:3.11},{&quot;2026-06-15&quot;:3.11},{&quot;2026-06-16&quot;:3.11},{&quot;2026-06-17&quot;:3.11},{&quot;2026-06-18&quot;:3.06},{&quot;2026-06-19&quot;:3.21},{&quot;2026-06-20&quot;:3.14},{&quot;2026-06-21&quot;:3.1},{&quot;2026-06-22&quot;:3.21},{&quot;2026-06-23&quot;:3.24},{&quot;2026-06-24&quot;:3.29},{&quot;2026-06-25&quot;:3.27},{&quot;2026-06-26&quot;:3.41},{&quot;2026-06-27&quot;:3.41},{&quot;2026-06-28&quot;:3.48},{&quot;2026-06-29&quot;:3.48},{&quot;2026-06-30&quot;:3.55},{&quot;2026-07-01&quot;:3.61},{&quot;2026-07-02&quot;:3.58},{&quot;2026-07-03&quot;:3.62},{&quot;2026-07-04&quot;:3.54},{&quot;2026-07-05&quot;:3.48},{&quot;2026-07-06&quot;:3.52},{&quot;2026-07-07&quot;:3.5},{&quot;2026-07-08&quot;:3.5},{&quot;2026-07-09&quot;:3.28},{&quot;2026-07-10&quot;:3.32},{&quot;2026-07-11&quot;:3.32},{&quot;2026-07-12&quot;:3.3},{&quot;2026-07-13&quot;:3.28},{&quot;2026-07-14&quot;:3.28},{&quot;2026-07-15&quot;:3.26},{&quot;2026-07-16&quot;:3.26},{&quot;2026-07-17&quot;:3.17},{&quot;2026-07-18&quot;:3.28},{&quot;2026-07-19&quot;:3.44},{&quot;2026-07-20&quot;:3.55},{&quot;2026-07-21&quot;:3.72},{&quot;2026-07-22&quot;:3.72},{&quot;2026-07-23&quot;:3.72},{&quot;2026-07-24&quot;:3.73},{&quot;2026-07-25&quot;:3.72},{&quot;2026-07-26&quot;:3.72},{&quot;2026-07-27&quot;:3.75},{&quot;2026-07-28&quot;:3.76},{&quot;2026-07-29&quot;:3.68},{&quot;2026-07-30&quot;:3.68},{&quot;2026-07-31&quot;:3.74},{&quot;2026-08-01&quot;:3.74},{&quot;2026-08-02&quot;:3.79},{&quot;2026-08-03&quot;:3.82},{&quot;2026-08-04&quot;:3.78},{&quot;2026-08-05&quot;:3.68},{&quot;2026-08-07&quot;:3.82},{&quot;2026-08-08&quot;:3.73},{&quot;2026-08-09&quot;:3.77},{&quot;2026-08-10&quot;:3.77},{&quot;2026-08-11&quot;:3.79},{&quot;2026-08-12&quot;:3.79},{&quot;2026-08-13&quot;:3.73},{&quot;2026-08-14&quot;:3.73},{&quot;2026-08-15&quot;:3.72},{&quot;2026-08-16&quot;:3.6},{&quot;2026-08-17&quot;:3.64},{&quot;2026-08-18&quot;:3.58},{&quot;2026-08-19&quot;:3.22},{&quot;2026-08-20&quot;:3.11},{&quot;2026-08-21&quot;:3.29},{&quot;2026-08-22&quot;:3.15},{&quot;2026-08-23&quot;:3.17},{&quot;2026-08-24&quot;:3.29},{&quot;2026-08-25&quot;:3.47},{&quot;2026-08-26&quot;:3.47},{&quot;2026-08-27&quot;:3.47},{&quot;2026-08-28&quot;:3.51},{&quot;2026-08-29&quot;:3.51},{&quot;2026-08-30&quot;:3.32},{&quot;2026-08-31&quot;:3.3},{&quot;2026-09-01&quot;:3.27},{&quot;2026-09-02&quot;:3.23},{&quot;2026-09-03&quot;:3.19},{&quot;2026-09-04&quot;:3.08},{&quot;2026-09-05&quot;:3.1},{&quot;2026-09-06&quot;:3.13},{&quot;2026-09-07&quot;:3.23},{&quot;2026-09-08&quot;:3.24},{&quot;2026-09-09&quot;:3.28},{&quot;2026-09-10&quot;:3.36},{&quot;2026-09-11&quot;:3.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="13895"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmm ss-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-100 text-badge-text">
              ↓
              2%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $5.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="Path to Exile" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/f/1/f14c2a76-b9f5-42f2-8652-dafa5bd132cb.jpg?1783915515" />

        <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/f/1/f14c2a76-b9f5-42f2-8652-dafa5bd132cb.jpg?1783915515" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $2.58
              </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">
                $5.28
              </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">$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-11&quot;:4.92},{&quot;2026-06-12&quot;:4.92},{&quot;2026-06-13&quot;:4.81},{&quot;2026-06-14&quot;:4.92},{&quot;2026-06-15&quot;:4.88},{&quot;2026-06-16&quot;:4.88},{&quot;2026-06-17&quot;:4.88},{&quot;2026-06-18&quot;:4.88},{&quot;2026-06-19&quot;:4.83},{&quot;2026-06-20&quot;:4.83},{&quot;2026-06-21&quot;:4.82},{&quot;2026-06-22&quot;:4.82},{&quot;2026-06-23&quot;:4.8},{&quot;2026-06-24&quot;:4.81},{&quot;2026-06-25&quot;:4.81},{&quot;2026-06-26&quot;:4.8},{&quot;2026-06-27&quot;:4.78},{&quot;2026-06-28&quot;:4.78},{&quot;2026-06-29&quot;:4.78},{&quot;2026-06-30&quot;:4.79},{&quot;2026-07-01&quot;:4.81},{&quot;2026-07-02&quot;:4.86},{&quot;2026-07-03&quot;:4.87},{&quot;2026-07-04&quot;:4.86},{&quot;2026-07-05&quot;:4.88},{&quot;2026-07-06&quot;:4.88},{&quot;2026-07-07&quot;:4.88},{&quot;2026-07-08&quot;:4.81},{&quot;2026-07-09&quot;:4.82},{&quot;2026-07-10&quot;:4.78},{&quot;2026-07-11&quot;:4.79},{&quot;2026-07-12&quot;:4.87},{&quot;2026-07-13&quot;:4.87},{&quot;2026-07-14&quot;:4.87},{&quot;2026-07-15&quot;:4.87},{&quot;2026-07-16&quot;:4.87},{&quot;2026-07-17&quot;:4.87},{&quot;2026-07-18&quot;:4.55},{&quot;2026-07-19&quot;:4.54},{&quot;2026-07-20&quot;:4.67},{&quot;2026-07-21&quot;:4.67},{&quot;2026-07-23&quot;:4.61},{&quot;2026-07-25&quot;:4.61},{&quot;2026-07-26&quot;:4.55},{&quot;2026-07-27&quot;:4.54},{&quot;2026-07-28&quot;:4.55},{&quot;2026-07-29&quot;:4.55},{&quot;2026-07-30&quot;:4.7},{&quot;2026-07-31&quot;:4.7},{&quot;2026-08-01&quot;:4.7},{&quot;2026-08-02&quot;:4.73},{&quot;2026-08-03&quot;:4.87},{&quot;2026-08-04&quot;:4.87},{&quot;2026-08-05&quot;:4.87},{&quot;2026-08-07&quot;:4.88},{&quot;2026-08-08&quot;:4.88},{&quot;2026-08-09&quot;:4.93},{&quot;2026-08-10&quot;:4.93},{&quot;2026-08-11&quot;:5.09},{&quot;2026-08-12&quot;:5.14},{&quot;2026-08-13&quot;:5.14},{&quot;2026-08-14&quot;:5.15},{&quot;2026-08-15&quot;:5.15},{&quot;2026-08-16&quot;:5.29},{&quot;2026-08-17&quot;:5.29},{&quot;2026-08-18&quot;:5.31},{&quot;2026-08-19&quot;:5.2},{&quot;2026-08-20&quot;:5.2},{&quot;2026-08-21&quot;:5.1},{&quot;2026-08-22&quot;:5.1},{&quot;2026-08-23&quot;:5.08},{&quot;2026-08-24&quot;:5.08},{&quot;2026-08-25&quot;:5.08},{&quot;2026-08-26&quot;:5.18},{&quot;2026-08-27&quot;:5.26},{&quot;2026-08-28&quot;:5.14},{&quot;2026-08-29&quot;:5.14},{&quot;2026-08-30&quot;:5.08},{&quot;2026-08-31&quot;:5.08},{&quot;2026-09-01&quot;:5.08},{&quot;2026-09-02&quot;:5.08},{&quot;2026-09-03&quot;:5.25},{&quot;2026-09-04&quot;:5.26},{&quot;2026-09-05&quot;:5.38},{&quot;2026-09-06&quot;:5.21},{&quot;2026-09-07&quot;:5.31},{&quot;2026-09-08&quot;:5.3},{&quot;2026-09-09&quot;:5.21},{&quot;2026-09-10&quot;:5.21},{&quot;2026-09-11&quot;:5.28}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:2.53},{&quot;2026-06-12&quot;:2.59},{&quot;2026-06-13&quot;:2.55},{&quot;2026-06-14&quot;:2.55},{&quot;2026-06-15&quot;:2.66},{&quot;2026-06-16&quot;:2.66},{&quot;2026-06-17&quot;:2.61},{&quot;2026-06-18&quot;:2.59},{&quot;2026-06-19&quot;:2.53},{&quot;2026-06-20&quot;:2.48},{&quot;2026-06-21&quot;:2.43},{&quot;2026-06-22&quot;:2.45},{&quot;2026-06-23&quot;:2.42},{&quot;2026-06-24&quot;:2.39},{&quot;2026-06-25&quot;:2.38},{&quot;2026-06-26&quot;:2.38},{&quot;2026-06-27&quot;:2.31},{&quot;2026-06-28&quot;:2.34},{&quot;2026-06-29&quot;:2.27},{&quot;2026-06-30&quot;:2.32},{&quot;2026-07-01&quot;:2.28},{&quot;2026-07-02&quot;:2.25},{&quot;2026-07-03&quot;:2.3},{&quot;2026-07-04&quot;:2.27},{&quot;2026-07-05&quot;:2.32},{&quot;2026-07-06&quot;:2.32},{&quot;2026-07-07&quot;:2.31},{&quot;2026-07-08&quot;:2.29},{&quot;2026-07-09&quot;:2.27},{&quot;2026-07-10&quot;:2.26},{&quot;2026-07-11&quot;:2.26},{&quot;2026-07-12&quot;:2.24},{&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.25},{&quot;2026-07-17&quot;:2.21},{&quot;2026-07-18&quot;:2.22},{&quot;2026-07-19&quot;:2.21},{&quot;2026-07-20&quot;:2.23},{&quot;2026-07-21&quot;:2.19},{&quot;2026-07-23&quot;:2.09},{&quot;2026-07-25&quot;:2.16},{&quot;2026-07-26&quot;:2.17},{&quot;2026-07-27&quot;:2.16},{&quot;2026-07-28&quot;:2.18},{&quot;2026-07-29&quot;:2.16},{&quot;2026-07-30&quot;:2.13},{&quot;2026-07-31&quot;:2.18},{&quot;2026-08-01&quot;:2.17},{&quot;2026-08-02&quot;:2.22},{&quot;2026-08-03&quot;:2.26},{&quot;2026-08-04&quot;:2.26},{&quot;2026-08-05&quot;:2.28},{&quot;2026-08-07&quot;:2.26},{&quot;2026-08-08&quot;:2.24},{&quot;2026-08-09&quot;:2.24},{&quot;2026-08-10&quot;:2.33},{&quot;2026-08-11&quot;:2.24},{&quot;2026-08-12&quot;:2.24},{&quot;2026-08-13&quot;:2.25},{&quot;2026-08-14&quot;:2.14},{&quot;2026-08-15&quot;:2.19},{&quot;2026-08-16&quot;:2.19},{&quot;2026-08-17&quot;:2.08},{&quot;2026-08-18&quot;:2.06},{&quot;2026-08-19&quot;:2.24},{&quot;2026-08-20&quot;:2.24},{&quot;2026-08-21&quot;:2.33},{&quot;2026-08-22&quot;:2.38},{&quot;2026-08-23&quot;:2.45},{&quot;2026-08-24&quot;:2.55},{&quot;2026-08-25&quot;:2.55},{&quot;2026-08-26&quot;:2.52},{&quot;2026-08-27&quot;:2.57},{&quot;2026-08-28&quot;:2.44},{&quot;2026-08-29&quot;:2.44},{&quot;2026-08-30&quot;:2.33},{&quot;2026-08-31&quot;:2.33},{&quot;2026-09-01&quot;:2.33},{&quot;2026-09-02&quot;:2.31},{&quot;2026-09-03&quot;:2.31},{&quot;2026-09-04&quot;:2.37},{&quot;2026-09-05&quot;:2.4},{&quot;2026-09-06&quot;:2.39},{&quot;2026-09-07&quot;:2.46},{&quot;2026-09-08&quot;:2.5},{&quot;2026-09-09&quot;:2.5},{&quot;2026-09-10&quot;:2.49},{&quot;2026-09-11&quot;:2.58}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="20298"
  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">
            Toxic Deluge
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Toxic Deluge
        </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-b'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Toxic Deluge" src="https://cards.scryfall.io/large/front/d/0/d00fa18f-d50a-4d3f-929e-91f29141b1df.jpg?1783930172" />
    </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.14
              </span>

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:9.45},{&quot;2026-06-11&quot;:9.45},{&quot;2026-06-12&quot;:9.58},{&quot;2026-06-13&quot;:9.58},{&quot;2026-06-14&quot;:9.58},{&quot;2026-06-15&quot;:9.58},{&quot;2026-06-16&quot;:9.58},{&quot;2026-06-17&quot;:9.58},{&quot;2026-06-18&quot;:9.58},{&quot;2026-06-19&quot;:9.58},{&quot;2026-06-20&quot;:9.58},{&quot;2026-06-21&quot;:9.67},{&quot;2026-06-22&quot;:9.62},{&quot;2026-06-23&quot;:9.62},{&quot;2026-06-24&quot;:9.62},{&quot;2026-06-25&quot;:9.62},{&quot;2026-06-26&quot;:9.62},{&quot;2026-06-27&quot;:9.72},{&quot;2026-06-28&quot;:9.72},{&quot;2026-06-29&quot;:9.72},{&quot;2026-06-30&quot;:9.72},{&quot;2026-07-01&quot;:9.72},{&quot;2026-07-02&quot;:9.72},{&quot;2026-07-03&quot;:9.72},{&quot;2026-07-04&quot;:9.72},{&quot;2026-07-05&quot;:9.72},{&quot;2026-07-06&quot;:9.72},{&quot;2026-07-07&quot;:9.72},{&quot;2026-07-08&quot;:9.72},{&quot;2026-07-09&quot;:9.72},{&quot;2026-07-10&quot;:9.72},{&quot;2026-07-11&quot;:9.72},{&quot;2026-07-12&quot;:9.72},{&quot;2026-07-13&quot;:9.72},{&quot;2026-07-14&quot;:9.72},{&quot;2026-07-15&quot;:9.72},{&quot;2026-07-16&quot;:9.72},{&quot;2026-07-17&quot;:9.72},{&quot;2026-07-18&quot;:9.72},{&quot;2026-07-19&quot;:9.72},{&quot;2026-07-20&quot;:9.72},{&quot;2026-07-21&quot;:9.72},{&quot;2026-07-23&quot;:9.72},{&quot;2026-07-25&quot;:9.79},{&quot;2026-07-26&quot;:9.79},{&quot;2026-07-27&quot;:9.96},{&quot;2026-07-29&quot;:9.96},{&quot;2026-07-30&quot;:9.96},{&quot;2026-07-31&quot;:10.01},{&quot;2026-08-01&quot;:10.01},{&quot;2026-08-02&quot;:10.01},{&quot;2026-08-03&quot;:10.01},{&quot;2026-08-04&quot;:10.01},{&quot;2026-08-05&quot;:10.01},{&quot;2026-08-07&quot;:10.01},{&quot;2026-08-08&quot;:10.01},{&quot;2026-08-09&quot;:10.01},{&quot;2026-08-10&quot;:10.01},{&quot;2026-08-11&quot;:10.1},{&quot;2026-08-12&quot;:10.31},{&quot;2026-08-13&quot;:10.31},{&quot;2026-08-14&quot;:10.31},{&quot;2026-08-15&quot;:10.4},{&quot;2026-08-16&quot;:10.4},{&quot;2026-08-17&quot;:10.34},{&quot;2026-08-18&quot;:10.34},{&quot;2026-08-19&quot;:10.34},{&quot;2026-08-20&quot;:10.34},{&quot;2026-08-21&quot;:10.56},{&quot;2026-08-22&quot;:10.56},{&quot;2026-08-23&quot;:10.56},{&quot;2026-08-24&quot;:10.56},{&quot;2026-08-25&quot;:10.56},{&quot;2026-08-26&quot;:10.29},{&quot;2026-08-27&quot;:10.29},{&quot;2026-08-28&quot;:10.48},{&quot;2026-08-29&quot;:10.48},{&quot;2026-08-30&quot;:10.48},{&quot;2026-08-31&quot;:10.48},{&quot;2026-09-01&quot;:10.48},{&quot;2026-09-02&quot;:10.48},{&quot;2026-09-03&quot;:10.48},{&quot;2026-09-04&quot;:10.48},{&quot;2026-09-05&quot;:10.2},{&quot;2026-09-06&quot;:10.2},{&quot;2026-09-07&quot;:10.2},{&quot;2026-09-08&quot;:10.2},{&quot;2026-09-09&quot;:10.2},{&quot;2026-09-10&quot;:10.08},{&quot;2026-09-11&quot;:10.08}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:6.04},{&quot;2026-06-11&quot;:5.96},{&quot;2026-06-12&quot;:5.96},{&quot;2026-06-13&quot;:5.96},{&quot;2026-06-14&quot;:5.96},{&quot;2026-06-15&quot;:5.96},{&quot;2026-06-16&quot;:5.96},{&quot;2026-06-17&quot;:5.96},{&quot;2026-06-18&quot;:5.96},{&quot;2026-06-19&quot;:5.96},{&quot;2026-06-20&quot;:5.96},{&quot;2026-06-21&quot;:5.96},{&quot;2026-06-22&quot;:5.96},{&quot;2026-06-23&quot;:5.96},{&quot;2026-06-24&quot;:5.96},{&quot;2026-06-25&quot;:6.03},{&quot;2026-06-26&quot;:6.03},{&quot;2026-06-27&quot;:6.03},{&quot;2026-06-28&quot;:6.03},{&quot;2026-06-29&quot;:6.03},{&quot;2026-06-30&quot;:6.03},{&quot;2026-07-01&quot;:6.02},{&quot;2026-07-02&quot;:6.02},{&quot;2026-07-03&quot;:6.02},{&quot;2026-07-04&quot;:6.02},{&quot;2026-07-05&quot;:6.02},{&quot;2026-07-06&quot;:6.02},{&quot;2026-07-07&quot;:6.02},{&quot;2026-07-08&quot;:6.02},{&quot;2026-07-09&quot;:6.02},{&quot;2026-07-10&quot;:6.02},{&quot;2026-07-11&quot;:6.02},{&quot;2026-07-12&quot;:6.02},{&quot;2026-07-13&quot;:6.14},{&quot;2026-07-14&quot;:6.14},{&quot;2026-07-15&quot;:6.11},{&quot;2026-07-16&quot;:6.11},{&quot;2026-07-17&quot;:6.11},{&quot;2026-07-18&quot;:6.11},{&quot;2026-07-19&quot;:5.92},{&quot;2026-07-20&quot;:5.88},{&quot;2026-07-21&quot;:5.91},{&quot;2026-07-23&quot;:5.82},{&quot;2026-07-25&quot;:5.82},{&quot;2026-07-26&quot;:5.91},{&quot;2026-07-27&quot;:5.91},{&quot;2026-07-29&quot;:5.74},{&quot;2026-07-30&quot;:5.74},{&quot;2026-07-31&quot;:5.74},{&quot;2026-08-01&quot;:5.74},{&quot;2026-08-02&quot;:5.7},{&quot;2026-08-03&quot;:5.71},{&quot;2026-08-04&quot;:5.71},{&quot;2026-08-05&quot;:5.66},{&quot;2026-08-07&quot;:5.66},{&quot;2026-08-08&quot;:5.66},{&quot;2026-08-09&quot;:5.66},{&quot;2026-08-10&quot;:5.66},{&quot;2026-08-11&quot;:5.66},{&quot;2026-08-12&quot;:5.66},{&quot;2026-08-13&quot;:5.66},{&quot;2026-08-14&quot;:5.66},{&quot;2026-08-15&quot;:5.66},{&quot;2026-08-16&quot;:5.66},{&quot;2026-08-17&quot;:5.66},{&quot;2026-08-18&quot;:5.73},{&quot;2026-08-19&quot;:5.7},{&quot;2026-08-20&quot;:5.7},{&quot;2026-08-21&quot;:5.57},{&quot;2026-08-22&quot;:5.61},{&quot;2026-08-23&quot;:5.54},{&quot;2026-08-24&quot;:5.56},{&quot;2026-08-25&quot;:5.56},{&quot;2026-08-26&quot;:5.56},{&quot;2026-08-27&quot;:5.57},{&quot;2026-08-28&quot;:5.67},{&quot;2026-08-29&quot;:5.67},{&quot;2026-08-30&quot;:5.39},{&quot;2026-08-31&quot;:5.39},{&quot;2026-09-01&quot;:5.39},{&quot;2026-09-02&quot;:5.45},{&quot;2026-09-03&quot;:5.45},{&quot;2026-09-04&quot;:5.41},{&quot;2026-09-05&quot;:5.41},{&quot;2026-09-06&quot;:5.4},{&quot;2026-09-07&quot;:5.38},{&quot;2026-09-08&quot;:5.29},{&quot;2026-09-09&quot;:5.13},{&quot;2026-09-10&quot;:5.17},{&quot;2026-09-11&quot;:5.14}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="95481"
  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">
            Joshua, Phoenix&#39;s Dominant 
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $4.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="Joshua, Phoenix&#39;s Dominant // Phoenix, Warden of Fire" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/4/04dd9ad9-eab2-447c-b065-078a0b184519.jpg?1783906508" />

        <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">
            Joshua, Phoenix&#39;s Dominant 
        </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 Noble Wizard</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><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"
    >
        <div data-controller="card-flip" class="flex flex-col items-center">
          <div
            data-action="click->card-flip#flip"
            class="flip-container cursor-pointer w-full max-w-xs mx-auto"
          >
            <div data-card-flip-target="card" class="flip-card">
              <div class="flip-card-front">
                <img class="w-full h-auto rounded-2xl" alt="Joshua, Phoenix&#39;s Dominant // Phoenix, Warden of Fire" src="https://cards.scryfall.io/large/front/0/4/04dd9ad9-eab2-447c-b065-078a0b184519.jpg?1783906508" />
              </div>

              <div class="flip-card-back">
                <img class="w-full h-auto rounded-2xl" alt="Joshua, Phoenix&#39;s Dominant // Phoenix, Warden of Fire" src="https://cards.scryfall.io/large/back/0/4/04dd9ad9-eab2-447c-b065-078a0b184519.jpg?1783906508" />
              </div>
            </div>
          </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:7.01},{&quot;2026-06-14&quot;:7.03},{&quot;2026-06-15&quot;:6.84},{&quot;2026-06-16&quot;:6.55},{&quot;2026-06-17&quot;:6.55},{&quot;2026-06-18&quot;:6.55},{&quot;2026-06-19&quot;:6.46},{&quot;2026-06-20&quot;:6.98},{&quot;2026-06-21&quot;:7.0},{&quot;2026-06-22&quot;:6.5},{&quot;2026-06-23&quot;:6.76},{&quot;2026-06-24&quot;:6.84},{&quot;2026-06-25&quot;:6.84},{&quot;2026-06-26&quot;:6.96},{&quot;2026-06-27&quot;:7.03},{&quot;2026-06-28&quot;:6.96},{&quot;2026-06-29&quot;:6.96},{&quot;2026-06-30&quot;:6.95},{&quot;2026-07-01&quot;:6.99},{&quot;2026-07-02&quot;:7.03},{&quot;2026-07-03&quot;:7.11},{&quot;2026-07-04&quot;:6.79},{&quot;2026-07-05&quot;:6.89},{&quot;2026-07-06&quot;:6.91},{&quot;2026-07-07&quot;:6.68},{&quot;2026-07-08&quot;:6.68},{&quot;2026-07-09&quot;:6.68},{&quot;2026-07-10&quot;:6.68},{&quot;2026-07-11&quot;:6.68},{&quot;2026-07-12&quot;:6.69},{&quot;2026-07-13&quot;:6.5},{&quot;2026-07-14&quot;:6.54},{&quot;2026-07-15&quot;:6.44},{&quot;2026-07-16&quot;:6.44},{&quot;2026-07-17&quot;:6.59},{&quot;2026-07-18&quot;:6.51},{&quot;2026-07-19&quot;:6.5},{&quot;2026-07-20&quot;:6.45},{&quot;2026-07-21&quot;:6.45},{&quot;2026-07-22&quot;:6.42},{&quot;2026-07-23&quot;:6.3},{&quot;2026-07-24&quot;:6.34},{&quot;2026-07-25&quot;:6.34},{&quot;2026-07-26&quot;:6.64},{&quot;2026-07-27&quot;:6.62},{&quot;2026-07-28&quot;:6.4},{&quot;2026-07-29&quot;:6.4},{&quot;2026-07-30&quot;:6.48},{&quot;2026-07-31&quot;:6.52},{&quot;2026-08-01&quot;:6.52},{&quot;2026-08-02&quot;:6.52},{&quot;2026-08-03&quot;:6.56},{&quot;2026-08-04&quot;:6.38},{&quot;2026-08-05&quot;:6.38},{&quot;2026-08-07&quot;:6.48},{&quot;2026-08-08&quot;:6.56},{&quot;2026-08-09&quot;:6.59},{&quot;2026-08-10&quot;:6.58},{&quot;2026-08-11&quot;:6.59},{&quot;2026-08-12&quot;:6.5},{&quot;2026-08-13&quot;:6.5},{&quot;2026-08-14&quot;:6.5},{&quot;2026-08-15&quot;:6.59},{&quot;2026-08-16&quot;:6.59},{&quot;2026-08-17&quot;:6.61},{&quot;2026-08-18&quot;:6.61},{&quot;2026-08-19&quot;:6.6},{&quot;2026-08-20&quot;:6.78},{&quot;2026-08-21&quot;:6.7},{&quot;2026-08-22&quot;:6.73},{&quot;2026-08-23&quot;:6.82},{&quot;2026-08-24&quot;:6.81},{&quot;2026-08-25&quot;:6.81},{&quot;2026-08-26&quot;:6.94},{&quot;2026-08-27&quot;:6.94},{&quot;2026-08-28&quot;:6.9},{&quot;2026-08-29&quot;:6.9},{&quot;2026-08-30&quot;:6.9},{&quot;2026-08-31&quot;:6.9},{&quot;2026-09-01&quot;:6.92},{&quot;2026-09-02&quot;:6.92},{&quot;2026-09-03&quot;:7.0},{&quot;2026-09-04&quot;:7.0},{&quot;2026-09-05&quot;:7.03},{&quot;2026-09-06&quot;:7.03},{&quot;2026-09-07&quot;:7.07},{&quot;2026-09-08&quot;:7.1},{&quot;2026-09-09&quot;:7.1},{&quot;2026-09-10&quot;:7.1},{&quot;2026-09-11&quot;:7.09}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:5.22},{&quot;2026-06-14&quot;:5.38},{&quot;2026-06-15&quot;:5.41},{&quot;2026-06-16&quot;:5.44},{&quot;2026-06-17&quot;:5.52},{&quot;2026-06-18&quot;:5.73},{&quot;2026-06-19&quot;:5.64},{&quot;2026-06-20&quot;:5.63},{&quot;2026-06-21&quot;:5.39},{&quot;2026-06-22&quot;:5.26},{&quot;2026-06-23&quot;:5.67},{&quot;2026-06-24&quot;:6.12},{&quot;2026-06-25&quot;:6.12},{&quot;2026-06-26&quot;:6.05},{&quot;2026-06-27&quot;:6.05},{&quot;2026-06-28&quot;:5.86},{&quot;2026-06-29&quot;:6.06},{&quot;2026-06-30&quot;:6.25},{&quot;2026-07-01&quot;:6.12},{&quot;2026-07-02&quot;:6.12},{&quot;2026-07-03&quot;:6.12},{&quot;2026-07-04&quot;:6.21},{&quot;2026-07-05&quot;:6.2},{&quot;2026-07-06&quot;:5.38},{&quot;2026-07-07&quot;:5.34},{&quot;2026-07-08&quot;:5.22},{&quot;2026-07-09&quot;:5.2},{&quot;2026-07-10&quot;:4.59},{&quot;2026-07-11&quot;:4.79},{&quot;2026-07-12&quot;:4.83},{&quot;2026-07-13&quot;:5.03},{&quot;2026-07-14&quot;:5.15},{&quot;2026-07-15&quot;:5.43},{&quot;2026-07-16&quot;:5.43},{&quot;2026-07-17&quot;:5.39},{&quot;2026-07-18&quot;:5.23},{&quot;2026-07-19&quot;:5.04},{&quot;2026-07-20&quot;:4.93},{&quot;2026-07-21&quot;:4.87},{&quot;2026-07-22&quot;:4.94},{&quot;2026-07-23&quot;:5.02},{&quot;2026-07-24&quot;:4.74},{&quot;2026-07-25&quot;:4.9},{&quot;2026-07-26&quot;:4.74},{&quot;2026-07-27&quot;:4.76},{&quot;2026-07-28&quot;:4.7},{&quot;2026-07-29&quot;:4.55},{&quot;2026-07-30&quot;:4.5},{&quot;2026-07-31&quot;:4.56},{&quot;2026-08-01&quot;:4.75},{&quot;2026-08-02&quot;:4.72},{&quot;2026-08-03&quot;:4.75},{&quot;2026-08-04&quot;:4.65},{&quot;2026-08-05&quot;:4.58},{&quot;2026-08-07&quot;:4.87},{&quot;2026-08-08&quot;:5.04},{&quot;2026-08-09&quot;:5.06},{&quot;2026-08-10&quot;:5.04},{&quot;2026-08-11&quot;:5.36},{&quot;2026-08-12&quot;:5.36},{&quot;2026-08-13&quot;:5.15},{&quot;2026-08-14&quot;:5.15},{&quot;2026-08-15&quot;:5.19},{&quot;2026-08-16&quot;:5.08},{&quot;2026-08-17&quot;:5.16},{&quot;2026-08-18&quot;:5.15},{&quot;2026-08-19&quot;:5.29},{&quot;2026-08-20&quot;:5.56},{&quot;2026-08-21&quot;:5.56},{&quot;2026-08-22&quot;:5.44},{&quot;2026-08-23&quot;:5.62},{&quot;2026-08-24&quot;:5.68},{&quot;2026-08-25&quot;:5.54},{&quot;2026-08-26&quot;:5.54},{&quot;2026-08-27&quot;:5.54},{&quot;2026-08-28&quot;:5.62},{&quot;2026-08-29&quot;:5.62},{&quot;2026-08-30&quot;:5.46},{&quot;2026-08-31&quot;:5.55},{&quot;2026-09-01&quot;:5.44},{&quot;2026-09-02&quot;:5.24},{&quot;2026-09-03&quot;:5.3},{&quot;2026-09-04&quot;:5.26},{&quot;2026-09-05&quot;:5.08},{&quot;2026-09-06&quot;:5.25},{&quot;2026-09-07&quot;:5.23},{&quot;2026-09-08&quot;:5.14},{&quot;2026-09-09&quot;:4.95},{&quot;2026-09-10&quot;:4.85},{&quot;2026-09-11&quot;:4.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="89974"
  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-znr 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">
            Brightclimb Pathway 
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Brightclimb Pathway 
        </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"
    >
        <div data-controller="card-flip" class="flex flex-col items-center">
          <div
            data-action="click->card-flip#flip"
            class="flip-container cursor-pointer w-full max-w-xs mx-auto"
          >
            <div data-card-flip-target="card" class="flip-card">
              <div class="flip-card-front">
                <img class="w-full h-auto rounded-2xl" alt="Brightclimb Pathway // Grimclimb Pathway" src="https://cards.scryfall.io/large/front/d/2/d24c3d51-795d-4c01-a34a-3280fccd2d78.jpg?1783929313" />
              </div>

              <div class="flip-card-back">
                <img class="w-full h-auto rounded-2xl" alt="Brightclimb Pathway // Grimclimb Pathway" src="https://cards.scryfall.io/large/back/d/2/d24c3d51-795d-4c01-a34a-3280fccd2d78.jpg?1783929313" />
              </div>
            </div>
          </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:4.69},{&quot;2026-06-14&quot;:4.69},{&quot;2026-06-15&quot;:4.69},{&quot;2026-06-16&quot;:4.45},{&quot;2026-06-17&quot;:4.51},{&quot;2026-06-18&quot;:4.56},{&quot;2026-06-19&quot;:4.64},{&quot;2026-06-20&quot;:4.63},{&quot;2026-06-21&quot;:4.63},{&quot;2026-06-22&quot;:4.67},{&quot;2026-06-23&quot;:4.61},{&quot;2026-06-24&quot;:4.61},{&quot;2026-06-25&quot;:4.61},{&quot;2026-06-26&quot;:4.61},{&quot;2026-06-27&quot;:4.61},{&quot;2026-06-28&quot;:4.61},{&quot;2026-06-29&quot;:4.61},{&quot;2026-06-30&quot;:4.61},{&quot;2026-07-01&quot;:4.61},{&quot;2026-07-02&quot;:4.62},{&quot;2026-07-03&quot;:4.62},{&quot;2026-07-04&quot;:4.62},{&quot;2026-07-05&quot;:4.65},{&quot;2026-07-06&quot;:4.65},{&quot;2026-07-07&quot;:4.57},{&quot;2026-07-08&quot;:4.57},{&quot;2026-07-09&quot;:4.57},{&quot;2026-07-10&quot;:4.57},{&quot;2026-07-11&quot;:4.62},{&quot;2026-07-12&quot;:4.62},{&quot;2026-07-13&quot;:4.62},{&quot;2026-07-14&quot;:4.62},{&quot;2026-07-15&quot;:4.62},{&quot;2026-07-16&quot;:4.62},{&quot;2026-07-17&quot;:4.62},{&quot;2026-07-18&quot;:4.62},{&quot;2026-07-19&quot;:4.6},{&quot;2026-07-20&quot;:4.6},{&quot;2026-07-21&quot;:4.6},{&quot;2026-07-22&quot;:4.65},{&quot;2026-07-23&quot;:4.65},{&quot;2026-07-24&quot;:4.65},{&quot;2026-07-25&quot;:4.65},{&quot;2026-07-26&quot;:4.65},{&quot;2026-07-27&quot;:4.7},{&quot;2026-07-28&quot;:4.66},{&quot;2026-07-29&quot;:4.66},{&quot;2026-07-30&quot;:4.66},{&quot;2026-07-31&quot;:4.66},{&quot;2026-08-01&quot;:4.66},{&quot;2026-08-02&quot;:4.75},{&quot;2026-08-03&quot;:4.75},{&quot;2026-08-04&quot;:4.75},{&quot;2026-08-05&quot;:4.75},{&quot;2026-08-07&quot;:4.75},{&quot;2026-08-08&quot;:4.75},{&quot;2026-08-09&quot;:4.78},{&quot;2026-08-10&quot;:4.78},{&quot;2026-08-11&quot;:4.78},{&quot;2026-08-12&quot;:4.82},{&quot;2026-08-13&quot;:4.82},{&quot;2026-08-14&quot;:4.82},{&quot;2026-08-15&quot;:4.82},{&quot;2026-08-16&quot;:4.82},{&quot;2026-08-17&quot;:4.82},{&quot;2026-08-18&quot;:4.82},{&quot;2026-08-19&quot;:4.9},{&quot;2026-08-20&quot;:4.9},{&quot;2026-08-21&quot;:4.9},{&quot;2026-08-22&quot;:4.9},{&quot;2026-08-23&quot;:4.9},{&quot;2026-08-24&quot;:4.96},{&quot;2026-08-25&quot;:4.84},{&quot;2026-08-26&quot;:4.77},{&quot;2026-08-27&quot;:4.78},{&quot;2026-08-28&quot;:4.78},{&quot;2026-08-29&quot;:4.78},{&quot;2026-08-30&quot;:4.75},{&quot;2026-08-31&quot;:4.75},{&quot;2026-09-01&quot;:4.75},{&quot;2026-09-02&quot;:4.75},{&quot;2026-09-03&quot;:4.72},{&quot;2026-09-04&quot;:4.72},{&quot;2026-09-05&quot;:4.65},{&quot;2026-09-06&quot;:4.65},{&quot;2026-09-07&quot;:4.59},{&quot;2026-09-08&quot;:4.59},{&quot;2026-09-09&quot;:4.59},{&quot;2026-09-10&quot;:4.62},{&quot;2026-09-11&quot;:4.62}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:5.06},{&quot;2026-06-14&quot;:4.85},{&quot;2026-06-15&quot;:5.07},{&quot;2026-06-16&quot;:5.06},{&quot;2026-06-17&quot;:5.2},{&quot;2026-06-18&quot;:5.1},{&quot;2026-06-19&quot;:5.1},{&quot;2026-06-20&quot;:5.04},{&quot;2026-06-21&quot;:5.06},{&quot;2026-06-22&quot;:5.25},{&quot;2026-06-23&quot;:5.18},{&quot;2026-06-24&quot;:5.13},{&quot;2026-06-25&quot;:5.13},{&quot;2026-06-26&quot;:5.09},{&quot;2026-06-27&quot;:5.02},{&quot;2026-06-28&quot;:5.02},{&quot;2026-06-29&quot;:5.02},{&quot;2026-06-30&quot;:4.96},{&quot;2026-07-01&quot;:4.96},{&quot;2026-07-02&quot;:4.92},{&quot;2026-07-03&quot;:4.85},{&quot;2026-07-04&quot;:4.44},{&quot;2026-07-05&quot;:4.51},{&quot;2026-07-06&quot;:4.26},{&quot;2026-07-07&quot;:4.17},{&quot;2026-07-08&quot;:4.31},{&quot;2026-07-09&quot;:4.21},{&quot;2026-07-10&quot;:4.23},{&quot;2026-07-11&quot;:4.16},{&quot;2026-07-12&quot;:4.27},{&quot;2026-07-13&quot;:4.43},{&quot;2026-07-14&quot;:4.36},{&quot;2026-07-15&quot;:4.36},{&quot;2026-07-16&quot;:4.4},{&quot;2026-07-17&quot;:4.37},{&quot;2026-07-18&quot;:4.46},{&quot;2026-07-19&quot;:4.45},{&quot;2026-07-20&quot;:4.48},{&quot;2026-07-21&quot;:4.61},{&quot;2026-07-22&quot;:4.65},{&quot;2026-07-23&quot;:4.68},{&quot;2026-07-24&quot;:4.82},{&quot;2026-07-25&quot;:4.8},{&quot;2026-07-26&quot;:4.64},{&quot;2026-07-27&quot;:4.6},{&quot;2026-07-28&quot;:4.5},{&quot;2026-07-29&quot;:4.47},{&quot;2026-07-30&quot;:4.48},{&quot;2026-07-31&quot;:4.45},{&quot;2026-08-01&quot;:4.51},{&quot;2026-08-02&quot;:4.53},{&quot;2026-08-03&quot;:4.52},{&quot;2026-08-04&quot;:4.67},{&quot;2026-08-05&quot;:4.67},{&quot;2026-08-07&quot;:4.64},{&quot;2026-08-08&quot;:4.69},{&quot;2026-08-09&quot;:4.76},{&quot;2026-08-10&quot;:4.73},{&quot;2026-08-11&quot;:4.74},{&quot;2026-08-12&quot;:4.71},{&quot;2026-08-13&quot;:4.77},{&quot;2026-08-14&quot;:4.75},{&quot;2026-08-15&quot;:4.75},{&quot;2026-08-16&quot;:4.56},{&quot;2026-08-17&quot;:4.54},{&quot;2026-08-18&quot;:4.54},{&quot;2026-08-19&quot;:4.54},{&quot;2026-08-20&quot;:4.55},{&quot;2026-08-21&quot;:4.56},{&quot;2026-08-22&quot;:4.56},{&quot;2026-08-23&quot;:4.56},{&quot;2026-08-24&quot;:4.52},{&quot;2026-08-25&quot;:4.52},{&quot;2026-08-26&quot;:4.48},{&quot;2026-08-27&quot;:4.46},{&quot;2026-08-28&quot;:4.63},{&quot;2026-08-29&quot;:4.63},{&quot;2026-08-30&quot;:4.6},{&quot;2026-08-31&quot;:4.74},{&quot;2026-09-01&quot;:4.74},{&quot;2026-09-02&quot;:4.68},{&quot;2026-09-03&quot;:4.64},{&quot;2026-09-04&quot;:4.64},{&quot;2026-09-05&quot;:4.44},{&quot;2026-09-06&quot;:4.41},{&quot;2026-09-07&quot;:4.38},{&quot;2026-09-08&quot;:4.47},{&quot;2026-09-09&quot;:4.37},{&quot;2026-09-10&quot;:4.39},{&quot;2026-09-11&quot;:4.3}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Talisman of Indulgence" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/f/a/fa6c62c7-8fd4-46f1-a7f4-fc6e74d34b35.jpg?1783926166" />

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Talisman of Indulgence" src="https://cards.scryfall.io/large/front/f/a/fa6c62c7-8fd4-46f1-a7f4-fc6e74d34b35.jpg?1783926166" />
    </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.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">$0.65</span>
              <span class="text-xs text-grey-text">Credit: $0.85</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:2.88},{&quot;2026-06-11&quot;:2.88},{&quot;2026-06-12&quot;:2.88},{&quot;2026-06-13&quot;:2.89},{&quot;2026-06-14&quot;:2.89},{&quot;2026-06-15&quot;:3.03},{&quot;2026-06-16&quot;:3.05},{&quot;2026-06-17&quot;:3.36},{&quot;2026-06-18&quot;:3.36},{&quot;2026-06-19&quot;:3.36},{&quot;2026-06-20&quot;:3.33},{&quot;2026-06-21&quot;:3.33},{&quot;2026-06-22&quot;:3.33},{&quot;2026-06-23&quot;:3.33},{&quot;2026-06-24&quot;:3.38},{&quot;2026-06-25&quot;:3.39},{&quot;2026-06-26&quot;:3.35},{&quot;2026-06-27&quot;:3.39},{&quot;2026-06-28&quot;:3.44},{&quot;2026-06-29&quot;:3.44},{&quot;2026-06-30&quot;:3.44},{&quot;2026-07-01&quot;:3.42},{&quot;2026-07-02&quot;:3.59},{&quot;2026-07-03&quot;:3.55},{&quot;2026-07-04&quot;:3.55},{&quot;2026-07-05&quot;:3.59},{&quot;2026-07-06&quot;:3.59},{&quot;2026-07-07&quot;:3.59},{&quot;2026-07-08&quot;:3.59},{&quot;2026-07-09&quot;:3.59},{&quot;2026-07-10&quot;:3.59},{&quot;2026-07-11&quot;:3.59},{&quot;2026-07-12&quot;:3.59},{&quot;2026-07-13&quot;:3.72},{&quot;2026-07-14&quot;:3.76},{&quot;2026-07-15&quot;:3.77},{&quot;2026-07-16&quot;:3.77},{&quot;2026-07-17&quot;:3.77},{&quot;2026-07-18&quot;:3.76},{&quot;2026-07-19&quot;:3.76},{&quot;2026-07-20&quot;:3.77},{&quot;2026-07-21&quot;:3.77},{&quot;2026-07-23&quot;:3.65},{&quot;2026-07-25&quot;:3.73},{&quot;2026-07-26&quot;:3.73},{&quot;2026-07-27&quot;:3.73},{&quot;2026-07-29&quot;:3.62},{&quot;2026-07-30&quot;:3.62},{&quot;2026-07-31&quot;:3.62},{&quot;2026-08-01&quot;:3.58},{&quot;2026-08-02&quot;:3.63},{&quot;2026-08-03&quot;:3.63},{&quot;2026-08-04&quot;:3.67},{&quot;2026-08-05&quot;:3.71},{&quot;2026-08-07&quot;:3.7},{&quot;2026-08-08&quot;:3.73},{&quot;2026-08-09&quot;:3.73},{&quot;2026-08-10&quot;:3.72},{&quot;2026-08-11&quot;:3.72},{&quot;2026-08-12&quot;:3.71},{&quot;2026-08-13&quot;:3.71},{&quot;2026-08-14&quot;:3.79},{&quot;2026-08-15&quot;:3.79},{&quot;2026-08-16&quot;:3.79},{&quot;2026-08-17&quot;:3.79},{&quot;2026-08-18&quot;:3.79},{&quot;2026-08-19&quot;:3.79},{&quot;2026-08-20&quot;:3.79},{&quot;2026-08-21&quot;:3.71},{&quot;2026-08-22&quot;:3.62},{&quot;2026-08-23&quot;:3.62},{&quot;2026-08-24&quot;:3.62},{&quot;2026-08-25&quot;:3.62},{&quot;2026-08-26&quot;:3.58},{&quot;2026-08-27&quot;:3.58},{&quot;2026-08-28&quot;:3.58},{&quot;2026-08-29&quot;:3.58},{&quot;2026-08-30&quot;:3.65},{&quot;2026-08-31&quot;:3.65},{&quot;2026-09-01&quot;:3.65},{&quot;2026-09-02&quot;:3.65},{&quot;2026-09-03&quot;:3.63},{&quot;2026-09-04&quot;:3.63},{&quot;2026-09-05&quot;:3.63},{&quot;2026-09-06&quot;:3.63},{&quot;2026-09-07&quot;:3.68},{&quot;2026-09-08&quot;:3.68},{&quot;2026-09-09&quot;:3.68},{&quot;2026-09-10&quot;:3.72},{&quot;2026-09-11&quot;:3.72}]}"
        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="49542"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mh2 ss-rare ss-fw ss-2x flex-shrink-0"></i>

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

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

      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $3.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="Patriarch&#39;s Bidding" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/3/1/317686d8-b762-4598-b74a-8b1fa6b899ba.jpg?1783926786" />

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Patriarch&#39;s Bidding" src="https://cards.scryfall.io/large/front/3/1/317686d8-b762-4598-b74a-8b1fa6b899ba.jpg?1783926786" />
    </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.65
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:7.49},{&quot;2026-06-14&quot;:7.49},{&quot;2026-06-15&quot;:7.49},{&quot;2026-06-16&quot;:7.49},{&quot;2026-06-17&quot;:7.49},{&quot;2026-06-18&quot;:7.49},{&quot;2026-06-19&quot;:7.49},{&quot;2026-06-20&quot;:7.49},{&quot;2026-06-21&quot;:7.49},{&quot;2026-06-22&quot;:7.49},{&quot;2026-06-23&quot;:7.49},{&quot;2026-06-24&quot;:7.48},{&quot;2026-06-25&quot;:7.48},{&quot;2026-06-26&quot;:7.48},{&quot;2026-06-27&quot;:7.53},{&quot;2026-06-28&quot;:7.53},{&quot;2026-06-29&quot;:7.53},{&quot;2026-06-30&quot;:7.53},{&quot;2026-07-01&quot;:7.53},{&quot;2026-07-02&quot;:7.53},{&quot;2026-07-03&quot;:7.53},{&quot;2026-07-04&quot;:7.53},{&quot;2026-07-05&quot;:7.53},{&quot;2026-07-06&quot;:7.53},{&quot;2026-07-07&quot;:7.53},{&quot;2026-07-08&quot;:7.53},{&quot;2026-07-09&quot;:7.53},{&quot;2026-07-10&quot;:7.53},{&quot;2026-07-11&quot;:7.6},{&quot;2026-07-12&quot;:7.6},{&quot;2026-07-13&quot;:7.6},{&quot;2026-07-14&quot;:7.6},{&quot;2026-07-15&quot;:7.6},{&quot;2026-07-16&quot;:7.6},{&quot;2026-07-17&quot;:7.6},{&quot;2026-07-18&quot;:7.6},{&quot;2026-07-19&quot;:7.6},{&quot;2026-07-20&quot;:7.6},{&quot;2026-07-21&quot;:7.6},{&quot;2026-07-22&quot;:7.6},{&quot;2026-07-23&quot;:7.6},{&quot;2026-07-24&quot;:7.6},{&quot;2026-07-25&quot;:7.67},{&quot;2026-07-26&quot;:7.67},{&quot;2026-07-27&quot;:7.71},{&quot;2026-07-28&quot;:7.71},{&quot;2026-07-29&quot;:7.71},{&quot;2026-07-30&quot;:7.71},{&quot;2026-07-31&quot;:7.61},{&quot;2026-08-01&quot;:7.61},{&quot;2026-08-02&quot;:7.61},{&quot;2026-08-03&quot;:7.61},{&quot;2026-08-04&quot;:7.61},{&quot;2026-08-05&quot;:7.61},{&quot;2026-08-07&quot;:7.63},{&quot;2026-08-08&quot;:7.63},{&quot;2026-08-09&quot;:7.63},{&quot;2026-08-10&quot;:7.63},{&quot;2026-08-11&quot;:7.63},{&quot;2026-08-12&quot;:7.63},{&quot;2026-08-13&quot;:7.65},{&quot;2026-08-14&quot;:7.65},{&quot;2026-08-15&quot;:7.65},{&quot;2026-08-16&quot;:7.65},{&quot;2026-08-17&quot;:7.65},{&quot;2026-08-18&quot;:7.65},{&quot;2026-08-19&quot;:7.65},{&quot;2026-08-20&quot;:7.72},{&quot;2026-08-21&quot;:7.66},{&quot;2026-08-22&quot;:7.66},{&quot;2026-08-23&quot;:7.66},{&quot;2026-08-24&quot;:7.66},{&quot;2026-08-25&quot;:7.66},{&quot;2026-08-26&quot;:7.66},{&quot;2026-08-27&quot;:7.66},{&quot;2026-08-28&quot;:7.66},{&quot;2026-08-29&quot;:7.66},{&quot;2026-08-30&quot;:7.66},{&quot;2026-08-31&quot;:7.73},{&quot;2026-09-01&quot;:7.73},{&quot;2026-09-02&quot;:7.86},{&quot;2026-09-03&quot;:7.86},{&quot;2026-09-04&quot;:7.86},{&quot;2026-09-05&quot;:7.92},{&quot;2026-09-06&quot;:7.92},{&quot;2026-09-07&quot;:7.92},{&quot;2026-09-08&quot;:7.92},{&quot;2026-09-09&quot;:7.92},{&quot;2026-09-10&quot;:7.92},{&quot;2026-09-11&quot;:7.92}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:4.64},{&quot;2026-06-14&quot;:4.67},{&quot;2026-06-15&quot;:5.08},{&quot;2026-06-16&quot;:5.21},{&quot;2026-06-17&quot;:5.29},{&quot;2026-06-18&quot;:4.89},{&quot;2026-06-19&quot;:4.84},{&quot;2026-06-20&quot;:5.04},{&quot;2026-06-21&quot;:5.02},{&quot;2026-06-22&quot;:4.8},{&quot;2026-06-23&quot;:5.02},{&quot;2026-06-24&quot;:4.94},{&quot;2026-06-25&quot;:5.01},{&quot;2026-06-26&quot;:5.25},{&quot;2026-06-27&quot;:5.32},{&quot;2026-06-28&quot;:5.37},{&quot;2026-06-29&quot;:5.11},{&quot;2026-06-30&quot;:4.92},{&quot;2026-07-01&quot;:4.8},{&quot;2026-07-02&quot;:4.84},{&quot;2026-07-03&quot;:4.69},{&quot;2026-07-04&quot;:4.65},{&quot;2026-07-05&quot;:4.53},{&quot;2026-07-06&quot;:4.51},{&quot;2026-07-07&quot;:4.6},{&quot;2026-07-08&quot;:4.41},{&quot;2026-07-09&quot;:4.25},{&quot;2026-07-10&quot;:4.28},{&quot;2026-07-11&quot;:4.13},{&quot;2026-07-12&quot;:4.25},{&quot;2026-07-13&quot;:4.39},{&quot;2026-07-14&quot;:4.47},{&quot;2026-07-15&quot;:4.42},{&quot;2026-07-16&quot;:4.44},{&quot;2026-07-17&quot;:4.38},{&quot;2026-07-18&quot;:4.13},{&quot;2026-07-19&quot;:3.99},{&quot;2026-07-20&quot;:3.78},{&quot;2026-07-21&quot;:3.99},{&quot;2026-07-22&quot;:4.01},{&quot;2026-07-23&quot;:4.04},{&quot;2026-07-24&quot;:4.08},{&quot;2026-07-25&quot;:3.97},{&quot;2026-07-26&quot;:3.98},{&quot;2026-07-27&quot;:3.99},{&quot;2026-07-28&quot;:3.87},{&quot;2026-07-29&quot;:4.06},{&quot;2026-07-30&quot;:4.1},{&quot;2026-07-31&quot;:4.1},{&quot;2026-08-01&quot;:4.09},{&quot;2026-08-02&quot;:3.97},{&quot;2026-08-03&quot;:3.95},{&quot;2026-08-04&quot;:3.8},{&quot;2026-08-05&quot;:3.76},{&quot;2026-08-07&quot;:3.49},{&quot;2026-08-08&quot;:3.45},{&quot;2026-08-09&quot;:3.39},{&quot;2026-08-10&quot;:3.32},{&quot;2026-08-11&quot;:3.34},{&quot;2026-08-12&quot;:3.35},{&quot;2026-08-13&quot;:3.5},{&quot;2026-08-14&quot;:3.38},{&quot;2026-08-15&quot;:3.36},{&quot;2026-08-16&quot;:3.21},{&quot;2026-08-17&quot;:3.31},{&quot;2026-08-18&quot;:3.43},{&quot;2026-08-19&quot;:3.49},{&quot;2026-08-20&quot;:3.58},{&quot;2026-08-21&quot;:3.36},{&quot;2026-08-22&quot;:3.51},{&quot;2026-08-23&quot;:3.57},{&quot;2026-08-24&quot;:3.62},{&quot;2026-08-25&quot;:3.69},{&quot;2026-08-26&quot;:3.76},{&quot;2026-08-27&quot;:3.83},{&quot;2026-08-28&quot;:3.86},{&quot;2026-08-29&quot;:3.86},{&quot;2026-08-30&quot;:3.87},{&quot;2026-08-31&quot;:3.81},{&quot;2026-09-01&quot;:3.76},{&quot;2026-09-02&quot;:3.74},{&quot;2026-09-03&quot;:3.61},{&quot;2026-09-04&quot;:3.64},{&quot;2026-09-05&quot;:3.91},{&quot;2026-09-06&quot;:3.89},{&quot;2026-09-07&quot;:3.87},{&quot;2026-09-08&quot;:3.87},{&quot;2026-09-09&quot;:3.67},{&quot;2026-09-10&quot;:3.69},{&quot;2026-09-11&quot;:3.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="39073"
  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-rex ss-common ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <div data-controller="card-flip" class="flex flex-col items-center">
          <div
            data-action="click->card-flip#flip"
            class="flip-container cursor-pointer w-full max-w-xs mx-auto"
          >
            <div data-card-flip-target="card" class="flip-card">
              <div class="flip-card-front">
                <img class="w-full h-auto rounded-2xl" alt="Command Tower // Command Tower" src="https://cards.scryfall.io/large/front/b/f/bffbe9ec-edbc-43ed-a3bf-60635e7e625c.jpg?1783913635" />
              </div>

              <div class="flip-card-back">
                <img class="w-full h-auto rounded-2xl" alt="Command Tower // Command Tower" src="https://cards.scryfall.io/large/back/b/f/bffbe9ec-edbc-43ed-a3bf-60635e7e625c.jpg?1783913635" />
              </div>
            </div>
          </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-11&quot;:8.66},{&quot;2026-06-12&quot;:8.73},{&quot;2026-06-13&quot;:8.73},{&quot;2026-06-14&quot;:8.73},{&quot;2026-06-15&quot;:8.74},{&quot;2026-06-16&quot;:8.79},{&quot;2026-06-17&quot;:8.79},{&quot;2026-06-18&quot;:8.79},{&quot;2026-06-19&quot;:8.79},{&quot;2026-06-20&quot;:8.79},{&quot;2026-06-21&quot;:8.79},{&quot;2026-06-22&quot;:8.79},{&quot;2026-06-23&quot;:8.79},{&quot;2026-06-24&quot;:8.79},{&quot;2026-06-25&quot;:8.79},{&quot;2026-06-26&quot;:8.79},{&quot;2026-06-27&quot;:8.68},{&quot;2026-06-28&quot;:8.6},{&quot;2026-06-29&quot;:8.68},{&quot;2026-06-30&quot;:8.7},{&quot;2026-07-01&quot;:8.64},{&quot;2026-07-02&quot;:8.64},{&quot;2026-07-03&quot;:8.64},{&quot;2026-07-04&quot;:8.66},{&quot;2026-07-05&quot;:8.66},{&quot;2026-07-06&quot;:8.66},{&quot;2026-07-07&quot;:8.66},{&quot;2026-07-08&quot;:8.66},{&quot;2026-07-09&quot;:8.66},{&quot;2026-07-10&quot;:8.74},{&quot;2026-07-11&quot;:8.76},{&quot;2026-07-12&quot;:8.76},{&quot;2026-07-13&quot;:8.79},{&quot;2026-07-14&quot;:8.79},{&quot;2026-07-15&quot;:8.79},{&quot;2026-07-16&quot;:9.08},{&quot;2026-07-17&quot;:9.08},{&quot;2026-07-18&quot;:9.08},{&quot;2026-07-19&quot;:9.06},{&quot;2026-07-20&quot;:9.06},{&quot;2026-07-21&quot;:9.06},{&quot;2026-07-23&quot;:9.06},{&quot;2026-07-25&quot;:9.0},{&quot;2026-07-26&quot;:9.0},{&quot;2026-07-27&quot;:9.04},{&quot;2026-07-28&quot;:8.97},{&quot;2026-07-29&quot;:8.97},{&quot;2026-07-30&quot;:8.97},{&quot;2026-07-31&quot;:8.99},{&quot;2026-08-01&quot;:8.99},{&quot;2026-08-02&quot;:9.08},{&quot;2026-08-03&quot;:9.08},{&quot;2026-08-04&quot;:9.08},{&quot;2026-08-05&quot;:9.08},{&quot;2026-08-07&quot;:9.1},{&quot;2026-08-08&quot;:9.1},{&quot;2026-08-09&quot;:9.1},{&quot;2026-08-10&quot;:9.1},{&quot;2026-08-11&quot;:9.71},{&quot;2026-08-12&quot;:9.71},{&quot;2026-08-13&quot;:9.71},{&quot;2026-08-14&quot;:9.69},{&quot;2026-08-15&quot;:9.67},{&quot;2026-08-16&quot;:9.63},{&quot;2026-08-17&quot;:9.63},{&quot;2026-08-18&quot;:9.63},{&quot;2026-08-19&quot;:9.63},{&quot;2026-08-20&quot;:9.63},{&quot;2026-08-21&quot;:9.63},{&quot;2026-08-22&quot;:9.63},{&quot;2026-08-23&quot;:9.63},{&quot;2026-08-24&quot;:9.63},{&quot;2026-08-25&quot;:9.63},{&quot;2026-08-26&quot;:9.63},{&quot;2026-08-27&quot;:9.67},{&quot;2026-08-28&quot;:9.67},{&quot;2026-08-29&quot;:9.67},{&quot;2026-08-30&quot;:9.67},{&quot;2026-08-31&quot;:9.67},{&quot;2026-09-01&quot;:9.74},{&quot;2026-09-02&quot;:9.76},{&quot;2026-09-03&quot;:9.83},{&quot;2026-09-04&quot;:9.83},{&quot;2026-09-05&quot;:9.83},{&quot;2026-09-06&quot;:9.83},{&quot;2026-09-07&quot;:9.83},{&quot;2026-09-08&quot;:9.96},{&quot;2026-09-09&quot;:10.03},{&quot;2026-09-10&quot;:9.92},{&quot;2026-09-11&quot;:9.92}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:3.87},{&quot;2026-06-12&quot;:3.96},{&quot;2026-06-13&quot;:3.91},{&quot;2026-06-14&quot;:3.91},{&quot;2026-06-15&quot;:3.85},{&quot;2026-06-16&quot;:3.94},{&quot;2026-06-17&quot;:3.99},{&quot;2026-06-18&quot;:3.82},{&quot;2026-06-19&quot;:3.78},{&quot;2026-06-20&quot;:3.7},{&quot;2026-06-21&quot;:3.82},{&quot;2026-06-22&quot;:3.78},{&quot;2026-06-23&quot;:3.86},{&quot;2026-06-24&quot;:3.67},{&quot;2026-06-25&quot;:3.74},{&quot;2026-06-26&quot;:3.59},{&quot;2026-06-27&quot;:3.73},{&quot;2026-06-28&quot;:3.5},{&quot;2026-06-29&quot;:3.11},{&quot;2026-06-30&quot;:3.11},{&quot;2026-07-01&quot;:3.26},{&quot;2026-07-02&quot;:3.52},{&quot;2026-07-03&quot;:3.28},{&quot;2026-07-04&quot;:3.47},{&quot;2026-07-05&quot;:3.47},{&quot;2026-07-06&quot;:3.06},{&quot;2026-07-07&quot;:3.05},{&quot;2026-07-08&quot;:2.94},{&quot;2026-07-09&quot;:2.9},{&quot;2026-07-10&quot;:2.91},{&quot;2026-07-11&quot;:2.82},{&quot;2026-07-12&quot;:2.78},{&quot;2026-07-13&quot;:2.78},{&quot;2026-07-14&quot;:2.96},{&quot;2026-07-15&quot;:3.03},{&quot;2026-07-16&quot;:3.46},{&quot;2026-07-17&quot;:3.3},{&quot;2026-07-18&quot;:3.42},{&quot;2026-07-19&quot;:3.63},{&quot;2026-07-20&quot;:3.66},{&quot;2026-07-21&quot;:3.6},{&quot;2026-07-23&quot;:3.64},{&quot;2026-07-25&quot;:3.54},{&quot;2026-07-26&quot;:3.67},{&quot;2026-07-27&quot;:3.46},{&quot;2026-07-28&quot;:3.63},{&quot;2026-07-29&quot;:3.8},{&quot;2026-07-30&quot;:3.73},{&quot;2026-07-31&quot;:3.64},{&quot;2026-08-01&quot;:3.59},{&quot;2026-08-02&quot;:3.55},{&quot;2026-08-03&quot;:3.54},{&quot;2026-08-04&quot;:3.54},{&quot;2026-08-05&quot;:3.23},{&quot;2026-08-07&quot;:3.56},{&quot;2026-08-08&quot;:3.5},{&quot;2026-08-09&quot;:3.97},{&quot;2026-08-10&quot;:3.98},{&quot;2026-08-11&quot;:3.85},{&quot;2026-08-12&quot;:3.87},{&quot;2026-08-13&quot;:3.73},{&quot;2026-08-14&quot;:2.75},{&quot;2026-08-15&quot;:2.93},{&quot;2026-08-16&quot;:3.08},{&quot;2026-08-17&quot;:2.96},{&quot;2026-08-18&quot;:2.99},{&quot;2026-08-19&quot;:3.07},{&quot;2026-08-20&quot;:3.07},{&quot;2026-08-21&quot;:3.17},{&quot;2026-08-22&quot;:3.24},{&quot;2026-08-23&quot;:3.31},{&quot;2026-08-24&quot;:3.3},{&quot;2026-08-25&quot;:3.36},{&quot;2026-08-26&quot;:3.37},{&quot;2026-08-27&quot;:3.23},{&quot;2026-08-28&quot;:2.99},{&quot;2026-08-29&quot;:2.99},{&quot;2026-08-30&quot;:2.88},{&quot;2026-08-31&quot;:2.99},{&quot;2026-09-01&quot;:2.9},{&quot;2026-09-02&quot;:2.92},{&quot;2026-09-03&quot;:2.98},{&quot;2026-09-04&quot;:3.2},{&quot;2026-09-05&quot;:3.33},{&quot;2026-09-06&quot;:3.31},{&quot;2026-09-07&quot;:3.31},{&quot;2026-09-08&quot;:3.26},{&quot;2026-09-09&quot;:3.36},{&quot;2026-09-10&quot;:3.33},{&quot;2026-09-11&quot;:3.31}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $2.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="Adeline, Resplendent Cathar" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/f/2f71585a-3ea8-40f8-8e02-e155477fd8b5.jpg?1783925516" />

        <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">
            Adeline, Resplendent Cathar
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Adeline, Resplendent Cathar" src="https://cards.scryfall.io/large/front/2/f/2f71585a-3ea8-40f8-8e02-e155477fd8b5.jpg?1783925516" />
    </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.58
              </span>

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:5.01},{&quot;2026-06-14&quot;:5.01},{&quot;2026-06-15&quot;:5.01},{&quot;2026-06-16&quot;:5.01},{&quot;2026-06-17&quot;:5.01},{&quot;2026-06-18&quot;:5.01},{&quot;2026-06-19&quot;:5.01},{&quot;2026-06-20&quot;:5.01},{&quot;2026-06-21&quot;:5.01},{&quot;2026-06-22&quot;:5.01},{&quot;2026-06-23&quot;:5.01},{&quot;2026-06-24&quot;:5.02},{&quot;2026-06-25&quot;:5.02},{&quot;2026-06-26&quot;:5.02},{&quot;2026-06-27&quot;:5.02},{&quot;2026-06-28&quot;:5.02},{&quot;2026-06-29&quot;:5.09},{&quot;2026-06-30&quot;:5.11},{&quot;2026-07-01&quot;:5.11},{&quot;2026-07-02&quot;:5.11},{&quot;2026-07-03&quot;:5.11},{&quot;2026-07-04&quot;:5.11},{&quot;2026-07-05&quot;:5.11},{&quot;2026-07-06&quot;:5.14},{&quot;2026-07-07&quot;:5.14},{&quot;2026-07-08&quot;:5.14},{&quot;2026-07-09&quot;:5.14},{&quot;2026-07-10&quot;:5.14},{&quot;2026-07-11&quot;:5.14},{&quot;2026-07-12&quot;:5.14},{&quot;2026-07-13&quot;:5.14},{&quot;2026-07-14&quot;:5.14},{&quot;2026-07-15&quot;:5.14},{&quot;2026-07-16&quot;:5.14},{&quot;2026-07-17&quot;:5.14},{&quot;2026-07-18&quot;:5.14},{&quot;2026-07-19&quot;:5.14},{&quot;2026-07-20&quot;:5.14},{&quot;2026-07-21&quot;:5.14},{&quot;2026-07-22&quot;:5.14},{&quot;2026-07-23&quot;:5.14},{&quot;2026-07-24&quot;:5.14},{&quot;2026-07-25&quot;:5.14},{&quot;2026-07-26&quot;:5.14},{&quot;2026-07-27&quot;:5.14},{&quot;2026-07-28&quot;:5.14},{&quot;2026-07-29&quot;:5.14},{&quot;2026-07-30&quot;:5.14},{&quot;2026-07-31&quot;:5.15},{&quot;2026-08-01&quot;:5.15},{&quot;2026-08-02&quot;:5.15},{&quot;2026-08-03&quot;:5.15},{&quot;2026-08-04&quot;:5.15},{&quot;2026-08-05&quot;:5.15},{&quot;2026-08-07&quot;:5.16},{&quot;2026-08-08&quot;:5.16},{&quot;2026-08-09&quot;:5.16},{&quot;2026-08-10&quot;:5.1},{&quot;2026-08-11&quot;:5.12},{&quot;2026-08-12&quot;:5.12},{&quot;2026-08-13&quot;:5.12},{&quot;2026-08-14&quot;:5.1},{&quot;2026-08-15&quot;:5.1},{&quot;2026-08-16&quot;:5.1},{&quot;2026-08-17&quot;:5.1},{&quot;2026-08-18&quot;:5.12},{&quot;2026-08-19&quot;:5.16},{&quot;2026-08-20&quot;:5.16},{&quot;2026-08-21&quot;:4.96},{&quot;2026-08-22&quot;:4.96},{&quot;2026-08-23&quot;:4.96},{&quot;2026-08-24&quot;:4.96},{&quot;2026-08-25&quot;:4.96},{&quot;2026-08-26&quot;:4.96},{&quot;2026-08-27&quot;:4.96},{&quot;2026-08-28&quot;:4.86},{&quot;2026-08-29&quot;:4.86},{&quot;2026-08-30&quot;:4.93},{&quot;2026-08-31&quot;:4.93},{&quot;2026-09-01&quot;:4.93},{&quot;2026-09-02&quot;:4.93},{&quot;2026-09-03&quot;:4.93},{&quot;2026-09-04&quot;:4.93},{&quot;2026-09-05&quot;:4.93},{&quot;2026-09-06&quot;:4.83},{&quot;2026-09-07&quot;:4.83},{&quot;2026-09-08&quot;:4.85},{&quot;2026-09-09&quot;:4.85},{&quot;2026-09-10&quot;:4.8},{&quot;2026-09-11&quot;:4.79}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:2.48},{&quot;2026-06-14&quot;:2.47},{&quot;2026-06-15&quot;:2.48},{&quot;2026-06-16&quot;:2.48},{&quot;2026-06-17&quot;:2.43},{&quot;2026-06-18&quot;:2.43},{&quot;2026-06-19&quot;:2.4},{&quot;2026-06-20&quot;:2.4},{&quot;2026-06-21&quot;:2.47},{&quot;2026-06-22&quot;:2.4},{&quot;2026-06-23&quot;:2.31},{&quot;2026-06-24&quot;:2.31},{&quot;2026-06-25&quot;:2.34},{&quot;2026-06-26&quot;:2.34},{&quot;2026-06-27&quot;:2.34},{&quot;2026-06-28&quot;:2.34},{&quot;2026-06-29&quot;:2.34},{&quot;2026-06-30&quot;:2.4},{&quot;2026-07-01&quot;:2.4},{&quot;2026-07-02&quot;:2.4},{&quot;2026-07-03&quot;:2.4},{&quot;2026-07-04&quot;:2.4},{&quot;2026-07-05&quot;:2.45},{&quot;2026-07-06&quot;:2.41},{&quot;2026-07-07&quot;:2.4},{&quot;2026-07-08&quot;:2.39},{&quot;2026-07-09&quot;:2.41},{&quot;2026-07-10&quot;:2.41},{&quot;2026-07-11&quot;:2.42},{&quot;2026-07-12&quot;:2.43},{&quot;2026-07-13&quot;:2.44},{&quot;2026-07-14&quot;:2.44},{&quot;2026-07-15&quot;:2.46},{&quot;2026-07-16&quot;:2.46},{&quot;2026-07-17&quot;:2.46},{&quot;2026-07-18&quot;:2.45},{&quot;2026-07-19&quot;:2.45},{&quot;2026-07-20&quot;:2.37},{&quot;2026-07-21&quot;:2.34},{&quot;2026-07-22&quot;:2.19},{&quot;2026-07-23&quot;:2.21},{&quot;2026-07-24&quot;:2.19},{&quot;2026-07-25&quot;:2.21},{&quot;2026-07-26&quot;:2.26},{&quot;2026-07-27&quot;:2.29},{&quot;2026-07-28&quot;:2.29},{&quot;2026-07-29&quot;:2.28},{&quot;2026-07-30&quot;:2.28},{&quot;2026-07-31&quot;:2.28},{&quot;2026-08-01&quot;:2.36},{&quot;2026-08-02&quot;:2.36},{&quot;2026-08-03&quot;:2.37},{&quot;2026-08-04&quot;:2.41},{&quot;2026-08-05&quot;:2.41},{&quot;2026-08-07&quot;:2.46},{&quot;2026-08-08&quot;:2.47},{&quot;2026-08-09&quot;:2.47},{&quot;2026-08-10&quot;:2.54},{&quot;2026-08-11&quot;:2.53},{&quot;2026-08-12&quot;:2.61},{&quot;2026-08-13&quot;:2.66},{&quot;2026-08-14&quot;:2.66},{&quot;2026-08-15&quot;:2.63},{&quot;2026-08-16&quot;:2.54},{&quot;2026-08-17&quot;:2.49},{&quot;2026-08-18&quot;:2.44},{&quot;2026-08-19&quot;:2.39},{&quot;2026-08-20&quot;:2.42},{&quot;2026-08-21&quot;:2.42},{&quot;2026-08-22&quot;:2.42},{&quot;2026-08-23&quot;:2.42},{&quot;2026-08-24&quot;:2.42},{&quot;2026-08-25&quot;:2.37},{&quot;2026-08-26&quot;:2.37},{&quot;2026-08-27&quot;:2.37},{&quot;2026-08-28&quot;:2.42},{&quot;2026-08-29&quot;:2.42},{&quot;2026-08-30&quot;:2.44},{&quot;2026-08-31&quot;:2.49},{&quot;2026-09-01&quot;:2.53},{&quot;2026-09-02&quot;:2.53},{&quot;2026-09-03&quot;:2.53},{&quot;2026-09-04&quot;:2.53},{&quot;2026-09-05&quot;:2.65},{&quot;2026-09-06&quot;:2.55},{&quot;2026-09-07&quot;:2.59},{&quot;2026-09-08&quot;:2.56},{&quot;2026-09-09&quot;:2.57},{&quot;2026-09-10&quot;:2.57},{&quot;2026-09-11&quot;:2.58}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Flare of Malice" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/9/19efb9ce-62eb-4cbf-b01e-979f3fd09ba6.jpg?1783911280" />

        <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">
            Flare of Malice
        </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-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Flare of Malice" src="https://cards.scryfall.io/large/front/1/9/19efb9ce-62eb-4cbf-b01e-979f3fd09ba6.jpg?1783911280" />
    </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.40
              </span>

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

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

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

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.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-13&quot;:2.48},{&quot;2026-06-14&quot;:2.46},{&quot;2026-06-15&quot;:2.46},{&quot;2026-06-16&quot;:2.51},{&quot;2026-06-17&quot;:2.57},{&quot;2026-06-18&quot;:2.61},{&quot;2026-06-19&quot;:2.64},{&quot;2026-06-20&quot;:2.64},{&quot;2026-06-21&quot;:2.64},{&quot;2026-06-22&quot;:2.65},{&quot;2026-06-23&quot;:2.62},{&quot;2026-06-24&quot;:2.62},{&quot;2026-06-25&quot;:2.61},{&quot;2026-06-26&quot;:2.62},{&quot;2026-06-27&quot;:2.62},{&quot;2026-06-28&quot;:2.62},{&quot;2026-06-29&quot;:2.63},{&quot;2026-06-30&quot;:2.62},{&quot;2026-07-01&quot;:2.61},{&quot;2026-07-02&quot;:2.59},{&quot;2026-07-03&quot;:2.55},{&quot;2026-07-04&quot;:2.55},{&quot;2026-07-05&quot;:2.55},{&quot;2026-07-06&quot;:2.55},{&quot;2026-07-07&quot;:2.55},{&quot;2026-07-08&quot;:2.55},{&quot;2026-07-09&quot;:2.55},{&quot;2026-07-10&quot;:2.55},{&quot;2026-07-11&quot;:2.55},{&quot;2026-07-12&quot;:2.55},{&quot;2026-07-13&quot;:2.57},{&quot;2026-07-14&quot;:2.53},{&quot;2026-07-15&quot;:2.51},{&quot;2026-07-16&quot;:2.51},{&quot;2026-07-17&quot;:2.49},{&quot;2026-07-18&quot;:2.57},{&quot;2026-07-19&quot;:2.58},{&quot;2026-07-20&quot;:2.7},{&quot;2026-07-21&quot;:2.75},{&quot;2026-07-22&quot;:2.75},{&quot;2026-07-23&quot;:2.72},{&quot;2026-07-24&quot;:2.65},{&quot;2026-07-25&quot;:2.7},{&quot;2026-07-26&quot;:2.7},{&quot;2026-07-27&quot;:2.7},{&quot;2026-07-28&quot;:2.63},{&quot;2026-07-29&quot;:2.63},{&quot;2026-07-30&quot;:2.66},{&quot;2026-07-31&quot;:2.74},{&quot;2026-08-01&quot;:2.74},{&quot;2026-08-02&quot;:2.81},{&quot;2026-08-03&quot;:2.87},{&quot;2026-08-04&quot;:2.87},{&quot;2026-08-05&quot;:2.85},{&quot;2026-08-07&quot;:2.94},{&quot;2026-08-08&quot;:2.94},{&quot;2026-08-09&quot;:2.92},{&quot;2026-08-10&quot;:2.86},{&quot;2026-08-11&quot;:2.73},{&quot;2026-08-12&quot;:2.78},{&quot;2026-08-13&quot;:2.78},{&quot;2026-08-14&quot;:2.84},{&quot;2026-08-15&quot;:2.84},{&quot;2026-08-16&quot;:2.88},{&quot;2026-08-17&quot;:2.88},{&quot;2026-08-18&quot;:2.81},{&quot;2026-08-19&quot;:2.83},{&quot;2026-08-20&quot;:2.82},{&quot;2026-08-21&quot;:2.75},{&quot;2026-08-22&quot;:2.76},{&quot;2026-08-23&quot;:2.66},{&quot;2026-08-24&quot;:2.62},{&quot;2026-08-25&quot;:2.59},{&quot;2026-08-26&quot;:2.59},{&quot;2026-08-27&quot;:2.55},{&quot;2026-08-28&quot;:2.5},{&quot;2026-08-29&quot;:2.5},{&quot;2026-08-30&quot;:2.53},{&quot;2026-08-31&quot;:2.53},{&quot;2026-09-01&quot;:2.53},{&quot;2026-09-02&quot;:2.54},{&quot;2026-09-03&quot;:2.54},{&quot;2026-09-04&quot;:2.48},{&quot;2026-09-05&quot;:2.48},{&quot;2026-09-06&quot;:2.47},{&quot;2026-09-07&quot;:2.47},{&quot;2026-09-08&quot;:2.46},{&quot;2026-09-09&quot;:2.46},{&quot;2026-09-10&quot;:2.7},{&quot;2026-09-11&quot;:2.67}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.89},{&quot;2026-06-14&quot;:1.78},{&quot;2026-06-15&quot;:1.73},{&quot;2026-06-16&quot;:1.74},{&quot;2026-06-17&quot;:1.81},{&quot;2026-06-18&quot;:1.94},{&quot;2026-06-19&quot;:1.93},{&quot;2026-06-20&quot;:1.93},{&quot;2026-06-21&quot;:1.96},{&quot;2026-06-22&quot;:1.86},{&quot;2026-06-23&quot;:1.76},{&quot;2026-06-24&quot;:1.65},{&quot;2026-06-25&quot;:1.47},{&quot;2026-06-26&quot;:1.45},{&quot;2026-06-27&quot;:1.53},{&quot;2026-06-28&quot;:1.43},{&quot;2026-06-29&quot;:1.44},{&quot;2026-06-30&quot;:1.48},{&quot;2026-07-01&quot;:1.68},{&quot;2026-07-02&quot;:1.73},{&quot;2026-07-03&quot;:1.7},{&quot;2026-07-04&quot;:1.53},{&quot;2026-07-05&quot;:1.5},{&quot;2026-07-06&quot;:1.42},{&quot;2026-07-07&quot;:1.43},{&quot;2026-07-08&quot;:1.38},{&quot;2026-07-09&quot;:1.42},{&quot;2026-07-10&quot;:1.48},{&quot;2026-07-11&quot;:1.49},{&quot;2026-07-12&quot;:1.57},{&quot;2026-07-13&quot;:1.56},{&quot;2026-07-14&quot;:1.62},{&quot;2026-07-15&quot;:1.59},{&quot;2026-07-16&quot;:1.54},{&quot;2026-07-17&quot;:1.55},{&quot;2026-07-18&quot;:1.89},{&quot;2026-07-19&quot;:2.16},{&quot;2026-07-20&quot;:2.11},{&quot;2026-07-21&quot;:1.98},{&quot;2026-07-22&quot;:1.97},{&quot;2026-07-23&quot;:1.78},{&quot;2026-07-24&quot;:1.73},{&quot;2026-07-25&quot;:1.65},{&quot;2026-07-26&quot;:1.58},{&quot;2026-07-27&quot;:1.67},{&quot;2026-07-28&quot;:1.65},{&quot;2026-07-29&quot;:2.08},{&quot;2026-07-30&quot;:2.19},{&quot;2026-07-31&quot;:2.06},{&quot;2026-08-01&quot;:1.84},{&quot;2026-08-02&quot;:2.01},{&quot;2026-08-03&quot;:2.12},{&quot;2026-08-04&quot;:2.19},{&quot;2026-08-05&quot;:2.47},{&quot;2026-08-07&quot;:2.72},{&quot;2026-08-08&quot;:2.45},{&quot;2026-08-09&quot;:2.32},{&quot;2026-08-10&quot;:2.31},{&quot;2026-08-11&quot;:2.35},{&quot;2026-08-12&quot;:2.29},{&quot;2026-08-13&quot;:1.94},{&quot;2026-08-14&quot;:2.19},{&quot;2026-08-15&quot;:2.32},{&quot;2026-08-16&quot;:2.32},{&quot;2026-08-17&quot;:2.26},{&quot;2026-08-18&quot;:2.22},{&quot;2026-08-19&quot;:2.26},{&quot;2026-08-20&quot;:2.35},{&quot;2026-08-21&quot;:2.22},{&quot;2026-08-22&quot;:2.27},{&quot;2026-08-23&quot;:2.22},{&quot;2026-08-24&quot;:2.27},{&quot;2026-08-25&quot;:2.31},{&quot;2026-08-26&quot;:2.31},{&quot;2026-08-27&quot;:2.2},{&quot;2026-08-28&quot;:2.01},{&quot;2026-08-29&quot;:2.01},{&quot;2026-08-30&quot;:1.99},{&quot;2026-08-31&quot;:2.02},{&quot;2026-09-01&quot;:1.95},{&quot;2026-09-02&quot;:2.01},{&quot;2026-09-03&quot;:2.02},{&quot;2026-09-04&quot;:2.04},{&quot;2026-09-05&quot;:2.09},{&quot;2026-09-06&quot;:2.07},{&quot;2026-09-07&quot;:2.12},{&quot;2026-09-08&quot;:2.04},{&quot;2026-09-09&quot;:1.92},{&quot;2026-09-10&quot;:2.15},{&quot;2026-09-11&quot;:2.4}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="19361"
  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-dmc 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">
            Shanid, Sleepers&#39; Scourge
        </span>


      </div>

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

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

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-50 text-badge-text">
              ↑
              5%
            </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="Shanid, Sleepers&#39; Scourge" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/b/1b0fb859-055d-4aa1-814c-0894cd2ccd4a.jpg?1783921477" />

        <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">
            Shanid, Sleepers&#39; Scourge
        </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 Knight</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Shanid, Sleepers&#39; Scourge" src="https://cards.scryfall.io/large/front/1/b/1b0fb859-055d-4aa1-814c-0894cd2ccd4a.jpg?1783921477" />
    </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-50">
                  ↑
                  5%
                </span>
            </div>
          </div>

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:3.35},{&quot;2026-06-11&quot;:3.33},{&quot;2026-06-12&quot;:3.28},{&quot;2026-06-13&quot;:3.42},{&quot;2026-06-14&quot;:3.42},{&quot;2026-06-15&quot;:3.44},{&quot;2026-06-16&quot;:3.49},{&quot;2026-06-17&quot;:3.59},{&quot;2026-06-18&quot;:3.59},{&quot;2026-06-19&quot;:3.59},{&quot;2026-06-20&quot;:3.72},{&quot;2026-06-21&quot;:3.83},{&quot;2026-06-22&quot;:3.83},{&quot;2026-06-23&quot;:3.83},{&quot;2026-06-24&quot;:3.83},{&quot;2026-06-25&quot;:3.83},{&quot;2026-06-26&quot;:3.83},{&quot;2026-06-27&quot;:3.71},{&quot;2026-06-28&quot;:3.59},{&quot;2026-06-29&quot;:3.59},{&quot;2026-06-30&quot;:3.59},{&quot;2026-07-01&quot;:3.52},{&quot;2026-07-02&quot;:3.46},{&quot;2026-07-03&quot;:3.46},{&quot;2026-07-04&quot;:3.45},{&quot;2026-07-05&quot;:3.45},{&quot;2026-07-06&quot;:3.35},{&quot;2026-07-07&quot;:3.47},{&quot;2026-07-08&quot;:3.52},{&quot;2026-07-09&quot;:3.52},{&quot;2026-07-10&quot;:3.52},{&quot;2026-07-11&quot;:3.46},{&quot;2026-07-12&quot;:3.46},{&quot;2026-07-13&quot;:3.46},{&quot;2026-07-14&quot;:3.46},{&quot;2026-07-15&quot;:3.46},{&quot;2026-07-16&quot;:3.46},{&quot;2026-07-17&quot;:3.46},{&quot;2026-07-18&quot;:3.46},{&quot;2026-07-19&quot;:3.41},{&quot;2026-07-20&quot;:3.41},{&quot;2026-07-21&quot;:3.41},{&quot;2026-07-23&quot;:3.24},{&quot;2026-07-25&quot;:3.21},{&quot;2026-07-26&quot;:3.17},{&quot;2026-07-27&quot;:3.17},{&quot;2026-07-29&quot;:3.17},{&quot;2026-07-30&quot;:3.17},{&quot;2026-07-31&quot;:3.1},{&quot;2026-08-01&quot;:3.1},{&quot;2026-08-02&quot;:2.96},{&quot;2026-08-03&quot;:2.96},{&quot;2026-08-04&quot;:2.96},{&quot;2026-08-05&quot;:3.01},{&quot;2026-08-07&quot;:3.01},{&quot;2026-08-08&quot;:3.1},{&quot;2026-08-09&quot;:3.17},{&quot;2026-08-10&quot;:3.2},{&quot;2026-08-11&quot;:3.2},{&quot;2026-08-12&quot;:3.2},{&quot;2026-08-13&quot;:3.16},{&quot;2026-08-14&quot;:3.16},{&quot;2026-08-15&quot;:3.05},{&quot;2026-08-16&quot;:3.04},{&quot;2026-08-17&quot;:2.86},{&quot;2026-08-18&quot;:2.86},{&quot;2026-08-19&quot;:2.86},{&quot;2026-08-20&quot;:2.86},{&quot;2026-08-21&quot;:2.71},{&quot;2026-08-22&quot;:2.71},{&quot;2026-08-23&quot;:2.69},{&quot;2026-08-24&quot;:2.73},{&quot;2026-08-25&quot;:2.73},{&quot;2026-08-26&quot;:2.73},{&quot;2026-08-27&quot;:2.73},{&quot;2026-08-28&quot;:2.77},{&quot;2026-08-29&quot;:2.77},{&quot;2026-08-30&quot;:2.79},{&quot;2026-08-31&quot;:2.79},{&quot;2026-09-01&quot;:2.79},{&quot;2026-09-02&quot;:2.74},{&quot;2026-09-03&quot;:2.8},{&quot;2026-09-04&quot;:2.84},{&quot;2026-09-05&quot;:2.84},{&quot;2026-09-06&quot;:2.74},{&quot;2026-09-07&quot;:2.68},{&quot;2026-09-08&quot;:2.68},{&quot;2026-09-09&quot;:2.78},{&quot;2026-09-10&quot;:2.84},{&quot;2026-09-11&quot;:2.9}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:2.05},{&quot;2026-06-11&quot;:2.05},{&quot;2026-06-12&quot;:2.05},{&quot;2026-06-13&quot;:2.06},{&quot;2026-06-14&quot;:2.03},{&quot;2026-06-15&quot;:2.05},{&quot;2026-06-16&quot;:2.07},{&quot;2026-06-17&quot;:2.06},{&quot;2026-06-18&quot;:2.07},{&quot;2026-06-19&quot;:2.1},{&quot;2026-06-20&quot;:2.1},{&quot;2026-06-21&quot;:2.13},{&quot;2026-06-22&quot;:2.13},{&quot;2026-06-23&quot;:2.13},{&quot;2026-06-24&quot;:2.13},{&quot;2026-06-25&quot;:2.13},{&quot;2026-06-26&quot;:2.13},{&quot;2026-06-27&quot;:2.13},{&quot;2026-06-28&quot;:2.23},{&quot;2026-06-29&quot;:2.24},{&quot;2026-06-30&quot;:2.24},{&quot;2026-07-01&quot;:2.24},{&quot;2026-07-02&quot;:2.23},{&quot;2026-07-03&quot;:2.23},{&quot;2026-07-04&quot;:2.23},{&quot;2026-07-05&quot;:2.25},{&quot;2026-07-06&quot;:2.25},{&quot;2026-07-07&quot;:2.25},{&quot;2026-07-08&quot;:2.29},{&quot;2026-07-09&quot;:2.29},{&quot;2026-07-10&quot;:2.3},{&quot;2026-07-11&quot;:2.3},{&quot;2026-07-12&quot;:2.3},{&quot;2026-07-13&quot;:2.3},{&quot;2026-07-14&quot;:2.3},{&quot;2026-07-15&quot;:2.3},{&quot;2026-07-16&quot;:2.3},{&quot;2026-07-17&quot;:2.3},{&quot;2026-07-18&quot;:2.3},{&quot;2026-07-19&quot;:2.29},{&quot;2026-07-20&quot;:2.29},{&quot;2026-07-21&quot;:2.2},{&quot;2026-07-23&quot;:2.2},{&quot;2026-07-25&quot;:2.2},{&quot;2026-07-26&quot;:2.2},{&quot;2026-07-27&quot;:2.18},{&quot;2026-07-29&quot;:2.18},{&quot;2026-07-30&quot;:2.18},{&quot;2026-07-31&quot;:2.18},{&quot;2026-08-01&quot;:2.17},{&quot;2026-08-02&quot;:2.17},{&quot;2026-08-03&quot;:2.24},{&quot;2026-08-04&quot;:2.23},{&quot;2026-08-05&quot;:2.25},{&quot;2026-08-07&quot;:2.25},{&quot;2026-08-08&quot;:2.22},{&quot;2026-08-09&quot;:2.22},{&quot;2026-08-10&quot;:2.22},{&quot;2026-08-11&quot;:2.22},{&quot;2026-08-12&quot;:2.22},{&quot;2026-08-13&quot;:2.22},{&quot;2026-08-14&quot;:2.22},{&quot;2026-08-15&quot;:2.22},{&quot;2026-08-16&quot;:2.26},{&quot;2026-08-17&quot;:2.26},{&quot;2026-08-18&quot;:2.26},{&quot;2026-08-19&quot;:2.26},{&quot;2026-08-20&quot;:2.26},{&quot;2026-08-21&quot;:2.29},{&quot;2026-08-22&quot;:2.29},{&quot;2026-08-23&quot;:2.27},{&quot;2026-08-24&quot;:2.27},{&quot;2026-08-25&quot;:2.27},{&quot;2026-08-26&quot;:2.27},{&quot;2026-08-27&quot;:2.27},{&quot;2026-08-28&quot;:2.26},{&quot;2026-08-29&quot;:2.26},{&quot;2026-08-30&quot;:2.27},{&quot;2026-08-31&quot;:2.27},{&quot;2026-09-01&quot;:2.27},{&quot;2026-09-02&quot;:2.27},{&quot;2026-09-03&quot;:2.27},{&quot;2026-09-04&quot;:2.27},{&quot;2026-09-05&quot;:2.27},{&quot;2026-09-06&quot;:2.35},{&quot;2026-09-07&quot;:2.39},{&quot;2026-09-08&quot;:2.39},{&quot;2026-09-09&quot;:2.39},{&quot;2026-09-10&quot;:2.39},{&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="94827"
  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">
            Summon: Primal Odin
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Enchantment Creature — Saga 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">
              ↓
              9%
            </span>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Summon: Primal Odin" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/b/8b1b5f06-e34d-44a3-976e-5157c4b7a0f4.jpg?1783906611" />

        <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">
            Summon: Primal Odin
        </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 Creature — Saga Knight</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-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Summon: Primal Odin" src="https://cards.scryfall.io/large/front/8/b/8b1b5f06-e34d-44a3-976e-5157c4b7a0f4.jpg?1783906611" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:2.28},{&quot;2026-06-14&quot;:2.4},{&quot;2026-06-15&quot;:2.4},{&quot;2026-06-16&quot;:2.43},{&quot;2026-06-17&quot;:2.4},{&quot;2026-06-18&quot;:2.4},{&quot;2026-06-19&quot;:2.4},{&quot;2026-06-20&quot;:2.4},{&quot;2026-06-21&quot;:2.4},{&quot;2026-06-22&quot;:2.4},{&quot;2026-06-23&quot;:2.4},{&quot;2026-06-24&quot;:2.36},{&quot;2026-06-25&quot;:2.36},{&quot;2026-06-26&quot;:2.39},{&quot;2026-06-27&quot;:2.38},{&quot;2026-06-28&quot;:2.4},{&quot;2026-06-29&quot;:2.31},{&quot;2026-06-30&quot;:2.22},{&quot;2026-07-01&quot;:2.22},{&quot;2026-07-02&quot;:2.27},{&quot;2026-07-03&quot;:2.09},{&quot;2026-07-04&quot;:2.16},{&quot;2026-07-05&quot;:2.16},{&quot;2026-07-06&quot;:2.16},{&quot;2026-07-07&quot;:2.18},{&quot;2026-07-08&quot;:2.21},{&quot;2026-07-09&quot;:2.21},{&quot;2026-07-10&quot;:2.09},{&quot;2026-07-11&quot;:2.08},{&quot;2026-07-12&quot;:2.08},{&quot;2026-07-13&quot;:2.04},{&quot;2026-07-14&quot;:1.97},{&quot;2026-07-15&quot;:1.97},{&quot;2026-07-16&quot;:1.97},{&quot;2026-07-17&quot;:2.0},{&quot;2026-07-18&quot;:1.85},{&quot;2026-07-19&quot;:1.9},{&quot;2026-07-20&quot;:1.97},{&quot;2026-07-21&quot;:1.93},{&quot;2026-07-22&quot;:1.9},{&quot;2026-07-23&quot;:1.88},{&quot;2026-07-24&quot;:1.92},{&quot;2026-07-25&quot;:1.88},{&quot;2026-07-26&quot;:1.96},{&quot;2026-07-27&quot;:2.05},{&quot;2026-07-28&quot;:1.93},{&quot;2026-07-29&quot;:1.97},{&quot;2026-07-30&quot;:1.97},{&quot;2026-07-31&quot;:2.04},{&quot;2026-08-01&quot;:2.03},{&quot;2026-08-02&quot;:1.96},{&quot;2026-08-03&quot;:1.97},{&quot;2026-08-04&quot;:1.97},{&quot;2026-08-05&quot;:2.0},{&quot;2026-08-07&quot;:1.97},{&quot;2026-08-08&quot;:1.99},{&quot;2026-08-09&quot;:1.99},{&quot;2026-08-10&quot;:2.1},{&quot;2026-08-11&quot;:2.1},{&quot;2026-08-12&quot;:2.05},{&quot;2026-08-13&quot;:2.01},{&quot;2026-08-14&quot;:2.06},{&quot;2026-08-15&quot;:2.06},{&quot;2026-08-16&quot;:2.06},{&quot;2026-08-17&quot;:2.03},{&quot;2026-08-18&quot;:2.06},{&quot;2026-08-19&quot;:2.06},{&quot;2026-08-20&quot;:2.06},{&quot;2026-08-21&quot;:2.06},{&quot;2026-08-22&quot;:2.12},{&quot;2026-08-23&quot;:2.19},{&quot;2026-08-24&quot;:2.2},{&quot;2026-08-25&quot;:2.2},{&quot;2026-08-26&quot;:2.23},{&quot;2026-08-27&quot;:2.2},{&quot;2026-08-28&quot;:2.2},{&quot;2026-08-29&quot;:2.2},{&quot;2026-08-30&quot;:2.21},{&quot;2026-08-31&quot;:2.26},{&quot;2026-09-01&quot;:2.27},{&quot;2026-09-02&quot;:2.33},{&quot;2026-09-03&quot;:2.41},{&quot;2026-09-04&quot;:2.47},{&quot;2026-09-05&quot;:2.47},{&quot;2026-09-06&quot;:2.4},{&quot;2026-09-07&quot;:2.46},{&quot;2026-09-08&quot;:2.57},{&quot;2026-09-09&quot;:2.67},{&quot;2026-09-10&quot;:2.54},{&quot;2026-09-11&quot;:2.53}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:2.0},{&quot;2026-06-14&quot;:1.94},{&quot;2026-06-15&quot;:2.19},{&quot;2026-06-16&quot;:2.16},{&quot;2026-06-17&quot;:1.93},{&quot;2026-06-18&quot;:2.17},{&quot;2026-06-19&quot;:2.14},{&quot;2026-06-20&quot;:2.36},{&quot;2026-06-21&quot;:1.8},{&quot;2026-06-22&quot;:1.71},{&quot;2026-06-23&quot;:1.73},{&quot;2026-06-24&quot;:1.56},{&quot;2026-06-25&quot;:1.61},{&quot;2026-06-26&quot;:1.5},{&quot;2026-06-27&quot;:1.5},{&quot;2026-06-28&quot;:1.5},{&quot;2026-06-29&quot;:1.44},{&quot;2026-06-30&quot;:1.54},{&quot;2026-07-01&quot;:1.71},{&quot;2026-07-02&quot;:1.82},{&quot;2026-07-03&quot;:1.88},{&quot;2026-07-04&quot;:1.77},{&quot;2026-07-05&quot;:1.79},{&quot;2026-07-06&quot;:1.85},{&quot;2026-07-07&quot;:1.53},{&quot;2026-07-08&quot;:1.46},{&quot;2026-07-09&quot;:1.44},{&quot;2026-07-10&quot;:1.44},{&quot;2026-07-11&quot;:1.47},{&quot;2026-07-12&quot;:1.65},{&quot;2026-07-13&quot;:1.67},{&quot;2026-07-14&quot;:1.74},{&quot;2026-07-15&quot;:1.74},{&quot;2026-07-16&quot;:1.52},{&quot;2026-07-17&quot;:1.37},{&quot;2026-07-18&quot;:1.2},{&quot;2026-07-19&quot;:1.11},{&quot;2026-07-20&quot;:1.16},{&quot;2026-07-21&quot;:1.27},{&quot;2026-07-22&quot;:1.39},{&quot;2026-07-23&quot;:1.37},{&quot;2026-07-24&quot;:1.46},{&quot;2026-07-25&quot;:1.61},{&quot;2026-07-26&quot;:1.7},{&quot;2026-07-27&quot;:1.84},{&quot;2026-07-28&quot;:1.84},{&quot;2026-07-29&quot;:1.79},{&quot;2026-07-30&quot;:1.88},{&quot;2026-07-31&quot;:1.9},{&quot;2026-08-01&quot;:1.91},{&quot;2026-08-02&quot;:1.78},{&quot;2026-08-03&quot;:1.48},{&quot;2026-08-04&quot;:1.46},{&quot;2026-08-05&quot;:1.3},{&quot;2026-08-07&quot;:1.29},{&quot;2026-08-08&quot;:1.32},{&quot;2026-08-09&quot;:1.41},{&quot;2026-08-10&quot;:1.48},{&quot;2026-08-11&quot;:1.46},{&quot;2026-08-12&quot;:1.34},{&quot;2026-08-13&quot;:1.32},{&quot;2026-08-14&quot;:1.51},{&quot;2026-08-15&quot;:1.33},{&quot;2026-08-16&quot;:1.2},{&quot;2026-08-17&quot;:1.42},{&quot;2026-08-18&quot;:1.86},{&quot;2026-08-19&quot;:1.88},{&quot;2026-08-20&quot;:1.88},{&quot;2026-08-21&quot;:2.03},{&quot;2026-08-22&quot;:2.06},{&quot;2026-08-23&quot;:2.14},{&quot;2026-08-24&quot;:1.98},{&quot;2026-08-25&quot;:1.99},{&quot;2026-08-26&quot;:1.88},{&quot;2026-08-27&quot;:1.82},{&quot;2026-08-28&quot;:1.92},{&quot;2026-08-29&quot;:1.92},{&quot;2026-08-30&quot;:1.87},{&quot;2026-08-31&quot;:1.83},{&quot;2026-09-01&quot;:1.87},{&quot;2026-09-02&quot;:1.93},{&quot;2026-09-03&quot;:1.88},{&quot;2026-09-04&quot;:1.96},{&quot;2026-09-05&quot;:2.11},{&quot;2026-09-06&quot;:2.12},{&quot;2026-09-07&quot;:1.99},{&quot;2026-09-08&quot;:2.2},{&quot;2026-09-09&quot;:2.06},{&quot;2026-09-10&quot;:1.84},{&quot;2026-09-11&quot;:1.92}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            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">
              ↓
              2%
            </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="Knight of the White Orchid" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/7/27234c73-c725-4157-9d01-762e584bcc71.jpg?1783925351" />

        <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/7/27234c73-c725-4157-9d01-762e584bcc71.jpg?1783925351" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

                <span class="text-xs text-accent-100">
                  ↓
                  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-13&quot;:1.99},{&quot;2026-06-14&quot;:1.99},{&quot;2026-06-15&quot;:1.99},{&quot;2026-06-16&quot;:1.99},{&quot;2026-06-17&quot;:2.0},{&quot;2026-06-18&quot;:2.0},{&quot;2026-06-19&quot;:2.0},{&quot;2026-06-20&quot;:1.94},{&quot;2026-06-21&quot;:1.94},{&quot;2026-06-22&quot;:1.94},{&quot;2026-06-23&quot;:1.94},{&quot;2026-06-24&quot;:1.92},{&quot;2026-06-25&quot;:1.92},{&quot;2026-06-26&quot;:1.92},{&quot;2026-06-27&quot;:1.93},{&quot;2026-06-28&quot;:1.93},{&quot;2026-06-29&quot;:1.93},{&quot;2026-06-30&quot;:1.92},{&quot;2026-07-01&quot;:1.93},{&quot;2026-07-02&quot;:1.95},{&quot;2026-07-03&quot;:1.94},{&quot;2026-07-04&quot;:1.94},{&quot;2026-07-05&quot;:1.94},{&quot;2026-07-06&quot;:1.94},{&quot;2026-07-07&quot;:1.93},{&quot;2026-07-08&quot;:1.93},{&quot;2026-07-09&quot;:1.93},{&quot;2026-07-10&quot;:1.91},{&quot;2026-07-11&quot;:1.95},{&quot;2026-07-12&quot;:1.95},{&quot;2026-07-13&quot;:1.95},{&quot;2026-07-14&quot;:1.95},{&quot;2026-07-15&quot;:1.96},{&quot;2026-07-16&quot;:1.95},{&quot;2026-07-17&quot;:1.95},{&quot;2026-07-18&quot;:1.95},{&quot;2026-07-19&quot;:1.94},{&quot;2026-07-20&quot;:1.92},{&quot;2026-07-21&quot;:1.92},{&quot;2026-07-22&quot;:1.89},{&quot;2026-07-23&quot;:1.88},{&quot;2026-07-24&quot;:1.88},{&quot;2026-07-25&quot;:1.88},{&quot;2026-07-26&quot;:1.87},{&quot;2026-07-27&quot;:1.87},{&quot;2026-07-28&quot;:1.87},{&quot;2026-07-29&quot;:1.86},{&quot;2026-07-30&quot;:1.85},{&quot;2026-07-31&quot;:1.81},{&quot;2026-08-01&quot;:1.81},{&quot;2026-08-02&quot;:1.8},{&quot;2026-08-03&quot;:1.78},{&quot;2026-08-04&quot;:1.77},{&quot;2026-08-05&quot;:1.76},{&quot;2026-08-07&quot;:1.75},{&quot;2026-08-08&quot;:1.74},{&quot;2026-08-09&quot;:1.74},{&quot;2026-08-10&quot;:1.74},{&quot;2026-08-11&quot;:1.73},{&quot;2026-08-12&quot;:1.71},{&quot;2026-08-13&quot;:1.71},{&quot;2026-08-14&quot;:1.71},{&quot;2026-08-15&quot;:1.73},{&quot;2026-08-16&quot;:1.78},{&quot;2026-08-17&quot;:1.78},{&quot;2026-08-18&quot;:1.78},{&quot;2026-08-19&quot;:1.77},{&quot;2026-08-20&quot;:1.78},{&quot;2026-08-21&quot;:1.76},{&quot;2026-08-22&quot;:1.76},{&quot;2026-08-23&quot;:1.77},{&quot;2026-08-24&quot;:1.77},{&quot;2026-08-25&quot;:1.77},{&quot;2026-08-26&quot;:1.77},{&quot;2026-08-27&quot;:1.77},{&quot;2026-08-28&quot;:1.77},{&quot;2026-08-29&quot;:1.77},{&quot;2026-08-30&quot;:1.79},{&quot;2026-08-31&quot;:1.78},{&quot;2026-09-01&quot;:1.77},{&quot;2026-09-02&quot;:1.77},{&quot;2026-09-03&quot;:1.77},{&quot;2026-09-04&quot;:1.77},{&quot;2026-09-05&quot;:1.77},{&quot;2026-09-06&quot;:1.77},{&quot;2026-09-07&quot;:1.71},{&quot;2026-09-08&quot;:1.71},{&quot;2026-09-09&quot;:1.71},{&quot;2026-09-10&quot;:1.71},{&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="28728"
  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-fdn 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">
            Alesha, Who Laughs at Fate
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Alesha, Who Laughs at Fate" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/9/a93e3406-4e29-4bc0-ae52-cbd2ac1f99a4.jpg?1783909093" />

        <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">
            Alesha, Who Laughs at Fate
        </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 Warrior</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Alesha, Who Laughs at Fate" src="https://cards.scryfall.io/large/front/a/9/a93e3406-4e29-4bc0-ae52-cbd2ac1f99a4.jpg?1783909093" />
    </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.72
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-11&quot;:1.58},{&quot;2026-06-12&quot;:1.66},{&quot;2026-06-13&quot;:1.7},{&quot;2026-06-14&quot;:1.7},{&quot;2026-06-15&quot;:1.7},{&quot;2026-06-16&quot;:1.65},{&quot;2026-06-17&quot;:1.66},{&quot;2026-06-18&quot;:1.66},{&quot;2026-06-19&quot;:1.63},{&quot;2026-06-20&quot;:1.64},{&quot;2026-06-21&quot;:1.64},{&quot;2026-06-22&quot;:1.62},{&quot;2026-06-23&quot;:1.62},{&quot;2026-06-24&quot;:1.59},{&quot;2026-06-25&quot;:1.62},{&quot;2026-06-26&quot;:1.63},{&quot;2026-06-27&quot;:1.59},{&quot;2026-06-28&quot;:1.49},{&quot;2026-06-29&quot;:1.49},{&quot;2026-06-30&quot;:1.49},{&quot;2026-07-01&quot;:1.39},{&quot;2026-07-02&quot;:1.42},{&quot;2026-07-03&quot;:1.4},{&quot;2026-07-04&quot;:1.4},{&quot;2026-07-05&quot;:1.4},{&quot;2026-07-06&quot;:1.39},{&quot;2026-07-07&quot;:1.38},{&quot;2026-07-08&quot;:1.36},{&quot;2026-07-09&quot;:1.36},{&quot;2026-07-10&quot;:1.33},{&quot;2026-07-11&quot;:1.36},{&quot;2026-07-12&quot;:1.36},{&quot;2026-07-13&quot;:1.35},{&quot;2026-07-14&quot;:1.35},{&quot;2026-07-15&quot;:1.35},{&quot;2026-07-16&quot;:1.35},{&quot;2026-07-17&quot;:1.37},{&quot;2026-07-18&quot;:1.4},{&quot;2026-07-19&quot;:1.44},{&quot;2026-07-20&quot;:1.48},{&quot;2026-07-21&quot;:1.47},{&quot;2026-07-23&quot;:1.55},{&quot;2026-07-25&quot;:1.58},{&quot;2026-07-26&quot;:1.57},{&quot;2026-07-27&quot;:1.58},{&quot;2026-07-28&quot;:1.58},{&quot;2026-07-29&quot;:1.56},{&quot;2026-07-30&quot;:1.57},{&quot;2026-07-31&quot;:1.62},{&quot;2026-08-01&quot;:1.63},{&quot;2026-08-02&quot;:1.63},{&quot;2026-08-03&quot;:1.63},{&quot;2026-08-04&quot;:1.66},{&quot;2026-08-05&quot;:1.66},{&quot;2026-08-07&quot;:1.59},{&quot;2026-08-08&quot;:1.54},{&quot;2026-08-09&quot;:1.53},{&quot;2026-08-10&quot;:1.49},{&quot;2026-08-11&quot;:1.49},{&quot;2026-08-12&quot;:1.52},{&quot;2026-08-13&quot;:1.52},{&quot;2026-08-14&quot;:1.52},{&quot;2026-08-15&quot;:1.57},{&quot;2026-08-16&quot;:1.72},{&quot;2026-08-17&quot;:1.71},{&quot;2026-08-18&quot;:1.71},{&quot;2026-08-19&quot;:1.65},{&quot;2026-08-20&quot;:1.65},{&quot;2026-08-21&quot;:1.61},{&quot;2026-08-22&quot;:1.6},{&quot;2026-08-23&quot;:1.64},{&quot;2026-08-24&quot;:1.64},{&quot;2026-08-25&quot;:1.64},{&quot;2026-08-26&quot;:1.64},{&quot;2026-08-27&quot;:1.65},{&quot;2026-08-28&quot;:1.69},{&quot;2026-08-29&quot;:1.69},{&quot;2026-08-30&quot;:1.69},{&quot;2026-08-31&quot;:1.63},{&quot;2026-09-01&quot;:1.63},{&quot;2026-09-02&quot;:1.55},{&quot;2026-09-03&quot;:1.56},{&quot;2026-09-04&quot;:1.58},{&quot;2026-09-05&quot;:1.58},{&quot;2026-09-06&quot;:1.55},{&quot;2026-09-07&quot;:1.56},{&quot;2026-09-08&quot;:1.59},{&quot;2026-09-09&quot;:1.55},{&quot;2026-09-10&quot;:1.68},{&quot;2026-09-11&quot;:1.75}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:1.0},{&quot;2026-06-12&quot;:1.14},{&quot;2026-06-13&quot;:1.1},{&quot;2026-06-14&quot;:1.14},{&quot;2026-06-15&quot;:0.93},{&quot;2026-06-16&quot;:0.98},{&quot;2026-06-17&quot;:1.02},{&quot;2026-06-18&quot;:1.07},{&quot;2026-06-19&quot;:1.02},{&quot;2026-06-20&quot;:0.93},{&quot;2026-06-21&quot;:0.96},{&quot;2026-06-22&quot;:1.0},{&quot;2026-06-23&quot;:1.0},{&quot;2026-06-24&quot;:1.08},{&quot;2026-06-25&quot;:1.1},{&quot;2026-06-26&quot;:1.21},{&quot;2026-06-27&quot;:1.26},{&quot;2026-06-28&quot;:1.22},{&quot;2026-06-29&quot;:1.06},{&quot;2026-06-30&quot;:1.09},{&quot;2026-07-01&quot;:1.09},{&quot;2026-07-02&quot;:1.16},{&quot;2026-07-03&quot;:1.43},{&quot;2026-07-04&quot;:1.72},{&quot;2026-07-05&quot;:1.97},{&quot;2026-07-06&quot;:2.0},{&quot;2026-07-07&quot;:1.83},{&quot;2026-07-08&quot;:1.51},{&quot;2026-07-09&quot;:1.52},{&quot;2026-07-10&quot;:1.53},{&quot;2026-07-11&quot;:1.46},{&quot;2026-07-12&quot;:1.5},{&quot;2026-07-13&quot;:1.45},{&quot;2026-07-14&quot;:1.38},{&quot;2026-07-15&quot;:1.25},{&quot;2026-07-16&quot;:1.26},{&quot;2026-07-17&quot;:1.77},{&quot;2026-07-18&quot;:1.75},{&quot;2026-07-19&quot;:1.83},{&quot;2026-07-20&quot;:1.9},{&quot;2026-07-21&quot;:1.73},{&quot;2026-07-23&quot;:1.67},{&quot;2026-07-25&quot;:1.56},{&quot;2026-07-26&quot;:1.36},{&quot;2026-07-27&quot;:1.37},{&quot;2026-07-28&quot;:1.37},{&quot;2026-07-29&quot;:1.38},{&quot;2026-07-30&quot;:1.4},{&quot;2026-07-31&quot;:1.36},{&quot;2026-08-01&quot;:1.43},{&quot;2026-08-02&quot;:1.52},{&quot;2026-08-03&quot;:1.67},{&quot;2026-08-04&quot;:1.76},{&quot;2026-08-05&quot;:2.03},{&quot;2026-08-07&quot;:2.09},{&quot;2026-08-08&quot;:1.73},{&quot;2026-08-09&quot;:1.48},{&quot;2026-08-10&quot;:1.47},{&quot;2026-08-11&quot;:1.63},{&quot;2026-08-12&quot;:1.72},{&quot;2026-08-13&quot;:1.87},{&quot;2026-08-14&quot;:1.74},{&quot;2026-08-15&quot;:1.77},{&quot;2026-08-16&quot;:1.72},{&quot;2026-08-17&quot;:1.75},{&quot;2026-08-18&quot;:1.72},{&quot;2026-08-19&quot;:1.96},{&quot;2026-08-20&quot;:1.96},{&quot;2026-08-21&quot;:2.05},{&quot;2026-08-22&quot;:1.78},{&quot;2026-08-23&quot;:1.39},{&quot;2026-08-24&quot;:1.49},{&quot;2026-08-25&quot;:1.49},{&quot;2026-08-26&quot;:2.08},{&quot;2026-08-27&quot;:2.0},{&quot;2026-08-28&quot;:2.06},{&quot;2026-08-29&quot;:2.06},{&quot;2026-08-30&quot;:1.9},{&quot;2026-08-31&quot;:2.15},{&quot;2026-09-01&quot;:2.15},{&quot;2026-09-02&quot;:2.03},{&quot;2026-09-03&quot;:2.05},{&quot;2026-09-04&quot;:2.09},{&quot;2026-09-05&quot;:1.94},{&quot;2026-09-06&quot;:1.81},{&quot;2026-09-07&quot;:1.8},{&quot;2026-09-08&quot;:1.71},{&quot;2026-09-09&quot;:1.63},{&quot;2026-09-10&quot;:1.71},{&quot;2026-09-11&quot;:1.72}]}"
        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="94640"
  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">
            Venat, Heart of Hydaelyn 
        </span>


      </div>

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

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

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-50 text-badge-text">
              ↑
              21%
            </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="Venat, Heart of Hydaelyn // Hydaelyn, the Mothercrystal" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/6/2625c00d-0a51-4481-bf36-cf13a2546242.jpg?1783906647" />

        <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">
            Venat, Heart of Hydaelyn 
        </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 — Elder Wizard</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-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"
    >
        <div data-controller="card-flip" class="flex flex-col items-center">
          <div
            data-action="click->card-flip#flip"
            class="flip-container cursor-pointer w-full max-w-xs mx-auto"
          >
            <div data-card-flip-target="card" class="flip-card">
              <div class="flip-card-front">
                <img class="w-full h-auto rounded-2xl" alt="Venat, Heart of Hydaelyn // Hydaelyn, the Mothercrystal" src="https://cards.scryfall.io/large/front/2/6/2625c00d-0a51-4481-bf36-cf13a2546242.jpg?1783906647" />
              </div>

              <div class="flip-card-back">
                <img class="w-full h-auto rounded-2xl" alt="Venat, Heart of Hydaelyn // Hydaelyn, the Mothercrystal" src="https://cards.scryfall.io/large/back/2/6/2625c00d-0a51-4481-bf36-cf13a2546242.jpg?1783906647" />
              </div>
            </div>
          </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:2.34},{&quot;2026-06-14&quot;:2.34},{&quot;2026-06-15&quot;:2.43},{&quot;2026-06-16&quot;:2.38},{&quot;2026-06-17&quot;:2.36},{&quot;2026-06-18&quot;:2.29},{&quot;2026-06-19&quot;:2.29},{&quot;2026-06-20&quot;:2.18},{&quot;2026-06-21&quot;:2.18},{&quot;2026-06-22&quot;:2.23},{&quot;2026-06-23&quot;:2.21},{&quot;2026-06-24&quot;:2.17},{&quot;2026-06-25&quot;:2.17},{&quot;2026-06-26&quot;:2.22},{&quot;2026-06-27&quot;:2.22},{&quot;2026-06-28&quot;:2.14},{&quot;2026-06-29&quot;:1.96},{&quot;2026-06-30&quot;:2.06},{&quot;2026-07-01&quot;:2.11},{&quot;2026-07-02&quot;:1.9},{&quot;2026-07-03&quot;:1.83},{&quot;2026-07-04&quot;:1.76},{&quot;2026-07-05&quot;:1.76},{&quot;2026-07-06&quot;:1.76},{&quot;2026-07-07&quot;:1.78},{&quot;2026-07-08&quot;:1.78},{&quot;2026-07-09&quot;:1.71},{&quot;2026-07-10&quot;:1.8},{&quot;2026-07-11&quot;:1.92},{&quot;2026-07-12&quot;:1.92},{&quot;2026-07-13&quot;:1.92},{&quot;2026-07-14&quot;:1.92},{&quot;2026-07-15&quot;:1.92},{&quot;2026-07-16&quot;:1.99},{&quot;2026-07-17&quot;:1.99},{&quot;2026-07-18&quot;:1.82},{&quot;2026-07-19&quot;:1.81},{&quot;2026-07-20&quot;:1.93},{&quot;2026-07-21&quot;:1.93},{&quot;2026-07-22&quot;:1.93},{&quot;2026-07-23&quot;:1.95},{&quot;2026-07-24&quot;:1.97},{&quot;2026-07-25&quot;:2.04},{&quot;2026-07-26&quot;:2.02},{&quot;2026-07-27&quot;:2.02},{&quot;2026-07-28&quot;:2.02},{&quot;2026-07-29&quot;:2.02},{&quot;2026-07-30&quot;:2.02},{&quot;2026-07-31&quot;:2.01},{&quot;2026-08-01&quot;:2.02},{&quot;2026-08-02&quot;:2.0},{&quot;2026-08-03&quot;:2.0},{&quot;2026-08-04&quot;:2.0},{&quot;2026-08-05&quot;:2.04},{&quot;2026-08-07&quot;:1.91},{&quot;2026-08-08&quot;:1.91},{&quot;2026-08-09&quot;:1.91},{&quot;2026-08-10&quot;:1.86},{&quot;2026-08-11&quot;:1.82},{&quot;2026-08-12&quot;:1.81},{&quot;2026-08-13&quot;:1.79},{&quot;2026-08-14&quot;:1.75},{&quot;2026-08-15&quot;:1.8},{&quot;2026-08-16&quot;:1.83},{&quot;2026-08-17&quot;:1.87},{&quot;2026-08-18&quot;:1.87},{&quot;2026-08-19&quot;:1.86},{&quot;2026-08-20&quot;:2.08},{&quot;2026-08-21&quot;:1.95},{&quot;2026-08-22&quot;:1.92},{&quot;2026-08-23&quot;:1.93},{&quot;2026-08-24&quot;:1.93},{&quot;2026-08-25&quot;:1.97},{&quot;2026-08-26&quot;:2.13},{&quot;2026-08-27&quot;:2.16},{&quot;2026-08-28&quot;:2.38},{&quot;2026-08-29&quot;:2.38},{&quot;2026-08-30&quot;:2.73},{&quot;2026-08-31&quot;:2.73},{&quot;2026-09-01&quot;:2.58},{&quot;2026-09-02&quot;:2.58},{&quot;2026-09-03&quot;:2.57},{&quot;2026-09-04&quot;:2.7},{&quot;2026-09-05&quot;:2.64},{&quot;2026-09-06&quot;:2.64},{&quot;2026-09-07&quot;:2.54},{&quot;2026-09-08&quot;:2.57},{&quot;2026-09-09&quot;:2.47},{&quot;2026-09-10&quot;:2.47},{&quot;2026-09-11&quot;:2.47}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.09},{&quot;2026-06-14&quot;:1.22},{&quot;2026-06-15&quot;:1.27},{&quot;2026-06-16&quot;:1.48},{&quot;2026-06-17&quot;:1.46},{&quot;2026-06-18&quot;:1.53},{&quot;2026-06-19&quot;:1.37},{&quot;2026-06-20&quot;:1.25},{&quot;2026-06-21&quot;:1.06},{&quot;2026-06-22&quot;:1.27},{&quot;2026-06-23&quot;:1.25},{&quot;2026-06-24&quot;:1.45},{&quot;2026-06-25&quot;:1.58},{&quot;2026-06-26&quot;:1.54},{&quot;2026-06-27&quot;:1.49},{&quot;2026-06-28&quot;:1.49},{&quot;2026-06-29&quot;:1.51},{&quot;2026-06-30&quot;:1.46},{&quot;2026-07-01&quot;:1.4},{&quot;2026-07-02&quot;:1.41},{&quot;2026-07-03&quot;:1.52},{&quot;2026-07-04&quot;:1.72},{&quot;2026-07-05&quot;:1.75},{&quot;2026-07-06&quot;:1.57},{&quot;2026-07-07&quot;:1.48},{&quot;2026-07-08&quot;:1.58},{&quot;2026-07-09&quot;:1.56},{&quot;2026-07-10&quot;:1.55},{&quot;2026-07-11&quot;:1.6},{&quot;2026-07-12&quot;:1.79},{&quot;2026-07-13&quot;:1.93},{&quot;2026-07-14&quot;:1.91},{&quot;2026-07-15&quot;:1.87},{&quot;2026-07-16&quot;:1.71},{&quot;2026-07-17&quot;:1.53},{&quot;2026-07-18&quot;:1.46},{&quot;2026-07-19&quot;:1.38},{&quot;2026-07-20&quot;:1.24},{&quot;2026-07-21&quot;:1.27},{&quot;2026-07-22&quot;:1.31},{&quot;2026-07-23&quot;:1.4},{&quot;2026-07-24&quot;:1.71},{&quot;2026-07-25&quot;:1.9},{&quot;2026-07-26&quot;:1.92},{&quot;2026-07-27&quot;:1.85},{&quot;2026-07-28&quot;:2.03},{&quot;2026-07-29&quot;:1.95},{&quot;2026-07-30&quot;:2.01},{&quot;2026-07-31&quot;:1.9},{&quot;2026-08-01&quot;:1.8},{&quot;2026-08-02&quot;:1.83},{&quot;2026-08-03&quot;:1.84},{&quot;2026-08-04&quot;:1.93},{&quot;2026-08-05&quot;:1.89},{&quot;2026-08-07&quot;:1.76},{&quot;2026-08-08&quot;:1.74},{&quot;2026-08-09&quot;:1.82},{&quot;2026-08-10&quot;:2.03},{&quot;2026-08-11&quot;:1.69},{&quot;2026-08-12&quot;:1.7},{&quot;2026-08-13&quot;:1.55},{&quot;2026-08-14&quot;:1.45},{&quot;2026-08-15&quot;:1.15},{&quot;2026-08-16&quot;:1.27},{&quot;2026-08-17&quot;:1.48},{&quot;2026-08-18&quot;:1.66},{&quot;2026-08-19&quot;:1.72},{&quot;2026-08-20&quot;:1.87},{&quot;2026-08-21&quot;:1.82},{&quot;2026-08-22&quot;:1.65},{&quot;2026-08-23&quot;:1.81},{&quot;2026-08-24&quot;:1.76},{&quot;2026-08-25&quot;:2.02},{&quot;2026-08-26&quot;:2.01},{&quot;2026-08-27&quot;:1.96},{&quot;2026-08-28&quot;:1.99},{&quot;2026-08-29&quot;:1.99},{&quot;2026-08-30&quot;:2.23},{&quot;2026-08-31&quot;:2.21},{&quot;2026-09-01&quot;:1.89},{&quot;2026-09-02&quot;:1.76},{&quot;2026-09-03&quot;:1.52},{&quot;2026-09-04&quot;:1.42},{&quot;2026-09-05&quot;:1.41},{&quot;2026-09-06&quot;:1.55},{&quot;2026-09-07&quot;:1.5},{&quot;2026-09-08&quot;:1.65},{&quot;2026-09-09&quot;:1.65},{&quot;2026-09-10&quot;:1.87},{&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="74237"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-ltr ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Éowyn, Fearless Knight" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/d/adffb389-c9a3-41c4-b078-292a2bcf870d.jpg?1783916259" />

        <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">
            Éowyn, Fearless Knight
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></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="Éowyn, Fearless Knight" src="https://cards.scryfall.io/large/front/a/d/adffb389-c9a3-41c4-b078-292a2bcf870d.jpg?1783916259" />
    </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.20
              </span>

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

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

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

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Foil</span>
              <span class="text-lg font-medium text-nine-white">$0.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;2026-06-13&quot;:1.33},{&quot;2026-06-14&quot;:1.33},{&quot;2026-06-15&quot;:1.31},{&quot;2026-06-16&quot;:1.28},{&quot;2026-06-17&quot;:1.28},{&quot;2026-06-18&quot;:1.32},{&quot;2026-06-19&quot;:1.35},{&quot;2026-06-20&quot;:1.35},{&quot;2026-06-21&quot;:1.35},{&quot;2026-06-22&quot;:1.35},{&quot;2026-06-23&quot;:1.35},{&quot;2026-06-24&quot;:1.35},{&quot;2026-06-25&quot;:1.35},{&quot;2026-06-26&quot;:1.35},{&quot;2026-06-27&quot;:1.35},{&quot;2026-06-28&quot;:1.35},{&quot;2026-06-29&quot;:1.35},{&quot;2026-06-30&quot;:1.34},{&quot;2026-07-01&quot;:1.39},{&quot;2026-07-02&quot;:1.4},{&quot;2026-07-03&quot;:1.42},{&quot;2026-07-04&quot;:1.42},{&quot;2026-07-05&quot;:1.42},{&quot;2026-07-06&quot;:1.42},{&quot;2026-07-07&quot;:1.42},{&quot;2026-07-08&quot;:1.43},{&quot;2026-07-09&quot;:1.42},{&quot;2026-07-10&quot;:1.42},{&quot;2026-07-11&quot;:1.42},{&quot;2026-07-12&quot;:1.42},{&quot;2026-07-13&quot;:1.42},{&quot;2026-07-14&quot;:1.41},{&quot;2026-07-15&quot;:1.41},{&quot;2026-07-16&quot;:1.41},{&quot;2026-07-17&quot;:1.41},{&quot;2026-07-18&quot;:1.42},{&quot;2026-07-19&quot;:1.42},{&quot;2026-07-20&quot;:1.42},{&quot;2026-07-21&quot;:1.42},{&quot;2026-07-22&quot;:1.41},{&quot;2026-07-23&quot;:1.4},{&quot;2026-07-24&quot;:1.4},{&quot;2026-07-25&quot;:1.41},{&quot;2026-07-26&quot;:1.41},{&quot;2026-07-27&quot;:1.49},{&quot;2026-07-28&quot;:1.38},{&quot;2026-07-29&quot;:1.37},{&quot;2026-07-30&quot;:1.37},{&quot;2026-07-31&quot;:1.37},{&quot;2026-08-01&quot;:1.37},{&quot;2026-08-02&quot;:1.37},{&quot;2026-08-03&quot;:1.31},{&quot;2026-08-04&quot;:1.31},{&quot;2026-08-05&quot;:1.31},{&quot;2026-08-07&quot;:1.31},{&quot;2026-08-08&quot;:1.32},{&quot;2026-08-09&quot;:1.39},{&quot;2026-08-10&quot;:1.4},{&quot;2026-08-11&quot;:1.41},{&quot;2026-08-12&quot;:1.4},{&quot;2026-08-13&quot;:1.4},{&quot;2026-08-14&quot;:1.4},{&quot;2026-08-15&quot;:1.4},{&quot;2026-08-16&quot;:1.4},{&quot;2026-08-17&quot;:1.4},{&quot;2026-08-18&quot;:1.4},{&quot;2026-08-19&quot;:1.4},{&quot;2026-08-20&quot;:1.44},{&quot;2026-08-21&quot;:1.42},{&quot;2026-08-22&quot;:1.42},{&quot;2026-08-23&quot;:1.42},{&quot;2026-08-24&quot;:1.42},{&quot;2026-08-25&quot;:1.42},{&quot;2026-08-26&quot;:1.43},{&quot;2026-08-27&quot;:1.44},{&quot;2026-08-28&quot;:1.44},{&quot;2026-08-29&quot;:1.44},{&quot;2026-08-30&quot;:1.51},{&quot;2026-08-31&quot;:1.51},{&quot;2026-09-01&quot;:1.51},{&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.58},{&quot;2026-09-06&quot;:1.58},{&quot;2026-09-07&quot;:1.58},{&quot;2026-09-08&quot;:1.6},{&quot;2026-09-09&quot;:1.6},{&quot;2026-09-10&quot;:1.6},{&quot;2026-09-11&quot;:1.6}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.59},{&quot;2026-06-14&quot;:1.5},{&quot;2026-06-15&quot;:1.45},{&quot;2026-06-16&quot;:1.46},{&quot;2026-06-17&quot;:1.46},{&quot;2026-06-18&quot;:1.41},{&quot;2026-06-19&quot;:1.22},{&quot;2026-06-20&quot;:1.22},{&quot;2026-06-21&quot;:1.22},{&quot;2026-06-22&quot;:1.27},{&quot;2026-06-23&quot;:1.3},{&quot;2026-06-24&quot;:1.3},{&quot;2026-06-25&quot;:1.33},{&quot;2026-06-26&quot;:1.21},{&quot;2026-06-27&quot;:1.25},{&quot;2026-06-28&quot;:1.36},{&quot;2026-06-29&quot;:1.22},{&quot;2026-06-30&quot;:1.19},{&quot;2026-07-01&quot;:1.14},{&quot;2026-07-02&quot;:1.14},{&quot;2026-07-03&quot;:1.12},{&quot;2026-07-04&quot;:1.11},{&quot;2026-07-05&quot;:1.12},{&quot;2026-07-06&quot;:1.11},{&quot;2026-07-07&quot;:1.19},{&quot;2026-07-08&quot;:1.07},{&quot;2026-07-09&quot;:1.12},{&quot;2026-07-10&quot;:1.13},{&quot;2026-07-11&quot;:1.11},{&quot;2026-07-12&quot;:1.12},{&quot;2026-07-13&quot;:0.98},{&quot;2026-07-14&quot;:0.93},{&quot;2026-07-15&quot;:0.88},{&quot;2026-07-16&quot;:0.95},{&quot;2026-07-17&quot;:0.93},{&quot;2026-07-18&quot;:0.91},{&quot;2026-07-19&quot;:0.93},{&quot;2026-07-20&quot;:0.88},{&quot;2026-07-21&quot;:0.9},{&quot;2026-07-22&quot;:0.93},{&quot;2026-07-23&quot;:0.95},{&quot;2026-07-24&quot;:0.94},{&quot;2026-07-25&quot;:0.96},{&quot;2026-07-26&quot;:0.94},{&quot;2026-07-27&quot;:0.98},{&quot;2026-07-28&quot;:1.03},{&quot;2026-07-29&quot;:1.06},{&quot;2026-07-30&quot;:1.05},{&quot;2026-07-31&quot;:1.03},{&quot;2026-08-01&quot;:1.04},{&quot;2026-08-02&quot;:1.06},{&quot;2026-08-03&quot;:1.06},{&quot;2026-08-04&quot;:1.06},{&quot;2026-08-05&quot;:1.04},{&quot;2026-08-07&quot;:0.93},{&quot;2026-08-08&quot;:0.87},{&quot;2026-08-09&quot;:0.82},{&quot;2026-08-10&quot;:0.81},{&quot;2026-08-11&quot;:0.82},{&quot;2026-08-12&quot;:0.81},{&quot;2026-08-13&quot;:0.79},{&quot;2026-08-14&quot;:0.84},{&quot;2026-08-15&quot;:0.85},{&quot;2026-08-16&quot;:0.88},{&quot;2026-08-17&quot;:0.86},{&quot;2026-08-18&quot;:0.8},{&quot;2026-08-19&quot;:0.94},{&quot;2026-08-20&quot;:1.11},{&quot;2026-08-21&quot;:1.23},{&quot;2026-08-22&quot;:1.25},{&quot;2026-08-23&quot;:1.21},{&quot;2026-08-24&quot;:1.2},{&quot;2026-08-25&quot;:1.2},{&quot;2026-08-26&quot;:1.14},{&quot;2026-08-27&quot;:1.12},{&quot;2026-08-28&quot;:1.1},{&quot;2026-08-29&quot;:1.1},{&quot;2026-08-30&quot;:1.11},{&quot;2026-08-31&quot;:1.09},{&quot;2026-09-01&quot;:1.02},{&quot;2026-09-02&quot;:1.04},{&quot;2026-09-03&quot;:1.06},{&quot;2026-09-04&quot;:1.07},{&quot;2026-09-05&quot;:1.09},{&quot;2026-09-06&quot;:1.22},{&quot;2026-09-07&quot;:1.25},{&quot;2026-09-08&quot;:1.26},{&quot;2026-09-09&quot;:1.21},{&quot;2026-09-10&quot;:1.17},{&quot;2026-09-11&quot;:1.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="91098"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-inr ss-common ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Swamp" src="https://cards.scryfall.io/large/front/4/b/4bc918af-527c-46d7-861d-32e9150ed3df.jpg?1783908049" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.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">
                $1.41
              </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 Foil</span>
              <span class="text-lg font-medium text-nine-white">$1.23</span>
              <span class="text-xs text-grey-text">Credit: $1.60</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:1.05},{&quot;2026-06-14&quot;:1.05},{&quot;2026-06-15&quot;:1.05},{&quot;2026-06-16&quot;:1.0},{&quot;2026-06-17&quot;:1.0},{&quot;2026-06-18&quot;:1.0},{&quot;2026-06-19&quot;:1.0},{&quot;2026-06-20&quot;:1.0},{&quot;2026-06-21&quot;:1.08},{&quot;2026-06-22&quot;:1.08},{&quot;2026-06-23&quot;:1.08},{&quot;2026-06-24&quot;:1.14},{&quot;2026-06-25&quot;:1.14},{&quot;2026-06-26&quot;:1.13},{&quot;2026-06-27&quot;:1.14},{&quot;2026-06-28&quot;:1.14},{&quot;2026-06-29&quot;:1.13},{&quot;2026-06-30&quot;:1.17},{&quot;2026-07-01&quot;:1.17},{&quot;2026-07-02&quot;:1.21},{&quot;2026-07-03&quot;:1.22},{&quot;2026-07-04&quot;:1.22},{&quot;2026-07-05&quot;:1.28},{&quot;2026-07-06&quot;:1.19},{&quot;2026-07-07&quot;:1.25},{&quot;2026-07-08&quot;:1.25},{&quot;2026-07-09&quot;:1.25},{&quot;2026-07-10&quot;:1.28},{&quot;2026-07-11&quot;:1.5},{&quot;2026-07-12&quot;:1.5},{&quot;2026-07-13&quot;:1.5},{&quot;2026-07-14&quot;:1.5},{&quot;2026-07-15&quot;:1.46},{&quot;2026-07-16&quot;:1.42},{&quot;2026-07-17&quot;:1.42},{&quot;2026-07-18&quot;:1.42},{&quot;2026-07-19&quot;:1.47},{&quot;2026-07-20&quot;:1.49},{&quot;2026-07-21&quot;:1.49},{&quot;2026-07-22&quot;:1.53},{&quot;2026-07-23&quot;:1.53},{&quot;2026-07-24&quot;:1.53},{&quot;2026-07-25&quot;:1.53},{&quot;2026-07-26&quot;:1.53},{&quot;2026-07-27&quot;:1.53},{&quot;2026-07-28&quot;:1.54},{&quot;2026-07-29&quot;:1.6},{&quot;2026-07-30&quot;:1.54},{&quot;2026-07-31&quot;:1.55},{&quot;2026-08-01&quot;:1.55},{&quot;2026-08-02&quot;:1.63},{&quot;2026-08-03&quot;:1.63},{&quot;2026-08-04&quot;:1.63},{&quot;2026-08-05&quot;:1.63},{&quot;2026-08-07&quot;:1.63},{&quot;2026-08-08&quot;:1.63},{&quot;2026-08-09&quot;:1.67},{&quot;2026-08-10&quot;:1.67},{&quot;2026-08-11&quot;:1.67},{&quot;2026-08-12&quot;:1.7},{&quot;2026-08-13&quot;:1.7},{&quot;2026-08-14&quot;:1.7},{&quot;2026-08-15&quot;:1.7},{&quot;2026-08-16&quot;:1.68},{&quot;2026-08-17&quot;:1.68},{&quot;2026-08-18&quot;:1.62},{&quot;2026-08-19&quot;:1.62},{&quot;2026-08-20&quot;:1.51},{&quot;2026-08-21&quot;:1.51},{&quot;2026-08-22&quot;:1.55},{&quot;2026-08-23&quot;:1.61},{&quot;2026-08-24&quot;:1.59},{&quot;2026-08-25&quot;:1.59},{&quot;2026-08-26&quot;:1.59},{&quot;2026-08-27&quot;:1.6},{&quot;2026-08-28&quot;:1.61},{&quot;2026-08-29&quot;:1.61},{&quot;2026-08-30&quot;:1.59},{&quot;2026-08-31&quot;:1.6},{&quot;2026-09-01&quot;:1.6},{&quot;2026-09-02&quot;:1.57},{&quot;2026-09-03&quot;:1.48},{&quot;2026-09-04&quot;:1.47},{&quot;2026-09-05&quot;:1.47},{&quot;2026-09-06&quot;:1.47},{&quot;2026-09-07&quot;:1.45},{&quot;2026-09-08&quot;:1.44},{&quot;2026-09-09&quot;:1.44},{&quot;2026-09-10&quot;:1.41},{&quot;2026-09-11&quot;:1.41}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.96},{&quot;2026-06-14&quot;:0.96},{&quot;2026-06-15&quot;:0.96},{&quot;2026-06-16&quot;:0.96},{&quot;2026-06-17&quot;:0.96},{&quot;2026-06-18&quot;:0.96},{&quot;2026-06-19&quot;:0.93},{&quot;2026-06-20&quot;:0.93},{&quot;2026-06-21&quot;:0.9},{&quot;2026-06-22&quot;:0.9},{&quot;2026-06-23&quot;:0.9},{&quot;2026-06-24&quot;:0.86},{&quot;2026-06-25&quot;:0.86},{&quot;2026-06-26&quot;:0.86},{&quot;2026-06-27&quot;:0.86},{&quot;2026-06-28&quot;:0.86},{&quot;2026-06-29&quot;:0.86},{&quot;2026-06-30&quot;:0.87},{&quot;2026-07-01&quot;:0.87},{&quot;2026-07-02&quot;:0.81},{&quot;2026-07-03&quot;:0.81},{&quot;2026-07-04&quot;:0.79},{&quot;2026-07-05&quot;:0.79},{&quot;2026-07-06&quot;:0.7},{&quot;2026-07-07&quot;:0.7},{&quot;2026-07-08&quot;:0.7},{&quot;2026-07-09&quot;:0.7},{&quot;2026-07-10&quot;:0.7},{&quot;2026-07-11&quot;:0.7},{&quot;2026-07-12&quot;:0.7},{&quot;2026-07-13&quot;:0.7},{&quot;2026-07-14&quot;:0.72},{&quot;2026-07-15&quot;:0.72},{&quot;2026-07-16&quot;:0.75},{&quot;2026-07-17&quot;:0.75},{&quot;2026-07-18&quot;:0.66},{&quot;2026-07-19&quot;:0.66},{&quot;2026-07-20&quot;:0.66},{&quot;2026-07-21&quot;:0.66},{&quot;2026-07-22&quot;:0.67},{&quot;2026-07-23&quot;:0.67},{&quot;2026-07-24&quot;:0.67},{&quot;2026-07-25&quot;:0.62},{&quot;2026-07-26&quot;:0.62},{&quot;2026-07-27&quot;:0.62},{&quot;2026-07-28&quot;:0.62},{&quot;2026-07-29&quot;:0.63},{&quot;2026-07-30&quot;:0.63},{&quot;2026-07-31&quot;:0.66},{&quot;2026-08-01&quot;:0.66},{&quot;2026-08-02&quot;:0.66},{&quot;2026-08-03&quot;:0.66},{&quot;2026-08-04&quot;:0.6},{&quot;2026-08-05&quot;:0.59},{&quot;2026-08-07&quot;:0.59},{&quot;2026-08-08&quot;:0.69},{&quot;2026-08-09&quot;:0.69},{&quot;2026-08-10&quot;:0.69},{&quot;2026-08-11&quot;:0.69},{&quot;2026-08-12&quot;:0.69},{&quot;2026-08-13&quot;:0.69},{&quot;2026-08-14&quot;:0.74},{&quot;2026-08-15&quot;:0.74},{&quot;2026-08-16&quot;:0.74},{&quot;2026-08-17&quot;:0.74},{&quot;2026-08-18&quot;:0.74},{&quot;2026-08-19&quot;:0.73},{&quot;2026-08-20&quot;:0.74},{&quot;2026-08-21&quot;:0.74},{&quot;2026-08-22&quot;:0.74},{&quot;2026-08-23&quot;:0.76},{&quot;2026-08-24&quot;:0.76},{&quot;2026-08-25&quot;:0.79},{&quot;2026-08-26&quot;:0.79},{&quot;2026-08-27&quot;:0.79},{&quot;2026-08-28&quot;:0.79},{&quot;2026-08-29&quot;:0.79},{&quot;2026-08-30&quot;:0.79},{&quot;2026-08-31&quot;:0.79},{&quot;2026-09-01&quot;:0.79},{&quot;2026-09-02&quot;:0.79},{&quot;2026-09-03&quot;:0.79},{&quot;2026-09-04&quot;:0.79},{&quot;2026-09-05&quot;:0.79},{&quot;2026-09-06&quot;:0.78},{&quot;2026-09-07&quot;:0.78},{&quot;2026-09-08&quot;:0.78},{&quot;2026-09-09&quot;:0.78},{&quot;2026-09-10&quot;:0.8},{&quot;2026-09-11&quot;:0.81}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="95113"
  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">
            Squall, SeeD Mercenary
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Legendary Creature — Human Knight 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">
            $1.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="Squall, SeeD Mercenary" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/c/cc4e5234-fb41-48f7-91f4-039710542bc3.jpg?1783906563" />

        <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">
            Squall, SeeD Mercenary
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Legendary Creature — Human Knight Mercenary</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-b'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Squall, SeeD Mercenary" src="https://cards.scryfall.io/large/front/c/c/cc4e5234-fb41-48f7-91f4-039710542bc3.jpg?1783906563" />
    </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.25
              </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">
                $1.35
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  10%
                </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;2026-06-08&quot;:1.34},{&quot;2026-06-10&quot;:1.23},{&quot;2026-06-11&quot;:1.23},{&quot;2026-06-12&quot;:1.23},{&quot;2026-06-13&quot;:1.14},{&quot;2026-06-14&quot;:1.16},{&quot;2026-06-15&quot;:1.22},{&quot;2026-06-16&quot;:1.23},{&quot;2026-06-17&quot;:1.18},{&quot;2026-06-18&quot;:1.15},{&quot;2026-06-19&quot;:1.15},{&quot;2026-06-20&quot;:1.13},{&quot;2026-06-21&quot;:1.15},{&quot;2026-06-22&quot;:1.09},{&quot;2026-06-24&quot;:1.06},{&quot;2026-06-25&quot;:1.06},{&quot;2026-06-26&quot;:1.06},{&quot;2026-06-27&quot;:1.06},{&quot;2026-06-28&quot;:1.03},{&quot;2026-06-29&quot;:1.03},{&quot;2026-06-30&quot;:1.07},{&quot;2026-07-01&quot;:1.07},{&quot;2026-07-02&quot;:1.09},{&quot;2026-07-03&quot;:1.15},{&quot;2026-07-04&quot;:1.15},{&quot;2026-07-05&quot;:1.14},{&quot;2026-07-06&quot;:1.17},{&quot;2026-07-07&quot;:1.17},{&quot;2026-07-08&quot;:1.16},{&quot;2026-07-09&quot;:1.16},{&quot;2026-07-10&quot;:1.13},{&quot;2026-07-11&quot;:1.13},{&quot;2026-07-12&quot;:1.13},{&quot;2026-07-13&quot;:1.19},{&quot;2026-07-14&quot;:1.19},{&quot;2026-07-15&quot;:1.17},{&quot;2026-07-16&quot;:1.2},{&quot;2026-07-17&quot;:1.2},{&quot;2026-07-18&quot;:1.24},{&quot;2026-07-19&quot;:1.24},{&quot;2026-07-20&quot;:1.22},{&quot;2026-07-21&quot;:1.2},{&quot;2026-07-23&quot;:1.22},{&quot;2026-07-25&quot;:1.26},{&quot;2026-07-26&quot;:1.26},{&quot;2026-07-27&quot;:1.26},{&quot;2026-07-29&quot;:1.26},{&quot;2026-07-30&quot;:1.23},{&quot;2026-07-31&quot;:1.2},{&quot;2026-08-01&quot;:1.2},{&quot;2026-08-02&quot;:1.2},{&quot;2026-08-03&quot;:1.19},{&quot;2026-08-04&quot;:1.19},{&quot;2026-08-05&quot;:1.23},{&quot;2026-08-07&quot;:1.17},{&quot;2026-08-08&quot;:1.16},{&quot;2026-08-09&quot;:1.16},{&quot;2026-08-10&quot;:1.14},{&quot;2026-08-11&quot;:1.14},{&quot;2026-08-12&quot;:1.21},{&quot;2026-08-13&quot;:1.21},{&quot;2026-08-14&quot;:1.25},{&quot;2026-08-15&quot;:1.29},{&quot;2026-08-16&quot;:1.31},{&quot;2026-08-17&quot;:1.22},{&quot;2026-08-18&quot;:1.25},{&quot;2026-08-19&quot;:1.25},{&quot;2026-08-20&quot;:1.25},{&quot;2026-08-21&quot;:1.35},{&quot;2026-08-22&quot;:1.33},{&quot;2026-08-23&quot;:1.31},{&quot;2026-08-24&quot;:1.29},{&quot;2026-08-25&quot;:1.29},{&quot;2026-08-26&quot;:1.24},{&quot;2026-08-27&quot;:1.21},{&quot;2026-08-28&quot;:1.21},{&quot;2026-08-29&quot;:1.21},{&quot;2026-08-30&quot;:1.11},{&quot;2026-08-31&quot;:1.14},{&quot;2026-09-01&quot;:1.14},{&quot;2026-09-02&quot;:1.18},{&quot;2026-09-03&quot;:1.18},{&quot;2026-09-04&quot;:1.18},{&quot;2026-09-05&quot;:1.23},{&quot;2026-09-06&quot;:1.33},{&quot;2026-09-07&quot;:1.33},{&quot;2026-09-08&quot;:1.32},{&quot;2026-09-09&quot;:1.31},{&quot;2026-09-10&quot;:1.32},{&quot;2026-09-11&quot;:1.35}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:1.13},{&quot;2026-06-10&quot;:1.16},{&quot;2026-06-11&quot;:0.97},{&quot;2026-06-12&quot;:0.91},{&quot;2026-06-13&quot;:0.88},{&quot;2026-06-14&quot;:0.84},{&quot;2026-06-15&quot;:0.81},{&quot;2026-06-16&quot;:0.75},{&quot;2026-06-17&quot;:0.71},{&quot;2026-06-18&quot;:0.77},{&quot;2026-06-19&quot;:0.82},{&quot;2026-06-20&quot;:0.93},{&quot;2026-06-21&quot;:0.85},{&quot;2026-06-22&quot;:0.85},{&quot;2026-06-24&quot;:0.78},{&quot;2026-06-25&quot;:0.77},{&quot;2026-06-26&quot;:0.75},{&quot;2026-06-27&quot;:0.75},{&quot;2026-06-28&quot;:0.78},{&quot;2026-06-29&quot;:0.8},{&quot;2026-06-30&quot;:0.82},{&quot;2026-07-01&quot;:0.88},{&quot;2026-07-02&quot;:0.99},{&quot;2026-07-03&quot;:1.01},{&quot;2026-07-04&quot;:1.05},{&quot;2026-07-05&quot;:1.09},{&quot;2026-07-06&quot;:0.97},{&quot;2026-07-07&quot;:0.84},{&quot;2026-07-08&quot;:0.73},{&quot;2026-07-09&quot;:0.57},{&quot;2026-07-10&quot;:0.69},{&quot;2026-07-11&quot;:0.75},{&quot;2026-07-12&quot;:0.77},{&quot;2026-07-13&quot;:0.79},{&quot;2026-07-14&quot;:0.81},{&quot;2026-07-15&quot;:0.83},{&quot;2026-07-16&quot;:0.64},{&quot;2026-07-17&quot;:0.71},{&quot;2026-07-18&quot;:0.96},{&quot;2026-07-19&quot;:1.14},{&quot;2026-07-20&quot;:1.14},{&quot;2026-07-21&quot;:1.12},{&quot;2026-07-23&quot;:0.91},{&quot;2026-07-25&quot;:0.9},{&quot;2026-07-26&quot;:1.06},{&quot;2026-07-27&quot;:0.95},{&quot;2026-07-29&quot;:0.86},{&quot;2026-07-30&quot;:0.84},{&quot;2026-07-31&quot;:0.79},{&quot;2026-08-01&quot;:0.79},{&quot;2026-08-02&quot;:0.82},{&quot;2026-08-03&quot;:0.78},{&quot;2026-08-04&quot;:0.75},{&quot;2026-08-05&quot;:0.77},{&quot;2026-08-07&quot;:0.9},{&quot;2026-08-08&quot;:0.88},{&quot;2026-08-09&quot;:0.92},{&quot;2026-08-10&quot;:0.9},{&quot;2026-08-11&quot;:0.93},{&quot;2026-08-12&quot;:0.94},{&quot;2026-08-13&quot;:1.01},{&quot;2026-08-14&quot;:1.1},{&quot;2026-08-15&quot;:1.03},{&quot;2026-08-16&quot;:1.02},{&quot;2026-08-17&quot;:1.04},{&quot;2026-08-18&quot;:1.09},{&quot;2026-08-19&quot;:1.18},{&quot;2026-08-20&quot;:1.18},{&quot;2026-08-21&quot;:1.09},{&quot;2026-08-22&quot;:1.17},{&quot;2026-08-23&quot;:1.32},{&quot;2026-08-24&quot;:1.25},{&quot;2026-08-25&quot;:1.25},{&quot;2026-08-26&quot;:1.13},{&quot;2026-08-27&quot;:1.14},{&quot;2026-08-28&quot;:1.1},{&quot;2026-08-29&quot;:1.1},{&quot;2026-08-30&quot;:0.89},{&quot;2026-08-31&quot;:1.01},{&quot;2026-09-01&quot;:1.01},{&quot;2026-09-02&quot;:1.09},{&quot;2026-09-03&quot;:1.25},{&quot;2026-09-04&quot;:1.22},{&quot;2026-09-05&quot;:1.26},{&quot;2026-09-06&quot;:1.31},{&quot;2026-09-07&quot;:1.31},{&quot;2026-09-08&quot;:1.39},{&quot;2026-09-09&quot;:1.22},{&quot;2026-09-10&quot;:1.25},{&quot;2026-09-11&quot;:1.25}]}"
        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="92615"
  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">
            Cecil, Dark Knight 
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $1.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="Cecil, Dark Knight // Cecil, Redeemed Paladin" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/2/026e7167-d665-43d0-a51e-8df2d68cdb5e.jpg?1783906631" />

        <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">
            Cecil, Dark Knight 
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <div data-controller="card-flip" class="flex flex-col items-center">
          <div
            data-action="click->card-flip#flip"
            class="flip-container cursor-pointer w-full max-w-xs mx-auto"
          >
            <div data-card-flip-target="card" class="flip-card">
              <div class="flip-card-front">
                <img class="w-full h-auto rounded-2xl" alt="Cecil, Dark Knight // Cecil, Redeemed Paladin" src="https://cards.scryfall.io/large/front/0/2/026e7167-d665-43d0-a51e-8df2d68cdb5e.jpg?1783906631" />
              </div>

              <div class="flip-card-back">
                <img class="w-full h-auto rounded-2xl" alt="Cecil, Dark Knight // Cecil, Redeemed Paladin" src="https://cards.scryfall.io/large/back/0/2/026e7167-d665-43d0-a51e-8df2d68cdb5e.jpg?1783906631" />
              </div>
            </div>
          </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:1.47},{&quot;2026-06-11&quot;:1.39},{&quot;2026-06-12&quot;:1.39},{&quot;2026-06-13&quot;:1.37},{&quot;2026-06-14&quot;:1.38},{&quot;2026-06-15&quot;:1.38},{&quot;2026-06-16&quot;:1.37},{&quot;2026-06-17&quot;:1.37},{&quot;2026-06-18&quot;:1.37},{&quot;2026-06-19&quot;:1.37},{&quot;2026-06-20&quot;:1.37},{&quot;2026-06-21&quot;:1.36},{&quot;2026-06-22&quot;:1.36},{&quot;2026-06-23&quot;:1.36},{&quot;2026-06-24&quot;:1.36},{&quot;2026-06-25&quot;:1.38},{&quot;2026-06-26&quot;:1.38},{&quot;2026-06-27&quot;:1.38},{&quot;2026-06-28&quot;:1.38},{&quot;2026-06-29&quot;:1.41},{&quot;2026-06-30&quot;:1.41},{&quot;2026-07-01&quot;:1.32},{&quot;2026-07-02&quot;:1.3},{&quot;2026-07-03&quot;:1.31},{&quot;2026-07-04&quot;:1.37},{&quot;2026-07-05&quot;:1.38},{&quot;2026-07-06&quot;:1.39},{&quot;2026-07-07&quot;:1.34},{&quot;2026-07-08&quot;:1.34},{&quot;2026-07-09&quot;:1.34},{&quot;2026-07-10&quot;:1.27},{&quot;2026-07-11&quot;:1.31},{&quot;2026-07-12&quot;:1.28},{&quot;2026-07-13&quot;:1.3},{&quot;2026-07-14&quot;:1.3},{&quot;2026-07-15&quot;:1.31},{&quot;2026-07-16&quot;:1.29},{&quot;2026-07-17&quot;:1.29},{&quot;2026-07-18&quot;:1.24},{&quot;2026-07-19&quot;:1.24},{&quot;2026-07-20&quot;:1.24},{&quot;2026-07-21&quot;:1.24},{&quot;2026-07-23&quot;:1.25},{&quot;2026-07-25&quot;:1.21},{&quot;2026-07-26&quot;:1.19},{&quot;2026-07-27&quot;:1.19},{&quot;2026-07-29&quot;:1.18},{&quot;2026-07-30&quot;:1.15},{&quot;2026-07-31&quot;:1.15},{&quot;2026-08-01&quot;:1.12},{&quot;2026-08-02&quot;:1.16},{&quot;2026-08-03&quot;:1.16},{&quot;2026-08-04&quot;:1.16},{&quot;2026-08-05&quot;:1.19},{&quot;2026-08-07&quot;:1.21},{&quot;2026-08-08&quot;:1.21},{&quot;2026-08-09&quot;:1.21},{&quot;2026-08-10&quot;:1.17},{&quot;2026-08-11&quot;:1.22},{&quot;2026-08-12&quot;:1.25},{&quot;2026-08-13&quot;:1.25},{&quot;2026-08-14&quot;:1.25},{&quot;2026-08-15&quot;:1.25},{&quot;2026-08-16&quot;:1.25},{&quot;2026-08-17&quot;:1.25},{&quot;2026-08-18&quot;:1.25},{&quot;2026-08-19&quot;:1.25},{&quot;2026-08-20&quot;:1.25},{&quot;2026-08-21&quot;:1.23},{&quot;2026-08-22&quot;:1.23},{&quot;2026-08-23&quot;:1.23},{&quot;2026-08-24&quot;:1.23},{&quot;2026-08-25&quot;:1.23},{&quot;2026-08-26&quot;:1.35},{&quot;2026-08-27&quot;:1.37},{&quot;2026-08-28&quot;:1.36},{&quot;2026-08-29&quot;:1.36},{&quot;2026-08-30&quot;:1.35},{&quot;2026-08-31&quot;:1.44},{&quot;2026-09-01&quot;:1.44},{&quot;2026-09-02&quot;:1.42},{&quot;2026-09-03&quot;:1.42},{&quot;2026-09-04&quot;:1.44},{&quot;2026-09-05&quot;:1.43},{&quot;2026-09-06&quot;:1.43},{&quot;2026-09-07&quot;:1.44},{&quot;2026-09-08&quot;:1.41},{&quot;2026-09-09&quot;:1.52},{&quot;2026-09-10&quot;:1.49},{&quot;2026-09-11&quot;:1.51}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:0.72},{&quot;2026-06-11&quot;:0.78},{&quot;2026-06-12&quot;:0.76},{&quot;2026-06-13&quot;:0.69},{&quot;2026-06-14&quot;:0.6},{&quot;2026-06-15&quot;:0.59},{&quot;2026-06-16&quot;:0.64},{&quot;2026-06-17&quot;:0.83},{&quot;2026-06-18&quot;:0.82},{&quot;2026-06-19&quot;:0.92},{&quot;2026-06-20&quot;:0.93},{&quot;2026-06-21&quot;:0.97},{&quot;2026-06-22&quot;:0.92},{&quot;2026-06-23&quot;:0.95},{&quot;2026-06-24&quot;:0.9},{&quot;2026-06-25&quot;:0.89},{&quot;2026-06-26&quot;:0.95},{&quot;2026-06-27&quot;:0.97},{&quot;2026-06-28&quot;:0.98},{&quot;2026-06-29&quot;:1.03},{&quot;2026-06-30&quot;:1.07},{&quot;2026-07-01&quot;:1.08},{&quot;2026-07-02&quot;:1.0},{&quot;2026-07-03&quot;:1.02},{&quot;2026-07-04&quot;:1.0},{&quot;2026-07-05&quot;:0.9},{&quot;2026-07-06&quot;:0.78},{&quot;2026-07-07&quot;:0.81},{&quot;2026-07-08&quot;:0.74},{&quot;2026-07-09&quot;:0.8},{&quot;2026-07-10&quot;:0.8},{&quot;2026-07-11&quot;:0.82},{&quot;2026-07-12&quot;:0.87},{&quot;2026-07-13&quot;:0.89},{&quot;2026-07-14&quot;:0.96},{&quot;2026-07-15&quot;:1.01},{&quot;2026-07-16&quot;:0.96},{&quot;2026-07-17&quot;:0.78},{&quot;2026-07-18&quot;:0.78},{&quot;2026-07-19&quot;:0.71},{&quot;2026-07-20&quot;:0.78},{&quot;2026-07-21&quot;:0.78},{&quot;2026-07-23&quot;:0.75},{&quot;2026-07-25&quot;:0.67},{&quot;2026-07-26&quot;:0.63},{&quot;2026-07-27&quot;:0.77},{&quot;2026-07-29&quot;:0.84},{&quot;2026-07-30&quot;:0.87},{&quot;2026-07-31&quot;:0.88},{&quot;2026-08-01&quot;:0.87},{&quot;2026-08-02&quot;:0.91},{&quot;2026-08-03&quot;:0.91},{&quot;2026-08-04&quot;:0.94},{&quot;2026-08-05&quot;:0.95},{&quot;2026-08-07&quot;:1.05},{&quot;2026-08-08&quot;:1.06},{&quot;2026-08-09&quot;:1.21},{&quot;2026-08-10&quot;:1.13},{&quot;2026-08-11&quot;:1.21},{&quot;2026-08-12&quot;:1.1},{&quot;2026-08-13&quot;:1.0},{&quot;2026-08-14&quot;:1.17},{&quot;2026-08-15&quot;:0.83},{&quot;2026-08-16&quot;:0.87},{&quot;2026-08-17&quot;:0.73},{&quot;2026-08-18&quot;:1.03},{&quot;2026-08-19&quot;:1.03},{&quot;2026-08-20&quot;:1.03},{&quot;2026-08-21&quot;:1.05},{&quot;2026-08-22&quot;:1.02},{&quot;2026-08-23&quot;:1.09},{&quot;2026-08-24&quot;:1.29},{&quot;2026-08-25&quot;:1.29},{&quot;2026-08-26&quot;:1.37},{&quot;2026-08-27&quot;:1.37},{&quot;2026-08-28&quot;:1.32},{&quot;2026-08-29&quot;:1.32},{&quot;2026-08-30&quot;:1.03},{&quot;2026-08-31&quot;:1.0},{&quot;2026-09-01&quot;:1.0},{&quot;2026-09-02&quot;:1.15},{&quot;2026-09-03&quot;:1.14},{&quot;2026-09-04&quot;:1.07},{&quot;2026-09-05&quot;:1.15},{&quot;2026-09-06&quot;:1.11},{&quot;2026-09-07&quot;:1.21},{&quot;2026-09-08&quot;:1.17},{&quot;2026-09-09&quot;:1.18},{&quot;2026-09-10&quot;:1.25},{&quot;2026-09-11&quot;:1.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="91097"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-inr ss-common ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Swamp" src="https://cards.scryfall.io/large/front/8/0/806d26a2-2f2a-4a77-b5bc-a6c97ba5db42.jpg?1783908049" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $1.17
              </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 Foil</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;2026-06-13&quot;:1.03},{&quot;2026-06-14&quot;:0.93},{&quot;2026-06-15&quot;:0.92},{&quot;2026-06-16&quot;:0.92},{&quot;2026-06-17&quot;:0.92},{&quot;2026-06-18&quot;:0.92},{&quot;2026-06-19&quot;:0.92},{&quot;2026-06-20&quot;:0.92},{&quot;2026-06-21&quot;:0.94},{&quot;2026-06-22&quot;:1.05},{&quot;2026-06-23&quot;:1.05},{&quot;2026-06-24&quot;:1.05},{&quot;2026-06-25&quot;:1.05},{&quot;2026-06-26&quot;:1.05},{&quot;2026-06-27&quot;:1.03},{&quot;2026-06-28&quot;:1.03},{&quot;2026-06-29&quot;:1.04},{&quot;2026-06-30&quot;:0.81},{&quot;2026-07-01&quot;:0.73},{&quot;2026-07-02&quot;:0.73},{&quot;2026-07-03&quot;:0.73},{&quot;2026-07-04&quot;:0.73},{&quot;2026-07-05&quot;:0.68},{&quot;2026-07-06&quot;:0.69},{&quot;2026-07-07&quot;:0.69},{&quot;2026-07-08&quot;:0.84},{&quot;2026-07-09&quot;:0.84},{&quot;2026-07-10&quot;:0.9},{&quot;2026-07-11&quot;:1.27},{&quot;2026-07-12&quot;:1.27},{&quot;2026-07-13&quot;:1.27},{&quot;2026-07-14&quot;:1.27},{&quot;2026-07-15&quot;:1.29},{&quot;2026-07-16&quot;:1.29},{&quot;2026-07-17&quot;:1.29},{&quot;2026-07-18&quot;:1.31},{&quot;2026-07-19&quot;:1.31},{&quot;2026-07-20&quot;:1.31},{&quot;2026-07-21&quot;:1.32},{&quot;2026-07-22&quot;:1.32},{&quot;2026-07-23&quot;:1.32},{&quot;2026-07-24&quot;:1.32},{&quot;2026-07-25&quot;:1.35},{&quot;2026-07-26&quot;:1.35},{&quot;2026-07-27&quot;:1.35},{&quot;2026-07-28&quot;:1.35},{&quot;2026-07-29&quot;:1.44},{&quot;2026-07-30&quot;:1.42},{&quot;2026-07-31&quot;:1.38},{&quot;2026-08-01&quot;:1.38},{&quot;2026-08-02&quot;:1.62},{&quot;2026-08-03&quot;:1.68},{&quot;2026-08-04&quot;:1.68},{&quot;2026-08-05&quot;:1.74},{&quot;2026-08-07&quot;:1.74},{&quot;2026-08-08&quot;:1.74},{&quot;2026-08-09&quot;:1.74},{&quot;2026-08-10&quot;:1.74},{&quot;2026-08-11&quot;:1.74},{&quot;2026-08-12&quot;:1.75},{&quot;2026-08-13&quot;:1.75},{&quot;2026-08-14&quot;:1.74},{&quot;2026-08-15&quot;:1.74},{&quot;2026-08-16&quot;:1.8},{&quot;2026-08-17&quot;:1.8},{&quot;2026-08-18&quot;:1.7},{&quot;2026-08-19&quot;:1.7},{&quot;2026-08-20&quot;:1.6},{&quot;2026-08-21&quot;:1.6},{&quot;2026-08-22&quot;:1.5},{&quot;2026-08-23&quot;:1.27},{&quot;2026-08-24&quot;:1.3},{&quot;2026-08-25&quot;:1.3},{&quot;2026-08-26&quot;:1.3},{&quot;2026-08-27&quot;:1.32},{&quot;2026-08-28&quot;:1.31},{&quot;2026-08-29&quot;:1.31},{&quot;2026-08-30&quot;:1.31},{&quot;2026-08-31&quot;:1.31},{&quot;2026-09-01&quot;:1.31},{&quot;2026-09-02&quot;:1.31},{&quot;2026-09-03&quot;:1.35},{&quot;2026-09-04&quot;:1.35},{&quot;2026-09-05&quot;:1.38},{&quot;2026-09-06&quot;:1.38},{&quot;2026-09-07&quot;:1.38},{&quot;2026-09-08&quot;:1.26},{&quot;2026-09-09&quot;:1.26},{&quot;2026-09-10&quot;:1.26},{&quot;2026-09-11&quot;:1.17}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.37},{&quot;2026-06-14&quot;:0.37},{&quot;2026-06-15&quot;:0.37},{&quot;2026-06-16&quot;:0.37},{&quot;2026-06-17&quot;:0.37},{&quot;2026-06-18&quot;:0.38},{&quot;2026-06-19&quot;:0.36},{&quot;2026-06-20&quot;:0.41},{&quot;2026-06-21&quot;:0.41},{&quot;2026-06-22&quot;:0.46},{&quot;2026-06-23&quot;:0.46},{&quot;2026-06-24&quot;:0.48},{&quot;2026-06-25&quot;:0.48},{&quot;2026-06-26&quot;:0.48},{&quot;2026-06-27&quot;:0.49},{&quot;2026-06-28&quot;:0.49},{&quot;2026-06-29&quot;:0.49},{&quot;2026-06-30&quot;:0.49},{&quot;2026-07-01&quot;:0.52},{&quot;2026-07-02&quot;:0.51},{&quot;2026-07-03&quot;:0.51},{&quot;2026-07-04&quot;:0.52},{&quot;2026-07-05&quot;:0.52},{&quot;2026-07-06&quot;:0.52},{&quot;2026-07-07&quot;:0.52},{&quot;2026-07-08&quot;:0.52},{&quot;2026-07-09&quot;:0.52},{&quot;2026-07-10&quot;:0.52},{&quot;2026-07-11&quot;:0.52},{&quot;2026-07-12&quot;:0.52},{&quot;2026-07-13&quot;:0.52},{&quot;2026-07-14&quot;:0.52},{&quot;2026-07-15&quot;:0.52},{&quot;2026-07-16&quot;:0.53},{&quot;2026-07-17&quot;:0.53},{&quot;2026-07-18&quot;:0.53},{&quot;2026-07-19&quot;:0.53},{&quot;2026-07-20&quot;:0.53},{&quot;2026-07-21&quot;:0.54},{&quot;2026-07-22&quot;:0.54},{&quot;2026-07-23&quot;:0.55},{&quot;2026-07-24&quot;:0.55},{&quot;2026-07-25&quot;:0.55},{&quot;2026-07-26&quot;:0.55},{&quot;2026-07-27&quot;:0.55},{&quot;2026-07-28&quot;:0.55},{&quot;2026-07-29&quot;:0.56},{&quot;2026-07-30&quot;:0.56},{&quot;2026-07-31&quot;:0.56},{&quot;2026-08-01&quot;:0.56},{&quot;2026-08-02&quot;:0.58},{&quot;2026-08-03&quot;:0.51},{&quot;2026-08-04&quot;:0.51},{&quot;2026-08-05&quot;:0.51},{&quot;2026-08-07&quot;:0.48},{&quot;2026-08-08&quot;:0.48},{&quot;2026-08-09&quot;:0.48},{&quot;2026-08-10&quot;:0.47},{&quot;2026-08-11&quot;:0.47},{&quot;2026-08-12&quot;:0.48},{&quot;2026-08-13&quot;:0.48},{&quot;2026-08-14&quot;:0.48},{&quot;2026-08-15&quot;:0.5},{&quot;2026-08-16&quot;:0.51},{&quot;2026-08-17&quot;:0.52},{&quot;2026-08-18&quot;:0.52},{&quot;2026-08-19&quot;:0.52},{&quot;2026-08-20&quot;:0.52},{&quot;2026-08-21&quot;:0.52},{&quot;2026-08-22&quot;:0.51},{&quot;2026-08-23&quot;:0.5},{&quot;2026-08-24&quot;:0.5},{&quot;2026-08-25&quot;:0.5},{&quot;2026-08-26&quot;:0.5},{&quot;2026-08-27&quot;:0.48},{&quot;2026-08-28&quot;:0.48},{&quot;2026-08-29&quot;:0.48},{&quot;2026-08-30&quot;:0.48},{&quot;2026-08-31&quot;:0.48},{&quot;2026-09-01&quot;:0.48},{&quot;2026-09-02&quot;:0.48},{&quot;2026-09-03&quot;:0.48},{&quot;2026-09-04&quot;:0.48},{&quot;2026-09-05&quot;:0.48},{&quot;2026-09-06&quot;:0.48},{&quot;2026-09-07&quot;:0.48},{&quot;2026-09-08&quot;:0.48},{&quot;2026-09-09&quot;:0.48},{&quot;2026-09-10&quot;:0.48},{&quot;2026-09-11&quot;:0.47}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $1.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="Mountain" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/8/787da7ce-527d-4abf-9e92-5de9db2250cd.jpg?1783908050" />

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Mountain" src="https://cards.scryfall.io/large/front/7/8/787da7ce-527d-4abf-9e92-5de9db2250cd.jpg?1783908050" />
    </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">
            2
          </span>
        </div>

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:1.28},{&quot;2026-06-14&quot;:1.39},{&quot;2026-06-15&quot;:1.39},{&quot;2026-06-16&quot;:1.39},{&quot;2026-06-17&quot;:1.48},{&quot;2026-06-18&quot;:1.47},{&quot;2026-06-19&quot;:1.47},{&quot;2026-06-20&quot;:1.47},{&quot;2026-06-21&quot;:1.52},{&quot;2026-06-22&quot;:1.52},{&quot;2026-06-23&quot;:1.54},{&quot;2026-06-24&quot;:1.54},{&quot;2026-06-25&quot;:1.52},{&quot;2026-06-26&quot;:1.54},{&quot;2026-06-27&quot;:1.5},{&quot;2026-06-28&quot;:1.5},{&quot;2026-06-29&quot;:1.5},{&quot;2026-06-30&quot;:1.5},{&quot;2026-07-01&quot;:1.5},{&quot;2026-07-02&quot;:1.5},{&quot;2026-07-03&quot;:1.5},{&quot;2026-07-04&quot;:1.5},{&quot;2026-07-05&quot;:1.52},{&quot;2026-07-06&quot;:1.52},{&quot;2026-07-07&quot;:1.55},{&quot;2026-07-08&quot;:1.63},{&quot;2026-07-09&quot;:1.63},{&quot;2026-07-10&quot;:1.63},{&quot;2026-07-11&quot;:1.53},{&quot;2026-07-12&quot;:1.53},{&quot;2026-07-13&quot;:1.51},{&quot;2026-07-14&quot;:1.53},{&quot;2026-07-15&quot;:1.5},{&quot;2026-07-16&quot;:1.48},{&quot;2026-07-17&quot;:1.48},{&quot;2026-07-18&quot;:1.48},{&quot;2026-07-19&quot;:1.34},{&quot;2026-07-20&quot;:1.27},{&quot;2026-07-21&quot;:1.27},{&quot;2026-07-22&quot;:1.23},{&quot;2026-07-23&quot;:1.21},{&quot;2026-07-24&quot;:1.21},{&quot;2026-07-25&quot;:1.21},{&quot;2026-07-26&quot;:1.21},{&quot;2026-07-27&quot;:1.14},{&quot;2026-07-28&quot;:1.12},{&quot;2026-07-29&quot;:1.24},{&quot;2026-07-30&quot;:1.24},{&quot;2026-07-31&quot;:1.2},{&quot;2026-08-01&quot;:1.2},{&quot;2026-08-02&quot;:1.22},{&quot;2026-08-03&quot;:1.21},{&quot;2026-08-04&quot;:1.21},{&quot;2026-08-05&quot;:1.22},{&quot;2026-08-07&quot;:1.16},{&quot;2026-08-08&quot;:1.13},{&quot;2026-08-09&quot;:1.08},{&quot;2026-08-10&quot;:1.07},{&quot;2026-08-11&quot;:1.09},{&quot;2026-08-12&quot;:1.11},{&quot;2026-08-13&quot;:1.11},{&quot;2026-08-14&quot;:1.19},{&quot;2026-08-15&quot;:1.19},{&quot;2026-08-16&quot;:1.17},{&quot;2026-08-17&quot;:1.17},{&quot;2026-08-18&quot;:1.19},{&quot;2026-08-19&quot;:1.23},{&quot;2026-08-20&quot;:1.23},{&quot;2026-08-21&quot;:1.22},{&quot;2026-08-22&quot;:1.22},{&quot;2026-08-23&quot;:1.2},{&quot;2026-08-24&quot;:1.2},{&quot;2026-08-25&quot;:1.17},{&quot;2026-08-26&quot;:1.14},{&quot;2026-08-27&quot;:1.13},{&quot;2026-08-28&quot;:1.13},{&quot;2026-08-29&quot;:1.13},{&quot;2026-08-30&quot;:1.13},{&quot;2026-08-31&quot;:1.13},{&quot;2026-09-01&quot;:1.13},{&quot;2026-09-02&quot;:1.13},{&quot;2026-09-03&quot;:1.07},{&quot;2026-09-04&quot;:1.07},{&quot;2026-09-05&quot;:1.07},{&quot;2026-09-06&quot;:1.16},{&quot;2026-09-07&quot;:1.16},{&quot;2026-09-08&quot;:1.1},{&quot;2026-09-09&quot;:1.1},{&quot;2026-09-10&quot;:1.06},{&quot;2026-09-11&quot;:1.06}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.43},{&quot;2026-06-14&quot;:1.43},{&quot;2026-06-15&quot;:1.43},{&quot;2026-06-16&quot;:1.43},{&quot;2026-06-17&quot;:1.43},{&quot;2026-06-18&quot;:1.43},{&quot;2026-06-19&quot;:1.43},{&quot;2026-06-20&quot;:1.43},{&quot;2026-06-21&quot;:1.49},{&quot;2026-06-22&quot;:1.57},{&quot;2026-06-23&quot;:1.57},{&quot;2026-06-24&quot;:1.67},{&quot;2026-06-25&quot;:1.67},{&quot;2026-06-26&quot;:1.32},{&quot;2026-06-27&quot;:1.15},{&quot;2026-06-28&quot;:1.15},{&quot;2026-06-29&quot;:1.15},{&quot;2026-06-30&quot;:1.15},{&quot;2026-07-01&quot;:1.12},{&quot;2026-07-02&quot;:1.15},{&quot;2026-07-03&quot;:1.15},{&quot;2026-07-04&quot;:1.12},{&quot;2026-07-05&quot;:1.14},{&quot;2026-07-06&quot;:1.21},{&quot;2026-07-07&quot;:1.23},{&quot;2026-07-08&quot;:1.23},{&quot;2026-07-09&quot;:1.23},{&quot;2026-07-10&quot;:1.23},{&quot;2026-07-11&quot;:1.23},{&quot;2026-07-12&quot;:1.23},{&quot;2026-07-13&quot;:1.23},{&quot;2026-07-14&quot;:1.17},{&quot;2026-07-15&quot;:1.15},{&quot;2026-07-16&quot;:1.22},{&quot;2026-07-17&quot;:1.22},{&quot;2026-07-18&quot;:1.22},{&quot;2026-07-19&quot;:1.22},{&quot;2026-07-20&quot;:1.22},{&quot;2026-07-21&quot;:1.24},{&quot;2026-07-22&quot;:1.24},{&quot;2026-07-23&quot;:1.23},{&quot;2026-07-24&quot;:1.23},{&quot;2026-07-25&quot;:1.23},{&quot;2026-07-26&quot;:1.23},{&quot;2026-07-27&quot;:1.23},{&quot;2026-07-28&quot;:1.21},{&quot;2026-07-29&quot;:1.22},{&quot;2026-07-30&quot;:1.22},{&quot;2026-07-31&quot;:1.22},{&quot;2026-08-01&quot;:1.22},{&quot;2026-08-02&quot;:1.23},{&quot;2026-08-03&quot;:1.23},{&quot;2026-08-04&quot;:1.23},{&quot;2026-08-05&quot;:1.25},{&quot;2026-08-07&quot;:1.25},{&quot;2026-08-08&quot;:1.25},{&quot;2026-08-09&quot;:1.25},{&quot;2026-08-10&quot;:1.25},{&quot;2026-08-11&quot;:1.21},{&quot;2026-08-12&quot;:1.21},{&quot;2026-08-13&quot;:1.21},{&quot;2026-08-14&quot;:1.21},{&quot;2026-08-15&quot;:1.18},{&quot;2026-08-16&quot;:1.18},{&quot;2026-08-17&quot;:1.18},{&quot;2026-08-18&quot;:1.17},{&quot;2026-08-19&quot;:1.17},{&quot;2026-08-20&quot;:1.14},{&quot;2026-08-21&quot;:1.14},{&quot;2026-08-22&quot;:1.14},{&quot;2026-08-23&quot;:1.11},{&quot;2026-08-24&quot;:1.11},{&quot;2026-08-25&quot;:1.11},{&quot;2026-08-26&quot;:1.11},{&quot;2026-08-27&quot;:1.11},{&quot;2026-08-28&quot;:1.09},{&quot;2026-08-29&quot;:1.09},{&quot;2026-08-30&quot;:1.09},{&quot;2026-08-31&quot;:1.09},{&quot;2026-09-01&quot;:1.09},{&quot;2026-09-02&quot;:0.94},{&quot;2026-09-03&quot;:0.96},{&quot;2026-09-04&quot;:0.96},{&quot;2026-09-05&quot;:0.91},{&quot;2026-09-06&quot;:0.94},{&quot;2026-09-07&quot;:0.94},{&quot;2026-09-08&quot;:0.9},{&quot;2026-09-09&quot;:0.9},{&quot;2026-09-10&quot;:0.9},{&quot;2026-09-11&quot;:0.9}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Victimize" src="https://cards.scryfall.io/large/front/8/5/855e9253-2219-4c43-8131-47633c564ee2.jpg?1783928824" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="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">
            1 owned
          </div>

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

          <span class="text-sm font-medium text-nine-white">
            $0.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">
            1
          </span>
        </div>

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Chainer, Nightmare Adept" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/8/d8089e7f-7619-43fe-8e0b-31ce5d988a1b.jpg?1783926779" />

        <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">
            Chainer, Nightmare Adept
        </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 Minion</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Chainer, Nightmare Adept" src="https://cards.scryfall.io/large/front/d/8/d8089e7f-7619-43fe-8e0b-31ce5d988a1b.jpg?1783926779" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="94617"
  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">
            Dion, Bahamut&#39;s Dominant 
        </span>


      </div>

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Dion, Bahamut&#39;s Dominant // Bahamut, Warden of Light" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/c/8c0f9306-2058-476d-a711-bd37a6e15e42.jpg?1783906656" />

        <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">
            Dion, Bahamut&#39;s Dominant 
        </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 Noble 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"
    >
        <div data-controller="card-flip" class="flex flex-col items-center">
          <div
            data-action="click->card-flip#flip"
            class="flip-container cursor-pointer w-full max-w-xs mx-auto"
          >
            <div data-card-flip-target="card" class="flip-card">
              <div class="flip-card-front">
                <img class="w-full h-auto rounded-2xl" alt="Dion, Bahamut&#39;s Dominant // Bahamut, Warden of Light" src="https://cards.scryfall.io/large/front/8/c/8c0f9306-2058-476d-a711-bd37a6e15e42.jpg?1783906656" />
              </div>

              <div class="flip-card-back">
                <img class="w-full h-auto rounded-2xl" alt="Dion, Bahamut&#39;s Dominant // Bahamut, Warden of Light" src="https://cards.scryfall.io/large/back/8/c/8c0f9306-2058-476d-a711-bd37a6e15e42.jpg?1783906656" />
              </div>
            </div>
          </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-12&quot;:1.13},{&quot;2026-06-13&quot;:1.14},{&quot;2026-06-14&quot;:1.16},{&quot;2026-06-15&quot;:1.16},{&quot;2026-06-16&quot;:1.14},{&quot;2026-06-17&quot;:1.14},{&quot;2026-06-18&quot;:1.14},{&quot;2026-06-19&quot;:1.32},{&quot;2026-06-20&quot;:1.32},{&quot;2026-06-21&quot;:1.32},{&quot;2026-06-22&quot;:1.29},{&quot;2026-06-23&quot;:1.29},{&quot;2026-06-24&quot;:1.26},{&quot;2026-06-25&quot;:1.26},{&quot;2026-06-26&quot;:1.37},{&quot;2026-06-27&quot;:1.37},{&quot;2026-06-28&quot;:1.38},{&quot;2026-06-29&quot;:1.38},{&quot;2026-06-30&quot;:1.38},{&quot;2026-07-01&quot;:1.38},{&quot;2026-07-02&quot;:1.38},{&quot;2026-07-03&quot;:1.38},{&quot;2026-07-04&quot;:1.39},{&quot;2026-07-05&quot;:1.39},{&quot;2026-07-06&quot;:1.41},{&quot;2026-07-07&quot;:1.41},{&quot;2026-07-08&quot;:1.43},{&quot;2026-07-09&quot;:1.42},{&quot;2026-07-10&quot;:1.42},{&quot;2026-07-11&quot;:1.42},{&quot;2026-07-12&quot;:1.44},{&quot;2026-07-13&quot;:1.44},{&quot;2026-07-14&quot;:1.24},{&quot;2026-07-15&quot;:1.24},{&quot;2026-07-16&quot;:1.24},{&quot;2026-07-17&quot;:1.22},{&quot;2026-07-18&quot;:1.22},{&quot;2026-07-19&quot;:1.2},{&quot;2026-07-20&quot;:1.16},{&quot;2026-07-21&quot;:1.16},{&quot;2026-07-23&quot;:1.12},{&quot;2026-07-24&quot;:1.12},{&quot;2026-07-25&quot;:1.09},{&quot;2026-07-26&quot;:1.09},{&quot;2026-07-27&quot;:1.09},{&quot;2026-07-28&quot;:0.97},{&quot;2026-07-29&quot;:0.97},{&quot;2026-07-30&quot;:1.02},{&quot;2026-07-31&quot;:0.98},{&quot;2026-08-01&quot;:0.98},{&quot;2026-08-02&quot;:1.01},{&quot;2026-08-03&quot;:1.01},{&quot;2026-08-04&quot;:1.02},{&quot;2026-08-05&quot;:1.01},{&quot;2026-08-07&quot;:0.99},{&quot;2026-08-08&quot;:0.98},{&quot;2026-08-09&quot;:1.0},{&quot;2026-08-10&quot;:1.0},{&quot;2026-08-11&quot;:1.0},{&quot;2026-08-12&quot;:1.12},{&quot;2026-08-13&quot;:1.12},{&quot;2026-08-14&quot;:1.17},{&quot;2026-08-15&quot;:1.27},{&quot;2026-08-16&quot;:1.26},{&quot;2026-08-17&quot;:1.23},{&quot;2026-08-18&quot;:1.25},{&quot;2026-08-19&quot;:1.25},{&quot;2026-08-20&quot;:1.25},{&quot;2026-08-21&quot;:1.22},{&quot;2026-08-22&quot;:1.22},{&quot;2026-08-23&quot;:1.15},{&quot;2026-08-24&quot;:1.15},{&quot;2026-08-25&quot;:1.15},{&quot;2026-08-26&quot;:1.09},{&quot;2026-08-27&quot;:1.09},{&quot;2026-08-28&quot;:1.09},{&quot;2026-08-29&quot;:1.09},{&quot;2026-08-30&quot;:1.07},{&quot;2026-08-31&quot;:1.07},{&quot;2026-09-01&quot;:1.09},{&quot;2026-09-02&quot;:1.14},{&quot;2026-09-03&quot;:1.15},{&quot;2026-09-04&quot;:1.23},{&quot;2026-09-05&quot;:1.23},{&quot;2026-09-06&quot;:1.11},{&quot;2026-09-07&quot;:0.99},{&quot;2026-09-08&quot;:0.99},{&quot;2026-09-09&quot;:1.04},{&quot;2026-09-10&quot;:1.04},{&quot;2026-09-11&quot;:0.95}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:0.9},{&quot;2026-06-13&quot;:0.85},{&quot;2026-06-14&quot;:0.83},{&quot;2026-06-15&quot;:0.79},{&quot;2026-06-16&quot;:0.73},{&quot;2026-06-17&quot;:0.75},{&quot;2026-06-18&quot;:0.92},{&quot;2026-06-19&quot;:0.87},{&quot;2026-06-20&quot;:0.9},{&quot;2026-06-21&quot;:0.94},{&quot;2026-06-22&quot;:0.86},{&quot;2026-06-23&quot;:1.02},{&quot;2026-06-24&quot;:1.02},{&quot;2026-06-25&quot;:1.01},{&quot;2026-06-26&quot;:0.94},{&quot;2026-06-27&quot;:0.94},{&quot;2026-06-28&quot;:0.82},{&quot;2026-06-29&quot;:0.81},{&quot;2026-06-30&quot;:0.77},{&quot;2026-07-01&quot;:0.75},{&quot;2026-07-02&quot;:0.79},{&quot;2026-07-03&quot;:0.8},{&quot;2026-07-04&quot;:0.81},{&quot;2026-07-05&quot;:0.84},{&quot;2026-07-06&quot;:0.83},{&quot;2026-07-07&quot;:0.8},{&quot;2026-07-08&quot;:0.86},{&quot;2026-07-09&quot;:0.85},{&quot;2026-07-10&quot;:0.75},{&quot;2026-07-11&quot;:0.72},{&quot;2026-07-12&quot;:0.75},{&quot;2026-07-13&quot;:0.75},{&quot;2026-07-14&quot;:0.8},{&quot;2026-07-15&quot;:0.82},{&quot;2026-07-16&quot;:0.76},{&quot;2026-07-17&quot;:0.76},{&quot;2026-07-18&quot;:0.77},{&quot;2026-07-19&quot;:0.76},{&quot;2026-07-20&quot;:0.74},{&quot;2026-07-21&quot;:0.79},{&quot;2026-07-23&quot;:0.74},{&quot;2026-07-24&quot;:0.74},{&quot;2026-07-25&quot;:0.8},{&quot;2026-07-26&quot;:0.79},{&quot;2026-07-27&quot;:0.78},{&quot;2026-07-28&quot;:0.75},{&quot;2026-07-29&quot;:0.79},{&quot;2026-07-30&quot;:0.79},{&quot;2026-07-31&quot;:0.78},{&quot;2026-08-01&quot;:0.8},{&quot;2026-08-02&quot;:0.78},{&quot;2026-08-03&quot;:0.82},{&quot;2026-08-04&quot;:0.82},{&quot;2026-08-05&quot;:0.82},{&quot;2026-08-07&quot;:0.81},{&quot;2026-08-08&quot;:0.83},{&quot;2026-08-09&quot;:0.87},{&quot;2026-08-10&quot;:0.86},{&quot;2026-08-11&quot;:0.94},{&quot;2026-08-12&quot;:0.96},{&quot;2026-08-13&quot;:0.93},{&quot;2026-08-14&quot;:0.94},{&quot;2026-08-15&quot;:0.85},{&quot;2026-08-16&quot;:0.88},{&quot;2026-08-17&quot;:0.99},{&quot;2026-08-18&quot;:1.02},{&quot;2026-08-19&quot;:1.02},{&quot;2026-08-20&quot;:1.02},{&quot;2026-08-21&quot;:0.94},{&quot;2026-08-22&quot;:0.92},{&quot;2026-08-23&quot;:0.93},{&quot;2026-08-24&quot;:0.83},{&quot;2026-08-25&quot;:0.8},{&quot;2026-08-26&quot;:0.68},{&quot;2026-08-27&quot;:0.69},{&quot;2026-08-28&quot;:0.74},{&quot;2026-08-29&quot;:0.74},{&quot;2026-08-30&quot;:0.71},{&quot;2026-08-31&quot;:0.76},{&quot;2026-09-01&quot;:0.83},{&quot;2026-09-02&quot;:0.93},{&quot;2026-09-03&quot;:0.97},{&quot;2026-09-04&quot;:0.98},{&quot;2026-09-05&quot;:0.95},{&quot;2026-09-06&quot;:0.9},{&quot;2026-09-07&quot;:0.88},{&quot;2026-09-08&quot;:0.88},{&quot;2026-09-09&quot;:0.8},{&quot;2026-09-10&quot;:0.82},{&quot;2026-09-11&quot;:0.78}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="18196"
  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-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">
            Dread Return
        </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">
              ↑
              14%
            </span>

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

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

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

        <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">
            Dread Return
        </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-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Dread Return" src="https://cards.scryfall.io/large/front/4/e/4eb7707b-e779-4429-b741-5d3b842a50cb.jpg?1783918480" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:0.58},{&quot;2026-06-14&quot;:0.58},{&quot;2026-06-15&quot;:0.58},{&quot;2026-06-16&quot;:0.58},{&quot;2026-06-17&quot;:0.57},{&quot;2026-06-18&quot;:0.57},{&quot;2026-06-19&quot;:0.56},{&quot;2026-06-20&quot;:0.56},{&quot;2026-06-21&quot;:0.56},{&quot;2026-06-22&quot;:0.56},{&quot;2026-06-23&quot;:0.56},{&quot;2026-06-24&quot;:0.56},{&quot;2026-06-25&quot;:0.56},{&quot;2026-06-26&quot;:0.56},{&quot;2026-06-27&quot;:0.56},{&quot;2026-06-28&quot;:0.56},{&quot;2026-06-29&quot;:0.56},{&quot;2026-06-30&quot;:0.56},{&quot;2026-07-01&quot;:0.56},{&quot;2026-07-02&quot;:0.56},{&quot;2026-07-03&quot;:0.56},{&quot;2026-07-04&quot;:0.56},{&quot;2026-07-05&quot;:0.56},{&quot;2026-07-06&quot;:0.56},{&quot;2026-07-07&quot;:0.56},{&quot;2026-07-08&quot;:0.56},{&quot;2026-07-09&quot;:0.56},{&quot;2026-07-10&quot;:0.56},{&quot;2026-07-11&quot;:0.55},{&quot;2026-07-12&quot;:0.55},{&quot;2026-07-13&quot;:0.56},{&quot;2026-07-14&quot;:0.56},{&quot;2026-07-15&quot;:0.56},{&quot;2026-07-16&quot;:0.56},{&quot;2026-07-17&quot;:0.57},{&quot;2026-07-18&quot;:0.57},{&quot;2026-07-19&quot;:0.58},{&quot;2026-07-20&quot;:0.58},{&quot;2026-07-21&quot;:0.58},{&quot;2026-07-22&quot;:0.58},{&quot;2026-07-23&quot;:0.58},{&quot;2026-07-24&quot;:0.58},{&quot;2026-07-25&quot;:0.58},{&quot;2026-07-26&quot;:0.58},{&quot;2026-07-27&quot;:0.58},{&quot;2026-07-28&quot;:0.58},{&quot;2026-07-29&quot;:0.57},{&quot;2026-07-30&quot;:0.57},{&quot;2026-07-31&quot;:0.57},{&quot;2026-08-01&quot;:0.58},{&quot;2026-08-02&quot;:0.58},{&quot;2026-08-03&quot;:0.58},{&quot;2026-08-04&quot;:0.61},{&quot;2026-08-05&quot;:0.63},{&quot;2026-08-07&quot;:0.64},{&quot;2026-08-08&quot;:0.64},{&quot;2026-08-09&quot;:0.64},{&quot;2026-08-10&quot;:0.65},{&quot;2026-08-11&quot;:0.65},{&quot;2026-08-12&quot;:0.67},{&quot;2026-08-13&quot;:0.67},{&quot;2026-08-14&quot;:0.67},{&quot;2026-08-15&quot;:0.65},{&quot;2026-08-16&quot;:0.66},{&quot;2026-08-17&quot;:0.69},{&quot;2026-08-18&quot;:0.69},{&quot;2026-08-19&quot;:0.67},{&quot;2026-08-20&quot;:0.67},{&quot;2026-08-21&quot;:0.67},{&quot;2026-08-22&quot;:0.68},{&quot;2026-08-23&quot;:0.68},{&quot;2026-08-24&quot;:0.68},{&quot;2026-08-25&quot;:0.68},{&quot;2026-08-26&quot;:0.68},{&quot;2026-08-27&quot;:0.7},{&quot;2026-08-28&quot;:0.7},{&quot;2026-08-29&quot;:0.7},{&quot;2026-08-30&quot;:0.69},{&quot;2026-08-31&quot;:0.68},{&quot;2026-09-01&quot;:0.67},{&quot;2026-09-02&quot;:0.67},{&quot;2026-09-03&quot;:0.66},{&quot;2026-09-04&quot;:0.65},{&quot;2026-09-05&quot;:0.64},{&quot;2026-09-06&quot;:0.65},{&quot;2026-09-07&quot;:0.67},{&quot;2026-09-08&quot;:0.67},{&quot;2026-09-09&quot;:0.67},{&quot;2026-09-10&quot;:0.67},{&quot;2026-09-11&quot;:0.67}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.55},{&quot;2026-06-14&quot;:0.56},{&quot;2026-06-15&quot;:0.57},{&quot;2026-06-16&quot;:0.56},{&quot;2026-06-17&quot;:0.57},{&quot;2026-06-18&quot;:0.57},{&quot;2026-06-19&quot;:0.57},{&quot;2026-06-20&quot;:0.57},{&quot;2026-06-21&quot;:0.57},{&quot;2026-06-22&quot;:0.56},{&quot;2026-06-23&quot;:0.55},{&quot;2026-06-24&quot;:0.53},{&quot;2026-06-25&quot;:0.52},{&quot;2026-06-26&quot;:0.49},{&quot;2026-06-27&quot;:0.51},{&quot;2026-06-28&quot;:0.51},{&quot;2026-06-29&quot;:0.54},{&quot;2026-06-30&quot;:0.54},{&quot;2026-07-01&quot;:0.55},{&quot;2026-07-02&quot;:0.55},{&quot;2026-07-03&quot;:0.56},{&quot;2026-07-04&quot;:0.55},{&quot;2026-07-05&quot;:0.55},{&quot;2026-07-06&quot;:0.55},{&quot;2026-07-07&quot;:0.56},{&quot;2026-07-08&quot;:0.56},{&quot;2026-07-09&quot;:0.56},{&quot;2026-07-10&quot;:0.57},{&quot;2026-07-11&quot;:0.57},{&quot;2026-07-12&quot;:0.58},{&quot;2026-07-13&quot;:0.59},{&quot;2026-07-14&quot;:0.59},{&quot;2026-07-15&quot;:0.6},{&quot;2026-07-16&quot;:0.61},{&quot;2026-07-17&quot;:0.61},{&quot;2026-07-18&quot;:0.61},{&quot;2026-07-19&quot;:0.62},{&quot;2026-07-20&quot;:0.63},{&quot;2026-07-21&quot;:0.63},{&quot;2026-07-22&quot;:0.63},{&quot;2026-07-23&quot;:0.61},{&quot;2026-07-24&quot;:0.6},{&quot;2026-07-25&quot;:0.59},{&quot;2026-07-26&quot;:0.59},{&quot;2026-07-27&quot;:0.57},{&quot;2026-07-28&quot;:0.56},{&quot;2026-07-29&quot;:0.57},{&quot;2026-07-30&quot;:0.56},{&quot;2026-07-31&quot;:0.6},{&quot;2026-08-01&quot;:0.6},{&quot;2026-08-02&quot;:0.61},{&quot;2026-08-03&quot;:0.64},{&quot;2026-08-04&quot;:0.64},{&quot;2026-08-05&quot;:0.64},{&quot;2026-08-07&quot;:0.66},{&quot;2026-08-08&quot;:0.66},{&quot;2026-08-09&quot;:0.65},{&quot;2026-08-10&quot;:0.65},{&quot;2026-08-11&quot;:0.63},{&quot;2026-08-12&quot;:0.62},{&quot;2026-08-13&quot;:0.62},{&quot;2026-08-14&quot;:0.58},{&quot;2026-08-15&quot;:0.58},{&quot;2026-08-16&quot;:0.6},{&quot;2026-08-17&quot;:0.61},{&quot;2026-08-18&quot;:0.6},{&quot;2026-08-19&quot;:0.6},{&quot;2026-08-20&quot;:0.59},{&quot;2026-08-21&quot;:0.6},{&quot;2026-08-22&quot;:0.57},{&quot;2026-08-23&quot;:0.58},{&quot;2026-08-24&quot;:0.59},{&quot;2026-08-25&quot;:0.6},{&quot;2026-08-26&quot;:0.6},{&quot;2026-08-27&quot;:0.55},{&quot;2026-08-28&quot;:0.56},{&quot;2026-08-29&quot;:0.56},{&quot;2026-08-30&quot;:0.53},{&quot;2026-08-31&quot;:0.54},{&quot;2026-09-01&quot;:0.54},{&quot;2026-09-02&quot;:0.6},{&quot;2026-09-03&quot;:0.62},{&quot;2026-09-04&quot;:0.62},{&quot;2026-09-05&quot;:0.63},{&quot;2026-09-06&quot;:0.63},{&quot;2026-09-07&quot;:0.65},{&quot;2026-09-08&quot;:0.7},{&quot;2026-09-09&quot;:0.71},{&quot;2026-09-10&quot;:0.7},{&quot;2026-09-11&quot;:0.72}]}"
        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="91093"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-inr ss-common ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Plains" src="https://cards.scryfall.io/large/front/9/5/95347dba-09e9-47a3-a068-db78ba39714e.jpg?1783908052" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Faithless Looting" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/5/2/52e47757-0aa9-48b0-8b43-e2483d7eed67.jpg?1783908121" />

        <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">
            Faithless Looting
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Faithless Looting" src="https://cards.scryfall.io/large/front/5/2/52e47757-0aa9-48b0-8b43-e2483d7eed67.jpg?1783908121" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $0.66
              </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">$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;:0.49},{&quot;2026-06-14&quot;:0.49},{&quot;2026-06-15&quot;:0.49},{&quot;2026-06-16&quot;:0.49},{&quot;2026-06-17&quot;:0.49},{&quot;2026-06-18&quot;:0.49},{&quot;2026-06-19&quot;:0.5},{&quot;2026-06-20&quot;:0.5},{&quot;2026-06-21&quot;:0.5},{&quot;2026-06-22&quot;:0.51},{&quot;2026-06-23&quot;:0.5},{&quot;2026-06-24&quot;:0.5},{&quot;2026-06-25&quot;:0.51},{&quot;2026-06-26&quot;:0.51},{&quot;2026-06-27&quot;:0.51},{&quot;2026-06-28&quot;:0.51},{&quot;2026-06-29&quot;:0.53},{&quot;2026-06-30&quot;:0.57},{&quot;2026-07-01&quot;:0.59},{&quot;2026-07-02&quot;:0.59},{&quot;2026-07-03&quot;:0.59},{&quot;2026-07-04&quot;:0.59},{&quot;2026-07-05&quot;:0.57},{&quot;2026-07-06&quot;:0.57},{&quot;2026-07-07&quot;:0.55},{&quot;2026-07-08&quot;:0.55},{&quot;2026-07-09&quot;:0.55},{&quot;2026-07-10&quot;:0.55},{&quot;2026-07-11&quot;:0.55},{&quot;2026-07-12&quot;:0.55},{&quot;2026-07-13&quot;:0.55},{&quot;2026-07-14&quot;:0.54},{&quot;2026-07-15&quot;:0.54},{&quot;2026-07-16&quot;:0.54},{&quot;2026-07-17&quot;:0.54},{&quot;2026-07-18&quot;:0.54},{&quot;2026-07-19&quot;:0.54},{&quot;2026-07-20&quot;:0.53},{&quot;2026-07-21&quot;:0.57},{&quot;2026-07-22&quot;:0.57},{&quot;2026-07-23&quot;:0.61},{&quot;2026-07-24&quot;:0.61},{&quot;2026-07-25&quot;:0.61},{&quot;2026-07-26&quot;:0.6},{&quot;2026-07-27&quot;:0.59},{&quot;2026-07-28&quot;:0.59},{&quot;2026-07-29&quot;:0.59},{&quot;2026-07-30&quot;:0.59},{&quot;2026-07-31&quot;:0.61},{&quot;2026-08-01&quot;:0.61},{&quot;2026-08-02&quot;:0.61},{&quot;2026-08-03&quot;:0.61},{&quot;2026-08-04&quot;:0.62},{&quot;2026-08-05&quot;:0.62},{&quot;2026-08-07&quot;:0.66},{&quot;2026-08-08&quot;:0.72},{&quot;2026-08-09&quot;:0.72},{&quot;2026-08-10&quot;:0.72},{&quot;2026-08-11&quot;:0.72},{&quot;2026-08-12&quot;:0.73},{&quot;2026-08-13&quot;:0.81},{&quot;2026-08-14&quot;:0.81},{&quot;2026-08-15&quot;:0.81},{&quot;2026-08-16&quot;:0.81},{&quot;2026-08-17&quot;:0.79},{&quot;2026-08-18&quot;:0.8},{&quot;2026-08-19&quot;:0.8},{&quot;2026-08-20&quot;:0.8},{&quot;2026-08-21&quot;:0.79},{&quot;2026-08-22&quot;:0.79},{&quot;2026-08-23&quot;:0.78},{&quot;2026-08-24&quot;:0.73},{&quot;2026-08-25&quot;:0.73},{&quot;2026-08-26&quot;:0.76},{&quot;2026-08-27&quot;:0.7},{&quot;2026-08-28&quot;:0.7},{&quot;2026-08-29&quot;:0.7},{&quot;2026-08-30&quot;:0.7},{&quot;2026-08-31&quot;:0.7},{&quot;2026-09-01&quot;:0.67},{&quot;2026-09-02&quot;:0.68},{&quot;2026-09-03&quot;:0.63},{&quot;2026-09-04&quot;:0.63},{&quot;2026-09-05&quot;:0.63},{&quot;2026-09-06&quot;:0.63},{&quot;2026-09-07&quot;:0.64},{&quot;2026-09-08&quot;:0.64},{&quot;2026-09-09&quot;:0.64},{&quot;2026-09-10&quot;:0.65},{&quot;2026-09-11&quot;:0.66}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.52},{&quot;2026-06-14&quot;:0.52},{&quot;2026-06-15&quot;:0.52},{&quot;2026-06-16&quot;:0.52},{&quot;2026-06-17&quot;:0.52},{&quot;2026-06-18&quot;:0.52},{&quot;2026-06-19&quot;:0.51},{&quot;2026-06-20&quot;:0.51},{&quot;2026-06-21&quot;:0.51},{&quot;2026-06-22&quot;:0.52},{&quot;2026-06-23&quot;:0.51},{&quot;2026-06-24&quot;:0.5},{&quot;2026-06-25&quot;:0.48},{&quot;2026-06-26&quot;:0.47},{&quot;2026-06-27&quot;:0.47},{&quot;2026-06-28&quot;:0.46},{&quot;2026-06-29&quot;:0.45},{&quot;2026-06-30&quot;:0.45},{&quot;2026-07-01&quot;:0.44},{&quot;2026-07-02&quot;:0.44},{&quot;2026-07-03&quot;:0.45},{&quot;2026-07-04&quot;:0.45},{&quot;2026-07-05&quot;:0.44},{&quot;2026-07-06&quot;:0.45},{&quot;2026-07-07&quot;:0.46},{&quot;2026-07-08&quot;:0.47},{&quot;2026-07-09&quot;:0.47},{&quot;2026-07-10&quot;:0.46},{&quot;2026-07-11&quot;:0.46},{&quot;2026-07-12&quot;:0.44},{&quot;2026-07-13&quot;:0.41},{&quot;2026-07-14&quot;:0.4},{&quot;2026-07-15&quot;:0.41},{&quot;2026-07-16&quot;:0.41},{&quot;2026-07-17&quot;:0.44},{&quot;2026-07-18&quot;:0.45},{&quot;2026-07-19&quot;:0.44},{&quot;2026-07-20&quot;:0.44},{&quot;2026-07-21&quot;:0.42},{&quot;2026-07-22&quot;:0.42},{&quot;2026-07-23&quot;:0.42},{&quot;2026-07-24&quot;:0.42},{&quot;2026-07-25&quot;:0.41},{&quot;2026-07-26&quot;:0.4},{&quot;2026-07-27&quot;:0.37},{&quot;2026-07-28&quot;:0.37},{&quot;2026-07-29&quot;:0.39},{&quot;2026-07-30&quot;:0.4},{&quot;2026-07-31&quot;:0.42},{&quot;2026-08-01&quot;:0.44},{&quot;2026-08-02&quot;:0.47},{&quot;2026-08-03&quot;:0.51},{&quot;2026-08-04&quot;:0.49},{&quot;2026-08-05&quot;:0.5},{&quot;2026-08-07&quot;:0.51},{&quot;2026-08-08&quot;:0.49},{&quot;2026-08-09&quot;:0.46},{&quot;2026-08-10&quot;:0.45},{&quot;2026-08-11&quot;:0.46},{&quot;2026-08-12&quot;:0.45},{&quot;2026-08-13&quot;:0.45},{&quot;2026-08-14&quot;:0.45},{&quot;2026-08-15&quot;:0.43},{&quot;2026-08-16&quot;:0.43},{&quot;2026-08-17&quot;:0.41},{&quot;2026-08-18&quot;:0.39},{&quot;2026-08-19&quot;:0.38},{&quot;2026-08-20&quot;:0.38},{&quot;2026-08-21&quot;:0.38},{&quot;2026-08-22&quot;:0.39},{&quot;2026-08-23&quot;:0.41},{&quot;2026-08-24&quot;:0.44},{&quot;2026-08-25&quot;:0.44},{&quot;2026-08-26&quot;:0.45},{&quot;2026-08-27&quot;:0.44},{&quot;2026-08-28&quot;:0.46},{&quot;2026-08-29&quot;:0.46},{&quot;2026-08-30&quot;:0.49},{&quot;2026-08-31&quot;:0.49},{&quot;2026-09-01&quot;:0.53},{&quot;2026-09-02&quot;:0.52},{&quot;2026-09-03&quot;:0.51},{&quot;2026-09-04&quot;:0.51},{&quot;2026-09-05&quot;:0.51},{&quot;2026-09-06&quot;:0.5},{&quot;2026-09-07&quot;:0.5},{&quot;2026-09-08&quot;:0.51},{&quot;2026-09-09&quot;:0.47},{&quot;2026-09-10&quot;:0.47},{&quot;2026-09-11&quot;:0.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="91094"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-inr ss-common ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Plains" src="https://cards.scryfall.io/large/front/c/5/c574549f-da6c-4080-8748-6ef146a7ae48.jpg?1783908052" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:0.78},{&quot;2026-06-14&quot;:0.78},{&quot;2026-06-15&quot;:0.78},{&quot;2026-06-16&quot;:0.76},{&quot;2026-06-17&quot;:0.77},{&quot;2026-06-18&quot;:0.77},{&quot;2026-06-19&quot;:0.77},{&quot;2026-06-20&quot;:0.77},{&quot;2026-06-21&quot;:0.75},{&quot;2026-06-22&quot;:0.75},{&quot;2026-06-23&quot;:0.76},{&quot;2026-06-24&quot;:0.76},{&quot;2026-06-25&quot;:0.76},{&quot;2026-06-26&quot;:0.76},{&quot;2026-06-27&quot;:0.81},{&quot;2026-06-28&quot;:0.81},{&quot;2026-06-29&quot;:0.82},{&quot;2026-06-30&quot;:0.82},{&quot;2026-07-01&quot;:0.82},{&quot;2026-07-02&quot;:0.82},{&quot;2026-07-03&quot;:0.78},{&quot;2026-07-04&quot;:0.78},{&quot;2026-07-05&quot;:0.73},{&quot;2026-07-06&quot;:0.73},{&quot;2026-07-07&quot;:0.73},{&quot;2026-07-08&quot;:0.7},{&quot;2026-07-09&quot;:0.7},{&quot;2026-07-10&quot;:0.7},{&quot;2026-07-11&quot;:0.68},{&quot;2026-07-12&quot;:0.68},{&quot;2026-07-13&quot;:0.68},{&quot;2026-07-14&quot;:0.68},{&quot;2026-07-15&quot;:0.66},{&quot;2026-07-16&quot;:0.66},{&quot;2026-07-17&quot;:0.66},{&quot;2026-07-18&quot;:0.64},{&quot;2026-07-19&quot;:0.62},{&quot;2026-07-20&quot;:0.62},{&quot;2026-07-21&quot;:0.62},{&quot;2026-07-22&quot;:0.63},{&quot;2026-07-23&quot;:0.63},{&quot;2026-07-24&quot;:0.63},{&quot;2026-07-25&quot;:0.61},{&quot;2026-07-26&quot;:0.61},{&quot;2026-07-27&quot;:0.61},{&quot;2026-07-28&quot;:0.61},{&quot;2026-07-29&quot;:0.64},{&quot;2026-07-30&quot;:0.63},{&quot;2026-07-31&quot;:0.57},{&quot;2026-08-01&quot;:0.57},{&quot;2026-08-02&quot;:0.58},{&quot;2026-08-03&quot;:0.58},{&quot;2026-08-04&quot;:0.58},{&quot;2026-08-05&quot;:0.58},{&quot;2026-08-07&quot;:0.59},{&quot;2026-08-08&quot;:0.66},{&quot;2026-08-09&quot;:0.66},{&quot;2026-08-10&quot;:0.66},{&quot;2026-08-11&quot;:0.66},{&quot;2026-08-12&quot;:0.67},{&quot;2026-08-13&quot;:0.67},{&quot;2026-08-14&quot;:0.67},{&quot;2026-08-15&quot;:0.67},{&quot;2026-08-16&quot;:0.65},{&quot;2026-08-17&quot;:0.64},{&quot;2026-08-18&quot;:0.63},{&quot;2026-08-19&quot;:0.63},{&quot;2026-08-20&quot;:0.63},{&quot;2026-08-21&quot;:0.63},{&quot;2026-08-22&quot;:0.61},{&quot;2026-08-23&quot;:0.61},{&quot;2026-08-24&quot;:0.61},{&quot;2026-08-25&quot;:0.61},{&quot;2026-08-26&quot;:0.62},{&quot;2026-08-27&quot;:0.61},{&quot;2026-08-28&quot;:0.6},{&quot;2026-08-29&quot;:0.6},{&quot;2026-08-30&quot;:0.61},{&quot;2026-08-31&quot;:0.61},{&quot;2026-09-01&quot;:0.61},{&quot;2026-09-02&quot;:0.61},{&quot;2026-09-03&quot;:0.61},{&quot;2026-09-04&quot;:0.61},{&quot;2026-09-05&quot;:0.61},{&quot;2026-09-06&quot;:0.61},{&quot;2026-09-07&quot;:0.62},{&quot;2026-09-08&quot;:0.62},{&quot;2026-09-09&quot;:0.62},{&quot;2026-09-10&quot;:0.59},{&quot;2026-09-11&quot;:0.56}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.3},{&quot;2026-06-14&quot;:0.3},{&quot;2026-06-15&quot;:0.3},{&quot;2026-06-16&quot;:0.3},{&quot;2026-06-17&quot;:0.3},{&quot;2026-06-18&quot;:0.3},{&quot;2026-06-19&quot;:0.28},{&quot;2026-06-20&quot;:0.31},{&quot;2026-06-21&quot;:0.31},{&quot;2026-06-22&quot;:0.31},{&quot;2026-06-23&quot;:0.31},{&quot;2026-06-24&quot;:0.32},{&quot;2026-06-25&quot;:0.32},{&quot;2026-06-26&quot;:0.32},{&quot;2026-06-27&quot;:0.32},{&quot;2026-06-28&quot;:0.32},{&quot;2026-06-29&quot;:0.32},{&quot;2026-06-30&quot;:0.32},{&quot;2026-07-01&quot;:0.33},{&quot;2026-07-02&quot;:0.33},{&quot;2026-07-03&quot;:0.33},{&quot;2026-07-04&quot;:0.33},{&quot;2026-07-05&quot;:0.33},{&quot;2026-07-06&quot;:0.35},{&quot;2026-07-07&quot;:0.35},{&quot;2026-07-08&quot;:0.35},{&quot;2026-07-09&quot;:0.35},{&quot;2026-07-10&quot;:0.35},{&quot;2026-07-11&quot;:0.35},{&quot;2026-07-12&quot;:0.37},{&quot;2026-07-13&quot;:0.37},{&quot;2026-07-14&quot;:0.36},{&quot;2026-07-15&quot;:0.36},{&quot;2026-07-16&quot;:0.4},{&quot;2026-07-17&quot;:0.4},{&quot;2026-07-18&quot;:0.4},{&quot;2026-07-19&quot;:0.39},{&quot;2026-07-20&quot;:0.38},{&quot;2026-07-21&quot;:0.37},{&quot;2026-07-22&quot;:0.36},{&quot;2026-07-23&quot;:0.36},{&quot;2026-07-24&quot;:0.36},{&quot;2026-07-25&quot;:0.34},{&quot;2026-07-26&quot;:0.34},{&quot;2026-07-27&quot;:0.34},{&quot;2026-07-28&quot;:0.34},{&quot;2026-07-29&quot;:0.33},{&quot;2026-07-30&quot;:0.33},{&quot;2026-07-31&quot;:0.36},{&quot;2026-08-01&quot;:0.36},{&quot;2026-08-02&quot;:0.35},{&quot;2026-08-03&quot;:0.35},{&quot;2026-08-04&quot;:0.35},{&quot;2026-08-05&quot;:0.35},{&quot;2026-08-07&quot;:0.33},{&quot;2026-08-08&quot;:0.33},{&quot;2026-08-09&quot;:0.33},{&quot;2026-08-10&quot;:0.33},{&quot;2026-08-11&quot;:0.33},{&quot;2026-08-12&quot;:0.33},{&quot;2026-08-13&quot;:0.32},{&quot;2026-08-14&quot;:0.33},{&quot;2026-08-15&quot;:0.34},{&quot;2026-08-16&quot;:0.34},{&quot;2026-08-17&quot;:0.34},{&quot;2026-08-18&quot;:0.35},{&quot;2026-08-19&quot;:0.35},{&quot;2026-08-20&quot;:0.35},{&quot;2026-08-21&quot;:0.35},{&quot;2026-08-22&quot;:0.35},{&quot;2026-08-23&quot;:0.36},{&quot;2026-08-24&quot;:0.36},{&quot;2026-08-25&quot;:0.36},{&quot;2026-08-26&quot;:0.36},{&quot;2026-08-27&quot;:0.36},{&quot;2026-08-28&quot;:0.36},{&quot;2026-08-29&quot;:0.36},{&quot;2026-08-30&quot;:0.37},{&quot;2026-08-31&quot;:0.37},{&quot;2026-09-01&quot;:0.37},{&quot;2026-09-02&quot;:0.37},{&quot;2026-09-03&quot;:0.37},{&quot;2026-09-04&quot;:0.37},{&quot;2026-09-05&quot;:0.37},{&quot;2026-09-06&quot;:0.37},{&quot;2026-09-07&quot;:0.37},{&quot;2026-09-08&quot;:0.37},{&quot;2026-09-09&quot;:0.37},{&quot;2026-09-10&quot;:0.37},{&quot;2026-09-11&quot;:0.36}]}"
        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="49377"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mh1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.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="Talisman of Conviction" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/1/71148fd3-0c2c-459e-b8f5-735a0a8dd87f.jpg?1783933073" />

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Talisman of Conviction" src="https://cards.scryfall.io/large/front/7/1/71148fd3-0c2c-459e-b8f5-735a0a8dd87f.jpg?1783933073" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:3.84},{&quot;2026-06-11&quot;:3.84},{&quot;2026-06-12&quot;:3.84},{&quot;2026-06-13&quot;:3.84},{&quot;2026-06-14&quot;:3.84},{&quot;2026-06-15&quot;:3.84},{&quot;2026-06-16&quot;:3.84},{&quot;2026-06-17&quot;:3.84},{&quot;2026-06-18&quot;:3.84},{&quot;2026-06-19&quot;:3.84},{&quot;2026-06-20&quot;:3.84},{&quot;2026-06-21&quot;:4.32},{&quot;2026-06-22&quot;:4.32},{&quot;2026-06-23&quot;:4.32},{&quot;2026-06-24&quot;:4.38},{&quot;2026-06-25&quot;:4.38},{&quot;2026-06-26&quot;:4.33},{&quot;2026-06-27&quot;:4.33},{&quot;2026-06-28&quot;:4.33},{&quot;2026-06-29&quot;:4.33},{&quot;2026-06-30&quot;:4.33},{&quot;2026-07-01&quot;:4.38},{&quot;2026-07-02&quot;:4.38},{&quot;2026-07-03&quot;:4.38},{&quot;2026-07-04&quot;:4.38},{&quot;2026-07-05&quot;:4.38},{&quot;2026-07-06&quot;:4.45},{&quot;2026-07-07&quot;:4.45},{&quot;2026-07-08&quot;:4.45},{&quot;2026-07-09&quot;:4.45},{&quot;2026-07-10&quot;:4.45},{&quot;2026-07-11&quot;:4.45},{&quot;2026-07-12&quot;:4.45},{&quot;2026-07-13&quot;:4.45},{&quot;2026-07-14&quot;:4.45},{&quot;2026-07-15&quot;:4.45},{&quot;2026-07-16&quot;:4.41},{&quot;2026-07-17&quot;:4.41},{&quot;2026-07-18&quot;:4.41},{&quot;2026-07-19&quot;:4.41},{&quot;2026-07-20&quot;:4.41},{&quot;2026-07-21&quot;:4.41},{&quot;2026-07-23&quot;:4.41},{&quot;2026-07-25&quot;:4.54},{&quot;2026-07-26&quot;:4.61},{&quot;2026-07-27&quot;:4.61},{&quot;2026-07-29&quot;:4.61},{&quot;2026-07-30&quot;:4.61},{&quot;2026-07-31&quot;:4.61},{&quot;2026-08-01&quot;:4.61},{&quot;2026-08-02&quot;:4.61},{&quot;2026-08-03&quot;:4.61},{&quot;2026-08-04&quot;:4.61},{&quot;2026-08-05&quot;:4.61},{&quot;2026-08-07&quot;:4.61},{&quot;2026-08-08&quot;:4.61},{&quot;2026-08-09&quot;:4.61},{&quot;2026-08-10&quot;:4.61},{&quot;2026-08-11&quot;:4.61},{&quot;2026-08-12&quot;:4.61},{&quot;2026-08-13&quot;:4.61},{&quot;2026-08-14&quot;:4.61},{&quot;2026-08-15&quot;:4.61},{&quot;2026-08-16&quot;:4.61},{&quot;2026-08-17&quot;:4.61},{&quot;2026-08-18&quot;:4.61},{&quot;2026-08-19&quot;:4.61},{&quot;2026-08-20&quot;:4.61},{&quot;2026-08-21&quot;:4.61},{&quot;2026-08-22&quot;:4.61},{&quot;2026-08-23&quot;:4.61},{&quot;2026-08-24&quot;:4.61},{&quot;2026-08-25&quot;:4.61},{&quot;2026-08-26&quot;:4.61},{&quot;2026-08-27&quot;:4.61},{&quot;2026-08-28&quot;:4.61},{&quot;2026-08-29&quot;:4.61},{&quot;2026-08-30&quot;:4.57},{&quot;2026-08-31&quot;:4.57},{&quot;2026-09-01&quot;:4.57},{&quot;2026-09-02&quot;:4.57},{&quot;2026-09-03&quot;:4.57},{&quot;2026-09-04&quot;:4.57},{&quot;2026-09-05&quot;:4.54},{&quot;2026-09-06&quot;:4.64},{&quot;2026-09-07&quot;:4.64},{&quot;2026-09-08&quot;:4.64},{&quot;2026-09-09&quot;:4.7},{&quot;2026-09-10&quot;:4.7},{&quot;2026-09-11&quot;:4.7}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:0.56},{&quot;2026-06-11&quot;:0.57},{&quot;2026-06-12&quot;:0.57},{&quot;2026-06-13&quot;:0.57},{&quot;2026-06-14&quot;:0.54},{&quot;2026-06-15&quot;:0.48},{&quot;2026-06-16&quot;:0.45},{&quot;2026-06-17&quot;:0.44},{&quot;2026-06-18&quot;:0.43},{&quot;2026-06-19&quot;:0.42},{&quot;2026-06-20&quot;:0.41},{&quot;2026-06-21&quot;:0.41},{&quot;2026-06-22&quot;:0.4},{&quot;2026-06-23&quot;:0.41},{&quot;2026-06-24&quot;:0.41},{&quot;2026-06-25&quot;:0.4},{&quot;2026-06-26&quot;:0.4},{&quot;2026-06-27&quot;:0.4},{&quot;2026-06-28&quot;:0.4},{&quot;2026-06-29&quot;:0.4},{&quot;2026-06-30&quot;:0.4},{&quot;2026-07-01&quot;:0.42},{&quot;2026-07-02&quot;:0.42},{&quot;2026-07-03&quot;:0.43},{&quot;2026-07-04&quot;:0.43},{&quot;2026-07-05&quot;:0.43},{&quot;2026-07-06&quot;:0.46},{&quot;2026-07-07&quot;:0.46},{&quot;2026-07-08&quot;:0.47},{&quot;2026-07-09&quot;:0.46},{&quot;2026-07-10&quot;:0.47},{&quot;2026-07-11&quot;:0.47},{&quot;2026-07-12&quot;:0.47},{&quot;2026-07-13&quot;:0.47},{&quot;2026-07-14&quot;:0.46},{&quot;2026-07-15&quot;:0.46},{&quot;2026-07-16&quot;:0.46},{&quot;2026-07-17&quot;:0.46},{&quot;2026-07-18&quot;:0.45},{&quot;2026-07-19&quot;:0.45},{&quot;2026-07-20&quot;:0.45},{&quot;2026-07-21&quot;:0.45},{&quot;2026-07-23&quot;:0.45},{&quot;2026-07-25&quot;:0.44},{&quot;2026-07-26&quot;:0.44},{&quot;2026-07-27&quot;:0.45},{&quot;2026-07-29&quot;:0.45},{&quot;2026-07-30&quot;:0.45},{&quot;2026-07-31&quot;:0.46},{&quot;2026-08-01&quot;:0.46},{&quot;2026-08-02&quot;:0.46},{&quot;2026-08-03&quot;:0.44},{&quot;2026-08-04&quot;:0.43},{&quot;2026-08-05&quot;:0.43},{&quot;2026-08-07&quot;:0.47},{&quot;2026-08-08&quot;:0.47},{&quot;2026-08-09&quot;:0.46},{&quot;2026-08-10&quot;:0.46},{&quot;2026-08-11&quot;:0.46},{&quot;2026-08-12&quot;:0.46},{&quot;2026-08-13&quot;:0.47},{&quot;2026-08-14&quot;:0.47},{&quot;2026-08-15&quot;:0.47},{&quot;2026-08-16&quot;:0.46},{&quot;2026-08-17&quot;:0.46},{&quot;2026-08-18&quot;:0.47},{&quot;2026-08-19&quot;:0.46},{&quot;2026-08-20&quot;:0.46},{&quot;2026-08-21&quot;:0.46},{&quot;2026-08-22&quot;:0.48},{&quot;2026-08-23&quot;:0.48},{&quot;2026-08-24&quot;:0.49},{&quot;2026-08-25&quot;:0.49},{&quot;2026-08-26&quot;:0.48},{&quot;2026-08-27&quot;:0.48},{&quot;2026-08-28&quot;:0.48},{&quot;2026-08-29&quot;:0.48},{&quot;2026-08-30&quot;:0.49},{&quot;2026-08-31&quot;:0.47},{&quot;2026-09-01&quot;:0.47},{&quot;2026-09-02&quot;:0.47},{&quot;2026-09-03&quot;:0.47},{&quot;2026-09-04&quot;:0.47},{&quot;2026-09-05&quot;:0.47},{&quot;2026-09-06&quot;:0.46},{&quot;2026-09-07&quot;:0.46},{&quot;2026-09-08&quot;:0.46},{&quot;2026-09-09&quot;:0.46},{&quot;2026-09-10&quot;:0.46},{&quot;2026-09-11&quot;:0.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="18826"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-dmu ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Tori D&#39;Avenant, Fury Rider
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Tori D&#39;Avenant, Fury Rider" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/c/9c873c5b-61f6-49b9-8993-2d5e9823de62.jpg?1783921274" />

        <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">
            Tori D&#39;Avenant, Fury Rider
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></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="Tori D&#39;Avenant, Fury Rider" src="https://cards.scryfall.io/large/front/9/c/9c873c5b-61f6-49b9-8993-2d5e9823de62.jpg?1783921274" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Angel of Glory&#39;s Rise" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/8/1865ab25-b01a-4e2c-bf19-ffcb0806358f.jpg?1783925355" />

        <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">
            Angel of Glory&#39;s Rise
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-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>
          </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="Angel of Glory&#39;s Rise" src="https://cards.scryfall.io/large/front/1/8/1865ab25-b01a-4e2c-bf19-ffcb0806358f.jpg?1783925355" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Priest of Fell Rites" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/1/d116329d-6de7-402c-821d-e9aeba9ad2b1.jpg?1783926812" />

        <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">
            Priest of Fell Rites
        </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 Warlock</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Priest of Fell Rites" src="https://cards.scryfall.io/large/front/d/1/d116329d-6de7-402c-821d-e9aeba9ad2b1.jpg?1783926812" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

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

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

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.05</span>
              <span class="text-xs text-grey-text">Credit: $0.07</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;:5.95},{&quot;2026-06-12&quot;:5.95},{&quot;2026-06-13&quot;:5.95},{&quot;2026-06-14&quot;:5.95},{&quot;2026-06-15&quot;:5.95},{&quot;2026-06-16&quot;:5.95},{&quot;2026-06-17&quot;:5.95},{&quot;2026-06-18&quot;:5.95},{&quot;2026-06-19&quot;:5.95},{&quot;2026-06-20&quot;:5.95},{&quot;2026-06-21&quot;:5.95},{&quot;2026-06-22&quot;:5.94},{&quot;2026-06-23&quot;:5.94},{&quot;2026-06-24&quot;:5.94},{&quot;2026-06-25&quot;:5.94},{&quot;2026-06-26&quot;:5.94},{&quot;2026-06-27&quot;:5.94},{&quot;2026-06-28&quot;:6.0},{&quot;2026-06-29&quot;:6.0},{&quot;2026-06-30&quot;:6.0},{&quot;2026-07-01&quot;:6.0},{&quot;2026-07-02&quot;:6.0},{&quot;2026-07-03&quot;:6.0},{&quot;2026-07-04&quot;:6.0},{&quot;2026-07-05&quot;:6.0},{&quot;2026-07-06&quot;:6.06},{&quot;2026-07-07&quot;:6.06},{&quot;2026-07-08&quot;:6.06},{&quot;2026-07-09&quot;:6.06},{&quot;2026-07-10&quot;:6.06},{&quot;2026-07-11&quot;:6.06},{&quot;2026-07-12&quot;:6.06},{&quot;2026-07-13&quot;:6.06},{&quot;2026-07-14&quot;:6.06},{&quot;2026-07-15&quot;:6.06},{&quot;2026-07-16&quot;:6.06},{&quot;2026-07-17&quot;:6.06},{&quot;2026-07-18&quot;:6.06},{&quot;2026-07-19&quot;:6.06},{&quot;2026-07-20&quot;:6.06},{&quot;2026-07-21&quot;:6.06},{&quot;2026-07-23&quot;:6.06},{&quot;2026-07-25&quot;:6.06},{&quot;2026-07-26&quot;:6.06},{&quot;2026-07-27&quot;:5.97},{&quot;2026-07-28&quot;:5.97},{&quot;2026-07-29&quot;:5.97},{&quot;2026-07-30&quot;:5.97},{&quot;2026-07-31&quot;:5.97},{&quot;2026-08-01&quot;:5.97},{&quot;2026-08-02&quot;:5.97},{&quot;2026-08-03&quot;:5.97},{&quot;2026-08-04&quot;:5.97},{&quot;2026-08-05&quot;:5.97},{&quot;2026-08-07&quot;:5.97},{&quot;2026-08-08&quot;:5.97},{&quot;2026-08-09&quot;:5.97},{&quot;2026-08-10&quot;:5.97},{&quot;2026-08-11&quot;:5.97},{&quot;2026-08-12&quot;:5.97},{&quot;2026-08-13&quot;:5.97},{&quot;2026-08-14&quot;:5.97},{&quot;2026-08-15&quot;:5.97},{&quot;2026-08-16&quot;:5.97},{&quot;2026-08-17&quot;:5.97},{&quot;2026-08-18&quot;:5.97},{&quot;2026-08-19&quot;:5.97},{&quot;2026-08-20&quot;:5.97},{&quot;2026-08-21&quot;:5.97},{&quot;2026-08-22&quot;:5.97},{&quot;2026-08-23&quot;:5.97},{&quot;2026-08-24&quot;:5.97},{&quot;2026-08-25&quot;:5.97},{&quot;2026-08-26&quot;:5.97},{&quot;2026-08-27&quot;:5.97},{&quot;2026-08-28&quot;:5.97},{&quot;2026-08-29&quot;:5.97},{&quot;2026-08-30&quot;:5.97},{&quot;2026-08-31&quot;:5.73},{&quot;2026-09-01&quot;:5.73},{&quot;2026-09-02&quot;:5.75},{&quot;2026-09-03&quot;:5.75},{&quot;2026-09-04&quot;:5.75},{&quot;2026-09-05&quot;:5.75},{&quot;2026-09-06&quot;:5.75},{&quot;2026-09-07&quot;:5.75},{&quot;2026-09-08&quot;:5.75},{&quot;2026-09-09&quot;:5.61},{&quot;2026-09-10&quot;:5.61},{&quot;2026-09-11&quot;:5.61}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:0.35},{&quot;2026-06-12&quot;:0.35},{&quot;2026-06-13&quot;:0.36},{&quot;2026-06-14&quot;:0.36},{&quot;2026-06-15&quot;:0.38},{&quot;2026-06-16&quot;:0.37},{&quot;2026-06-17&quot;:0.37},{&quot;2026-06-18&quot;:0.37},{&quot;2026-06-19&quot;:0.37},{&quot;2026-06-20&quot;:0.37},{&quot;2026-06-21&quot;:0.37},{&quot;2026-06-22&quot;:0.37},{&quot;2026-06-23&quot;:0.37},{&quot;2026-06-24&quot;:0.37},{&quot;2026-06-25&quot;:0.38},{&quot;2026-06-26&quot;:0.38},{&quot;2026-06-27&quot;:0.37},{&quot;2026-06-28&quot;:0.37},{&quot;2026-06-29&quot;:0.37},{&quot;2026-06-30&quot;:0.36},{&quot;2026-07-01&quot;:0.36},{&quot;2026-07-02&quot;:0.36},{&quot;2026-07-03&quot;:0.35},{&quot;2026-07-04&quot;:0.35},{&quot;2026-07-05&quot;:0.35},{&quot;2026-07-06&quot;:0.35},{&quot;2026-07-07&quot;:0.35},{&quot;2026-07-08&quot;:0.34},{&quot;2026-07-09&quot;:0.32},{&quot;2026-07-10&quot;:0.32},{&quot;2026-07-11&quot;:0.32},{&quot;2026-07-12&quot;:0.32},{&quot;2026-07-13&quot;:0.32},{&quot;2026-07-14&quot;:0.33},{&quot;2026-07-15&quot;:0.32},{&quot;2026-07-16&quot;:0.32},{&quot;2026-07-17&quot;:0.32},{&quot;2026-07-18&quot;:0.32},{&quot;2026-07-19&quot;:0.31},{&quot;2026-07-20&quot;:0.31},{&quot;2026-07-21&quot;:0.32},{&quot;2026-07-23&quot;:0.31},{&quot;2026-07-25&quot;:0.3},{&quot;2026-07-26&quot;:0.31},{&quot;2026-07-27&quot;:0.32},{&quot;2026-07-28&quot;:0.32},{&quot;2026-07-29&quot;:0.33},{&quot;2026-07-30&quot;:0.33},{&quot;2026-07-31&quot;:0.34},{&quot;2026-08-01&quot;:0.34},{&quot;2026-08-02&quot;:0.34},{&quot;2026-08-03&quot;:0.34},{&quot;2026-08-04&quot;:0.34},{&quot;2026-08-05&quot;:0.32},{&quot;2026-08-07&quot;:0.32},{&quot;2026-08-08&quot;:0.32},{&quot;2026-08-09&quot;:0.32},{&quot;2026-08-10&quot;:0.32},{&quot;2026-08-11&quot;:0.31},{&quot;2026-08-12&quot;:0.31},{&quot;2026-08-13&quot;:0.31},{&quot;2026-08-14&quot;:0.32},{&quot;2026-08-15&quot;:0.32},{&quot;2026-08-16&quot;:0.31},{&quot;2026-08-17&quot;:0.31},{&quot;2026-08-18&quot;:0.35},{&quot;2026-08-19&quot;:0.35},{&quot;2026-08-20&quot;:0.35},{&quot;2026-08-21&quot;:0.35},{&quot;2026-08-22&quot;:0.35},{&quot;2026-08-23&quot;:0.36},{&quot;2026-08-24&quot;:0.37},{&quot;2026-08-25&quot;:0.37},{&quot;2026-08-26&quot;:0.38},{&quot;2026-08-27&quot;:0.39},{&quot;2026-08-28&quot;:0.37},{&quot;2026-08-29&quot;:0.37},{&quot;2026-08-30&quot;:0.36},{&quot;2026-08-31&quot;:0.36},{&quot;2026-09-01&quot;:0.36},{&quot;2026-09-02&quot;:0.36},{&quot;2026-09-03&quot;:0.36},{&quot;2026-09-04&quot;:0.37},{&quot;2026-09-05&quot;:0.38},{&quot;2026-09-06&quot;:0.38},{&quot;2026-09-07&quot;:0.38},{&quot;2026-09-08&quot;:0.38},{&quot;2026-09-09&quot;:0.38},{&quot;2026-09-10&quot;:0.38},{&quot;2026-09-11&quot;:0.38}]}"
        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="76106"
  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-lcc ss-common ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Path of Ancestry" src="https://cards.scryfall.io/large/front/f/3/f30552a5-db59-4164-bbd2-44bf7ae1e91e.jpg?1783913825" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>


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

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

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="94772"
  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">
            Kain, Traitorous Dragoon
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Legendary Creature — Human Knight
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-100 text-badge-text">
              ↓
              3%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.29
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Kain, Traitorous Dragoon" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/f/8/f8c86be0-e1b3-4a78-9254-238dd936914b.jpg?1783906617" />

        <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">
            Kain, Traitorous Dragoon
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            rare
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Legendary Creature — Human Knight</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Kain, Traitorous Dragoon" src="https://cards.scryfall.io/large/front/f/8/f8c86be0-e1b3-4a78-9254-238dd936914b.jpg?1783906617" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.29
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  3%
                </span>
            </div>
          </div>

          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Foil</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $0.48
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  2%
                </span>
            </div>
          </div>
      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.03</span>
              <span class="text-xs text-grey-text">Credit: $0.04</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-08&quot;:0.41},{&quot;2026-06-10&quot;:0.41},{&quot;2026-06-11&quot;:0.41},{&quot;2026-06-12&quot;:0.41},{&quot;2026-06-13&quot;:0.41},{&quot;2026-06-14&quot;:0.41},{&quot;2026-06-15&quot;:0.41},{&quot;2026-06-16&quot;:0.41},{&quot;2026-06-17&quot;:0.42},{&quot;2026-06-18&quot;:0.41},{&quot;2026-06-19&quot;:0.41},{&quot;2026-06-20&quot;:0.41},{&quot;2026-06-21&quot;:0.41},{&quot;2026-06-22&quot;:0.41},{&quot;2026-06-24&quot;:0.41},{&quot;2026-06-25&quot;:0.41},{&quot;2026-06-26&quot;:0.41},{&quot;2026-06-27&quot;:0.4},{&quot;2026-06-28&quot;:0.4},{&quot;2026-06-29&quot;:0.41},{&quot;2026-06-30&quot;:0.41},{&quot;2026-07-01&quot;:0.41},{&quot;2026-07-02&quot;:0.41},{&quot;2026-07-03&quot;:0.41},{&quot;2026-07-04&quot;:0.41},{&quot;2026-07-05&quot;:0.41},{&quot;2026-07-06&quot;:0.41},{&quot;2026-07-07&quot;:0.41},{&quot;2026-07-08&quot;:0.41},{&quot;2026-07-09&quot;:0.4},{&quot;2026-07-10&quot;:0.4},{&quot;2026-07-11&quot;:0.39},{&quot;2026-07-12&quot;:0.4},{&quot;2026-07-13&quot;:0.41},{&quot;2026-07-14&quot;:0.41},{&quot;2026-07-15&quot;:0.41},{&quot;2026-07-16&quot;:0.4},{&quot;2026-07-17&quot;:0.4},{&quot;2026-07-18&quot;:0.4},{&quot;2026-07-19&quot;:0.4},{&quot;2026-07-20&quot;:0.4},{&quot;2026-07-21&quot;:0.4},{&quot;2026-07-23&quot;:0.4},{&quot;2026-07-25&quot;:0.4},{&quot;2026-07-26&quot;:0.4},{&quot;2026-07-27&quot;:0.4},{&quot;2026-07-29&quot;:0.4},{&quot;2026-07-30&quot;:0.4},{&quot;2026-07-31&quot;:0.4},{&quot;2026-08-01&quot;:0.4},{&quot;2026-08-02&quot;:0.4},{&quot;2026-08-03&quot;:0.39},{&quot;2026-08-04&quot;:0.39},{&quot;2026-08-05&quot;:0.39},{&quot;2026-08-07&quot;:0.39},{&quot;2026-08-08&quot;:0.39},{&quot;2026-08-09&quot;:0.39},{&quot;2026-08-10&quot;:0.39},{&quot;2026-08-11&quot;:0.39},{&quot;2026-08-12&quot;:0.39},{&quot;2026-08-13&quot;:0.39},{&quot;2026-08-14&quot;:0.39},{&quot;2026-08-15&quot;:0.39},{&quot;2026-08-16&quot;:0.39},{&quot;2026-08-17&quot;:0.4},{&quot;2026-08-18&quot;:0.4},{&quot;2026-08-19&quot;:0.4},{&quot;2026-08-20&quot;:0.4},{&quot;2026-08-21&quot;:0.4},{&quot;2026-08-22&quot;:0.4},{&quot;2026-08-23&quot;:0.4},{&quot;2026-08-24&quot;:0.4},{&quot;2026-08-25&quot;:0.4},{&quot;2026-08-26&quot;:0.42},{&quot;2026-08-27&quot;:0.42},{&quot;2026-08-28&quot;:0.42},{&quot;2026-08-29&quot;:0.42},{&quot;2026-08-30&quot;:0.42},{&quot;2026-08-31&quot;:0.44},{&quot;2026-09-01&quot;:0.44},{&quot;2026-09-02&quot;:0.45},{&quot;2026-09-03&quot;:0.47},{&quot;2026-09-04&quot;:0.47},{&quot;2026-09-05&quot;:0.47},{&quot;2026-09-06&quot;:0.47},{&quot;2026-09-07&quot;:0.47},{&quot;2026-09-08&quot;:0.48},{&quot;2026-09-09&quot;:0.48},{&quot;2026-09-10&quot;:0.48},{&quot;2026-09-11&quot;:0.48}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:0.35},{&quot;2026-06-10&quot;:0.32},{&quot;2026-06-11&quot;:0.33},{&quot;2026-06-12&quot;:0.3},{&quot;2026-06-13&quot;:0.31},{&quot;2026-06-14&quot;:0.31},{&quot;2026-06-15&quot;:0.28},{&quot;2026-06-16&quot;:0.28},{&quot;2026-06-17&quot;:0.33},{&quot;2026-06-18&quot;:0.33},{&quot;2026-06-19&quot;:0.33},{&quot;2026-06-20&quot;:0.33},{&quot;2026-06-21&quot;:0.32},{&quot;2026-06-22&quot;:0.34},{&quot;2026-06-24&quot;:0.33},{&quot;2026-06-25&quot;:0.33},{&quot;2026-06-26&quot;:0.34},{&quot;2026-06-27&quot;:0.31},{&quot;2026-06-28&quot;:0.3},{&quot;2026-06-29&quot;:0.3},{&quot;2026-06-30&quot;:0.3},{&quot;2026-07-01&quot;:0.27},{&quot;2026-07-02&quot;:0.28},{&quot;2026-07-03&quot;:0.28},{&quot;2026-07-04&quot;:0.28},{&quot;2026-07-05&quot;:0.28},{&quot;2026-07-06&quot;:0.26},{&quot;2026-07-07&quot;:0.28},{&quot;2026-07-08&quot;:0.31},{&quot;2026-07-09&quot;:0.31},{&quot;2026-07-10&quot;:0.32},{&quot;2026-07-11&quot;:0.31},{&quot;2026-07-12&quot;:0.31},{&quot;2026-07-13&quot;:0.31},{&quot;2026-07-14&quot;:0.32},{&quot;2026-07-15&quot;:0.31},{&quot;2026-07-16&quot;:0.29},{&quot;2026-07-17&quot;:0.27},{&quot;2026-07-18&quot;:0.27},{&quot;2026-07-19&quot;:0.24},{&quot;2026-07-20&quot;:0.23},{&quot;2026-07-21&quot;:0.23},{&quot;2026-07-23&quot;:0.25},{&quot;2026-07-25&quot;:0.25},{&quot;2026-07-26&quot;:0.27},{&quot;2026-07-27&quot;:0.28},{&quot;2026-07-29&quot;:0.3},{&quot;2026-07-30&quot;:0.3},{&quot;2026-07-31&quot;:0.28},{&quot;2026-08-01&quot;:0.27},{&quot;2026-08-02&quot;:0.27},{&quot;2026-08-03&quot;:0.25},{&quot;2026-08-04&quot;:0.24},{&quot;2026-08-05&quot;:0.25},{&quot;2026-08-07&quot;:0.25},{&quot;2026-08-08&quot;:0.27},{&quot;2026-08-09&quot;:0.27},{&quot;2026-08-10&quot;:0.27},{&quot;2026-08-11&quot;:0.28},{&quot;2026-08-12&quot;:0.28},{&quot;2026-08-13&quot;:0.29},{&quot;2026-08-14&quot;:0.3},{&quot;2026-08-15&quot;:0.29},{&quot;2026-08-16&quot;:0.29},{&quot;2026-08-17&quot;:0.3},{&quot;2026-08-18&quot;:0.29},{&quot;2026-08-19&quot;:0.29},{&quot;2026-08-20&quot;:0.29},{&quot;2026-08-21&quot;:0.29},{&quot;2026-08-22&quot;:0.31},{&quot;2026-08-23&quot;:0.29},{&quot;2026-08-24&quot;:0.31},{&quot;2026-08-25&quot;:0.31},{&quot;2026-08-26&quot;:0.29},{&quot;2026-08-27&quot;:0.28},{&quot;2026-08-28&quot;:0.29},{&quot;2026-08-29&quot;:0.29},{&quot;2026-08-30&quot;:0.29},{&quot;2026-08-31&quot;:0.28},{&quot;2026-09-01&quot;:0.28},{&quot;2026-09-02&quot;:0.33},{&quot;2026-09-03&quot;:0.31},{&quot;2026-09-04&quot;:0.29},{&quot;2026-09-05&quot;:0.3},{&quot;2026-09-06&quot;:0.28},{&quot;2026-09-07&quot;:0.3},{&quot;2026-09-08&quot;:0.29},{&quot;2026-09-09&quot;:0.29},{&quot;2026-09-10&quot;:0.29},{&quot;2026-09-11&quot;:0.29}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="73746"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-ltr ss-common ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Westfold Rider
        </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-50 text-badge-text">
              ↑
              13%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.27
          </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="Westfold Rider" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/1/71ed2e4b-c732-472a-a589-f1f53086d9ee.jpg?1783916322" />

        <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">
            Westfold Rider
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            common
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Creature — Human Knight</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Westfold Rider" src="https://cards.scryfall.io/large/front/7/1/71ed2e4b-c732-472a-a589-f1f53086d9ee.jpg?1783916322" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.27
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  13%
                </span>
            </div>
          </div>

          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Foil</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $0.31
              </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.02</span>
              <span class="text-xs text-grey-text">Credit: $0.03</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:0.2},{&quot;2026-06-14&quot;:0.2},{&quot;2026-06-15&quot;:0.19},{&quot;2026-06-16&quot;:0.19},{&quot;2026-06-17&quot;:0.19},{&quot;2026-06-18&quot;:0.2},{&quot;2026-06-19&quot;:0.23},{&quot;2026-06-20&quot;:0.25},{&quot;2026-06-21&quot;:0.25},{&quot;2026-06-22&quot;:0.25},{&quot;2026-06-23&quot;:0.25},{&quot;2026-06-24&quot;:0.25},{&quot;2026-06-25&quot;:0.26},{&quot;2026-06-26&quot;:0.26},{&quot;2026-06-27&quot;:0.26},{&quot;2026-06-28&quot;:0.26},{&quot;2026-06-29&quot;:0.28},{&quot;2026-06-30&quot;:0.28},{&quot;2026-07-01&quot;:0.28},{&quot;2026-07-02&quot;:0.28},{&quot;2026-07-03&quot;:0.28},{&quot;2026-07-04&quot;:0.28},{&quot;2026-07-05&quot;:0.29},{&quot;2026-07-06&quot;:0.28},{&quot;2026-07-07&quot;:0.28},{&quot;2026-07-08&quot;:0.3},{&quot;2026-07-09&quot;:0.3},{&quot;2026-07-10&quot;:0.3},{&quot;2026-07-11&quot;:0.28},{&quot;2026-07-12&quot;:0.3},{&quot;2026-07-13&quot;:0.3},{&quot;2026-07-14&quot;:0.3},{&quot;2026-07-15&quot;:0.29},{&quot;2026-07-16&quot;:0.29},{&quot;2026-07-17&quot;:0.29},{&quot;2026-07-18&quot;:0.29},{&quot;2026-07-19&quot;:0.29},{&quot;2026-07-20&quot;:0.29},{&quot;2026-07-21&quot;:0.29},{&quot;2026-07-22&quot;:0.27},{&quot;2026-07-23&quot;:0.27},{&quot;2026-07-24&quot;:0.27},{&quot;2026-07-25&quot;:0.27},{&quot;2026-07-26&quot;:0.27},{&quot;2026-07-27&quot;:0.29},{&quot;2026-07-28&quot;:0.29},{&quot;2026-07-29&quot;:0.29},{&quot;2026-07-30&quot;:0.29},{&quot;2026-07-31&quot;:0.29},{&quot;2026-08-01&quot;:0.29},{&quot;2026-08-02&quot;:0.29},{&quot;2026-08-03&quot;:0.29},{&quot;2026-08-04&quot;:0.29},{&quot;2026-08-05&quot;:0.29},{&quot;2026-08-07&quot;:0.29},{&quot;2026-08-08&quot;:0.28},{&quot;2026-08-09&quot;:0.28},{&quot;2026-08-10&quot;:0.28},{&quot;2026-08-11&quot;:0.28},{&quot;2026-08-12&quot;:0.28},{&quot;2026-08-13&quot;:0.28},{&quot;2026-08-14&quot;:0.28},{&quot;2026-08-15&quot;:0.28},{&quot;2026-08-16&quot;:0.28},{&quot;2026-08-17&quot;:0.29},{&quot;2026-08-18&quot;:0.29},{&quot;2026-08-19&quot;:0.29},{&quot;2026-08-20&quot;:0.3},{&quot;2026-08-21&quot;:0.3},{&quot;2026-08-22&quot;:0.3},{&quot;2026-08-23&quot;:0.3},{&quot;2026-08-24&quot;:0.3},{&quot;2026-08-25&quot;:0.3},{&quot;2026-08-26&quot;:0.3},{&quot;2026-08-27&quot;:0.3},{&quot;2026-08-28&quot;:0.3},{&quot;2026-08-29&quot;:0.3},{&quot;2026-08-30&quot;:0.32},{&quot;2026-08-31&quot;:0.32},{&quot;2026-09-01&quot;:0.32},{&quot;2026-09-02&quot;:0.32},{&quot;2026-09-03&quot;:0.32},{&quot;2026-09-04&quot;:0.32},{&quot;2026-09-05&quot;:0.32},{&quot;2026-09-06&quot;:0.32},{&quot;2026-09-07&quot;:0.32},{&quot;2026-09-08&quot;:0.32},{&quot;2026-09-09&quot;:0.32},{&quot;2026-09-10&quot;:0.31},{&quot;2026-09-11&quot;:0.31}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.21},{&quot;2026-06-14&quot;:0.21},{&quot;2026-06-15&quot;:0.21},{&quot;2026-06-16&quot;:0.21},{&quot;2026-06-17&quot;:0.24},{&quot;2026-06-18&quot;:0.24},{&quot;2026-06-19&quot;:0.24},{&quot;2026-06-20&quot;:0.22},{&quot;2026-06-21&quot;:0.22},{&quot;2026-06-22&quot;:0.22},{&quot;2026-06-23&quot;:0.22},{&quot;2026-06-24&quot;:0.23},{&quot;2026-06-25&quot;:0.19},{&quot;2026-06-26&quot;:0.15},{&quot;2026-06-27&quot;:0.16},{&quot;2026-06-28&quot;:0.16},{&quot;2026-06-29&quot;:0.16},{&quot;2026-06-30&quot;:0.14},{&quot;2026-07-01&quot;:0.18},{&quot;2026-07-02&quot;:0.19},{&quot;2026-07-03&quot;:0.2},{&quot;2026-07-04&quot;:0.2},{&quot;2026-07-05&quot;:0.19},{&quot;2026-07-06&quot;:0.19},{&quot;2026-07-07&quot;:0.19},{&quot;2026-07-08&quot;:0.19},{&quot;2026-07-09&quot;:0.19},{&quot;2026-07-10&quot;:0.2},{&quot;2026-07-11&quot;:0.17},{&quot;2026-07-12&quot;:0.17},{&quot;2026-07-13&quot;:0.17},{&quot;2026-07-14&quot;:0.18},{&quot;2026-07-15&quot;:0.18},{&quot;2026-07-16&quot;:0.19},{&quot;2026-07-17&quot;:0.19},{&quot;2026-07-18&quot;:0.19},{&quot;2026-07-19&quot;:0.23},{&quot;2026-07-20&quot;:0.24},{&quot;2026-07-21&quot;:0.24},{&quot;2026-07-22&quot;:0.26},{&quot;2026-07-23&quot;:0.24},{&quot;2026-07-24&quot;:0.24},{&quot;2026-07-25&quot;:0.24},{&quot;2026-07-26&quot;:0.23},{&quot;2026-07-27&quot;:0.26},{&quot;2026-07-28&quot;:0.23},{&quot;2026-07-29&quot;:0.22},{&quot;2026-07-30&quot;:0.22},{&quot;2026-07-31&quot;:0.21},{&quot;2026-08-01&quot;:0.2},{&quot;2026-08-02&quot;:0.2},{&quot;2026-08-03&quot;:0.21},{&quot;2026-08-04&quot;:0.2},{&quot;2026-08-05&quot;:0.2},{&quot;2026-08-07&quot;:0.21},{&quot;2026-08-08&quot;:0.19},{&quot;2026-08-09&quot;:0.2},{&quot;2026-08-10&quot;:0.21},{&quot;2026-08-11&quot;:0.22},{&quot;2026-08-12&quot;:0.21},{&quot;2026-08-13&quot;:0.22},{&quot;2026-08-14&quot;:0.19},{&quot;2026-08-15&quot;:0.2},{&quot;2026-08-16&quot;:0.21},{&quot;2026-08-17&quot;:0.23},{&quot;2026-08-18&quot;:0.23},{&quot;2026-08-19&quot;:0.23},{&quot;2026-08-20&quot;:0.24},{&quot;2026-08-21&quot;:0.24},{&quot;2026-08-22&quot;:0.26},{&quot;2026-08-23&quot;:0.23},{&quot;2026-08-24&quot;:0.23},{&quot;2026-08-25&quot;:0.23},{&quot;2026-08-26&quot;:0.23},{&quot;2026-08-27&quot;:0.21},{&quot;2026-08-28&quot;:0.21},{&quot;2026-08-29&quot;:0.21},{&quot;2026-08-30&quot;:0.17},{&quot;2026-08-31&quot;:0.17},{&quot;2026-09-01&quot;:0.16},{&quot;2026-09-02&quot;:0.19},{&quot;2026-09-03&quot;:0.2},{&quot;2026-09-04&quot;:0.22},{&quot;2026-09-05&quot;:0.24},{&quot;2026-09-06&quot;:0.24},{&quot;2026-09-07&quot;:0.24},{&quot;2026-09-08&quot;:0.28},{&quot;2026-09-09&quot;:0.27},{&quot;2026-09-10&quot;:0.27},{&quot;2026-09-11&quot;:0.27}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="86614"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-woe ss-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">
            Imodane&#39;s Recruiter 
        </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="text-sm font-medium text-nine-white">
            $0.26
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Imodane&#39;s Recruiter // Train Troops" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/d/4dbaa855-3f8e-42e6-8ec8-5ffbc5c8acf0.jpg?1783915064" />

        <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">
            Imodane&#39;s Recruiter 
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            uncommon
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Creature — Human Knight</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <div data-controller="card-flip" class="flex flex-col items-center">
          <div
            data-action="click->card-flip#flip"
            class="flip-container cursor-pointer w-full max-w-xs mx-auto"
          >
            <div data-card-flip-target="card" class="flip-card">
              <div class="flip-card-front">
                <img class="w-full h-auto rounded-2xl" alt="Imodane&#39;s Recruiter // Train Troops" src="https://cards.scryfall.io/large/front/4/d/4dbaa855-3f8e-42e6-8ec8-5ffbc5c8acf0.jpg?1783915064" />
              </div>

              <div class="flip-card-back">
                <img class="w-full h-auto rounded-2xl" alt="Imodane&#39;s Recruiter // Train Troops" src="https://cards.scryfall.io/large/front/4/d/4dbaa855-3f8e-42e6-8ec8-5ffbc5c8acf0.jpg?1783915064" />
              </div>
            </div>
          </div>

          <p class="mt-2 text-sm text-grey-text">Tap card to flip</p>
        </div>
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.26
              </span>

            </div>
          </div>

          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Foil</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $0.28
              </span>

            </div>
          </div>
      </div>


      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:0.28},{&quot;2026-06-11&quot;:0.28},{&quot;2026-06-12&quot;:0.28},{&quot;2026-06-13&quot;:0.28},{&quot;2026-06-14&quot;:0.28},{&quot;2026-06-15&quot;:0.28},{&quot;2026-06-16&quot;:0.28},{&quot;2026-06-17&quot;:0.27},{&quot;2026-06-18&quot;:0.27},{&quot;2026-06-19&quot;:0.27},{&quot;2026-06-20&quot;:0.27},{&quot;2026-06-21&quot;:0.27},{&quot;2026-06-22&quot;:0.27},{&quot;2026-06-23&quot;:0.27},{&quot;2026-06-24&quot;:0.27},{&quot;2026-06-25&quot;:0.27},{&quot;2026-06-26&quot;:0.27},{&quot;2026-06-27&quot;:0.27},{&quot;2026-06-28&quot;:0.27},{&quot;2026-06-29&quot;:0.27},{&quot;2026-06-30&quot;:0.27},{&quot;2026-07-01&quot;:0.27},{&quot;2026-07-02&quot;:0.27},{&quot;2026-07-03&quot;:0.27},{&quot;2026-07-04&quot;:0.28},{&quot;2026-07-05&quot;:0.28},{&quot;2026-07-06&quot;:0.28},{&quot;2026-07-07&quot;:0.28},{&quot;2026-07-08&quot;:0.28},{&quot;2026-07-09&quot;:0.28},{&quot;2026-07-10&quot;:0.28},{&quot;2026-07-11&quot;:0.28},{&quot;2026-07-12&quot;:0.28},{&quot;2026-07-13&quot;:0.28},{&quot;2026-07-14&quot;:0.28},{&quot;2026-07-15&quot;:0.28},{&quot;2026-07-16&quot;:0.28},{&quot;2026-07-17&quot;:0.28},{&quot;2026-07-18&quot;:0.28},{&quot;2026-07-19&quot;:0.28},{&quot;2026-07-20&quot;:0.28},{&quot;2026-07-21&quot;:0.28},{&quot;2026-07-23&quot;:0.28},{&quot;2026-07-25&quot;:0.28},{&quot;2026-07-26&quot;:0.28},{&quot;2026-07-27&quot;:0.28},{&quot;2026-07-29&quot;:0.28},{&quot;2026-07-30&quot;:0.28},{&quot;2026-07-31&quot;:0.28},{&quot;2026-08-01&quot;:0.28},{&quot;2026-08-02&quot;:0.28},{&quot;2026-08-03&quot;:0.28},{&quot;2026-08-04&quot;:0.28},{&quot;2026-08-05&quot;:0.28},{&quot;2026-08-07&quot;:0.28},{&quot;2026-08-08&quot;:0.28},{&quot;2026-08-09&quot;:0.28},{&quot;2026-08-10&quot;:0.28},{&quot;2026-08-11&quot;:0.28},{&quot;2026-08-12&quot;:0.28},{&quot;2026-08-13&quot;:0.28},{&quot;2026-08-14&quot;:0.28},{&quot;2026-08-15&quot;:0.28},{&quot;2026-08-16&quot;:0.28},{&quot;2026-08-17&quot;:0.28},{&quot;2026-08-18&quot;:0.28},{&quot;2026-08-19&quot;:0.28},{&quot;2026-08-20&quot;:0.28},{&quot;2026-08-21&quot;:0.28},{&quot;2026-08-22&quot;:0.28},{&quot;2026-08-23&quot;:0.28},{&quot;2026-08-24&quot;:0.28},{&quot;2026-08-25&quot;:0.28},{&quot;2026-08-26&quot;:0.28},{&quot;2026-08-27&quot;:0.26},{&quot;2026-08-28&quot;:0.26},{&quot;2026-08-29&quot;:0.26},{&quot;2026-08-30&quot;:0.27},{&quot;2026-08-31&quot;:0.27},{&quot;2026-09-01&quot;:0.27},{&quot;2026-09-02&quot;:0.27},{&quot;2026-09-03&quot;:0.28},{&quot;2026-09-04&quot;:0.28},{&quot;2026-09-05&quot;:0.28},{&quot;2026-09-06&quot;:0.28},{&quot;2026-09-07&quot;:0.28},{&quot;2026-09-08&quot;:0.28},{&quot;2026-09-09&quot;:0.28},{&quot;2026-09-10&quot;:0.28},{&quot;2026-09-11&quot;:0.28}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:0.23},{&quot;2026-06-11&quot;:0.23},{&quot;2026-06-12&quot;:0.23},{&quot;2026-06-13&quot;:0.23},{&quot;2026-06-14&quot;:0.23},{&quot;2026-06-15&quot;:0.23},{&quot;2026-06-16&quot;:0.23},{&quot;2026-06-17&quot;:0.23},{&quot;2026-06-18&quot;:0.23},{&quot;2026-06-19&quot;:0.23},{&quot;2026-06-20&quot;:0.23},{&quot;2026-06-21&quot;:0.23},{&quot;2026-06-22&quot;:0.23},{&quot;2026-06-23&quot;:0.21},{&quot;2026-06-24&quot;:0.21},{&quot;2026-06-25&quot;:0.21},{&quot;2026-06-26&quot;:0.21},{&quot;2026-06-27&quot;:0.21},{&quot;2026-06-28&quot;:0.21},{&quot;2026-06-29&quot;:0.21},{&quot;2026-06-30&quot;:0.21},{&quot;2026-07-01&quot;:0.21},{&quot;2026-07-02&quot;:0.21},{&quot;2026-07-03&quot;:0.21},{&quot;2026-07-04&quot;:0.22},{&quot;2026-07-05&quot;:0.21},{&quot;2026-07-06&quot;:0.21},{&quot;2026-07-07&quot;:0.21},{&quot;2026-07-08&quot;:0.2},{&quot;2026-07-09&quot;:0.21},{&quot;2026-07-10&quot;:0.21},{&quot;2026-07-11&quot;:0.21},{&quot;2026-07-12&quot;:0.21},{&quot;2026-07-13&quot;:0.21},{&quot;2026-07-14&quot;:0.21},{&quot;2026-07-15&quot;:0.2},{&quot;2026-07-16&quot;:0.19},{&quot;2026-07-17&quot;:0.19},{&quot;2026-07-18&quot;:0.19},{&quot;2026-07-19&quot;:0.19},{&quot;2026-07-20&quot;:0.19},{&quot;2026-07-21&quot;:0.19},{&quot;2026-07-23&quot;:0.19},{&quot;2026-07-25&quot;:0.19},{&quot;2026-07-26&quot;:0.19},{&quot;2026-07-27&quot;:0.18},{&quot;2026-07-29&quot;:0.16},{&quot;2026-07-30&quot;:0.16},{&quot;2026-07-31&quot;:0.16},{&quot;2026-08-01&quot;:0.16},{&quot;2026-08-02&quot;:0.16},{&quot;2026-08-03&quot;:0.18},{&quot;2026-08-04&quot;:0.18},{&quot;2026-08-05&quot;:0.18},{&quot;2026-08-07&quot;:0.18},{&quot;2026-08-08&quot;:0.18},{&quot;2026-08-09&quot;:0.18},{&quot;2026-08-10&quot;:0.18},{&quot;2026-08-11&quot;:0.18},{&quot;2026-08-12&quot;:0.18},{&quot;2026-08-13&quot;:0.18},{&quot;2026-08-14&quot;:0.19},{&quot;2026-08-15&quot;:0.19},{&quot;2026-08-16&quot;:0.19},{&quot;2026-08-17&quot;:0.19},{&quot;2026-08-18&quot;:0.19},{&quot;2026-08-19&quot;:0.19},{&quot;2026-08-20&quot;:0.19},{&quot;2026-08-21&quot;:0.21},{&quot;2026-08-22&quot;:0.22},{&quot;2026-08-23&quot;:0.23},{&quot;2026-08-24&quot;:0.23},{&quot;2026-08-25&quot;:0.23},{&quot;2026-08-26&quot;:0.23},{&quot;2026-08-27&quot;:0.23},{&quot;2026-08-28&quot;:0.23},{&quot;2026-08-29&quot;:0.23},{&quot;2026-08-30&quot;:0.23},{&quot;2026-08-31&quot;:0.23},{&quot;2026-09-01&quot;:0.23},{&quot;2026-09-02&quot;:0.25},{&quot;2026-09-03&quot;:0.25},{&quot;2026-09-04&quot;:0.26},{&quot;2026-09-05&quot;:0.26},{&quot;2026-09-06&quot;:0.25},{&quot;2026-09-07&quot;:0.25},{&quot;2026-09-08&quot;:0.25},{&quot;2026-09-09&quot;:0.25},{&quot;2026-09-10&quot;:0.25},{&quot;2026-09-11&quot;:0.26}]}"
        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 54 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=10&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next">2</a><a href="/load_collection?collection_id=10&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=10&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=10&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=10&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=10&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=10&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=10&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=10&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=10&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=10&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="73288"
          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">
              98
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-brr ss-mythic ss-fw ss-2x mr-4"></i>
              Mox Amber


            </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">
                <div class="flex items-center gap-2">
                  $93.97

                    <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">
                $70.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.50
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="73288"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_73288" src="/boxset_card/73288?collection_id=10&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="95282"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              317
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fin ss-mythic ss-fw ss-2x mr-4"></i>
              Sephiroth, Fabled SOLDIER // Sephiroth, One-Winged Angel


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Human Avatar 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-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $71.91

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $53.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.43
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="95282"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_95282" src="/boxset_card/95282?collection_id=10&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="84582"
          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">
              79
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-war ss-rare ss-fw ss-2x mr-4"></i>
              Bolas&#39;s Citadel


            </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-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $16.14

                    <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">
                $5.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">
                1.72
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="84582"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_84582" src="/boxset_card/84582?collection_id=10&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="61286"
          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">
              285
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-rvr ss-rare ss-fw ss-2x mr-4"></i>
              Sacred Foundry


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land — Mountain 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">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $13.66

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $9.00
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.16
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="61286"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_61286" src="/boxset_card/61286?collection_id=10&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="19351"
          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-dmc ss-mythic ss-fw ss-2x mr-4"></i>
              Dihada, Binder of Wills


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Planeswalker — Dihada
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $13.33

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $10.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.68
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="19351"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_19351" src="/boxset_card/19351?collection_id=10&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="41942"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              278
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-neo ss-rare ss-fw ss-2x mr-4"></i>
              Takenuma, Abandoned Mire


            </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.48

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      9%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $9.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.22
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="41942"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_41942" src="/boxset_card/41942?collection_id=10&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="24343"
          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">
              256
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-dsk ss-rare ss-fw ss-2x mr-4"></i>
              Blazemire Verge


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $10.77

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      4%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $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.09
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="24343"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_24343" src="/boxset_card/24343?collection_id=10&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="80357"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              110
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-uma ss-rare ss-fw ss-2x mr-4"></i>
              Reanimate


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $10.09

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $9.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.79
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="80357"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_80357" src="/boxset_card/80357?collection_id=10&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="64757"
          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">
              20
            </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>
              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">
                  $9.09

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $3.10
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.45
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="64757"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_64757" src="/boxset_card/64757?collection_id=10&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="86409"
          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">
              M20-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-mb1 ss-mythic ss-fw ss-2x mr-4"></i>
              Cavalier of Night


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Elemental Knight
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $8.53

                    <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">
                $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.76
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="86409"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_86409" src="/boxset_card/86409?collection_id=10&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="40284"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              22
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-khc ss-rare ss-fw ss-2x mr-4"></i>
              Eerie Interlude


            </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">
                  $7.75

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $3.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.37
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="40284"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_40284" src="/boxset_card/40284?collection_id=10&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="42653"
          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">
              502
            </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">
                  $7.51

                    <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">
                $7.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.21
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="42653"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_42653" src="/boxset_card/42653?collection_id=10&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75887"
          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-lcc ss-mythic ss-fw ss-2x mr-4"></i>
              Elenda, the Dusk Rose


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Vampire Knight
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $5.64

                    <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">
                $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.28
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="75887"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_75887" src="/boxset_card/75887?collection_id=10&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="19299"
          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">
              381
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-dmu ss-rare ss-fw ss-2x mr-4"></i>
              Sulfurous Springs


            </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">
                  $5.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">
                $4.50
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.22
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="19299"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_19299" src="/boxset_card/19299?collection_id=10&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="13895"
          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">
              626
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmm ss-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">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $5.28

                    <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">
                $4.00
            </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="13895"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_13895" src="/boxset_card/13895?collection_id=10&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="20298"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              110
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2xm ss-rare ss-fw ss-2x mr-4"></i>
              Toxic Deluge


            </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-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $5.14

                    <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">
                $3.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.87
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="20298"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_20298" src="/boxset_card/20298?collection_id=10&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="95481"
          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">
              397
            </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>
              Joshua, Phoenix&#39;s Dominant // Phoenix, Warden of Fire


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Human Noble Wizard
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><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.79

                    <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">
                $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.27
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="95481"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_95481" src="/boxset_card/95481?collection_id=10&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="89974"
          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">
              259
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-znr ss-rare ss-fw ss-2x mr-4"></i>
              Brightclimb Pathway // Grimclimb Pathway


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $4.30

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-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">
                $2.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.14
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="89974"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_89974" src="/boxset_card/89974?collection_id=10&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="28960"
          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">
              219
            </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-uncommon ss-fw ss-2x mr-4"></i>
              Talisman of Indulgence


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.72

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.65
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.44
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="28960"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_28960" src="/boxset_card/28960?collection_id=10&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="49542"
          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-mh2 ss-rare ss-fw ss-2x mr-4"></i>
              Patriarch&#39;s Bidding

                <span
                  class="
                    ml-2 px-1.5 py-0.5 text-xs rounded bg-purple-900/30
                    text-purple-400 border border-purple-500/30
                  "
                  title="Etched finish"
                >
                  E
                </span>

            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.65

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      7%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $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.39
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="49542"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_49542" src="/boxset_card/49542?collection_id=10&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="39073"
          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-rex ss-common ss-fw ss-2x mr-4"></i>
              Command Tower // Command Tower


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.31

                    <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.75
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.38
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="39073"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_39073" src="/boxset_card/39073?collection_id=10&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="36634"
          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">
              312
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mid ss-rare ss-fw ss-2x mr-4"></i>
              Adeline, Resplendent Cathar


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Human Knight
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.58

                    <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">
                $2.75
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.44
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="36634"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_36634" src="/boxset_card/36634?collection_id=10&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="49458"
          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">
              95
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mh3 ss-rare ss-fw ss-2x mr-4"></i>
              Flare of Malice


            </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-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.40

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      15%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.62
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="49458"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_49458" src="/boxset_card/49458?collection_id=10&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="19361"
          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">
              4
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-dmc ss-mythic ss-fw ss-2x mr-4"></i>
              Shanid, Sleepers&#39; Scourge


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Human Knight
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.38

                    <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">
                $2.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.22
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="19361"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_19361" src="/boxset_card/19361?collection_id=10&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="94827"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              121
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fin ss-rare ss-fw ss-2x mr-4"></i>
              Summon: Primal Odin


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Enchantment Creature — Saga 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-4'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.92

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      9%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.38
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="94827"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_94827" src="/boxset_card/94827?collection_id=10&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="47489"
          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">
              88
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mic ss-rare ss-fw ss-2x mr-4"></i>
              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">
                  $1.73

                    <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.17
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="47489"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_47489" src="/boxset_card/47489?collection_id=10&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="28728"
          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">
              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-fdn ss-rare ss-fw ss-2x mr-4"></i>
              Alesha, Who Laughs at Fate


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Human Warrior
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.72

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      11%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.60
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.30
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="28728"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_28728" src="/boxset_card/28728?collection_id=10&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="94640"
          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-fin ss-rare ss-fw ss-2x mr-4"></i>
              Venat, Heart of Hydaelyn // Hydaelyn, the Mothercrystal


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Elder Wizard
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-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">
                      ↑
                      21%
                    </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.05
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.21
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="94640"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_94640" src="/boxset_card/94640?collection_id=10&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="74237"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              201
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-ltr ss-rare ss-fw ss-2x mr-4"></i>
              Éowyn, Fearless Knight


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Human Knight
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.60

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.45
            </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="74237"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_74237" src="/boxset_card/74237?collection_id=10&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="91098"
          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">
              293
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-inr ss-common ss-fw ss-2x mr-4"></i>
              Swamp


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Basic Land — Swamp
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.41

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      4%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.23
            </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="91098"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_91098" src="/boxset_card/91098?collection_id=10&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="95113"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              243
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fin ss-rare ss-fw ss-2x mr-4"></i>
              Squall, SeeD Mercenary


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Human Knight 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-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.25

                    <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.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.34
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="95113"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_95113" src="/boxset_card/95113?collection_id=10&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="92615"
          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">
              91
            </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>
              Cecil, Dark Knight // Cecil, Redeemed Paladin


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Human Knight
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.23

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      7%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.33
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.27
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="92615"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_92615" src="/boxset_card/92615?collection_id=10&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="91097"
          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">
              292
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-inr ss-common ss-fw ss-2x mr-4"></i>
              Swamp


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Basic Land — Swamp
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.17

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      15%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.40
            </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="91097"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_91097" src="/boxset_card/91097?collection_id=10&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="91100"
          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">
              295
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-inr ss-common ss-fw ss-2x mr-4"></i>
              Mountain


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Basic Land — Mountain
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.06

                    <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.63
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.32
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="91100"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_91100" src="/boxset_card/91100?collection_id=10&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="11846"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              157
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-uncommon ss-fw ss-2x mr-4"></i>
              Victimize


            </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-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.92

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.60
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.32
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="11846"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_11846" src="/boxset_card/11846?collection_id=10&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">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.52
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.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=10&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="49582"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              289
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mh2 ss-rare ss-fw ss-2x mr-4"></i>
              Chainer, Nightmare Adept

                <span
                  class="
                    ml-2 px-1.5 py-0.5 text-xs rounded bg-purple-900/30
                    text-purple-400 border border-purple-500/30
                  "
                  title="Etched finish"
                >
                  E
                </span>

            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Human Minion
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.85

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.72
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.28
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="49582"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_49582" src="/boxset_card/49582?collection_id=10&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="94617"
          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">
              16
            </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>
              Dion, Bahamut&#39;s Dominant // Bahamut, Warden of Light


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Human Noble 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">
                <div class="flex items-center gap-2">
                  $0.78

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      18%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.07
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.31
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="94617"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_94617" src="/boxset_card/94617?collection_id=10&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="18196"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              80
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-dmr ss-uncommon ss-fw ss-2x mr-4"></i>
              Dread Return


            </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-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.72

                    <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">
                $0.02
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.35
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="18196"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_18196" src="/boxset_card/18196?collection_id=10&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="91093"
          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">
              288
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-inr ss-common ss-fw ss-2x mr-4"></i>
              Plains


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Basic Land — Plains
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.67

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.20
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.31
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="91093"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_91093" src="/boxset_card/91093?collection_id=10&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="90934"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              151
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-inr ss-common ss-fw ss-2x mr-4"></i>
              Faithless Looting


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.66

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      5%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.50
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.16
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="90934"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_90934" src="/boxset_card/90934?collection_id=10&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="91094"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              289
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-inr ss-common ss-fw ss-2x mr-4"></i>
              Plains


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Basic Land — Plains
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.56

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      8%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.20
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.31
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="91094"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_91094" src="/boxset_card/91094?collection_id=10&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="49377"
          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">
              230
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mh1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Talisman of Conviction


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.46

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.30
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="49377"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_49377" src="/boxset_card/49377?collection_id=10&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="18826"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              223
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-dmu ss-uncommon ss-fw ss-2x mr-4"></i>
              Tori D&#39;Avenant, Fury Rider


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Human Knight
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.39

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.12
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="18826"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_18826" src="/boxset_card/18826?collection_id=10&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="47462"
          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">
              79
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mic ss-rare ss-fw ss-2x mr-4"></i>
              Angel of Glory&#39;s Rise


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Angel
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-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>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.39

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-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.07
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.59
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="47462"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_47462" src="/boxset_card/47462?collection_id=10&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="49358"
          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">
              208
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mh2 ss-rare ss-fw ss-2x mr-4"></i>
              Priest of Fell Rites


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Human Warlock
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.38

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.05
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.16
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="49358"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_49358" src="/boxset_card/49358?collection_id=10&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="76106"
          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">
              346
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-common ss-fw ss-2x mr-4"></i>
              Path of Ancestry


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.29

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      12%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.13
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="76106"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_76106" src="/boxset_card/76106?collection_id=10&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="94772"
          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">
              105
            </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>
              Kain, Traitorous Dragoon


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Human Knight
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.29

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.03
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.43
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="94772"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_94772" src="/boxset_card/94772?collection_id=10&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="73746"
          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">
              37
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-ltr ss-common ss-fw ss-2x mr-4"></i>
              Westfold Rider


            </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-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.27

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      13%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.02
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.22
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="73746"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_73746" src="/boxset_card/73746?collection_id=10&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="86614"
          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">
              229
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-woe ss-uncommon ss-fw ss-2x mr-4"></i>
              Imodane&#39;s Recruiter // Train Troops


            </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-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.26

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.06
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="86614"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_86614" src="/boxset_card/86614?collection_id=10&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 54 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=10&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next">2</a><a href="/load_collection?collection_id=10&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next" aria-label="Next">&gt;</a></nav>
    </div>
</div>

</template></turbo-stream>