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


      </div>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Surrak and Goreclaw" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/c/9c10934d-9016-43c4-a7ab-56cc7d8f671f.jpg?1783916899" />

        <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">
            Surrak and Goreclaw
        </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 Bear</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-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></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="Surrak and Goreclaw" src="https://cards.scryfall.io/large/front/9/c/9c10934d-9016-43c4-a7ab-56cc7d8f671f.jpg?1783916899" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-08&quot;:22.32},{&quot;2026-06-10&quot;:22.32},{&quot;2026-06-11&quot;:22.32},{&quot;2026-06-12&quot;:22.32},{&quot;2026-06-13&quot;:22.32},{&quot;2026-06-14&quot;:22.32},{&quot;2026-06-15&quot;:22.32},{&quot;2026-06-16&quot;:22.32},{&quot;2026-06-17&quot;:22.32},{&quot;2026-06-18&quot;:22.32},{&quot;2026-06-19&quot;:21.72},{&quot;2026-06-20&quot;:21.72},{&quot;2026-06-21&quot;:21.72},{&quot;2026-06-22&quot;:21.72},{&quot;2026-06-24&quot;:21.92},{&quot;2026-06-25&quot;:21.92},{&quot;2026-06-26&quot;:21.92},{&quot;2026-06-27&quot;:21.92},{&quot;2026-06-28&quot;:21.92},{&quot;2026-06-29&quot;:21.92},{&quot;2026-06-30&quot;:21.92},{&quot;2026-07-01&quot;:23.2},{&quot;2026-07-02&quot;:23.2},{&quot;2026-07-03&quot;:23.2},{&quot;2026-07-04&quot;:23.2},{&quot;2026-07-05&quot;:23.2},{&quot;2026-07-06&quot;:23.2},{&quot;2026-07-07&quot;:23.2},{&quot;2026-07-08&quot;:23.2},{&quot;2026-07-09&quot;:23.2},{&quot;2026-07-10&quot;:23.2},{&quot;2026-07-11&quot;:23.2},{&quot;2026-07-12&quot;:23.2},{&quot;2026-07-13&quot;:23.2},{&quot;2026-07-14&quot;:23.2},{&quot;2026-07-15&quot;:23.45},{&quot;2026-07-16&quot;:23.45},{&quot;2026-07-17&quot;:23.96},{&quot;2026-07-18&quot;:23.96},{&quot;2026-07-19&quot;:23.96},{&quot;2026-07-20&quot;:23.96},{&quot;2026-07-21&quot;:24.0},{&quot;2026-07-23&quot;:24.0},{&quot;2026-07-25&quot;:24.0},{&quot;2026-07-26&quot;:24.0},{&quot;2026-07-27&quot;:24.0},{&quot;2026-07-29&quot;:24.0},{&quot;2026-07-30&quot;:24.0},{&quot;2026-07-31&quot;:24.0},{&quot;2026-08-01&quot;:24.0},{&quot;2026-08-02&quot;:24.08},{&quot;2026-08-03&quot;:24.08},{&quot;2026-08-04&quot;:24.08},{&quot;2026-08-05&quot;:24.1},{&quot;2026-08-07&quot;:24.1},{&quot;2026-08-08&quot;:24.1},{&quot;2026-08-09&quot;:24.1},{&quot;2026-08-10&quot;:24.1},{&quot;2026-08-11&quot;:24.1},{&quot;2026-08-12&quot;:24.1},{&quot;2026-08-13&quot;:24.27},{&quot;2026-08-14&quot;:24.27},{&quot;2026-08-15&quot;:24.27},{&quot;2026-08-16&quot;:24.41},{&quot;2026-08-17&quot;:25.55},{&quot;2026-08-18&quot;:26.17},{&quot;2026-08-19&quot;:26.17},{&quot;2026-08-20&quot;:26.17},{&quot;2026-08-21&quot;:26.71},{&quot;2026-08-22&quot;:26.71},{&quot;2026-08-23&quot;:26.71},{&quot;2026-08-24&quot;:26.71},{&quot;2026-08-25&quot;:26.71},{&quot;2026-08-26&quot;:26.75},{&quot;2026-08-27&quot;:26.75},{&quot;2026-08-28&quot;:26.75},{&quot;2026-08-29&quot;:26.75},{&quot;2026-08-30&quot;:26.75},{&quot;2026-08-31&quot;:26.75},{&quot;2026-09-01&quot;:26.75},{&quot;2026-09-02&quot;:26.75},{&quot;2026-09-03&quot;:26.75},{&quot;2026-09-04&quot;:26.75},{&quot;2026-09-05&quot;:26.94},{&quot;2026-09-06&quot;:27.19},{&quot;2026-09-07&quot;:27.19},{&quot;2026-09-08&quot;:27.41},{&quot;2026-09-09&quot;:27.41},{&quot;2026-09-10&quot;:27.67},{&quot;2026-09-11&quot;:27.67}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:11.28},{&quot;2026-06-10&quot;:11.51},{&quot;2026-06-11&quot;:11.55},{&quot;2026-06-12&quot;:11.55},{&quot;2026-06-13&quot;:11.54},{&quot;2026-06-14&quot;:11.54},{&quot;2026-06-15&quot;:11.54},{&quot;2026-06-16&quot;:11.59},{&quot;2026-06-17&quot;:11.59},{&quot;2026-06-18&quot;:11.59},{&quot;2026-06-19&quot;:11.22},{&quot;2026-06-20&quot;:11.2},{&quot;2026-06-21&quot;:11.12},{&quot;2026-06-22&quot;:11.02},{&quot;2026-06-24&quot;:10.66},{&quot;2026-06-25&quot;:10.24},{&quot;2026-06-26&quot;:8.93},{&quot;2026-06-27&quot;:9.19},{&quot;2026-06-28&quot;:8.4},{&quot;2026-06-29&quot;:8.21},{&quot;2026-06-30&quot;:8.65},{&quot;2026-07-01&quot;:8.78},{&quot;2026-07-02&quot;:8.76},{&quot;2026-07-03&quot;:8.77},{&quot;2026-07-04&quot;:8.83},{&quot;2026-07-05&quot;:8.9},{&quot;2026-07-06&quot;:8.99},{&quot;2026-07-07&quot;:8.96},{&quot;2026-07-08&quot;:9.01},{&quot;2026-07-09&quot;:8.95},{&quot;2026-07-10&quot;:9.3},{&quot;2026-07-11&quot;:9.21},{&quot;2026-07-12&quot;:9.23},{&quot;2026-07-13&quot;:9.32},{&quot;2026-07-14&quot;:9.32},{&quot;2026-07-15&quot;:9.28},{&quot;2026-07-16&quot;:8.76},{&quot;2026-07-17&quot;:8.8},{&quot;2026-07-18&quot;:8.73},{&quot;2026-07-19&quot;:8.95},{&quot;2026-07-20&quot;:9.22},{&quot;2026-07-21&quot;:9.67},{&quot;2026-07-23&quot;:10.0},{&quot;2026-07-25&quot;:10.12},{&quot;2026-07-26&quot;:10.17},{&quot;2026-07-27&quot;:10.14},{&quot;2026-07-29&quot;:10.42},{&quot;2026-07-30&quot;:10.52},{&quot;2026-07-31&quot;:10.66},{&quot;2026-08-01&quot;:10.65},{&quot;2026-08-02&quot;:10.59},{&quot;2026-08-03&quot;:10.61},{&quot;2026-08-04&quot;:10.87},{&quot;2026-08-05&quot;:11.08},{&quot;2026-08-07&quot;:11.3},{&quot;2026-08-08&quot;:11.4},{&quot;2026-08-09&quot;:11.8},{&quot;2026-08-10&quot;:11.85},{&quot;2026-08-11&quot;:11.97},{&quot;2026-08-12&quot;:12.2},{&quot;2026-08-13&quot;:12.66},{&quot;2026-08-14&quot;:13.48},{&quot;2026-08-15&quot;:13.99},{&quot;2026-08-16&quot;:14.68},{&quot;2026-08-17&quot;:15.96},{&quot;2026-08-18&quot;:15.56},{&quot;2026-08-19&quot;:14.32},{&quot;2026-08-20&quot;:14.32},{&quot;2026-08-21&quot;:15.58},{&quot;2026-08-22&quot;:15.87},{&quot;2026-08-23&quot;:16.5},{&quot;2026-08-24&quot;:17.48},{&quot;2026-08-25&quot;:17.48},{&quot;2026-08-26&quot;:17.74},{&quot;2026-08-27&quot;:18.05},{&quot;2026-08-28&quot;:18.66},{&quot;2026-08-29&quot;:18.66},{&quot;2026-08-30&quot;:19.39},{&quot;2026-08-31&quot;:20.73},{&quot;2026-09-01&quot;:20.73},{&quot;2026-09-02&quot;:22.72},{&quot;2026-09-03&quot;:22.51},{&quot;2026-09-04&quot;:22.58},{&quot;2026-09-05&quot;:21.87},{&quot;2026-09-06&quot;:21.48},{&quot;2026-09-07&quot;:21.72},{&quot;2026-09-08&quot;:21.5},{&quot;2026-09-09&quot;:20.35},{&quot;2026-09-10&quot;:20.09},{&quot;2026-09-11&quot;:20.04}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

        <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">
            Birds of Paradise
        </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 — Bird</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-g'></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="Birds of Paradise" src="https://cards.scryfall.io/large/front/e/6/e6bc963e-042f-4cdc-be38-de8e386c00b3.jpg?1783931841" />
    </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.62
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:12.58},{&quot;2026-06-11&quot;:12.7},{&quot;2026-06-12&quot;:12.74},{&quot;2026-06-13&quot;:12.74},{&quot;2026-06-14&quot;:12.74},{&quot;2026-06-15&quot;:12.74},{&quot;2026-06-16&quot;:12.85},{&quot;2026-06-17&quot;:12.81},{&quot;2026-06-18&quot;:12.81},{&quot;2026-06-19&quot;:12.83},{&quot;2026-06-20&quot;:12.83},{&quot;2026-06-21&quot;:12.83},{&quot;2026-06-22&quot;:12.82},{&quot;2026-06-23&quot;:12.82},{&quot;2026-06-24&quot;:12.82},{&quot;2026-06-25&quot;:12.82},{&quot;2026-06-26&quot;:12.82},{&quot;2026-06-27&quot;:12.82},{&quot;2026-06-28&quot;:12.82},{&quot;2026-06-29&quot;:12.95},{&quot;2026-06-30&quot;:12.95},{&quot;2026-07-01&quot;:12.95},{&quot;2026-07-02&quot;:12.95},{&quot;2026-07-03&quot;:12.9},{&quot;2026-07-04&quot;:12.9},{&quot;2026-07-05&quot;:12.9},{&quot;2026-07-06&quot;:12.9},{&quot;2026-07-07&quot;:12.9},{&quot;2026-07-08&quot;:12.9},{&quot;2026-07-09&quot;:12.9},{&quot;2026-07-10&quot;:12.99},{&quot;2026-07-11&quot;:12.99},{&quot;2026-07-12&quot;:12.99},{&quot;2026-07-13&quot;:12.99},{&quot;2026-07-14&quot;:12.95},{&quot;2026-07-15&quot;:12.95},{&quot;2026-07-16&quot;:12.95},{&quot;2026-07-17&quot;:12.95},{&quot;2026-07-18&quot;:12.95},{&quot;2026-07-19&quot;:12.9},{&quot;2026-07-20&quot;:12.9},{&quot;2026-07-21&quot;:12.9},{&quot;2026-07-23&quot;:13.1},{&quot;2026-07-25&quot;:13.1},{&quot;2026-07-26&quot;:13.24},{&quot;2026-07-27&quot;:13.24},{&quot;2026-07-29&quot;:13.24},{&quot;2026-07-30&quot;:13.24},{&quot;2026-07-31&quot;:13.17},{&quot;2026-08-01&quot;:13.17},{&quot;2026-08-02&quot;:13.01},{&quot;2026-08-03&quot;:13.01},{&quot;2026-08-04&quot;:13.01},{&quot;2026-08-05&quot;:12.65},{&quot;2026-08-07&quot;:12.65},{&quot;2026-08-08&quot;:12.65},{&quot;2026-08-09&quot;:12.5},{&quot;2026-08-10&quot;:12.52},{&quot;2026-08-11&quot;:12.58},{&quot;2026-08-12&quot;:12.36},{&quot;2026-08-13&quot;:12.48},{&quot;2026-08-14&quot;:12.59},{&quot;2026-08-15&quot;:12.59},{&quot;2026-08-16&quot;:12.59},{&quot;2026-08-17&quot;:12.59},{&quot;2026-08-18&quot;:12.35},{&quot;2026-08-19&quot;:11.73},{&quot;2026-08-20&quot;:11.73},{&quot;2026-08-21&quot;:11.62},{&quot;2026-08-22&quot;:11.64},{&quot;2026-08-23&quot;:11.64},{&quot;2026-08-24&quot;:11.58},{&quot;2026-08-25&quot;:11.58},{&quot;2026-08-26&quot;:11.58},{&quot;2026-08-27&quot;:11.58},{&quot;2026-08-28&quot;:11.39},{&quot;2026-08-29&quot;:11.39},{&quot;2026-08-30&quot;:11.39},{&quot;2026-08-31&quot;:11.42},{&quot;2026-09-01&quot;:11.42},{&quot;2026-09-02&quot;:11.45},{&quot;2026-09-03&quot;:11.45},{&quot;2026-09-04&quot;:11.45},{&quot;2026-09-05&quot;:11.4},{&quot;2026-09-06&quot;:11.4},{&quot;2026-09-07&quot;:11.56},{&quot;2026-09-08&quot;:11.56},{&quot;2026-09-09&quot;:11.56},{&quot;2026-09-10&quot;:11.56},{&quot;2026-09-11&quot;:11.62}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

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

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

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

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

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

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></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="Nature&#39;s Will" src="https://cards.scryfall.io/large/front/c/e/ce7785c2-0b3f-4952-8b2d-71fe73cf64e0.jpg?1783914919" />
    </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.04
              </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">
                $8.18
              </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">$4.40</span>
              <span class="text-xs text-grey-text">Credit: $5.72</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:7.88},{&quot;2026-06-14&quot;:7.88},{&quot;2026-06-15&quot;:7.88},{&quot;2026-06-16&quot;:7.85},{&quot;2026-06-17&quot;:7.79},{&quot;2026-06-18&quot;:7.74},{&quot;2026-06-19&quot;:7.71},{&quot;2026-06-20&quot;:7.71},{&quot;2026-06-21&quot;:7.71},{&quot;2026-06-22&quot;:7.71},{&quot;2026-06-23&quot;:7.76},{&quot;2026-06-24&quot;:7.81},{&quot;2026-06-25&quot;:7.81},{&quot;2026-06-26&quot;:7.81},{&quot;2026-06-27&quot;:7.81},{&quot;2026-06-28&quot;:7.81},{&quot;2026-06-29&quot;:7.88},{&quot;2026-06-30&quot;:7.88},{&quot;2026-07-01&quot;:7.88},{&quot;2026-07-02&quot;:7.88},{&quot;2026-07-03&quot;:7.88},{&quot;2026-07-04&quot;:7.88},{&quot;2026-07-05&quot;:7.88},{&quot;2026-07-06&quot;:7.88},{&quot;2026-07-07&quot;:7.98},{&quot;2026-07-08&quot;:8.0},{&quot;2026-07-09&quot;:7.98},{&quot;2026-07-10&quot;:7.98},{&quot;2026-07-11&quot;:7.81},{&quot;2026-07-12&quot;:7.81},{&quot;2026-07-13&quot;:7.81},{&quot;2026-07-14&quot;:7.81},{&quot;2026-07-15&quot;:7.83},{&quot;2026-07-16&quot;:7.83},{&quot;2026-07-17&quot;:7.81},{&quot;2026-07-18&quot;:7.75},{&quot;2026-07-19&quot;:7.76},{&quot;2026-07-20&quot;:7.81},{&quot;2026-07-21&quot;:7.71},{&quot;2026-07-22&quot;:7.71},{&quot;2026-07-23&quot;:7.71},{&quot;2026-07-24&quot;:7.78},{&quot;2026-07-25&quot;:7.78},{&quot;2026-07-26&quot;:7.78},{&quot;2026-07-27&quot;:7.78},{&quot;2026-07-28&quot;:7.78},{&quot;2026-07-29&quot;:7.77},{&quot;2026-07-30&quot;:7.77},{&quot;2026-07-31&quot;:7.79},{&quot;2026-08-01&quot;:7.79},{&quot;2026-08-02&quot;:7.79},{&quot;2026-08-03&quot;:7.79},{&quot;2026-08-04&quot;:7.87},{&quot;2026-08-05&quot;:8.0},{&quot;2026-08-07&quot;:8.0},{&quot;2026-08-08&quot;:8.0},{&quot;2026-08-09&quot;:7.97},{&quot;2026-08-10&quot;:7.97},{&quot;2026-08-11&quot;:7.97},{&quot;2026-08-12&quot;:7.97},{&quot;2026-08-13&quot;:7.97},{&quot;2026-08-14&quot;:7.89},{&quot;2026-08-15&quot;:7.89},{&quot;2026-08-16&quot;:7.94},{&quot;2026-08-17&quot;:7.94},{&quot;2026-08-18&quot;:7.89},{&quot;2026-08-19&quot;:7.89},{&quot;2026-08-20&quot;:7.89},{&quot;2026-08-21&quot;:7.89},{&quot;2026-08-22&quot;:7.89},{&quot;2026-08-23&quot;:7.89},{&quot;2026-08-24&quot;:7.89},{&quot;2026-08-25&quot;:7.84},{&quot;2026-08-26&quot;:7.89},{&quot;2026-08-27&quot;:7.89},{&quot;2026-08-28&quot;:7.89},{&quot;2026-08-29&quot;:7.89},{&quot;2026-08-30&quot;:7.83},{&quot;2026-08-31&quot;:7.88},{&quot;2026-09-01&quot;:7.88},{&quot;2026-09-02&quot;:7.88},{&quot;2026-09-03&quot;:7.86},{&quot;2026-09-04&quot;:7.86},{&quot;2026-09-05&quot;:7.86},{&quot;2026-09-06&quot;:7.86},{&quot;2026-09-07&quot;:7.92},{&quot;2026-09-08&quot;:7.94},{&quot;2026-09-09&quot;:7.94},{&quot;2026-09-10&quot;:8.09},{&quot;2026-09-11&quot;:8.18}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:6.97},{&quot;2026-06-14&quot;:7.13},{&quot;2026-06-15&quot;:7.13},{&quot;2026-06-16&quot;:6.84},{&quot;2026-06-17&quot;:6.99},{&quot;2026-06-18&quot;:6.99},{&quot;2026-06-19&quot;:6.87},{&quot;2026-06-20&quot;:6.85},{&quot;2026-06-21&quot;:6.77},{&quot;2026-06-22&quot;:6.7},{&quot;2026-06-23&quot;:6.65},{&quot;2026-06-24&quot;:6.51},{&quot;2026-06-25&quot;:6.34},{&quot;2026-06-26&quot;:6.18},{&quot;2026-06-27&quot;:6.18},{&quot;2026-06-28&quot;:6.34},{&quot;2026-06-29&quot;:6.56},{&quot;2026-06-30&quot;:6.55},{&quot;2026-07-01&quot;:6.57},{&quot;2026-07-02&quot;:6.57},{&quot;2026-07-03&quot;:6.29},{&quot;2026-07-04&quot;:6.27},{&quot;2026-07-05&quot;:6.37},{&quot;2026-07-06&quot;:6.1},{&quot;2026-07-07&quot;:6.03},{&quot;2026-07-08&quot;:6.27},{&quot;2026-07-09&quot;:6.66},{&quot;2026-07-10&quot;:6.8},{&quot;2026-07-11&quot;:7.04},{&quot;2026-07-12&quot;:7.26},{&quot;2026-07-13&quot;:7.31},{&quot;2026-07-14&quot;:7.32},{&quot;2026-07-15&quot;:6.7},{&quot;2026-07-16&quot;:6.63},{&quot;2026-07-17&quot;:6.84},{&quot;2026-07-18&quot;:6.71},{&quot;2026-07-19&quot;:6.93},{&quot;2026-07-20&quot;:6.82},{&quot;2026-07-21&quot;:6.93},{&quot;2026-07-22&quot;:6.63},{&quot;2026-07-23&quot;:6.49},{&quot;2026-07-24&quot;:6.35},{&quot;2026-07-25&quot;:6.27},{&quot;2026-07-26&quot;:6.45},{&quot;2026-07-27&quot;:6.33},{&quot;2026-07-28&quot;:6.42},{&quot;2026-07-29&quot;:6.31},{&quot;2026-07-30&quot;:6.32},{&quot;2026-07-31&quot;:6.47},{&quot;2026-08-01&quot;:6.62},{&quot;2026-08-02&quot;:6.77},{&quot;2026-08-03&quot;:6.63},{&quot;2026-08-04&quot;:6.69},{&quot;2026-08-05&quot;:6.87},{&quot;2026-08-07&quot;:6.57},{&quot;2026-08-08&quot;:6.62},{&quot;2026-08-09&quot;:6.32},{&quot;2026-08-10&quot;:6.52},{&quot;2026-08-11&quot;:6.73},{&quot;2026-08-12&quot;:6.56},{&quot;2026-08-13&quot;:6.75},{&quot;2026-08-14&quot;:6.84},{&quot;2026-08-15&quot;:6.86},{&quot;2026-08-16&quot;:6.98},{&quot;2026-08-17&quot;:7.19},{&quot;2026-08-18&quot;:7.17},{&quot;2026-08-19&quot;:7.5},{&quot;2026-08-20&quot;:7.98},{&quot;2026-08-21&quot;:7.98},{&quot;2026-08-22&quot;:8.11},{&quot;2026-08-23&quot;:8.31},{&quot;2026-08-24&quot;:8.59},{&quot;2026-08-25&quot;:8.58},{&quot;2026-08-26&quot;:8.55},{&quot;2026-08-27&quot;:8.49},{&quot;2026-08-28&quot;:8.46},{&quot;2026-08-29&quot;:8.46},{&quot;2026-08-30&quot;:8.17},{&quot;2026-08-31&quot;:8.18},{&quot;2026-09-01&quot;:8.05},{&quot;2026-09-02&quot;:7.8},{&quot;2026-09-03&quot;:8.04},{&quot;2026-09-04&quot;:7.95},{&quot;2026-09-05&quot;:7.78},{&quot;2026-09-06&quot;:7.57},{&quot;2026-09-07&quot;:7.65},{&quot;2026-09-08&quot;:7.35},{&quot;2026-09-09&quot;:7.24},{&quot;2026-09-10&quot;:6.97},{&quot;2026-09-11&quot;:7.04}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="41742"
  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-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">
            Tamiyo&#39;s Safekeeping
        </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">
              ↑
              26%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $6.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="Tamiyo&#39;s Safekeeping" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/f/d/fd4b7ee2-de65-4288-872d-486065a4f226.jpg?1783923839" />

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

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-g'></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="Tamiyo&#39;s Safekeeping" src="https://cards.scryfall.io/large/front/f/d/fd4b7ee2-de65-4288-872d-486065a4f226.jpg?1783923839" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:6.26},{&quot;2026-06-14&quot;:6.18},{&quot;2026-06-15&quot;:6.18},{&quot;2026-06-16&quot;:6.28},{&quot;2026-06-17&quot;:6.28},{&quot;2026-06-18&quot;:6.08},{&quot;2026-06-19&quot;:6.17},{&quot;2026-06-20&quot;:6.17},{&quot;2026-06-21&quot;:6.17},{&quot;2026-06-22&quot;:6.13},{&quot;2026-06-23&quot;:6.43},{&quot;2026-06-24&quot;:5.99},{&quot;2026-06-25&quot;:6.15},{&quot;2026-06-26&quot;:6.14},{&quot;2026-06-27&quot;:6.19},{&quot;2026-06-28&quot;:6.1},{&quot;2026-06-29&quot;:6.1},{&quot;2026-06-30&quot;:6.1},{&quot;2026-07-01&quot;:6.34},{&quot;2026-07-02&quot;:6.57},{&quot;2026-07-03&quot;:6.94},{&quot;2026-07-04&quot;:7.74},{&quot;2026-07-05&quot;:7.97},{&quot;2026-07-06&quot;:8.63},{&quot;2026-07-07&quot;:8.98},{&quot;2026-07-08&quot;:10.72},{&quot;2026-07-09&quot;:11.69},{&quot;2026-07-10&quot;:10.92},{&quot;2026-07-11&quot;:10.72},{&quot;2026-07-12&quot;:10.72},{&quot;2026-07-13&quot;:10.55},{&quot;2026-07-14&quot;:10.63},{&quot;2026-07-15&quot;:10.81},{&quot;2026-07-16&quot;:10.85},{&quot;2026-07-17&quot;:10.47},{&quot;2026-07-18&quot;:10.42},{&quot;2026-07-19&quot;:10.07},{&quot;2026-07-20&quot;:10.07},{&quot;2026-07-21&quot;:10.07},{&quot;2026-07-22&quot;:10.6},{&quot;2026-07-23&quot;:10.6},{&quot;2026-07-24&quot;:10.03},{&quot;2026-07-25&quot;:9.3},{&quot;2026-07-26&quot;:9.3},{&quot;2026-07-27&quot;:8.71},{&quot;2026-07-28&quot;:8.71},{&quot;2026-07-29&quot;:8.61},{&quot;2026-07-30&quot;:7.92},{&quot;2026-07-31&quot;:8.47},{&quot;2026-08-01&quot;:8.41},{&quot;2026-08-02&quot;:8.92},{&quot;2026-08-03&quot;:9.32},{&quot;2026-08-04&quot;:10.2},{&quot;2026-08-05&quot;:11.39},{&quot;2026-08-07&quot;:9.89},{&quot;2026-08-08&quot;:9.89},{&quot;2026-08-09&quot;:9.43},{&quot;2026-08-10&quot;:9.43},{&quot;2026-08-11&quot;:9.56},{&quot;2026-08-12&quot;:9.56},{&quot;2026-08-13&quot;:9.67},{&quot;2026-08-14&quot;:9.74},{&quot;2026-08-15&quot;:9.74},{&quot;2026-08-16&quot;:9.74},{&quot;2026-08-17&quot;:9.74},{&quot;2026-08-18&quot;:9.74},{&quot;2026-08-19&quot;:9.28},{&quot;2026-08-20&quot;:9.74},{&quot;2026-08-21&quot;:9.2},{&quot;2026-08-22&quot;:9.2},{&quot;2026-08-23&quot;:8.67},{&quot;2026-08-24&quot;:8.67},{&quot;2026-08-25&quot;:8.76},{&quot;2026-08-26&quot;:8.76},{&quot;2026-08-27&quot;:8.76},{&quot;2026-08-28&quot;:8.76},{&quot;2026-08-29&quot;:8.76},{&quot;2026-08-30&quot;:8.97},{&quot;2026-08-31&quot;:8.97},{&quot;2026-09-01&quot;:9.11},{&quot;2026-09-02&quot;:10.31},{&quot;2026-09-03&quot;:11.98},{&quot;2026-09-04&quot;:12.05},{&quot;2026-09-05&quot;:12.06},{&quot;2026-09-06&quot;:12.06},{&quot;2026-09-07&quot;:12.56},{&quot;2026-09-08&quot;:13.77},{&quot;2026-09-09&quot;:13.94},{&quot;2026-09-10&quot;:14.74},{&quot;2026-09-11&quot;:14.69}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:5.59},{&quot;2026-06-14&quot;:5.62},{&quot;2026-06-15&quot;:5.73},{&quot;2026-06-16&quot;:5.61},{&quot;2026-06-17&quot;:5.04},{&quot;2026-06-18&quot;:4.84},{&quot;2026-06-19&quot;:4.97},{&quot;2026-06-20&quot;:5.07},{&quot;2026-06-21&quot;:5.01},{&quot;2026-06-22&quot;:5.22},{&quot;2026-06-23&quot;:4.94},{&quot;2026-06-24&quot;:5.12},{&quot;2026-06-25&quot;:5.08},{&quot;2026-06-26&quot;:4.85},{&quot;2026-06-27&quot;:4.94},{&quot;2026-06-28&quot;:5.09},{&quot;2026-06-29&quot;:4.84},{&quot;2026-06-30&quot;:4.98},{&quot;2026-07-01&quot;:4.84},{&quot;2026-07-02&quot;:4.92},{&quot;2026-07-03&quot;:4.94},{&quot;2026-07-04&quot;:4.93},{&quot;2026-07-05&quot;:4.97},{&quot;2026-07-06&quot;:4.77},{&quot;2026-07-07&quot;:4.75},{&quot;2026-07-08&quot;:4.71},{&quot;2026-07-09&quot;:4.75},{&quot;2026-07-10&quot;:5.05},{&quot;2026-07-11&quot;:4.82},{&quot;2026-07-12&quot;:4.92},{&quot;2026-07-13&quot;:5.32},{&quot;2026-07-14&quot;:5.5},{&quot;2026-07-15&quot;:5.2},{&quot;2026-07-16&quot;:5.07},{&quot;2026-07-17&quot;:4.68},{&quot;2026-07-18&quot;:4.72},{&quot;2026-07-19&quot;:4.85},{&quot;2026-07-20&quot;:5.56},{&quot;2026-07-21&quot;:5.28},{&quot;2026-07-22&quot;:5.12},{&quot;2026-07-23&quot;:5.57},{&quot;2026-07-24&quot;:5.76},{&quot;2026-07-25&quot;:5.85},{&quot;2026-07-26&quot;:5.75},{&quot;2026-07-27&quot;:5.76},{&quot;2026-07-28&quot;:6.61},{&quot;2026-07-29&quot;:7.61},{&quot;2026-07-30&quot;:6.11},{&quot;2026-07-31&quot;:5.71},{&quot;2026-08-01&quot;:6.11},{&quot;2026-08-02&quot;:6.06},{&quot;2026-08-03&quot;:5.63},{&quot;2026-08-04&quot;:4.98},{&quot;2026-08-05&quot;:4.73},{&quot;2026-08-07&quot;:4.95},{&quot;2026-08-08&quot;:4.94},{&quot;2026-08-09&quot;:5.24},{&quot;2026-08-10&quot;:5.38},{&quot;2026-08-11&quot;:5.4},{&quot;2026-08-12&quot;:5.45},{&quot;2026-08-13&quot;:5.19},{&quot;2026-08-14&quot;:5.21},{&quot;2026-08-15&quot;:5.31},{&quot;2026-08-16&quot;:5.36},{&quot;2026-08-17&quot;:5.47},{&quot;2026-08-18&quot;:5.19},{&quot;2026-08-19&quot;:5.04},{&quot;2026-08-20&quot;:5.1},{&quot;2026-08-21&quot;:5.13},{&quot;2026-08-22&quot;:5.31},{&quot;2026-08-23&quot;:5.42},{&quot;2026-08-24&quot;:5.35},{&quot;2026-08-25&quot;:5.51},{&quot;2026-08-26&quot;:5.3},{&quot;2026-08-27&quot;:5.29},{&quot;2026-08-28&quot;:5.42},{&quot;2026-08-29&quot;:5.42},{&quot;2026-08-30&quot;:5.27},{&quot;2026-08-31&quot;:5.34},{&quot;2026-09-01&quot;:5.4},{&quot;2026-09-02&quot;:5.18},{&quot;2026-09-03&quot;:5.36},{&quot;2026-09-04&quot;:5.12},{&quot;2026-09-05&quot;:5.22},{&quot;2026-09-06&quot;:5.65},{&quot;2026-09-07&quot;:5.67},{&quot;2026-09-08&quot;:5.47},{&quot;2026-09-09&quot;:5.45},{&quot;2026-09-10&quot;:6.33},{&quot;2026-09-11&quot;:6.6}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $6.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="Asceticism" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/2/72eefa85-39de-4f9f-aba1-7520b358c6c4.jpg?1783932165" />

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

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></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="Asceticism" src="https://cards.scryfall.io/large/front/7/2/72eefa85-39de-4f9f-aba1-7520b358c6c4.jpg?1783932165" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:5.56},{&quot;2026-06-14&quot;:5.65},{&quot;2026-06-15&quot;:5.93},{&quot;2026-06-16&quot;:6.16},{&quot;2026-06-17&quot;:6.22},{&quot;2026-06-18&quot;:6.32},{&quot;2026-06-19&quot;:6.69},{&quot;2026-06-20&quot;:6.69},{&quot;2026-06-21&quot;:7.23},{&quot;2026-06-22&quot;:7.14},{&quot;2026-06-23&quot;:7.41},{&quot;2026-06-24&quot;:7.41},{&quot;2026-06-25&quot;:7.42},{&quot;2026-06-26&quot;:7.42},{&quot;2026-06-27&quot;:7.55},{&quot;2026-06-28&quot;:7.55},{&quot;2026-06-29&quot;:7.43},{&quot;2026-06-30&quot;:7.43},{&quot;2026-07-01&quot;:7.44},{&quot;2026-07-02&quot;:7.44},{&quot;2026-07-03&quot;:7.44},{&quot;2026-07-04&quot;:7.66},{&quot;2026-07-05&quot;:7.78},{&quot;2026-07-06&quot;:8.02},{&quot;2026-07-07&quot;:8.02},{&quot;2026-07-08&quot;:8.02},{&quot;2026-07-09&quot;:7.77},{&quot;2026-07-10&quot;:7.67},{&quot;2026-07-11&quot;:7.67},{&quot;2026-07-12&quot;:7.67},{&quot;2026-07-13&quot;:7.55},{&quot;2026-07-14&quot;:7.55},{&quot;2026-07-15&quot;:7.33},{&quot;2026-07-16&quot;:7.33},{&quot;2026-07-17&quot;:7.33},{&quot;2026-07-18&quot;:7.33},{&quot;2026-07-19&quot;:7.33},{&quot;2026-07-20&quot;:7.41},{&quot;2026-07-21&quot;:7.41},{&quot;2026-07-22&quot;:7.36},{&quot;2026-07-23&quot;:7.36},{&quot;2026-07-24&quot;:6.83},{&quot;2026-07-25&quot;:6.73},{&quot;2026-07-26&quot;:6.7},{&quot;2026-07-27&quot;:6.33},{&quot;2026-07-28&quot;:6.41},{&quot;2026-07-29&quot;:6.22},{&quot;2026-07-30&quot;:6.36},{&quot;2026-07-31&quot;:6.36},{&quot;2026-08-01&quot;:6.34},{&quot;2026-08-02&quot;:6.31},{&quot;2026-08-03&quot;:6.31},{&quot;2026-08-04&quot;:6.45},{&quot;2026-08-05&quot;:6.45},{&quot;2026-08-07&quot;:6.69},{&quot;2026-08-08&quot;:6.7},{&quot;2026-08-09&quot;:6.7},{&quot;2026-08-10&quot;:6.66},{&quot;2026-08-11&quot;:6.66},{&quot;2026-08-12&quot;:6.8},{&quot;2026-08-13&quot;:6.81},{&quot;2026-08-14&quot;:6.84},{&quot;2026-08-15&quot;:6.78},{&quot;2026-08-16&quot;:6.72},{&quot;2026-08-17&quot;:6.71},{&quot;2026-08-18&quot;:6.65},{&quot;2026-08-19&quot;:6.57},{&quot;2026-08-20&quot;:6.49},{&quot;2026-08-21&quot;:6.49},{&quot;2026-08-22&quot;:6.63},{&quot;2026-08-23&quot;:6.58},{&quot;2026-08-24&quot;:6.58},{&quot;2026-08-25&quot;:6.68},{&quot;2026-08-26&quot;:6.68},{&quot;2026-08-27&quot;:6.59},{&quot;2026-08-28&quot;:6.58},{&quot;2026-08-29&quot;:6.58},{&quot;2026-08-30&quot;:6.58},{&quot;2026-08-31&quot;:6.49},{&quot;2026-09-01&quot;:6.45},{&quot;2026-09-02&quot;:6.47},{&quot;2026-09-03&quot;:6.5},{&quot;2026-09-04&quot;:6.45},{&quot;2026-09-05&quot;:6.4},{&quot;2026-09-06&quot;:6.45},{&quot;2026-09-07&quot;:6.89},{&quot;2026-09-08&quot;:6.43},{&quot;2026-09-09&quot;:6.46},{&quot;2026-09-10&quot;:6.46},{&quot;2026-09-11&quot;:6.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="14457"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-clb ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Artifact Creature — Construct
      </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">
            $6.16
          </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="Stuffy Doll" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/7/978c2c7d-6898-4be2-aed7-e673210ce654.jpg?1783922384" />

        <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">
            Stuffy Doll
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Stuffy Doll" src="https://cards.scryfall.io/large/front/9/7/978c2c7d-6898-4be2-aed7-e673210ce654.jpg?1783922384" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:5.51},{&quot;2026-06-14&quot;:5.41},{&quot;2026-06-15&quot;:5.4},{&quot;2026-06-16&quot;:5.42},{&quot;2026-06-17&quot;:5.42},{&quot;2026-06-18&quot;:5.56},{&quot;2026-06-19&quot;:5.45},{&quot;2026-06-20&quot;:5.4},{&quot;2026-06-21&quot;:5.29},{&quot;2026-06-22&quot;:5.29},{&quot;2026-06-23&quot;:5.4},{&quot;2026-06-24&quot;:5.48},{&quot;2026-06-25&quot;:5.52},{&quot;2026-06-26&quot;:5.69},{&quot;2026-06-27&quot;:5.74},{&quot;2026-06-28&quot;:5.85},{&quot;2026-06-29&quot;:6.0},{&quot;2026-06-30&quot;:6.27},{&quot;2026-07-01&quot;:6.43},{&quot;2026-07-02&quot;:6.41},{&quot;2026-07-03&quot;:6.41},{&quot;2026-07-04&quot;:6.41},{&quot;2026-07-05&quot;:6.52},{&quot;2026-07-06&quot;:6.73},{&quot;2026-07-07&quot;:6.78},{&quot;2026-07-08&quot;:6.68},{&quot;2026-07-09&quot;:6.56},{&quot;2026-07-10&quot;:6.42},{&quot;2026-07-11&quot;:6.32},{&quot;2026-07-12&quot;:6.34},{&quot;2026-07-13&quot;:6.25},{&quot;2026-07-14&quot;:6.16},{&quot;2026-07-15&quot;:6.16},{&quot;2026-07-16&quot;:6.09},{&quot;2026-07-17&quot;:6.19},{&quot;2026-07-18&quot;:6.12},{&quot;2026-07-19&quot;:6.12},{&quot;2026-07-20&quot;:6.21},{&quot;2026-07-21&quot;:5.95},{&quot;2026-07-22&quot;:6.07},{&quot;2026-07-23&quot;:5.6},{&quot;2026-07-24&quot;:5.43},{&quot;2026-07-25&quot;:5.24},{&quot;2026-07-26&quot;:5.23},{&quot;2026-07-27&quot;:5.23},{&quot;2026-07-28&quot;:5.19},{&quot;2026-07-29&quot;:5.44},{&quot;2026-07-30&quot;:5.45},{&quot;2026-07-31&quot;:5.35},{&quot;2026-08-01&quot;:5.41},{&quot;2026-08-02&quot;:5.54},{&quot;2026-08-03&quot;:5.91},{&quot;2026-08-04&quot;:6.11},{&quot;2026-08-05&quot;:6.06},{&quot;2026-08-07&quot;:6.06},{&quot;2026-08-08&quot;:6.06},{&quot;2026-08-09&quot;:6.04},{&quot;2026-08-10&quot;:6.0},{&quot;2026-08-11&quot;:6.01},{&quot;2026-08-12&quot;:6.01},{&quot;2026-08-13&quot;:5.92},{&quot;2026-08-14&quot;:5.93},{&quot;2026-08-15&quot;:5.9},{&quot;2026-08-16&quot;:5.83},{&quot;2026-08-17&quot;:5.77},{&quot;2026-08-18&quot;:5.8},{&quot;2026-08-19&quot;:5.89},{&quot;2026-08-20&quot;:5.83},{&quot;2026-08-21&quot;:5.89},{&quot;2026-08-22&quot;:5.93},{&quot;2026-08-23&quot;:5.85},{&quot;2026-08-24&quot;:6.14},{&quot;2026-08-25&quot;:6.18},{&quot;2026-08-26&quot;:6.17},{&quot;2026-08-27&quot;:6.05},{&quot;2026-08-28&quot;:5.83},{&quot;2026-08-29&quot;:5.83},{&quot;2026-08-30&quot;:5.81},{&quot;2026-08-31&quot;:5.8},{&quot;2026-09-01&quot;:5.69},{&quot;2026-09-02&quot;:5.78},{&quot;2026-09-03&quot;:5.85},{&quot;2026-09-04&quot;:5.85},{&quot;2026-09-05&quot;:5.88},{&quot;2026-09-06&quot;:5.87},{&quot;2026-09-07&quot;:5.87},{&quot;2026-09-08&quot;:5.86},{&quot;2026-09-09&quot;:6.0},{&quot;2026-09-10&quot;:6.04},{&quot;2026-09-11&quot;:6.16}]}"
        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="49251"
  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">
            Sanctum Weaver
        </span>


      </div>

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

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

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

        <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">
            Sanctum Weaver
        </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 — Dryad</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-g'></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="Sanctum Weaver" src="https://cards.scryfall.io/large/front/4/d/4d42e22d-f60e-40c5-b069-5e1708f3bebc.jpg?1783926826" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

                <span class="text-xs text-accent-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">
                $5.89
              </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.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-11&quot;:7.37},{&quot;2026-06-12&quot;:7.37},{&quot;2026-06-13&quot;:7.37},{&quot;2026-06-14&quot;:7.37},{&quot;2026-06-15&quot;:7.37},{&quot;2026-06-16&quot;:7.37},{&quot;2026-06-17&quot;:7.35},{&quot;2026-06-18&quot;:7.35},{&quot;2026-06-19&quot;:7.35},{&quot;2026-06-20&quot;:7.35},{&quot;2026-06-21&quot;:7.35},{&quot;2026-06-22&quot;:7.35},{&quot;2026-06-23&quot;:7.35},{&quot;2026-06-24&quot;:7.34},{&quot;2026-06-25&quot;:7.34},{&quot;2026-06-26&quot;:7.34},{&quot;2026-06-27&quot;:7.34},{&quot;2026-06-28&quot;:7.34},{&quot;2026-06-29&quot;:7.34},{&quot;2026-06-30&quot;:7.34},{&quot;2026-07-01&quot;:7.34},{&quot;2026-07-02&quot;:7.34},{&quot;2026-07-03&quot;:7.34},{&quot;2026-07-04&quot;:7.34},{&quot;2026-07-05&quot;:7.34},{&quot;2026-07-06&quot;:7.34},{&quot;2026-07-07&quot;:7.34},{&quot;2026-07-08&quot;:7.34},{&quot;2026-07-09&quot;:7.34},{&quot;2026-07-10&quot;:7.34},{&quot;2026-07-11&quot;:7.34},{&quot;2026-07-12&quot;:7.34},{&quot;2026-07-13&quot;:7.34},{&quot;2026-07-14&quot;:7.34},{&quot;2026-07-15&quot;:7.34},{&quot;2026-07-16&quot;:7.34},{&quot;2026-07-17&quot;:7.29},{&quot;2026-07-18&quot;:7.37},{&quot;2026-07-19&quot;:7.37},{&quot;2026-07-20&quot;:7.37},{&quot;2026-07-21&quot;:7.44},{&quot;2026-07-23&quot;:7.44},{&quot;2026-07-25&quot;:7.47},{&quot;2026-07-26&quot;:7.47},{&quot;2026-07-27&quot;:7.47},{&quot;2026-07-28&quot;:6.97},{&quot;2026-07-29&quot;:6.97},{&quot;2026-07-30&quot;:6.97},{&quot;2026-07-31&quot;:6.93},{&quot;2026-08-01&quot;:6.9},{&quot;2026-08-02&quot;:6.9},{&quot;2026-08-03&quot;:6.9},{&quot;2026-08-04&quot;:6.88},{&quot;2026-08-05&quot;:6.35},{&quot;2026-08-07&quot;:6.35},{&quot;2026-08-08&quot;:6.86},{&quot;2026-08-09&quot;:6.86},{&quot;2026-08-10&quot;:6.86},{&quot;2026-08-11&quot;:6.36},{&quot;2026-08-12&quot;:6.36},{&quot;2026-08-13&quot;:6.36},{&quot;2026-08-14&quot;:6.36},{&quot;2026-08-15&quot;:6.36},{&quot;2026-08-16&quot;:6.36},{&quot;2026-08-17&quot;:6.36},{&quot;2026-08-18&quot;:6.36},{&quot;2026-08-19&quot;:6.36},{&quot;2026-08-20&quot;:6.36},{&quot;2026-08-21&quot;:6.36},{&quot;2026-08-22&quot;:6.36},{&quot;2026-08-23&quot;:6.36},{&quot;2026-08-24&quot;:6.31},{&quot;2026-08-25&quot;:6.31},{&quot;2026-08-26&quot;:6.31},{&quot;2026-08-27&quot;:6.31},{&quot;2026-08-28&quot;:6.31},{&quot;2026-08-29&quot;:6.31},{&quot;2026-08-30&quot;:6.31},{&quot;2026-08-31&quot;:6.31},{&quot;2026-09-01&quot;:6.31},{&quot;2026-09-02&quot;:6.31},{&quot;2026-09-03&quot;:6.31},{&quot;2026-09-04&quot;:6.26},{&quot;2026-09-05&quot;:6.26},{&quot;2026-09-06&quot;:6.26},{&quot;2026-09-07&quot;:6.26},{&quot;2026-09-08&quot;:6.2},{&quot;2026-09-09&quot;:6.13},{&quot;2026-09-10&quot;:5.89},{&quot;2026-09-11&quot;:5.89}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:4.89},{&quot;2026-06-12&quot;:4.79},{&quot;2026-06-13&quot;:4.48},{&quot;2026-06-14&quot;:4.47},{&quot;2026-06-15&quot;:3.98},{&quot;2026-06-16&quot;:3.91},{&quot;2026-06-17&quot;:4.01},{&quot;2026-06-18&quot;:4.13},{&quot;2026-06-19&quot;:3.79},{&quot;2026-06-20&quot;:3.61},{&quot;2026-06-21&quot;:3.61},{&quot;2026-06-22&quot;:3.42},{&quot;2026-06-23&quot;:3.31},{&quot;2026-06-24&quot;:3.55},{&quot;2026-06-25&quot;:3.79},{&quot;2026-06-26&quot;:3.7},{&quot;2026-06-27&quot;:3.91},{&quot;2026-06-28&quot;:4.33},{&quot;2026-06-29&quot;:4.42},{&quot;2026-06-30&quot;:4.37},{&quot;2026-07-01&quot;:4.1},{&quot;2026-07-02&quot;:3.75},{&quot;2026-07-03&quot;:3.66},{&quot;2026-07-04&quot;:3.39},{&quot;2026-07-05&quot;:3.5},{&quot;2026-07-06&quot;:3.63},{&quot;2026-07-07&quot;:3.73},{&quot;2026-07-08&quot;:3.74},{&quot;2026-07-09&quot;:4.02},{&quot;2026-07-10&quot;:4.18},{&quot;2026-07-11&quot;:4.27},{&quot;2026-07-12&quot;:4.34},{&quot;2026-07-13&quot;:4.35},{&quot;2026-07-14&quot;:4.39},{&quot;2026-07-15&quot;:4.53},{&quot;2026-07-16&quot;:4.44},{&quot;2026-07-17&quot;:4.16},{&quot;2026-07-18&quot;:3.35},{&quot;2026-07-19&quot;:3.49},{&quot;2026-07-20&quot;:3.77},{&quot;2026-07-21&quot;:3.98},{&quot;2026-07-23&quot;:4.11},{&quot;2026-07-25&quot;:3.78},{&quot;2026-07-26&quot;:3.58},{&quot;2026-07-27&quot;:3.55},{&quot;2026-07-28&quot;:3.65},{&quot;2026-07-29&quot;:3.88},{&quot;2026-07-30&quot;:3.57},{&quot;2026-07-31&quot;:3.39},{&quot;2026-08-01&quot;:3.33},{&quot;2026-08-02&quot;:3.17},{&quot;2026-08-03&quot;:3.22},{&quot;2026-08-04&quot;:3.57},{&quot;2026-08-05&quot;:3.81},{&quot;2026-08-07&quot;:3.84},{&quot;2026-08-08&quot;:3.85},{&quot;2026-08-09&quot;:3.97},{&quot;2026-08-10&quot;:3.99},{&quot;2026-08-11&quot;:3.95},{&quot;2026-08-12&quot;:3.83},{&quot;2026-08-13&quot;:3.72},{&quot;2026-08-14&quot;:3.88},{&quot;2026-08-15&quot;:4.01},{&quot;2026-08-16&quot;:3.86},{&quot;2026-08-17&quot;:4.05},{&quot;2026-08-18&quot;:4.2},{&quot;2026-08-19&quot;:4.45},{&quot;2026-08-20&quot;:4.45},{&quot;2026-08-21&quot;:4.21},{&quot;2026-08-22&quot;:4.06},{&quot;2026-08-23&quot;:4.1},{&quot;2026-08-24&quot;:3.95},{&quot;2026-08-25&quot;:3.95},{&quot;2026-08-26&quot;:4.47},{&quot;2026-08-27&quot;:4.47},{&quot;2026-08-28&quot;:4.23},{&quot;2026-08-29&quot;:4.23},{&quot;2026-08-30&quot;:3.28},{&quot;2026-08-31&quot;:3.29},{&quot;2026-09-01&quot;:3.29},{&quot;2026-09-02&quot;:4.13},{&quot;2026-09-03&quot;:4.52},{&quot;2026-09-04&quot;:4.76},{&quot;2026-09-05&quot;:4.72},{&quot;2026-09-06&quot;:4.74},{&quot;2026-09-07&quot;:4.73},{&quot;2026-09-08&quot;:4.46},{&quot;2026-09-09&quot;:4.75},{&quot;2026-09-10&quot;:5.38},{&quot;2026-09-11&quot;:5.4}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $5.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="Thran Dynamo" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/0/907801dd-179c-4669-b608-d810a7f608fd.jpg?1783932721" />

        <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">
            Thran Dynamo
        </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-4'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Thran Dynamo" src="https://cards.scryfall.io/large/front/9/0/907801dd-179c-4669-b608-d810a7f608fd.jpg?1783932721" />
    </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.25
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  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">$2.00</span>
              <span class="text-xs text-grey-text">Credit: $2.60</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:4.2},{&quot;2026-06-14&quot;:4.28},{&quot;2026-06-15&quot;:4.28},{&quot;2026-06-16&quot;:4.2},{&quot;2026-06-17&quot;:4.2},{&quot;2026-06-18&quot;:4.2},{&quot;2026-06-19&quot;:4.2},{&quot;2026-06-20&quot;:4.2},{&quot;2026-06-21&quot;:4.23},{&quot;2026-06-22&quot;:4.26},{&quot;2026-06-23&quot;:4.31},{&quot;2026-06-24&quot;:4.27},{&quot;2026-06-25&quot;:4.37},{&quot;2026-06-26&quot;:4.37},{&quot;2026-06-27&quot;:4.41},{&quot;2026-06-28&quot;:4.4},{&quot;2026-06-29&quot;:4.4},{&quot;2026-06-30&quot;:4.4},{&quot;2026-07-01&quot;:4.34},{&quot;2026-07-02&quot;:4.38},{&quot;2026-07-03&quot;:4.52},{&quot;2026-07-04&quot;:4.57},{&quot;2026-07-05&quot;:4.69},{&quot;2026-07-06&quot;:4.69},{&quot;2026-07-07&quot;:4.63},{&quot;2026-07-08&quot;:4.73},{&quot;2026-07-09&quot;:4.73},{&quot;2026-07-10&quot;:4.75},{&quot;2026-07-11&quot;:4.7},{&quot;2026-07-12&quot;:4.7},{&quot;2026-07-13&quot;:4.78},{&quot;2026-07-14&quot;:4.55},{&quot;2026-07-15&quot;:4.49},{&quot;2026-07-16&quot;:4.67},{&quot;2026-07-17&quot;:4.68},{&quot;2026-07-18&quot;:4.73},{&quot;2026-07-19&quot;:4.85},{&quot;2026-07-20&quot;:4.85},{&quot;2026-07-21&quot;:4.89},{&quot;2026-07-22&quot;:5.11},{&quot;2026-07-23&quot;:5.11},{&quot;2026-07-24&quot;:5.28},{&quot;2026-07-25&quot;:5.32},{&quot;2026-07-26&quot;:5.3},{&quot;2026-07-27&quot;:5.31},{&quot;2026-07-28&quot;:5.29},{&quot;2026-07-29&quot;:5.29},{&quot;2026-07-30&quot;:5.13},{&quot;2026-07-31&quot;:5.19},{&quot;2026-08-01&quot;:5.15},{&quot;2026-08-02&quot;:5.18},{&quot;2026-08-03&quot;:5.33},{&quot;2026-08-04&quot;:5.33},{&quot;2026-08-05&quot;:5.33},{&quot;2026-08-07&quot;:5.29},{&quot;2026-08-08&quot;:5.11},{&quot;2026-08-09&quot;:5.06},{&quot;2026-08-10&quot;:5.03},{&quot;2026-08-11&quot;:4.97},{&quot;2026-08-12&quot;:5.33},{&quot;2026-08-13&quot;:5.52},{&quot;2026-08-14&quot;:5.52},{&quot;2026-08-15&quot;:5.52},{&quot;2026-08-16&quot;:5.58},{&quot;2026-08-17&quot;:5.58},{&quot;2026-08-18&quot;:5.63},{&quot;2026-08-19&quot;:5.91},{&quot;2026-08-20&quot;:5.95},{&quot;2026-08-21&quot;:5.95},{&quot;2026-08-22&quot;:5.94},{&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.68},{&quot;2026-08-31&quot;:5.77},{&quot;2026-09-01&quot;:5.79},{&quot;2026-09-02&quot;:5.79},{&quot;2026-09-03&quot;:5.79},{&quot;2026-09-04&quot;:5.79},{&quot;2026-09-05&quot;:5.82},{&quot;2026-09-06&quot;:5.6},{&quot;2026-09-07&quot;:5.51},{&quot;2026-09-08&quot;:5.26},{&quot;2026-09-09&quot;:5.25},{&quot;2026-09-10&quot;:5.25},{&quot;2026-09-11&quot;:5.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="19291"
  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">
            Karplusan Forest
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $5.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="Karplusan Forest" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/a/2a83eca4-b6ad-4ec4-91f2-b2a62b32b056.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">
            Karplusan Forest
        </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="Karplusan Forest" src="https://cards.scryfall.io/large/front/2/a/2a83eca4-b6ad-4ec4-91f2-b2a62b32b056.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">
                $2.60
              </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">
                $5.06
              </span>

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Foil</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-13&quot;:4.69},{&quot;2026-06-14&quot;:4.6},{&quot;2026-06-15&quot;:4.58},{&quot;2026-06-16&quot;:4.58},{&quot;2026-06-17&quot;:4.69},{&quot;2026-06-18&quot;:4.9},{&quot;2026-06-19&quot;:4.9},{&quot;2026-06-20&quot;:4.9},{&quot;2026-06-21&quot;:4.89},{&quot;2026-06-22&quot;:4.9},{&quot;2026-06-23&quot;:5.07},{&quot;2026-06-24&quot;:5.07},{&quot;2026-06-25&quot;:5.07},{&quot;2026-06-26&quot;:5.07},{&quot;2026-06-27&quot;:5.07},{&quot;2026-06-28&quot;:5.07},{&quot;2026-06-29&quot;:5.07},{&quot;2026-06-30&quot;:5.07},{&quot;2026-07-01&quot;:5.1},{&quot;2026-07-02&quot;:5.1},{&quot;2026-07-03&quot;:4.93},{&quot;2026-07-04&quot;:4.93},{&quot;2026-07-05&quot;:4.93},{&quot;2026-07-06&quot;:4.93},{&quot;2026-07-07&quot;:4.93},{&quot;2026-07-08&quot;:4.93},{&quot;2026-07-09&quot;:4.93},{&quot;2026-07-10&quot;:4.93},{&quot;2026-07-11&quot;:4.93},{&quot;2026-07-12&quot;:4.85},{&quot;2026-07-13&quot;:4.76},{&quot;2026-07-14&quot;:4.76},{&quot;2026-07-15&quot;:4.77},{&quot;2026-07-16&quot;:4.77},{&quot;2026-07-17&quot;:4.77},{&quot;2026-07-18&quot;:4.77},{&quot;2026-07-19&quot;:4.77},{&quot;2026-07-20&quot;:4.77},{&quot;2026-07-21&quot;:4.78},{&quot;2026-07-22&quot;:4.7},{&quot;2026-07-23&quot;:4.88},{&quot;2026-07-24&quot;:4.88},{&quot;2026-07-25&quot;:4.88},{&quot;2026-07-26&quot;:4.84},{&quot;2026-07-27&quot;:4.77},{&quot;2026-07-28&quot;:4.63},{&quot;2026-07-29&quot;:4.63},{&quot;2026-07-30&quot;:4.75},{&quot;2026-07-31&quot;:4.75},{&quot;2026-08-01&quot;:4.75},{&quot;2026-08-02&quot;:4.84},{&quot;2026-08-03&quot;:4.89},{&quot;2026-08-04&quot;:4.83},{&quot;2026-08-05&quot;:4.79},{&quot;2026-08-07&quot;:4.82},{&quot;2026-08-08&quot;:4.86},{&quot;2026-08-09&quot;:4.86},{&quot;2026-08-10&quot;:4.86},{&quot;2026-08-11&quot;:4.9},{&quot;2026-08-12&quot;:4.9},{&quot;2026-08-13&quot;:4.95},{&quot;2026-08-14&quot;:4.95},{&quot;2026-08-15&quot;:4.95},{&quot;2026-08-16&quot;:4.95},{&quot;2026-08-17&quot;:4.95},{&quot;2026-08-18&quot;:4.95},{&quot;2026-08-19&quot;:4.95},{&quot;2026-08-20&quot;:4.95},{&quot;2026-08-21&quot;:4.95},{&quot;2026-08-22&quot;:4.93},{&quot;2026-08-23&quot;:4.93},{&quot;2026-08-24&quot;:4.91},{&quot;2026-08-25&quot;:4.89},{&quot;2026-08-26&quot;:4.88},{&quot;2026-08-27&quot;:4.88},{&quot;2026-08-28&quot;:4.95},{&quot;2026-08-29&quot;:4.95},{&quot;2026-08-30&quot;:4.99},{&quot;2026-08-31&quot;:4.99},{&quot;2026-09-01&quot;:4.99},{&quot;2026-09-02&quot;:4.99},{&quot;2026-09-03&quot;:5.01},{&quot;2026-09-04&quot;:5.06},{&quot;2026-09-05&quot;:5.06},{&quot;2026-09-06&quot;:5.06},{&quot;2026-09-07&quot;:5.06},{&quot;2026-09-08&quot;:5.06},{&quot;2026-09-09&quot;:5.06},{&quot;2026-09-10&quot;:5.06},{&quot;2026-09-11&quot;:5.06}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.96},{&quot;2026-06-14&quot;:1.96},{&quot;2026-06-15&quot;:1.92},{&quot;2026-06-16&quot;:1.94},{&quot;2026-06-17&quot;:1.97},{&quot;2026-06-18&quot;:2.0},{&quot;2026-06-19&quot;:2.08},{&quot;2026-06-20&quot;:2.0},{&quot;2026-06-21&quot;:2.14},{&quot;2026-06-22&quot;:2.28},{&quot;2026-06-23&quot;:2.26},{&quot;2026-06-24&quot;:2.27},{&quot;2026-06-25&quot;:2.35},{&quot;2026-06-26&quot;:2.35},{&quot;2026-06-27&quot;:2.3},{&quot;2026-06-28&quot;:2.3},{&quot;2026-06-29&quot;:2.26},{&quot;2026-06-30&quot;:2.12},{&quot;2026-07-01&quot;:2.22},{&quot;2026-07-02&quot;:2.22},{&quot;2026-07-03&quot;:2.23},{&quot;2026-07-04&quot;:2.26},{&quot;2026-07-05&quot;:2.18},{&quot;2026-07-06&quot;:2.18},{&quot;2026-07-07&quot;:2.1},{&quot;2026-07-08&quot;:2.1},{&quot;2026-07-09&quot;:1.95},{&quot;2026-07-10&quot;:1.95},{&quot;2026-07-11&quot;:2.0},{&quot;2026-07-12&quot;:1.99},{&quot;2026-07-13&quot;:1.88},{&quot;2026-07-14&quot;:1.88},{&quot;2026-07-15&quot;:1.88},{&quot;2026-07-16&quot;:1.91},{&quot;2026-07-17&quot;:1.85},{&quot;2026-07-18&quot;:1.78},{&quot;2026-07-19&quot;:1.76},{&quot;2026-07-20&quot;:1.77},{&quot;2026-07-21&quot;:1.77},{&quot;2026-07-22&quot;:1.62},{&quot;2026-07-23&quot;:1.61},{&quot;2026-07-24&quot;:1.61},{&quot;2026-07-25&quot;:1.65},{&quot;2026-07-26&quot;:1.67},{&quot;2026-07-27&quot;:1.7},{&quot;2026-07-28&quot;:1.77},{&quot;2026-07-29&quot;:1.77},{&quot;2026-07-30&quot;:1.77},{&quot;2026-07-31&quot;:1.79},{&quot;2026-08-01&quot;:1.8},{&quot;2026-08-02&quot;:1.86},{&quot;2026-08-03&quot;:1.86},{&quot;2026-08-04&quot;:1.97},{&quot;2026-08-05&quot;:2.01},{&quot;2026-08-07&quot;:2.1},{&quot;2026-08-08&quot;:2.15},{&quot;2026-08-09&quot;:2.2},{&quot;2026-08-10&quot;:2.33},{&quot;2026-08-11&quot;:2.33},{&quot;2026-08-12&quot;:2.31},{&quot;2026-08-13&quot;:2.35},{&quot;2026-08-14&quot;:2.28},{&quot;2026-08-15&quot;:2.38},{&quot;2026-08-16&quot;:2.4},{&quot;2026-08-17&quot;:2.47},{&quot;2026-08-18&quot;:2.47},{&quot;2026-08-19&quot;:2.5},{&quot;2026-08-20&quot;:2.44},{&quot;2026-08-21&quot;:2.44},{&quot;2026-08-22&quot;:2.6},{&quot;2026-08-23&quot;:2.59},{&quot;2026-08-24&quot;:2.56},{&quot;2026-08-25&quot;:2.7},{&quot;2026-08-26&quot;:2.72},{&quot;2026-08-27&quot;:2.61},{&quot;2026-08-28&quot;:2.67},{&quot;2026-08-29&quot;:2.67},{&quot;2026-08-30&quot;:2.65},{&quot;2026-08-31&quot;:2.73},{&quot;2026-09-01&quot;:2.74},{&quot;2026-09-02&quot;:2.77},{&quot;2026-09-03&quot;:2.71},{&quot;2026-09-04&quot;:2.58},{&quot;2026-09-05&quot;:2.54},{&quot;2026-09-06&quot;:2.59},{&quot;2026-09-07&quot;:2.59},{&quot;2026-09-08&quot;:2.59},{&quot;2026-09-09&quot;:2.49},{&quot;2026-09-10&quot;:2.59},{&quot;2026-09-11&quot;:2.6}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Lightning Greaves" src="https://cards.scryfall.io/large/front/3/3/331013f6-976a-4dac-9939-1006e474e108.jpg?1783915595" />
    </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.99
              </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">
                $5.87
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:6.0},{&quot;2026-06-14&quot;:6.0},{&quot;2026-06-15&quot;:6.09},{&quot;2026-06-16&quot;:6.09},{&quot;2026-06-17&quot;:6.09},{&quot;2026-06-18&quot;:6.09},{&quot;2026-06-19&quot;:6.09},{&quot;2026-06-20&quot;:6.09},{&quot;2026-06-21&quot;:6.09},{&quot;2026-06-22&quot;:6.11},{&quot;2026-06-23&quot;:6.11},{&quot;2026-06-24&quot;:6.0},{&quot;2026-06-25&quot;:6.0},{&quot;2026-06-26&quot;:6.0},{&quot;2026-06-27&quot;:6.0},{&quot;2026-06-28&quot;:6.0},{&quot;2026-06-29&quot;:6.0},{&quot;2026-06-30&quot;:5.99},{&quot;2026-07-01&quot;:5.99},{&quot;2026-07-02&quot;:5.88},{&quot;2026-07-03&quot;:5.87},{&quot;2026-07-04&quot;:5.87},{&quot;2026-07-05&quot;:5.83},{&quot;2026-07-06&quot;:5.83},{&quot;2026-07-07&quot;:5.79},{&quot;2026-07-08&quot;:5.79},{&quot;2026-07-09&quot;:5.79},{&quot;2026-07-10&quot;:5.78},{&quot;2026-07-11&quot;:5.78},{&quot;2026-07-12&quot;:5.82},{&quot;2026-07-13&quot;:5.82},{&quot;2026-07-14&quot;:5.82},{&quot;2026-07-15&quot;:5.85},{&quot;2026-07-16&quot;:5.85},{&quot;2026-07-17&quot;:5.87},{&quot;2026-07-18&quot;:5.87},{&quot;2026-07-19&quot;:5.82},{&quot;2026-07-20&quot;:5.82},{&quot;2026-07-21&quot;:5.76},{&quot;2026-07-22&quot;:5.76},{&quot;2026-07-23&quot;:5.76},{&quot;2026-07-24&quot;:5.82},{&quot;2026-07-25&quot;:5.82},{&quot;2026-07-26&quot;:5.82},{&quot;2026-07-27&quot;:5.68},{&quot;2026-07-28&quot;:5.68},{&quot;2026-07-29&quot;:5.68},{&quot;2026-07-30&quot;:5.68},{&quot;2026-07-31&quot;:5.68},{&quot;2026-08-01&quot;:5.68},{&quot;2026-08-02&quot;:5.68},{&quot;2026-08-03&quot;:5.64},{&quot;2026-08-04&quot;:5.72},{&quot;2026-08-05&quot;:5.72},{&quot;2026-08-07&quot;:5.71},{&quot;2026-08-08&quot;:5.71},{&quot;2026-08-09&quot;:5.75},{&quot;2026-08-10&quot;:5.75},{&quot;2026-08-11&quot;:5.75},{&quot;2026-08-12&quot;:5.75},{&quot;2026-08-13&quot;:5.78},{&quot;2026-08-14&quot;:5.78},{&quot;2026-08-15&quot;:5.67},{&quot;2026-08-16&quot;:5.74},{&quot;2026-08-17&quot;:5.72},{&quot;2026-08-18&quot;:5.76},{&quot;2026-08-19&quot;:5.84},{&quot;2026-08-20&quot;:5.85},{&quot;2026-08-21&quot;:5.85},{&quot;2026-08-22&quot;:5.84},{&quot;2026-08-23&quot;:5.84},{&quot;2026-08-24&quot;:5.86},{&quot;2026-08-25&quot;:5.86},{&quot;2026-08-26&quot;:5.86},{&quot;2026-08-27&quot;:5.86},{&quot;2026-08-28&quot;:5.87},{&quot;2026-08-29&quot;:5.87},{&quot;2026-08-30&quot;:5.85},{&quot;2026-08-31&quot;:5.85},{&quot;2026-09-01&quot;:5.85},{&quot;2026-09-02&quot;:5.85},{&quot;2026-09-03&quot;:5.85},{&quot;2026-09-04&quot;:5.85},{&quot;2026-09-05&quot;:5.85},{&quot;2026-09-06&quot;:5.85},{&quot;2026-09-07&quot;:5.81},{&quot;2026-09-08&quot;:5.77},{&quot;2026-09-09&quot;:5.77},{&quot;2026-09-10&quot;:5.75},{&quot;2026-09-11&quot;:5.87}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:5.12},{&quot;2026-06-14&quot;:5.12},{&quot;2026-06-15&quot;:5.12},{&quot;2026-06-16&quot;:5.12},{&quot;2026-06-17&quot;:5.03},{&quot;2026-06-18&quot;:5.03},{&quot;2026-06-19&quot;:5.03},{&quot;2026-06-20&quot;:4.92},{&quot;2026-06-21&quot;:4.92},{&quot;2026-06-22&quot;:4.88},{&quot;2026-06-23&quot;:4.79},{&quot;2026-06-24&quot;:4.71},{&quot;2026-06-25&quot;:4.73},{&quot;2026-06-26&quot;:4.74},{&quot;2026-06-27&quot;:4.72},{&quot;2026-06-28&quot;:4.87},{&quot;2026-06-29&quot;:4.92},{&quot;2026-06-30&quot;:4.95},{&quot;2026-07-01&quot;:4.84},{&quot;2026-07-02&quot;:4.84},{&quot;2026-07-03&quot;:4.85},{&quot;2026-07-04&quot;:4.83},{&quot;2026-07-05&quot;:4.9},{&quot;2026-07-06&quot;:4.22},{&quot;2026-07-07&quot;:4.22},{&quot;2026-07-08&quot;:4.23},{&quot;2026-07-09&quot;:4.4},{&quot;2026-07-10&quot;:4.48},{&quot;2026-07-11&quot;:4.48},{&quot;2026-07-12&quot;:4.48},{&quot;2026-07-13&quot;:4.46},{&quot;2026-07-14&quot;:4.43},{&quot;2026-07-15&quot;:4.38},{&quot;2026-07-16&quot;:4.39},{&quot;2026-07-17&quot;:4.43},{&quot;2026-07-18&quot;:4.45},{&quot;2026-07-19&quot;:4.51},{&quot;2026-07-20&quot;:4.55},{&quot;2026-07-21&quot;:4.55},{&quot;2026-07-22&quot;:4.7},{&quot;2026-07-23&quot;:4.81},{&quot;2026-07-24&quot;:5.01},{&quot;2026-07-25&quot;:5.03},{&quot;2026-07-26&quot;:4.84},{&quot;2026-07-27&quot;:4.81},{&quot;2026-07-28&quot;:4.62},{&quot;2026-07-29&quot;:4.63},{&quot;2026-07-30&quot;:4.61},{&quot;2026-07-31&quot;:4.61},{&quot;2026-08-01&quot;:4.62},{&quot;2026-08-02&quot;:4.78},{&quot;2026-08-03&quot;:4.65},{&quot;2026-08-04&quot;:4.82},{&quot;2026-08-05&quot;:4.85},{&quot;2026-08-07&quot;:4.78},{&quot;2026-08-08&quot;:4.75},{&quot;2026-08-09&quot;:4.82},{&quot;2026-08-10&quot;:4.82},{&quot;2026-08-11&quot;:4.82},{&quot;2026-08-12&quot;:4.9},{&quot;2026-08-13&quot;:4.8},{&quot;2026-08-14&quot;:4.87},{&quot;2026-08-15&quot;:4.82},{&quot;2026-08-16&quot;:4.78},{&quot;2026-08-17&quot;:4.92},{&quot;2026-08-18&quot;:4.94},{&quot;2026-08-19&quot;:4.87},{&quot;2026-08-20&quot;:4.93},{&quot;2026-08-21&quot;:4.92},{&quot;2026-08-22&quot;:4.92},{&quot;2026-08-23&quot;:4.98},{&quot;2026-08-24&quot;:4.99},{&quot;2026-08-25&quot;:4.92},{&quot;2026-08-26&quot;:4.91},{&quot;2026-08-27&quot;:5.0},{&quot;2026-08-28&quot;:4.95},{&quot;2026-08-29&quot;:4.95},{&quot;2026-08-30&quot;:4.86},{&quot;2026-08-31&quot;:4.99},{&quot;2026-09-01&quot;:4.95},{&quot;2026-09-02&quot;:4.94},{&quot;2026-09-03&quot;:4.95},{&quot;2026-09-04&quot;:4.95},{&quot;2026-09-05&quot;:4.88},{&quot;2026-09-06&quot;:4.86},{&quot;2026-09-07&quot;:4.91},{&quot;2026-09-08&quot;:4.94},{&quot;2026-09-09&quot;:4.95},{&quot;2026-09-10&quot;:5.04},{&quot;2026-09-11&quot;:4.99}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Unnatural Growth" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/8/08fa38c0-353c-4f6a-b87e-3f6366af44d8.jpg?1783908086" />

        <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">
            Unnatural Growth
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></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="Unnatural Growth" src="https://cards.scryfall.io/large/front/0/8/08fa38c0-353c-4f6a-b87e-3f6366af44d8.jpg?1783908086" />
    </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.98
              </span>

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

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

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

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$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-11&quot;:2.69},{&quot;2026-06-12&quot;:2.79},{&quot;2026-06-13&quot;:2.88},{&quot;2026-06-14&quot;:2.84},{&quot;2026-06-15&quot;:2.84},{&quot;2026-06-16&quot;:2.84},{&quot;2026-06-17&quot;:2.84},{&quot;2026-06-18&quot;:2.84},{&quot;2026-06-19&quot;:3.06},{&quot;2026-06-20&quot;:3.04},{&quot;2026-06-21&quot;:3.12},{&quot;2026-06-22&quot;:3.12},{&quot;2026-06-23&quot;:3.26},{&quot;2026-06-24&quot;:3.22},{&quot;2026-06-25&quot;:3.22},{&quot;2026-06-26&quot;:3.24},{&quot;2026-06-27&quot;:3.24},{&quot;2026-06-28&quot;:3.24},{&quot;2026-06-29&quot;:3.24},{&quot;2026-06-30&quot;:3.26},{&quot;2026-07-01&quot;:3.26},{&quot;2026-07-02&quot;:3.26},{&quot;2026-07-03&quot;:3.47},{&quot;2026-07-04&quot;:3.47},{&quot;2026-07-05&quot;:3.47},{&quot;2026-07-06&quot;:3.46},{&quot;2026-07-07&quot;:3.46},{&quot;2026-07-08&quot;:3.46},{&quot;2026-07-09&quot;:3.63},{&quot;2026-07-10&quot;:3.65},{&quot;2026-07-11&quot;:3.58},{&quot;2026-07-12&quot;:3.66},{&quot;2026-07-13&quot;:3.66},{&quot;2026-07-14&quot;:3.66},{&quot;2026-07-15&quot;:3.66},{&quot;2026-07-16&quot;:3.66},{&quot;2026-07-17&quot;:3.66},{&quot;2026-07-18&quot;:3.66},{&quot;2026-07-19&quot;:3.66},{&quot;2026-07-20&quot;:3.66},{&quot;2026-07-21&quot;:3.66},{&quot;2026-07-23&quot;:3.66},{&quot;2026-07-25&quot;:3.66},{&quot;2026-07-26&quot;:3.76},{&quot;2026-07-27&quot;:3.76},{&quot;2026-07-28&quot;:3.76},{&quot;2026-07-29&quot;:3.76},{&quot;2026-07-30&quot;:3.76},{&quot;2026-07-31&quot;:3.67},{&quot;2026-08-01&quot;:3.67},{&quot;2026-08-02&quot;:3.67},{&quot;2026-08-03&quot;:3.67},{&quot;2026-08-04&quot;:3.74},{&quot;2026-08-05&quot;:3.82},{&quot;2026-08-07&quot;:3.67},{&quot;2026-08-08&quot;:3.69},{&quot;2026-08-09&quot;:3.69},{&quot;2026-08-10&quot;:3.69},{&quot;2026-08-11&quot;:3.69},{&quot;2026-08-12&quot;:3.69},{&quot;2026-08-13&quot;:3.66},{&quot;2026-08-14&quot;:3.66},{&quot;2026-08-15&quot;:3.66},{&quot;2026-08-16&quot;:3.72},{&quot;2026-08-17&quot;:3.89},{&quot;2026-08-18&quot;:3.89},{&quot;2026-08-19&quot;:3.73},{&quot;2026-08-20&quot;:3.73},{&quot;2026-08-21&quot;:3.73},{&quot;2026-08-22&quot;:3.74},{&quot;2026-08-23&quot;:3.77},{&quot;2026-08-24&quot;:3.77},{&quot;2026-08-25&quot;:3.77},{&quot;2026-08-26&quot;:3.81},{&quot;2026-08-27&quot;:3.82},{&quot;2026-08-28&quot;:3.93},{&quot;2026-08-29&quot;:3.93},{&quot;2026-08-30&quot;:3.87},{&quot;2026-08-31&quot;:3.87},{&quot;2026-09-01&quot;:3.87},{&quot;2026-09-02&quot;:3.95},{&quot;2026-09-03&quot;:3.88},{&quot;2026-09-04&quot;:4.01},{&quot;2026-09-05&quot;:4.06},{&quot;2026-09-06&quot;:4.21},{&quot;2026-09-07&quot;:4.14},{&quot;2026-09-08&quot;:4.14},{&quot;2026-09-09&quot;:4.2},{&quot;2026-09-10&quot;:4.2},{&quot;2026-09-11&quot;:4.34}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:3.2},{&quot;2026-06-12&quot;:3.19},{&quot;2026-06-13&quot;:3.24},{&quot;2026-06-14&quot;:3.23},{&quot;2026-06-15&quot;:3.21},{&quot;2026-06-16&quot;:3.41},{&quot;2026-06-17&quot;:3.39},{&quot;2026-06-18&quot;:3.38},{&quot;2026-06-19&quot;:3.38},{&quot;2026-06-20&quot;:3.46},{&quot;2026-06-21&quot;:3.49},{&quot;2026-06-22&quot;:3.49},{&quot;2026-06-23&quot;:3.61},{&quot;2026-06-24&quot;:3.64},{&quot;2026-06-25&quot;:3.76},{&quot;2026-06-26&quot;:3.76},{&quot;2026-06-27&quot;:3.76},{&quot;2026-06-28&quot;:3.95},{&quot;2026-06-29&quot;:3.87},{&quot;2026-06-30&quot;:3.73},{&quot;2026-07-01&quot;:3.75},{&quot;2026-07-02&quot;:3.75},{&quot;2026-07-03&quot;:3.81},{&quot;2026-07-04&quot;:3.85},{&quot;2026-07-05&quot;:3.95},{&quot;2026-07-06&quot;:3.96},{&quot;2026-07-07&quot;:3.96},{&quot;2026-07-08&quot;:3.93},{&quot;2026-07-09&quot;:3.91},{&quot;2026-07-10&quot;:3.91},{&quot;2026-07-11&quot;:3.81},{&quot;2026-07-12&quot;:3.73},{&quot;2026-07-13&quot;:3.71},{&quot;2026-07-14&quot;:3.67},{&quot;2026-07-15&quot;:3.65},{&quot;2026-07-16&quot;:3.65},{&quot;2026-07-17&quot;:3.56},{&quot;2026-07-18&quot;:3.6},{&quot;2026-07-19&quot;:3.46},{&quot;2026-07-20&quot;:3.45},{&quot;2026-07-21&quot;:3.49},{&quot;2026-07-23&quot;:3.33},{&quot;2026-07-25&quot;:3.17},{&quot;2026-07-26&quot;:3.24},{&quot;2026-07-27&quot;:3.36},{&quot;2026-07-28&quot;:3.42},{&quot;2026-07-29&quot;:3.42},{&quot;2026-07-30&quot;:3.46},{&quot;2026-07-31&quot;:3.34},{&quot;2026-08-01&quot;:3.31},{&quot;2026-08-02&quot;:3.36},{&quot;2026-08-03&quot;:3.34},{&quot;2026-08-04&quot;:3.3},{&quot;2026-08-05&quot;:3.41},{&quot;2026-08-07&quot;:3.51},{&quot;2026-08-08&quot;:3.64},{&quot;2026-08-09&quot;:3.64},{&quot;2026-08-10&quot;:3.67},{&quot;2026-08-11&quot;:3.59},{&quot;2026-08-12&quot;:3.54},{&quot;2026-08-13&quot;:3.56},{&quot;2026-08-14&quot;:3.55},{&quot;2026-08-15&quot;:3.6},{&quot;2026-08-16&quot;:3.5},{&quot;2026-08-17&quot;:3.43},{&quot;2026-08-18&quot;:3.34},{&quot;2026-08-19&quot;:3.39},{&quot;2026-08-20&quot;:3.39},{&quot;2026-08-21&quot;:3.43},{&quot;2026-08-22&quot;:3.55},{&quot;2026-08-23&quot;:3.55},{&quot;2026-08-24&quot;:3.48},{&quot;2026-08-25&quot;:3.48},{&quot;2026-08-26&quot;:3.56},{&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.56},{&quot;2026-08-31&quot;:3.61},{&quot;2026-09-01&quot;:3.61},{&quot;2026-09-02&quot;:3.67},{&quot;2026-09-03&quot;:3.88},{&quot;2026-09-04&quot;:3.95},{&quot;2026-09-05&quot;:3.91},{&quot;2026-09-06&quot;:3.9},{&quot;2026-09-07&quot;:3.92},{&quot;2026-09-08&quot;:3.92},{&quot;2026-09-09&quot;:3.95},{&quot;2026-09-10&quot;:3.95},{&quot;2026-09-11&quot;:3.98}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Kodama of the East Tree" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/f/af5105ee-09e2-4344-ab39-00f0e9034c47.jpg?1783928789" />

        <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">
            Kodama of the East Tree
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Legendary Creature — Spirit</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-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></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="Kodama of the East Tree" src="https://cards.scryfall.io/large/front/a/f/af5105ee-09e2-4344-ab39-00f0e9034c47.jpg?1783928789" />
    </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.86
              </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">
                $6.13
              </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">$3.00</span>
              <span class="text-xs text-grey-text">Credit: $3.90</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:6.82},{&quot;2026-06-14&quot;:6.82},{&quot;2026-06-15&quot;:6.82},{&quot;2026-06-16&quot;:6.82},{&quot;2026-06-17&quot;:6.81},{&quot;2026-06-18&quot;:6.81},{&quot;2026-06-19&quot;:6.81},{&quot;2026-06-20&quot;:6.81},{&quot;2026-06-21&quot;:6.81},{&quot;2026-06-22&quot;:6.81},{&quot;2026-06-23&quot;:6.81},{&quot;2026-06-24&quot;:6.81},{&quot;2026-06-25&quot;:6.81},{&quot;2026-06-26&quot;:6.81},{&quot;2026-06-27&quot;:6.81},{&quot;2026-06-28&quot;:6.79},{&quot;2026-06-29&quot;:6.79},{&quot;2026-06-30&quot;:6.79},{&quot;2026-07-01&quot;:6.79},{&quot;2026-07-02&quot;:6.79},{&quot;2026-07-03&quot;:6.79},{&quot;2026-07-04&quot;:6.79},{&quot;2026-07-05&quot;:6.79},{&quot;2026-07-06&quot;:6.79},{&quot;2026-07-07&quot;:6.79},{&quot;2026-07-08&quot;:6.79},{&quot;2026-07-09&quot;:6.79},{&quot;2026-07-10&quot;:6.79},{&quot;2026-07-11&quot;:6.79},{&quot;2026-07-12&quot;:6.79},{&quot;2026-07-13&quot;:6.79},{&quot;2026-07-14&quot;:6.71},{&quot;2026-07-15&quot;:6.71},{&quot;2026-07-16&quot;:6.71},{&quot;2026-07-17&quot;:6.72},{&quot;2026-07-18&quot;:6.72},{&quot;2026-07-19&quot;:6.72},{&quot;2026-07-20&quot;:6.72},{&quot;2026-07-21&quot;:6.72},{&quot;2026-07-22&quot;:6.72},{&quot;2026-07-23&quot;:6.63},{&quot;2026-07-24&quot;:6.63},{&quot;2026-07-25&quot;:6.63},{&quot;2026-07-26&quot;:6.63},{&quot;2026-07-27&quot;:6.6},{&quot;2026-07-28&quot;:6.6},{&quot;2026-07-29&quot;:6.6},{&quot;2026-07-30&quot;:6.6},{&quot;2026-07-31&quot;:6.59},{&quot;2026-08-01&quot;:6.59},{&quot;2026-08-02&quot;:6.59},{&quot;2026-08-03&quot;:6.59},{&quot;2026-08-04&quot;:6.59},{&quot;2026-08-05&quot;:6.59},{&quot;2026-08-07&quot;:6.59},{&quot;2026-08-08&quot;:6.59},{&quot;2026-08-09&quot;:6.59},{&quot;2026-08-10&quot;:6.59},{&quot;2026-08-11&quot;:6.59},{&quot;2026-08-12&quot;:6.59},{&quot;2026-08-13&quot;:6.59},{&quot;2026-08-14&quot;:6.59},{&quot;2026-08-15&quot;:6.59},{&quot;2026-08-16&quot;:6.59},{&quot;2026-08-17&quot;:6.59},{&quot;2026-08-18&quot;:6.59},{&quot;2026-08-19&quot;:6.59},{&quot;2026-08-20&quot;:6.59},{&quot;2026-08-21&quot;:6.59},{&quot;2026-08-22&quot;:6.59},{&quot;2026-08-23&quot;:6.47},{&quot;2026-08-24&quot;:6.47},{&quot;2026-08-25&quot;:6.53},{&quot;2026-08-26&quot;:6.53},{&quot;2026-08-27&quot;:6.53},{&quot;2026-08-28&quot;:6.51},{&quot;2026-08-29&quot;:6.51},{&quot;2026-08-30&quot;:6.51},{&quot;2026-08-31&quot;:6.32},{&quot;2026-09-01&quot;:6.45},{&quot;2026-09-02&quot;:6.49},{&quot;2026-09-03&quot;:6.49},{&quot;2026-09-04&quot;:6.49},{&quot;2026-09-05&quot;:6.44},{&quot;2026-09-06&quot;:6.44},{&quot;2026-09-07&quot;:6.44},{&quot;2026-09-08&quot;:6.39},{&quot;2026-09-09&quot;:6.38},{&quot;2026-09-10&quot;:6.13},{&quot;2026-09-11&quot;:6.13}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:3.59},{&quot;2026-06-14&quot;:3.44},{&quot;2026-06-15&quot;:3.45},{&quot;2026-06-16&quot;:3.23},{&quot;2026-06-17&quot;:3.06},{&quot;2026-06-18&quot;:3.06},{&quot;2026-06-19&quot;:3.25},{&quot;2026-06-20&quot;:3.22},{&quot;2026-06-21&quot;:3.17},{&quot;2026-06-22&quot;:3.22},{&quot;2026-06-23&quot;:3.3},{&quot;2026-06-24&quot;:3.35},{&quot;2026-06-25&quot;:3.48},{&quot;2026-06-26&quot;:3.36},{&quot;2026-06-27&quot;:3.35},{&quot;2026-06-28&quot;:3.37},{&quot;2026-06-29&quot;:3.46},{&quot;2026-06-30&quot;:3.42},{&quot;2026-07-01&quot;:3.3},{&quot;2026-07-02&quot;:3.3},{&quot;2026-07-03&quot;:3.31},{&quot;2026-07-04&quot;:3.12},{&quot;2026-07-05&quot;:3.09},{&quot;2026-07-06&quot;:3.02},{&quot;2026-07-07&quot;:3.09},{&quot;2026-07-08&quot;:3.11},{&quot;2026-07-09&quot;:3.07},{&quot;2026-07-10&quot;:3.13},{&quot;2026-07-11&quot;:3.21},{&quot;2026-07-12&quot;:3.27},{&quot;2026-07-13&quot;:3.3},{&quot;2026-07-14&quot;:3.31},{&quot;2026-07-15&quot;:3.32},{&quot;2026-07-16&quot;:3.33},{&quot;2026-07-17&quot;:3.32},{&quot;2026-07-18&quot;:3.19},{&quot;2026-07-19&quot;:3.19},{&quot;2026-07-20&quot;:3.23},{&quot;2026-07-21&quot;:3.13},{&quot;2026-07-22&quot;:3.14},{&quot;2026-07-23&quot;:3.14},{&quot;2026-07-24&quot;:3.08},{&quot;2026-07-25&quot;:3.1},{&quot;2026-07-26&quot;:3.14},{&quot;2026-07-27&quot;:3.08},{&quot;2026-07-28&quot;:3.07},{&quot;2026-07-29&quot;:3.07},{&quot;2026-07-30&quot;:3.0},{&quot;2026-07-31&quot;:3.22},{&quot;2026-08-01&quot;:3.24},{&quot;2026-08-02&quot;:3.21},{&quot;2026-08-03&quot;:3.24},{&quot;2026-08-04&quot;:3.2},{&quot;2026-08-05&quot;:3.2},{&quot;2026-08-07&quot;:3.32},{&quot;2026-08-08&quot;:3.32},{&quot;2026-08-09&quot;:3.4},{&quot;2026-08-10&quot;:3.33},{&quot;2026-08-11&quot;:3.35},{&quot;2026-08-12&quot;:3.37},{&quot;2026-08-13&quot;:3.33},{&quot;2026-08-14&quot;:3.34},{&quot;2026-08-15&quot;:3.41},{&quot;2026-08-16&quot;:3.43},{&quot;2026-08-17&quot;:3.45},{&quot;2026-08-18&quot;:3.62},{&quot;2026-08-19&quot;:3.6},{&quot;2026-08-20&quot;:3.57},{&quot;2026-08-21&quot;:3.57},{&quot;2026-08-22&quot;:3.49},{&quot;2026-08-23&quot;:3.59},{&quot;2026-08-24&quot;:3.68},{&quot;2026-08-25&quot;:3.76},{&quot;2026-08-26&quot;:3.7},{&quot;2026-08-27&quot;:3.78},{&quot;2026-08-28&quot;:3.76},{&quot;2026-08-29&quot;:3.76},{&quot;2026-08-30&quot;:3.77},{&quot;2026-08-31&quot;:3.85},{&quot;2026-09-01&quot;:3.82},{&quot;2026-09-02&quot;:3.66},{&quot;2026-09-03&quot;:3.65},{&quot;2026-09-04&quot;:3.77},{&quot;2026-09-05&quot;:3.76},{&quot;2026-09-06&quot;:3.89},{&quot;2026-09-07&quot;:3.84},{&quot;2026-09-08&quot;:3.86},{&quot;2026-09-09&quot;:3.84},{&quot;2026-09-10&quot;:3.93},{&quot;2026-09-11&quot;:3.86}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="28097"
  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-5ed 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">
            Nature&#39;s Lore
        </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">
              ↑
              12%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $3.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="Nature&#39;s Lore" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/0/00a4ffc1-7731-42d9-b970-2a8d84cba14d.jpg?1783946892" />

        <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">
            Nature&#39;s Lore
        </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-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></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="Nature&#39;s Lore" src="https://cards.scryfall.io/large/front/0/0/00a4ffc1-7731-42d9-b970-2a8d84cba14d.jpg?1783946892" />
    </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.51
              </span>

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

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$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-10&quot;:4.52},{&quot;2026-06-11&quot;:4.52},{&quot;2026-06-12&quot;:4.52},{&quot;2026-06-13&quot;:4.52},{&quot;2026-06-14&quot;:4.52},{&quot;2026-06-15&quot;:4.37},{&quot;2026-06-16&quot;:4.18},{&quot;2026-06-17&quot;:4.18},{&quot;2026-06-18&quot;:4.18},{&quot;2026-06-19&quot;:4.18},{&quot;2026-06-20&quot;:4.18},{&quot;2026-06-21&quot;:4.18},{&quot;2026-06-22&quot;:4.18},{&quot;2026-06-23&quot;:4.18},{&quot;2026-06-24&quot;:4.0},{&quot;2026-06-25&quot;:4.0},{&quot;2026-06-26&quot;:3.89},{&quot;2026-06-27&quot;:3.89},{&quot;2026-06-28&quot;:3.99},{&quot;2026-06-29&quot;:4.13},{&quot;2026-06-30&quot;:4.13},{&quot;2026-07-01&quot;:4.13},{&quot;2026-07-02&quot;:4.13},{&quot;2026-07-03&quot;:4.13},{&quot;2026-07-04&quot;:4.18},{&quot;2026-07-05&quot;:4.18},{&quot;2026-07-06&quot;:4.18},{&quot;2026-07-07&quot;:4.18},{&quot;2026-07-08&quot;:4.18},{&quot;2026-07-09&quot;:4.18},{&quot;2026-07-10&quot;:4.18},{&quot;2026-07-11&quot;:4.18},{&quot;2026-07-12&quot;:4.18},{&quot;2026-07-13&quot;:4.18},{&quot;2026-07-14&quot;:4.17},{&quot;2026-07-15&quot;:4.06},{&quot;2026-07-16&quot;:4.06},{&quot;2026-07-17&quot;:4.06},{&quot;2026-07-18&quot;:4.06},{&quot;2026-07-19&quot;:4.06},{&quot;2026-07-20&quot;:4.06},{&quot;2026-07-21&quot;:4.0},{&quot;2026-07-23&quot;:4.0},{&quot;2026-07-25&quot;:4.15},{&quot;2026-07-26&quot;:4.11},{&quot;2026-07-27&quot;:4.1},{&quot;2026-07-29&quot;:4.13},{&quot;2026-07-30&quot;:4.21},{&quot;2026-07-31&quot;:4.21},{&quot;2026-08-01&quot;:4.21},{&quot;2026-08-02&quot;:4.21},{&quot;2026-08-03&quot;:4.18},{&quot;2026-08-04&quot;:4.18},{&quot;2026-08-05&quot;:4.18},{&quot;2026-08-07&quot;:4.18},{&quot;2026-08-08&quot;:4.14},{&quot;2026-08-09&quot;:4.14},{&quot;2026-08-10&quot;:4.14},{&quot;2026-08-11&quot;:4.12},{&quot;2026-08-12&quot;:4.14},{&quot;2026-08-13&quot;:4.14},{&quot;2026-08-14&quot;:4.14},{&quot;2026-08-15&quot;:4.12},{&quot;2026-08-16&quot;:4.1},{&quot;2026-08-17&quot;:4.09},{&quot;2026-08-18&quot;:4.09},{&quot;2026-08-19&quot;:4.1},{&quot;2026-08-20&quot;:4.1},{&quot;2026-08-21&quot;:3.77},{&quot;2026-08-22&quot;:3.77},{&quot;2026-08-23&quot;:3.79},{&quot;2026-08-24&quot;:3.76},{&quot;2026-08-25&quot;:3.76},{&quot;2026-08-26&quot;:3.61},{&quot;2026-08-27&quot;:3.7},{&quot;2026-08-28&quot;:3.47},{&quot;2026-08-29&quot;:3.47},{&quot;2026-08-30&quot;:3.0},{&quot;2026-08-31&quot;:3.0},{&quot;2026-09-01&quot;:3.0},{&quot;2026-09-02&quot;:3.12},{&quot;2026-09-03&quot;:3.12},{&quot;2026-09-04&quot;:3.14},{&quot;2026-09-05&quot;:3.14},{&quot;2026-09-06&quot;:3.36},{&quot;2026-09-07&quot;:3.38},{&quot;2026-09-08&quot;:3.16},{&quot;2026-09-09&quot;:3.16},{&quot;2026-09-10&quot;:3.16},{&quot;2026-09-11&quot;:3.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="91086"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-inr ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $3.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="Rockfall Vale" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/4/d4ef22f2-7c4f-4198-982b-f0830fd769cc.jpg?1783908054" />

        <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">
            Rockfall Vale
        </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="Rockfall Vale" src="https://cards.scryfall.io/large/front/d/4/d4ef22f2-7c4f-4198-982b-f0830fd769cc.jpg?1783908054" />
    </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.48
              </span>

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

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

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

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell 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-10&quot;:2.94},{&quot;2026-06-11&quot;:2.97},{&quot;2026-06-12&quot;:2.97},{&quot;2026-06-13&quot;:2.97},{&quot;2026-06-14&quot;:2.97},{&quot;2026-06-15&quot;:3.04},{&quot;2026-06-16&quot;:3.04},{&quot;2026-06-17&quot;:3.04},{&quot;2026-06-18&quot;:3.04},{&quot;2026-06-19&quot;:3.29},{&quot;2026-06-20&quot;:3.29},{&quot;2026-06-21&quot;:3.29},{&quot;2026-06-22&quot;:3.29},{&quot;2026-06-23&quot;:3.29},{&quot;2026-06-24&quot;:3.29},{&quot;2026-06-25&quot;:3.29},{&quot;2026-06-26&quot;:3.29},{&quot;2026-06-27&quot;:3.29},{&quot;2026-06-28&quot;:3.29},{&quot;2026-06-29&quot;:3.29},{&quot;2026-06-30&quot;:3.29},{&quot;2026-07-01&quot;:3.29},{&quot;2026-07-02&quot;:3.29},{&quot;2026-07-03&quot;:3.29},{&quot;2026-07-04&quot;:3.29},{&quot;2026-07-05&quot;:3.29},{&quot;2026-07-06&quot;:3.29},{&quot;2026-07-07&quot;:3.29},{&quot;2026-07-08&quot;:3.29},{&quot;2026-07-09&quot;:3.33},{&quot;2026-07-10&quot;:3.33},{&quot;2026-07-11&quot;:3.41},{&quot;2026-07-12&quot;:3.41},{&quot;2026-07-13&quot;:3.41},{&quot;2026-07-14&quot;:3.58},{&quot;2026-07-15&quot;:3.58},{&quot;2026-07-16&quot;:3.58},{&quot;2026-07-17&quot;:3.58},{&quot;2026-07-18&quot;:3.58},{&quot;2026-07-19&quot;:3.58},{&quot;2026-07-20&quot;:3.58},{&quot;2026-07-21&quot;:3.58},{&quot;2026-07-23&quot;:3.58},{&quot;2026-07-25&quot;:3.58},{&quot;2026-07-26&quot;:3.74},{&quot;2026-07-27&quot;:3.81},{&quot;2026-07-29&quot;:3.87},{&quot;2026-07-30&quot;:3.8},{&quot;2026-07-31&quot;:3.83},{&quot;2026-08-01&quot;:3.86},{&quot;2026-08-02&quot;:3.86},{&quot;2026-08-03&quot;:3.86},{&quot;2026-08-04&quot;:4.02},{&quot;2026-08-05&quot;:4.02},{&quot;2026-08-07&quot;:4.19},{&quot;2026-08-08&quot;:4.19},{&quot;2026-08-09&quot;:4.26},{&quot;2026-08-10&quot;:4.26},{&quot;2026-08-11&quot;:4.26},{&quot;2026-08-12&quot;:4.26},{&quot;2026-08-13&quot;:4.4},{&quot;2026-08-14&quot;:4.4},{&quot;2026-08-15&quot;:4.4},{&quot;2026-08-16&quot;:4.22},{&quot;2026-08-17&quot;:4.11},{&quot;2026-08-18&quot;:4.11},{&quot;2026-08-19&quot;:4.11},{&quot;2026-08-20&quot;:4.11},{&quot;2026-08-21&quot;:4.11},{&quot;2026-08-22&quot;:4.11},{&quot;2026-08-23&quot;:4.11},{&quot;2026-08-24&quot;:4.12},{&quot;2026-08-25&quot;:4.12},{&quot;2026-08-26&quot;:4.12},{&quot;2026-08-27&quot;:4.12},{&quot;2026-08-28&quot;:4.12},{&quot;2026-08-29&quot;:4.12},{&quot;2026-08-30&quot;:4.13},{&quot;2026-08-31&quot;:4.13},{&quot;2026-09-01&quot;:4.13},{&quot;2026-09-02&quot;:3.9},{&quot;2026-09-03&quot;:3.9},{&quot;2026-09-04&quot;:3.96},{&quot;2026-09-05&quot;:3.96},{&quot;2026-09-06&quot;:3.96},{&quot;2026-09-07&quot;:3.96},{&quot;2026-09-08&quot;:3.96},{&quot;2026-09-09&quot;:3.96},{&quot;2026-09-10&quot;:3.96},{&quot;2026-09-11&quot;:3.96}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:2.59},{&quot;2026-06-11&quot;:2.59},{&quot;2026-06-12&quot;:2.59},{&quot;2026-06-13&quot;:2.57},{&quot;2026-06-14&quot;:2.58},{&quot;2026-06-15&quot;:2.57},{&quot;2026-06-16&quot;:2.89},{&quot;2026-06-17&quot;:2.89},{&quot;2026-06-18&quot;:2.89},{&quot;2026-06-19&quot;:2.95},{&quot;2026-06-20&quot;:2.97},{&quot;2026-06-21&quot;:2.94},{&quot;2026-06-22&quot;:2.94},{&quot;2026-06-23&quot;:2.91},{&quot;2026-06-24&quot;:2.92},{&quot;2026-06-25&quot;:2.91},{&quot;2026-06-26&quot;:2.9},{&quot;2026-06-27&quot;:2.89},{&quot;2026-06-28&quot;:2.83},{&quot;2026-06-29&quot;:3.01},{&quot;2026-06-30&quot;:3.03},{&quot;2026-07-01&quot;:3.03},{&quot;2026-07-02&quot;:2.85},{&quot;2026-07-03&quot;:3.05},{&quot;2026-07-04&quot;:3.05},{&quot;2026-07-05&quot;:3.05},{&quot;2026-07-06&quot;:3.05},{&quot;2026-07-07&quot;:2.64},{&quot;2026-07-08&quot;:2.64},{&quot;2026-07-09&quot;:2.64},{&quot;2026-07-10&quot;:2.64},{&quot;2026-07-11&quot;:2.95},{&quot;2026-07-12&quot;:2.95},{&quot;2026-07-13&quot;:3.12},{&quot;2026-07-14&quot;:3.36},{&quot;2026-07-15&quot;:3.24},{&quot;2026-07-16&quot;:3.3},{&quot;2026-07-17&quot;:3.24},{&quot;2026-07-18&quot;:3.24},{&quot;2026-07-19&quot;:3.24},{&quot;2026-07-20&quot;:3.14},{&quot;2026-07-21&quot;:3.11},{&quot;2026-07-23&quot;:3.16},{&quot;2026-07-25&quot;:3.17},{&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.17},{&quot;2026-08-01&quot;:3.2},{&quot;2026-08-02&quot;:3.2},{&quot;2026-08-03&quot;:3.25},{&quot;2026-08-04&quot;:3.33},{&quot;2026-08-05&quot;:3.11},{&quot;2026-08-07&quot;:2.95},{&quot;2026-08-08&quot;:2.9},{&quot;2026-08-09&quot;:2.9},{&quot;2026-08-10&quot;:2.91},{&quot;2026-08-11&quot;:2.91},{&quot;2026-08-12&quot;:2.91},{&quot;2026-08-13&quot;:2.96},{&quot;2026-08-14&quot;:2.99},{&quot;2026-08-15&quot;:3.05},{&quot;2026-08-16&quot;:3.16},{&quot;2026-08-17&quot;:3.12},{&quot;2026-08-18&quot;:3.24},{&quot;2026-08-19&quot;:3.24},{&quot;2026-08-20&quot;:3.24},{&quot;2026-08-21&quot;:3.2},{&quot;2026-08-22&quot;:3.14},{&quot;2026-08-23&quot;:3.25},{&quot;2026-08-24&quot;:3.25},{&quot;2026-08-25&quot;:3.25},{&quot;2026-08-26&quot;:3.25},{&quot;2026-08-27&quot;:3.22},{&quot;2026-08-28&quot;:3.29},{&quot;2026-08-29&quot;:3.29},{&quot;2026-08-30&quot;:3.35},{&quot;2026-08-31&quot;:3.34},{&quot;2026-09-01&quot;:3.34},{&quot;2026-09-02&quot;:3.41},{&quot;2026-09-03&quot;:3.41},{&quot;2026-09-04&quot;:3.42},{&quot;2026-09-05&quot;:3.43},{&quot;2026-09-06&quot;:3.54},{&quot;2026-09-07&quot;:3.54},{&quot;2026-09-08&quot;:3.45},{&quot;2026-09-09&quot;:3.47},{&quot;2026-09-10&quot;:3.51},{&quot;2026-09-11&quot;:3.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="28954"
  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">
            Swiftfoot Boots
        </span>


      </div>

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

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Swiftfoot Boots" src="https://cards.scryfall.io/large/front/b/c/bc89db46-0df6-4ce1-b162-233f5fe1b554.jpg?1783926167" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $3.44
              </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">$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;:3.39},{&quot;2026-06-14&quot;:3.39},{&quot;2026-06-15&quot;:3.44},{&quot;2026-06-16&quot;:3.44},{&quot;2026-06-17&quot;:3.44},{&quot;2026-06-18&quot;:3.35},{&quot;2026-06-19&quot;:3.35},{&quot;2026-06-20&quot;:3.35},{&quot;2026-06-21&quot;:3.35},{&quot;2026-06-22&quot;:3.32},{&quot;2026-06-23&quot;:3.31},{&quot;2026-06-24&quot;:3.22},{&quot;2026-06-25&quot;:3.22},{&quot;2026-06-26&quot;:3.25},{&quot;2026-06-27&quot;:3.25},{&quot;2026-06-28&quot;:3.06},{&quot;2026-06-29&quot;:3.06},{&quot;2026-06-30&quot;:3.03},{&quot;2026-07-01&quot;:3.03},{&quot;2026-07-02&quot;:3.03},{&quot;2026-07-03&quot;:3.03},{&quot;2026-07-04&quot;:3.11},{&quot;2026-07-05&quot;:3.11},{&quot;2026-07-06&quot;:3.09},{&quot;2026-07-07&quot;:3.12},{&quot;2026-07-08&quot;:3.04},{&quot;2026-07-09&quot;:3.04},{&quot;2026-07-10&quot;:3.04},{&quot;2026-07-11&quot;:3.09},{&quot;2026-07-12&quot;:3.09},{&quot;2026-07-13&quot;:3.13},{&quot;2026-07-14&quot;:3.13},{&quot;2026-07-15&quot;:3.05},{&quot;2026-07-16&quot;:3.05},{&quot;2026-07-17&quot;:3.02},{&quot;2026-07-18&quot;:2.95},{&quot;2026-07-19&quot;:2.89},{&quot;2026-07-20&quot;:3.09},{&quot;2026-07-21&quot;:3.35},{&quot;2026-07-22&quot;:3.25},{&quot;2026-07-23&quot;:3.25},{&quot;2026-07-24&quot;:3.25},{&quot;2026-07-25&quot;:3.25},{&quot;2026-07-26&quot;:3.25},{&quot;2026-07-27&quot;:3.25},{&quot;2026-07-28&quot;:3.18},{&quot;2026-07-29&quot;:3.18},{&quot;2026-07-30&quot;:3.18},{&quot;2026-07-31&quot;:3.18},{&quot;2026-08-01&quot;:3.18},{&quot;2026-08-02&quot;:3.39},{&quot;2026-08-03&quot;:3.5},{&quot;2026-08-04&quot;:3.5},{&quot;2026-08-05&quot;:3.5},{&quot;2026-08-07&quot;:3.5},{&quot;2026-08-08&quot;:3.6},{&quot;2026-08-09&quot;:3.6},{&quot;2026-08-10&quot;:3.6},{&quot;2026-08-11&quot;:3.54},{&quot;2026-08-12&quot;:3.66},{&quot;2026-08-13&quot;:3.78},{&quot;2026-08-14&quot;:3.74},{&quot;2026-08-15&quot;:3.74},{&quot;2026-08-16&quot;:3.66},{&quot;2026-08-17&quot;:3.57},{&quot;2026-08-18&quot;:3.59},{&quot;2026-08-19&quot;:3.55},{&quot;2026-08-20&quot;:3.55},{&quot;2026-08-21&quot;:3.6},{&quot;2026-08-22&quot;:3.6},{&quot;2026-08-23&quot;:3.6},{&quot;2026-08-24&quot;:3.49},{&quot;2026-08-25&quot;:3.49},{&quot;2026-08-26&quot;:3.4},{&quot;2026-08-27&quot;:3.4},{&quot;2026-08-28&quot;:3.45},{&quot;2026-08-29&quot;:3.45},{&quot;2026-08-30&quot;:3.55},{&quot;2026-08-31&quot;:3.52},{&quot;2026-09-01&quot;:3.62},{&quot;2026-09-02&quot;:3.62},{&quot;2026-09-03&quot;:3.62},{&quot;2026-09-04&quot;:3.53},{&quot;2026-09-05&quot;:3.53},{&quot;2026-09-06&quot;:3.53},{&quot;2026-09-07&quot;:3.53},{&quot;2026-09-08&quot;:3.53},{&quot;2026-09-09&quot;:3.53},{&quot;2026-09-10&quot;:3.44},{&quot;2026-09-11&quot;:3.44}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $3.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="Eidolon of Blossoms" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/d/0d82f171-b1f6-4e80-996a-c579a1be252c.jpg?1783934290" />

        <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">
            Eidolon of Blossoms
        </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 — Spirit</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-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></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="Eidolon of Blossoms" src="https://cards.scryfall.io/large/front/0/d/0d82f171-b1f6-4e80-996a-c579a1be252c.jpg?1783934290" />
    </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.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">$2.25</span>
              <span class="text-xs text-grey-text">Credit: $2.93</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:3.94},{&quot;2026-06-14&quot;:3.94},{&quot;2026-06-15&quot;:3.89},{&quot;2026-06-16&quot;:3.89},{&quot;2026-06-17&quot;:3.89},{&quot;2026-06-18&quot;:3.77},{&quot;2026-06-19&quot;:3.77},{&quot;2026-06-20&quot;:3.77},{&quot;2026-06-21&quot;:3.77},{&quot;2026-06-22&quot;:3.77},{&quot;2026-06-23&quot;:3.77},{&quot;2026-06-24&quot;:3.51},{&quot;2026-06-25&quot;:3.51},{&quot;2026-06-26&quot;:3.51},{&quot;2026-06-27&quot;:3.51},{&quot;2026-06-28&quot;:3.51},{&quot;2026-06-29&quot;:3.51},{&quot;2026-06-30&quot;:3.54},{&quot;2026-07-01&quot;:3.63},{&quot;2026-07-02&quot;:3.63},{&quot;2026-07-03&quot;:3.63},{&quot;2026-07-04&quot;:3.63},{&quot;2026-07-05&quot;:3.63},{&quot;2026-07-06&quot;:3.63},{&quot;2026-07-07&quot;:3.58},{&quot;2026-07-08&quot;:3.58},{&quot;2026-07-09&quot;:3.27},{&quot;2026-07-10&quot;:3.26},{&quot;2026-07-11&quot;:3.26},{&quot;2026-07-12&quot;:3.26},{&quot;2026-07-13&quot;:3.1},{&quot;2026-07-14&quot;:3.1},{&quot;2026-07-15&quot;:3.07},{&quot;2026-07-16&quot;:3.07},{&quot;2026-07-17&quot;:3.07},{&quot;2026-07-18&quot;:3.07},{&quot;2026-07-19&quot;:3.03},{&quot;2026-07-20&quot;:2.96},{&quot;2026-07-21&quot;:2.98},{&quot;2026-07-22&quot;:3.03},{&quot;2026-07-23&quot;:3.03},{&quot;2026-07-24&quot;:3.03},{&quot;2026-07-25&quot;:3.06},{&quot;2026-07-26&quot;:3.06},{&quot;2026-07-27&quot;:3.06},{&quot;2026-07-28&quot;:3.06},{&quot;2026-07-29&quot;:3.12},{&quot;2026-07-30&quot;:3.12},{&quot;2026-07-31&quot;:3.12},{&quot;2026-08-01&quot;:3.12},{&quot;2026-08-02&quot;:3.09},{&quot;2026-08-03&quot;:3.09},{&quot;2026-08-04&quot;:3.09},{&quot;2026-08-05&quot;:3.09},{&quot;2026-08-07&quot;:3.09},{&quot;2026-08-08&quot;:3.09},{&quot;2026-08-09&quot;:3.09},{&quot;2026-08-10&quot;:3.09},{&quot;2026-08-11&quot;:3.17},{&quot;2026-08-12&quot;:3.11},{&quot;2026-08-13&quot;:3.11},{&quot;2026-08-14&quot;:3.11},{&quot;2026-08-15&quot;:3.11},{&quot;2026-08-16&quot;:3.11},{&quot;2026-08-17&quot;:3.13},{&quot;2026-08-18&quot;:3.13},{&quot;2026-08-19&quot;:3.13},{&quot;2026-08-20&quot;:3.13},{&quot;2026-08-21&quot;:3.1},{&quot;2026-08-22&quot;:3.15},{&quot;2026-08-23&quot;:3.15},{&quot;2026-08-24&quot;:3.15},{&quot;2026-08-25&quot;:3.15},{&quot;2026-08-26&quot;:3.15},{&quot;2026-08-27&quot;:3.15},{&quot;2026-08-28&quot;:3.15},{&quot;2026-08-29&quot;:3.15},{&quot;2026-08-30&quot;:3.11},{&quot;2026-08-31&quot;:3.14},{&quot;2026-09-01&quot;:3.23},{&quot;2026-09-02&quot;:3.28},{&quot;2026-09-03&quot;:3.28},{&quot;2026-09-04&quot;:3.28},{&quot;2026-09-05&quot;:3.28},{&quot;2026-09-06&quot;:3.28},{&quot;2026-09-07&quot;:3.28},{&quot;2026-09-08&quot;:3.28},{&quot;2026-09-09&quot;:3.28},{&quot;2026-09-10&quot;:3.28},{&quot;2026-09-11&quot;:3.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="41937"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-neo ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

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

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Sokenzan, Crucible of Defiance
        </h3>

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Sokenzan, Crucible of Defiance" src="https://cards.scryfall.io/large/front/a/a/aa548dcd-c1dd-492d-a69f-c65dfeef0633.jpg?1783923814" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

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

          <span class="text-sm font-medium text-nine-white">
            $2.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="Thought Vessel" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/e/4/e4738cc0-e13b-4b8e-848d-620319c5cf37.jpg?1783910589" />

        <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">
            Thought Vessel
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Thought Vessel" src="https://cards.scryfall.io/large/front/e/4/e4738cc0-e13b-4b8e-848d-620319c5cf37.jpg?1783910589" />
    </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.73
              </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">$2.00</span>
              <span class="text-xs text-grey-text">Credit: $2.60</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:2.34},{&quot;2026-06-11&quot;:2.42},{&quot;2026-06-12&quot;:2.36},{&quot;2026-06-13&quot;:2.42},{&quot;2026-06-14&quot;:2.43},{&quot;2026-06-15&quot;:2.54},{&quot;2026-06-16&quot;:2.59},{&quot;2026-06-17&quot;:2.63},{&quot;2026-06-18&quot;:2.62},{&quot;2026-06-19&quot;:2.61},{&quot;2026-06-20&quot;:2.59},{&quot;2026-06-21&quot;:2.59},{&quot;2026-06-22&quot;:2.64},{&quot;2026-06-23&quot;:2.68},{&quot;2026-06-24&quot;:2.64},{&quot;2026-06-25&quot;:2.64},{&quot;2026-06-26&quot;:2.64},{&quot;2026-06-27&quot;:2.65},{&quot;2026-06-28&quot;:2.67},{&quot;2026-06-29&quot;:2.67},{&quot;2026-06-30&quot;:2.67},{&quot;2026-07-01&quot;:2.67},{&quot;2026-07-02&quot;:2.67},{&quot;2026-07-03&quot;:2.67},{&quot;2026-07-04&quot;:2.67},{&quot;2026-07-05&quot;:2.7},{&quot;2026-07-06&quot;:2.7},{&quot;2026-07-07&quot;:2.68},{&quot;2026-07-08&quot;:2.71},{&quot;2026-07-09&quot;:2.67},{&quot;2026-07-10&quot;:2.67},{&quot;2026-07-11&quot;:2.54},{&quot;2026-07-12&quot;:2.57},{&quot;2026-07-13&quot;:2.56},{&quot;2026-07-14&quot;:2.56},{&quot;2026-07-15&quot;:2.56},{&quot;2026-07-16&quot;:2.56},{&quot;2026-07-17&quot;:2.56},{&quot;2026-07-18&quot;:2.55},{&quot;2026-07-19&quot;:2.55},{&quot;2026-07-20&quot;:2.55},{&quot;2026-07-21&quot;:2.61},{&quot;2026-07-23&quot;:2.7},{&quot;2026-07-25&quot;:2.65},{&quot;2026-07-26&quot;:2.82},{&quot;2026-07-27&quot;:2.91},{&quot;2026-07-29&quot;:2.87},{&quot;2026-07-30&quot;:2.83},{&quot;2026-07-31&quot;:2.78},{&quot;2026-08-01&quot;:2.82},{&quot;2026-08-02&quot;:2.79},{&quot;2026-08-03&quot;:2.79},{&quot;2026-08-04&quot;:2.75},{&quot;2026-08-05&quot;:2.7},{&quot;2026-08-07&quot;:2.7},{&quot;2026-08-08&quot;:2.75},{&quot;2026-08-09&quot;:2.74},{&quot;2026-08-10&quot;:2.75},{&quot;2026-08-11&quot;:2.74},{&quot;2026-08-12&quot;:2.74},{&quot;2026-08-13&quot;:2.74},{&quot;2026-08-14&quot;:2.74},{&quot;2026-08-15&quot;:2.58},{&quot;2026-08-16&quot;:2.45},{&quot;2026-08-17&quot;:2.54},{&quot;2026-08-18&quot;:2.42},{&quot;2026-08-19&quot;:2.41},{&quot;2026-08-20&quot;:2.41},{&quot;2026-08-21&quot;:2.32},{&quot;2026-08-22&quot;:2.32},{&quot;2026-08-23&quot;:2.32},{&quot;2026-08-24&quot;:2.32},{&quot;2026-08-25&quot;:2.32},{&quot;2026-08-26&quot;:2.34},{&quot;2026-08-27&quot;:2.33},{&quot;2026-08-28&quot;:2.43},{&quot;2026-08-29&quot;:2.43},{&quot;2026-08-30&quot;:2.41},{&quot;2026-08-31&quot;:2.44},{&quot;2026-09-01&quot;:2.44},{&quot;2026-09-02&quot;:2.46},{&quot;2026-09-03&quot;:2.46},{&quot;2026-09-04&quot;:2.44},{&quot;2026-09-05&quot;:2.45},{&quot;2026-09-06&quot;:2.5},{&quot;2026-09-07&quot;:2.55},{&quot;2026-09-08&quot;:2.56},{&quot;2026-09-09&quot;:2.59},{&quot;2026-09-10&quot;:2.55},{&quot;2026-09-11&quot;:2.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="35437"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-vow ss-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">
            Glorious Sunrise
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $2.36
          </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="Glorious Sunrise" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/2/a2caf73e-c3eb-4fa8-996a-d3d18b2ffaeb.jpg?1783924813" />

        <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">
            Glorious Sunrise
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></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="Glorious Sunrise" src="https://cards.scryfall.io/large/front/a/2/a2caf73e-c3eb-4fa8-996a-d3d18b2ffaeb.jpg?1783924813" />
    </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.36
              </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">
                $2.03
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:2.23},{&quot;2026-06-14&quot;:2.25},{&quot;2026-06-15&quot;:2.25},{&quot;2026-06-16&quot;:2.25},{&quot;2026-06-17&quot;:2.25},{&quot;2026-06-18&quot;:2.25},{&quot;2026-06-19&quot;:2.25},{&quot;2026-06-20&quot;:2.25},{&quot;2026-06-21&quot;:2.25},{&quot;2026-06-22&quot;:2.25},{&quot;2026-06-23&quot;:2.25},{&quot;2026-06-24&quot;:2.25},{&quot;2026-06-25&quot;:2.25},{&quot;2026-06-26&quot;:2.25},{&quot;2026-06-27&quot;:2.25},{&quot;2026-06-28&quot;:2.25},{&quot;2026-06-29&quot;:2.25},{&quot;2026-06-30&quot;:2.25},{&quot;2026-07-01&quot;:2.25},{&quot;2026-07-02&quot;:2.25},{&quot;2026-07-03&quot;:2.23},{&quot;2026-07-04&quot;:2.23},{&quot;2026-07-05&quot;:2.23},{&quot;2026-07-06&quot;:2.23},{&quot;2026-07-07&quot;:2.23},{&quot;2026-07-08&quot;:2.25},{&quot;2026-07-09&quot;:2.25},{&quot;2026-07-10&quot;:2.23},{&quot;2026-07-11&quot;:2.23},{&quot;2026-07-12&quot;:2.24},{&quot;2026-07-13&quot;:2.24},{&quot;2026-07-14&quot;:2.24},{&quot;2026-07-15&quot;:2.2},{&quot;2026-07-16&quot;:2.2},{&quot;2026-07-17&quot;:2.2},{&quot;2026-07-18&quot;:2.2},{&quot;2026-07-19&quot;:2.16},{&quot;2026-07-20&quot;:2.16},{&quot;2026-07-21&quot;:2.16},{&quot;2026-07-22&quot;:2.16},{&quot;2026-07-23&quot;:2.16},{&quot;2026-07-24&quot;:2.16},{&quot;2026-07-25&quot;:2.16},{&quot;2026-07-26&quot;:2.16},{&quot;2026-07-27&quot;:2.16},{&quot;2026-07-28&quot;:2.16},{&quot;2026-07-29&quot;:2.16},{&quot;2026-07-30&quot;:2.14},{&quot;2026-07-31&quot;:2.08},{&quot;2026-08-01&quot;:2.04},{&quot;2026-08-02&quot;:2.04},{&quot;2026-08-03&quot;:2.04},{&quot;2026-08-04&quot;:2.04},{&quot;2026-08-05&quot;:2.02},{&quot;2026-08-07&quot;:1.99},{&quot;2026-08-08&quot;:1.96},{&quot;2026-08-09&quot;:1.96},{&quot;2026-08-10&quot;:1.96},{&quot;2026-08-11&quot;:1.96},{&quot;2026-08-12&quot;:1.96},{&quot;2026-08-13&quot;:1.96},{&quot;2026-08-14&quot;:1.96},{&quot;2026-08-15&quot;:1.92},{&quot;2026-08-16&quot;:1.92},{&quot;2026-08-17&quot;:1.93},{&quot;2026-08-18&quot;:1.93},{&quot;2026-08-19&quot;:1.93},{&quot;2026-08-20&quot;:1.91},{&quot;2026-08-21&quot;:1.91},{&quot;2026-08-22&quot;:1.91},{&quot;2026-08-23&quot;:1.91},{&quot;2026-08-24&quot;:1.91},{&quot;2026-08-25&quot;:1.91},{&quot;2026-08-26&quot;:1.93},{&quot;2026-08-27&quot;:1.93},{&quot;2026-08-28&quot;:1.93},{&quot;2026-08-29&quot;:1.93},{&quot;2026-08-30&quot;:1.93},{&quot;2026-08-31&quot;:1.92},{&quot;2026-09-01&quot;:1.95},{&quot;2026-09-02&quot;:1.95},{&quot;2026-09-03&quot;:1.93},{&quot;2026-09-04&quot;:1.96},{&quot;2026-09-05&quot;:1.96},{&quot;2026-09-06&quot;:1.98},{&quot;2026-09-07&quot;:1.98},{&quot;2026-09-08&quot;:1.98},{&quot;2026-09-09&quot;:1.98},{&quot;2026-09-10&quot;:2.03},{&quot;2026-09-11&quot;:2.03}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:2.03},{&quot;2026-06-14&quot;:2.06},{&quot;2026-06-15&quot;:2.12},{&quot;2026-06-16&quot;:2.09},{&quot;2026-06-17&quot;:2.12},{&quot;2026-06-18&quot;:2.15},{&quot;2026-06-19&quot;:2.16},{&quot;2026-06-20&quot;:2.14},{&quot;2026-06-21&quot;:2.21},{&quot;2026-06-22&quot;:2.28},{&quot;2026-06-23&quot;:2.26},{&quot;2026-06-24&quot;:2.24},{&quot;2026-06-25&quot;:2.17},{&quot;2026-06-26&quot;:2.05},{&quot;2026-06-27&quot;:1.99},{&quot;2026-06-28&quot;:2.05},{&quot;2026-06-29&quot;:2.05},{&quot;2026-06-30&quot;:1.95},{&quot;2026-07-01&quot;:1.88},{&quot;2026-07-02&quot;:1.9},{&quot;2026-07-03&quot;:2.08},{&quot;2026-07-04&quot;:2.12},{&quot;2026-07-05&quot;:2.06},{&quot;2026-07-06&quot;:2.06},{&quot;2026-07-07&quot;:2.06},{&quot;2026-07-08&quot;:2.17},{&quot;2026-07-09&quot;:2.24},{&quot;2026-07-10&quot;:2.23},{&quot;2026-07-11&quot;:2.23},{&quot;2026-07-12&quot;:2.21},{&quot;2026-07-13&quot;:2.29},{&quot;2026-07-14&quot;:2.16},{&quot;2026-07-15&quot;:2.25},{&quot;2026-07-16&quot;:2.26},{&quot;2026-07-17&quot;:2.32},{&quot;2026-07-18&quot;:2.35},{&quot;2026-07-19&quot;:2.35},{&quot;2026-07-20&quot;:2.35},{&quot;2026-07-21&quot;:2.26},{&quot;2026-07-22&quot;:2.2},{&quot;2026-07-23&quot;:2.16},{&quot;2026-07-24&quot;:2.16},{&quot;2026-07-25&quot;:2.22},{&quot;2026-07-26&quot;:2.22},{&quot;2026-07-27&quot;:2.26},{&quot;2026-07-28&quot;:2.24},{&quot;2026-07-29&quot;:2.29},{&quot;2026-07-30&quot;:2.22},{&quot;2026-07-31&quot;:2.29},{&quot;2026-08-01&quot;:2.34},{&quot;2026-08-02&quot;:2.4},{&quot;2026-08-03&quot;:2.38},{&quot;2026-08-04&quot;:2.38},{&quot;2026-08-05&quot;:2.38},{&quot;2026-08-07&quot;:2.48},{&quot;2026-08-08&quot;:2.5},{&quot;2026-08-09&quot;:2.46},{&quot;2026-08-10&quot;:2.44},{&quot;2026-08-11&quot;:2.34},{&quot;2026-08-12&quot;:2.27},{&quot;2026-08-13&quot;:2.24},{&quot;2026-08-14&quot;:2.27},{&quot;2026-08-15&quot;:2.18},{&quot;2026-08-16&quot;:2.25},{&quot;2026-08-17&quot;:2.34},{&quot;2026-08-18&quot;:2.4},{&quot;2026-08-19&quot;:2.56},{&quot;2026-08-20&quot;:2.58},{&quot;2026-08-21&quot;:2.6},{&quot;2026-08-22&quot;:2.61},{&quot;2026-08-23&quot;:2.57},{&quot;2026-08-24&quot;:2.43},{&quot;2026-08-25&quot;:2.38},{&quot;2026-08-26&quot;:2.38},{&quot;2026-08-27&quot;:2.38},{&quot;2026-08-28&quot;:2.37},{&quot;2026-08-29&quot;:2.37},{&quot;2026-08-30&quot;:2.24},{&quot;2026-08-31&quot;:2.09},{&quot;2026-09-01&quot;:2.14},{&quot;2026-09-02&quot;:2.2},{&quot;2026-09-03&quot;:2.18},{&quot;2026-09-04&quot;:2.13},{&quot;2026-09-05&quot;:2.21},{&quot;2026-09-06&quot;:2.22},{&quot;2026-09-07&quot;:2.31},{&quot;2026-09-08&quot;:2.37},{&quot;2026-09-09&quot;:2.39},{&quot;2026-09-10&quot;:2.3},{&quot;2026-09-11&quot;:2.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="36596"
  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">
            Saryth, the Viper&#39;s Fang
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Legendary 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="px-1.5 py-0.5 text-xs rounded-full bg-accent-100 text-badge-text">
              ↓
              10%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $2.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="Saryth, the Viper&#39;s Fang" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/3/a/3a07fd28-0b65-4ff0-96c6-7e88fc89b0a5.jpg?1783925519" />

        <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">
            Saryth, the Viper&#39;s Fang
        </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 Warlock</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-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></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="Saryth, the Viper&#39;s Fang" src="https://cards.scryfall.io/large/front/3/a/3a07fd28-0b65-4ff0-96c6-7e88fc89b0a5.jpg?1783925519" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-08&quot;:4.82},{&quot;2026-06-10&quot;:4.88},{&quot;2026-06-11&quot;:4.88},{&quot;2026-06-12&quot;:4.88},{&quot;2026-06-13&quot;:4.88},{&quot;2026-06-14&quot;:4.88},{&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.88},{&quot;2026-06-20&quot;:4.71},{&quot;2026-06-21&quot;:4.47},{&quot;2026-06-22&quot;:4.47},{&quot;2026-06-24&quot;:4.46},{&quot;2026-06-25&quot;:4.46},{&quot;2026-06-26&quot;:4.46},{&quot;2026-06-27&quot;:4.46},{&quot;2026-06-28&quot;:4.46},{&quot;2026-06-29&quot;:4.41},{&quot;2026-06-30&quot;:4.41},{&quot;2026-07-01&quot;:4.41},{&quot;2026-07-02&quot;:4.41},{&quot;2026-07-03&quot;:4.41},{&quot;2026-07-04&quot;:4.41},{&quot;2026-07-05&quot;:4.25},{&quot;2026-07-06&quot;:4.25},{&quot;2026-07-07&quot;:4.25},{&quot;2026-07-08&quot;:4.16},{&quot;2026-07-09&quot;:3.61},{&quot;2026-07-10&quot;:3.61},{&quot;2026-07-11&quot;:3.22},{&quot;2026-07-12&quot;:3.15},{&quot;2026-07-13&quot;:3.15},{&quot;2026-07-14&quot;:3.15},{&quot;2026-07-15&quot;:3.15},{&quot;2026-07-16&quot;:3.15},{&quot;2026-07-17&quot;:3.1},{&quot;2026-07-18&quot;:3.16},{&quot;2026-07-19&quot;:3.16},{&quot;2026-07-20&quot;:3.16},{&quot;2026-07-21&quot;:3.16},{&quot;2026-07-23&quot;:3.16},{&quot;2026-07-25&quot;:3.16},{&quot;2026-07-26&quot;:3.16},{&quot;2026-07-27&quot;:3.16},{&quot;2026-07-29&quot;:3.16},{&quot;2026-07-30&quot;:2.88},{&quot;2026-07-31&quot;:2.88},{&quot;2026-08-01&quot;:2.88},{&quot;2026-08-02&quot;:2.89},{&quot;2026-08-03&quot;:2.89},{&quot;2026-08-04&quot;:2.89},{&quot;2026-08-05&quot;:2.89},{&quot;2026-08-07&quot;:2.74},{&quot;2026-08-08&quot;:2.52},{&quot;2026-08-09&quot;:2.53},{&quot;2026-08-10&quot;:2.47},{&quot;2026-08-11&quot;:2.47},{&quot;2026-08-12&quot;:2.51},{&quot;2026-08-13&quot;:2.43},{&quot;2026-08-14&quot;:2.48},{&quot;2026-08-15&quot;:2.48},{&quot;2026-08-16&quot;:2.48},{&quot;2026-08-17&quot;:2.48},{&quot;2026-08-18&quot;:2.39},{&quot;2026-08-19&quot;:2.23},{&quot;2026-08-20&quot;:2.23},{&quot;2026-08-21&quot;:2.24},{&quot;2026-08-22&quot;:2.24},{&quot;2026-08-23&quot;:2.41},{&quot;2026-08-24&quot;:2.57},{&quot;2026-08-25&quot;:2.57},{&quot;2026-08-26&quot;:2.57},{&quot;2026-08-27&quot;:2.57},{&quot;2026-08-28&quot;:2.57},{&quot;2026-08-29&quot;:2.57},{&quot;2026-08-30&quot;:2.57},{&quot;2026-08-31&quot;:2.6},{&quot;2026-09-01&quot;:2.6},{&quot;2026-09-02&quot;:2.67},{&quot;2026-09-03&quot;:2.67},{&quot;2026-09-04&quot;:2.67},{&quot;2026-09-05&quot;:2.67},{&quot;2026-09-06&quot;:2.67},{&quot;2026-09-07&quot;:2.67},{&quot;2026-09-08&quot;:2.67},{&quot;2026-09-09&quot;:2.66},{&quot;2026-09-10&quot;:2.68},{&quot;2026-09-11&quot;:2.68}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:2.61},{&quot;2026-06-10&quot;:2.51},{&quot;2026-06-11&quot;:2.51},{&quot;2026-06-12&quot;:2.49},{&quot;2026-06-13&quot;:2.85},{&quot;2026-06-14&quot;:3.26},{&quot;2026-06-15&quot;:3.17},{&quot;2026-06-16&quot;:3.32},{&quot;2026-06-17&quot;:3.48},{&quot;2026-06-18&quot;:3.35},{&quot;2026-06-19&quot;:3.37},{&quot;2026-06-20&quot;:3.38},{&quot;2026-06-21&quot;:3.3},{&quot;2026-06-22&quot;:3.29},{&quot;2026-06-24&quot;:3.29},{&quot;2026-06-25&quot;:3.4},{&quot;2026-06-26&quot;:3.57},{&quot;2026-06-27&quot;:3.37},{&quot;2026-06-28&quot;:3.11},{&quot;2026-06-29&quot;:2.99},{&quot;2026-06-30&quot;:2.99},{&quot;2026-07-01&quot;:2.92},{&quot;2026-07-02&quot;:2.91},{&quot;2026-07-03&quot;:2.54},{&quot;2026-07-04&quot;:2.64},{&quot;2026-07-05&quot;:2.57},{&quot;2026-07-06&quot;:2.66},{&quot;2026-07-07&quot;:2.66},{&quot;2026-07-08&quot;:2.73},{&quot;2026-07-09&quot;:2.89},{&quot;2026-07-10&quot;:3.09},{&quot;2026-07-11&quot;:2.99},{&quot;2026-07-12&quot;:2.99},{&quot;2026-07-13&quot;:2.97},{&quot;2026-07-14&quot;:3.11},{&quot;2026-07-15&quot;:3.22},{&quot;2026-07-16&quot;:3.11},{&quot;2026-07-17&quot;:3.21},{&quot;2026-07-18&quot;:3.21},{&quot;2026-07-19&quot;:3.21},{&quot;2026-07-20&quot;:3.19},{&quot;2026-07-21&quot;:3.19},{&quot;2026-07-23&quot;:3.2},{&quot;2026-07-25&quot;:2.75},{&quot;2026-07-26&quot;:2.41},{&quot;2026-07-27&quot;:2.37},{&quot;2026-07-29&quot;:2.29},{&quot;2026-07-30&quot;:2.3},{&quot;2026-07-31&quot;:2.25},{&quot;2026-08-01&quot;:2.2},{&quot;2026-08-02&quot;:2.26},{&quot;2026-08-03&quot;:2.33},{&quot;2026-08-04&quot;:2.42},{&quot;2026-08-05&quot;:2.84},{&quot;2026-08-07&quot;:2.91},{&quot;2026-08-08&quot;:2.91},{&quot;2026-08-09&quot;:2.91},{&quot;2026-08-10&quot;:2.91},{&quot;2026-08-11&quot;:2.91},{&quot;2026-08-12&quot;:2.92},{&quot;2026-08-13&quot;:2.92},{&quot;2026-08-14&quot;:2.92},{&quot;2026-08-15&quot;:2.92},{&quot;2026-08-16&quot;:2.86},{&quot;2026-08-17&quot;:2.8},{&quot;2026-08-18&quot;:2.9},{&quot;2026-08-19&quot;:2.88},{&quot;2026-08-20&quot;:2.88},{&quot;2026-08-21&quot;:2.76},{&quot;2026-08-22&quot;:2.83},{&quot;2026-08-23&quot;:2.83},{&quot;2026-08-24&quot;:2.86},{&quot;2026-08-25&quot;:2.86},{&quot;2026-08-26&quot;:2.87},{&quot;2026-08-27&quot;:2.89},{&quot;2026-08-28&quot;:2.88},{&quot;2026-08-29&quot;:2.88},{&quot;2026-08-30&quot;:2.77},{&quot;2026-08-31&quot;:2.77},{&quot;2026-09-01&quot;:2.77},{&quot;2026-09-02&quot;:2.5},{&quot;2026-09-03&quot;:2.52},{&quot;2026-09-04&quot;:2.52},{&quot;2026-09-05&quot;:2.52},{&quot;2026-09-06&quot;:2.4},{&quot;2026-09-07&quot;:2.4},{&quot;2026-09-08&quot;:2.36},{&quot;2026-09-09&quot;:2.36},{&quot;2026-09-10&quot;:2.28},{&quot;2026-09-11&quot;:2.28}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $1.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="Sol Ring" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/a/8a5edac3-855a-4820-b913-44de5b29b7d0.jpg?1783929448" />

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Sol Ring" src="https://cards.scryfall.io/large/front/8/a/8a5edac3-855a-4820-b913-44de5b29b7d0.jpg?1783929448" />
    </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.91
              </span>

            </div>
          </div>

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-08&quot;:1.52},{&quot;2026-06-10&quot;:1.56},{&quot;2026-06-11&quot;:1.57},{&quot;2026-06-12&quot;:1.55},{&quot;2026-06-13&quot;:1.61},{&quot;2026-06-14&quot;:1.59},{&quot;2026-06-15&quot;:1.59},{&quot;2026-06-16&quot;:1.63},{&quot;2026-06-17&quot;:1.62},{&quot;2026-06-18&quot;:1.58},{&quot;2026-06-19&quot;:1.57},{&quot;2026-06-20&quot;:1.57},{&quot;2026-06-21&quot;:1.59},{&quot;2026-06-22&quot;:1.59},{&quot;2026-06-24&quot;:1.59},{&quot;2026-06-25&quot;:1.59},{&quot;2026-06-26&quot;:1.57},{&quot;2026-06-27&quot;:1.57},{&quot;2026-06-28&quot;:1.57},{&quot;2026-06-29&quot;:1.56},{&quot;2026-06-30&quot;:1.59},{&quot;2026-07-01&quot;:1.56},{&quot;2026-07-02&quot;:1.56},{&quot;2026-07-03&quot;:1.52},{&quot;2026-07-04&quot;:1.51},{&quot;2026-07-05&quot;:1.54},{&quot;2026-07-06&quot;:1.55},{&quot;2026-07-07&quot;:1.55},{&quot;2026-07-08&quot;:1.61},{&quot;2026-07-09&quot;:1.64},{&quot;2026-07-10&quot;:1.68},{&quot;2026-07-11&quot;:1.68},{&quot;2026-07-12&quot;:1.68},{&quot;2026-07-13&quot;:1.68},{&quot;2026-07-14&quot;:1.69},{&quot;2026-07-15&quot;:1.69},{&quot;2026-07-16&quot;:1.69},{&quot;2026-07-17&quot;:1.72},{&quot;2026-07-18&quot;:1.72},{&quot;2026-07-19&quot;:1.68},{&quot;2026-07-20&quot;:1.69},{&quot;2026-07-21&quot;:1.71},{&quot;2026-07-23&quot;:1.74},{&quot;2026-07-25&quot;:1.66},{&quot;2026-07-26&quot;:1.66},{&quot;2026-07-27&quot;:1.67},{&quot;2026-07-29&quot;:1.69},{&quot;2026-07-30&quot;:1.67},{&quot;2026-07-31&quot;:1.67},{&quot;2026-08-01&quot;:1.66},{&quot;2026-08-02&quot;:1.67},{&quot;2026-08-03&quot;:1.62},{&quot;2026-08-04&quot;:1.62},{&quot;2026-08-05&quot;:1.62},{&quot;2026-08-07&quot;:1.61},{&quot;2026-08-08&quot;:1.61},{&quot;2026-08-09&quot;:2.09},{&quot;2026-08-10&quot;:2.12},{&quot;2026-08-11&quot;:2.01},{&quot;2026-08-12&quot;:1.95},{&quot;2026-08-13&quot;:1.86},{&quot;2026-08-14&quot;:1.86},{&quot;2026-08-15&quot;:1.82},{&quot;2026-08-16&quot;:1.8},{&quot;2026-08-17&quot;:1.8},{&quot;2026-08-18&quot;:1.79},{&quot;2026-08-19&quot;:1.76},{&quot;2026-08-20&quot;:1.76},{&quot;2026-08-21&quot;:1.76},{&quot;2026-08-22&quot;:1.8},{&quot;2026-08-23&quot;:1.8},{&quot;2026-08-24&quot;:1.8},{&quot;2026-08-25&quot;:1.8},{&quot;2026-08-26&quot;:1.8},{&quot;2026-08-27&quot;:1.8},{&quot;2026-08-28&quot;:1.82},{&quot;2026-08-29&quot;:1.82},{&quot;2026-08-30&quot;:2.04},{&quot;2026-08-31&quot;:2.06},{&quot;2026-09-01&quot;:2.06},{&quot;2026-09-02&quot;:2.04},{&quot;2026-09-03&quot;:2.01},{&quot;2026-09-04&quot;:1.93},{&quot;2026-09-05&quot;:1.91},{&quot;2026-09-06&quot;:1.88},{&quot;2026-09-07&quot;:1.85},{&quot;2026-09-08&quot;:1.9},{&quot;2026-09-09&quot;:1.96},{&quot;2026-09-10&quot;:1.96},{&quot;2026-09-11&quot;:1.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="108380"
  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-tmc ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Fabled Passage" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/c/7c787c6b-b6c7-47a0-8f8d-761629f5568e.jpg?1783904151" />

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Fabled Passage" src="https://cards.scryfall.io/large/front/7/c/7c787c6b-b6c7-47a0-8f8d-761629f5568e.jpg?1783904151" />
    </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.76
              </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.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">$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-08-19&quot;:9.87},{&quot;2026-08-20&quot;:9.87},{&quot;2026-08-21&quot;:9.87},{&quot;2026-08-22&quot;:9.87},{&quot;2026-08-23&quot;:9.87},{&quot;2026-08-24&quot;:9.87},{&quot;2026-08-25&quot;:9.87},{&quot;2026-08-26&quot;:9.87},{&quot;2026-08-27&quot;:9.87},{&quot;2026-08-28&quot;:9.87},{&quot;2026-08-29&quot;:9.87},{&quot;2026-08-30&quot;:9.86},{&quot;2026-08-31&quot;:9.86},{&quot;2026-09-01&quot;:9.86},{&quot;2026-09-02&quot;:9.86},{&quot;2026-09-03&quot;:9.8},{&quot;2026-09-04&quot;:9.8},{&quot;2026-09-05&quot;:9.8},{&quot;2026-09-06&quot;:9.8},{&quot;2026-09-07&quot;:9.8},{&quot;2026-09-08&quot;:9.8},{&quot;2026-09-09&quot;:9.8},{&quot;2026-09-10&quot;:9.8},{&quot;2026-09-11&quot;:9.8}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:1.99},{&quot;2026-06-11&quot;:1.94},{&quot;2026-06-12&quot;:1.87},{&quot;2026-06-13&quot;:1.86},{&quot;2026-06-14&quot;:1.69},{&quot;2026-06-15&quot;:1.75},{&quot;2026-06-16&quot;:1.8},{&quot;2026-06-17&quot;:1.81},{&quot;2026-06-18&quot;:1.83},{&quot;2026-06-19&quot;:1.83},{&quot;2026-06-20&quot;:1.64},{&quot;2026-06-21&quot;:1.61},{&quot;2026-06-22&quot;:1.77},{&quot;2026-06-23&quot;:1.73},{&quot;2026-06-24&quot;:1.73},{&quot;2026-06-25&quot;:1.71},{&quot;2026-06-26&quot;:1.75},{&quot;2026-06-27&quot;:1.72},{&quot;2026-06-28&quot;:1.73},{&quot;2026-06-29&quot;:1.75},{&quot;2026-06-30&quot;:1.8},{&quot;2026-07-01&quot;:1.84},{&quot;2026-07-02&quot;:1.78},{&quot;2026-07-03&quot;:1.79},{&quot;2026-07-04&quot;:1.59},{&quot;2026-07-05&quot;:1.51},{&quot;2026-07-06&quot;:1.5},{&quot;2026-07-07&quot;:1.61},{&quot;2026-07-08&quot;:1.79},{&quot;2026-07-09&quot;:1.74},{&quot;2026-07-10&quot;:1.77},{&quot;2026-07-11&quot;:1.59},{&quot;2026-07-12&quot;:1.66},{&quot;2026-07-13&quot;:1.58},{&quot;2026-07-14&quot;:1.57},{&quot;2026-07-15&quot;:1.49},{&quot;2026-07-16&quot;:1.48},{&quot;2026-07-17&quot;:1.57},{&quot;2026-07-18&quot;:1.52},{&quot;2026-07-19&quot;:1.5},{&quot;2026-07-20&quot;:1.51},{&quot;2026-07-21&quot;:1.5},{&quot;2026-07-23&quot;:1.54},{&quot;2026-07-25&quot;:1.59},{&quot;2026-07-26&quot;:1.59},{&quot;2026-07-27&quot;:1.6},{&quot;2026-07-29&quot;:1.51},{&quot;2026-07-30&quot;:1.51},{&quot;2026-07-31&quot;:1.36},{&quot;2026-08-01&quot;:1.34},{&quot;2026-08-02&quot;:1.46},{&quot;2026-08-03&quot;:1.43},{&quot;2026-08-04&quot;:1.52},{&quot;2026-08-05&quot;:1.68},{&quot;2026-08-07&quot;:1.75},{&quot;2026-08-08&quot;:1.82},{&quot;2026-08-09&quot;:1.88},{&quot;2026-08-10&quot;:1.88},{&quot;2026-08-11&quot;:1.83},{&quot;2026-08-12&quot;:1.84},{&quot;2026-08-13&quot;:1.77},{&quot;2026-08-14&quot;:1.75},{&quot;2026-08-15&quot;:1.65},{&quot;2026-08-16&quot;:1.75},{&quot;2026-08-17&quot;:1.79},{&quot;2026-08-18&quot;:1.75},{&quot;2026-08-19&quot;:1.7},{&quot;2026-08-20&quot;:1.7},{&quot;2026-08-21&quot;:1.43},{&quot;2026-08-22&quot;:1.48},{&quot;2026-08-23&quot;:1.47},{&quot;2026-08-24&quot;:1.59},{&quot;2026-08-25&quot;:1.59},{&quot;2026-08-26&quot;:1.9},{&quot;2026-08-27&quot;:1.87},{&quot;2026-08-28&quot;:1.88},{&quot;2026-08-29&quot;:1.88},{&quot;2026-08-30&quot;:2.61},{&quot;2026-08-31&quot;:2.79},{&quot;2026-09-01&quot;:2.79},{&quot;2026-09-02&quot;:2.52},{&quot;2026-09-03&quot;:2.19},{&quot;2026-09-04&quot;:1.79},{&quot;2026-09-05&quot;:1.77},{&quot;2026-09-06&quot;:1.69},{&quot;2026-09-07&quot;:1.72},{&quot;2026-09-08&quot;:1.69},{&quot;2026-09-09&quot;:1.63},{&quot;2026-09-10&quot;:1.74},{&quot;2026-09-11&quot;:1.76}]}"
        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="21187"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2x2 ss-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">
            Rampant Growth
        </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">
              ↓
              12%
            </span>

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

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

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

        <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">
            Rampant Growth
        </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-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></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="Rampant Growth" src="https://cards.scryfall.io/large/front/b/4/b4bbf009-0798-4d8b-b375-6d6fde975c34.jpg?1783921764" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:2.15},{&quot;2026-06-11&quot;:2.15},{&quot;2026-06-12&quot;:2.15},{&quot;2026-06-13&quot;:2.19},{&quot;2026-06-14&quot;:2.19},{&quot;2026-06-15&quot;:2.19},{&quot;2026-06-16&quot;:2.19},{&quot;2026-06-17&quot;:2.19},{&quot;2026-06-18&quot;:2.38},{&quot;2026-06-19&quot;:2.43},{&quot;2026-06-20&quot;:2.37},{&quot;2026-06-21&quot;:2.33},{&quot;2026-06-22&quot;:2.33},{&quot;2026-06-23&quot;:2.33},{&quot;2026-06-24&quot;:2.4},{&quot;2026-06-25&quot;:2.4},{&quot;2026-06-26&quot;:2.39},{&quot;2026-06-27&quot;:2.39},{&quot;2026-06-28&quot;:2.39},{&quot;2026-06-29&quot;:2.42},{&quot;2026-06-30&quot;:2.42},{&quot;2026-07-01&quot;:2.42},{&quot;2026-07-02&quot;:2.35},{&quot;2026-07-03&quot;:2.35},{&quot;2026-07-04&quot;:2.35},{&quot;2026-07-05&quot;:2.37},{&quot;2026-07-06&quot;:2.27},{&quot;2026-07-07&quot;:2.27},{&quot;2026-07-08&quot;:2.19},{&quot;2026-07-09&quot;:2.05},{&quot;2026-07-10&quot;:1.99},{&quot;2026-07-11&quot;:2.01},{&quot;2026-07-12&quot;:2.01},{&quot;2026-07-13&quot;:2.04},{&quot;2026-07-14&quot;:2.03},{&quot;2026-07-15&quot;:2.0},{&quot;2026-07-16&quot;:1.94},{&quot;2026-07-17&quot;:1.94},{&quot;2026-07-18&quot;:1.99},{&quot;2026-07-19&quot;:2.05},{&quot;2026-07-20&quot;:2.04},{&quot;2026-07-21&quot;:2.04},{&quot;2026-07-23&quot;:2.03},{&quot;2026-07-25&quot;:1.88},{&quot;2026-07-26&quot;:1.88},{&quot;2026-07-27&quot;:1.91},{&quot;2026-07-29&quot;:2.04},{&quot;2026-07-30&quot;:2.01},{&quot;2026-07-31&quot;:2.15},{&quot;2026-08-01&quot;:2.15},{&quot;2026-08-02&quot;:2.15},{&quot;2026-08-03&quot;:2.15},{&quot;2026-08-04&quot;:2.11},{&quot;2026-08-05&quot;:2.11},{&quot;2026-08-07&quot;:2.09},{&quot;2026-08-08&quot;:2.09},{&quot;2026-08-09&quot;:2.09},{&quot;2026-08-10&quot;:2.1},{&quot;2026-08-11&quot;:2.1},{&quot;2026-08-12&quot;:2.02},{&quot;2026-08-13&quot;:2.02},{&quot;2026-08-14&quot;:2.02},{&quot;2026-08-15&quot;:2.02},{&quot;2026-08-16&quot;:2.24},{&quot;2026-08-17&quot;:2.24},{&quot;2026-08-18&quot;:2.3},{&quot;2026-08-19&quot;:2.3},{&quot;2026-08-20&quot;:2.3},{&quot;2026-08-21&quot;:2.26},{&quot;2026-08-22&quot;:2.17},{&quot;2026-08-23&quot;:2.12},{&quot;2026-08-24&quot;:2.07},{&quot;2026-08-25&quot;:2.07},{&quot;2026-08-26&quot;:2.13},{&quot;2026-08-27&quot;:2.22},{&quot;2026-08-28&quot;:2.19},{&quot;2026-08-29&quot;:2.19},{&quot;2026-08-30&quot;:2.19},{&quot;2026-08-31&quot;:2.19},{&quot;2026-09-01&quot;:2.19},{&quot;2026-09-02&quot;:1.92},{&quot;2026-09-03&quot;:1.95},{&quot;2026-09-04&quot;:1.95},{&quot;2026-09-05&quot;:1.96},{&quot;2026-09-06&quot;:1.99},{&quot;2026-09-07&quot;:2.07},{&quot;2026-09-08&quot;:2.07},{&quot;2026-09-09&quot;:2.05},{&quot;2026-09-10&quot;:2.03},{&quot;2026-09-11&quot;:2.01}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:1.66},{&quot;2026-06-11&quot;:1.63},{&quot;2026-06-12&quot;:1.65},{&quot;2026-06-13&quot;:1.65},{&quot;2026-06-14&quot;:1.61},{&quot;2026-06-15&quot;:1.73},{&quot;2026-06-16&quot;:1.73},{&quot;2026-06-17&quot;:1.67},{&quot;2026-06-18&quot;:1.67},{&quot;2026-06-19&quot;:1.59},{&quot;2026-06-20&quot;:1.58},{&quot;2026-06-21&quot;:1.54},{&quot;2026-06-22&quot;:1.52},{&quot;2026-06-23&quot;:1.49},{&quot;2026-06-24&quot;:1.46},{&quot;2026-06-25&quot;:1.42},{&quot;2026-06-26&quot;:1.48},{&quot;2026-06-27&quot;:1.45},{&quot;2026-06-28&quot;:1.58},{&quot;2026-06-29&quot;:1.59},{&quot;2026-06-30&quot;:1.6},{&quot;2026-07-01&quot;:1.69},{&quot;2026-07-02&quot;:1.68},{&quot;2026-07-03&quot;:1.68},{&quot;2026-07-04&quot;:1.68},{&quot;2026-07-05&quot;:1.58},{&quot;2026-07-06&quot;:1.63},{&quot;2026-07-07&quot;:1.62},{&quot;2026-07-08&quot;:1.68},{&quot;2026-07-09&quot;:1.72},{&quot;2026-07-10&quot;:1.66},{&quot;2026-07-11&quot;:1.67},{&quot;2026-07-12&quot;:1.69},{&quot;2026-07-13&quot;:1.61},{&quot;2026-07-14&quot;:1.57},{&quot;2026-07-15&quot;:1.63},{&quot;2026-07-16&quot;:1.63},{&quot;2026-07-17&quot;:1.47},{&quot;2026-07-18&quot;:1.55},{&quot;2026-07-19&quot;:1.48},{&quot;2026-07-20&quot;:1.47},{&quot;2026-07-21&quot;:1.45},{&quot;2026-07-23&quot;:1.45},{&quot;2026-07-25&quot;:1.45},{&quot;2026-07-26&quot;:1.45},{&quot;2026-07-27&quot;:1.47},{&quot;2026-07-29&quot;:1.48},{&quot;2026-07-30&quot;:1.44},{&quot;2026-07-31&quot;:1.47},{&quot;2026-08-01&quot;:1.43},{&quot;2026-08-02&quot;:1.56},{&quot;2026-08-03&quot;:1.6},{&quot;2026-08-04&quot;:1.6},{&quot;2026-08-05&quot;:1.58},{&quot;2026-08-07&quot;:1.55},{&quot;2026-08-08&quot;:1.53},{&quot;2026-08-09&quot;:1.6},{&quot;2026-08-10&quot;:1.56},{&quot;2026-08-11&quot;:1.67},{&quot;2026-08-12&quot;:1.64},{&quot;2026-08-13&quot;:1.54},{&quot;2026-08-14&quot;:1.5},{&quot;2026-08-15&quot;:1.58},{&quot;2026-08-16&quot;:1.55},{&quot;2026-08-17&quot;:1.48},{&quot;2026-08-18&quot;:1.5},{&quot;2026-08-19&quot;:1.49},{&quot;2026-08-20&quot;:1.49},{&quot;2026-08-21&quot;:1.71},{&quot;2026-08-22&quot;:1.72},{&quot;2026-08-23&quot;:1.79},{&quot;2026-08-24&quot;:1.82},{&quot;2026-08-25&quot;:1.82},{&quot;2026-08-26&quot;:1.96},{&quot;2026-08-27&quot;:2.0},{&quot;2026-08-28&quot;:1.94},{&quot;2026-08-29&quot;:1.94},{&quot;2026-08-30&quot;:1.94},{&quot;2026-08-31&quot;:1.97},{&quot;2026-09-01&quot;:1.97},{&quot;2026-09-02&quot;:1.91},{&quot;2026-09-03&quot;:1.8},{&quot;2026-09-04&quot;:1.78},{&quot;2026-09-05&quot;:1.83},{&quot;2026-09-06&quot;:1.81},{&quot;2026-09-07&quot;:1.78},{&quot;2026-09-08&quot;:1.82},{&quot;2026-09-09&quot;:1.9},{&quot;2026-09-10&quot;:1.83},{&quot;2026-09-11&quot;:1.61}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="49335"
  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-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">
            Goblin Anarchomancer
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Goblin Anarchomancer" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/6/3/633a3423-501d-4b22-95a6-743233be521e.jpg?1783926814" />

        <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">
            Goblin Anarchomancer
        </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 — Goblin Shaman</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><i class='no-tailwind ms ms-cost ml-0 ms-g'></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="Goblin Anarchomancer" src="https://cards.scryfall.io/large/front/6/3/633a3423-501d-4b22-95a6-743233be521e.jpg?1783926814" />
    </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.31
              </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.45
              </span>

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

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $1.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="Abundance" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/3/73a44759-1fa4-4a96-b668-316851e8a35a.jpg?1783929472" />

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

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></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="Abundance" src="https://cards.scryfall.io/large/front/7/3/73a44759-1fa4-4a96-b668-316851e8a35a.jpg?1783929472" />
    </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.40
              </span>

            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.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;normal&quot;:[{&quot;2026-06-10&quot;:1.13},{&quot;2026-06-11&quot;:1.12},{&quot;2026-06-12&quot;:1.15},{&quot;2026-06-13&quot;:1.12},{&quot;2026-06-14&quot;:1.12},{&quot;2026-06-15&quot;:1.21},{&quot;2026-06-16&quot;:1.17},{&quot;2026-06-17&quot;:1.17},{&quot;2026-06-18&quot;:1.18},{&quot;2026-06-19&quot;:1.18},{&quot;2026-06-20&quot;:1.19},{&quot;2026-06-21&quot;:1.19},{&quot;2026-06-22&quot;:1.22},{&quot;2026-06-23&quot;:1.22},{&quot;2026-06-24&quot;:1.22},{&quot;2026-06-25&quot;:1.19},{&quot;2026-06-26&quot;:1.18},{&quot;2026-06-27&quot;:1.18},{&quot;2026-06-28&quot;:1.18},{&quot;2026-06-29&quot;:1.23},{&quot;2026-06-30&quot;:1.23},{&quot;2026-07-01&quot;:1.25},{&quot;2026-07-02&quot;:1.25},{&quot;2026-07-03&quot;:1.25},{&quot;2026-07-04&quot;:1.2},{&quot;2026-07-05&quot;:1.28},{&quot;2026-07-06&quot;:1.27},{&quot;2026-07-07&quot;:1.22},{&quot;2026-07-08&quot;:1.28},{&quot;2026-07-09&quot;:1.28},{&quot;2026-07-10&quot;:1.26},{&quot;2026-07-11&quot;:1.26},{&quot;2026-07-12&quot;:1.26},{&quot;2026-07-13&quot;:1.29},{&quot;2026-07-14&quot;:1.29},{&quot;2026-07-15&quot;:1.29},{&quot;2026-07-16&quot;:1.29},{&quot;2026-07-17&quot;:1.26},{&quot;2026-07-18&quot;:1.26},{&quot;2026-07-19&quot;:1.2},{&quot;2026-07-20&quot;:1.2},{&quot;2026-07-21&quot;:1.2},{&quot;2026-07-23&quot;:1.28},{&quot;2026-07-25&quot;:1.31},{&quot;2026-07-26&quot;:1.32},{&quot;2026-07-27&quot;:1.29},{&quot;2026-07-29&quot;:1.31},{&quot;2026-07-30&quot;:1.32},{&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.34},{&quot;2026-08-05&quot;:1.35},{&quot;2026-08-07&quot;:1.35},{&quot;2026-08-08&quot;:1.4},{&quot;2026-08-09&quot;:1.41},{&quot;2026-08-10&quot;:1.37},{&quot;2026-08-11&quot;:1.37},{&quot;2026-08-12&quot;:1.37},{&quot;2026-08-13&quot;:1.35},{&quot;2026-08-14&quot;:1.32},{&quot;2026-08-15&quot;:1.33},{&quot;2026-08-16&quot;:1.35},{&quot;2026-08-17&quot;:1.37},{&quot;2026-08-18&quot;:1.38},{&quot;2026-08-19&quot;:1.38},{&quot;2026-08-20&quot;:1.38},{&quot;2026-08-21&quot;:1.41},{&quot;2026-08-22&quot;:1.42},{&quot;2026-08-23&quot;:1.4},{&quot;2026-08-24&quot;:1.4},{&quot;2026-08-25&quot;:1.4},{&quot;2026-08-26&quot;:1.4},{&quot;2026-08-27&quot;:1.4},{&quot;2026-08-28&quot;:1.4},{&quot;2026-08-29&quot;:1.4},{&quot;2026-08-30&quot;:1.37},{&quot;2026-08-31&quot;:1.39},{&quot;2026-09-01&quot;:1.39},{&quot;2026-09-02&quot;:1.41},{&quot;2026-09-03&quot;:1.41},{&quot;2026-09-04&quot;:1.4},{&quot;2026-09-05&quot;:1.4},{&quot;2026-09-06&quot;:1.4},{&quot;2026-09-07&quot;:1.4},{&quot;2026-09-08&quot;:1.4},{&quot;2026-09-09&quot;:1.38},{&quot;2026-09-10&quot;:1.38},{&quot;2026-09-11&quot;:1.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="14272"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-clb ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $1.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="Warstorm Surge" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/b/dbe1bfe0-0be7-496d-94db-e8028d4d9493.jpg?1783922416" />

        <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">
            Warstorm Surge
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-5'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Warstorm Surge" src="https://cards.scryfall.io/large/front/d/b/dbe1bfe0-0be7-496d-94db-e8028d4d9493.jpg?1783922416" />
    </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.39
              </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.36</span>
              <span class="text-xs text-grey-text">Credit: $0.47</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:1.02},{&quot;2026-06-11&quot;:1.02},{&quot;2026-06-12&quot;:1.02},{&quot;2026-06-13&quot;:1.02},{&quot;2026-06-14&quot;:0.99},{&quot;2026-06-15&quot;:1.09},{&quot;2026-06-16&quot;:0.99},{&quot;2026-06-17&quot;:0.98},{&quot;2026-06-18&quot;:0.98},{&quot;2026-06-19&quot;:0.98},{&quot;2026-06-20&quot;:0.96},{&quot;2026-06-21&quot;:0.95},{&quot;2026-06-22&quot;:0.93},{&quot;2026-06-23&quot;:0.93},{&quot;2026-06-24&quot;:0.92},{&quot;2026-06-25&quot;:0.9},{&quot;2026-06-26&quot;:0.9},{&quot;2026-06-27&quot;:0.9},{&quot;2026-06-28&quot;:0.87},{&quot;2026-06-29&quot;:0.86},{&quot;2026-06-30&quot;:0.86},{&quot;2026-07-01&quot;:0.86},{&quot;2026-07-02&quot;:0.86},{&quot;2026-07-03&quot;:0.86},{&quot;2026-07-04&quot;:0.84},{&quot;2026-07-05&quot;:0.88},{&quot;2026-07-06&quot;:0.87},{&quot;2026-07-07&quot;:0.87},{&quot;2026-07-08&quot;:0.87},{&quot;2026-07-09&quot;:0.87},{&quot;2026-07-10&quot;:0.87},{&quot;2026-07-11&quot;:0.88},{&quot;2026-07-12&quot;:0.88},{&quot;2026-07-13&quot;:0.89},{&quot;2026-07-14&quot;:0.88},{&quot;2026-07-15&quot;:0.88},{&quot;2026-07-16&quot;:0.88},{&quot;2026-07-17&quot;:0.88},{&quot;2026-07-18&quot;:0.88},{&quot;2026-07-19&quot;:0.91},{&quot;2026-07-20&quot;:0.91},{&quot;2026-07-21&quot;:0.91},{&quot;2026-07-23&quot;:0.91},{&quot;2026-07-25&quot;:0.96},{&quot;2026-07-26&quot;:0.98},{&quot;2026-07-27&quot;:0.98},{&quot;2026-07-29&quot;:0.98},{&quot;2026-07-30&quot;:1.0},{&quot;2026-07-31&quot;:0.94},{&quot;2026-08-01&quot;:0.94},{&quot;2026-08-02&quot;:0.94},{&quot;2026-08-03&quot;:0.94},{&quot;2026-08-04&quot;:0.94},{&quot;2026-08-05&quot;:0.94},{&quot;2026-08-07&quot;:0.94},{&quot;2026-08-08&quot;:0.94},{&quot;2026-08-09&quot;:0.94},{&quot;2026-08-10&quot;:0.94},{&quot;2026-08-11&quot;:0.94},{&quot;2026-08-12&quot;:0.94},{&quot;2026-08-13&quot;:0.94},{&quot;2026-08-14&quot;:0.94},{&quot;2026-08-15&quot;:0.93},{&quot;2026-08-16&quot;:0.93},{&quot;2026-08-17&quot;:0.93},{&quot;2026-08-18&quot;:0.93},{&quot;2026-08-19&quot;:0.95},{&quot;2026-08-20&quot;:0.95},{&quot;2026-08-21&quot;:0.97},{&quot;2026-08-22&quot;:0.99},{&quot;2026-08-23&quot;:0.99},{&quot;2026-08-24&quot;:0.99},{&quot;2026-08-25&quot;:0.99},{&quot;2026-08-26&quot;:0.97},{&quot;2026-08-27&quot;:0.97},{&quot;2026-08-28&quot;:1.0},{&quot;2026-08-29&quot;:1.0},{&quot;2026-08-30&quot;:1.09},{&quot;2026-08-31&quot;:1.15},{&quot;2026-09-01&quot;:1.15},{&quot;2026-09-02&quot;:1.32},{&quot;2026-09-03&quot;:1.36},{&quot;2026-09-04&quot;:1.36},{&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.38},{&quot;2026-09-09&quot;:1.38},{&quot;2026-09-10&quot;:1.39},{&quot;2026-09-11&quot;:1.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="72953"
  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-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">
            Gilded Lotus
        </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">
              ↓
              10%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $1.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="Gilded Lotus" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/6/0/608a4869-a5ee-41ad-a08e-74a9a85c7906.jpg?1783919793" />

        <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">
            Gilded Lotus
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Gilded Lotus" src="https://cards.scryfall.io/large/front/6/0/608a4869-a5ee-41ad-a08e-74a9a85c7906.jpg?1783919793" />
    </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.39
              </span>

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $4.20
              </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-11&quot;:4.06},{&quot;2026-06-12&quot;:4.06},{&quot;2026-06-13&quot;:4.1},{&quot;2026-06-14&quot;:4.1},{&quot;2026-06-15&quot;:4.1},{&quot;2026-06-16&quot;:4.1},{&quot;2026-06-17&quot;:4.1},{&quot;2026-06-18&quot;:4.1},{&quot;2026-06-19&quot;:4.1},{&quot;2026-06-20&quot;:4.1},{&quot;2026-06-21&quot;:3.98},{&quot;2026-06-22&quot;:3.98},{&quot;2026-06-23&quot;:3.98},{&quot;2026-06-24&quot;:3.98},{&quot;2026-06-25&quot;:3.98},{&quot;2026-06-26&quot;:3.98},{&quot;2026-06-27&quot;:3.98},{&quot;2026-06-28&quot;:3.98},{&quot;2026-06-29&quot;:4.06},{&quot;2026-06-30&quot;:4.06},{&quot;2026-07-01&quot;:4.06},{&quot;2026-07-02&quot;:3.95},{&quot;2026-07-03&quot;:3.95},{&quot;2026-07-04&quot;:3.95},{&quot;2026-07-05&quot;:3.95},{&quot;2026-07-06&quot;:3.82},{&quot;2026-07-07&quot;:3.82},{&quot;2026-07-08&quot;:3.82},{&quot;2026-07-09&quot;:3.82},{&quot;2026-07-10&quot;:3.68},{&quot;2026-07-11&quot;:3.73},{&quot;2026-07-12&quot;:3.73},{&quot;2026-07-13&quot;:3.73},{&quot;2026-07-14&quot;:3.73},{&quot;2026-07-15&quot;:3.73},{&quot;2026-07-16&quot;:3.7},{&quot;2026-07-17&quot;:3.7},{&quot;2026-07-18&quot;:3.7},{&quot;2026-07-19&quot;:3.7},{&quot;2026-07-20&quot;:3.84},{&quot;2026-07-21&quot;:3.84},{&quot;2026-07-23&quot;:3.84},{&quot;2026-07-25&quot;:3.84},{&quot;2026-07-26&quot;:3.84},{&quot;2026-07-27&quot;:3.84},{&quot;2026-07-28&quot;:3.84},{&quot;2026-07-29&quot;:3.84},{&quot;2026-07-30&quot;:3.84},{&quot;2026-07-31&quot;:3.84},{&quot;2026-08-01&quot;:3.84},{&quot;2026-08-02&quot;:3.84},{&quot;2026-08-03&quot;:3.77},{&quot;2026-08-04&quot;:3.84},{&quot;2026-08-05&quot;:3.84},{&quot;2026-08-07&quot;:3.84},{&quot;2026-08-08&quot;:3.84},{&quot;2026-08-09&quot;:3.84},{&quot;2026-08-10&quot;:3.84},{&quot;2026-08-11&quot;:3.98},{&quot;2026-08-12&quot;:3.98},{&quot;2026-08-13&quot;:3.98},{&quot;2026-08-14&quot;:3.98},{&quot;2026-08-15&quot;:3.98},{&quot;2026-08-16&quot;:3.98},{&quot;2026-08-17&quot;:4.02},{&quot;2026-08-18&quot;:4.02},{&quot;2026-08-19&quot;:4.02},{&quot;2026-08-20&quot;:4.02},{&quot;2026-08-21&quot;:4.02},{&quot;2026-08-22&quot;:4.02},{&quot;2026-08-23&quot;:4.02},{&quot;2026-08-24&quot;:4.02},{&quot;2026-08-25&quot;:4.02},{&quot;2026-08-26&quot;:4.02},{&quot;2026-08-27&quot;:4.02},{&quot;2026-08-28&quot;:4.02},{&quot;2026-08-29&quot;:4.02},{&quot;2026-08-30&quot;:4.18},{&quot;2026-08-31&quot;:4.27},{&quot;2026-09-01&quot;:4.27},{&quot;2026-09-02&quot;:4.2},{&quot;2026-09-03&quot;:4.2},{&quot;2026-09-04&quot;:4.2},{&quot;2026-09-05&quot;:4.2},{&quot;2026-09-06&quot;:4.2},{&quot;2026-09-07&quot;:4.2},{&quot;2026-09-08&quot;:4.2},{&quot;2026-09-09&quot;:4.2},{&quot;2026-09-10&quot;:4.2},{&quot;2026-09-11&quot;:4.2}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:1.14},{&quot;2026-06-12&quot;:1.12},{&quot;2026-06-13&quot;:1.17},{&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.2},{&quot;2026-06-18&quot;:1.2},{&quot;2026-06-19&quot;:1.2},{&quot;2026-06-20&quot;:1.22},{&quot;2026-06-21&quot;:1.2},{&quot;2026-06-22&quot;:1.21},{&quot;2026-06-23&quot;:1.19},{&quot;2026-06-24&quot;:1.23},{&quot;2026-06-25&quot;:1.18},{&quot;2026-06-26&quot;:1.2},{&quot;2026-06-27&quot;:1.14},{&quot;2026-06-28&quot;:1.12},{&quot;2026-06-29&quot;:1.14},{&quot;2026-06-30&quot;:1.14},{&quot;2026-07-01&quot;:1.12},{&quot;2026-07-02&quot;:1.12},{&quot;2026-07-03&quot;:1.13},{&quot;2026-07-04&quot;:1.19},{&quot;2026-07-05&quot;:1.18},{&quot;2026-07-06&quot;:1.12},{&quot;2026-07-07&quot;:1.15},{&quot;2026-07-08&quot;:1.18},{&quot;2026-07-09&quot;:1.22},{&quot;2026-07-10&quot;:1.22},{&quot;2026-07-11&quot;:1.22},{&quot;2026-07-12&quot;:1.19},{&quot;2026-07-13&quot;:1.22},{&quot;2026-07-14&quot;:1.36},{&quot;2026-07-15&quot;:1.37},{&quot;2026-07-16&quot;:1.42},{&quot;2026-07-17&quot;:1.41},{&quot;2026-07-18&quot;:1.41},{&quot;2026-07-19&quot;:1.39},{&quot;2026-07-20&quot;:1.39},{&quot;2026-07-21&quot;:1.42},{&quot;2026-07-23&quot;:1.46},{&quot;2026-07-25&quot;:1.38},{&quot;2026-07-26&quot;:1.44},{&quot;2026-07-27&quot;:1.44},{&quot;2026-07-28&quot;:1.43},{&quot;2026-07-29&quot;:1.37},{&quot;2026-07-30&quot;:1.43},{&quot;2026-07-31&quot;:1.41},{&quot;2026-08-01&quot;:1.36},{&quot;2026-08-02&quot;:1.38},{&quot;2026-08-03&quot;:1.33},{&quot;2026-08-04&quot;:1.4},{&quot;2026-08-05&quot;:1.4},{&quot;2026-08-07&quot;:1.43},{&quot;2026-08-08&quot;:1.43},{&quot;2026-08-09&quot;:1.43},{&quot;2026-08-10&quot;:1.42},{&quot;2026-08-11&quot;:1.48},{&quot;2026-08-12&quot;:1.5},{&quot;2026-08-13&quot;:1.5},{&quot;2026-08-14&quot;:1.47},{&quot;2026-08-15&quot;:1.47},{&quot;2026-08-16&quot;:1.39},{&quot;2026-08-17&quot;:1.39},{&quot;2026-08-18&quot;:1.29},{&quot;2026-08-19&quot;:1.26},{&quot;2026-08-20&quot;:1.26},{&quot;2026-08-21&quot;:1.34},{&quot;2026-08-22&quot;:1.41},{&quot;2026-08-23&quot;:1.44},{&quot;2026-08-24&quot;:1.52},{&quot;2026-08-25&quot;:1.52},{&quot;2026-08-26&quot;:1.52},{&quot;2026-08-27&quot;:1.49},{&quot;2026-08-28&quot;:1.45},{&quot;2026-08-29&quot;:1.45},{&quot;2026-08-30&quot;:1.46},{&quot;2026-08-31&quot;:1.5},{&quot;2026-09-01&quot;:1.5},{&quot;2026-09-02&quot;:1.57},{&quot;2026-09-03&quot;:1.6},{&quot;2026-09-04&quot;:1.64},{&quot;2026-09-05&quot;:1.54},{&quot;2026-09-06&quot;:1.46},{&quot;2026-09-07&quot;:1.5},{&quot;2026-09-08&quot;:1.44},{&quot;2026-09-09&quot;:1.42},{&quot;2026-09-10&quot;:1.39},{&quot;2026-09-11&quot;:1.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="94912"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fca ss-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">
            Farseek
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $1.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="Farseek" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/f/3/f36f237f-6b44-4513-ba5d-fe6b4936f78e.jpg?1783906380" />

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

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></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="Farseek" src="https://cards.scryfall.io/large/front/f/3/f36f237f-6b44-4513-ba5d-fe6b4936f78e.jpg?1783906380" />
    </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.27
              </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">
                $3.74
              </span>

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


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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-08&quot;:4.16},{&quot;2026-06-10&quot;:4.18},{&quot;2026-06-11&quot;:4.11},{&quot;2026-06-12&quot;:4.05},{&quot;2026-06-13&quot;:4.1},{&quot;2026-06-14&quot;:4.15},{&quot;2026-06-15&quot;:4.14},{&quot;2026-06-16&quot;:4.16},{&quot;2026-06-17&quot;:4.16},{&quot;2026-06-18&quot;:4.16},{&quot;2026-06-19&quot;:4.2},{&quot;2026-06-20&quot;:4.23},{&quot;2026-06-21&quot;:4.23},{&quot;2026-06-22&quot;:4.23},{&quot;2026-06-24&quot;:4.23},{&quot;2026-06-25&quot;:4.23},{&quot;2026-06-26&quot;:4.23},{&quot;2026-06-27&quot;:4.23},{&quot;2026-06-28&quot;:4.23},{&quot;2026-06-29&quot;:4.26},{&quot;2026-06-30&quot;:4.26},{&quot;2026-07-01&quot;:4.26},{&quot;2026-07-02&quot;:4.26},{&quot;2026-07-03&quot;:4.21},{&quot;2026-07-04&quot;:4.21},{&quot;2026-07-05&quot;:4.21},{&quot;2026-07-06&quot;:4.21},{&quot;2026-07-07&quot;:4.22},{&quot;2026-07-08&quot;:4.23},{&quot;2026-07-09&quot;:4.23},{&quot;2026-07-10&quot;:4.11},{&quot;2026-07-11&quot;:4.16},{&quot;2026-07-12&quot;:4.18},{&quot;2026-07-13&quot;:4.17},{&quot;2026-07-14&quot;:4.19},{&quot;2026-07-15&quot;:4.14},{&quot;2026-07-16&quot;:4.14},{&quot;2026-07-17&quot;:4.23},{&quot;2026-07-18&quot;:4.33},{&quot;2026-07-19&quot;:4.35},{&quot;2026-07-20&quot;:4.4},{&quot;2026-07-21&quot;:4.42},{&quot;2026-07-23&quot;:4.58},{&quot;2026-07-25&quot;:4.61},{&quot;2026-07-26&quot;:4.61},{&quot;2026-07-27&quot;:4.68},{&quot;2026-07-29&quot;:4.68},{&quot;2026-07-30&quot;:4.72},{&quot;2026-07-31&quot;:4.69},{&quot;2026-08-01&quot;:4.7},{&quot;2026-08-02&quot;:4.71},{&quot;2026-08-03&quot;:4.77},{&quot;2026-08-04&quot;:4.79},{&quot;2026-08-05&quot;:4.74},{&quot;2026-08-07&quot;:4.69},{&quot;2026-08-08&quot;:4.69},{&quot;2026-08-09&quot;:4.59},{&quot;2026-08-10&quot;:4.59},{&quot;2026-08-11&quot;:4.47},{&quot;2026-08-12&quot;:4.45},{&quot;2026-08-13&quot;:4.45},{&quot;2026-08-14&quot;:4.55},{&quot;2026-08-15&quot;:4.53},{&quot;2026-08-16&quot;:4.53},{&quot;2026-08-17&quot;:4.53},{&quot;2026-08-18&quot;:4.49},{&quot;2026-08-19&quot;:4.44},{&quot;2026-08-20&quot;:4.44},{&quot;2026-08-21&quot;:4.41},{&quot;2026-08-22&quot;:4.41},{&quot;2026-08-23&quot;:4.32},{&quot;2026-08-24&quot;:4.24},{&quot;2026-08-25&quot;:4.24},{&quot;2026-08-26&quot;:4.07},{&quot;2026-08-27&quot;:4.07},{&quot;2026-08-28&quot;:4.17},{&quot;2026-08-29&quot;:4.17},{&quot;2026-08-30&quot;:4.17},{&quot;2026-08-31&quot;:4.14},{&quot;2026-09-01&quot;:4.14},{&quot;2026-09-02&quot;:4.1},{&quot;2026-09-03&quot;:4.0},{&quot;2026-09-04&quot;:4.0},{&quot;2026-09-05&quot;:3.98},{&quot;2026-09-06&quot;:3.98},{&quot;2026-09-07&quot;:3.82},{&quot;2026-09-08&quot;:3.83},{&quot;2026-09-09&quot;:3.83},{&quot;2026-09-10&quot;:3.83},{&quot;2026-09-11&quot;:3.74}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:0.82},{&quot;2026-06-10&quot;:0.8},{&quot;2026-06-11&quot;:0.96},{&quot;2026-06-12&quot;:1.01},{&quot;2026-06-13&quot;:1.1},{&quot;2026-06-14&quot;:1.0},{&quot;2026-06-15&quot;:0.93},{&quot;2026-06-16&quot;:0.97},{&quot;2026-06-17&quot;:0.98},{&quot;2026-06-18&quot;:0.95},{&quot;2026-06-19&quot;:0.88},{&quot;2026-06-20&quot;:0.9},{&quot;2026-06-21&quot;:0.84},{&quot;2026-06-22&quot;:0.83},{&quot;2026-06-24&quot;:0.83},{&quot;2026-06-25&quot;:0.8},{&quot;2026-06-26&quot;:0.88},{&quot;2026-06-27&quot;:0.88},{&quot;2026-06-28&quot;:0.83},{&quot;2026-06-29&quot;:0.86},{&quot;2026-06-30&quot;:0.88},{&quot;2026-07-01&quot;:0.91},{&quot;2026-07-02&quot;:1.01},{&quot;2026-07-03&quot;:0.99},{&quot;2026-07-04&quot;:0.94},{&quot;2026-07-05&quot;:1.05},{&quot;2026-07-06&quot;:1.04},{&quot;2026-07-07&quot;:1.17},{&quot;2026-07-08&quot;:1.13},{&quot;2026-07-09&quot;:1.1},{&quot;2026-07-10&quot;:1.19},{&quot;2026-07-11&quot;:1.17},{&quot;2026-07-12&quot;:1.0},{&quot;2026-07-13&quot;:0.98},{&quot;2026-07-14&quot;:0.86},{&quot;2026-07-15&quot;:0.93},{&quot;2026-07-16&quot;:1.11},{&quot;2026-07-17&quot;:1.27},{&quot;2026-07-18&quot;:1.27},{&quot;2026-07-19&quot;:1.24},{&quot;2026-07-20&quot;:1.13},{&quot;2026-07-21&quot;:1.28},{&quot;2026-07-23&quot;:1.37},{&quot;2026-07-25&quot;:1.55},{&quot;2026-07-26&quot;:1.45},{&quot;2026-07-27&quot;:1.33},{&quot;2026-07-29&quot;:1.07},{&quot;2026-07-30&quot;:0.97},{&quot;2026-07-31&quot;:0.92},{&quot;2026-08-01&quot;:0.96},{&quot;2026-08-02&quot;:0.91},{&quot;2026-08-03&quot;:0.91},{&quot;2026-08-04&quot;:0.87},{&quot;2026-08-05&quot;:0.95},{&quot;2026-08-07&quot;:1.0},{&quot;2026-08-08&quot;:1.12},{&quot;2026-08-09&quot;:1.07},{&quot;2026-08-10&quot;:1.15},{&quot;2026-08-11&quot;:1.32},{&quot;2026-08-12&quot;:1.18},{&quot;2026-08-13&quot;:1.17},{&quot;2026-08-14&quot;:0.98},{&quot;2026-08-15&quot;:0.93},{&quot;2026-08-16&quot;:0.96},{&quot;2026-08-17&quot;:0.88},{&quot;2026-08-18&quot;:0.84},{&quot;2026-08-19&quot;:0.9},{&quot;2026-08-20&quot;:0.9},{&quot;2026-08-21&quot;:1.16},{&quot;2026-08-22&quot;:1.21},{&quot;2026-08-23&quot;:1.22},{&quot;2026-08-24&quot;:1.2},{&quot;2026-08-25&quot;:1.2},{&quot;2026-08-26&quot;:1.15},{&quot;2026-08-27&quot;:1.14},{&quot;2026-08-28&quot;:1.19},{&quot;2026-08-29&quot;:1.19},{&quot;2026-08-30&quot;:1.45},{&quot;2026-08-31&quot;:1.45},{&quot;2026-09-01&quot;:1.45},{&quot;2026-09-02&quot;:1.53},{&quot;2026-09-03&quot;:1.44},{&quot;2026-09-04&quot;:1.35},{&quot;2026-09-05&quot;:1.28},{&quot;2026-09-06&quot;:1.25},{&quot;2026-09-07&quot;:1.22},{&quot;2026-09-08&quot;:1.36},{&quot;2026-09-09&quot;:1.26},{&quot;2026-09-10&quot;:1.3},{&quot;2026-09-11&quot;:1.27}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Beast Within
        </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">
            $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="Beast Within" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/e/1eb2fba2-fa50-4e69-aadb-d28479f821b9.jpg?1783922410" />

        <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">
            Beast Within
        </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-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></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="Beast Within" src="https://cards.scryfall.io/large/front/1/e/1eb2fba2-fa50-4e69-aadb-d28479f821b9.jpg?1783922410" />
    </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-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.75</span>
              <span class="text-xs text-grey-text">Credit: $0.98</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:0.96},{&quot;2026-06-11&quot;:0.97},{&quot;2026-06-12&quot;:1.02},{&quot;2026-06-13&quot;:1.02},{&quot;2026-06-14&quot;:1.02},{&quot;2026-06-15&quot;:0.99},{&quot;2026-06-16&quot;:0.99},{&quot;2026-06-17&quot;:0.99},{&quot;2026-06-18&quot;:0.99},{&quot;2026-06-19&quot;:0.99},{&quot;2026-06-20&quot;:0.99},{&quot;2026-06-21&quot;:0.99},{&quot;2026-06-22&quot;:0.99},{&quot;2026-06-23&quot;:0.99},{&quot;2026-06-24&quot;:1.01},{&quot;2026-06-25&quot;:1.01},{&quot;2026-06-26&quot;:1.04},{&quot;2026-06-27&quot;:1.04},{&quot;2026-06-28&quot;:1.04},{&quot;2026-06-29&quot;:1.04},{&quot;2026-06-30&quot;:1.04},{&quot;2026-07-01&quot;:1.04},{&quot;2026-07-02&quot;:1.04},{&quot;2026-07-03&quot;:1.04},{&quot;2026-07-04&quot;:1.02},{&quot;2026-07-05&quot;:1.02},{&quot;2026-07-06&quot;:1.0},{&quot;2026-07-07&quot;:1.0},{&quot;2026-07-08&quot;:1.05},{&quot;2026-07-09&quot;:1.05},{&quot;2026-07-10&quot;:1.05},{&quot;2026-07-11&quot;:1.05},{&quot;2026-07-12&quot;:1.05},{&quot;2026-07-13&quot;:1.05},{&quot;2026-07-14&quot;:1.05},{&quot;2026-07-15&quot;:1.05},{&quot;2026-07-16&quot;:1.05},{&quot;2026-07-17&quot;:1.05},{&quot;2026-07-18&quot;:1.05},{&quot;2026-07-19&quot;:1.06},{&quot;2026-07-20&quot;:1.06},{&quot;2026-07-21&quot;:1.06},{&quot;2026-07-23&quot;:1.08},{&quot;2026-07-25&quot;:1.1},{&quot;2026-07-26&quot;:1.1},{&quot;2026-07-27&quot;:1.14},{&quot;2026-07-29&quot;:1.14},{&quot;2026-07-30&quot;:1.14},{&quot;2026-07-31&quot;:1.15},{&quot;2026-08-01&quot;:1.16},{&quot;2026-08-02&quot;:1.17},{&quot;2026-08-03&quot;:1.17},{&quot;2026-08-04&quot;:1.17},{&quot;2026-08-05&quot;:1.17},{&quot;2026-08-07&quot;:1.17},{&quot;2026-08-08&quot;:1.17},{&quot;2026-08-09&quot;:1.16},{&quot;2026-08-10&quot;:1.16},{&quot;2026-08-11&quot;:1.16},{&quot;2026-08-12&quot;:1.16},{&quot;2026-08-13&quot;:1.16},{&quot;2026-08-14&quot;:1.16},{&quot;2026-08-15&quot;:1.16},{&quot;2026-08-16&quot;:1.16},{&quot;2026-08-17&quot;:1.17},{&quot;2026-08-18&quot;:1.17},{&quot;2026-08-19&quot;:1.17},{&quot;2026-08-20&quot;:1.17},{&quot;2026-08-21&quot;:1.18},{&quot;2026-08-22&quot;:1.22},{&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.23},{&quot;2026-08-27&quot;:1.28},{&quot;2026-08-28&quot;:1.27},{&quot;2026-08-29&quot;:1.27},{&quot;2026-08-30&quot;:1.23},{&quot;2026-08-31&quot;:1.22},{&quot;2026-09-01&quot;:1.22},{&quot;2026-09-02&quot;:1.21},{&quot;2026-09-03&quot;:1.22},{&quot;2026-09-04&quot;:1.22},{&quot;2026-09-05&quot;:1.22},{&quot;2026-09-06&quot;:1.22},{&quot;2026-09-07&quot;:1.22},{&quot;2026-09-08&quot;:1.22},{&quot;2026-09-09&quot;:1.23},{&quot;2026-09-10&quot;:1.23},{&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="36465"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mid ss-common ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            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">
            4 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.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="Mountain" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/3/b/3ba24a61-e529-4490-8536-6276ea77c511.jpg?1783925538" />

        <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/3/b/3ba24a61-e529-4490-8536-6276ea77c511.jpg?1783925538" />
    </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">
            3
          </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.40
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:1.6},{&quot;2026-06-14&quot;:1.6},{&quot;2026-06-15&quot;:1.6},{&quot;2026-06-16&quot;:1.74},{&quot;2026-06-17&quot;:1.66},{&quot;2026-06-18&quot;:1.56},{&quot;2026-06-19&quot;:1.56},{&quot;2026-06-20&quot;:1.57},{&quot;2026-06-21&quot;:1.52},{&quot;2026-06-22&quot;:1.48},{&quot;2026-06-23&quot;:1.54},{&quot;2026-06-24&quot;:1.54},{&quot;2026-06-25&quot;:1.55},{&quot;2026-06-26&quot;:1.55},{&quot;2026-06-27&quot;:1.57},{&quot;2026-06-28&quot;:1.57},{&quot;2026-06-29&quot;:1.55},{&quot;2026-06-30&quot;:1.55},{&quot;2026-07-01&quot;:1.54},{&quot;2026-07-02&quot;:1.54},{&quot;2026-07-03&quot;:1.52},{&quot;2026-07-04&quot;:1.46},{&quot;2026-07-05&quot;:1.48},{&quot;2026-07-06&quot;:1.4},{&quot;2026-07-07&quot;:1.32},{&quot;2026-07-08&quot;:1.31},{&quot;2026-07-09&quot;:1.27},{&quot;2026-07-10&quot;:1.24},{&quot;2026-07-11&quot;:1.25},{&quot;2026-07-12&quot;:1.29},{&quot;2026-07-13&quot;:1.28},{&quot;2026-07-14&quot;:1.28},{&quot;2026-07-15&quot;:1.28},{&quot;2026-07-16&quot;:1.28},{&quot;2026-07-17&quot;:1.29},{&quot;2026-07-18&quot;:1.3},{&quot;2026-07-19&quot;:1.26},{&quot;2026-07-20&quot;:1.26},{&quot;2026-07-21&quot;:1.28},{&quot;2026-07-22&quot;:1.27},{&quot;2026-07-23&quot;:1.31},{&quot;2026-07-24&quot;:1.31},{&quot;2026-07-25&quot;:1.33},{&quot;2026-07-26&quot;:1.33},{&quot;2026-07-27&quot;:1.34},{&quot;2026-07-28&quot;:1.34},{&quot;2026-07-29&quot;:1.34},{&quot;2026-07-30&quot;:1.35},{&quot;2026-07-31&quot;:1.29},{&quot;2026-08-01&quot;:1.29},{&quot;2026-08-02&quot;:1.26},{&quot;2026-08-03&quot;:1.26},{&quot;2026-08-04&quot;:1.26},{&quot;2026-08-05&quot;:1.22},{&quot;2026-08-07&quot;:1.19},{&quot;2026-08-08&quot;:1.2},{&quot;2026-08-09&quot;:1.19},{&quot;2026-08-10&quot;:1.19},{&quot;2026-08-11&quot;:1.19},{&quot;2026-08-12&quot;:1.19},{&quot;2026-08-13&quot;:1.15},{&quot;2026-08-14&quot;:1.15},{&quot;2026-08-15&quot;:1.12},{&quot;2026-08-16&quot;:1.1},{&quot;2026-08-17&quot;:1.1},{&quot;2026-08-18&quot;:1.11},{&quot;2026-08-19&quot;:1.13},{&quot;2026-08-20&quot;:1.12},{&quot;2026-08-21&quot;:1.14},{&quot;2026-08-22&quot;:1.14},{&quot;2026-08-23&quot;:1.14},{&quot;2026-08-24&quot;:1.12},{&quot;2026-08-25&quot;:1.12},{&quot;2026-08-26&quot;:1.12},{&quot;2026-08-27&quot;:1.12},{&quot;2026-08-28&quot;:1.11},{&quot;2026-08-29&quot;:1.11},{&quot;2026-08-30&quot;:1.1},{&quot;2026-08-31&quot;:1.13},{&quot;2026-09-01&quot;:1.14},{&quot;2026-09-02&quot;:1.18},{&quot;2026-09-03&quot;:1.21},{&quot;2026-09-04&quot;:1.21},{&quot;2026-09-05&quot;:1.24},{&quot;2026-09-06&quot;:1.23},{&quot;2026-09-07&quot;:1.21},{&quot;2026-09-08&quot;:1.22},{&quot;2026-09-09&quot;:1.22},{&quot;2026-09-10&quot;:1.22},{&quot;2026-09-11&quot;:1.21}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.36},{&quot;2026-06-14&quot;:0.35},{&quot;2026-06-15&quot;:0.39},{&quot;2026-06-16&quot;:0.38},{&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.41},{&quot;2026-06-21&quot;:0.42},{&quot;2026-06-22&quot;:0.43},{&quot;2026-06-23&quot;:0.42},{&quot;2026-06-24&quot;:0.43},{&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.39},{&quot;2026-06-29&quot;:0.37},{&quot;2026-06-30&quot;:0.38},{&quot;2026-07-01&quot;:0.37},{&quot;2026-07-02&quot;:0.38},{&quot;2026-07-03&quot;:0.38},{&quot;2026-07-04&quot;:0.4},{&quot;2026-07-05&quot;:0.4},{&quot;2026-07-06&quot;:0.38},{&quot;2026-07-07&quot;:0.38},{&quot;2026-07-08&quot;:0.37},{&quot;2026-07-09&quot;:0.37},{&quot;2026-07-10&quot;:0.36},{&quot;2026-07-11&quot;:0.37},{&quot;2026-07-12&quot;:0.36},{&quot;2026-07-13&quot;:0.38},{&quot;2026-07-14&quot;:0.38},{&quot;2026-07-15&quot;:0.37},{&quot;2026-07-16&quot;:0.37},{&quot;2026-07-17&quot;:0.37},{&quot;2026-07-18&quot;:0.36},{&quot;2026-07-19&quot;:0.35},{&quot;2026-07-20&quot;:0.34},{&quot;2026-07-21&quot;:0.36},{&quot;2026-07-22&quot;:0.37},{&quot;2026-07-23&quot;:0.38},{&quot;2026-07-24&quot;:0.37},{&quot;2026-07-25&quot;:0.37},{&quot;2026-07-26&quot;:0.38},{&quot;2026-07-27&quot;:0.39},{&quot;2026-07-28&quot;:0.37},{&quot;2026-07-29&quot;:0.37},{&quot;2026-07-30&quot;:0.39},{&quot;2026-07-31&quot;:0.38},{&quot;2026-08-01&quot;:0.38},{&quot;2026-08-02&quot;:0.36},{&quot;2026-08-03&quot;:0.39},{&quot;2026-08-04&quot;:0.38},{&quot;2026-08-05&quot;:0.39},{&quot;2026-08-07&quot;:0.4},{&quot;2026-08-08&quot;:0.39},{&quot;2026-08-09&quot;:0.38},{&quot;2026-08-10&quot;:0.37},{&quot;2026-08-11&quot;:0.39},{&quot;2026-08-12&quot;:0.38},{&quot;2026-08-13&quot;:0.4},{&quot;2026-08-14&quot;:0.4},{&quot;2026-08-15&quot;:0.41},{&quot;2026-08-16&quot;:0.38},{&quot;2026-08-17&quot;:0.39},{&quot;2026-08-18&quot;:0.38},{&quot;2026-08-19&quot;:0.39},{&quot;2026-08-20&quot;:0.4},{&quot;2026-08-21&quot;:0.39},{&quot;2026-08-22&quot;:0.38},{&quot;2026-08-23&quot;:0.41},{&quot;2026-08-24&quot;:0.39},{&quot;2026-08-25&quot;:0.38},{&quot;2026-08-26&quot;:0.38},{&quot;2026-08-27&quot;:0.4},{&quot;2026-08-28&quot;:0.41},{&quot;2026-08-29&quot;:0.41},{&quot;2026-08-30&quot;:0.38},{&quot;2026-08-31&quot;:0.37},{&quot;2026-09-01&quot;:0.37},{&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.38},{&quot;2026-09-06&quot;:0.39},{&quot;2026-09-07&quot;:0.37},{&quot;2026-09-08&quot;:0.39},{&quot;2026-09-09&quot;:0.39},{&quot;2026-09-10&quot;:0.38},{&quot;2026-09-11&quot;:0.4}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Legendary Artifact — Vehicle
      </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.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="The Regalia" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/c/dc420e79-c483-474f-97cd-e9c6a636c306.jpg?1783906553" />

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="The Regalia" src="https://cards.scryfall.io/large/front/d/c/dc420e79-c483-474f-97cd-e9c6a636c306.jpg?1783906553" />
    </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.17
              </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">
                $2.24
              </span>

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.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-11&quot;:2.12},{&quot;2026-06-12&quot;:2.12},{&quot;2026-06-13&quot;:2.08},{&quot;2026-06-14&quot;:2.19},{&quot;2026-06-15&quot;:2.02},{&quot;2026-06-16&quot;:1.97},{&quot;2026-06-17&quot;:1.82},{&quot;2026-06-18&quot;:1.82},{&quot;2026-06-19&quot;:1.8},{&quot;2026-06-20&quot;:1.8},{&quot;2026-06-21&quot;:1.8},{&quot;2026-06-22&quot;:1.86},{&quot;2026-06-23&quot;:1.86},{&quot;2026-06-24&quot;:1.74},{&quot;2026-06-25&quot;:1.74},{&quot;2026-06-26&quot;:1.74},{&quot;2026-06-27&quot;:1.74},{&quot;2026-06-28&quot;:1.76},{&quot;2026-06-29&quot;:1.78},{&quot;2026-06-30&quot;:1.82},{&quot;2026-07-01&quot;:1.82},{&quot;2026-07-02&quot;:1.81},{&quot;2026-07-03&quot;:2.02},{&quot;2026-07-04&quot;:2.02},{&quot;2026-07-05&quot;:2.03},{&quot;2026-07-06&quot;:2.03},{&quot;2026-07-07&quot;:2.2},{&quot;2026-07-08&quot;:2.17},{&quot;2026-07-09&quot;:2.33},{&quot;2026-07-10&quot;:2.33},{&quot;2026-07-11&quot;:2.33},{&quot;2026-07-12&quot;:2.33},{&quot;2026-07-13&quot;:2.61},{&quot;2026-07-14&quot;:2.6},{&quot;2026-07-15&quot;:2.66},{&quot;2026-07-16&quot;:2.68},{&quot;2026-07-17&quot;:2.79},{&quot;2026-07-18&quot;:2.74},{&quot;2026-07-19&quot;:2.7},{&quot;2026-07-20&quot;:2.7},{&quot;2026-07-21&quot;:2.7},{&quot;2026-07-23&quot;:2.66},{&quot;2026-07-25&quot;:2.63},{&quot;2026-07-26&quot;:2.64},{&quot;2026-07-27&quot;:2.61},{&quot;2026-07-28&quot;:2.69},{&quot;2026-07-29&quot;:2.69},{&quot;2026-07-30&quot;:2.56},{&quot;2026-07-31&quot;:2.68},{&quot;2026-08-01&quot;:2.79},{&quot;2026-08-02&quot;:2.81},{&quot;2026-08-03&quot;:2.8},{&quot;2026-08-04&quot;:2.89},{&quot;2026-08-05&quot;:2.6},{&quot;2026-08-07&quot;:2.56},{&quot;2026-08-08&quot;:2.54},{&quot;2026-08-09&quot;:2.57},{&quot;2026-08-10&quot;:2.57},{&quot;2026-08-11&quot;:2.57},{&quot;2026-08-12&quot;:2.51},{&quot;2026-08-13&quot;:2.51},{&quot;2026-08-14&quot;:2.49},{&quot;2026-08-15&quot;:2.55},{&quot;2026-08-16&quot;:2.55},{&quot;2026-08-17&quot;:2.55},{&quot;2026-08-18&quot;:2.46},{&quot;2026-08-19&quot;:2.46},{&quot;2026-08-20&quot;:2.46},{&quot;2026-08-21&quot;:2.46},{&quot;2026-08-22&quot;:2.27},{&quot;2026-08-23&quot;:2.27},{&quot;2026-08-24&quot;:2.3},{&quot;2026-08-25&quot;:2.3},{&quot;2026-08-26&quot;:2.29},{&quot;2026-08-27&quot;:2.25},{&quot;2026-08-28&quot;:2.25},{&quot;2026-08-29&quot;:2.25},{&quot;2026-08-30&quot;:2.16},{&quot;2026-08-31&quot;:2.15},{&quot;2026-09-01&quot;:2.15},{&quot;2026-09-02&quot;:2.18},{&quot;2026-09-03&quot;:2.24},{&quot;2026-09-04&quot;:2.21},{&quot;2026-09-05&quot;:2.17},{&quot;2026-09-06&quot;:2.17},{&quot;2026-09-07&quot;:2.17},{&quot;2026-09-08&quot;:2.17},{&quot;2026-09-09&quot;:2.24},{&quot;2026-09-10&quot;:2.24},{&quot;2026-09-11&quot;:2.24}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:1.46},{&quot;2026-06-12&quot;:1.41},{&quot;2026-06-13&quot;:1.41},{&quot;2026-06-14&quot;:1.28},{&quot;2026-06-15&quot;:1.12},{&quot;2026-06-16&quot;:1.19},{&quot;2026-06-17&quot;:1.2},{&quot;2026-06-18&quot;:1.28},{&quot;2026-06-19&quot;:1.32},{&quot;2026-06-20&quot;:1.37},{&quot;2026-06-21&quot;:1.34},{&quot;2026-06-22&quot;:1.43},{&quot;2026-06-23&quot;:1.68},{&quot;2026-06-24&quot;:1.76},{&quot;2026-06-25&quot;:1.53},{&quot;2026-06-26&quot;:1.47},{&quot;2026-06-27&quot;:1.35},{&quot;2026-06-28&quot;:1.27},{&quot;2026-06-29&quot;:1.34},{&quot;2026-06-30&quot;:1.77},{&quot;2026-07-01&quot;:1.92},{&quot;2026-07-02&quot;:2.34},{&quot;2026-07-03&quot;:2.24},{&quot;2026-07-04&quot;:2.61},{&quot;2026-07-05&quot;:2.12},{&quot;2026-07-06&quot;:2.28},{&quot;2026-07-07&quot;:2.25},{&quot;2026-07-08&quot;:1.94},{&quot;2026-07-09&quot;:1.78},{&quot;2026-07-10&quot;:1.46},{&quot;2026-07-11&quot;:1.41},{&quot;2026-07-12&quot;:1.41},{&quot;2026-07-13&quot;:1.89},{&quot;2026-07-14&quot;:2.07},{&quot;2026-07-15&quot;:1.99},{&quot;2026-07-16&quot;:1.88},{&quot;2026-07-17&quot;:1.77},{&quot;2026-07-18&quot;:1.73},{&quot;2026-07-19&quot;:1.57},{&quot;2026-07-20&quot;:1.49},{&quot;2026-07-21&quot;:1.42},{&quot;2026-07-23&quot;:1.44},{&quot;2026-07-25&quot;:1.53},{&quot;2026-07-26&quot;:1.57},{&quot;2026-07-27&quot;:1.57},{&quot;2026-07-28&quot;:1.66},{&quot;2026-07-29&quot;:1.74},{&quot;2026-07-30&quot;:1.59},{&quot;2026-07-31&quot;:1.76},{&quot;2026-08-01&quot;:1.84},{&quot;2026-08-02&quot;:1.59},{&quot;2026-08-03&quot;:1.35},{&quot;2026-08-04&quot;:1.47},{&quot;2026-08-05&quot;:1.45},{&quot;2026-08-07&quot;:1.76},{&quot;2026-08-08&quot;:2.18},{&quot;2026-08-09&quot;:2.45},{&quot;2026-08-10&quot;:2.14},{&quot;2026-08-11&quot;:1.97},{&quot;2026-08-12&quot;:1.66},{&quot;2026-08-13&quot;:1.18},{&quot;2026-08-14&quot;:1.17},{&quot;2026-08-15&quot;:1.22},{&quot;2026-08-16&quot;:1.24},{&quot;2026-08-17&quot;:1.27},{&quot;2026-08-18&quot;:1.35},{&quot;2026-08-19&quot;:1.4},{&quot;2026-08-20&quot;:1.4},{&quot;2026-08-21&quot;:1.89},{&quot;2026-08-22&quot;:1.85},{&quot;2026-08-23&quot;:1.63},{&quot;2026-08-24&quot;:1.85},{&quot;2026-08-25&quot;:1.85},{&quot;2026-08-26&quot;:1.84},{&quot;2026-08-27&quot;:1.61},{&quot;2026-08-28&quot;:1.64},{&quot;2026-08-29&quot;:1.64},{&quot;2026-08-30&quot;:1.36},{&quot;2026-08-31&quot;:1.44},{&quot;2026-09-01&quot;:1.44},{&quot;2026-09-02&quot;:1.28},{&quot;2026-09-03&quot;:1.12},{&quot;2026-09-04&quot;:1.05},{&quot;2026-09-05&quot;:1.09},{&quot;2026-09-06&quot;:1.09},{&quot;2026-09-07&quot;:1.21},{&quot;2026-09-08&quot;:1.28},{&quot;2026-09-09&quot;:1.32},{&quot;2026-09-10&quot;:1.25},{&quot;2026-09-11&quot;:1.17}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Blasphemous Act" src="https://cards.scryfall.io/large/front/a/0/a09bb94a-1e47-43e7-a7e8-627c10cf8c1f.jpg?1783934298" />
    </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.08
              </span>

            </div>
          </div>

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Arcane Signet" src="https://cards.scryfall.io/large/front/f/0/f0b666de-5a89-417d-a946-00aafd1f1979.jpg?1783928301" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

                <span class="text-xs text-accent-50">
                  ↑
                  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.10</span>
              <span class="text-xs text-grey-text">Credit: $0.13</span>
            </div>
        </div>

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

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

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.57
          </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="Garruk&#39;s Uprising" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/8/4805c303-e73b-443b-a09f-49d2c2c88bb5.jpg?1783909059" />

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

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></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="Garruk&#39;s Uprising" src="https://cards.scryfall.io/large/front/4/8/4805c303-e73b-443b-a09f-49d2c2c88bb5.jpg?1783909059" />
    </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.57
              </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.75
              </span>

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.19</span>
              <span class="text-xs text-grey-text">Credit: $0.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-11&quot;:0.68},{&quot;2026-06-12&quot;:0.68},{&quot;2026-06-13&quot;:0.7},{&quot;2026-06-14&quot;:0.71},{&quot;2026-06-15&quot;:0.71},{&quot;2026-06-16&quot;:0.72},{&quot;2026-06-17&quot;:0.72},{&quot;2026-06-18&quot;:0.72},{&quot;2026-06-19&quot;:0.71},{&quot;2026-06-20&quot;:0.71},{&quot;2026-06-21&quot;:0.71},{&quot;2026-06-22&quot;:0.71},{&quot;2026-06-23&quot;:0.72},{&quot;2026-06-24&quot;:0.72},{&quot;2026-06-25&quot;:0.71},{&quot;2026-06-26&quot;:0.71},{&quot;2026-06-27&quot;:0.7},{&quot;2026-06-28&quot;:0.69},{&quot;2026-06-29&quot;:0.69},{&quot;2026-06-30&quot;:0.69},{&quot;2026-07-01&quot;:0.68},{&quot;2026-07-02&quot;:0.67},{&quot;2026-07-03&quot;:0.68},{&quot;2026-07-04&quot;:0.68},{&quot;2026-07-05&quot;:0.67},{&quot;2026-07-06&quot;:0.67},{&quot;2026-07-07&quot;:0.68},{&quot;2026-07-08&quot;:0.69},{&quot;2026-07-09&quot;:0.69},{&quot;2026-07-10&quot;:0.68},{&quot;2026-07-11&quot;:0.68},{&quot;2026-07-12&quot;:0.68},{&quot;2026-07-13&quot;:0.73},{&quot;2026-07-14&quot;:0.76},{&quot;2026-07-15&quot;:0.76},{&quot;2026-07-16&quot;:0.78},{&quot;2026-07-17&quot;:0.78},{&quot;2026-07-18&quot;:0.78},{&quot;2026-07-19&quot;:0.81},{&quot;2026-07-20&quot;:0.8},{&quot;2026-07-21&quot;:0.8},{&quot;2026-07-23&quot;:0.77},{&quot;2026-07-25&quot;:0.72},{&quot;2026-07-26&quot;:0.73},{&quot;2026-07-27&quot;:0.73},{&quot;2026-07-28&quot;:0.73},{&quot;2026-07-29&quot;:0.73},{&quot;2026-07-30&quot;:0.74},{&quot;2026-07-31&quot;:0.7},{&quot;2026-08-01&quot;:0.69},{&quot;2026-08-02&quot;:0.74},{&quot;2026-08-03&quot;:0.74},{&quot;2026-08-04&quot;:0.87},{&quot;2026-08-05&quot;:0.97},{&quot;2026-08-07&quot;:1.01},{&quot;2026-08-08&quot;:1.01},{&quot;2026-08-09&quot;:0.99},{&quot;2026-08-10&quot;:0.98},{&quot;2026-08-11&quot;:0.98},{&quot;2026-08-12&quot;:1.03},{&quot;2026-08-13&quot;:0.99},{&quot;2026-08-14&quot;:0.96},{&quot;2026-08-15&quot;:0.9},{&quot;2026-08-16&quot;:0.94},{&quot;2026-08-17&quot;:0.89},{&quot;2026-08-18&quot;:0.88},{&quot;2026-08-19&quot;:0.9},{&quot;2026-08-20&quot;:0.9},{&quot;2026-08-21&quot;:0.89},{&quot;2026-08-22&quot;:0.88},{&quot;2026-08-23&quot;:0.88},{&quot;2026-08-24&quot;:0.89},{&quot;2026-08-25&quot;:0.87},{&quot;2026-08-26&quot;:0.81},{&quot;2026-08-27&quot;:0.81},{&quot;2026-08-28&quot;:0.76},{&quot;2026-08-29&quot;:0.76},{&quot;2026-08-30&quot;:0.73},{&quot;2026-08-31&quot;:0.72},{&quot;2026-09-01&quot;:0.72},{&quot;2026-09-02&quot;:0.74},{&quot;2026-09-03&quot;:0.76},{&quot;2026-09-04&quot;:0.76},{&quot;2026-09-05&quot;:0.75},{&quot;2026-09-06&quot;:0.79},{&quot;2026-09-07&quot;:0.78},{&quot;2026-09-08&quot;:0.78},{&quot;2026-09-09&quot;:0.76},{&quot;2026-09-10&quot;:0.77},{&quot;2026-09-11&quot;:0.75}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:0.49},{&quot;2026-06-12&quot;:0.45},{&quot;2026-06-13&quot;:0.45},{&quot;2026-06-14&quot;:0.47},{&quot;2026-06-15&quot;:0.47},{&quot;2026-06-16&quot;:0.44},{&quot;2026-06-17&quot;:0.41},{&quot;2026-06-18&quot;:0.38},{&quot;2026-06-19&quot;:0.36},{&quot;2026-06-20&quot;:0.38},{&quot;2026-06-21&quot;:0.43},{&quot;2026-06-22&quot;:0.46},{&quot;2026-06-23&quot;:0.48},{&quot;2026-06-24&quot;:0.38},{&quot;2026-06-25&quot;:0.43},{&quot;2026-06-26&quot;:0.41},{&quot;2026-06-27&quot;:0.42},{&quot;2026-06-28&quot;:0.43},{&quot;2026-06-29&quot;:0.4},{&quot;2026-06-30&quot;:0.4},{&quot;2026-07-01&quot;:0.43},{&quot;2026-07-02&quot;:0.46},{&quot;2026-07-03&quot;:0.4},{&quot;2026-07-04&quot;:0.42},{&quot;2026-07-05&quot;:0.43},{&quot;2026-07-06&quot;:0.44},{&quot;2026-07-07&quot;:0.43},{&quot;2026-07-08&quot;:0.44},{&quot;2026-07-09&quot;:0.44},{&quot;2026-07-10&quot;:0.65},{&quot;2026-07-11&quot;:0.44},{&quot;2026-07-12&quot;:0.46},{&quot;2026-07-13&quot;:0.42},{&quot;2026-07-14&quot;:0.39},{&quot;2026-07-15&quot;:0.38},{&quot;2026-07-16&quot;:0.43},{&quot;2026-07-17&quot;:0.42},{&quot;2026-07-18&quot;:0.47},{&quot;2026-07-19&quot;:0.41},{&quot;2026-07-20&quot;:0.44},{&quot;2026-07-21&quot;:0.42},{&quot;2026-07-23&quot;:0.41},{&quot;2026-07-25&quot;:0.45},{&quot;2026-07-26&quot;:0.39},{&quot;2026-07-27&quot;:0.4},{&quot;2026-07-28&quot;:0.43},{&quot;2026-07-29&quot;:0.43},{&quot;2026-07-30&quot;:0.43},{&quot;2026-07-31&quot;:0.44},{&quot;2026-08-01&quot;:0.44},{&quot;2026-08-02&quot;:0.43},{&quot;2026-08-03&quot;:0.45},{&quot;2026-08-04&quot;:0.46},{&quot;2026-08-05&quot;:0.43},{&quot;2026-08-07&quot;:0.47},{&quot;2026-08-08&quot;:0.43},{&quot;2026-08-09&quot;:0.48},{&quot;2026-08-10&quot;:0.46},{&quot;2026-08-11&quot;:0.45},{&quot;2026-08-12&quot;:0.48},{&quot;2026-08-13&quot;:0.48},{&quot;2026-08-14&quot;:0.51},{&quot;2026-08-15&quot;:0.54},{&quot;2026-08-16&quot;:0.53},{&quot;2026-08-17&quot;:0.49},{&quot;2026-08-18&quot;:0.5},{&quot;2026-08-19&quot;:0.55},{&quot;2026-08-20&quot;:0.55},{&quot;2026-08-21&quot;:0.51},{&quot;2026-08-22&quot;:0.49},{&quot;2026-08-23&quot;:0.45},{&quot;2026-08-24&quot;:0.5},{&quot;2026-08-25&quot;:0.51},{&quot;2026-08-26&quot;:0.54},{&quot;2026-08-27&quot;:0.49},{&quot;2026-08-28&quot;:0.48},{&quot;2026-08-29&quot;:0.48},{&quot;2026-08-30&quot;:0.57},{&quot;2026-08-31&quot;:0.58},{&quot;2026-09-01&quot;:0.58},{&quot;2026-09-02&quot;:0.51},{&quot;2026-09-03&quot;:0.56},{&quot;2026-09-04&quot;:0.57},{&quot;2026-09-05&quot;:0.59},{&quot;2026-09-06&quot;:0.57},{&quot;2026-09-07&quot;:0.61},{&quot;2026-09-08&quot;:0.66},{&quot;2026-09-09&quot;:0.69},{&quot;2026-09-10&quot;:0.72},{&quot;2026-09-11&quot;:0.57}]}"
        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="95249"
  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-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">
            Forest
        </span>


      </div>

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

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            4 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">
              ↓
              24%
            </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="Forest" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/e/be72862d-d71e-4b18-98a6-59019399f631.jpg?1783906539" />

        <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">
            Forest
        </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 — Forest</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="Forest" src="https://cards.scryfall.io/large/front/b/e/be72862d-d71e-4b18-98a6-59019399f631.jpg?1783906539" />
    </div>

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

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

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

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

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

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

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

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

                <span class="text-xs text-accent-100">
                  ↓
                  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.06</span>
              <span class="text-xs text-grey-text">Credit: $0.08</span>
            </div>
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Foil</span>
              <span class="text-lg font-medium text-nine-white">$0.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.35},{&quot;2026-06-14&quot;:0.37},{&quot;2026-06-15&quot;:0.37},{&quot;2026-06-16&quot;:0.37},{&quot;2026-06-17&quot;:0.37},{&quot;2026-06-18&quot;:0.37},{&quot;2026-06-19&quot;:0.39},{&quot;2026-06-20&quot;:0.39},{&quot;2026-06-21&quot;:0.39},{&quot;2026-06-22&quot;:0.4},{&quot;2026-06-23&quot;:0.45},{&quot;2026-06-24&quot;:0.45},{&quot;2026-06-25&quot;:0.44},{&quot;2026-06-26&quot;:0.44},{&quot;2026-06-27&quot;:0.44},{&quot;2026-06-28&quot;:0.38},{&quot;2026-06-29&quot;:0.37},{&quot;2026-06-30&quot;:0.38},{&quot;2026-07-01&quot;:0.34},{&quot;2026-07-02&quot;:0.36},{&quot;2026-07-03&quot;:0.36},{&quot;2026-07-04&quot;:0.37},{&quot;2026-07-05&quot;:0.37},{&quot;2026-07-06&quot;:0.38},{&quot;2026-07-07&quot;:0.38},{&quot;2026-07-08&quot;:0.4},{&quot;2026-07-09&quot;:0.8},{&quot;2026-07-10&quot;:0.68},{&quot;2026-07-11&quot;:0.68},{&quot;2026-07-12&quot;:0.74},{&quot;2026-07-13&quot;:0.54},{&quot;2026-07-14&quot;:0.54},{&quot;2026-07-15&quot;:0.37},{&quot;2026-07-16&quot;:0.45},{&quot;2026-07-17&quot;:0.49},{&quot;2026-07-18&quot;:0.5},{&quot;2026-07-19&quot;:0.52},{&quot;2026-07-20&quot;:0.5},{&quot;2026-07-21&quot;:0.5},{&quot;2026-07-22&quot;:0.45},{&quot;2026-07-23&quot;:0.44},{&quot;2026-07-24&quot;:0.43},{&quot;2026-07-25&quot;:0.43},{&quot;2026-07-26&quot;:0.32},{&quot;2026-07-27&quot;:0.32},{&quot;2026-07-28&quot;:0.35},{&quot;2026-07-29&quot;:0.36},{&quot;2026-07-30&quot;:0.39},{&quot;2026-07-31&quot;:0.36},{&quot;2026-08-01&quot;:0.35},{&quot;2026-08-02&quot;:0.33},{&quot;2026-08-03&quot;:0.38},{&quot;2026-08-04&quot;:0.44},{&quot;2026-08-05&quot;:0.51},{&quot;2026-08-07&quot;:0.54},{&quot;2026-08-08&quot;:0.55},{&quot;2026-08-09&quot;:0.55},{&quot;2026-08-10&quot;:0.53},{&quot;2026-08-11&quot;:0.53},{&quot;2026-08-12&quot;:0.54},{&quot;2026-08-13&quot;:0.57},{&quot;2026-08-14&quot;:0.53},{&quot;2026-08-15&quot;:0.76},{&quot;2026-08-16&quot;:0.82},{&quot;2026-08-17&quot;:0.87},{&quot;2026-08-18&quot;:0.87},{&quot;2026-08-19&quot;:0.53},{&quot;2026-08-20&quot;:0.57},{&quot;2026-08-21&quot;:0.49},{&quot;2026-08-22&quot;:0.45},{&quot;2026-08-23&quot;:0.46},{&quot;2026-08-24&quot;:0.5},{&quot;2026-08-25&quot;:0.54},{&quot;2026-08-26&quot;:0.52},{&quot;2026-08-27&quot;:0.54},{&quot;2026-08-28&quot;:0.51},{&quot;2026-08-29&quot;:0.51},{&quot;2026-08-30&quot;:0.41},{&quot;2026-08-31&quot;:0.45},{&quot;2026-09-01&quot;:0.43},{&quot;2026-09-02&quot;:0.51},{&quot;2026-09-03&quot;:0.51},{&quot;2026-09-04&quot;:0.51},{&quot;2026-09-05&quot;:0.51},{&quot;2026-09-06&quot;:0.5},{&quot;2026-09-07&quot;:0.48},{&quot;2026-09-08&quot;:0.48},{&quot;2026-09-09&quot;:0.43},{&quot;2026-09-10&quot;:0.43},{&quot;2026-09-11&quot;:0.46}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.44},{&quot;2026-06-14&quot;:0.41},{&quot;2026-06-15&quot;:0.33},{&quot;2026-06-16&quot;:0.32},{&quot;2026-06-17&quot;:0.3},{&quot;2026-06-18&quot;:0.29},{&quot;2026-06-19&quot;:0.36},{&quot;2026-06-20&quot;:0.39},{&quot;2026-06-21&quot;:0.35},{&quot;2026-06-22&quot;:0.35},{&quot;2026-06-23&quot;:0.35},{&quot;2026-06-24&quot;:0.37},{&quot;2026-06-25&quot;:0.38},{&quot;2026-06-26&quot;:0.36},{&quot;2026-06-27&quot;:0.37},{&quot;2026-06-28&quot;:0.41},{&quot;2026-06-29&quot;:0.39},{&quot;2026-06-30&quot;:0.37},{&quot;2026-07-01&quot;:0.3},{&quot;2026-07-02&quot;:0.33},{&quot;2026-07-03&quot;:0.32},{&quot;2026-07-04&quot;:0.34},{&quot;2026-07-05&quot;:0.35},{&quot;2026-07-06&quot;:0.36},{&quot;2026-07-07&quot;:0.37},{&quot;2026-07-08&quot;:0.36},{&quot;2026-07-09&quot;:0.39},{&quot;2026-07-10&quot;:0.38},{&quot;2026-07-11&quot;:0.37},{&quot;2026-07-12&quot;:0.4},{&quot;2026-07-13&quot;:0.32},{&quot;2026-07-14&quot;:0.29},{&quot;2026-07-15&quot;:0.25},{&quot;2026-07-16&quot;:0.26},{&quot;2026-07-17&quot;:0.43},{&quot;2026-07-18&quot;:0.42},{&quot;2026-07-19&quot;:0.45},{&quot;2026-07-20&quot;:0.34},{&quot;2026-07-21&quot;:0.35},{&quot;2026-07-22&quot;:0.36},{&quot;2026-07-23&quot;:0.35},{&quot;2026-07-24&quot;:0.35},{&quot;2026-07-25&quot;:0.35},{&quot;2026-07-26&quot;:0.33},{&quot;2026-07-27&quot;:0.32},{&quot;2026-07-28&quot;:0.33},{&quot;2026-07-29&quot;:0.37},{&quot;2026-07-30&quot;:0.33},{&quot;2026-07-31&quot;:0.26},{&quot;2026-08-01&quot;:0.27},{&quot;2026-08-02&quot;:0.31},{&quot;2026-08-03&quot;:0.32},{&quot;2026-08-04&quot;:0.34},{&quot;2026-08-05&quot;:0.36},{&quot;2026-08-07&quot;:0.34},{&quot;2026-08-08&quot;:0.33},{&quot;2026-08-09&quot;:0.3},{&quot;2026-08-10&quot;:0.29},{&quot;2026-08-11&quot;:0.3},{&quot;2026-08-12&quot;:0.31},{&quot;2026-08-13&quot;:0.32},{&quot;2026-08-14&quot;:0.32},{&quot;2026-08-15&quot;:0.36},{&quot;2026-08-16&quot;:0.34},{&quot;2026-08-17&quot;:0.33},{&quot;2026-08-18&quot;:0.35},{&quot;2026-08-19&quot;:0.35},{&quot;2026-08-20&quot;:0.36},{&quot;2026-08-21&quot;:0.35},{&quot;2026-08-22&quot;:0.32},{&quot;2026-08-23&quot;:0.35},{&quot;2026-08-24&quot;:0.37},{&quot;2026-08-25&quot;:0.37},{&quot;2026-08-26&quot;:0.36},{&quot;2026-08-27&quot;:0.38},{&quot;2026-08-28&quot;:0.39},{&quot;2026-08-29&quot;:0.39},{&quot;2026-08-30&quot;:0.33},{&quot;2026-08-31&quot;:0.36},{&quot;2026-09-01&quot;:0.31},{&quot;2026-09-02&quot;:0.34},{&quot;2026-09-03&quot;:0.35},{&quot;2026-09-04&quot;:0.38},{&quot;2026-09-05&quot;:0.38},{&quot;2026-09-06&quot;:0.32},{&quot;2026-09-07&quot;:0.3},{&quot;2026-09-08&quot;:0.34},{&quot;2026-09-09&quot;:0.34},{&quot;2026-09-10&quot;:0.26},{&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="30201"
  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">
            Solemn Simulacrum
        </span>


      </div>

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

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

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

        <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">
            Solemn Simulacrum
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Solemn Simulacrum" src="https://cards.scryfall.io/large/front/b/8/b89aae48-a783-468d-aa14-552307ec2021.jpg?1783908887" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Foil</span>
              <span class="text-lg font-medium text-nine-white">$0.09</span>
              <span class="text-xs text-grey-text">Credit: $0.12</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.45},{&quot;2026-06-10&quot;:0.46},{&quot;2026-06-11&quot;:0.46},{&quot;2026-06-12&quot;:0.46},{&quot;2026-06-13&quot;:0.46},{&quot;2026-06-14&quot;:0.46},{&quot;2026-06-15&quot;:0.46},{&quot;2026-06-16&quot;:0.46},{&quot;2026-06-17&quot;:0.46},{&quot;2026-06-18&quot;:0.46},{&quot;2026-06-19&quot;:0.47},{&quot;2026-06-20&quot;:0.47},{&quot;2026-06-21&quot;:0.47},{&quot;2026-06-22&quot;:0.47},{&quot;2026-06-24&quot;:0.46},{&quot;2026-06-25&quot;:0.46},{&quot;2026-06-26&quot;:0.45},{&quot;2026-06-27&quot;:0.47},{&quot;2026-06-28&quot;:0.48},{&quot;2026-06-29&quot;:0.48},{&quot;2026-06-30&quot;:0.48},{&quot;2026-07-01&quot;:0.48},{&quot;2026-07-02&quot;:0.48},{&quot;2026-07-03&quot;:0.48},{&quot;2026-07-04&quot;:0.48},{&quot;2026-07-05&quot;:0.48},{&quot;2026-07-06&quot;:0.48},{&quot;2026-07-07&quot;:0.47},{&quot;2026-07-08&quot;:0.44},{&quot;2026-07-09&quot;:0.46},{&quot;2026-07-10&quot;:0.46},{&quot;2026-07-11&quot;:0.46},{&quot;2026-07-12&quot;:0.46},{&quot;2026-07-13&quot;:0.46},{&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.47},{&quot;2026-07-18&quot;:0.47},{&quot;2026-07-19&quot;:0.49},{&quot;2026-07-20&quot;:0.5},{&quot;2026-07-21&quot;:0.48},{&quot;2026-07-23&quot;:0.5},{&quot;2026-07-25&quot;:0.51},{&quot;2026-07-26&quot;:0.52},{&quot;2026-07-27&quot;:0.56},{&quot;2026-07-29&quot;:0.56},{&quot;2026-07-30&quot;:0.56},{&quot;2026-07-31&quot;:0.57},{&quot;2026-08-01&quot;:0.57},{&quot;2026-08-02&quot;:0.53},{&quot;2026-08-03&quot;:0.53},{&quot;2026-08-04&quot;:0.53},{&quot;2026-08-05&quot;:0.53},{&quot;2026-08-07&quot;:0.54},{&quot;2026-08-08&quot;:0.5},{&quot;2026-08-09&quot;:0.49},{&quot;2026-08-10&quot;:0.49},{&quot;2026-08-11&quot;:0.49},{&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.5},{&quot;2026-08-17&quot;:0.48},{&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.46},{&quot;2026-08-23&quot;:0.45},{&quot;2026-08-24&quot;:0.45},{&quot;2026-08-25&quot;:0.45},{&quot;2026-08-26&quot;:0.46},{&quot;2026-08-27&quot;:0.46},{&quot;2026-08-28&quot;:0.46},{&quot;2026-08-29&quot;:0.46},{&quot;2026-08-30&quot;:0.48},{&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.45},{&quot;2026-09-04&quot;:0.44},{&quot;2026-09-05&quot;:0.44},{&quot;2026-09-06&quot;:0.45},{&quot;2026-09-07&quot;:0.45},{&quot;2026-09-08&quot;:0.45},{&quot;2026-09-09&quot;:0.45},{&quot;2026-09-10&quot;:0.45},{&quot;2026-09-11&quot;:0.45}],&quot;normal&quot;:[]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="91099"
  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">
            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.43
          </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/f/8/f8739e90-a967-4e06-b966-1a15755a25bd.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/f/8/f8739e90-a967-4e06-b966-1a15755a25bd.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">
            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.35
              </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.43
              </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">$0.12</span>
              <span class="text-xs text-grey-text">Credit: $0.16</span>
            </div>
        </div>

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

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

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

    <!-- Quick Actions -->

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

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

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


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Artifact Creature — Dragon
      </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="Steel Hellkite" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/9/b9582e2e-f170-4060-b364-0a2dd23b8e62.jpg?1783915399" />

        <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">
            Steel Hellkite
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Steel Hellkite" src="https://cards.scryfall.io/large/front/b/9/b9582e2e-f170-4060-b364-0a2dd23b8e62.jpg?1783915399" />
    </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>

            </div>
          </div>

      </div>

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

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

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

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

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

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

        <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">
            Mosswort Bridge
        </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="Mosswort Bridge" src="https://cards.scryfall.io/large/front/e/2/e2f2bd6c-fd3b-4dbd-a710-f004011fd58b.jpg?1783913826" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Scaretiller" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/4/a45c22ca-28fa-47ed-90bc-57a86ed31929.jpg?1783915399" />

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Scaretiller" src="https://cards.scryfall.io/large/front/a/4/a45c22ca-28fa-47ed-90bc-57a86ed31929.jpg?1783915399" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>


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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:0.36},{&quot;2026-06-11&quot;:0.36},{&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.34},{&quot;2026-06-16&quot;:0.34},{&quot;2026-06-17&quot;:0.34},{&quot;2026-06-18&quot;:0.34},{&quot;2026-06-19&quot;:0.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.35},{&quot;2026-06-24&quot;:0.35},{&quot;2026-06-25&quot;:0.35},{&quot;2026-06-26&quot;:0.35},{&quot;2026-06-27&quot;:0.35},{&quot;2026-06-28&quot;:0.35},{&quot;2026-06-29&quot;:0.35},{&quot;2026-06-30&quot;:0.35},{&quot;2026-07-01&quot;:0.34},{&quot;2026-07-02&quot;:0.34},{&quot;2026-07-03&quot;:0.34},{&quot;2026-07-04&quot;:0.34},{&quot;2026-07-05&quot;:0.34},{&quot;2026-07-06&quot;:0.34},{&quot;2026-07-07&quot;:0.34},{&quot;2026-07-08&quot;:0.36},{&quot;2026-07-09&quot;:0.37},{&quot;2026-07-10&quot;:0.37},{&quot;2026-07-11&quot;:0.37},{&quot;2026-07-12&quot;:0.37},{&quot;2026-07-13&quot;:0.37},{&quot;2026-07-14&quot;:0.37},{&quot;2026-07-15&quot;:0.36},{&quot;2026-07-16&quot;:0.37},{&quot;2026-07-17&quot;:0.37},{&quot;2026-07-18&quot;:0.37},{&quot;2026-07-19&quot;:0.37},{&quot;2026-07-20&quot;:0.37},{&quot;2026-07-21&quot;:0.37},{&quot;2026-07-23&quot;:0.36},{&quot;2026-07-25&quot;:0.37},{&quot;2026-07-26&quot;:0.37},{&quot;2026-07-27&quot;:0.37},{&quot;2026-07-29&quot;:0.37},{&quot;2026-07-30&quot;:0.37},{&quot;2026-07-31&quot;:0.37},{&quot;2026-08-01&quot;:0.37},{&quot;2026-08-02&quot;:0.37},{&quot;2026-08-03&quot;:0.38},{&quot;2026-08-04&quot;:0.37},{&quot;2026-08-05&quot;:0.36},{&quot;2026-08-07&quot;:0.36},{&quot;2026-08-08&quot;:0.36},{&quot;2026-08-09&quot;:0.37},{&quot;2026-08-10&quot;:0.37},{&quot;2026-08-11&quot;:0.37},{&quot;2026-08-12&quot;:0.37},{&quot;2026-08-13&quot;:0.37},{&quot;2026-08-14&quot;:0.37},{&quot;2026-08-15&quot;:0.38},{&quot;2026-08-16&quot;:0.38},{&quot;2026-08-17&quot;:0.38},{&quot;2026-08-18&quot;:0.38},{&quot;2026-08-19&quot;:0.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.37},{&quot;2026-08-27&quot;:0.37},{&quot;2026-08-28&quot;:0.37},{&quot;2026-08-29&quot;:0.37},{&quot;2026-08-30&quot;:0.37},{&quot;2026-08-31&quot;:0.37},{&quot;2026-09-01&quot;:0.37},{&quot;2026-09-02&quot;:0.37},{&quot;2026-09-03&quot;:0.38},{&quot;2026-09-04&quot;:0.38},{&quot;2026-09-05&quot;:0.38},{&quot;2026-09-06&quot;:0.37},{&quot;2026-09-07&quot;:0.37},{&quot;2026-09-08&quot;:0.37},{&quot;2026-09-09&quot;:0.37},{&quot;2026-09-10&quot;:0.37},{&quot;2026-09-11&quot;:0.37}]}"
        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="16680"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-voc ss-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="text-sm font-medium text-nine-white">
            $0.37
          </span>
        </div>
      </div>
    </div>

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

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

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Command Tower" src="https://cards.scryfall.io/large/front/a/5/a5f0af51-a054-4e04-aa6e-3972bd336a40.jpg?1783924936" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Berserkers&#39; Onslaught" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/3/d/3da86edf-a0a4-42b2-b8f3-0c83b03d5e1d.jpg?1783910164" />

        <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">
            Berserkers&#39; Onslaught
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Berserkers&#39; Onslaught" src="https://cards.scryfall.io/large/front/3/d/3da86edf-a0a4-42b2-b8f3-0c83b03d5e1d.jpg?1783910164" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

      </div>

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

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

    <!-- Quick Actions -->

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


    <div
      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 42 items</span></div>

      <div class="overflow-x-auto">
        <nav class="pagy series-nav" aria-label="Page"><a role="link" aria-disabled="true" aria-label="Previous">&lt;</a><a role="link" aria-disabled="true" aria-current="page">1</a><a role="link" aria-disabled="true" aria-label="Next">&gt;</a></nav>
      </div>
    </div>
</div>

<!-- Desktop Table View -->
<div class="hidden lg:block mb-24 overflow-x-auto border rounded-3xl border-highlight">
  <table class="min-w-full divide-y table-auto divide-background">
    <thead class="bg-background" data-controller="table-sort">
      <tr>
          <th
            class="
              py-3 pl-4 pr-0 text-xs font-normal tracking-wider text-left
              normal-case text-grey-text
            "
          >
            <a data-turbo-stream="true" data-action="click-&gt;table-sort#sort" class="flex items-center gap-1 hover:text-white" href="/load_collection?collection_id=20&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=20&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=20&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=20&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=20&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=20&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=20&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=20&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=20&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="46693"
          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">
              337
            </td>

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


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Human Bear
            </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-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

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

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

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

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

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

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

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


            </td>

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

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

                    <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.31
            </td>
        </tr>

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-wot ss-rare ss-fw ss-2x mr-4"></i>
              Nature&#39;s Will


            </td>

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

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

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

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      10%
                    </span>
                </div>
            </td>

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="41742"
          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">
              211
            </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-common ss-fw ss-2x mr-4"></i>
              Tamiyo&#39;s Safekeeping


            </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-g'></i>
              </div>
            </td>

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

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      26%
                    </span>
                </div>
            </td>

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="79528"
          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">
              SOM-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-mb1 ss-rare ss-fw ss-2x mr-4"></i>
              Asceticism


            </td>

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

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

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

                    <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">
                $5.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.61
            </td>
        </tr>

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

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

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


            </td>

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

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

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

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      5%
                    </span>
                </div>
            </td>

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="49251"
          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">
              171
            </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>
              Sanctum Weaver


            </td>

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

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

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-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">
                $1.40
            </td>

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

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c19 ss-uncommon ss-fw ss-2x mr-4"></i>
              Thran Dynamo


            </td>

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

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

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

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      10%
                    </span>
                </div>
            </td>

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $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.41
            </td>
        </tr>

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="19291"
          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">
              379
            </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>
              Karplusan Forest


            </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.06

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="13201"
          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">
              398
            </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>
              Lightning Greaves


            </td>

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

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

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

                    <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.70
            </td>

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="91021"
          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-inr ss-rare ss-fw ss-2x mr-4"></i>
              Unnatural Growth


            </td>

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

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

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

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      2%
                    </span>
                </div>
            </td>

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $2.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.58
            </td>
        </tr>

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-rare ss-fw ss-2x mr-4"></i>
              Kodama of the East Tree


            </td>

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

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

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

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

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

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-5ed ss-common ss-fw ss-2x mr-4"></i>
              Nature&#39;s Lore


            </td>

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

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

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

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

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

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

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


            </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.48

                    <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.14
            </td>
        </tr>

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-afc ss-uncommon ss-fw ss-2x mr-4"></i>
              Swiftfoot Boots


            </td>

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

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

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

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      3%
                    </span>
                </div>
            </td>

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

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

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

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

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

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

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


            </td>

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

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

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

                </div>
            </td>

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

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

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

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-neo ss-rare ss-fw ss-2x mr-4"></i>
              Sokenzan, Crucible of Defiance


            </td>

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

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

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      17%
                    </span>
                </div>
            </td>

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

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

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

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb2 ss-common ss-fw ss-2x mr-4"></i>
              Thought Vessel


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

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      11%
                    </span>
                </div>
            </td>

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $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.27
            </td>
        </tr>

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

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

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


            </td>

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

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

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

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

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

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mid ss-rare ss-fw ss-2x mr-4"></i>
              Saryth, the Viper&#39;s Fang


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary 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-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

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

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      10%
                    </span>
                </div>
            </td>

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.39
            </td>
        </tr>

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-znc ss-uncommon ss-fw ss-2x mr-4"></i>
              Sol Ring


            </td>

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

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

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

                </div>
            </td>

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

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

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

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

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

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

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


            </td>

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

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

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

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

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

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


            </td>

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

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

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

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      12%
                    </span>
                </div>
            </td>

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="49335"
          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">
              200
            </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-common ss-fw ss-2x mr-4"></i>
              Goblin Anarchomancer


            </td>

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></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.45

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      9%
                    </span>
                </div>
            </td>

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

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

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

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

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

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


            </td>

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

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

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

                </div>
            </td>

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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="89499"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_89499" src="/boxset_card/89499?collection_id=20&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

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

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


            </td>

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

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

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

                    <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.36
            </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="14272"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_14272" src="/boxset_card/14272?collection_id=20&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="72953"
          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">
              17
            </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-rare ss-fw ss-2x mr-4"></i>
              Gilded Lotus


            </td>

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

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

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

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      10%
                    </span>
                </div>
            </td>

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.06
            </td>
        </tr>

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

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

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


            </td>

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

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

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

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

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

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

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

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

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


            </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-g'></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-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.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.32
            </td>
        </tr>

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

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

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


            </td>

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

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

                    <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">
                <div class="flex items-center gap-2">
                  $1.21

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

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

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

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

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

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


            </td>

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

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

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

                    <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.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.29
            </td>
        </tr>

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

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

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


            </td>

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

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

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

                </div>
            </td>

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

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

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

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-khc ss-common ss-fw ss-2x mr-4"></i>
              Arcane Signet


            </td>

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

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

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

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      6%
                    </span>
                </div>
            </td>

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.24
            </td>
        </tr>

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="90324"
          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">
              220
            </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-uncommon ss-fw ss-2x mr-4"></i>
              Garruk&#39;s Uprising


            </td>

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

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

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

                    <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.19
            </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="90324"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_90324" src="/boxset_card/90324?collection_id=20&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="95249"
          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">
              306
            </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-common ss-fw ss-2x mr-4"></i>
              Forest


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Basic Land — Forest
            </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-100 text-badge-text">
                      ↓
                      24%
                    </span>
                </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">
                      ↓
                      10%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.06
            </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.70
            </td>
        </tr>

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="30201"
          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">
              729
            </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>
              Solemn Simulacrum


            </td>

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

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

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

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

                    <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.09
            </td>

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="91099"
          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">
              294
            </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">
                  $0.43

                    <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.12
            </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="91099"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_91099" src="/boxset_card/91099?collection_id=20&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

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

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


            </td>

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $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">
                $0.06
            </td>

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

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

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

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

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


            </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.38

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      27%
                    </span>
                </div>
            </td>

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

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

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

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.17
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="76095"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_76095" src="/boxset_card/76095?collection_id=20&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="14920"
          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">
              971
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmm ss-common ss-fw ss-2x mr-4"></i>
              Scaretiller


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact Creature — Scarecrow
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-4'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.37

                    <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">
            </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="14920"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_14920" src="/boxset_card/14920?collection_id=20&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="16680"
          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">
              172
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-voc ss-common ss-fw ss-2x mr-4"></i>
              Command Tower


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.37

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.06
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.38
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="16680"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_16680" src="/boxset_card/16680?collection_id=20&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="80595"
          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">
              DTK-130
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-rare ss-fw ss-2x mr-4"></i>
              Berserkers&#39; Onslaught


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Enchantment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.31

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.31
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="80595"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_80595" src="/boxset_card/80595?collection_id=20&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 42 items</span>
      <nav class="pagy series-nav" aria-label="Page"><a role="link" aria-disabled="true" aria-label="Previous">&lt;</a><a role="link" aria-disabled="true" aria-current="page">1</a><a role="link" aria-disabled="true" aria-label="Next">&gt;</a></nav>
    </div>
</div>

</template></turbo-stream>