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

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


      </div>

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

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="The One Ring" src="https://cards.scryfall.io/large/front/d/5/d5806e68-1054-458e-866d-1f2470f682b2.jpg?1783916239" />
    </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">
                $122.01
              </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">
                $137.67
              </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">$85.00</span>
              <span class="text-xs text-grey-text">Credit: $110.50</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-12&quot;:124.82},{&quot;2026-06-13&quot;:124.54},{&quot;2026-06-14&quot;:124.54},{&quot;2026-06-15&quot;:124.54},{&quot;2026-06-16&quot;:123.31},{&quot;2026-06-17&quot;:123.31},{&quot;2026-06-18&quot;:123.31},{&quot;2026-06-19&quot;:123.52},{&quot;2026-06-20&quot;:123.98},{&quot;2026-06-21&quot;:123.98},{&quot;2026-06-22&quot;:124.46},{&quot;2026-06-23&quot;:124.46},{&quot;2026-06-24&quot;:123.98},{&quot;2026-06-25&quot;:123.98},{&quot;2026-06-26&quot;:124.46},{&quot;2026-06-27&quot;:124.94},{&quot;2026-06-28&quot;:125.05},{&quot;2026-06-29&quot;:125.05},{&quot;2026-06-30&quot;:124.01},{&quot;2026-07-01&quot;:124.01},{&quot;2026-07-02&quot;:124.55},{&quot;2026-07-03&quot;:124.55},{&quot;2026-07-04&quot;:124.55},{&quot;2026-07-05&quot;:125.14},{&quot;2026-07-06&quot;:125.14},{&quot;2026-07-07&quot;:126.57},{&quot;2026-07-08&quot;:126.57},{&quot;2026-07-09&quot;:126.57},{&quot;2026-07-10&quot;:126.57},{&quot;2026-07-11&quot;:128.81},{&quot;2026-07-12&quot;:130.29},{&quot;2026-07-13&quot;:129.41},{&quot;2026-07-14&quot;:130.2},{&quot;2026-07-15&quot;:130.2},{&quot;2026-07-16&quot;:130.2},{&quot;2026-07-17&quot;:130.2},{&quot;2026-07-18&quot;:130.2},{&quot;2026-07-19&quot;:131.12},{&quot;2026-07-20&quot;:131.12},{&quot;2026-07-21&quot;:131.12},{&quot;2026-07-23&quot;:132.2},{&quot;2026-07-24&quot;:132.2},{&quot;2026-07-25&quot;:132.51},{&quot;2026-07-26&quot;:132.51},{&quot;2026-07-27&quot;:132.51},{&quot;2026-07-28&quot;:132.95},{&quot;2026-07-29&quot;:132.56},{&quot;2026-07-30&quot;:132.56},{&quot;2026-07-31&quot;:132.56},{&quot;2026-08-01&quot;:132.56},{&quot;2026-08-02&quot;:132.56},{&quot;2026-08-03&quot;:133.27},{&quot;2026-08-04&quot;:133.27},{&quot;2026-08-05&quot;:132.48},{&quot;2026-08-07&quot;:131.27},{&quot;2026-08-08&quot;:131.27},{&quot;2026-08-09&quot;:131.11},{&quot;2026-08-10&quot;:131.79},{&quot;2026-08-11&quot;:131.79},{&quot;2026-08-12&quot;:131.79},{&quot;2026-08-13&quot;:131.79},{&quot;2026-08-14&quot;:133.14},{&quot;2026-08-15&quot;:133.14},{&quot;2026-08-16&quot;:133.5},{&quot;2026-08-17&quot;:133.86},{&quot;2026-08-18&quot;:134.21},{&quot;2026-08-19&quot;:134.71},{&quot;2026-08-20&quot;:134.71},{&quot;2026-08-21&quot;:133.74},{&quot;2026-08-22&quot;:133.74},{&quot;2026-08-23&quot;:133.74},{&quot;2026-08-24&quot;:133.74},{&quot;2026-08-25&quot;:134.22},{&quot;2026-08-26&quot;:134.22},{&quot;2026-08-27&quot;:134.03},{&quot;2026-08-28&quot;:134.02},{&quot;2026-08-29&quot;:134.02},{&quot;2026-08-30&quot;:134.11},{&quot;2026-08-31&quot;:135.07},{&quot;2026-09-01&quot;:135.07},{&quot;2026-09-02&quot;:135.07},{&quot;2026-09-03&quot;:135.07},{&quot;2026-09-04&quot;:135.59},{&quot;2026-09-05&quot;:135.59},{&quot;2026-09-06&quot;:135.59},{&quot;2026-09-07&quot;:136.88},{&quot;2026-09-08&quot;:137.81},{&quot;2026-09-09&quot;:137.68},{&quot;2026-09-10&quot;:137.84},{&quot;2026-09-11&quot;:137.67}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:104.98},{&quot;2026-06-13&quot;:104.98},{&quot;2026-06-14&quot;:104.71},{&quot;2026-06-15&quot;:106.73},{&quot;2026-06-16&quot;:108.78},{&quot;2026-06-17&quot;:108.31},{&quot;2026-06-18&quot;:107.08},{&quot;2026-06-19&quot;:106.26},{&quot;2026-06-20&quot;:105.23},{&quot;2026-06-21&quot;:105.71},{&quot;2026-06-22&quot;:105.67},{&quot;2026-06-23&quot;:103.1},{&quot;2026-06-24&quot;:103.04},{&quot;2026-06-25&quot;:102.53},{&quot;2026-06-26&quot;:100.89},{&quot;2026-06-27&quot;:100.62},{&quot;2026-06-28&quot;:101.52},{&quot;2026-06-29&quot;:101.67},{&quot;2026-06-30&quot;:102.47},{&quot;2026-07-01&quot;:104.87},{&quot;2026-07-02&quot;:104.44},{&quot;2026-07-03&quot;:102.74},{&quot;2026-07-04&quot;:103.93},{&quot;2026-07-05&quot;:105.42},{&quot;2026-07-06&quot;:104.74},{&quot;2026-07-07&quot;:105.32},{&quot;2026-07-08&quot;:105.39},{&quot;2026-07-09&quot;:106.41},{&quot;2026-07-10&quot;:103.7},{&quot;2026-07-11&quot;:104.3},{&quot;2026-07-12&quot;:103.22},{&quot;2026-07-13&quot;:100.29},{&quot;2026-07-14&quot;:99.89},{&quot;2026-07-15&quot;:98.86},{&quot;2026-07-16&quot;:100.31},{&quot;2026-07-17&quot;:101.85},{&quot;2026-07-18&quot;:104.97},{&quot;2026-07-19&quot;:105.29},{&quot;2026-07-20&quot;:105.96},{&quot;2026-07-21&quot;:106.16},{&quot;2026-07-23&quot;:103.83},{&quot;2026-07-24&quot;:103.99},{&quot;2026-07-25&quot;:104.44},{&quot;2026-07-26&quot;:104.35},{&quot;2026-07-27&quot;:102.95},{&quot;2026-07-28&quot;:103.11},{&quot;2026-07-29&quot;:103.26},{&quot;2026-07-30&quot;:105.42},{&quot;2026-07-31&quot;:106.21},{&quot;2026-08-01&quot;:106.86},{&quot;2026-08-02&quot;:106.69},{&quot;2026-08-03&quot;:105.88},{&quot;2026-08-04&quot;:105.18},{&quot;2026-08-05&quot;:105.94},{&quot;2026-08-07&quot;:104.22},{&quot;2026-08-08&quot;:104.47},{&quot;2026-08-09&quot;:104.49},{&quot;2026-08-10&quot;:104.75},{&quot;2026-08-11&quot;:106.29},{&quot;2026-08-12&quot;:106.01},{&quot;2026-08-13&quot;:106.97},{&quot;2026-08-14&quot;:107.21},{&quot;2026-08-15&quot;:107.55},{&quot;2026-08-16&quot;:106.45},{&quot;2026-08-17&quot;:109.46},{&quot;2026-08-18&quot;:111.29},{&quot;2026-08-19&quot;:112.47},{&quot;2026-08-20&quot;:112.47},{&quot;2026-08-21&quot;:112.85},{&quot;2026-08-22&quot;:112.92},{&quot;2026-08-23&quot;:113.72},{&quot;2026-08-24&quot;:115.23},{&quot;2026-08-25&quot;:115.88},{&quot;2026-08-26&quot;:115.49},{&quot;2026-08-27&quot;:115.07},{&quot;2026-08-28&quot;:112.11},{&quot;2026-08-29&quot;:112.11},{&quot;2026-08-30&quot;:116.28},{&quot;2026-08-31&quot;:116.88},{&quot;2026-09-01&quot;:118.99},{&quot;2026-09-02&quot;:120.96},{&quot;2026-09-03&quot;:121.86},{&quot;2026-09-04&quot;:122.01},{&quot;2026-09-05&quot;:121.95},{&quot;2026-09-06&quot;:122.7},{&quot;2026-09-07&quot;:122.03},{&quot;2026-09-08&quot;:122.69},{&quot;2026-09-09&quot;:121.91},{&quot;2026-09-10&quot;:121.53},{&quot;2026-09-11&quot;:122.01}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Rhystic Study
        </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">
            $107.10
          </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="Rhystic Study" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/d/cd212de7-25f6-4b3b-a35b-df7d87fe205b.jpg?1783906385" />

        <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">
            Rhystic Study
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
          </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="Rhystic Study" src="https://cards.scryfall.io/large/front/c/d/cd212de7-25f6-4b3b-a35b-df7d87fe205b.jpg?1783906385" />
    </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">
                $107.10
              </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">
                $425.27
              </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">$80.00</span>
              <span class="text-xs text-grey-text">Credit: $104.00</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:391.74},{&quot;2026-06-14&quot;:391.45},{&quot;2026-06-15&quot;:391.21},{&quot;2026-06-16&quot;:391.47},{&quot;2026-06-17&quot;:391.47},{&quot;2026-06-18&quot;:391.47},{&quot;2026-06-19&quot;:391.41},{&quot;2026-06-20&quot;:391.41},{&quot;2026-06-21&quot;:391.34},{&quot;2026-06-22&quot;:392.1},{&quot;2026-06-23&quot;:392.24},{&quot;2026-06-24&quot;:392.6},{&quot;2026-06-25&quot;:392.6},{&quot;2026-06-26&quot;:392.6},{&quot;2026-06-27&quot;:392.6},{&quot;2026-06-28&quot;:392.6},{&quot;2026-06-29&quot;:392.6},{&quot;2026-06-30&quot;:393.65},{&quot;2026-07-01&quot;:393.65},{&quot;2026-07-02&quot;:393.65},{&quot;2026-07-03&quot;:393.65},{&quot;2026-07-04&quot;:393.65},{&quot;2026-07-05&quot;:393.65},{&quot;2026-07-06&quot;:393.65},{&quot;2026-07-07&quot;:393.65},{&quot;2026-07-08&quot;:393.65},{&quot;2026-07-09&quot;:393.15},{&quot;2026-07-10&quot;:393.15},{&quot;2026-07-11&quot;:394.07},{&quot;2026-07-12&quot;:394.38},{&quot;2026-07-13&quot;:395.04},{&quot;2026-07-14&quot;:395.76},{&quot;2026-07-15&quot;:396.48},{&quot;2026-07-16&quot;:396.48},{&quot;2026-07-17&quot;:397.13},{&quot;2026-07-18&quot;:397.13},{&quot;2026-07-19&quot;:396.38},{&quot;2026-07-20&quot;:396.38},{&quot;2026-07-21&quot;:396.38},{&quot;2026-07-22&quot;:395.44},{&quot;2026-07-23&quot;:394.29},{&quot;2026-07-24&quot;:394.29},{&quot;2026-07-25&quot;:393.35},{&quot;2026-07-26&quot;:393.35},{&quot;2026-07-27&quot;:393.35},{&quot;2026-07-28&quot;:393.35},{&quot;2026-07-29&quot;:393.35},{&quot;2026-07-30&quot;:394.29},{&quot;2026-07-31&quot;:394.29},{&quot;2026-08-01&quot;:394.29},{&quot;2026-08-02&quot;:395.59},{&quot;2026-08-03&quot;:395.59},{&quot;2026-08-04&quot;:395.59},{&quot;2026-08-05&quot;:395.59},{&quot;2026-08-07&quot;:396.17},{&quot;2026-08-08&quot;:396.75},{&quot;2026-08-09&quot;:396.75},{&quot;2026-08-10&quot;:396.75},{&quot;2026-08-11&quot;:396.75},{&quot;2026-08-12&quot;:396.75},{&quot;2026-08-13&quot;:397.13},{&quot;2026-08-14&quot;:397.13},{&quot;2026-08-15&quot;:399.15},{&quot;2026-08-16&quot;:399.15},{&quot;2026-08-17&quot;:399.15},{&quot;2026-08-18&quot;:399.15},{&quot;2026-08-19&quot;:399.15},{&quot;2026-08-20&quot;:399.15},{&quot;2026-08-21&quot;:399.15},{&quot;2026-08-22&quot;:403.29},{&quot;2026-08-23&quot;:405.95},{&quot;2026-08-24&quot;:405.95},{&quot;2026-08-25&quot;:409.29},{&quot;2026-08-26&quot;:409.29},{&quot;2026-08-27&quot;:409.29},{&quot;2026-08-28&quot;:409.29},{&quot;2026-08-29&quot;:409.29},{&quot;2026-08-30&quot;:414.92},{&quot;2026-08-31&quot;:414.92},{&quot;2026-09-01&quot;:416.95},{&quot;2026-09-02&quot;:416.95},{&quot;2026-09-03&quot;:415.01},{&quot;2026-09-04&quot;:416.78},{&quot;2026-09-05&quot;:416.78},{&quot;2026-09-06&quot;:417.93},{&quot;2026-09-07&quot;:417.93},{&quot;2026-09-08&quot;:417.93},{&quot;2026-09-09&quot;:419.89},{&quot;2026-09-10&quot;:421.95},{&quot;2026-09-11&quot;:425.27}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:93.57},{&quot;2026-06-14&quot;:93.57},{&quot;2026-06-15&quot;:93.74},{&quot;2026-06-16&quot;:92.8},{&quot;2026-06-17&quot;:94.42},{&quot;2026-06-18&quot;:94.36},{&quot;2026-06-19&quot;:96.76},{&quot;2026-06-20&quot;:104.78},{&quot;2026-06-21&quot;:96.53},{&quot;2026-06-22&quot;:96.53},{&quot;2026-06-23&quot;:97.25},{&quot;2026-06-24&quot;:96.71},{&quot;2026-06-25&quot;:97.42},{&quot;2026-06-26&quot;:97.42},{&quot;2026-06-27&quot;:97.11},{&quot;2026-06-28&quot;:97.11},{&quot;2026-06-29&quot;:99.08},{&quot;2026-06-30&quot;:99.58},{&quot;2026-07-01&quot;:99.33},{&quot;2026-07-02&quot;:99.93},{&quot;2026-07-03&quot;:101.04},{&quot;2026-07-04&quot;:100.54},{&quot;2026-07-05&quot;:100.66},{&quot;2026-07-06&quot;:101.31},{&quot;2026-07-07&quot;:101.58},{&quot;2026-07-08&quot;:103.06},{&quot;2026-07-09&quot;:103.06},{&quot;2026-07-10&quot;:102.61},{&quot;2026-07-11&quot;:102.74},{&quot;2026-07-12&quot;:103.65},{&quot;2026-07-13&quot;:103.89},{&quot;2026-07-14&quot;:103.29},{&quot;2026-07-15&quot;:103.65},{&quot;2026-07-16&quot;:103.77},{&quot;2026-07-17&quot;:104.46},{&quot;2026-07-18&quot;:105.03},{&quot;2026-07-19&quot;:104.36},{&quot;2026-07-20&quot;:104.2},{&quot;2026-07-21&quot;:103.71},{&quot;2026-07-22&quot;:104.05},{&quot;2026-07-23&quot;:105.35},{&quot;2026-07-24&quot;:104.65},{&quot;2026-07-25&quot;:105.37},{&quot;2026-07-26&quot;:106.17},{&quot;2026-07-27&quot;:105.44},{&quot;2026-07-28&quot;:106.12},{&quot;2026-07-29&quot;:108.03},{&quot;2026-07-30&quot;:108.03},{&quot;2026-07-31&quot;:109.31},{&quot;2026-08-01&quot;:109.31},{&quot;2026-08-02&quot;:106.8},{&quot;2026-08-03&quot;:105.18},{&quot;2026-08-04&quot;:105.18},{&quot;2026-08-05&quot;:105.86},{&quot;2026-08-07&quot;:105.18},{&quot;2026-08-08&quot;:105.18},{&quot;2026-08-09&quot;:105.92},{&quot;2026-08-10&quot;:106.56},{&quot;2026-08-11&quot;:106.38},{&quot;2026-08-12&quot;:106.38},{&quot;2026-08-13&quot;:106.38},{&quot;2026-08-14&quot;:105.39},{&quot;2026-08-15&quot;:104.72},{&quot;2026-08-16&quot;:104.68},{&quot;2026-08-17&quot;:105.23},{&quot;2026-08-18&quot;:108.11},{&quot;2026-08-19&quot;:109.44},{&quot;2026-08-20&quot;:109.72},{&quot;2026-08-21&quot;:110.32},{&quot;2026-08-22&quot;:109.99},{&quot;2026-08-23&quot;:110.31},{&quot;2026-08-24&quot;:110.48},{&quot;2026-08-25&quot;:110.89},{&quot;2026-08-26&quot;:111.58},{&quot;2026-08-27&quot;:111.76},{&quot;2026-08-28&quot;:111.96},{&quot;2026-08-29&quot;:111.96},{&quot;2026-08-30&quot;:112.71},{&quot;2026-08-31&quot;:112.82},{&quot;2026-09-01&quot;:111.03},{&quot;2026-09-02&quot;:111.03},{&quot;2026-09-03&quot;:111.03},{&quot;2026-09-04&quot;:110.27},{&quot;2026-09-05&quot;:110.12},{&quot;2026-09-06&quot;:109.7},{&quot;2026-09-07&quot;:109.82},{&quot;2026-09-08&quot;:109.12},{&quot;2026-09-09&quot;:108.49},{&quot;2026-09-10&quot;:107.35},{&quot;2026-09-11&quot;:107.1}]}"
        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="53356"
  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">
            Lotus Petal
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $35.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="Lotus Petal" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/5/7/57c4bd1f-757c-4b62-a87d-73da94f904f3.jpg?1783910552" />

        <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">
            Lotus Petal
        </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-0'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Lotus Petal" src="https://cards.scryfall.io/large/front/5/7/57c4bd1f-757c-4b62-a87d-73da94f904f3.jpg?1783910552" />
    </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">
                $35.37
              </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">
                $144.05
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:129.5},{&quot;2026-06-11&quot;:129.5},{&quot;2026-06-12&quot;:129.5},{&quot;2026-06-13&quot;:129.5},{&quot;2026-06-14&quot;:129.5},{&quot;2026-06-15&quot;:129.5},{&quot;2026-06-16&quot;:129.5},{&quot;2026-06-17&quot;:129.5},{&quot;2026-06-18&quot;:129.5},{&quot;2026-06-19&quot;:129.5},{&quot;2026-06-20&quot;:129.5},{&quot;2026-06-21&quot;:129.5},{&quot;2026-06-22&quot;:129.5},{&quot;2026-06-23&quot;:132.01},{&quot;2026-06-24&quot;:132.01},{&quot;2026-06-25&quot;:132.01},{&quot;2026-06-26&quot;:132.01},{&quot;2026-06-27&quot;:132.01},{&quot;2026-06-28&quot;:132.73},{&quot;2026-06-29&quot;:132.73},{&quot;2026-06-30&quot;:132.73},{&quot;2026-07-01&quot;:133.92},{&quot;2026-07-02&quot;:133.92},{&quot;2026-07-03&quot;:133.92},{&quot;2026-07-04&quot;:133.92},{&quot;2026-07-05&quot;:133.92},{&quot;2026-07-06&quot;:133.92},{&quot;2026-07-07&quot;:133.92},{&quot;2026-07-08&quot;:133.92},{&quot;2026-07-09&quot;:135.12},{&quot;2026-07-10&quot;:135.12},{&quot;2026-07-11&quot;:136.31},{&quot;2026-07-12&quot;:136.31},{&quot;2026-07-13&quot;:136.31},{&quot;2026-07-14&quot;:136.31},{&quot;2026-07-15&quot;:136.31},{&quot;2026-07-16&quot;:136.31},{&quot;2026-07-17&quot;:136.31},{&quot;2026-07-18&quot;:137.45},{&quot;2026-07-19&quot;:137.45},{&quot;2026-07-20&quot;:139.22},{&quot;2026-07-21&quot;:139.22},{&quot;2026-07-23&quot;:139.22},{&quot;2026-07-25&quot;:139.22},{&quot;2026-07-26&quot;:139.22},{&quot;2026-07-27&quot;:139.22},{&quot;2026-07-29&quot;:139.22},{&quot;2026-07-30&quot;:139.22},{&quot;2026-07-31&quot;:139.22},{&quot;2026-08-01&quot;:139.22},{&quot;2026-08-02&quot;:139.22},{&quot;2026-08-03&quot;:139.22},{&quot;2026-08-04&quot;:139.22},{&quot;2026-08-05&quot;:139.22},{&quot;2026-08-07&quot;:139.22},{&quot;2026-08-08&quot;:141.02},{&quot;2026-08-09&quot;:141.02},{&quot;2026-08-10&quot;:141.02},{&quot;2026-08-11&quot;:141.02},{&quot;2026-08-12&quot;:141.02},{&quot;2026-08-13&quot;:143.37},{&quot;2026-08-14&quot;:143.37},{&quot;2026-08-15&quot;:143.37},{&quot;2026-08-16&quot;:143.37},{&quot;2026-08-17&quot;:143.37},{&quot;2026-08-18&quot;:143.37},{&quot;2026-08-19&quot;:143.37},{&quot;2026-08-20&quot;:143.37},{&quot;2026-08-21&quot;:143.37},{&quot;2026-08-22&quot;:143.37},{&quot;2026-08-23&quot;:143.37},{&quot;2026-08-24&quot;:143.37},{&quot;2026-08-25&quot;:143.37},{&quot;2026-08-26&quot;:143.37},{&quot;2026-08-27&quot;:143.37},{&quot;2026-08-28&quot;:143.37},{&quot;2026-08-29&quot;:143.37},{&quot;2026-08-30&quot;:143.37},{&quot;2026-08-31&quot;:143.37},{&quot;2026-09-01&quot;:143.37},{&quot;2026-09-02&quot;:143.37},{&quot;2026-09-03&quot;:143.37},{&quot;2026-09-04&quot;:143.37},{&quot;2026-09-05&quot;:143.37},{&quot;2026-09-06&quot;:143.37},{&quot;2026-09-07&quot;:143.37},{&quot;2026-09-08&quot;:143.37},{&quot;2026-09-09&quot;:143.37},{&quot;2026-09-10&quot;:144.05},{&quot;2026-09-11&quot;:144.05}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:34.19},{&quot;2026-06-11&quot;:34.37},{&quot;2026-06-12&quot;:34.86},{&quot;2026-06-13&quot;:34.97},{&quot;2026-06-14&quot;:35.0},{&quot;2026-06-15&quot;:35.26},{&quot;2026-06-16&quot;:35.61},{&quot;2026-06-17&quot;:35.54},{&quot;2026-06-18&quot;:35.67},{&quot;2026-06-19&quot;:35.83},{&quot;2026-06-20&quot;:36.11},{&quot;2026-06-21&quot;:36.11},{&quot;2026-06-22&quot;:36.45},{&quot;2026-06-23&quot;:37.33},{&quot;2026-06-24&quot;:37.74},{&quot;2026-06-25&quot;:37.74},{&quot;2026-06-26&quot;:37.65},{&quot;2026-06-27&quot;:37.88},{&quot;2026-06-28&quot;:38.24},{&quot;2026-06-29&quot;:38.24},{&quot;2026-06-30&quot;:38.24},{&quot;2026-07-01&quot;:38.15},{&quot;2026-07-02&quot;:38.07},{&quot;2026-07-03&quot;:37.89},{&quot;2026-07-04&quot;:37.89},{&quot;2026-07-05&quot;:38.04},{&quot;2026-07-06&quot;:38.41},{&quot;2026-07-07&quot;:38.41},{&quot;2026-07-08&quot;:38.41},{&quot;2026-07-09&quot;:38.29},{&quot;2026-07-10&quot;:38.29},{&quot;2026-07-11&quot;:38.65},{&quot;2026-07-12&quot;:38.65},{&quot;2026-07-13&quot;:38.65},{&quot;2026-07-14&quot;:38.78},{&quot;2026-07-15&quot;:38.78},{&quot;2026-07-16&quot;:38.76},{&quot;2026-07-17&quot;:38.58},{&quot;2026-07-18&quot;:38.26},{&quot;2026-07-19&quot;:38.26},{&quot;2026-07-20&quot;:37.69},{&quot;2026-07-21&quot;:37.69},{&quot;2026-07-23&quot;:37.64},{&quot;2026-07-25&quot;:37.64},{&quot;2026-07-26&quot;:37.78},{&quot;2026-07-27&quot;:37.76},{&quot;2026-07-29&quot;:37.33},{&quot;2026-07-30&quot;:37.12},{&quot;2026-07-31&quot;:36.96},{&quot;2026-08-01&quot;:36.88},{&quot;2026-08-02&quot;:36.99},{&quot;2026-08-03&quot;:36.71},{&quot;2026-08-04&quot;:36.24},{&quot;2026-08-05&quot;:36.24},{&quot;2026-08-07&quot;:35.91},{&quot;2026-08-08&quot;:35.92},{&quot;2026-08-09&quot;:35.17},{&quot;2026-08-10&quot;:34.26},{&quot;2026-08-11&quot;:33.93},{&quot;2026-08-12&quot;:33.55},{&quot;2026-08-13&quot;:32.81},{&quot;2026-08-14&quot;:32.82},{&quot;2026-08-15&quot;:32.34},{&quot;2026-08-16&quot;:31.9},{&quot;2026-08-17&quot;:32.42},{&quot;2026-08-18&quot;:31.13},{&quot;2026-08-19&quot;:30.93},{&quot;2026-08-20&quot;:30.93},{&quot;2026-08-21&quot;:31.32},{&quot;2026-08-22&quot;:31.52},{&quot;2026-08-23&quot;:32.32},{&quot;2026-08-24&quot;:32.73},{&quot;2026-08-25&quot;:32.73},{&quot;2026-08-26&quot;:33.17},{&quot;2026-08-27&quot;:33.98},{&quot;2026-08-28&quot;:34.23},{&quot;2026-08-29&quot;:34.23},{&quot;2026-08-30&quot;:34.36},{&quot;2026-08-31&quot;:34.59},{&quot;2026-09-01&quot;:34.59},{&quot;2026-09-02&quot;:34.11},{&quot;2026-09-03&quot;:33.76},{&quot;2026-09-04&quot;:33.8},{&quot;2026-09-05&quot;:33.65},{&quot;2026-09-06&quot;:33.5},{&quot;2026-09-07&quot;:33.46},{&quot;2026-09-08&quot;:33.84},{&quot;2026-09-09&quot;:33.91},{&quot;2026-09-10&quot;:33.95},{&quot;2026-09-11&quot;:35.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="18427"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-dmr ss-rare ss-fw ss-2x flex-shrink-0"></i>

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Exploration" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/5/b/5b372045-a4a0-44c8-96ec-1e201d61ed26.jpg?1783918444" />

        <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">
            Exploration
        </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-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="Exploration" src="https://cards.scryfall.io/large/front/5/b/5b372045-a4a0-44c8-96ec-1e201d61ed26.jpg?1783918444" />
    </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">
                $32.66
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:34.42},{&quot;2026-06-14&quot;:34.37},{&quot;2026-06-15&quot;:34.37},{&quot;2026-06-16&quot;:34.59},{&quot;2026-06-17&quot;:34.59},{&quot;2026-06-18&quot;:34.59},{&quot;2026-06-19&quot;:34.61},{&quot;2026-06-20&quot;:34.61},{&quot;2026-06-21&quot;:34.61},{&quot;2026-06-22&quot;:34.61},{&quot;2026-06-23&quot;:34.61},{&quot;2026-06-24&quot;:34.61},{&quot;2026-06-25&quot;:34.61},{&quot;2026-06-26&quot;:34.61},{&quot;2026-06-27&quot;:34.61},{&quot;2026-06-28&quot;:34.61},{&quot;2026-06-29&quot;:34.6},{&quot;2026-06-30&quot;:35.41},{&quot;2026-07-01&quot;:35.41},{&quot;2026-07-02&quot;:35.48},{&quot;2026-07-03&quot;:35.48},{&quot;2026-07-04&quot;:35.48},{&quot;2026-07-05&quot;:35.48},{&quot;2026-07-06&quot;:35.46},{&quot;2026-07-07&quot;:35.7},{&quot;2026-07-08&quot;:35.7},{&quot;2026-07-09&quot;:35.66},{&quot;2026-07-10&quot;:35.66},{&quot;2026-07-11&quot;:35.63},{&quot;2026-07-12&quot;:35.39},{&quot;2026-07-13&quot;:35.8},{&quot;2026-07-14&quot;:35.81},{&quot;2026-07-15&quot;:35.56},{&quot;2026-07-16&quot;:35.49},{&quot;2026-07-17&quot;:35.49},{&quot;2026-07-18&quot;:35.04},{&quot;2026-07-19&quot;:35.09},{&quot;2026-07-20&quot;:35.09},{&quot;2026-07-21&quot;:35.09},{&quot;2026-07-22&quot;:35.09},{&quot;2026-07-23&quot;:34.84},{&quot;2026-07-24&quot;:34.83},{&quot;2026-07-25&quot;:34.48},{&quot;2026-07-26&quot;:34.1},{&quot;2026-07-27&quot;:34.1},{&quot;2026-07-28&quot;:34.1},{&quot;2026-07-29&quot;:34.1},{&quot;2026-07-30&quot;:34.1},{&quot;2026-07-31&quot;:34.1},{&quot;2026-08-01&quot;:34.1},{&quot;2026-08-02&quot;:33.83},{&quot;2026-08-03&quot;:33.93},{&quot;2026-08-04&quot;:33.93},{&quot;2026-08-05&quot;:33.93},{&quot;2026-08-07&quot;:34.15},{&quot;2026-08-08&quot;:34.24},{&quot;2026-08-09&quot;:33.99},{&quot;2026-08-10&quot;:34.13},{&quot;2026-08-11&quot;:34.13},{&quot;2026-08-12&quot;:34.13},{&quot;2026-08-13&quot;:34.13},{&quot;2026-08-14&quot;:33.42},{&quot;2026-08-15&quot;:33.68},{&quot;2026-08-16&quot;:33.68},{&quot;2026-08-17&quot;:33.68},{&quot;2026-08-18&quot;:33.68},{&quot;2026-08-19&quot;:33.46},{&quot;2026-08-20&quot;:33.46},{&quot;2026-08-21&quot;:33.46},{&quot;2026-08-22&quot;:33.23},{&quot;2026-08-23&quot;:33.46},{&quot;2026-08-24&quot;:33.46},{&quot;2026-08-25&quot;:33.42},{&quot;2026-08-26&quot;:33.39},{&quot;2026-08-27&quot;:33.39},{&quot;2026-08-28&quot;:33.21},{&quot;2026-08-29&quot;:33.21},{&quot;2026-08-30&quot;:33.42},{&quot;2026-08-31&quot;:33.44},{&quot;2026-09-01&quot;:33.44},{&quot;2026-09-02&quot;:33.67},{&quot;2026-09-03&quot;:33.67},{&quot;2026-09-04&quot;:33.41},{&quot;2026-09-05&quot;:33.41},{&quot;2026-09-06&quot;:33.41},{&quot;2026-09-07&quot;:33.27},{&quot;2026-09-08&quot;:33.27},{&quot;2026-09-09&quot;:33.11},{&quot;2026-09-10&quot;:33.11},{&quot;2026-09-11&quot;:33.11}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:33.37},{&quot;2026-06-14&quot;:33.33},{&quot;2026-06-15&quot;:33.56},{&quot;2026-06-16&quot;:33.51},{&quot;2026-06-17&quot;:33.6},{&quot;2026-06-18&quot;:33.31},{&quot;2026-06-19&quot;:33.34},{&quot;2026-06-20&quot;:33.34},{&quot;2026-06-21&quot;:33.18},{&quot;2026-06-22&quot;:32.74},{&quot;2026-06-23&quot;:32.74},{&quot;2026-06-24&quot;:32.75},{&quot;2026-06-25&quot;:32.35},{&quot;2026-06-26&quot;:31.84},{&quot;2026-06-27&quot;:32.07},{&quot;2026-06-28&quot;:33.15},{&quot;2026-06-29&quot;:32.86},{&quot;2026-06-30&quot;:32.88},{&quot;2026-07-01&quot;:33.17},{&quot;2026-07-02&quot;:33.29},{&quot;2026-07-03&quot;:33.29},{&quot;2026-07-04&quot;:33.57},{&quot;2026-07-05&quot;:33.57},{&quot;2026-07-06&quot;:33.96},{&quot;2026-07-07&quot;:33.96},{&quot;2026-07-08&quot;:34.15},{&quot;2026-07-09&quot;:34.15},{&quot;2026-07-10&quot;:34.14},{&quot;2026-07-11&quot;:33.88},{&quot;2026-07-12&quot;:33.55},{&quot;2026-07-13&quot;:33.55},{&quot;2026-07-14&quot;:32.74},{&quot;2026-07-15&quot;:32.74},{&quot;2026-07-16&quot;:32.35},{&quot;2026-07-17&quot;:31.94},{&quot;2026-07-18&quot;:31.9},{&quot;2026-07-19&quot;:32.08},{&quot;2026-07-20&quot;:32.28},{&quot;2026-07-21&quot;:32.2},{&quot;2026-07-22&quot;:32.04},{&quot;2026-07-23&quot;:31.47},{&quot;2026-07-24&quot;:31.47},{&quot;2026-07-25&quot;:32.03},{&quot;2026-07-26&quot;:31.72},{&quot;2026-07-27&quot;:31.73},{&quot;2026-07-28&quot;:31.63},{&quot;2026-07-29&quot;:31.07},{&quot;2026-07-30&quot;:31.31},{&quot;2026-07-31&quot;:31.65},{&quot;2026-08-01&quot;:31.54},{&quot;2026-08-02&quot;:31.66},{&quot;2026-08-03&quot;:32.57},{&quot;2026-08-04&quot;:33.21},{&quot;2026-08-05&quot;:33.21},{&quot;2026-08-07&quot;:33.35},{&quot;2026-08-08&quot;:33.79},{&quot;2026-08-09&quot;:33.72},{&quot;2026-08-10&quot;:32.98},{&quot;2026-08-11&quot;:32.42},{&quot;2026-08-12&quot;:31.88},{&quot;2026-08-13&quot;:31.33},{&quot;2026-08-14&quot;:30.91},{&quot;2026-08-15&quot;:30.91},{&quot;2026-08-16&quot;:31.0},{&quot;2026-08-17&quot;:31.36},{&quot;2026-08-18&quot;:31.29},{&quot;2026-08-19&quot;:31.83},{&quot;2026-08-20&quot;:31.87},{&quot;2026-08-21&quot;:31.83},{&quot;2026-08-22&quot;:31.83},{&quot;2026-08-23&quot;:32.0},{&quot;2026-08-24&quot;:33.3},{&quot;2026-08-25&quot;:33.39},{&quot;2026-08-26&quot;:32.96},{&quot;2026-08-27&quot;:33.17},{&quot;2026-08-28&quot;:33.06},{&quot;2026-08-29&quot;:33.06},{&quot;2026-08-30&quot;:33.23},{&quot;2026-08-31&quot;:33.2},{&quot;2026-09-01&quot;:33.61},{&quot;2026-09-02&quot;:33.61},{&quot;2026-09-03&quot;:33.61},{&quot;2026-09-04&quot;:34.04},{&quot;2026-09-05&quot;:33.92},{&quot;2026-09-06&quot;:34.21},{&quot;2026-09-07&quot;:33.8},{&quot;2026-09-08&quot;:33.67},{&quot;2026-09-09&quot;:33.08},{&quot;2026-09-10&quot;:32.74},{&quot;2026-09-11&quot;:32.66}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

        <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">
            Mystical Tutor
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Mystical Tutor" src="https://cards.scryfall.io/large/front/7/3/7331aade-3b7f-4b4d-b198-2e0b6b80895c.jpg?1783918385" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $16.90
              </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">
                $18.60
              </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">$13.50</span>
              <span class="text-xs text-grey-text">Credit: $17.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-08&quot;:17.56},{&quot;2026-06-10&quot;:17.61},{&quot;2026-06-11&quot;:17.73},{&quot;2026-06-12&quot;:17.73},{&quot;2026-06-13&quot;:17.73},{&quot;2026-06-14&quot;:17.92},{&quot;2026-06-15&quot;:17.92},{&quot;2026-06-16&quot;:17.92},{&quot;2026-06-17&quot;:17.92},{&quot;2026-06-18&quot;:17.92},{&quot;2026-06-19&quot;:18.05},{&quot;2026-06-20&quot;:18.05},{&quot;2026-06-21&quot;:18.14},{&quot;2026-06-22&quot;:18.14},{&quot;2026-06-24&quot;:18.14},{&quot;2026-06-25&quot;:18.14},{&quot;2026-06-26&quot;:18.06},{&quot;2026-06-27&quot;:18.06},{&quot;2026-06-28&quot;:18.05},{&quot;2026-06-29&quot;:18.05},{&quot;2026-06-30&quot;:17.89},{&quot;2026-07-01&quot;:17.89},{&quot;2026-07-02&quot;:17.89},{&quot;2026-07-03&quot;:17.88},{&quot;2026-07-04&quot;:17.88},{&quot;2026-07-05&quot;:17.97},{&quot;2026-07-06&quot;:17.97},{&quot;2026-07-07&quot;:18.01},{&quot;2026-07-08&quot;:18.05},{&quot;2026-07-09&quot;:17.9},{&quot;2026-07-10&quot;:17.88},{&quot;2026-07-11&quot;:17.88},{&quot;2026-07-12&quot;:17.88},{&quot;2026-07-13&quot;:17.76},{&quot;2026-07-14&quot;:17.76},{&quot;2026-07-15&quot;:17.8},{&quot;2026-07-16&quot;:17.65},{&quot;2026-07-17&quot;:17.65},{&quot;2026-07-18&quot;:17.65},{&quot;2026-07-19&quot;:17.67},{&quot;2026-07-20&quot;:17.67},{&quot;2026-07-21&quot;:17.75},{&quot;2026-07-23&quot;:18.01},{&quot;2026-07-25&quot;:17.94},{&quot;2026-07-26&quot;:17.94},{&quot;2026-07-27&quot;:17.94},{&quot;2026-07-29&quot;:17.92},{&quot;2026-07-30&quot;:17.87},{&quot;2026-07-31&quot;:17.87},{&quot;2026-08-01&quot;:17.87},{&quot;2026-08-02&quot;:17.87},{&quot;2026-08-03&quot;:17.75},{&quot;2026-08-04&quot;:17.71},{&quot;2026-08-05&quot;:17.71},{&quot;2026-08-07&quot;:17.62},{&quot;2026-08-08&quot;:17.43},{&quot;2026-08-09&quot;:17.35},{&quot;2026-08-10&quot;:17.35},{&quot;2026-08-11&quot;:17.45},{&quot;2026-08-12&quot;:17.45},{&quot;2026-08-13&quot;:17.48},{&quot;2026-08-14&quot;:17.53},{&quot;2026-08-15&quot;:17.53},{&quot;2026-08-16&quot;:17.8},{&quot;2026-08-17&quot;:17.83},{&quot;2026-08-18&quot;:17.83},{&quot;2026-08-19&quot;:17.83},{&quot;2026-08-20&quot;:17.83},{&quot;2026-08-21&quot;:17.96},{&quot;2026-08-22&quot;:18.05},{&quot;2026-08-23&quot;:18.08},{&quot;2026-08-24&quot;:18.25},{&quot;2026-08-25&quot;:18.25},{&quot;2026-08-26&quot;:17.98},{&quot;2026-08-27&quot;:17.97},{&quot;2026-08-28&quot;:17.97},{&quot;2026-08-29&quot;:17.97},{&quot;2026-08-30&quot;:18.09},{&quot;2026-08-31&quot;:18.25},{&quot;2026-09-01&quot;:18.25},{&quot;2026-09-02&quot;:18.25},{&quot;2026-09-03&quot;:18.16},{&quot;2026-09-04&quot;:18.19},{&quot;2026-09-05&quot;:18.19},{&quot;2026-09-06&quot;:18.39},{&quot;2026-09-07&quot;:18.49},{&quot;2026-09-08&quot;:18.6},{&quot;2026-09-09&quot;:18.6},{&quot;2026-09-10&quot;:18.6},{&quot;2026-09-11&quot;:18.6}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:16.09},{&quot;2026-06-10&quot;:15.76},{&quot;2026-06-11&quot;:15.7},{&quot;2026-06-12&quot;:15.6},{&quot;2026-06-13&quot;:15.84},{&quot;2026-06-14&quot;:15.79},{&quot;2026-06-15&quot;:15.79},{&quot;2026-06-16&quot;:15.79},{&quot;2026-06-17&quot;:15.69},{&quot;2026-06-18&quot;:15.75},{&quot;2026-06-19&quot;:15.76},{&quot;2026-06-20&quot;:15.86},{&quot;2026-06-21&quot;:15.8},{&quot;2026-06-22&quot;:15.8},{&quot;2026-06-24&quot;:16.03},{&quot;2026-06-25&quot;:16.03},{&quot;2026-06-26&quot;:16.05},{&quot;2026-06-27&quot;:15.92},{&quot;2026-06-28&quot;:15.74},{&quot;2026-06-29&quot;:15.92},{&quot;2026-06-30&quot;:15.92},{&quot;2026-07-01&quot;:15.95},{&quot;2026-07-02&quot;:15.95},{&quot;2026-07-03&quot;:16.05},{&quot;2026-07-04&quot;:16.05},{&quot;2026-07-05&quot;:16.16},{&quot;2026-07-06&quot;:16.05},{&quot;2026-07-07&quot;:16.05},{&quot;2026-07-08&quot;:16.05},{&quot;2026-07-09&quot;:16.06},{&quot;2026-07-10&quot;:16.09},{&quot;2026-07-11&quot;:16.0},{&quot;2026-07-12&quot;:16.15},{&quot;2026-07-13&quot;:16.15},{&quot;2026-07-14&quot;:15.97},{&quot;2026-07-15&quot;:15.77},{&quot;2026-07-16&quot;:16.06},{&quot;2026-07-17&quot;:16.02},{&quot;2026-07-18&quot;:16.14},{&quot;2026-07-19&quot;:16.14},{&quot;2026-07-20&quot;:16.22},{&quot;2026-07-21&quot;:16.22},{&quot;2026-07-23&quot;:16.35},{&quot;2026-07-25&quot;:16.36},{&quot;2026-07-26&quot;:16.47},{&quot;2026-07-27&quot;:16.71},{&quot;2026-07-29&quot;:16.76},{&quot;2026-07-30&quot;:16.76},{&quot;2026-07-31&quot;:16.82},{&quot;2026-08-01&quot;:16.87},{&quot;2026-08-02&quot;:16.88},{&quot;2026-08-03&quot;:16.76},{&quot;2026-08-04&quot;:16.8},{&quot;2026-08-05&quot;:16.8},{&quot;2026-08-07&quot;:16.8},{&quot;2026-08-08&quot;:16.8},{&quot;2026-08-09&quot;:16.74},{&quot;2026-08-10&quot;:16.63},{&quot;2026-08-11&quot;:16.63},{&quot;2026-08-12&quot;:16.61},{&quot;2026-08-13&quot;:16.61},{&quot;2026-08-14&quot;:16.58},{&quot;2026-08-15&quot;:16.58},{&quot;2026-08-16&quot;:16.61},{&quot;2026-08-17&quot;:16.61},{&quot;2026-08-18&quot;:16.64},{&quot;2026-08-19&quot;:16.69},{&quot;2026-08-20&quot;:16.69},{&quot;2026-08-21&quot;:16.31},{&quot;2026-08-22&quot;:16.51},{&quot;2026-08-23&quot;:16.54},{&quot;2026-08-24&quot;:16.72},{&quot;2026-08-25&quot;:16.72},{&quot;2026-08-26&quot;:16.8},{&quot;2026-08-27&quot;:16.8},{&quot;2026-08-28&quot;:16.8},{&quot;2026-08-29&quot;:16.8},{&quot;2026-08-30&quot;:16.79},{&quot;2026-08-31&quot;:16.8},{&quot;2026-09-01&quot;:16.8},{&quot;2026-09-02&quot;:16.93},{&quot;2026-09-03&quot;:16.77},{&quot;2026-09-04&quot;:16.6},{&quot;2026-09-05&quot;:16.53},{&quot;2026-09-06&quot;:16.59},{&quot;2026-09-07&quot;:16.59},{&quot;2026-09-08&quot;:16.63},{&quot;2026-09-09&quot;:16.9},{&quot;2026-09-10&quot;:16.9},{&quot;2026-09-11&quot;:16.9}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $10.34
          </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="Breeding Pool" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/3/c/3c750d5a-f743-41ff-b5ba-02025ca0bec2.jpg?1752947580" />

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Breeding Pool" src="https://cards.scryfall.io/large/front/3/c/3c750d5a-f743-41ff-b5ba-02025ca0bec2.jpg?1752947580" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:11.2},{&quot;2026-06-14&quot;:11.2},{&quot;2026-06-15&quot;:10.95},{&quot;2026-06-16&quot;:10.64},{&quot;2026-06-17&quot;:10.64},{&quot;2026-06-18&quot;:10.56},{&quot;2026-06-19&quot;:10.6},{&quot;2026-06-20&quot;:10.64},{&quot;2026-06-21&quot;:10.12},{&quot;2026-06-22&quot;:9.91},{&quot;2026-06-23&quot;:9.99},{&quot;2026-06-24&quot;:9.97},{&quot;2026-06-25&quot;:10.0},{&quot;2026-06-26&quot;:10.1},{&quot;2026-06-27&quot;:10.1},{&quot;2026-06-28&quot;:10.1},{&quot;2026-06-29&quot;:10.23},{&quot;2026-06-30&quot;:10.56},{&quot;2026-07-01&quot;:10.59},{&quot;2026-07-02&quot;:10.45},{&quot;2026-07-03&quot;:10.3},{&quot;2026-07-04&quot;:10.21},{&quot;2026-07-05&quot;:10.22},{&quot;2026-07-06&quot;:10.2},{&quot;2026-07-07&quot;:10.08},{&quot;2026-07-08&quot;:9.77},{&quot;2026-07-09&quot;:9.82},{&quot;2026-07-10&quot;:9.44},{&quot;2026-07-11&quot;:9.44},{&quot;2026-07-12&quot;:9.35},{&quot;2026-07-13&quot;:9.09},{&quot;2026-07-14&quot;:8.98},{&quot;2026-07-15&quot;:9.04},{&quot;2026-07-16&quot;:8.91},{&quot;2026-07-17&quot;:8.84},{&quot;2026-07-18&quot;:9.06},{&quot;2026-07-19&quot;:9.3},{&quot;2026-07-20&quot;:9.54},{&quot;2026-07-21&quot;:9.6},{&quot;2026-07-22&quot;:9.78},{&quot;2026-07-23&quot;:10.04},{&quot;2026-07-24&quot;:10.07},{&quot;2026-07-25&quot;:10.07},{&quot;2026-07-26&quot;:10.07},{&quot;2026-07-27&quot;:10.0},{&quot;2026-07-28&quot;:9.99},{&quot;2026-07-29&quot;:10.0},{&quot;2026-07-30&quot;:9.95},{&quot;2026-07-31&quot;:10.03},{&quot;2026-08-01&quot;:10.16},{&quot;2026-08-02&quot;:10.18},{&quot;2026-08-03&quot;:10.18},{&quot;2026-08-04&quot;:10.19},{&quot;2026-08-05&quot;:10.19},{&quot;2026-08-07&quot;:10.22},{&quot;2026-08-08&quot;:10.14},{&quot;2026-08-09&quot;:10.05},{&quot;2026-08-10&quot;:9.93},{&quot;2026-08-11&quot;:9.96},{&quot;2026-08-12&quot;:9.96},{&quot;2026-08-13&quot;:9.96},{&quot;2026-08-14&quot;:9.86},{&quot;2026-08-15&quot;:9.86},{&quot;2026-08-16&quot;:9.87},{&quot;2026-08-17&quot;:9.55},{&quot;2026-08-18&quot;:9.53},{&quot;2026-08-19&quot;:9.41},{&quot;2026-08-20&quot;:9.4},{&quot;2026-08-21&quot;:9.45},{&quot;2026-08-22&quot;:9.63},{&quot;2026-08-23&quot;:9.5},{&quot;2026-08-24&quot;:9.69},{&quot;2026-08-25&quot;:9.83},{&quot;2026-08-26&quot;:9.83},{&quot;2026-08-27&quot;:9.67},{&quot;2026-08-28&quot;:9.95},{&quot;2026-08-29&quot;:9.95},{&quot;2026-08-30&quot;:9.84},{&quot;2026-08-31&quot;:10.0},{&quot;2026-09-01&quot;:9.82},{&quot;2026-09-02&quot;:9.82},{&quot;2026-09-03&quot;:9.63},{&quot;2026-09-04&quot;:9.58},{&quot;2026-09-05&quot;:9.58},{&quot;2026-09-06&quot;:9.35},{&quot;2026-09-07&quot;:9.23},{&quot;2026-09-08&quot;:9.37},{&quot;2026-09-09&quot;:9.47},{&quot;2026-09-10&quot;:9.57},{&quot;2026-09-11&quot;:9.61}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:10.42},{&quot;2026-06-14&quot;:10.38},{&quot;2026-06-15&quot;:10.46},{&quot;2026-06-16&quot;:10.3},{&quot;2026-06-17&quot;:10.51},{&quot;2026-06-18&quot;:10.57},{&quot;2026-06-19&quot;:10.36},{&quot;2026-06-20&quot;:10.16},{&quot;2026-06-21&quot;:10.11},{&quot;2026-06-22&quot;:9.72},{&quot;2026-06-23&quot;:9.66},{&quot;2026-06-24&quot;:9.72},{&quot;2026-06-25&quot;:9.53},{&quot;2026-06-26&quot;:9.26},{&quot;2026-06-27&quot;:9.45},{&quot;2026-06-28&quot;:9.64},{&quot;2026-06-29&quot;:9.4},{&quot;2026-06-30&quot;:9.76},{&quot;2026-07-01&quot;:9.53},{&quot;2026-07-02&quot;:9.16},{&quot;2026-07-03&quot;:9.59},{&quot;2026-07-04&quot;:9.77},{&quot;2026-07-05&quot;:9.83},{&quot;2026-07-06&quot;:9.74},{&quot;2026-07-07&quot;:9.28},{&quot;2026-07-08&quot;:9.69},{&quot;2026-07-09&quot;:9.76},{&quot;2026-07-10&quot;:9.15},{&quot;2026-07-11&quot;:9.37},{&quot;2026-07-12&quot;:9.22},{&quot;2026-07-13&quot;:9.32},{&quot;2026-07-14&quot;:9.61},{&quot;2026-07-15&quot;:9.88},{&quot;2026-07-16&quot;:9.89},{&quot;2026-07-17&quot;:9.63},{&quot;2026-07-18&quot;:9.24},{&quot;2026-07-19&quot;:9.25},{&quot;2026-07-20&quot;:9.36},{&quot;2026-07-21&quot;:9.33},{&quot;2026-07-22&quot;:9.63},{&quot;2026-07-23&quot;:9.79},{&quot;2026-07-24&quot;:9.35},{&quot;2026-07-25&quot;:9.37},{&quot;2026-07-26&quot;:9.34},{&quot;2026-07-27&quot;:9.64},{&quot;2026-07-28&quot;:9.52},{&quot;2026-07-29&quot;:9.4},{&quot;2026-07-30&quot;:9.56},{&quot;2026-07-31&quot;:10.07},{&quot;2026-08-01&quot;:10.16},{&quot;2026-08-02&quot;:10.3},{&quot;2026-08-03&quot;:10.21},{&quot;2026-08-04&quot;:10.18},{&quot;2026-08-05&quot;:9.65},{&quot;2026-08-07&quot;:9.6},{&quot;2026-08-08&quot;:9.82},{&quot;2026-08-09&quot;:9.67},{&quot;2026-08-10&quot;:9.34},{&quot;2026-08-11&quot;:9.61},{&quot;2026-08-12&quot;:9.47},{&quot;2026-08-13&quot;:9.55},{&quot;2026-08-14&quot;:9.51},{&quot;2026-08-15&quot;:9.45},{&quot;2026-08-16&quot;:9.56},{&quot;2026-08-17&quot;:9.7},{&quot;2026-08-18&quot;:9.92},{&quot;2026-08-19&quot;:10.06},{&quot;2026-08-20&quot;:10.1},{&quot;2026-08-21&quot;:10.14},{&quot;2026-08-22&quot;:10.04},{&quot;2026-08-23&quot;:9.53},{&quot;2026-08-24&quot;:9.24},{&quot;2026-08-25&quot;:9.9},{&quot;2026-08-26&quot;:9.76},{&quot;2026-08-27&quot;:9.77},{&quot;2026-08-28&quot;:9.27},{&quot;2026-08-29&quot;:9.27},{&quot;2026-08-30&quot;:9.31},{&quot;2026-08-31&quot;:9.54},{&quot;2026-09-01&quot;:10.17},{&quot;2026-09-02&quot;:10.21},{&quot;2026-09-03&quot;:9.93},{&quot;2026-09-04&quot;:9.61},{&quot;2026-09-05&quot;:10.02},{&quot;2026-09-06&quot;:9.77},{&quot;2026-09-07&quot;:9.57},{&quot;2026-09-08&quot;:9.65},{&quot;2026-09-09&quot;:9.98},{&quot;2026-09-10&quot;:10.16},{&quot;2026-09-11&quot;:10.34}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $10.22
          </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="Mystic Remora" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/f/9f87c041-c516-4911-ad28-1fb961c0d3dc.jpg?1783918385" />

        <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">
            Mystic Remora
        </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-u'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Mystic Remora" src="https://cards.scryfall.io/large/front/9/f/9f87c041-c516-4911-ad28-1fb961c0d3dc.jpg?1783918385" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-12&quot;:17.07},{&quot;2026-06-13&quot;:17.3},{&quot;2026-06-14&quot;:17.32},{&quot;2026-06-15&quot;:17.45},{&quot;2026-06-16&quot;:17.45},{&quot;2026-06-17&quot;:17.61},{&quot;2026-06-18&quot;:17.61},{&quot;2026-06-19&quot;:17.84},{&quot;2026-06-20&quot;:17.84},{&quot;2026-06-21&quot;:17.84},{&quot;2026-06-22&quot;:17.94},{&quot;2026-06-23&quot;:17.94},{&quot;2026-06-24&quot;:18.22},{&quot;2026-06-25&quot;:18.22},{&quot;2026-06-26&quot;:18.28},{&quot;2026-06-27&quot;:18.46},{&quot;2026-06-28&quot;:18.46},{&quot;2026-06-29&quot;:18.63},{&quot;2026-06-30&quot;:18.54},{&quot;2026-07-01&quot;:18.4},{&quot;2026-07-02&quot;:18.4},{&quot;2026-07-03&quot;:18.13},{&quot;2026-07-04&quot;:18.13},{&quot;2026-07-05&quot;:18.13},{&quot;2026-07-06&quot;:18.13},{&quot;2026-07-07&quot;:18.13},{&quot;2026-07-08&quot;:18.13},{&quot;2026-07-09&quot;:18.12},{&quot;2026-07-10&quot;:17.78},{&quot;2026-07-11&quot;:17.78},{&quot;2026-07-12&quot;:17.78},{&quot;2026-07-13&quot;:17.78},{&quot;2026-07-14&quot;:17.78},{&quot;2026-07-15&quot;:17.78},{&quot;2026-07-16&quot;:17.77},{&quot;2026-07-17&quot;:17.77},{&quot;2026-07-18&quot;:17.68},{&quot;2026-07-19&quot;:17.72},{&quot;2026-07-20&quot;:17.72},{&quot;2026-07-21&quot;:17.72},{&quot;2026-07-23&quot;:17.73},{&quot;2026-07-24&quot;:17.78},{&quot;2026-07-25&quot;:17.78},{&quot;2026-07-26&quot;:17.78},{&quot;2026-07-27&quot;:17.78},{&quot;2026-07-28&quot;:17.78},{&quot;2026-07-29&quot;:17.78},{&quot;2026-07-30&quot;:17.78},{&quot;2026-07-31&quot;:17.78},{&quot;2026-08-01&quot;:17.78},{&quot;2026-08-02&quot;:17.78},{&quot;2026-08-03&quot;:17.78},{&quot;2026-08-04&quot;:17.78},{&quot;2026-08-05&quot;:17.87},{&quot;2026-08-07&quot;:17.82},{&quot;2026-08-08&quot;:17.82},{&quot;2026-08-09&quot;:17.85},{&quot;2026-08-10&quot;:17.77},{&quot;2026-08-11&quot;:17.9},{&quot;2026-08-12&quot;:17.9},{&quot;2026-08-13&quot;:17.98},{&quot;2026-08-14&quot;:17.98},{&quot;2026-08-15&quot;:18.2},{&quot;2026-08-16&quot;:18.2},{&quot;2026-08-17&quot;:18.66},{&quot;2026-08-18&quot;:18.92},{&quot;2026-08-19&quot;:19.19},{&quot;2026-08-20&quot;:19.19},{&quot;2026-08-21&quot;:19.27},{&quot;2026-08-22&quot;:19.25},{&quot;2026-08-23&quot;:19.25},{&quot;2026-08-24&quot;:19.25},{&quot;2026-08-25&quot;:19.25},{&quot;2026-08-26&quot;:19.25},{&quot;2026-08-27&quot;:19.25},{&quot;2026-08-28&quot;:19.25},{&quot;2026-08-29&quot;:19.25},{&quot;2026-08-30&quot;:19.34},{&quot;2026-08-31&quot;:19.34},{&quot;2026-09-01&quot;:19.4},{&quot;2026-09-02&quot;:19.44},{&quot;2026-09-03&quot;:19.47},{&quot;2026-09-04&quot;:19.47},{&quot;2026-09-05&quot;:19.47},{&quot;2026-09-06&quot;:19.41},{&quot;2026-09-07&quot;:19.4},{&quot;2026-09-08&quot;:19.4},{&quot;2026-09-09&quot;:19.35},{&quot;2026-09-10&quot;:19.35},{&quot;2026-09-11&quot;:19.42}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:10.05},{&quot;2026-06-13&quot;:10.09},{&quot;2026-06-14&quot;:10.32},{&quot;2026-06-15&quot;:10.46},{&quot;2026-06-16&quot;:10.46},{&quot;2026-06-17&quot;:10.48},{&quot;2026-06-18&quot;:10.48},{&quot;2026-06-19&quot;:10.48},{&quot;2026-06-20&quot;:10.5},{&quot;2026-06-21&quot;:10.5},{&quot;2026-06-22&quot;:10.39},{&quot;2026-06-23&quot;:10.57},{&quot;2026-06-24&quot;:10.53},{&quot;2026-06-25&quot;:10.55},{&quot;2026-06-26&quot;:9.8},{&quot;2026-06-27&quot;:10.61},{&quot;2026-06-28&quot;:10.64},{&quot;2026-06-29&quot;:10.78},{&quot;2026-06-30&quot;:10.81},{&quot;2026-07-01&quot;:10.95},{&quot;2026-07-02&quot;:10.87},{&quot;2026-07-03&quot;:10.82},{&quot;2026-07-04&quot;:10.67},{&quot;2026-07-05&quot;:10.67},{&quot;2026-07-06&quot;:10.68},{&quot;2026-07-07&quot;:10.69},{&quot;2026-07-08&quot;:10.7},{&quot;2026-07-09&quot;:10.54},{&quot;2026-07-10&quot;:10.58},{&quot;2026-07-11&quot;:10.58},{&quot;2026-07-12&quot;:10.67},{&quot;2026-07-13&quot;:10.74},{&quot;2026-07-14&quot;:10.74},{&quot;2026-07-15&quot;:10.6},{&quot;2026-07-16&quot;:10.67},{&quot;2026-07-17&quot;:10.59},{&quot;2026-07-18&quot;:10.58},{&quot;2026-07-19&quot;:10.58},{&quot;2026-07-20&quot;:10.58},{&quot;2026-07-21&quot;:10.49},{&quot;2026-07-23&quot;:10.57},{&quot;2026-07-24&quot;:10.59},{&quot;2026-07-25&quot;:10.59},{&quot;2026-07-26&quot;:10.6},{&quot;2026-07-27&quot;:10.6},{&quot;2026-07-28&quot;:10.6},{&quot;2026-07-29&quot;:10.58},{&quot;2026-07-30&quot;:10.6},{&quot;2026-07-31&quot;:10.76},{&quot;2026-08-01&quot;:10.69},{&quot;2026-08-02&quot;:10.7},{&quot;2026-08-03&quot;:10.75},{&quot;2026-08-04&quot;:10.87},{&quot;2026-08-05&quot;:11.01},{&quot;2026-08-07&quot;:11.33},{&quot;2026-08-08&quot;:11.33},{&quot;2026-08-09&quot;:11.33},{&quot;2026-08-10&quot;:11.25},{&quot;2026-08-11&quot;:11.25},{&quot;2026-08-12&quot;:11.25},{&quot;2026-08-13&quot;:11.22},{&quot;2026-08-14&quot;:11.24},{&quot;2026-08-15&quot;:11.28},{&quot;2026-08-16&quot;:11.28},{&quot;2026-08-17&quot;:11.42},{&quot;2026-08-18&quot;:11.51},{&quot;2026-08-19&quot;:11.54},{&quot;2026-08-20&quot;:11.54},{&quot;2026-08-21&quot;:11.29},{&quot;2026-08-22&quot;:11.39},{&quot;2026-08-23&quot;:11.52},{&quot;2026-08-24&quot;:11.52},{&quot;2026-08-25&quot;:11.43},{&quot;2026-08-26&quot;:11.12},{&quot;2026-08-27&quot;:11.23},{&quot;2026-08-28&quot;:10.92},{&quot;2026-08-29&quot;:10.92},{&quot;2026-08-30&quot;:10.72},{&quot;2026-08-31&quot;:10.52},{&quot;2026-09-01&quot;:10.52},{&quot;2026-09-02&quot;:10.46},{&quot;2026-09-03&quot;:10.33},{&quot;2026-09-04&quot;:10.33},{&quot;2026-09-05&quot;:10.33},{&quot;2026-09-06&quot;:10.4},{&quot;2026-09-07&quot;:10.26},{&quot;2026-09-08&quot;:10.26},{&quot;2026-09-09&quot;:10.39},{&quot;2026-09-10&quot;:10.18},{&quot;2026-09-11&quot;:10.22}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="97980"
  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-ecl 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">
            Overgrown Tomb
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $8.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="Overgrown Tomb" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/5/45b92924-baa1-4c9b-9932-9a5eda8f3446.jpg?1782683913" />

        <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">
            Overgrown Tomb
        </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 — Swamp 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="Overgrown Tomb" src="https://cards.scryfall.io/large/front/4/5/45b92924-baa1-4c9b-9932-9a5eda8f3446.jpg?1782683913" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-12&quot;:10.22},{&quot;2026-06-13&quot;:10.39},{&quot;2026-06-14&quot;:10.39},{&quot;2026-06-15&quot;:10.39},{&quot;2026-06-16&quot;:10.39},{&quot;2026-06-17&quot;:10.48},{&quot;2026-06-18&quot;:10.47},{&quot;2026-06-19&quot;:10.51},{&quot;2026-06-20&quot;:10.18},{&quot;2026-06-21&quot;:10.27},{&quot;2026-06-22&quot;:10.28},{&quot;2026-06-23&quot;:10.3},{&quot;2026-06-24&quot;:10.35},{&quot;2026-06-25&quot;:10.44},{&quot;2026-06-26&quot;:10.3},{&quot;2026-06-27&quot;:10.29},{&quot;2026-06-28&quot;:10.14},{&quot;2026-06-29&quot;:10.3},{&quot;2026-06-30&quot;:10.35},{&quot;2026-07-01&quot;:10.35},{&quot;2026-07-02&quot;:10.34},{&quot;2026-07-03&quot;:10.34},{&quot;2026-07-04&quot;:10.18},{&quot;2026-07-05&quot;:10.26},{&quot;2026-07-06&quot;:10.05},{&quot;2026-07-07&quot;:9.97},{&quot;2026-07-08&quot;:9.91},{&quot;2026-07-09&quot;:9.94},{&quot;2026-07-10&quot;:10.0},{&quot;2026-07-11&quot;:10.01},{&quot;2026-07-12&quot;:10.04},{&quot;2026-07-13&quot;:10.12},{&quot;2026-07-14&quot;:10.12},{&quot;2026-07-15&quot;:10.05},{&quot;2026-07-16&quot;:9.94},{&quot;2026-07-17&quot;:9.85},{&quot;2026-07-18&quot;:9.85},{&quot;2026-07-19&quot;:9.86},{&quot;2026-07-20&quot;:9.72},{&quot;2026-07-21&quot;:9.34},{&quot;2026-07-23&quot;:9.41},{&quot;2026-07-24&quot;:9.41},{&quot;2026-07-25&quot;:9.07},{&quot;2026-07-26&quot;:8.85},{&quot;2026-07-27&quot;:8.84},{&quot;2026-07-28&quot;:8.76},{&quot;2026-07-29&quot;:8.92},{&quot;2026-07-30&quot;:9.27},{&quot;2026-07-31&quot;:9.35},{&quot;2026-08-01&quot;:9.35},{&quot;2026-08-02&quot;:9.5},{&quot;2026-08-03&quot;:9.64},{&quot;2026-08-04&quot;:9.57},{&quot;2026-08-05&quot;:9.6},{&quot;2026-08-07&quot;:9.44},{&quot;2026-08-08&quot;:9.53},{&quot;2026-08-09&quot;:9.26},{&quot;2026-08-10&quot;:9.32},{&quot;2026-08-11&quot;:9.32},{&quot;2026-08-12&quot;:9.32},{&quot;2026-08-13&quot;:9.32},{&quot;2026-08-14&quot;:9.25},{&quot;2026-08-15&quot;:9.19},{&quot;2026-08-16&quot;:9.06},{&quot;2026-08-17&quot;:8.76},{&quot;2026-08-18&quot;:8.76},{&quot;2026-08-19&quot;:8.77},{&quot;2026-08-20&quot;:8.77},{&quot;2026-08-21&quot;:8.86},{&quot;2026-08-22&quot;:8.8},{&quot;2026-08-23&quot;:9.29},{&quot;2026-08-24&quot;:9.23},{&quot;2026-08-25&quot;:9.18},{&quot;2026-08-26&quot;:9.21},{&quot;2026-08-27&quot;:9.21},{&quot;2026-08-28&quot;:9.38},{&quot;2026-08-29&quot;:9.38},{&quot;2026-08-30&quot;:9.37},{&quot;2026-08-31&quot;:9.37},{&quot;2026-09-01&quot;:9.21},{&quot;2026-09-02&quot;:9.21},{&quot;2026-09-03&quot;:9.16},{&quot;2026-09-04&quot;:9.14},{&quot;2026-09-05&quot;:9.1},{&quot;2026-09-06&quot;:9.15},{&quot;2026-09-07&quot;:9.15},{&quot;2026-09-08&quot;:9.33},{&quot;2026-09-09&quot;:9.34},{&quot;2026-09-10&quot;:9.34},{&quot;2026-09-11&quot;:9.37}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:9.78},{&quot;2026-06-13&quot;:9.49},{&quot;2026-06-14&quot;:9.34},{&quot;2026-06-15&quot;:9.58},{&quot;2026-06-16&quot;:9.55},{&quot;2026-06-17&quot;:9.66},{&quot;2026-06-18&quot;:9.54},{&quot;2026-06-19&quot;:9.6},{&quot;2026-06-20&quot;:9.42},{&quot;2026-06-21&quot;:9.32},{&quot;2026-06-22&quot;:9.76},{&quot;2026-06-23&quot;:9.62},{&quot;2026-06-24&quot;:9.58},{&quot;2026-06-25&quot;:9.74},{&quot;2026-06-26&quot;:10.1},{&quot;2026-06-27&quot;:10.13},{&quot;2026-06-28&quot;:10.34},{&quot;2026-06-29&quot;:10.24},{&quot;2026-06-30&quot;:10.29},{&quot;2026-07-01&quot;:10.28},{&quot;2026-07-02&quot;:9.8},{&quot;2026-07-03&quot;:9.56},{&quot;2026-07-04&quot;:9.59},{&quot;2026-07-05&quot;:9.34},{&quot;2026-07-06&quot;:9.09},{&quot;2026-07-07&quot;:9.38},{&quot;2026-07-08&quot;:9.07},{&quot;2026-07-09&quot;:9.9},{&quot;2026-07-10&quot;:10.29},{&quot;2026-07-11&quot;:11.07},{&quot;2026-07-12&quot;:10.88},{&quot;2026-07-13&quot;:10.55},{&quot;2026-07-14&quot;:10.36},{&quot;2026-07-15&quot;:10.07},{&quot;2026-07-16&quot;:10.23},{&quot;2026-07-17&quot;:10.12},{&quot;2026-07-18&quot;:9.93},{&quot;2026-07-19&quot;:9.34},{&quot;2026-07-20&quot;:8.92},{&quot;2026-07-21&quot;:8.96},{&quot;2026-07-23&quot;:8.29},{&quot;2026-07-24&quot;:9.21},{&quot;2026-07-25&quot;:8.82},{&quot;2026-07-26&quot;:8.3},{&quot;2026-07-27&quot;:8.91},{&quot;2026-07-28&quot;:9.33},{&quot;2026-07-29&quot;:9.3},{&quot;2026-07-30&quot;:8.89},{&quot;2026-07-31&quot;:8.86},{&quot;2026-08-01&quot;:8.78},{&quot;2026-08-02&quot;:9.02},{&quot;2026-08-03&quot;:9.03},{&quot;2026-08-04&quot;:8.92},{&quot;2026-08-05&quot;:8.76},{&quot;2026-08-07&quot;:9.0},{&quot;2026-08-08&quot;:8.72},{&quot;2026-08-09&quot;:8.68},{&quot;2026-08-10&quot;:8.86},{&quot;2026-08-11&quot;:8.54},{&quot;2026-08-12&quot;:8.85},{&quot;2026-08-13&quot;:9.19},{&quot;2026-08-14&quot;:9.43},{&quot;2026-08-15&quot;:9.47},{&quot;2026-08-16&quot;:9.38},{&quot;2026-08-17&quot;:9.18},{&quot;2026-08-18&quot;:9.41},{&quot;2026-08-19&quot;:9.24},{&quot;2026-08-20&quot;:9.24},{&quot;2026-08-21&quot;:9.39},{&quot;2026-08-22&quot;:8.42},{&quot;2026-08-23&quot;:7.89},{&quot;2026-08-24&quot;:8.45},{&quot;2026-08-25&quot;:8.61},{&quot;2026-08-26&quot;:8.66},{&quot;2026-08-27&quot;:8.72},{&quot;2026-08-28&quot;:9.39},{&quot;2026-08-29&quot;:9.39},{&quot;2026-08-30&quot;:9.46},{&quot;2026-08-31&quot;:9.03},{&quot;2026-09-01&quot;:8.67},{&quot;2026-09-02&quot;:8.47},{&quot;2026-09-03&quot;:8.67},{&quot;2026-09-04&quot;:8.6},{&quot;2026-09-05&quot;:8.94},{&quot;2026-09-06&quot;:8.64},{&quot;2026-09-07&quot;:8.14},{&quot;2026-09-08&quot;:7.85},{&quot;2026-09-09&quot;:8.32},{&quot;2026-09-10&quot;:8.54},{&quot;2026-09-11&quot;:8.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="92363"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-pmei ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

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

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Ponder
        </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-u'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Ponder" src="https://cards.scryfall.io/large/front/e/f/ef654617-02a2-4c2a-a5b7-06e8f47f2fd0.jpg?1783907948" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Foil</span>
              <span class="text-lg font-medium text-nine-white">$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;:8.16},{&quot;2026-06-14&quot;:8.16},{&quot;2026-06-15&quot;:8.16},{&quot;2026-06-16&quot;:8.16},{&quot;2026-06-17&quot;:8.37},{&quot;2026-06-18&quot;:8.57},{&quot;2026-06-19&quot;:8.32},{&quot;2026-06-20&quot;:8.38},{&quot;2026-06-21&quot;:8.39},{&quot;2026-06-22&quot;:8.3},{&quot;2026-06-23&quot;:8.22},{&quot;2026-06-24&quot;:8.22},{&quot;2026-06-25&quot;:8.05},{&quot;2026-06-26&quot;:8.25},{&quot;2026-06-27&quot;:8.25},{&quot;2026-06-28&quot;:8.25},{&quot;2026-06-29&quot;:8.25},{&quot;2026-06-30&quot;:8.2},{&quot;2026-07-01&quot;:8.22},{&quot;2026-07-02&quot;:8.22},{&quot;2026-07-03&quot;:8.22},{&quot;2026-07-04&quot;:8.22},{&quot;2026-07-05&quot;:8.34},{&quot;2026-07-06&quot;:8.34},{&quot;2026-07-07&quot;:8.34},{&quot;2026-07-08&quot;:8.48},{&quot;2026-07-09&quot;:8.18},{&quot;2026-07-10&quot;:8.07},{&quot;2026-07-11&quot;:8.07},{&quot;2026-07-12&quot;:8.07},{&quot;2026-07-13&quot;:8.07},{&quot;2026-07-14&quot;:7.89},{&quot;2026-07-15&quot;:7.94},{&quot;2026-07-16&quot;:7.79},{&quot;2026-07-17&quot;:7.79},{&quot;2026-07-18&quot;:7.79},{&quot;2026-07-19&quot;:7.87},{&quot;2026-07-20&quot;:8.0},{&quot;2026-07-21&quot;:8.02},{&quot;2026-07-22&quot;:7.94},{&quot;2026-07-23&quot;:7.94},{&quot;2026-07-24&quot;:8.04},{&quot;2026-07-25&quot;:7.92},{&quot;2026-07-26&quot;:7.92},{&quot;2026-07-27&quot;:7.95},{&quot;2026-07-28&quot;:7.95},{&quot;2026-07-29&quot;:7.95},{&quot;2026-07-30&quot;:7.95},{&quot;2026-07-31&quot;:7.95},{&quot;2026-08-01&quot;:7.95},{&quot;2026-08-02&quot;:7.99},{&quot;2026-08-03&quot;:7.99},{&quot;2026-08-04&quot;:7.99},{&quot;2026-08-05&quot;:8.09},{&quot;2026-08-07&quot;:8.03},{&quot;2026-08-08&quot;:8.03},{&quot;2026-08-09&quot;:8.03},{&quot;2026-08-10&quot;:8.03},{&quot;2026-08-11&quot;:8.05},{&quot;2026-08-12&quot;:8.05},{&quot;2026-08-13&quot;:8.05},{&quot;2026-08-14&quot;:8.05},{&quot;2026-08-15&quot;:8.05},{&quot;2026-08-16&quot;:8.19},{&quot;2026-08-17&quot;:8.22},{&quot;2026-08-18&quot;:8.22},{&quot;2026-08-19&quot;:8.22},{&quot;2026-08-20&quot;:8.22},{&quot;2026-08-21&quot;:8.22},{&quot;2026-08-22&quot;:8.22},{&quot;2026-08-23&quot;:8.22},{&quot;2026-08-24&quot;:8.26},{&quot;2026-08-25&quot;:8.26},{&quot;2026-08-26&quot;:8.26},{&quot;2026-08-27&quot;:8.27},{&quot;2026-08-28&quot;:8.27},{&quot;2026-08-29&quot;:8.27},{&quot;2026-08-30&quot;:8.11},{&quot;2026-08-31&quot;:8.11},{&quot;2026-09-01&quot;:8.11},{&quot;2026-09-02&quot;:8.1},{&quot;2026-09-03&quot;:8.1},{&quot;2026-09-04&quot;:8.12},{&quot;2026-09-05&quot;:8.16},{&quot;2026-09-06&quot;:8.16},{&quot;2026-09-07&quot;:8.04},{&quot;2026-09-08&quot;:8.04},{&quot;2026-09-09&quot;:8.09},{&quot;2026-09-10&quot;:8.09},{&quot;2026-09-11&quot;:8.09}],&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="12155"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

        <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">
            Three Visits
        </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="Three Visits" src="https://cards.scryfall.io/large/front/b/d/bd9307ec-987b-4bbf-a679-cfaabe283a80.jpg?1783928780" />
    </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.81
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-08&quot;:10.47},{&quot;2026-06-10&quot;:10.51},{&quot;2026-06-11&quot;:10.41},{&quot;2026-06-12&quot;:10.47},{&quot;2026-06-13&quot;:10.47},{&quot;2026-06-14&quot;:10.38},{&quot;2026-06-15&quot;:10.38},{&quot;2026-06-16&quot;:10.38},{&quot;2026-06-17&quot;:10.32},{&quot;2026-06-18&quot;:10.2},{&quot;2026-06-19&quot;:10.2},{&quot;2026-06-20&quot;:10.14},{&quot;2026-06-21&quot;:9.98},{&quot;2026-06-22&quot;:9.98},{&quot;2026-06-24&quot;:9.98},{&quot;2026-06-25&quot;:9.98},{&quot;2026-06-26&quot;:9.98},{&quot;2026-06-27&quot;:9.98},{&quot;2026-06-28&quot;:9.98},{&quot;2026-06-29&quot;:9.98},{&quot;2026-06-30&quot;:9.94},{&quot;2026-07-01&quot;:9.94},{&quot;2026-07-02&quot;:9.95},{&quot;2026-07-03&quot;:9.83},{&quot;2026-07-04&quot;:9.83},{&quot;2026-07-05&quot;:9.83},{&quot;2026-07-06&quot;:9.83},{&quot;2026-07-07&quot;:9.83},{&quot;2026-07-08&quot;:9.83},{&quot;2026-07-09&quot;:9.77},{&quot;2026-07-10&quot;:9.7},{&quot;2026-07-11&quot;:9.7},{&quot;2026-07-12&quot;:9.7},{&quot;2026-07-13&quot;:9.6},{&quot;2026-07-14&quot;:9.6},{&quot;2026-07-15&quot;:9.55},{&quot;2026-07-16&quot;:9.59},{&quot;2026-07-17&quot;:9.47},{&quot;2026-07-18&quot;:9.41},{&quot;2026-07-19&quot;:9.41},{&quot;2026-07-20&quot;:9.41},{&quot;2026-07-21&quot;:9.34},{&quot;2026-07-23&quot;:9.34},{&quot;2026-07-25&quot;:9.34},{&quot;2026-07-26&quot;:9.34},{&quot;2026-07-27&quot;:9.06},{&quot;2026-07-29&quot;:9.03},{&quot;2026-07-30&quot;:9.03},{&quot;2026-07-31&quot;:9.05},{&quot;2026-08-01&quot;:9.05},{&quot;2026-08-02&quot;:9.05},{&quot;2026-08-03&quot;:9.05},{&quot;2026-08-04&quot;:9.05},{&quot;2026-08-05&quot;:9.08},{&quot;2026-08-07&quot;:9.06},{&quot;2026-08-08&quot;:9.06},{&quot;2026-08-09&quot;:9.06},{&quot;2026-08-10&quot;:9.06},{&quot;2026-08-11&quot;:9.06},{&quot;2026-08-12&quot;:9.02},{&quot;2026-08-13&quot;:9.02},{&quot;2026-08-14&quot;:9.02},{&quot;2026-08-15&quot;:9.02},{&quot;2026-08-16&quot;:9.02},{&quot;2026-08-17&quot;:9.02},{&quot;2026-08-18&quot;:9.02},{&quot;2026-08-19&quot;:9.02},{&quot;2026-08-20&quot;:9.02},{&quot;2026-08-21&quot;:9.02},{&quot;2026-08-22&quot;:9.02},{&quot;2026-08-23&quot;:9.02},{&quot;2026-08-24&quot;:9.02},{&quot;2026-08-25&quot;:9.02},{&quot;2026-08-26&quot;:9.02},{&quot;2026-08-27&quot;:9.07},{&quot;2026-08-28&quot;:9.07},{&quot;2026-08-29&quot;:9.07},{&quot;2026-08-30&quot;:9.06},{&quot;2026-08-31&quot;:9.0},{&quot;2026-09-01&quot;:9.0},{&quot;2026-09-02&quot;:9.0},{&quot;2026-09-03&quot;:8.95},{&quot;2026-09-04&quot;:8.95},{&quot;2026-09-05&quot;:8.88},{&quot;2026-09-06&quot;:8.88},{&quot;2026-09-07&quot;:8.88},{&quot;2026-09-08&quot;:8.85},{&quot;2026-09-09&quot;:8.85},{&quot;2026-09-10&quot;:8.88},{&quot;2026-09-11&quot;:8.92}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:7.63},{&quot;2026-06-10&quot;:7.76},{&quot;2026-06-11&quot;:7.46},{&quot;2026-06-12&quot;:7.33},{&quot;2026-06-13&quot;:7.21},{&quot;2026-06-14&quot;:7.32},{&quot;2026-06-15&quot;:7.38},{&quot;2026-06-16&quot;:7.4},{&quot;2026-06-17&quot;:7.32},{&quot;2026-06-18&quot;:7.26},{&quot;2026-06-19&quot;:6.98},{&quot;2026-06-20&quot;:6.86},{&quot;2026-06-21&quot;:6.47},{&quot;2026-06-22&quot;:6.07},{&quot;2026-06-24&quot;:5.87},{&quot;2026-06-25&quot;:5.69},{&quot;2026-06-26&quot;:5.39},{&quot;2026-06-27&quot;:5.41},{&quot;2026-06-28&quot;:5.57},{&quot;2026-06-29&quot;:5.69},{&quot;2026-06-30&quot;:5.69},{&quot;2026-07-01&quot;:5.61},{&quot;2026-07-02&quot;:5.65},{&quot;2026-07-03&quot;:5.65},{&quot;2026-07-04&quot;:5.15},{&quot;2026-07-05&quot;:5.05},{&quot;2026-07-06&quot;:4.98},{&quot;2026-07-07&quot;:5.0},{&quot;2026-07-08&quot;:4.99},{&quot;2026-07-09&quot;:4.99},{&quot;2026-07-10&quot;:4.88},{&quot;2026-07-11&quot;:4.56},{&quot;2026-07-12&quot;:4.59},{&quot;2026-07-13&quot;:4.46},{&quot;2026-07-14&quot;:4.41},{&quot;2026-07-15&quot;:4.58},{&quot;2026-07-16&quot;:4.71},{&quot;2026-07-17&quot;:4.62},{&quot;2026-07-18&quot;:4.6},{&quot;2026-07-19&quot;:4.6},{&quot;2026-07-20&quot;:4.75},{&quot;2026-07-21&quot;:4.69},{&quot;2026-07-23&quot;:4.71},{&quot;2026-07-25&quot;:4.76},{&quot;2026-07-26&quot;:4.62},{&quot;2026-07-27&quot;:4.61},{&quot;2026-07-29&quot;:4.66},{&quot;2026-07-30&quot;:4.58},{&quot;2026-07-31&quot;:4.74},{&quot;2026-08-01&quot;:4.81},{&quot;2026-08-02&quot;:4.79},{&quot;2026-08-03&quot;:4.77},{&quot;2026-08-04&quot;:4.77},{&quot;2026-08-05&quot;:4.74},{&quot;2026-08-07&quot;:4.62},{&quot;2026-08-08&quot;:4.56},{&quot;2026-08-09&quot;:4.73},{&quot;2026-08-10&quot;:4.8},{&quot;2026-08-11&quot;:4.9},{&quot;2026-08-12&quot;:5.01},{&quot;2026-08-13&quot;:5.5},{&quot;2026-08-14&quot;:5.44},{&quot;2026-08-15&quot;:5.35},{&quot;2026-08-16&quot;:5.3},{&quot;2026-08-17&quot;:5.1},{&quot;2026-08-18&quot;:5.46},{&quot;2026-08-19&quot;:5.14},{&quot;2026-08-20&quot;:5.14},{&quot;2026-08-21&quot;:5.34},{&quot;2026-08-22&quot;:5.6},{&quot;2026-08-23&quot;:6.11},{&quot;2026-08-24&quot;:6.72},{&quot;2026-08-25&quot;:6.72},{&quot;2026-08-26&quot;:6.96},{&quot;2026-08-27&quot;:7.08},{&quot;2026-08-28&quot;:7.01},{&quot;2026-08-29&quot;:7.01},{&quot;2026-08-30&quot;:6.85},{&quot;2026-08-31&quot;:6.85},{&quot;2026-09-01&quot;:6.85},{&quot;2026-09-02&quot;:6.95},{&quot;2026-09-03&quot;:6.76},{&quot;2026-09-04&quot;:6.83},{&quot;2026-09-05&quot;:6.62},{&quot;2026-09-06&quot;:6.62},{&quot;2026-09-07&quot;:6.9},{&quot;2026-09-08&quot;:7.05},{&quot;2026-09-09&quot;:6.88},{&quot;2026-09-10&quot;:6.82},{&quot;2026-09-11&quot;:6.81}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Life from the Loam" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/7/d7447c11-05a1-44e4-831a-0bacf97d447d.jpg?1783933789" />

        <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">
            Life from the Loam
        </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-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="Life from the Loam" src="https://cards.scryfall.io/large/front/d/7/d7447c11-05a1-44e4-831a-0bacf97d447d.jpg?1783933789" />
    </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.72
              </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">
                $7.80
              </span>

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$4.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;:8.12},{&quot;2026-06-14&quot;:8.12},{&quot;2026-06-15&quot;:7.93},{&quot;2026-06-16&quot;:7.93},{&quot;2026-06-17&quot;:7.93},{&quot;2026-06-18&quot;:7.93},{&quot;2026-06-19&quot;:7.85},{&quot;2026-06-20&quot;:7.85},{&quot;2026-06-21&quot;:7.85},{&quot;2026-06-22&quot;:7.85},{&quot;2026-06-23&quot;:7.85},{&quot;2026-06-24&quot;:7.85},{&quot;2026-06-25&quot;:7.85},{&quot;2026-06-26&quot;:7.85},{&quot;2026-06-27&quot;:7.85},{&quot;2026-06-28&quot;:7.85},{&quot;2026-06-29&quot;:7.85},{&quot;2026-06-30&quot;:7.85},{&quot;2026-07-01&quot;:7.85},{&quot;2026-07-02&quot;:7.85},{&quot;2026-07-03&quot;:7.85},{&quot;2026-07-04&quot;:7.85},{&quot;2026-07-05&quot;:7.85},{&quot;2026-07-06&quot;:7.9},{&quot;2026-07-07&quot;:7.9},{&quot;2026-07-08&quot;:7.9},{&quot;2026-07-09&quot;:7.9},{&quot;2026-07-10&quot;:7.9},{&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.81},{&quot;2026-07-16&quot;:7.81},{&quot;2026-07-17&quot;:7.81},{&quot;2026-07-18&quot;:7.81},{&quot;2026-07-19&quot;:7.81},{&quot;2026-07-20&quot;:7.81},{&quot;2026-07-21&quot;:7.81},{&quot;2026-07-22&quot;:7.81},{&quot;2026-07-23&quot;:7.81},{&quot;2026-07-24&quot;:7.81},{&quot;2026-07-25&quot;:7.81},{&quot;2026-07-26&quot;:7.81},{&quot;2026-07-27&quot;:7.81},{&quot;2026-07-28&quot;:7.81},{&quot;2026-07-29&quot;:7.81},{&quot;2026-07-30&quot;:7.81},{&quot;2026-07-31&quot;:7.81},{&quot;2026-08-01&quot;:7.81},{&quot;2026-08-02&quot;:7.81},{&quot;2026-08-03&quot;:7.81},{&quot;2026-08-04&quot;:7.68},{&quot;2026-08-05&quot;:7.68},{&quot;2026-08-07&quot;:7.68},{&quot;2026-08-08&quot;:7.68},{&quot;2026-08-09&quot;:7.74},{&quot;2026-08-10&quot;:7.74},{&quot;2026-08-11&quot;:7.75},{&quot;2026-08-12&quot;:7.75},{&quot;2026-08-13&quot;:7.75},{&quot;2026-08-14&quot;:7.75},{&quot;2026-08-15&quot;:7.75},{&quot;2026-08-16&quot;:7.75},{&quot;2026-08-17&quot;:7.7},{&quot;2026-08-18&quot;:7.7},{&quot;2026-08-19&quot;:7.74},{&quot;2026-08-20&quot;:7.74},{&quot;2026-08-21&quot;:7.74},{&quot;2026-08-22&quot;:7.74},{&quot;2026-08-23&quot;:7.74},{&quot;2026-08-24&quot;:7.74},{&quot;2026-08-25&quot;:7.74},{&quot;2026-08-26&quot;:7.74},{&quot;2026-08-27&quot;:7.74},{&quot;2026-08-28&quot;:7.74},{&quot;2026-08-29&quot;:7.74},{&quot;2026-08-30&quot;:7.74},{&quot;2026-08-31&quot;:7.74},{&quot;2026-09-01&quot;:7.74},{&quot;2026-09-02&quot;:7.74},{&quot;2026-09-03&quot;:7.74},{&quot;2026-09-04&quot;:7.74},{&quot;2026-09-05&quot;:7.74},{&quot;2026-09-06&quot;:7.71},{&quot;2026-09-07&quot;:7.71},{&quot;2026-09-08&quot;:7.71},{&quot;2026-09-09&quot;:7.68},{&quot;2026-09-10&quot;:7.68},{&quot;2026-09-11&quot;:7.8}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:5.75},{&quot;2026-06-14&quot;:5.75},{&quot;2026-06-15&quot;:5.71},{&quot;2026-06-16&quot;:5.66},{&quot;2026-06-17&quot;:5.71},{&quot;2026-06-18&quot;:5.64},{&quot;2026-06-19&quot;:5.64},{&quot;2026-06-20&quot;:5.59},{&quot;2026-06-21&quot;:5.72},{&quot;2026-06-22&quot;:5.72},{&quot;2026-06-23&quot;:5.72},{&quot;2026-06-24&quot;:5.72},{&quot;2026-06-25&quot;:5.72},{&quot;2026-06-26&quot;:5.71},{&quot;2026-06-27&quot;:5.71},{&quot;2026-06-28&quot;:5.69},{&quot;2026-06-29&quot;:5.69},{&quot;2026-06-30&quot;:5.69},{&quot;2026-07-01&quot;:5.6},{&quot;2026-07-02&quot;:5.59},{&quot;2026-07-03&quot;:5.63},{&quot;2026-07-04&quot;:5.71},{&quot;2026-07-05&quot;:5.71},{&quot;2026-07-06&quot;:5.71},{&quot;2026-07-07&quot;:5.76},{&quot;2026-07-08&quot;:5.73},{&quot;2026-07-09&quot;:5.73},{&quot;2026-07-10&quot;:5.73},{&quot;2026-07-11&quot;:5.73},{&quot;2026-07-12&quot;:5.73},{&quot;2026-07-13&quot;:5.67},{&quot;2026-07-14&quot;:5.67},{&quot;2026-07-15&quot;:5.79},{&quot;2026-07-16&quot;:5.79},{&quot;2026-07-17&quot;:5.79},{&quot;2026-07-18&quot;:5.79},{&quot;2026-07-19&quot;:5.78},{&quot;2026-07-20&quot;:5.84},{&quot;2026-07-21&quot;:6.04},{&quot;2026-07-22&quot;:6.04},{&quot;2026-07-23&quot;:6.1},{&quot;2026-07-24&quot;:6.1},{&quot;2026-07-25&quot;:6.05},{&quot;2026-07-26&quot;:6.05},{&quot;2026-07-27&quot;:5.92},{&quot;2026-07-28&quot;:6.06},{&quot;2026-07-29&quot;:6.1},{&quot;2026-07-30&quot;:6.13},{&quot;2026-07-31&quot;:6.13},{&quot;2026-08-01&quot;:6.13},{&quot;2026-08-02&quot;:6.18},{&quot;2026-08-03&quot;:6.12},{&quot;2026-08-04&quot;:6.06},{&quot;2026-08-05&quot;:5.99},{&quot;2026-08-07&quot;:5.99},{&quot;2026-08-08&quot;:5.95},{&quot;2026-08-09&quot;:5.95},{&quot;2026-08-10&quot;:5.95},{&quot;2026-08-11&quot;:5.95},{&quot;2026-08-12&quot;:5.95},{&quot;2026-08-13&quot;:5.95},{&quot;2026-08-14&quot;:5.86},{&quot;2026-08-15&quot;:5.86},{&quot;2026-08-16&quot;:5.86},{&quot;2026-08-17&quot;:5.86},{&quot;2026-08-18&quot;:5.86},{&quot;2026-08-19&quot;:5.86},{&quot;2026-08-20&quot;:5.86},{&quot;2026-08-21&quot;:5.86},{&quot;2026-08-22&quot;:5.86},{&quot;2026-08-23&quot;:5.86},{&quot;2026-08-24&quot;:5.86},{&quot;2026-08-25&quot;:5.82},{&quot;2026-08-26&quot;:5.82},{&quot;2026-08-27&quot;:5.82},{&quot;2026-08-28&quot;:5.82},{&quot;2026-08-29&quot;:5.82},{&quot;2026-08-30&quot;:5.86},{&quot;2026-08-31&quot;:5.86},{&quot;2026-09-01&quot;:5.85},{&quot;2026-09-02&quot;:5.77},{&quot;2026-09-03&quot;:5.79},{&quot;2026-09-04&quot;:5.79},{&quot;2026-09-05&quot;:5.79},{&quot;2026-09-06&quot;:5.74},{&quot;2026-09-07&quot;:5.74},{&quot;2026-09-08&quot;:5.74},{&quot;2026-09-09&quot;:5.74},{&quot;2026-09-10&quot;:5.72},{&quot;2026-09-11&quot;:5.72}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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

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

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

        <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">
            Propaganda
        </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-u'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Propaganda" src="https://cards.scryfall.io/large/front/e/5/e5f293d7-9c2b-41cb-8e3c-dfc1daa6635f.jpg?1783922465" />
    </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.89
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:4.83},{&quot;2026-06-14&quot;:4.89},{&quot;2026-06-15&quot;:4.89},{&quot;2026-06-16&quot;:4.85},{&quot;2026-06-17&quot;:4.85},{&quot;2026-06-18&quot;:4.85},{&quot;2026-06-19&quot;:4.89},{&quot;2026-06-20&quot;:4.89},{&quot;2026-06-21&quot;:4.89},{&quot;2026-06-22&quot;:4.89},{&quot;2026-06-23&quot;:4.89},{&quot;2026-06-24&quot;:4.91},{&quot;2026-06-25&quot;:4.91},{&quot;2026-06-26&quot;:4.91},{&quot;2026-06-27&quot;:4.91},{&quot;2026-06-28&quot;:4.88},{&quot;2026-06-29&quot;:4.93},{&quot;2026-06-30&quot;:5.01},{&quot;2026-07-01&quot;:5.06},{&quot;2026-07-02&quot;:5.07},{&quot;2026-07-03&quot;:5.07},{&quot;2026-07-04&quot;:5.04},{&quot;2026-07-05&quot;:5.04},{&quot;2026-07-06&quot;:5.04},{&quot;2026-07-07&quot;:5.04},{&quot;2026-07-08&quot;:4.97},{&quot;2026-07-09&quot;:4.97},{&quot;2026-07-10&quot;:4.95},{&quot;2026-07-11&quot;:4.95},{&quot;2026-07-12&quot;:4.95},{&quot;2026-07-13&quot;:4.95},{&quot;2026-07-14&quot;:4.95},{&quot;2026-07-15&quot;:4.95},{&quot;2026-07-16&quot;:4.95},{&quot;2026-07-17&quot;:4.95},{&quot;2026-07-18&quot;:4.98},{&quot;2026-07-19&quot;:4.98},{&quot;2026-07-20&quot;:4.98},{&quot;2026-07-21&quot;:4.98},{&quot;2026-07-22&quot;:4.95},{&quot;2026-07-23&quot;:4.93},{&quot;2026-07-24&quot;:4.85},{&quot;2026-07-25&quot;:4.75},{&quot;2026-07-26&quot;:4.75},{&quot;2026-07-27&quot;:4.67},{&quot;2026-07-28&quot;:4.72},{&quot;2026-07-29&quot;:4.72},{&quot;2026-07-30&quot;:4.72},{&quot;2026-07-31&quot;:4.72},{&quot;2026-08-01&quot;:4.72},{&quot;2026-08-02&quot;:4.72},{&quot;2026-08-03&quot;:4.72},{&quot;2026-08-04&quot;:4.72},{&quot;2026-08-05&quot;:4.71},{&quot;2026-08-07&quot;:4.71},{&quot;2026-08-08&quot;:4.71},{&quot;2026-08-09&quot;:4.71},{&quot;2026-08-10&quot;:4.66},{&quot;2026-08-11&quot;:4.65},{&quot;2026-08-12&quot;:4.65},{&quot;2026-08-13&quot;:4.66},{&quot;2026-08-14&quot;:4.7},{&quot;2026-08-15&quot;:4.7},{&quot;2026-08-16&quot;:4.86},{&quot;2026-08-17&quot;:4.77},{&quot;2026-08-18&quot;:4.87},{&quot;2026-08-19&quot;:4.87},{&quot;2026-08-20&quot;:4.87},{&quot;2026-08-21&quot;:4.88},{&quot;2026-08-22&quot;:4.89},{&quot;2026-08-23&quot;:4.95},{&quot;2026-08-24&quot;:4.94},{&quot;2026-08-25&quot;:4.94},{&quot;2026-08-26&quot;:4.88},{&quot;2026-08-27&quot;:4.88},{&quot;2026-08-28&quot;:4.88},{&quot;2026-08-29&quot;:4.88},{&quot;2026-08-30&quot;:4.88},{&quot;2026-08-31&quot;:4.88},{&quot;2026-09-01&quot;:4.88},{&quot;2026-09-02&quot;:4.88},{&quot;2026-09-03&quot;:4.95},{&quot;2026-09-04&quot;:4.95},{&quot;2026-09-05&quot;:4.95},{&quot;2026-09-06&quot;:4.94},{&quot;2026-09-07&quot;:4.89},{&quot;2026-09-08&quot;:4.87},{&quot;2026-09-09&quot;:4.89},{&quot;2026-09-10&quot;:4.89},{&quot;2026-09-11&quot;:4.89}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $4.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="Profane Tutor" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/a/2afc6f7d-ab59-4d64-bd11-6bd0fd4bfcd2.jpg?1783926857" />

        <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">
            Profane Tutor
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Sorcery</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="Profane Tutor" src="https://cards.scryfall.io/large/front/2/a/2afc6f7d-ab59-4d64-bd11-6bd0fd4bfcd2.jpg?1783926857" />
    </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.62
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:4.94},{&quot;2026-06-11&quot;:5.0},{&quot;2026-06-12&quot;:4.9},{&quot;2026-06-13&quot;:4.9},{&quot;2026-06-14&quot;:4.9},{&quot;2026-06-15&quot;:5.06},{&quot;2026-06-16&quot;:5.06},{&quot;2026-06-17&quot;:5.06},{&quot;2026-06-18&quot;:5.04},{&quot;2026-06-19&quot;:5.06},{&quot;2026-06-20&quot;:5.06},{&quot;2026-06-21&quot;:5.06},{&quot;2026-06-22&quot;:5.06},{&quot;2026-06-23&quot;:5.06},{&quot;2026-06-24&quot;:5.06},{&quot;2026-06-25&quot;:5.06},{&quot;2026-06-26&quot;:5.06},{&quot;2026-06-27&quot;:5.06},{&quot;2026-06-28&quot;:5.06},{&quot;2026-06-29&quot;:5.06},{&quot;2026-06-30&quot;:5.06},{&quot;2026-07-01&quot;:5.06},{&quot;2026-07-02&quot;:5.06},{&quot;2026-07-03&quot;:5.06},{&quot;2026-07-04&quot;:5.06},{&quot;2026-07-05&quot;:5.06},{&quot;2026-07-06&quot;:5.06},{&quot;2026-07-07&quot;:5.06},{&quot;2026-07-08&quot;:5.06},{&quot;2026-07-09&quot;:5.06},{&quot;2026-07-10&quot;:5.06},{&quot;2026-07-11&quot;:5.06},{&quot;2026-07-12&quot;:5.06},{&quot;2026-07-13&quot;:5.06},{&quot;2026-07-14&quot;:5.06},{&quot;2026-07-15&quot;:5.02},{&quot;2026-07-16&quot;:5.02},{&quot;2026-07-17&quot;:5.02},{&quot;2026-07-18&quot;:5.12},{&quot;2026-07-19&quot;:5.12},{&quot;2026-07-20&quot;:5.12},{&quot;2026-07-21&quot;:5.12},{&quot;2026-07-23&quot;:5.12},{&quot;2026-07-25&quot;:5.12},{&quot;2026-07-26&quot;:5.12},{&quot;2026-07-27&quot;:5.12},{&quot;2026-07-29&quot;:5.12},{&quot;2026-07-30&quot;:5.16},{&quot;2026-07-31&quot;:5.16},{&quot;2026-08-01&quot;:5.16},{&quot;2026-08-02&quot;:5.15},{&quot;2026-08-03&quot;:5.15},{&quot;2026-08-04&quot;:5.15},{&quot;2026-08-05&quot;:5.15},{&quot;2026-08-07&quot;:5.15},{&quot;2026-08-08&quot;:5.15},{&quot;2026-08-09&quot;:5.15},{&quot;2026-08-10&quot;:5.22},{&quot;2026-08-11&quot;:5.22},{&quot;2026-08-12&quot;:5.22},{&quot;2026-08-13&quot;:5.28},{&quot;2026-08-14&quot;:5.28},{&quot;2026-08-15&quot;:5.28},{&quot;2026-08-16&quot;:5.28},{&quot;2026-08-17&quot;:5.28},{&quot;2026-08-18&quot;:5.28},{&quot;2026-08-19&quot;:5.28},{&quot;2026-08-20&quot;:5.28},{&quot;2026-08-21&quot;:5.28},{&quot;2026-08-22&quot;:5.28},{&quot;2026-08-23&quot;:5.28},{&quot;2026-08-24&quot;:5.28},{&quot;2026-08-25&quot;:5.28},{&quot;2026-08-26&quot;:5.28},{&quot;2026-08-27&quot;:5.28},{&quot;2026-08-28&quot;:5.28},{&quot;2026-08-29&quot;:5.28},{&quot;2026-08-30&quot;:5.29},{&quot;2026-08-31&quot;:5.29},{&quot;2026-09-01&quot;:5.29},{&quot;2026-09-02&quot;:5.29},{&quot;2026-09-03&quot;:5.29},{&quot;2026-09-04&quot;:5.24},{&quot;2026-09-05&quot;:5.24},{&quot;2026-09-06&quot;:5.24},{&quot;2026-09-07&quot;:5.2},{&quot;2026-09-08&quot;:5.2},{&quot;2026-09-09&quot;:5.17},{&quot;2026-09-10&quot;:5.17},{&quot;2026-09-11&quot;:5.17}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:5.15},{&quot;2026-06-11&quot;:5.04},{&quot;2026-06-12&quot;:4.86},{&quot;2026-06-13&quot;:4.7},{&quot;2026-06-14&quot;:4.45},{&quot;2026-06-15&quot;:4.62},{&quot;2026-06-16&quot;:4.5},{&quot;2026-06-17&quot;:4.5},{&quot;2026-06-18&quot;:4.46},{&quot;2026-06-19&quot;:4.53},{&quot;2026-06-20&quot;:4.35},{&quot;2026-06-21&quot;:4.14},{&quot;2026-06-22&quot;:4.23},{&quot;2026-06-23&quot;:4.21},{&quot;2026-06-24&quot;:4.07},{&quot;2026-06-25&quot;:4.0},{&quot;2026-06-26&quot;:3.92},{&quot;2026-06-27&quot;:3.9},{&quot;2026-06-28&quot;:3.76},{&quot;2026-06-29&quot;:3.79},{&quot;2026-06-30&quot;:3.8},{&quot;2026-07-01&quot;:3.9},{&quot;2026-07-02&quot;:4.0},{&quot;2026-07-03&quot;:3.98},{&quot;2026-07-04&quot;:3.97},{&quot;2026-07-05&quot;:3.94},{&quot;2026-07-06&quot;:3.89},{&quot;2026-07-07&quot;:3.8},{&quot;2026-07-08&quot;:3.85},{&quot;2026-07-09&quot;:3.92},{&quot;2026-07-10&quot;:4.05},{&quot;2026-07-11&quot;:3.96},{&quot;2026-07-12&quot;:4.3},{&quot;2026-07-13&quot;:4.17},{&quot;2026-07-14&quot;:4.2},{&quot;2026-07-15&quot;:3.97},{&quot;2026-07-16&quot;:3.88},{&quot;2026-07-17&quot;:3.97},{&quot;2026-07-18&quot;:4.08},{&quot;2026-07-19&quot;:4.23},{&quot;2026-07-20&quot;:4.31},{&quot;2026-07-21&quot;:4.3},{&quot;2026-07-23&quot;:4.14},{&quot;2026-07-25&quot;:3.85},{&quot;2026-07-26&quot;:3.91},{&quot;2026-07-27&quot;:3.93},{&quot;2026-07-29&quot;:3.99},{&quot;2026-07-30&quot;:4.14},{&quot;2026-07-31&quot;:4.19},{&quot;2026-08-01&quot;:4.26},{&quot;2026-08-02&quot;:4.3},{&quot;2026-08-03&quot;:4.19},{&quot;2026-08-04&quot;:4.19},{&quot;2026-08-05&quot;:4.14},{&quot;2026-08-07&quot;:3.96},{&quot;2026-08-08&quot;:3.87},{&quot;2026-08-09&quot;:3.82},{&quot;2026-08-10&quot;:4.06},{&quot;2026-08-11&quot;:4.41},{&quot;2026-08-12&quot;:4.61},{&quot;2026-08-13&quot;:4.79},{&quot;2026-08-14&quot;:4.74},{&quot;2026-08-15&quot;:4.8},{&quot;2026-08-16&quot;:4.69},{&quot;2026-08-17&quot;:4.31},{&quot;2026-08-18&quot;:4.24},{&quot;2026-08-19&quot;:4.24},{&quot;2026-08-20&quot;:4.24},{&quot;2026-08-21&quot;:4.33},{&quot;2026-08-22&quot;:4.4},{&quot;2026-08-23&quot;:4.4},{&quot;2026-08-24&quot;:4.37},{&quot;2026-08-25&quot;:4.37},{&quot;2026-08-26&quot;:4.07},{&quot;2026-08-27&quot;:4.04},{&quot;2026-08-28&quot;:4.07},{&quot;2026-08-29&quot;:4.07},{&quot;2026-08-30&quot;:4.11},{&quot;2026-08-31&quot;:4.13},{&quot;2026-09-01&quot;:4.13},{&quot;2026-09-02&quot;:4.69},{&quot;2026-09-03&quot;:4.56},{&quot;2026-09-04&quot;:4.46},{&quot;2026-09-05&quot;:4.48},{&quot;2026-09-06&quot;:4.35},{&quot;2026-09-07&quot;:4.46},{&quot;2026-09-08&quot;:4.35},{&quot;2026-09-09&quot;:4.28},{&quot;2026-09-10&quot;:4.4},{&quot;2026-09-11&quot;:4.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="74442"
  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-lci 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">
            Spelunking
        </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">
              ↑
              10%
            </span>

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

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

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

        <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">
            Spelunking
        </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="Spelunking" src="https://cards.scryfall.io/large/front/d/3/d3be4257-2316-4a2e-b347-f71c0368a947.jpg?1783913740" />
    </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.23
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-12&quot;:5.31},{&quot;2026-06-13&quot;:5.2},{&quot;2026-06-14&quot;:5.21},{&quot;2026-06-15&quot;:5.21},{&quot;2026-06-16&quot;:5.21},{&quot;2026-06-17&quot;:5.21},{&quot;2026-06-18&quot;:5.19},{&quot;2026-06-19&quot;:5.19},{&quot;2026-06-20&quot;:5.19},{&quot;2026-06-21&quot;:5.21},{&quot;2026-06-22&quot;:5.21},{&quot;2026-06-23&quot;:5.21},{&quot;2026-06-24&quot;:5.17},{&quot;2026-06-25&quot;:5.18},{&quot;2026-06-26&quot;:5.18},{&quot;2026-06-27&quot;:5.18},{&quot;2026-06-28&quot;:5.23},{&quot;2026-06-29&quot;:5.23},{&quot;2026-06-30&quot;:5.23},{&quot;2026-07-01&quot;:5.19},{&quot;2026-07-02&quot;:5.15},{&quot;2026-07-03&quot;:5.16},{&quot;2026-07-04&quot;:5.16},{&quot;2026-07-05&quot;:5.19},{&quot;2026-07-06&quot;:5.19},{&quot;2026-07-07&quot;:5.19},{&quot;2026-07-08&quot;:5.19},{&quot;2026-07-09&quot;:5.19},{&quot;2026-07-10&quot;:5.19},{&quot;2026-07-11&quot;:5.19},{&quot;2026-07-12&quot;:5.29},{&quot;2026-07-13&quot;:5.29},{&quot;2026-07-14&quot;:5.29},{&quot;2026-07-15&quot;:5.29},{&quot;2026-07-16&quot;:5.29},{&quot;2026-07-17&quot;:5.29},{&quot;2026-07-18&quot;:5.29},{&quot;2026-07-19&quot;:5.29},{&quot;2026-07-20&quot;:5.29},{&quot;2026-07-21&quot;:5.36},{&quot;2026-07-23&quot;:5.45},{&quot;2026-07-24&quot;:5.46},{&quot;2026-07-25&quot;:5.46},{&quot;2026-07-26&quot;:5.46},{&quot;2026-07-27&quot;:5.41},{&quot;2026-07-28&quot;:5.41},{&quot;2026-07-29&quot;:5.41},{&quot;2026-07-30&quot;:5.41},{&quot;2026-07-31&quot;:5.29},{&quot;2026-08-01&quot;:5.29},{&quot;2026-08-02&quot;:5.29},{&quot;2026-08-03&quot;:5.25},{&quot;2026-08-04&quot;:5.2},{&quot;2026-08-05&quot;:5.21},{&quot;2026-08-07&quot;:5.15},{&quot;2026-08-08&quot;:5.09},{&quot;2026-08-09&quot;:5.09},{&quot;2026-08-10&quot;:4.97},{&quot;2026-08-11&quot;:4.97},{&quot;2026-08-12&quot;:4.82},{&quot;2026-08-13&quot;:4.73},{&quot;2026-08-14&quot;:4.69},{&quot;2026-08-15&quot;:4.69},{&quot;2026-08-16&quot;:4.63},{&quot;2026-08-17&quot;:4.64},{&quot;2026-08-18&quot;:4.62},{&quot;2026-08-19&quot;:4.64},{&quot;2026-08-20&quot;:4.64},{&quot;2026-08-21&quot;:4.69},{&quot;2026-08-22&quot;:4.89},{&quot;2026-08-23&quot;:4.89},{&quot;2026-08-24&quot;:4.86},{&quot;2026-08-25&quot;:4.92},{&quot;2026-08-26&quot;:4.92},{&quot;2026-08-27&quot;:4.91},{&quot;2026-08-28&quot;:4.83},{&quot;2026-08-29&quot;:4.83},{&quot;2026-08-30&quot;:4.86},{&quot;2026-08-31&quot;:4.86},{&quot;2026-09-01&quot;:4.94},{&quot;2026-09-02&quot;:4.94},{&quot;2026-09-03&quot;:4.94},{&quot;2026-09-04&quot;:4.94},{&quot;2026-09-05&quot;:4.94},{&quot;2026-09-06&quot;:4.94},{&quot;2026-09-07&quot;:4.87},{&quot;2026-09-08&quot;:4.87},{&quot;2026-09-09&quot;:4.98},{&quot;2026-09-10&quot;:4.98},{&quot;2026-09-11&quot;:4.98}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:4.17},{&quot;2026-06-13&quot;:4.07},{&quot;2026-06-14&quot;:4.47},{&quot;2026-06-15&quot;:4.64},{&quot;2026-06-16&quot;:4.72},{&quot;2026-06-17&quot;:4.34},{&quot;2026-06-18&quot;:3.95},{&quot;2026-06-19&quot;:3.72},{&quot;2026-06-20&quot;:3.68},{&quot;2026-06-21&quot;:3.83},{&quot;2026-06-22&quot;:3.66},{&quot;2026-06-23&quot;:3.48},{&quot;2026-06-24&quot;:3.46},{&quot;2026-06-25&quot;:3.64},{&quot;2026-06-26&quot;:3.6},{&quot;2026-06-27&quot;:3.65},{&quot;2026-06-28&quot;:3.86},{&quot;2026-06-29&quot;:3.96},{&quot;2026-06-30&quot;:3.93},{&quot;2026-07-01&quot;:3.82},{&quot;2026-07-02&quot;:3.67},{&quot;2026-07-03&quot;:3.87},{&quot;2026-07-04&quot;:3.85},{&quot;2026-07-05&quot;:4.3},{&quot;2026-07-06&quot;:4.15},{&quot;2026-07-07&quot;:3.91},{&quot;2026-07-08&quot;:4.0},{&quot;2026-07-09&quot;:4.26},{&quot;2026-07-10&quot;:4.35},{&quot;2026-07-11&quot;:4.12},{&quot;2026-07-12&quot;:3.93},{&quot;2026-07-13&quot;:3.74},{&quot;2026-07-14&quot;:3.71},{&quot;2026-07-15&quot;:4.16},{&quot;2026-07-16&quot;:4.36},{&quot;2026-07-17&quot;:4.33},{&quot;2026-07-18&quot;:4.24},{&quot;2026-07-19&quot;:4.17},{&quot;2026-07-20&quot;:4.22},{&quot;2026-07-21&quot;:4.08},{&quot;2026-07-23&quot;:3.84},{&quot;2026-07-24&quot;:3.64},{&quot;2026-07-25&quot;:3.57},{&quot;2026-07-26&quot;:3.61},{&quot;2026-07-27&quot;:3.66},{&quot;2026-07-28&quot;:3.92},{&quot;2026-07-29&quot;:3.87},{&quot;2026-07-30&quot;:3.74},{&quot;2026-07-31&quot;:3.61},{&quot;2026-08-01&quot;:3.57},{&quot;2026-08-02&quot;:3.44},{&quot;2026-08-03&quot;:3.71},{&quot;2026-08-04&quot;:3.81},{&quot;2026-08-05&quot;:3.79},{&quot;2026-08-07&quot;:3.54},{&quot;2026-08-08&quot;:3.91},{&quot;2026-08-09&quot;:4.49},{&quot;2026-08-10&quot;:4.43},{&quot;2026-08-11&quot;:4.23},{&quot;2026-08-12&quot;:3.97},{&quot;2026-08-13&quot;:3.74},{&quot;2026-08-14&quot;:3.75},{&quot;2026-08-15&quot;:3.83},{&quot;2026-08-16&quot;:3.76},{&quot;2026-08-17&quot;:3.78},{&quot;2026-08-18&quot;:3.95},{&quot;2026-08-19&quot;:3.84},{&quot;2026-08-20&quot;:3.84},{&quot;2026-08-21&quot;:4.42},{&quot;2026-08-22&quot;:4.16},{&quot;2026-08-23&quot;:4.24},{&quot;2026-08-24&quot;:4.26},{&quot;2026-08-25&quot;:4.42},{&quot;2026-08-26&quot;:4.22},{&quot;2026-08-27&quot;:3.68},{&quot;2026-08-28&quot;:3.37},{&quot;2026-08-29&quot;:3.37},{&quot;2026-08-30&quot;:2.91},{&quot;2026-08-31&quot;:3.33},{&quot;2026-09-01&quot;:3.6},{&quot;2026-09-02&quot;:3.84},{&quot;2026-09-03&quot;:3.78},{&quot;2026-09-04&quot;:3.79},{&quot;2026-09-05&quot;:3.83},{&quot;2026-09-06&quot;:3.98},{&quot;2026-09-07&quot;:4.01},{&quot;2026-09-08&quot;:4.15},{&quot;2026-09-09&quot;:4.19},{&quot;2026-09-10&quot;:4.16},{&quot;2026-09-11&quot;:4.23}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="69722"
  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-stx 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">
            Solve the Equation
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Solve the Equation" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/6/6/66c04ee2-c1e0-45fb-aaf5-1b4459df80fc.jpg?1783927375" />

        <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">
            Solve the Equation
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Solve the Equation" src="https://cards.scryfall.io/large/front/6/6/66c04ee2-c1e0-45fb-aaf5-1b4459df80fc.jpg?1783927375" />
    </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.95
              </span>

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:3.68},{&quot;2026-06-14&quot;:3.68},{&quot;2026-06-15&quot;:3.71},{&quot;2026-06-16&quot;:3.71},{&quot;2026-06-17&quot;:3.65},{&quot;2026-06-18&quot;:3.62},{&quot;2026-06-19&quot;:3.69},{&quot;2026-06-20&quot;:3.71},{&quot;2026-06-21&quot;:3.69},{&quot;2026-06-22&quot;:3.69},{&quot;2026-06-23&quot;:3.69},{&quot;2026-06-24&quot;:3.69},{&quot;2026-06-25&quot;:3.69},{&quot;2026-06-26&quot;:3.69},{&quot;2026-06-27&quot;:3.67},{&quot;2026-06-28&quot;:3.76},{&quot;2026-06-29&quot;:3.76},{&quot;2026-06-30&quot;:3.76},{&quot;2026-07-01&quot;:3.66},{&quot;2026-07-02&quot;:3.66},{&quot;2026-07-03&quot;:3.71},{&quot;2026-07-04&quot;:3.71},{&quot;2026-07-05&quot;:3.71},{&quot;2026-07-06&quot;:3.66},{&quot;2026-07-07&quot;:3.68},{&quot;2026-07-08&quot;:3.72},{&quot;2026-07-09&quot;:3.72},{&quot;2026-07-10&quot;:3.82},{&quot;2026-07-11&quot;:3.82},{&quot;2026-07-12&quot;:3.82},{&quot;2026-07-13&quot;:3.82},{&quot;2026-07-14&quot;:3.82},{&quot;2026-07-15&quot;:3.82},{&quot;2026-07-16&quot;:3.95},{&quot;2026-07-17&quot;:3.9},{&quot;2026-07-18&quot;:3.96},{&quot;2026-07-19&quot;:3.96},{&quot;2026-07-20&quot;:3.96},{&quot;2026-07-21&quot;:3.96},{&quot;2026-07-22&quot;:3.96},{&quot;2026-07-23&quot;:3.99},{&quot;2026-07-24&quot;:3.99},{&quot;2026-07-25&quot;:3.96},{&quot;2026-07-26&quot;:3.87},{&quot;2026-07-27&quot;:3.85},{&quot;2026-07-28&quot;:3.93},{&quot;2026-07-29&quot;:3.87},{&quot;2026-07-30&quot;:3.86},{&quot;2026-07-31&quot;:3.72},{&quot;2026-08-01&quot;:3.75},{&quot;2026-08-02&quot;:3.63},{&quot;2026-08-03&quot;:3.6},{&quot;2026-08-04&quot;:3.57},{&quot;2026-08-05&quot;:3.48},{&quot;2026-08-07&quot;:3.48},{&quot;2026-08-08&quot;:3.48},{&quot;2026-08-09&quot;:3.48},{&quot;2026-08-10&quot;:3.45},{&quot;2026-08-11&quot;:3.44},{&quot;2026-08-12&quot;:3.42},{&quot;2026-08-13&quot;:3.33},{&quot;2026-08-14&quot;:3.33},{&quot;2026-08-15&quot;:3.33},{&quot;2026-08-16&quot;:3.36},{&quot;2026-08-17&quot;:3.37},{&quot;2026-08-18&quot;:3.41},{&quot;2026-08-19&quot;:3.41},{&quot;2026-08-20&quot;:3.48},{&quot;2026-08-21&quot;:3.48},{&quot;2026-08-22&quot;:3.47},{&quot;2026-08-23&quot;:3.47},{&quot;2026-08-24&quot;:3.49},{&quot;2026-08-25&quot;:3.49},{&quot;2026-08-26&quot;:3.49},{&quot;2026-08-27&quot;:3.53},{&quot;2026-08-28&quot;:3.5},{&quot;2026-08-29&quot;:3.5},{&quot;2026-08-30&quot;:3.48},{&quot;2026-08-31&quot;:3.48},{&quot;2026-09-01&quot;:3.48},{&quot;2026-09-02&quot;:3.53},{&quot;2026-09-03&quot;:3.53},{&quot;2026-09-04&quot;:3.53},{&quot;2026-09-05&quot;:3.6},{&quot;2026-09-06&quot;:3.51},{&quot;2026-09-07&quot;:3.52},{&quot;2026-09-08&quot;:3.52},{&quot;2026-09-09&quot;:3.55},{&quot;2026-09-10&quot;:3.55},{&quot;2026-09-11&quot;:3.42}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:4.14},{&quot;2026-06-14&quot;:3.95},{&quot;2026-06-15&quot;:3.78},{&quot;2026-06-16&quot;:3.92},{&quot;2026-06-17&quot;:4.13},{&quot;2026-06-18&quot;:4.1},{&quot;2026-06-19&quot;:4.02},{&quot;2026-06-20&quot;:3.7},{&quot;2026-06-21&quot;:3.69},{&quot;2026-06-22&quot;:3.66},{&quot;2026-06-23&quot;:3.62},{&quot;2026-06-24&quot;:3.59},{&quot;2026-06-25&quot;:3.59},{&quot;2026-06-26&quot;:3.61},{&quot;2026-06-27&quot;:3.72},{&quot;2026-06-28&quot;:3.72},{&quot;2026-06-29&quot;:3.72},{&quot;2026-06-30&quot;:3.89},{&quot;2026-07-01&quot;:3.77},{&quot;2026-07-02&quot;:3.81},{&quot;2026-07-03&quot;:3.54},{&quot;2026-07-04&quot;:3.6},{&quot;2026-07-05&quot;:3.46},{&quot;2026-07-06&quot;:3.37},{&quot;2026-07-07&quot;:3.73},{&quot;2026-07-08&quot;:3.82},{&quot;2026-07-09&quot;:3.95},{&quot;2026-07-10&quot;:3.97},{&quot;2026-07-11&quot;:4.03},{&quot;2026-07-12&quot;:3.83},{&quot;2026-07-13&quot;:3.49},{&quot;2026-07-14&quot;:3.28},{&quot;2026-07-15&quot;:3.64},{&quot;2026-07-16&quot;:3.44},{&quot;2026-07-17&quot;:3.27},{&quot;2026-07-18&quot;:3.04},{&quot;2026-07-19&quot;:3.91},{&quot;2026-07-20&quot;:4.1},{&quot;2026-07-21&quot;:4.4},{&quot;2026-07-22&quot;:4.04},{&quot;2026-07-23&quot;:3.87},{&quot;2026-07-24&quot;:3.87},{&quot;2026-07-25&quot;:3.61},{&quot;2026-07-26&quot;:3.64},{&quot;2026-07-27&quot;:3.8},{&quot;2026-07-28&quot;:3.76},{&quot;2026-07-29&quot;:3.7},{&quot;2026-07-30&quot;:3.59},{&quot;2026-07-31&quot;:4.14},{&quot;2026-08-01&quot;:4.02},{&quot;2026-08-02&quot;:3.9},{&quot;2026-08-03&quot;:3.99},{&quot;2026-08-04&quot;:3.86},{&quot;2026-08-05&quot;:3.4},{&quot;2026-08-07&quot;:3.07},{&quot;2026-08-08&quot;:3.13},{&quot;2026-08-09&quot;:3.45},{&quot;2026-08-10&quot;:3.32},{&quot;2026-08-11&quot;:3.61},{&quot;2026-08-12&quot;:3.69},{&quot;2026-08-13&quot;:3.64},{&quot;2026-08-14&quot;:3.84},{&quot;2026-08-15&quot;:3.69},{&quot;2026-08-16&quot;:3.91},{&quot;2026-08-17&quot;:3.93},{&quot;2026-08-18&quot;:4.2},{&quot;2026-08-19&quot;:4.37},{&quot;2026-08-20&quot;:4.31},{&quot;2026-08-21&quot;:4.33},{&quot;2026-08-22&quot;:4.09},{&quot;2026-08-23&quot;:4.1},{&quot;2026-08-24&quot;:3.93},{&quot;2026-08-25&quot;:3.79},{&quot;2026-08-26&quot;:3.85},{&quot;2026-08-27&quot;:3.89},{&quot;2026-08-28&quot;:3.85},{&quot;2026-08-29&quot;:3.85},{&quot;2026-08-30&quot;:4.31},{&quot;2026-08-31&quot;:4.35},{&quot;2026-09-01&quot;:4.62},{&quot;2026-09-02&quot;:4.6},{&quot;2026-09-03&quot;:4.49},{&quot;2026-09-04&quot;:4.56},{&quot;2026-09-05&quot;:4.15},{&quot;2026-09-06&quot;:4.22},{&quot;2026-09-07&quot;:4.11},{&quot;2026-09-08&quot;:4.12},{&quot;2026-09-09&quot;:3.95},{&quot;2026-09-10&quot;:4.03},{&quot;2026-09-11&quot;:3.95}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Crop Rotation" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/2/4249cc64-f75b-4c76-a41a-5b25873c74bc.jpg?1783930149" />

        <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">
            Crop Rotation
        </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-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="Crop Rotation" src="https://cards.scryfall.io/large/front/4/2/4249cc64-f75b-4c76-a41a-5b25873c74bc.jpg?1783930149" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:4.58},{&quot;2026-06-11&quot;:4.58},{&quot;2026-06-12&quot;:4.53},{&quot;2026-06-13&quot;:4.43},{&quot;2026-06-14&quot;:4.43},{&quot;2026-06-15&quot;:4.43},{&quot;2026-06-16&quot;:4.43},{&quot;2026-06-17&quot;:4.43},{&quot;2026-06-18&quot;:4.43},{&quot;2026-06-19&quot;:4.48},{&quot;2026-06-20&quot;:4.48},{&quot;2026-06-21&quot;:4.48},{&quot;2026-06-22&quot;:4.48},{&quot;2026-06-23&quot;:4.48},{&quot;2026-06-24&quot;:4.48},{&quot;2026-06-25&quot;:4.48},{&quot;2026-06-26&quot;:4.35},{&quot;2026-06-27&quot;:4.35},{&quot;2026-06-28&quot;:4.35},{&quot;2026-06-29&quot;:4.35},{&quot;2026-06-30&quot;:4.37},{&quot;2026-07-01&quot;:4.37},{&quot;2026-07-02&quot;:4.37},{&quot;2026-07-03&quot;:4.37},{&quot;2026-07-04&quot;:4.26},{&quot;2026-07-05&quot;:4.26},{&quot;2026-07-06&quot;:4.26},{&quot;2026-07-07&quot;:4.26},{&quot;2026-07-08&quot;:4.26},{&quot;2026-07-09&quot;:4.36},{&quot;2026-07-10&quot;:4.32},{&quot;2026-07-11&quot;:4.32},{&quot;2026-07-12&quot;:4.28},{&quot;2026-07-13&quot;:4.16},{&quot;2026-07-14&quot;:4.22},{&quot;2026-07-15&quot;:4.26},{&quot;2026-07-16&quot;:4.26},{&quot;2026-07-17&quot;:4.26},{&quot;2026-07-18&quot;:4.26},{&quot;2026-07-19&quot;:4.26},{&quot;2026-07-20&quot;:4.26},{&quot;2026-07-21&quot;:4.26},{&quot;2026-07-23&quot;:4.23},{&quot;2026-07-25&quot;:4.23},{&quot;2026-07-26&quot;:4.19},{&quot;2026-07-27&quot;:4.22},{&quot;2026-07-29&quot;:4.26},{&quot;2026-07-30&quot;:4.26},{&quot;2026-07-31&quot;:4.3},{&quot;2026-08-01&quot;:4.26},{&quot;2026-08-02&quot;:4.26},{&quot;2026-08-03&quot;:4.26},{&quot;2026-08-04&quot;:4.26},{&quot;2026-08-05&quot;:4.26},{&quot;2026-08-07&quot;:4.3},{&quot;2026-08-08&quot;:4.35},{&quot;2026-08-09&quot;:4.35},{&quot;2026-08-10&quot;:4.35},{&quot;2026-08-11&quot;:4.35},{&quot;2026-08-12&quot;:4.3},{&quot;2026-08-13&quot;:4.3},{&quot;2026-08-14&quot;:4.3},{&quot;2026-08-15&quot;:4.3},{&quot;2026-08-16&quot;:4.3},{&quot;2026-08-17&quot;:4.3},{&quot;2026-08-18&quot;:4.3},{&quot;2026-08-19&quot;:4.3},{&quot;2026-08-20&quot;:4.3},{&quot;2026-08-21&quot;:4.3},{&quot;2026-08-22&quot;:4.3},{&quot;2026-08-23&quot;:4.3},{&quot;2026-08-24&quot;:4.3},{&quot;2026-08-25&quot;:4.3},{&quot;2026-08-26&quot;:4.36},{&quot;2026-08-27&quot;:4.36},{&quot;2026-08-28&quot;:4.36},{&quot;2026-08-29&quot;:4.36},{&quot;2026-08-30&quot;:4.38},{&quot;2026-08-31&quot;:4.38},{&quot;2026-09-01&quot;:4.38},{&quot;2026-09-02&quot;:4.38},{&quot;2026-09-03&quot;:4.38},{&quot;2026-09-04&quot;:4.38},{&quot;2026-09-05&quot;:4.32},{&quot;2026-09-06&quot;:4.29},{&quot;2026-09-07&quot;:4.29},{&quot;2026-09-08&quot;:4.35},{&quot;2026-09-09&quot;:4.35},{&quot;2026-09-10&quot;:4.35},{&quot;2026-09-11&quot;:4.35}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:3.88},{&quot;2026-06-11&quot;:3.9},{&quot;2026-06-12&quot;:3.88},{&quot;2026-06-13&quot;:3.78},{&quot;2026-06-14&quot;:3.82},{&quot;2026-06-15&quot;:3.88},{&quot;2026-06-16&quot;:3.9},{&quot;2026-06-17&quot;:3.81},{&quot;2026-06-18&quot;:3.85},{&quot;2026-06-19&quot;:3.85},{&quot;2026-06-20&quot;:3.82},{&quot;2026-06-21&quot;:3.83},{&quot;2026-06-22&quot;:3.88},{&quot;2026-06-23&quot;:3.79},{&quot;2026-06-24&quot;:3.77},{&quot;2026-06-25&quot;:3.76},{&quot;2026-06-26&quot;:3.68},{&quot;2026-06-27&quot;:3.66},{&quot;2026-06-28&quot;:3.81},{&quot;2026-06-29&quot;:3.77},{&quot;2026-06-30&quot;:3.77},{&quot;2026-07-01&quot;:3.83},{&quot;2026-07-02&quot;:3.83},{&quot;2026-07-03&quot;:3.81},{&quot;2026-07-04&quot;:3.78},{&quot;2026-07-05&quot;:3.68},{&quot;2026-07-06&quot;:3.68},{&quot;2026-07-07&quot;:3.68},{&quot;2026-07-08&quot;:3.68},{&quot;2026-07-09&quot;:3.69},{&quot;2026-07-10&quot;:3.68},{&quot;2026-07-11&quot;:3.72},{&quot;2026-07-12&quot;:3.65},{&quot;2026-07-13&quot;:3.65},{&quot;2026-07-14&quot;:3.7},{&quot;2026-07-15&quot;:3.78},{&quot;2026-07-16&quot;:3.94},{&quot;2026-07-17&quot;:3.92},{&quot;2026-07-18&quot;:3.94},{&quot;2026-07-19&quot;:3.97},{&quot;2026-07-20&quot;:3.95},{&quot;2026-07-21&quot;:3.86},{&quot;2026-07-23&quot;:3.76},{&quot;2026-07-25&quot;:3.66},{&quot;2026-07-26&quot;:3.49},{&quot;2026-07-27&quot;:3.53},{&quot;2026-07-29&quot;:3.53},{&quot;2026-07-30&quot;:3.44},{&quot;2026-07-31&quot;:3.47},{&quot;2026-08-01&quot;:3.47},{&quot;2026-08-02&quot;:3.47},{&quot;2026-08-03&quot;:3.47},{&quot;2026-08-04&quot;:3.43},{&quot;2026-08-05&quot;:3.43},{&quot;2026-08-07&quot;:3.41},{&quot;2026-08-08&quot;:3.41},{&quot;2026-08-09&quot;:3.43},{&quot;2026-08-10&quot;:3.52},{&quot;2026-08-11&quot;:3.52},{&quot;2026-08-12&quot;:3.54},{&quot;2026-08-13&quot;:3.52},{&quot;2026-08-14&quot;:3.51},{&quot;2026-08-15&quot;:3.49},{&quot;2026-08-16&quot;:3.51},{&quot;2026-08-17&quot;:3.55},{&quot;2026-08-18&quot;:3.56},{&quot;2026-08-19&quot;:3.61},{&quot;2026-08-20&quot;:3.61},{&quot;2026-08-21&quot;:3.84},{&quot;2026-08-22&quot;:3.86},{&quot;2026-08-23&quot;:3.84},{&quot;2026-08-24&quot;:3.78},{&quot;2026-08-25&quot;:3.78},{&quot;2026-08-26&quot;:3.79},{&quot;2026-08-27&quot;:3.78},{&quot;2026-08-28&quot;:3.78},{&quot;2026-08-29&quot;:3.78},{&quot;2026-08-30&quot;:3.76},{&quot;2026-08-31&quot;:3.65},{&quot;2026-09-01&quot;:3.65},{&quot;2026-09-02&quot;:3.69},{&quot;2026-09-03&quot;:3.69},{&quot;2026-09-04&quot;:3.66},{&quot;2026-09-05&quot;:3.59},{&quot;2026-09-06&quot;:3.55},{&quot;2026-09-07&quot;:3.45},{&quot;2026-09-08&quot;:3.54},{&quot;2026-09-09&quot;:3.61},{&quot;2026-09-10&quot;:3.71},{&quot;2026-09-11&quot;:3.72}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Nature&#39;s Lore" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/5/4/543d1e79-cac6-455c-9fda-f13c849579d6.jpg?1783922708" />

        <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/5/4/543d1e79-cac6-455c-9fda-f13c849579d6.jpg?1783922708" />
    </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.64
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:3.7},{&quot;2026-06-14&quot;:3.7},{&quot;2026-06-15&quot;:3.7},{&quot;2026-06-16&quot;:3.7},{&quot;2026-06-17&quot;:3.74},{&quot;2026-06-18&quot;:3.82},{&quot;2026-06-19&quot;:3.81},{&quot;2026-06-20&quot;:3.85},{&quot;2026-06-21&quot;:3.75},{&quot;2026-06-22&quot;:3.66},{&quot;2026-06-23&quot;:3.6},{&quot;2026-06-24&quot;:3.53},{&quot;2026-06-25&quot;:3.57},{&quot;2026-06-26&quot;:3.51},{&quot;2026-06-27&quot;:3.54},{&quot;2026-06-28&quot;:3.57},{&quot;2026-06-29&quot;:3.52},{&quot;2026-06-30&quot;:3.43},{&quot;2026-07-01&quot;:3.45},{&quot;2026-07-02&quot;:3.44},{&quot;2026-07-03&quot;:3.46},{&quot;2026-07-04&quot;:3.5},{&quot;2026-07-05&quot;:3.46},{&quot;2026-07-06&quot;:3.46},{&quot;2026-07-07&quot;:3.46},{&quot;2026-07-08&quot;:3.52},{&quot;2026-07-09&quot;:3.57},{&quot;2026-07-10&quot;:3.62},{&quot;2026-07-11&quot;:3.62},{&quot;2026-07-12&quot;:3.61},{&quot;2026-07-13&quot;:3.61},{&quot;2026-07-14&quot;:3.61},{&quot;2026-07-15&quot;:3.59},{&quot;2026-07-16&quot;:3.56},{&quot;2026-07-17&quot;:3.56},{&quot;2026-07-18&quot;:3.56},{&quot;2026-07-19&quot;:3.56},{&quot;2026-07-20&quot;:3.55},{&quot;2026-07-21&quot;:3.59},{&quot;2026-07-22&quot;:3.54},{&quot;2026-07-23&quot;:3.55},{&quot;2026-07-24&quot;:3.55},{&quot;2026-07-25&quot;:3.55},{&quot;2026-07-26&quot;:3.55},{&quot;2026-07-27&quot;:3.53},{&quot;2026-07-28&quot;:3.53},{&quot;2026-07-29&quot;:3.53},{&quot;2026-07-30&quot;:3.53},{&quot;2026-07-31&quot;:3.55},{&quot;2026-08-01&quot;:3.55},{&quot;2026-08-02&quot;:3.6},{&quot;2026-08-03&quot;:3.61},{&quot;2026-08-04&quot;:3.61},{&quot;2026-08-05&quot;:3.58},{&quot;2026-08-07&quot;:3.58},{&quot;2026-08-08&quot;:3.58},{&quot;2026-08-09&quot;:3.55},{&quot;2026-08-10&quot;:3.55},{&quot;2026-08-11&quot;:3.55},{&quot;2026-08-12&quot;:3.55},{&quot;2026-08-13&quot;:3.45},{&quot;2026-08-14&quot;:3.41},{&quot;2026-08-15&quot;:3.3},{&quot;2026-08-16&quot;:3.34},{&quot;2026-08-17&quot;:3.34},{&quot;2026-08-18&quot;:3.28},{&quot;2026-08-19&quot;:3.28},{&quot;2026-08-20&quot;:3.36},{&quot;2026-08-21&quot;:3.42},{&quot;2026-08-22&quot;:3.45},{&quot;2026-08-23&quot;:3.48},{&quot;2026-08-24&quot;:3.48},{&quot;2026-08-25&quot;:3.48},{&quot;2026-08-26&quot;:3.47},{&quot;2026-08-27&quot;:3.47},{&quot;2026-08-28&quot;:3.43},{&quot;2026-08-29&quot;:3.43},{&quot;2026-08-30&quot;:3.49},{&quot;2026-08-31&quot;:3.49},{&quot;2026-09-01&quot;:3.59},{&quot;2026-09-02&quot;:3.59},{&quot;2026-09-03&quot;:3.59},{&quot;2026-09-04&quot;:3.59},{&quot;2026-09-05&quot;:3.63},{&quot;2026-09-06&quot;:3.63},{&quot;2026-09-07&quot;:3.63},{&quot;2026-09-08&quot;:3.63},{&quot;2026-09-09&quot;:3.63},{&quot;2026-09-10&quot;:3.59},{&quot;2026-09-11&quot;:3.58}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:2.98},{&quot;2026-06-14&quot;:3.19},{&quot;2026-06-15&quot;:3.27},{&quot;2026-06-16&quot;:3.29},{&quot;2026-06-17&quot;:3.18},{&quot;2026-06-18&quot;:3.16},{&quot;2026-06-19&quot;:3.06},{&quot;2026-06-20&quot;:2.71},{&quot;2026-06-21&quot;:2.77},{&quot;2026-06-22&quot;:3.16},{&quot;2026-06-23&quot;:3.08},{&quot;2026-06-24&quot;:3.16},{&quot;2026-06-25&quot;:3.02},{&quot;2026-06-26&quot;:2.94},{&quot;2026-06-27&quot;:3.07},{&quot;2026-06-28&quot;:3.02},{&quot;2026-06-29&quot;:3.02},{&quot;2026-06-30&quot;:3.0},{&quot;2026-07-01&quot;:2.97},{&quot;2026-07-02&quot;:2.89},{&quot;2026-07-03&quot;:2.87},{&quot;2026-07-04&quot;:2.78},{&quot;2026-07-05&quot;:2.64},{&quot;2026-07-06&quot;:2.56},{&quot;2026-07-07&quot;:2.47},{&quot;2026-07-08&quot;:2.65},{&quot;2026-07-09&quot;:2.81},{&quot;2026-07-10&quot;:2.86},{&quot;2026-07-11&quot;:2.94},{&quot;2026-07-12&quot;:3.42},{&quot;2026-07-13&quot;:3.88},{&quot;2026-07-14&quot;:3.87},{&quot;2026-07-15&quot;:3.89},{&quot;2026-07-16&quot;:3.65},{&quot;2026-07-17&quot;:3.59},{&quot;2026-07-18&quot;:3.52},{&quot;2026-07-19&quot;:3.49},{&quot;2026-07-20&quot;:3.18},{&quot;2026-07-21&quot;:2.89},{&quot;2026-07-22&quot;:2.89},{&quot;2026-07-23&quot;:2.81},{&quot;2026-07-24&quot;:2.83},{&quot;2026-07-25&quot;:2.79},{&quot;2026-07-26&quot;:2.91},{&quot;2026-07-27&quot;:2.92},{&quot;2026-07-28&quot;:2.83},{&quot;2026-07-29&quot;:2.79},{&quot;2026-07-30&quot;:2.81},{&quot;2026-07-31&quot;:2.82},{&quot;2026-08-01&quot;:2.82},{&quot;2026-08-02&quot;:2.89},{&quot;2026-08-03&quot;:2.93},{&quot;2026-08-04&quot;:2.78},{&quot;2026-08-05&quot;:3.16},{&quot;2026-08-07&quot;:3.19},{&quot;2026-08-08&quot;:3.17},{&quot;2026-08-09&quot;:3.03},{&quot;2026-08-10&quot;:3.03},{&quot;2026-08-11&quot;:3.01},{&quot;2026-08-12&quot;:3.07},{&quot;2026-08-13&quot;:3.13},{&quot;2026-08-14&quot;:3.22},{&quot;2026-08-15&quot;:3.06},{&quot;2026-08-16&quot;:2.81},{&quot;2026-08-17&quot;:2.93},{&quot;2026-08-18&quot;:2.94},{&quot;2026-08-19&quot;:3.0},{&quot;2026-08-20&quot;:3.0},{&quot;2026-08-21&quot;:2.95},{&quot;2026-08-22&quot;:2.97},{&quot;2026-08-23&quot;:2.96},{&quot;2026-08-24&quot;:2.93},{&quot;2026-08-25&quot;:3.04},{&quot;2026-08-26&quot;:2.95},{&quot;2026-08-27&quot;:2.93},{&quot;2026-08-28&quot;:3.04},{&quot;2026-08-29&quot;:3.04},{&quot;2026-08-30&quot;:3.05},{&quot;2026-08-31&quot;:3.24},{&quot;2026-09-01&quot;:3.52},{&quot;2026-09-02&quot;:3.5},{&quot;2026-09-03&quot;:3.47},{&quot;2026-09-04&quot;:3.41},{&quot;2026-09-05&quot;:3.33},{&quot;2026-09-06&quot;:3.26},{&quot;2026-09-07&quot;:3.45},{&quot;2026-09-08&quot;:3.82},{&quot;2026-09-09&quot;:3.9},{&quot;2026-09-10&quot;:3.7},{&quot;2026-09-11&quot;:3.64}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

          <span class="text-sm font-medium text-nine-white">
            $2.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="Tireless Provisioner" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/5/c/5c5be54d-660e-42ab-b5ea-5e1cf3bad0bc.jpg?1783926824" />

        <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">
            Tireless Provisioner
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Creature — Elf Scout</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="Tireless Provisioner" src="https://cards.scryfall.io/large/front/5/c/5c5be54d-660e-42ab-b5ea-5e1cf3bad0bc.jpg?1783926824" />
    </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.98
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  20%
                </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.39
              </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">$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;2026-06-13&quot;:4.0},{&quot;2026-06-14&quot;:3.96},{&quot;2026-06-15&quot;:3.96},{&quot;2026-06-16&quot;:3.96},{&quot;2026-06-17&quot;:3.96},{&quot;2026-06-18&quot;:3.96},{&quot;2026-06-19&quot;:3.96},{&quot;2026-06-20&quot;:3.96},{&quot;2026-06-21&quot;:3.92},{&quot;2026-06-22&quot;:3.92},{&quot;2026-06-23&quot;:3.92},{&quot;2026-06-24&quot;:3.89},{&quot;2026-06-25&quot;:3.89},{&quot;2026-06-26&quot;:3.89},{&quot;2026-06-27&quot;:3.89},{&quot;2026-06-28&quot;:3.89},{&quot;2026-06-29&quot;:3.89},{&quot;2026-06-30&quot;:3.89},{&quot;2026-07-01&quot;:3.89},{&quot;2026-07-02&quot;:3.89},{&quot;2026-07-03&quot;:3.89},{&quot;2026-07-04&quot;:3.89},{&quot;2026-07-05&quot;:3.89},{&quot;2026-07-06&quot;:3.89},{&quot;2026-07-07&quot;:3.89},{&quot;2026-07-08&quot;:3.88},{&quot;2026-07-09&quot;:3.88},{&quot;2026-07-10&quot;:3.88},{&quot;2026-07-11&quot;:3.88},{&quot;2026-07-12&quot;:3.88},{&quot;2026-07-13&quot;:3.81},{&quot;2026-07-14&quot;:3.81},{&quot;2026-07-15&quot;:3.8},{&quot;2026-07-16&quot;:3.8},{&quot;2026-07-17&quot;:3.8},{&quot;2026-07-18&quot;:3.8},{&quot;2026-07-19&quot;:3.8},{&quot;2026-07-20&quot;:3.8},{&quot;2026-07-21&quot;:3.8},{&quot;2026-07-22&quot;:3.8},{&quot;2026-07-23&quot;:3.8},{&quot;2026-07-24&quot;:3.8},{&quot;2026-07-25&quot;:3.8},{&quot;2026-07-26&quot;:3.8},{&quot;2026-07-27&quot;:3.8},{&quot;2026-07-28&quot;:3.8},{&quot;2026-07-29&quot;:3.78},{&quot;2026-07-30&quot;:3.78},{&quot;2026-07-31&quot;:3.76},{&quot;2026-08-01&quot;:3.76},{&quot;2026-08-02&quot;:3.76},{&quot;2026-08-03&quot;:3.79},{&quot;2026-08-04&quot;:3.79},{&quot;2026-08-05&quot;:3.75},{&quot;2026-08-07&quot;:3.75},{&quot;2026-08-08&quot;:3.8},{&quot;2026-08-09&quot;:3.76},{&quot;2026-08-10&quot;:3.76},{&quot;2026-08-11&quot;:3.76},{&quot;2026-08-12&quot;:3.76},{&quot;2026-08-13&quot;:3.7},{&quot;2026-08-14&quot;:3.72},{&quot;2026-08-15&quot;:3.62},{&quot;2026-08-16&quot;:3.62},{&quot;2026-08-17&quot;:3.62},{&quot;2026-08-18&quot;:3.66},{&quot;2026-08-19&quot;:3.66},{&quot;2026-08-20&quot;:3.6},{&quot;2026-08-21&quot;:3.55},{&quot;2026-08-22&quot;:3.55},{&quot;2026-08-23&quot;:3.55},{&quot;2026-08-24&quot;:3.55},{&quot;2026-08-25&quot;:3.55},{&quot;2026-08-26&quot;:3.48},{&quot;2026-08-27&quot;:3.48},{&quot;2026-08-28&quot;:3.31},{&quot;2026-08-29&quot;:3.31},{&quot;2026-08-30&quot;:3.28},{&quot;2026-08-31&quot;:3.28},{&quot;2026-09-01&quot;:3.28},{&quot;2026-09-02&quot;:3.28},{&quot;2026-09-03&quot;:3.29},{&quot;2026-09-04&quot;:3.3},{&quot;2026-09-05&quot;:3.3},{&quot;2026-09-06&quot;:3.35},{&quot;2026-09-07&quot;:3.35},{&quot;2026-09-08&quot;:3.35},{&quot;2026-09-09&quot;:3.35},{&quot;2026-09-10&quot;:3.35},{&quot;2026-09-11&quot;:3.39}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:2.72},{&quot;2026-06-14&quot;:2.67},{&quot;2026-06-15&quot;:2.8},{&quot;2026-06-16&quot;:2.73},{&quot;2026-06-17&quot;:2.7},{&quot;2026-06-18&quot;:2.41},{&quot;2026-06-19&quot;:2.4},{&quot;2026-06-20&quot;:2.31},{&quot;2026-06-21&quot;:2.12},{&quot;2026-06-22&quot;:2.19},{&quot;2026-06-23&quot;:2.19},{&quot;2026-06-24&quot;:2.16},{&quot;2026-06-25&quot;:2.27},{&quot;2026-06-26&quot;:2.28},{&quot;2026-06-27&quot;:2.28},{&quot;2026-06-28&quot;:2.24},{&quot;2026-06-29&quot;:2.19},{&quot;2026-06-30&quot;:2.17},{&quot;2026-07-01&quot;:2.0},{&quot;2026-07-02&quot;:2.0},{&quot;2026-07-03&quot;:2.01},{&quot;2026-07-04&quot;:2.12},{&quot;2026-07-05&quot;:2.1},{&quot;2026-07-06&quot;:2.12},{&quot;2026-07-07&quot;:2.07},{&quot;2026-07-08&quot;:2.1},{&quot;2026-07-09&quot;:2.09},{&quot;2026-07-10&quot;:2.05},{&quot;2026-07-11&quot;:1.97},{&quot;2026-07-12&quot;:1.92},{&quot;2026-07-13&quot;:1.91},{&quot;2026-07-14&quot;:2.0},{&quot;2026-07-15&quot;:2.0},{&quot;2026-07-16&quot;:1.97},{&quot;2026-07-17&quot;:1.97},{&quot;2026-07-18&quot;:2.09},{&quot;2026-07-19&quot;:2.08},{&quot;2026-07-20&quot;:1.97},{&quot;2026-07-21&quot;:1.92},{&quot;2026-07-22&quot;:1.89},{&quot;2026-07-23&quot;:1.92},{&quot;2026-07-24&quot;:1.89},{&quot;2026-07-25&quot;:2.05},{&quot;2026-07-26&quot;:2.06},{&quot;2026-07-27&quot;:2.13},{&quot;2026-07-28&quot;:2.13},{&quot;2026-07-29&quot;:2.17},{&quot;2026-07-30&quot;:2.24},{&quot;2026-07-31&quot;:2.13},{&quot;2026-08-01&quot;:2.13},{&quot;2026-08-02&quot;:2.06},{&quot;2026-08-03&quot;:2.08},{&quot;2026-08-04&quot;:2.01},{&quot;2026-08-05&quot;:2.01},{&quot;2026-08-07&quot;:2.1},{&quot;2026-08-08&quot;:2.08},{&quot;2026-08-09&quot;:2.03},{&quot;2026-08-10&quot;:2.09},{&quot;2026-08-11&quot;:1.99},{&quot;2026-08-12&quot;:1.94},{&quot;2026-08-13&quot;:1.67},{&quot;2026-08-14&quot;:1.44},{&quot;2026-08-15&quot;:1.6},{&quot;2026-08-16&quot;:1.44},{&quot;2026-08-17&quot;:1.61},{&quot;2026-08-18&quot;:1.67},{&quot;2026-08-19&quot;:1.77},{&quot;2026-08-20&quot;:1.93},{&quot;2026-08-21&quot;:1.94},{&quot;2026-08-22&quot;:2.05},{&quot;2026-08-23&quot;:2.05},{&quot;2026-08-24&quot;:2.28},{&quot;2026-08-25&quot;:2.35},{&quot;2026-08-26&quot;:2.4},{&quot;2026-08-27&quot;:2.48},{&quot;2026-08-28&quot;:2.61},{&quot;2026-08-29&quot;:2.61},{&quot;2026-08-30&quot;:2.64},{&quot;2026-08-31&quot;:2.85},{&quot;2026-09-01&quot;:3.07},{&quot;2026-09-02&quot;:3.2},{&quot;2026-09-03&quot;:3.67},{&quot;2026-09-04&quot;:3.85},{&quot;2026-09-05&quot;:3.72},{&quot;2026-09-06&quot;:3.33},{&quot;2026-09-07&quot;:3.22},{&quot;2026-09-08&quot;:3.07},{&quot;2026-09-09&quot;:3.1},{&quot;2026-09-10&quot;:3.09},{&quot;2026-09-11&quot;:2.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="14445"
  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">
            Sol Ring
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Sol Ring" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/9/199cde21-5bc3-49cd-acd4-bae3af6e5881.jpg?1783922385" />

        <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/1/9/199cde21-5bc3-49cd-acd4-bae3af6e5881.jpg?1783922385" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Expedition Map" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/5/5/551c0a45-9515-4e51-84e5-79703832a661.jpg?1783930109" />

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

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Expedition Map
        </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-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="Expedition Map" src="https://cards.scryfall.io/large/front/5/5/551c0a45-9515-4e51-84e5-79703832a661.jpg?1783930109" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-11&quot;:1.72},{&quot;2026-06-12&quot;:1.75},{&quot;2026-06-13&quot;:1.75},{&quot;2026-06-14&quot;:1.75},{&quot;2026-06-15&quot;:1.76},{&quot;2026-06-16&quot;:1.76},{&quot;2026-06-17&quot;:1.74},{&quot;2026-06-18&quot;:1.75},{&quot;2026-06-19&quot;:1.75},{&quot;2026-06-20&quot;:1.75},{&quot;2026-06-21&quot;:1.81},{&quot;2026-06-22&quot;:1.81},{&quot;2026-06-23&quot;:1.93},{&quot;2026-06-24&quot;:1.91},{&quot;2026-06-25&quot;:1.91},{&quot;2026-06-26&quot;:1.96},{&quot;2026-06-27&quot;:1.96},{&quot;2026-06-28&quot;:1.96},{&quot;2026-06-29&quot;:1.96},{&quot;2026-06-30&quot;:1.96},{&quot;2026-07-01&quot;:1.96},{&quot;2026-07-02&quot;:1.96},{&quot;2026-07-03&quot;:1.96},{&quot;2026-07-04&quot;:1.94},{&quot;2026-07-05&quot;:1.93},{&quot;2026-07-06&quot;:2.04},{&quot;2026-07-07&quot;:2.04},{&quot;2026-07-08&quot;:2.04},{&quot;2026-07-09&quot;:2.18},{&quot;2026-07-10&quot;:2.36},{&quot;2026-07-11&quot;:2.36},{&quot;2026-07-12&quot;:2.52},{&quot;2026-07-13&quot;:2.52},{&quot;2026-07-14&quot;:2.52},{&quot;2026-07-15&quot;:2.54},{&quot;2026-07-16&quot;:2.54},{&quot;2026-07-17&quot;:2.54},{&quot;2026-07-18&quot;:2.59},{&quot;2026-07-19&quot;:2.59},{&quot;2026-07-20&quot;:2.59},{&quot;2026-07-21&quot;:2.53},{&quot;2026-07-23&quot;:2.58},{&quot;2026-07-25&quot;:2.54},{&quot;2026-07-26&quot;:2.7},{&quot;2026-07-27&quot;:2.82},{&quot;2026-07-28&quot;:2.81},{&quot;2026-07-29&quot;:2.8},{&quot;2026-07-30&quot;:2.91},{&quot;2026-07-31&quot;:2.68},{&quot;2026-08-01&quot;:2.68},{&quot;2026-08-02&quot;:2.64},{&quot;2026-08-03&quot;:2.89},{&quot;2026-08-04&quot;:2.89},{&quot;2026-08-05&quot;:2.8},{&quot;2026-08-07&quot;:2.8},{&quot;2026-08-08&quot;:2.8},{&quot;2026-08-09&quot;:2.74},{&quot;2026-08-10&quot;:2.74},{&quot;2026-08-11&quot;:2.61},{&quot;2026-08-12&quot;:2.47},{&quot;2026-08-13&quot;:2.58},{&quot;2026-08-14&quot;:2.86},{&quot;2026-08-15&quot;:2.86},{&quot;2026-08-16&quot;:2.79},{&quot;2026-08-17&quot;:2.79},{&quot;2026-08-18&quot;:2.79},{&quot;2026-08-19&quot;:3.39},{&quot;2026-08-20&quot;:3.39},{&quot;2026-08-21&quot;:3.16},{&quot;2026-08-22&quot;:3.16},{&quot;2026-08-23&quot;:3.16},{&quot;2026-08-24&quot;:3.16},{&quot;2026-08-25&quot;:3.13},{&quot;2026-08-26&quot;:3.13},{&quot;2026-08-27&quot;:3.13},{&quot;2026-08-28&quot;:3.13},{&quot;2026-08-29&quot;:3.13},{&quot;2026-08-30&quot;:3.13},{&quot;2026-08-31&quot;:3.13},{&quot;2026-09-01&quot;:3.13},{&quot;2026-09-02&quot;:3.13},{&quot;2026-09-03&quot;:2.86},{&quot;2026-09-04&quot;:3.04},{&quot;2026-09-05&quot;:3.15},{&quot;2026-09-06&quot;:3.28},{&quot;2026-09-07&quot;:3.16},{&quot;2026-09-08&quot;:3.16},{&quot;2026-09-09&quot;:3.16},{&quot;2026-09-10&quot;:3.13},{&quot;2026-09-11&quot;:3.13}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:1.4},{&quot;2026-06-12&quot;:1.28},{&quot;2026-06-13&quot;:1.24},{&quot;2026-06-14&quot;:1.24},{&quot;2026-06-15&quot;:1.23},{&quot;2026-06-16&quot;:1.23},{&quot;2026-06-17&quot;:1.22},{&quot;2026-06-18&quot;:1.15},{&quot;2026-06-19&quot;:1.24},{&quot;2026-06-20&quot;:1.22},{&quot;2026-06-21&quot;:1.23},{&quot;2026-06-22&quot;:1.3},{&quot;2026-06-23&quot;:1.29},{&quot;2026-06-24&quot;:1.32},{&quot;2026-06-25&quot;:1.32},{&quot;2026-06-26&quot;:1.36},{&quot;2026-06-27&quot;:1.37},{&quot;2026-06-28&quot;:1.37},{&quot;2026-06-29&quot;:1.34},{&quot;2026-06-30&quot;:1.41},{&quot;2026-07-01&quot;:1.38},{&quot;2026-07-02&quot;:1.65},{&quot;2026-07-03&quot;:1.69},{&quot;2026-07-04&quot;:1.69},{&quot;2026-07-05&quot;:1.69},{&quot;2026-07-06&quot;:1.71},{&quot;2026-07-07&quot;:1.72},{&quot;2026-07-08&quot;:1.85},{&quot;2026-07-09&quot;:1.93},{&quot;2026-07-10&quot;:1.93},{&quot;2026-07-11&quot;:1.82},{&quot;2026-07-12&quot;:1.8},{&quot;2026-07-13&quot;:1.81},{&quot;2026-07-14&quot;:1.8},{&quot;2026-07-15&quot;:1.91},{&quot;2026-07-16&quot;:1.92},{&quot;2026-07-17&quot;:1.86},{&quot;2026-07-18&quot;:1.92},{&quot;2026-07-19&quot;:1.88},{&quot;2026-07-20&quot;:1.82},{&quot;2026-07-21&quot;:1.82},{&quot;2026-07-23&quot;:1.85},{&quot;2026-07-25&quot;:1.76},{&quot;2026-07-26&quot;:1.76},{&quot;2026-07-27&quot;:1.7},{&quot;2026-07-28&quot;:1.7},{&quot;2026-07-29&quot;:1.62},{&quot;2026-07-30&quot;:1.59},{&quot;2026-07-31&quot;:1.64},{&quot;2026-08-01&quot;:1.64},{&quot;2026-08-02&quot;:1.62},{&quot;2026-08-03&quot;:1.61},{&quot;2026-08-04&quot;:1.61},{&quot;2026-08-05&quot;:1.61},{&quot;2026-08-07&quot;:1.75},{&quot;2026-08-08&quot;:1.75},{&quot;2026-08-09&quot;:1.76},{&quot;2026-08-10&quot;:1.71},{&quot;2026-08-11&quot;:1.74},{&quot;2026-08-12&quot;:1.73},{&quot;2026-08-13&quot;:1.68},{&quot;2026-08-14&quot;:1.89},{&quot;2026-08-15&quot;:1.89},{&quot;2026-08-16&quot;:1.75},{&quot;2026-08-17&quot;:1.7},{&quot;2026-08-18&quot;:1.75},{&quot;2026-08-19&quot;:1.71},{&quot;2026-08-20&quot;:1.71},{&quot;2026-08-21&quot;:1.71},{&quot;2026-08-22&quot;:1.86},{&quot;2026-08-23&quot;:1.77},{&quot;2026-08-24&quot;:1.78},{&quot;2026-08-25&quot;:1.76},{&quot;2026-08-26&quot;:1.76},{&quot;2026-08-27&quot;:1.96},{&quot;2026-08-28&quot;:1.92},{&quot;2026-08-29&quot;:1.92},{&quot;2026-08-30&quot;:1.89},{&quot;2026-08-31&quot;:1.83},{&quot;2026-09-01&quot;:1.76},{&quot;2026-09-02&quot;:1.71},{&quot;2026-09-03&quot;:1.68},{&quot;2026-09-04&quot;:1.61},{&quot;2026-09-05&quot;:1.76},{&quot;2026-09-06&quot;:1.84},{&quot;2026-09-07&quot;:1.82},{&quot;2026-09-08&quot;:1.89},{&quot;2026-09-09&quot;:1.89},{&quot;2026-09-10&quot;:1.77},{&quot;2026-09-11&quot;:1.84}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Summer Bloom
        </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.82
          </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="Summer Bloom" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/3/7383f71d-3f51-4632-9ea0-27d47fa2fa50.jpg?1783921862" />

        <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">
            Summer Bloom
        </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="Summer Bloom" src="https://cards.scryfall.io/large/front/7/3/7383f71d-3f51-4632-9ea0-27d47fa2fa50.jpg?1783921862" />
    </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.69
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-12&quot;:2.06},{&quot;2026-06-13&quot;:2.06},{&quot;2026-06-14&quot;:2.1},{&quot;2026-06-15&quot;:2.17},{&quot;2026-06-16&quot;:2.17},{&quot;2026-06-17&quot;:2.17},{&quot;2026-06-18&quot;:2.17},{&quot;2026-06-19&quot;:2.17},{&quot;2026-06-20&quot;:2.17},{&quot;2026-06-21&quot;:2.2},{&quot;2026-06-22&quot;:2.2},{&quot;2026-06-23&quot;:2.2},{&quot;2026-06-24&quot;:2.2},{&quot;2026-06-25&quot;:2.24},{&quot;2026-06-26&quot;:2.24},{&quot;2026-06-27&quot;:2.24},{&quot;2026-06-28&quot;:2.21},{&quot;2026-06-29&quot;:2.18},{&quot;2026-06-30&quot;:2.18},{&quot;2026-07-01&quot;:2.19},{&quot;2026-07-02&quot;:2.19},{&quot;2026-07-03&quot;:2.2},{&quot;2026-07-04&quot;:2.17},{&quot;2026-07-05&quot;:2.14},{&quot;2026-07-06&quot;:2.14},{&quot;2026-07-07&quot;:2.14},{&quot;2026-07-08&quot;:2.12},{&quot;2026-07-09&quot;:2.07},{&quot;2026-07-10&quot;:2.07},{&quot;2026-07-11&quot;:2.07},{&quot;2026-07-12&quot;:2.06},{&quot;2026-07-13&quot;:2.06},{&quot;2026-07-14&quot;:2.07},{&quot;2026-07-15&quot;:2.11},{&quot;2026-07-16&quot;:2.16},{&quot;2026-07-17&quot;:2.16},{&quot;2026-07-18&quot;:2.16},{&quot;2026-07-19&quot;:2.16},{&quot;2026-07-20&quot;:2.15},{&quot;2026-07-21&quot;:2.15},{&quot;2026-07-23&quot;:2.05},{&quot;2026-07-24&quot;:2.05},{&quot;2026-07-25&quot;:2.05},{&quot;2026-07-26&quot;:2.05},{&quot;2026-07-27&quot;:2.05},{&quot;2026-07-28&quot;:2.14},{&quot;2026-07-29&quot;:2.04},{&quot;2026-07-30&quot;:2.04},{&quot;2026-07-31&quot;:1.99},{&quot;2026-08-01&quot;:1.99},{&quot;2026-08-02&quot;:1.99},{&quot;2026-08-03&quot;:1.99},{&quot;2026-08-04&quot;:1.99},{&quot;2026-08-05&quot;:1.99},{&quot;2026-08-07&quot;:1.92},{&quot;2026-08-08&quot;:1.92},{&quot;2026-08-09&quot;:1.92},{&quot;2026-08-10&quot;:1.92},{&quot;2026-08-11&quot;:1.92},{&quot;2026-08-12&quot;:1.92},{&quot;2026-08-13&quot;:1.87},{&quot;2026-08-14&quot;:1.87},{&quot;2026-08-15&quot;:1.87},{&quot;2026-08-16&quot;:1.87},{&quot;2026-08-17&quot;:1.87},{&quot;2026-08-18&quot;:1.87},{&quot;2026-08-19&quot;:1.87},{&quot;2026-08-20&quot;:1.87},{&quot;2026-08-21&quot;:1.83},{&quot;2026-08-22&quot;:1.84},{&quot;2026-08-23&quot;:1.84},{&quot;2026-08-24&quot;:1.84},{&quot;2026-08-25&quot;:1.85},{&quot;2026-08-26&quot;:1.84},{&quot;2026-08-27&quot;:1.85},{&quot;2026-08-28&quot;:1.85},{&quot;2026-08-29&quot;:1.85},{&quot;2026-08-30&quot;:1.87},{&quot;2026-08-31&quot;:1.88},{&quot;2026-09-01&quot;:1.89},{&quot;2026-09-02&quot;:1.89},{&quot;2026-09-03&quot;:1.87},{&quot;2026-09-04&quot;:1.87},{&quot;2026-09-05&quot;:1.82},{&quot;2026-09-06&quot;:1.87},{&quot;2026-09-07&quot;:1.87},{&quot;2026-09-08&quot;:1.85},{&quot;2026-09-09&quot;:1.84},{&quot;2026-09-10&quot;:1.84},{&quot;2026-09-11&quot;:1.82}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:1.53},{&quot;2026-06-13&quot;:1.58},{&quot;2026-06-14&quot;:1.58},{&quot;2026-06-15&quot;:1.65},{&quot;2026-06-16&quot;:1.65},{&quot;2026-06-17&quot;:1.65},{&quot;2026-06-18&quot;:1.6},{&quot;2026-06-19&quot;:1.69},{&quot;2026-06-20&quot;:1.64},{&quot;2026-06-21&quot;:1.6},{&quot;2026-06-22&quot;:1.7},{&quot;2026-06-23&quot;:1.7},{&quot;2026-06-24&quot;:1.7},{&quot;2026-06-25&quot;:1.72},{&quot;2026-06-26&quot;:1.71},{&quot;2026-06-27&quot;:1.74},{&quot;2026-06-28&quot;:1.78},{&quot;2026-06-29&quot;:1.76},{&quot;2026-06-30&quot;:1.72},{&quot;2026-07-01&quot;:1.72},{&quot;2026-07-02&quot;:1.73},{&quot;2026-07-03&quot;:1.78},{&quot;2026-07-04&quot;:1.72},{&quot;2026-07-05&quot;:1.72},{&quot;2026-07-06&quot;:1.75},{&quot;2026-07-07&quot;:1.7},{&quot;2026-07-08&quot;:1.7},{&quot;2026-07-09&quot;:1.77},{&quot;2026-07-10&quot;:1.82},{&quot;2026-07-11&quot;:1.82},{&quot;2026-07-12&quot;:1.93},{&quot;2026-07-13&quot;:2.01},{&quot;2026-07-14&quot;:2.02},{&quot;2026-07-15&quot;:2.03},{&quot;2026-07-16&quot;:2.08},{&quot;2026-07-17&quot;:2.1},{&quot;2026-07-18&quot;:2.05},{&quot;2026-07-19&quot;:2.08},{&quot;2026-07-20&quot;:2.02},{&quot;2026-07-21&quot;:2.02},{&quot;2026-07-23&quot;:2.01},{&quot;2026-07-24&quot;:2.0},{&quot;2026-07-25&quot;:2.01},{&quot;2026-07-26&quot;:2.01},{&quot;2026-07-27&quot;:2.0},{&quot;2026-07-28&quot;:2.03},{&quot;2026-07-29&quot;:2.04},{&quot;2026-07-30&quot;:2.04},{&quot;2026-07-31&quot;:2.06},{&quot;2026-08-01&quot;:2.06},{&quot;2026-08-02&quot;:2.07},{&quot;2026-08-03&quot;:2.02},{&quot;2026-08-04&quot;:1.99},{&quot;2026-08-05&quot;:1.95},{&quot;2026-08-07&quot;:1.86},{&quot;2026-08-08&quot;:1.8},{&quot;2026-08-09&quot;:1.76},{&quot;2026-08-10&quot;:1.73},{&quot;2026-08-11&quot;:1.78},{&quot;2026-08-12&quot;:1.72},{&quot;2026-08-13&quot;:1.65},{&quot;2026-08-14&quot;:1.6},{&quot;2026-08-15&quot;:1.64},{&quot;2026-08-16&quot;:1.64},{&quot;2026-08-17&quot;:1.69},{&quot;2026-08-18&quot;:1.68},{&quot;2026-08-19&quot;:1.7},{&quot;2026-08-20&quot;:1.7},{&quot;2026-08-21&quot;:1.76},{&quot;2026-08-22&quot;:1.85},{&quot;2026-08-23&quot;:1.88},{&quot;2026-08-24&quot;:1.83},{&quot;2026-08-25&quot;:1.74},{&quot;2026-08-26&quot;:1.7},{&quot;2026-08-27&quot;:1.67},{&quot;2026-08-28&quot;:1.7},{&quot;2026-08-29&quot;:1.7},{&quot;2026-08-30&quot;:1.72},{&quot;2026-08-31&quot;:1.68},{&quot;2026-09-01&quot;:1.67},{&quot;2026-09-02&quot;:1.68},{&quot;2026-09-03&quot;:1.71},{&quot;2026-09-04&quot;:1.72},{&quot;2026-09-05&quot;:1.76},{&quot;2026-09-06&quot;:1.72},{&quot;2026-09-07&quot;:1.75},{&quot;2026-09-08&quot;:1.75},{&quot;2026-09-09&quot;:1.76},{&quot;2026-09-10&quot;:1.75},{&quot;2026-09-11&quot;:1.69}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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

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

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

        <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">
            Preordain
        </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-u'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Preordain" src="https://cards.scryfall.io/large/front/b/f/bfb3f489-d5b5-4121-a19d-b33c8b6c20ed.jpg?1783931798" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </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-13&quot;:1.46},{&quot;2026-06-14&quot;:1.45},{&quot;2026-06-15&quot;:1.45},{&quot;2026-06-16&quot;:1.45},{&quot;2026-06-17&quot;:1.45},{&quot;2026-06-18&quot;:1.45},{&quot;2026-06-19&quot;:1.45},{&quot;2026-06-20&quot;:1.45},{&quot;2026-06-21&quot;:1.45},{&quot;2026-06-22&quot;:1.45},{&quot;2026-06-23&quot;:1.45},{&quot;2026-06-24&quot;:1.45},{&quot;2026-06-25&quot;:1.45},{&quot;2026-06-26&quot;:1.45},{&quot;2026-06-27&quot;:1.45},{&quot;2026-06-28&quot;:1.48},{&quot;2026-06-29&quot;:1.48},{&quot;2026-06-30&quot;:1.48},{&quot;2026-07-01&quot;:1.48},{&quot;2026-07-02&quot;:1.48},{&quot;2026-07-03&quot;:1.48},{&quot;2026-07-04&quot;:1.48},{&quot;2026-07-05&quot;:1.48},{&quot;2026-07-06&quot;:1.61},{&quot;2026-07-07&quot;:1.61},{&quot;2026-07-08&quot;:1.61},{&quot;2026-07-09&quot;:1.61},{&quot;2026-07-10&quot;:1.61},{&quot;2026-07-11&quot;:1.64},{&quot;2026-07-12&quot;:1.69},{&quot;2026-07-13&quot;:1.69},{&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.66},{&quot;2026-07-18&quot;:1.66},{&quot;2026-07-19&quot;:1.66},{&quot;2026-07-20&quot;:1.66},{&quot;2026-07-21&quot;:1.66},{&quot;2026-07-22&quot;:1.66},{&quot;2026-07-23&quot;:1.66},{&quot;2026-07-24&quot;:1.66},{&quot;2026-07-25&quot;:1.66},{&quot;2026-07-26&quot;:1.66},{&quot;2026-07-27&quot;:1.6},{&quot;2026-07-28&quot;:1.6},{&quot;2026-07-29&quot;:1.6},{&quot;2026-07-30&quot;:1.6},{&quot;2026-07-31&quot;:1.6},{&quot;2026-08-01&quot;:1.6},{&quot;2026-08-02&quot;:1.6},{&quot;2026-08-03&quot;:1.6},{&quot;2026-08-04&quot;:1.6},{&quot;2026-08-05&quot;:1.6},{&quot;2026-08-07&quot;:1.6},{&quot;2026-08-08&quot;:1.58},{&quot;2026-08-09&quot;:1.6},{&quot;2026-08-10&quot;:1.6},{&quot;2026-08-11&quot;:1.6},{&quot;2026-08-12&quot;:1.64},{&quot;2026-08-13&quot;:1.65},{&quot;2026-08-14&quot;:1.65},{&quot;2026-08-15&quot;:1.65},{&quot;2026-08-16&quot;:1.65},{&quot;2026-08-17&quot;:1.65},{&quot;2026-08-18&quot;:1.65},{&quot;2026-08-19&quot;:1.65},{&quot;2026-08-20&quot;:1.65},{&quot;2026-08-21&quot;:1.67},{&quot;2026-08-22&quot;:1.67},{&quot;2026-08-23&quot;:1.67},{&quot;2026-08-24&quot;:1.67},{&quot;2026-08-25&quot;:1.67},{&quot;2026-08-26&quot;:1.67},{&quot;2026-08-27&quot;:1.67},{&quot;2026-08-28&quot;:1.67},{&quot;2026-08-29&quot;:1.67},{&quot;2026-08-30&quot;:1.65},{&quot;2026-08-31&quot;:1.65},{&quot;2026-09-01&quot;:1.65},{&quot;2026-09-02&quot;:1.65},{&quot;2026-09-03&quot;:1.65},{&quot;2026-09-04&quot;:1.65},{&quot;2026-09-05&quot;:1.65},{&quot;2026-09-06&quot;:1.65},{&quot;2026-09-07&quot;:1.65},{&quot;2026-09-08&quot;:1.65},{&quot;2026-09-09&quot;:1.65},{&quot;2026-09-10&quot;:1.65},{&quot;2026-09-11&quot;:1.65}]}"
        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="94859"
  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">
            Brainstorm
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $1.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="Brainstorm" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/1/c14f8bce-d5b3-4d01-8346-8a4923ec03d9.jpg?1783906385" />

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

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
          </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="Brainstorm" src="https://cards.scryfall.io/large/front/c/1/c14f8bce-d5b3-4d01-8346-8a4923ec03d9.jpg?1783906385" />
    </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.48
              </span>

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

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

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

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.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-13&quot;:5.0},{&quot;2026-06-14&quot;:5.03},{&quot;2026-06-15&quot;:4.96},{&quot;2026-06-16&quot;:5.13},{&quot;2026-06-17&quot;:5.13},{&quot;2026-06-18&quot;:5.13},{&quot;2026-06-19&quot;:5.18},{&quot;2026-06-20&quot;:5.18},{&quot;2026-06-21&quot;:5.24},{&quot;2026-06-22&quot;:5.16},{&quot;2026-06-23&quot;:5.15},{&quot;2026-06-24&quot;:5.15},{&quot;2026-06-25&quot;:5.15},{&quot;2026-06-26&quot;:5.15},{&quot;2026-06-27&quot;:5.15},{&quot;2026-06-28&quot;:5.19},{&quot;2026-06-29&quot;:5.19},{&quot;2026-06-30&quot;:5.19},{&quot;2026-07-01&quot;:5.24},{&quot;2026-07-02&quot;:5.27},{&quot;2026-07-03&quot;:5.21},{&quot;2026-07-04&quot;:5.12},{&quot;2026-07-05&quot;:5.04},{&quot;2026-07-06&quot;:5.04},{&quot;2026-07-07&quot;:5.04},{&quot;2026-07-08&quot;:5.04},{&quot;2026-07-09&quot;:5.04},{&quot;2026-07-10&quot;:5.04},{&quot;2026-07-11&quot;:5.04},{&quot;2026-07-12&quot;:5.03},{&quot;2026-07-13&quot;:5.03},{&quot;2026-07-14&quot;:5.02},{&quot;2026-07-15&quot;:4.95},{&quot;2026-07-16&quot;:4.98},{&quot;2026-07-17&quot;:4.98},{&quot;2026-07-18&quot;:5.08},{&quot;2026-07-19&quot;:5.08},{&quot;2026-07-20&quot;:5.06},{&quot;2026-07-21&quot;:5.06},{&quot;2026-07-22&quot;:5.06},{&quot;2026-07-23&quot;:5.04},{&quot;2026-07-24&quot;:5.04},{&quot;2026-07-25&quot;:5.09},{&quot;2026-07-26&quot;:5.07},{&quot;2026-07-27&quot;:5.07},{&quot;2026-07-28&quot;:5.17},{&quot;2026-07-29&quot;:5.14},{&quot;2026-07-30&quot;:5.24},{&quot;2026-07-31&quot;:5.16},{&quot;2026-08-01&quot;:5.16},{&quot;2026-08-02&quot;:5.15},{&quot;2026-08-03&quot;:5.17},{&quot;2026-08-04&quot;:5.21},{&quot;2026-08-05&quot;:4.99},{&quot;2026-08-07&quot;:4.98},{&quot;2026-08-08&quot;:5.06},{&quot;2026-08-09&quot;:5.1},{&quot;2026-08-10&quot;:5.1},{&quot;2026-08-11&quot;:5.1},{&quot;2026-08-12&quot;:5.1},{&quot;2026-08-13&quot;:5.14},{&quot;2026-08-14&quot;:5.41},{&quot;2026-08-15&quot;:5.48},{&quot;2026-08-16&quot;:5.47},{&quot;2026-08-17&quot;:5.47},{&quot;2026-08-18&quot;:5.53},{&quot;2026-08-19&quot;:5.53},{&quot;2026-08-20&quot;:5.44},{&quot;2026-08-21&quot;:5.44},{&quot;2026-08-22&quot;:5.46},{&quot;2026-08-23&quot;:5.44},{&quot;2026-08-24&quot;:5.44},{&quot;2026-08-25&quot;:5.44},{&quot;2026-08-26&quot;:5.44},{&quot;2026-08-27&quot;:5.52},{&quot;2026-08-28&quot;:5.52},{&quot;2026-08-29&quot;:5.52},{&quot;2026-08-30&quot;:5.58},{&quot;2026-08-31&quot;:5.62},{&quot;2026-09-01&quot;:5.57},{&quot;2026-09-02&quot;:5.57},{&quot;2026-09-03&quot;:5.57},{&quot;2026-09-04&quot;:5.59},{&quot;2026-09-05&quot;:5.59},{&quot;2026-09-06&quot;:5.52},{&quot;2026-09-07&quot;:5.53},{&quot;2026-09-08&quot;:5.53},{&quot;2026-09-09&quot;:5.55},{&quot;2026-09-10&quot;:5.54},{&quot;2026-09-11&quot;:5.54}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.22},{&quot;2026-06-14&quot;:1.26},{&quot;2026-06-15&quot;:1.19},{&quot;2026-06-16&quot;:1.15},{&quot;2026-06-17&quot;:1.13},{&quot;2026-06-18&quot;:1.15},{&quot;2026-06-19&quot;:1.06},{&quot;2026-06-20&quot;:1.11},{&quot;2026-06-21&quot;:1.06},{&quot;2026-06-22&quot;:1.09},{&quot;2026-06-23&quot;:1.26},{&quot;2026-06-24&quot;:1.23},{&quot;2026-06-25&quot;:1.37},{&quot;2026-06-26&quot;:1.35},{&quot;2026-06-27&quot;:1.3},{&quot;2026-06-28&quot;:1.29},{&quot;2026-06-29&quot;:1.28},{&quot;2026-06-30&quot;:1.27},{&quot;2026-07-01&quot;:1.19},{&quot;2026-07-02&quot;:1.26},{&quot;2026-07-03&quot;:1.2},{&quot;2026-07-04&quot;:1.46},{&quot;2026-07-05&quot;:1.39},{&quot;2026-07-06&quot;:1.37},{&quot;2026-07-07&quot;:1.44},{&quot;2026-07-08&quot;:1.28},{&quot;2026-07-09&quot;:1.41},{&quot;2026-07-10&quot;:1.5},{&quot;2026-07-11&quot;:1.39},{&quot;2026-07-12&quot;:1.34},{&quot;2026-07-13&quot;:1.42},{&quot;2026-07-14&quot;:1.28},{&quot;2026-07-15&quot;:1.26},{&quot;2026-07-16&quot;:1.28},{&quot;2026-07-17&quot;:1.27},{&quot;2026-07-18&quot;:1.28},{&quot;2026-07-19&quot;:1.13},{&quot;2026-07-20&quot;:1.1},{&quot;2026-07-21&quot;:1.07},{&quot;2026-07-22&quot;:1.12},{&quot;2026-07-23&quot;:1.19},{&quot;2026-07-24&quot;:1.24},{&quot;2026-07-25&quot;:1.24},{&quot;2026-07-26&quot;:1.24},{&quot;2026-07-27&quot;:1.28},{&quot;2026-07-28&quot;:1.24},{&quot;2026-07-29&quot;:1.34},{&quot;2026-07-30&quot;:1.31},{&quot;2026-07-31&quot;:1.3},{&quot;2026-08-01&quot;:1.3},{&quot;2026-08-02&quot;:1.44},{&quot;2026-08-03&quot;:1.54},{&quot;2026-08-04&quot;:1.49},{&quot;2026-08-05&quot;:1.59},{&quot;2026-08-07&quot;:1.76},{&quot;2026-08-08&quot;:1.95},{&quot;2026-08-09&quot;:2.12},{&quot;2026-08-10&quot;:2.14},{&quot;2026-08-11&quot;:2.0},{&quot;2026-08-12&quot;:1.67},{&quot;2026-08-13&quot;:1.53},{&quot;2026-08-14&quot;:1.55},{&quot;2026-08-15&quot;:1.67},{&quot;2026-08-16&quot;:1.48},{&quot;2026-08-17&quot;:1.25},{&quot;2026-08-18&quot;:1.26},{&quot;2026-08-19&quot;:1.39},{&quot;2026-08-20&quot;:1.32},{&quot;2026-08-21&quot;:1.37},{&quot;2026-08-22&quot;:1.67},{&quot;2026-08-23&quot;:1.68},{&quot;2026-08-24&quot;:1.76},{&quot;2026-08-25&quot;:1.83},{&quot;2026-08-26&quot;:1.99},{&quot;2026-08-27&quot;:1.91},{&quot;2026-08-28&quot;:1.81},{&quot;2026-08-29&quot;:1.81},{&quot;2026-08-30&quot;:1.66},{&quot;2026-08-31&quot;:1.68},{&quot;2026-09-01&quot;:1.65},{&quot;2026-09-02&quot;:1.68},{&quot;2026-09-03&quot;:1.95},{&quot;2026-09-04&quot;:1.74},{&quot;2026-09-05&quot;:1.55},{&quot;2026-09-06&quot;:1.52},{&quot;2026-09-07&quot;:1.28},{&quot;2026-09-08&quot;:1.34},{&quot;2026-09-09&quot;:1.44},{&quot;2026-09-10&quot;:1.53},{&quot;2026-09-11&quot;:1.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="19429"
  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">
            Thran Portal
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $1.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 Portal" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/e/b/eba2995e-f255-46da-abcf-9a6f3996edb1.jpg?1783921181" />

        <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 Portal
        </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 — Gate</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="Thran Portal" src="https://cards.scryfall.io/large/front/e/b/eba2995e-f255-46da-abcf-9a6f3996edb1.jpg?1783921181" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $1.25
              </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.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-11&quot;:1.19},{&quot;2026-06-12&quot;:1.19},{&quot;2026-06-13&quot;:1.19},{&quot;2026-06-14&quot;:1.19},{&quot;2026-06-15&quot;:1.19},{&quot;2026-06-16&quot;:1.19},{&quot;2026-06-17&quot;:1.19},{&quot;2026-06-18&quot;:1.19},{&quot;2026-06-19&quot;:1.2},{&quot;2026-06-20&quot;:1.2},{&quot;2026-06-21&quot;:1.21},{&quot;2026-06-22&quot;:1.21},{&quot;2026-06-23&quot;:1.21},{&quot;2026-06-24&quot;:1.21},{&quot;2026-06-25&quot;:1.21},{&quot;2026-06-26&quot;:1.21},{&quot;2026-06-27&quot;:1.22},{&quot;2026-06-28&quot;:1.22},{&quot;2026-06-29&quot;:1.22},{&quot;2026-06-30&quot;:1.22},{&quot;2026-07-01&quot;:1.22},{&quot;2026-07-02&quot;:1.23},{&quot;2026-07-03&quot;:1.22},{&quot;2026-07-04&quot;:1.22},{&quot;2026-07-05&quot;:1.22},{&quot;2026-07-06&quot;:1.22},{&quot;2026-07-07&quot;:1.22},{&quot;2026-07-08&quot;:1.22},{&quot;2026-07-09&quot;:1.22},{&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.26},{&quot;2026-07-14&quot;:1.26},{&quot;2026-07-15&quot;:1.24},{&quot;2026-07-16&quot;:1.24},{&quot;2026-07-17&quot;:1.24},{&quot;2026-07-18&quot;:1.21},{&quot;2026-07-19&quot;:1.21},{&quot;2026-07-20&quot;:1.21},{&quot;2026-07-21&quot;:1.21},{&quot;2026-07-23&quot;:1.21},{&quot;2026-07-25&quot;:1.21},{&quot;2026-07-26&quot;:1.21},{&quot;2026-07-27&quot;:1.21},{&quot;2026-07-28&quot;:1.21},{&quot;2026-07-29&quot;:1.21},{&quot;2026-07-30&quot;:1.21},{&quot;2026-07-31&quot;:1.21},{&quot;2026-08-01&quot;:1.21},{&quot;2026-08-02&quot;:1.21},{&quot;2026-08-03&quot;:1.21},{&quot;2026-08-04&quot;:1.21},{&quot;2026-08-05&quot;:1.21},{&quot;2026-08-07&quot;:1.21},{&quot;2026-08-08&quot;:1.2},{&quot;2026-08-09&quot;:1.21},{&quot;2026-08-10&quot;:1.22},{&quot;2026-08-11&quot;:1.22},{&quot;2026-08-12&quot;:1.23},{&quot;2026-08-13&quot;:1.23},{&quot;2026-08-14&quot;:1.23},{&quot;2026-08-15&quot;:1.23},{&quot;2026-08-16&quot;:1.23},{&quot;2026-08-17&quot;:1.23},{&quot;2026-08-18&quot;:1.23},{&quot;2026-08-19&quot;:1.23},{&quot;2026-08-20&quot;:1.23},{&quot;2026-08-21&quot;:1.23},{&quot;2026-08-22&quot;:1.23},{&quot;2026-08-23&quot;:1.22},{&quot;2026-08-24&quot;:1.22},{&quot;2026-08-25&quot;:1.22},{&quot;2026-08-26&quot;:1.23},{&quot;2026-08-27&quot;:1.23},{&quot;2026-08-28&quot;:1.23},{&quot;2026-08-29&quot;:1.23},{&quot;2026-08-30&quot;:1.23},{&quot;2026-08-31&quot;:1.23},{&quot;2026-09-01&quot;:1.23},{&quot;2026-09-02&quot;:1.25},{&quot;2026-09-03&quot;:1.25},{&quot;2026-09-04&quot;:1.27},{&quot;2026-09-05&quot;:1.27},{&quot;2026-09-06&quot;:1.27},{&quot;2026-09-07&quot;:1.27},{&quot;2026-09-08&quot;:1.27},{&quot;2026-09-09&quot;:1.27},{&quot;2026-09-10&quot;:1.25},{&quot;2026-09-11&quot;:1.25}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:1.08},{&quot;2026-06-12&quot;:1.06},{&quot;2026-06-13&quot;:1.06},{&quot;2026-06-14&quot;:1.06},{&quot;2026-06-15&quot;:1.06},{&quot;2026-06-16&quot;:1.04},{&quot;2026-06-17&quot;:1.04},{&quot;2026-06-18&quot;:1.04},{&quot;2026-06-19&quot;:1.0},{&quot;2026-06-20&quot;:1.0},{&quot;2026-06-21&quot;:1.01},{&quot;2026-06-22&quot;:1.01},{&quot;2026-06-23&quot;:1.01},{&quot;2026-06-24&quot;:1.01},{&quot;2026-06-25&quot;:1.01},{&quot;2026-06-26&quot;:1.01},{&quot;2026-06-27&quot;:1.01},{&quot;2026-06-28&quot;:1.01},{&quot;2026-06-29&quot;:1.01},{&quot;2026-06-30&quot;:1.01},{&quot;2026-07-01&quot;:1.01},{&quot;2026-07-02&quot;:1.01},{&quot;2026-07-03&quot;:1.01},{&quot;2026-07-04&quot;:1.01},{&quot;2026-07-05&quot;:1.01},{&quot;2026-07-06&quot;:1.0},{&quot;2026-07-07&quot;:0.97},{&quot;2026-07-08&quot;:0.99},{&quot;2026-07-09&quot;:0.99},{&quot;2026-07-10&quot;:0.99},{&quot;2026-07-11&quot;:0.99},{&quot;2026-07-12&quot;:0.99},{&quot;2026-07-13&quot;:1.0},{&quot;2026-07-14&quot;:1.0},{&quot;2026-07-15&quot;:1.0},{&quot;2026-07-16&quot;:1.0},{&quot;2026-07-17&quot;:1.0},{&quot;2026-07-18&quot;:1.0},{&quot;2026-07-19&quot;:1.0},{&quot;2026-07-20&quot;:1.0},{&quot;2026-07-21&quot;:1.0},{&quot;2026-07-23&quot;:1.01},{&quot;2026-07-25&quot;:1.01},{&quot;2026-07-26&quot;:1.01},{&quot;2026-07-27&quot;:0.98},{&quot;2026-07-28&quot;:0.98},{&quot;2026-07-29&quot;:0.98},{&quot;2026-07-30&quot;:0.96},{&quot;2026-07-31&quot;:0.96},{&quot;2026-08-01&quot;:0.96},{&quot;2026-08-02&quot;:0.95},{&quot;2026-08-03&quot;:0.95},{&quot;2026-08-04&quot;:1.0},{&quot;2026-08-05&quot;:1.0},{&quot;2026-08-07&quot;:1.0},{&quot;2026-08-08&quot;:1.02},{&quot;2026-08-09&quot;:1.02},{&quot;2026-08-10&quot;:1.02},{&quot;2026-08-11&quot;:1.02},{&quot;2026-08-12&quot;:1.04},{&quot;2026-08-13&quot;:1.04},{&quot;2026-08-14&quot;:1.02},{&quot;2026-08-15&quot;:1.06},{&quot;2026-08-16&quot;:1.06},{&quot;2026-08-17&quot;:1.07},{&quot;2026-08-18&quot;:1.08},{&quot;2026-08-19&quot;:1.08},{&quot;2026-08-20&quot;:1.08},{&quot;2026-08-21&quot;:1.08},{&quot;2026-08-22&quot;:1.08},{&quot;2026-08-23&quot;:1.08},{&quot;2026-08-24&quot;:1.08},{&quot;2026-08-25&quot;:1.08},{&quot;2026-08-26&quot;:1.08},{&quot;2026-08-27&quot;:1.08},{&quot;2026-08-28&quot;:1.08},{&quot;2026-08-29&quot;:1.08},{&quot;2026-08-30&quot;:1.08},{&quot;2026-08-31&quot;:1.08},{&quot;2026-09-01&quot;:1.08},{&quot;2026-09-02&quot;:1.08},{&quot;2026-09-03&quot;:1.08},{&quot;2026-09-04&quot;:1.09},{&quot;2026-09-05&quot;:1.09},{&quot;2026-09-06&quot;:1.16},{&quot;2026-09-07&quot;:1.2},{&quot;2026-09-08&quot;:1.2},{&quot;2026-09-09&quot;:1.2},{&quot;2026-09-10&quot;:1.2},{&quot;2026-09-11&quot;:1.2}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="28921"
  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">
            Fellwar Stone
        </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">
              ↓
              6%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.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="Fellwar Stone" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/7/07be53ef-c7b7-44fe-9754-b76871c6b55f.jpg?1783926170" />

        <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">
            Fellwar Stone
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Fellwar Stone" src="https://cards.scryfall.io/large/front/0/7/07be53ef-c7b7-44fe-9754-b76871c6b55f.jpg?1783926170" />
    </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.98
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:1.36},{&quot;2026-06-11&quot;:1.35},{&quot;2026-06-12&quot;:1.35},{&quot;2026-06-13&quot;:1.38},{&quot;2026-06-14&quot;:1.4},{&quot;2026-06-15&quot;:1.4},{&quot;2026-06-16&quot;:1.38},{&quot;2026-06-17&quot;:1.38},{&quot;2026-06-18&quot;:1.34},{&quot;2026-06-19&quot;:1.31},{&quot;2026-06-20&quot;:1.31},{&quot;2026-06-21&quot;:1.31},{&quot;2026-06-22&quot;:1.29},{&quot;2026-06-23&quot;:1.29},{&quot;2026-06-24&quot;:1.25},{&quot;2026-06-25&quot;:1.25},{&quot;2026-06-26&quot;:1.25},{&quot;2026-06-27&quot;:1.22},{&quot;2026-06-28&quot;:1.19},{&quot;2026-06-29&quot;:1.2},{&quot;2026-06-30&quot;:1.2},{&quot;2026-07-01&quot;:1.2},{&quot;2026-07-02&quot;:1.2},{&quot;2026-07-03&quot;:1.15},{&quot;2026-07-04&quot;:1.15},{&quot;2026-07-05&quot;:1.12},{&quot;2026-07-06&quot;:1.12},{&quot;2026-07-07&quot;:1.12},{&quot;2026-07-08&quot;:1.12},{&quot;2026-07-09&quot;:1.06},{&quot;2026-07-10&quot;:1.06},{&quot;2026-07-11&quot;:1.02},{&quot;2026-07-12&quot;:0.98},{&quot;2026-07-13&quot;:0.98},{&quot;2026-07-14&quot;:0.94},{&quot;2026-07-15&quot;:0.94},{&quot;2026-07-16&quot;:0.92},{&quot;2026-07-17&quot;:0.9},{&quot;2026-07-18&quot;:0.9},{&quot;2026-07-19&quot;:0.85},{&quot;2026-07-20&quot;:0.86},{&quot;2026-07-21&quot;:0.86},{&quot;2026-07-23&quot;:0.95},{&quot;2026-07-25&quot;:0.93},{&quot;2026-07-26&quot;:0.92},{&quot;2026-07-27&quot;:0.94},{&quot;2026-07-29&quot;:0.94},{&quot;2026-07-30&quot;:0.93},{&quot;2026-07-31&quot;:0.93},{&quot;2026-08-01&quot;:0.93},{&quot;2026-08-02&quot;:0.93},{&quot;2026-08-03&quot;:0.93},{&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.98},{&quot;2026-08-09&quot;:0.98},{&quot;2026-08-10&quot;:0.99},{&quot;2026-08-11&quot;:1.0},{&quot;2026-08-12&quot;:1.0},{&quot;2026-08-13&quot;:1.0},{&quot;2026-08-14&quot;:0.99},{&quot;2026-08-15&quot;:1.0},{&quot;2026-08-16&quot;:0.98},{&quot;2026-08-17&quot;:0.98},{&quot;2026-08-18&quot;:1.01},{&quot;2026-08-19&quot;:1.01},{&quot;2026-08-20&quot;:1.01},{&quot;2026-08-21&quot;:1.01},{&quot;2026-08-22&quot;:1.04},{&quot;2026-08-23&quot;:1.04},{&quot;2026-08-24&quot;:1.03},{&quot;2026-08-25&quot;:1.03},{&quot;2026-08-26&quot;:1.01},{&quot;2026-08-27&quot;:1.01},{&quot;2026-08-28&quot;:1.02},{&quot;2026-08-29&quot;:1.02},{&quot;2026-08-30&quot;:1.03},{&quot;2026-08-31&quot;:1.03},{&quot;2026-09-01&quot;:1.03},{&quot;2026-09-02&quot;:1.04},{&quot;2026-09-03&quot;:1.04},{&quot;2026-09-04&quot;:1.04},{&quot;2026-09-05&quot;:1.04},{&quot;2026-09-06&quot;:1.04},{&quot;2026-09-07&quot;:1.01},{&quot;2026-09-08&quot;:1.01},{&quot;2026-09-09&quot;:0.99},{&quot;2026-09-10&quot;:0.99},{&quot;2026-09-11&quot;:0.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="79915"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-common ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.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="Skyshroud Claim" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/9/b946e86c-a6fd-4377-9746-bc08b71e499a.jpg?1783910198" />

        <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">
            Skyshroud Claim
        </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-3'></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="Skyshroud Claim" src="https://cards.scryfall.io/large/front/b/9/b946e86c-a6fd-4377-9746-bc08b71e499a.jpg?1783910198" />
    </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.98
              </span>

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

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$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;normal&quot;:[{&quot;2026-06-13&quot;:0.87},{&quot;2026-06-14&quot;:0.87},{&quot;2026-06-15&quot;:0.86},{&quot;2026-06-16&quot;:0.85},{&quot;2026-06-17&quot;:0.85},{&quot;2026-06-18&quot;:0.84},{&quot;2026-06-19&quot;:0.84},{&quot;2026-06-20&quot;:0.85},{&quot;2026-06-21&quot;:0.85},{&quot;2026-06-22&quot;:0.85},{&quot;2026-06-23&quot;:0.85},{&quot;2026-06-24&quot;:0.85},{&quot;2026-06-25&quot;:0.85},{&quot;2026-06-26&quot;:0.85},{&quot;2026-06-27&quot;:0.84},{&quot;2026-06-28&quot;:0.83},{&quot;2026-06-29&quot;:0.83},{&quot;2026-06-30&quot;:0.83},{&quot;2026-07-01&quot;:0.83},{&quot;2026-07-02&quot;:0.83},{&quot;2026-07-03&quot;:0.84},{&quot;2026-07-04&quot;:0.84},{&quot;2026-07-05&quot;:0.84},{&quot;2026-07-06&quot;:0.84},{&quot;2026-07-07&quot;:0.83},{&quot;2026-07-08&quot;:0.85},{&quot;2026-07-09&quot;:0.84},{&quot;2026-07-10&quot;:0.84},{&quot;2026-07-11&quot;:0.83},{&quot;2026-07-12&quot;:0.83},{&quot;2026-07-13&quot;:0.86},{&quot;2026-07-14&quot;:0.86},{&quot;2026-07-15&quot;:0.86},{&quot;2026-07-16&quot;:0.84},{&quot;2026-07-17&quot;:0.82},{&quot;2026-07-18&quot;:0.82},{&quot;2026-07-19&quot;:0.82},{&quot;2026-07-20&quot;:0.83},{&quot;2026-07-21&quot;:0.84},{&quot;2026-07-22&quot;:0.84},{&quot;2026-07-23&quot;:0.84},{&quot;2026-07-24&quot;:0.84},{&quot;2026-07-25&quot;:0.82},{&quot;2026-07-26&quot;:0.82},{&quot;2026-07-27&quot;:0.82},{&quot;2026-07-28&quot;:0.83},{&quot;2026-07-29&quot;:0.83},{&quot;2026-07-30&quot;:0.8},{&quot;2026-07-31&quot;:0.81},{&quot;2026-08-01&quot;:0.8},{&quot;2026-08-02&quot;:0.81},{&quot;2026-08-03&quot;:0.82},{&quot;2026-08-04&quot;:0.81},{&quot;2026-08-05&quot;:0.83},{&quot;2026-08-07&quot;:0.82},{&quot;2026-08-08&quot;:0.8},{&quot;2026-08-09&quot;:0.81},{&quot;2026-08-10&quot;:0.81},{&quot;2026-08-11&quot;:0.8},{&quot;2026-08-12&quot;:0.8},{&quot;2026-08-13&quot;:0.78},{&quot;2026-08-14&quot;:0.75},{&quot;2026-08-15&quot;:0.75},{&quot;2026-08-16&quot;:0.74},{&quot;2026-08-17&quot;:0.74},{&quot;2026-08-18&quot;:0.75},{&quot;2026-08-19&quot;:0.75},{&quot;2026-08-20&quot;:0.73},{&quot;2026-08-21&quot;:0.73},{&quot;2026-08-22&quot;:0.75},{&quot;2026-08-23&quot;:0.78},{&quot;2026-08-24&quot;:0.78},{&quot;2026-08-25&quot;:0.77},{&quot;2026-08-26&quot;:0.78},{&quot;2026-08-27&quot;:0.76},{&quot;2026-08-28&quot;:0.77},{&quot;2026-08-29&quot;:0.77},{&quot;2026-08-30&quot;:0.79},{&quot;2026-08-31&quot;:0.75},{&quot;2026-09-01&quot;:0.78},{&quot;2026-09-02&quot;:0.78},{&quot;2026-09-03&quot;:0.8},{&quot;2026-09-04&quot;:0.96},{&quot;2026-09-05&quot;:0.97},{&quot;2026-09-06&quot;:0.97},{&quot;2026-09-07&quot;:0.97},{&quot;2026-09-08&quot;:0.99},{&quot;2026-09-09&quot;:0.99},{&quot;2026-09-10&quot;:0.98},{&quot;2026-09-11&quot;:0.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="89513"
  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">
            Circuitous Route
        </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">
              ↓
              2%
            </span>

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

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

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

        <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">
            Circuitous Route
        </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-3'></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="Circuitous Route" src="https://cards.scryfall.io/large/front/6/1/6130036c-2cb7-4216-9bfe-0b751d653529.jpg?1783929471" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="10343"
  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-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">
            Sakura-Tribe Elder
        </span>


      </div>

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

          <span class="text-sm font-medium text-nine-white">
            $0.52
          </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="Sakura-Tribe Elder" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/1/114328dd-6c4f-4b6b-b9b7-dfa8c9b79495.jpg?1783932742" />

        <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">
            Sakura-Tribe Elder
        </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 — Snake Shaman</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="Sakura-Tribe Elder" src="https://cards.scryfall.io/large/front/1/1/114328dd-6c4f-4b6b-b9b7-dfa8c9b79495.jpg?1783932742" />
    </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.52
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-11&quot;:0.41},{&quot;2026-06-12&quot;:0.41},{&quot;2026-06-13&quot;:0.41},{&quot;2026-06-14&quot;:0.41},{&quot;2026-06-15&quot;:0.4},{&quot;2026-06-16&quot;:0.4},{&quot;2026-06-17&quot;:0.4},{&quot;2026-06-18&quot;:0.45},{&quot;2026-06-19&quot;:0.45},{&quot;2026-06-20&quot;:0.45},{&quot;2026-06-21&quot;:0.45},{&quot;2026-06-22&quot;:0.45},{&quot;2026-06-23&quot;:0.44},{&quot;2026-06-24&quot;:0.44},{&quot;2026-06-25&quot;:0.45},{&quot;2026-06-26&quot;:0.39},{&quot;2026-06-27&quot;:0.39},{&quot;2026-06-28&quot;:0.4},{&quot;2026-06-29&quot;:0.41},{&quot;2026-06-30&quot;:0.43},{&quot;2026-07-01&quot;:0.43},{&quot;2026-07-02&quot;:0.43},{&quot;2026-07-03&quot;:0.43},{&quot;2026-07-04&quot;:0.43},{&quot;2026-07-05&quot;:0.43},{&quot;2026-07-06&quot;:0.42},{&quot;2026-07-07&quot;:0.42},{&quot;2026-07-08&quot;:0.43},{&quot;2026-07-09&quot;:0.45},{&quot;2026-07-10&quot;:0.44},{&quot;2026-07-11&quot;:0.43},{&quot;2026-07-12&quot;:0.42},{&quot;2026-07-13&quot;:0.42},{&quot;2026-07-14&quot;:0.4},{&quot;2026-07-15&quot;:0.73},{&quot;2026-07-16&quot;:0.77},{&quot;2026-07-17&quot;:0.77},{&quot;2026-07-18&quot;:0.83},{&quot;2026-07-19&quot;:0.82},{&quot;2026-07-20&quot;:0.86},{&quot;2026-07-21&quot;:0.85},{&quot;2026-07-23&quot;:0.85},{&quot;2026-07-25&quot;:0.85},{&quot;2026-07-26&quot;:0.86},{&quot;2026-07-27&quot;:0.86},{&quot;2026-07-28&quot;:0.61},{&quot;2026-07-29&quot;:0.58},{&quot;2026-07-30&quot;:0.55},{&quot;2026-07-31&quot;:0.58},{&quot;2026-08-01&quot;:0.58},{&quot;2026-08-02&quot;:0.58},{&quot;2026-08-03&quot;:0.58},{&quot;2026-08-04&quot;:0.57},{&quot;2026-08-05&quot;:0.59},{&quot;2026-08-07&quot;:0.57},{&quot;2026-08-08&quot;:0.57},{&quot;2026-08-09&quot;:0.58},{&quot;2026-08-10&quot;:0.58},{&quot;2026-08-11&quot;:0.59},{&quot;2026-08-12&quot;:0.6},{&quot;2026-08-13&quot;:0.6},{&quot;2026-08-14&quot;:0.6},{&quot;2026-08-15&quot;:0.6},{&quot;2026-08-16&quot;:0.6},{&quot;2026-08-17&quot;:0.6},{&quot;2026-08-18&quot;:0.6},{&quot;2026-08-19&quot;:0.6},{&quot;2026-08-20&quot;:0.6},{&quot;2026-08-21&quot;:0.57},{&quot;2026-08-22&quot;:0.56},{&quot;2026-08-23&quot;:0.56},{&quot;2026-08-24&quot;:0.57},{&quot;2026-08-25&quot;:0.57},{&quot;2026-08-26&quot;:0.56},{&quot;2026-08-27&quot;:0.56},{&quot;2026-08-28&quot;:0.57},{&quot;2026-08-29&quot;:0.57},{&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.58},{&quot;2026-09-03&quot;:0.59},{&quot;2026-09-04&quot;:0.59},{&quot;2026-09-05&quot;:0.59},{&quot;2026-09-06&quot;:0.59},{&quot;2026-09-07&quot;:0.58},{&quot;2026-09-08&quot;:0.53},{&quot;2026-09-09&quot;:0.53},{&quot;2026-09-10&quot;:0.54},{&quot;2026-09-11&quot;:0.52}]}"
        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="12421"
  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-common ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Command Tower" src="https://cards.scryfall.io/large/front/8/6/86424491-a372-40c4-bfb5-faa2b2d41d4c.jpg?1783928742" />
    </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.32
              </span>

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $0.49
              </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.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-10&quot;:0.56},{&quot;2026-06-11&quot;:0.54},{&quot;2026-06-12&quot;:0.55},{&quot;2026-06-13&quot;:0.55},{&quot;2026-06-14&quot;:0.55},{&quot;2026-06-15&quot;:0.53},{&quot;2026-06-16&quot;:0.53},{&quot;2026-06-17&quot;:0.53},{&quot;2026-06-18&quot;:0.53},{&quot;2026-06-19&quot;:0.53},{&quot;2026-06-20&quot;:0.53},{&quot;2026-06-21&quot;:0.53},{&quot;2026-06-22&quot;:0.53},{&quot;2026-06-23&quot;:0.53},{&quot;2026-06-24&quot;:0.53},{&quot;2026-06-25&quot;:0.54},{&quot;2026-06-26&quot;:0.54},{&quot;2026-06-27&quot;:0.54},{&quot;2026-06-28&quot;:0.53},{&quot;2026-06-29&quot;:0.53},{&quot;2026-06-30&quot;:0.53},{&quot;2026-07-01&quot;:0.53},{&quot;2026-07-02&quot;:0.53},{&quot;2026-07-03&quot;:0.53},{&quot;2026-07-04&quot;:0.53},{&quot;2026-07-05&quot;:0.53},{&quot;2026-07-06&quot;:0.53},{&quot;2026-07-07&quot;:0.53},{&quot;2026-07-08&quot;:0.53},{&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.53},{&quot;2026-07-13&quot;:0.54},{&quot;2026-07-14&quot;:0.54},{&quot;2026-07-15&quot;:0.55},{&quot;2026-07-16&quot;:0.54},{&quot;2026-07-17&quot;:0.54},{&quot;2026-07-18&quot;:0.54},{&quot;2026-07-19&quot;:0.54},{&quot;2026-07-20&quot;:0.54},{&quot;2026-07-21&quot;:0.54},{&quot;2026-07-23&quot;:0.54},{&quot;2026-07-25&quot;:0.55},{&quot;2026-07-26&quot;:0.56},{&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.56},{&quot;2026-08-01&quot;:0.56},{&quot;2026-08-02&quot;:0.56},{&quot;2026-08-03&quot;:0.56},{&quot;2026-08-04&quot;:0.56},{&quot;2026-08-05&quot;:0.55},{&quot;2026-08-07&quot;:0.55},{&quot;2026-08-08&quot;:0.55},{&quot;2026-08-09&quot;:0.55},{&quot;2026-08-10&quot;:0.55},{&quot;2026-08-11&quot;:0.53},{&quot;2026-08-12&quot;:0.53},{&quot;2026-08-13&quot;:0.53},{&quot;2026-08-14&quot;:0.54},{&quot;2026-08-15&quot;:0.54},{&quot;2026-08-16&quot;:0.52},{&quot;2026-08-17&quot;:0.52},{&quot;2026-08-18&quot;:0.52},{&quot;2026-08-19&quot;:0.54},{&quot;2026-08-20&quot;:0.54},{&quot;2026-08-21&quot;:0.54},{&quot;2026-08-22&quot;:0.54},{&quot;2026-08-23&quot;:0.54},{&quot;2026-08-24&quot;:0.54},{&quot;2026-08-25&quot;:0.54},{&quot;2026-08-26&quot;:0.54},{&quot;2026-08-27&quot;:0.54},{&quot;2026-08-28&quot;:0.53},{&quot;2026-08-29&quot;:0.53},{&quot;2026-08-30&quot;:0.51},{&quot;2026-08-31&quot;:0.5},{&quot;2026-09-01&quot;:0.5},{&quot;2026-09-02&quot;:0.5},{&quot;2026-09-03&quot;:0.5},{&quot;2026-09-04&quot;:0.5},{&quot;2026-09-05&quot;:0.5},{&quot;2026-09-06&quot;:0.5},{&quot;2026-09-07&quot;:0.5},{&quot;2026-09-08&quot;:0.5},{&quot;2026-09-09&quot;:0.5},{&quot;2026-09-10&quot;:0.5},{&quot;2026-09-11&quot;:0.49}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:0.3},{&quot;2026-06-11&quot;:0.31},{&quot;2026-06-12&quot;:0.31},{&quot;2026-06-13&quot;:0.3},{&quot;2026-06-14&quot;:0.3},{&quot;2026-06-15&quot;:0.3},{&quot;2026-06-16&quot;:0.29},{&quot;2026-06-17&quot;:0.28},{&quot;2026-06-18&quot;:0.31},{&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.34},{&quot;2026-06-23&quot;:0.35},{&quot;2026-06-24&quot;:0.35},{&quot;2026-06-25&quot;:0.36},{&quot;2026-06-26&quot;:0.36},{&quot;2026-06-27&quot;:0.36},{&quot;2026-06-28&quot;:0.36},{&quot;2026-06-29&quot;:0.36},{&quot;2026-06-30&quot;:0.36},{&quot;2026-07-01&quot;:0.36},{&quot;2026-07-02&quot;:0.35},{&quot;2026-07-03&quot;:0.36},{&quot;2026-07-04&quot;:0.36},{&quot;2026-07-05&quot;:0.35},{&quot;2026-07-06&quot;:0.34},{&quot;2026-07-07&quot;:0.34},{&quot;2026-07-08&quot;:0.34},{&quot;2026-07-09&quot;:0.32},{&quot;2026-07-10&quot;:0.33},{&quot;2026-07-11&quot;:0.34},{&quot;2026-07-12&quot;:0.34},{&quot;2026-07-13&quot;:0.35},{&quot;2026-07-14&quot;:0.35},{&quot;2026-07-15&quot;:0.35},{&quot;2026-07-16&quot;:0.34},{&quot;2026-07-17&quot;:0.34},{&quot;2026-07-18&quot;:0.34},{&quot;2026-07-19&quot;:0.34},{&quot;2026-07-20&quot;:0.34},{&quot;2026-07-21&quot;:0.35},{&quot;2026-07-23&quot;:0.34},{&quot;2026-07-25&quot;:0.33},{&quot;2026-07-26&quot;:0.33},{&quot;2026-07-27&quot;:0.32},{&quot;2026-07-29&quot;:0.3},{&quot;2026-07-30&quot;:0.3},{&quot;2026-07-31&quot;:0.28},{&quot;2026-08-01&quot;:0.27},{&quot;2026-08-02&quot;:0.27},{&quot;2026-08-03&quot;:0.27},{&quot;2026-08-04&quot;:0.26},{&quot;2026-08-05&quot;:0.28},{&quot;2026-08-07&quot;:0.3},{&quot;2026-08-08&quot;:0.31},{&quot;2026-08-09&quot;:0.31},{&quot;2026-08-10&quot;:0.34},{&quot;2026-08-11&quot;:0.34},{&quot;2026-08-12&quot;:0.35},{&quot;2026-08-13&quot;:0.35},{&quot;2026-08-14&quot;:0.36},{&quot;2026-08-15&quot;:0.38},{&quot;2026-08-16&quot;:0.37},{&quot;2026-08-17&quot;:0.37},{&quot;2026-08-18&quot;:0.37},{&quot;2026-08-19&quot;:0.37},{&quot;2026-08-20&quot;:0.37},{&quot;2026-08-21&quot;:0.37},{&quot;2026-08-22&quot;:0.38},{&quot;2026-08-23&quot;:0.37},{&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.35},{&quot;2026-08-28&quot;:0.35},{&quot;2026-08-29&quot;:0.35},{&quot;2026-08-30&quot;:0.34},{&quot;2026-08-31&quot;:0.34},{&quot;2026-09-01&quot;:0.34},{&quot;2026-09-02&quot;:0.35},{&quot;2026-09-03&quot;:0.34},{&quot;2026-09-04&quot;:0.34},{&quot;2026-09-05&quot;:0.34},{&quot;2026-09-06&quot;:0.34},{&quot;2026-09-07&quot;:0.33},{&quot;2026-09-08&quot;:0.33},{&quot;2026-09-09&quot;:0.32},{&quot;2026-09-10&quot;:0.32},{&quot;2026-09-11&quot;:0.32}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

        <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">
            Tolaria West
        </h3>

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Tolaria West" src="https://cards.scryfall.io/large/front/4/2/42dfc4d1-7043-4859-b177-8ad4027ef835.jpg?1786084663" />
    </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.49
              </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.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-11&quot;:0.42},{&quot;2026-06-12&quot;:0.42},{&quot;2026-06-13&quot;:0.42},{&quot;2026-06-14&quot;:0.42},{&quot;2026-06-15&quot;:0.43},{&quot;2026-06-16&quot;:0.43},{&quot;2026-06-17&quot;:0.42},{&quot;2026-06-18&quot;:0.42},{&quot;2026-06-19&quot;:0.42},{&quot;2026-06-20&quot;:0.42},{&quot;2026-06-21&quot;:0.42},{&quot;2026-06-22&quot;:0.42},{&quot;2026-06-23&quot;:0.42},{&quot;2026-06-24&quot;:0.41},{&quot;2026-06-25&quot;:0.41},{&quot;2026-06-26&quot;:0.41},{&quot;2026-06-27&quot;:0.41},{&quot;2026-06-28&quot;:0.41},{&quot;2026-06-29&quot;:0.41},{&quot;2026-06-30&quot;:0.41},{&quot;2026-07-01&quot;:0.43},{&quot;2026-07-02&quot;:0.43},{&quot;2026-07-03&quot;:0.43},{&quot;2026-07-04&quot;:0.43},{&quot;2026-07-05&quot;:0.44},{&quot;2026-07-06&quot;:0.44},{&quot;2026-07-07&quot;:0.44},{&quot;2026-07-08&quot;:0.44},{&quot;2026-07-09&quot;:0.44},{&quot;2026-07-10&quot;:0.44},{&quot;2026-07-11&quot;:0.44},{&quot;2026-07-12&quot;:0.44},{&quot;2026-07-13&quot;:0.44},{&quot;2026-07-14&quot;:0.44},{&quot;2026-07-15&quot;:0.45},{&quot;2026-07-16&quot;:0.45},{&quot;2026-07-17&quot;:0.45},{&quot;2026-07-18&quot;:0.45},{&quot;2026-07-19&quot;:0.45},{&quot;2026-07-20&quot;:0.45},{&quot;2026-07-21&quot;:0.45},{&quot;2026-07-23&quot;:0.45},{&quot;2026-07-25&quot;:0.45},{&quot;2026-07-26&quot;:0.45},{&quot;2026-07-27&quot;:0.47},{&quot;2026-07-28&quot;:0.47},{&quot;2026-07-29&quot;:0.47},{&quot;2026-07-30&quot;:0.47},{&quot;2026-07-31&quot;:0.49},{&quot;2026-08-01&quot;:0.49},{&quot;2026-08-02&quot;:0.48},{&quot;2026-08-03&quot;:0.48},{&quot;2026-08-04&quot;:0.48},{&quot;2026-08-05&quot;:0.48},{&quot;2026-08-07&quot;:0.47},{&quot;2026-08-08&quot;:0.47},{&quot;2026-08-09&quot;:0.47},{&quot;2026-08-10&quot;:0.47},{&quot;2026-08-11&quot;:0.47},{&quot;2026-08-12&quot;:0.47},{&quot;2026-08-13&quot;:0.47},{&quot;2026-08-14&quot;:0.47},{&quot;2026-08-15&quot;:0.47},{&quot;2026-08-16&quot;:0.47},{&quot;2026-08-17&quot;:0.46},{&quot;2026-08-18&quot;:0.48},{&quot;2026-08-19&quot;:0.48},{&quot;2026-08-20&quot;:0.48},{&quot;2026-08-21&quot;:0.49},{&quot;2026-08-22&quot;:0.48},{&quot;2026-08-23&quot;:0.49},{&quot;2026-08-24&quot;:0.49},{&quot;2026-08-25&quot;:0.49},{&quot;2026-08-26&quot;:0.49},{&quot;2026-08-27&quot;:0.48},{&quot;2026-08-28&quot;:0.48},{&quot;2026-08-29&quot;:0.48},{&quot;2026-08-30&quot;:0.48},{&quot;2026-08-31&quot;:0.48},{&quot;2026-09-01&quot;:0.48},{&quot;2026-09-02&quot;:0.48},{&quot;2026-09-03&quot;:0.48},{&quot;2026-09-04&quot;:0.47},{&quot;2026-09-05&quot;:0.48},{&quot;2026-09-06&quot;:0.48},{&quot;2026-09-07&quot;:0.49},{&quot;2026-09-08&quot;:0.49},{&quot;2026-09-09&quot;:0.49},{&quot;2026-09-10&quot;:0.49},{&quot;2026-09-11&quot;:0.49}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Talisman of Curiosity" src="https://cards.scryfall.io/large/front/f/d/fd52688a-39fd-430f-b950-cb56e0004396.jpg?1783933071" />
    </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.47
              </span>

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

        <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">
            Wild 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">Enchantment — Aura</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-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="Wild Growth" src="https://cards.scryfall.io/large/front/4/f/4ffdc806-876a-4403-bab2-c7350da4bf4a.jpg?1783931765" />
    </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.47
              </span>

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

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $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="Talisman of Resilience" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/c/cc25a254-edd2-4817-ab80-7373239da7d2.jpg?1783933070" />

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Talisman of Resilience" src="https://cards.scryfall.io/large/front/c/c/cc25a254-edd2-4817-ab80-7373239da7d2.jpg?1783933070" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

          <span class="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="Fertile Ground" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/2/72496b94-c039-49f4-8fa8-935d81c97824.jpg?1783931767" />

        <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">
            Fertile Ground
        </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">Enchantment — Aura</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Fertile Ground" src="https://cards.scryfall.io/large/front/7/2/72496b94-c039-49f4-8fa8-935d81c97824.jpg?1783931767" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </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-11&quot;:0.57},{&quot;2026-06-12&quot;:0.57},{&quot;2026-06-13&quot;:0.57},{&quot;2026-06-14&quot;:0.57},{&quot;2026-06-15&quot;:0.57},{&quot;2026-06-16&quot;:0.57},{&quot;2026-06-17&quot;:0.57},{&quot;2026-06-18&quot;:0.57},{&quot;2026-06-19&quot;:0.57},{&quot;2026-06-20&quot;:0.57},{&quot;2026-06-21&quot;:0.57},{&quot;2026-06-22&quot;:0.57},{&quot;2026-06-23&quot;:0.57},{&quot;2026-06-24&quot;:0.57},{&quot;2026-06-25&quot;:0.57},{&quot;2026-06-26&quot;:0.57},{&quot;2026-06-27&quot;:0.57},{&quot;2026-06-28&quot;:0.57},{&quot;2026-06-29&quot;:0.57},{&quot;2026-06-30&quot;:0.57},{&quot;2026-07-01&quot;:0.57},{&quot;2026-07-02&quot;:0.57},{&quot;2026-07-03&quot;:0.57},{&quot;2026-07-04&quot;:0.55},{&quot;2026-07-05&quot;:0.55},{&quot;2026-07-06&quot;:0.55},{&quot;2026-07-07&quot;:0.55},{&quot;2026-07-08&quot;:0.55},{&quot;2026-07-09&quot;:0.55},{&quot;2026-07-10&quot;:0.55},{&quot;2026-07-11&quot;:0.54},{&quot;2026-07-12&quot;:0.54},{&quot;2026-07-13&quot;:0.54},{&quot;2026-07-14&quot;:0.53},{&quot;2026-07-15&quot;:0.53},{&quot;2026-07-16&quot;:0.53},{&quot;2026-07-17&quot;:0.53},{&quot;2026-07-18&quot;:0.53},{&quot;2026-07-19&quot;:0.53},{&quot;2026-07-20&quot;:0.53},{&quot;2026-07-21&quot;:0.53},{&quot;2026-07-23&quot;:0.52},{&quot;2026-07-25&quot;:0.52},{&quot;2026-07-26&quot;:0.51},{&quot;2026-07-27&quot;:0.51},{&quot;2026-07-28&quot;:0.51},{&quot;2026-07-29&quot;:0.51},{&quot;2026-07-30&quot;:0.51},{&quot;2026-07-31&quot;:0.51},{&quot;2026-08-01&quot;:0.51},{&quot;2026-08-02&quot;:0.51},{&quot;2026-08-03&quot;:0.51},{&quot;2026-08-04&quot;:0.51},{&quot;2026-08-05&quot;:0.51},{&quot;2026-08-07&quot;:0.51},{&quot;2026-08-08&quot;:0.51},{&quot;2026-08-09&quot;:0.51},{&quot;2026-08-10&quot;:0.5},{&quot;2026-08-11&quot;:0.5},{&quot;2026-08-12&quot;:0.49},{&quot;2026-08-13&quot;:0.49},{&quot;2026-08-14&quot;:0.49},{&quot;2026-08-15&quot;:0.49},{&quot;2026-08-16&quot;:0.49},{&quot;2026-08-17&quot;:0.49},{&quot;2026-08-18&quot;:0.49},{&quot;2026-08-19&quot;:0.49},{&quot;2026-08-20&quot;:0.49},{&quot;2026-08-21&quot;:0.49},{&quot;2026-08-22&quot;:0.48},{&quot;2026-08-23&quot;:0.48},{&quot;2026-08-24&quot;:0.48},{&quot;2026-08-25&quot;:0.48},{&quot;2026-08-26&quot;:0.48},{&quot;2026-08-27&quot;:0.48},{&quot;2026-08-28&quot;:0.47},{&quot;2026-08-29&quot;:0.47},{&quot;2026-08-30&quot;:0.46},{&quot;2026-08-31&quot;:0.46},{&quot;2026-09-01&quot;:0.46},{&quot;2026-09-02&quot;:0.46},{&quot;2026-09-03&quot;:0.46},{&quot;2026-09-04&quot;:0.46},{&quot;2026-09-05&quot;:0.45},{&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}]}"
        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="99470"
  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-ecl 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">
            3 owned
          </div>

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

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

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

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

        <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/4/b43297de-7378-474f-a85f-910fa7cbb4f4.jpg?1782683903" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $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="Search for Tomorrow" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/c/4c5e2fbf-87fe-48cd-aeca-e37f0a388a30.jpg?1783922403" />

        <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">
            Search for Tomorrow
        </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-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="Search for Tomorrow" src="https://cards.scryfall.io/large/front/4/c/4c5e2fbf-87fe-48cd-aeca-e37f0a388a30.jpg?1783922403" />
    </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.43
              </span>

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

      </div>

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

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

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

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Thespian&#39;s Stage
        </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">
              ↑
              8%
            </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="Thespian&#39;s Stage" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/9/1907ce97-79d9-4623-847d-6582203e7075.jpg?1783910585" />

        <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">
            Thespian&#39;s Stage
        </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="Thespian&#39;s Stage" src="https://cards.scryfall.io/large/front/1/9/1907ce97-79d9-4623-847d-6582203e7075.jpg?1783910585" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.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;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.35},{&quot;2026-06-17&quot;:0.35},{&quot;2026-06-18&quot;:0.34},{&quot;2026-06-19&quot;:0.33},{&quot;2026-06-20&quot;:0.33},{&quot;2026-06-21&quot;:0.33},{&quot;2026-06-22&quot;:0.33},{&quot;2026-06-23&quot;:0.33},{&quot;2026-06-24&quot;:0.33},{&quot;2026-06-25&quot;:0.33},{&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.31},{&quot;2026-07-01&quot;:0.31},{&quot;2026-07-02&quot;:0.31},{&quot;2026-07-03&quot;:0.31},{&quot;2026-07-04&quot;:0.31},{&quot;2026-07-05&quot;:0.31},{&quot;2026-07-06&quot;:0.31},{&quot;2026-07-07&quot;:0.31},{&quot;2026-07-08&quot;:0.31},{&quot;2026-07-09&quot;:0.31},{&quot;2026-07-10&quot;:0.31},{&quot;2026-07-11&quot;:0.31},{&quot;2026-07-12&quot;:0.31},{&quot;2026-07-13&quot;:0.31},{&quot;2026-07-14&quot;:0.31},{&quot;2026-07-15&quot;:0.31},{&quot;2026-07-16&quot;:0.31},{&quot;2026-07-17&quot;:0.31},{&quot;2026-07-18&quot;:0.31},{&quot;2026-07-19&quot;:0.31},{&quot;2026-07-20&quot;:0.31},{&quot;2026-07-21&quot;:0.32},{&quot;2026-07-23&quot;:0.32},{&quot;2026-07-25&quot;:0.33},{&quot;2026-07-26&quot;:0.32},{&quot;2026-07-27&quot;:0.32},{&quot;2026-07-29&quot;:0.34},{&quot;2026-07-30&quot;:0.34},{&quot;2026-07-31&quot;:0.34},{&quot;2026-08-01&quot;:0.34},{&quot;2026-08-02&quot;:0.34},{&quot;2026-08-03&quot;:0.33},{&quot;2026-08-04&quot;:0.33},{&quot;2026-08-05&quot;:0.33},{&quot;2026-08-07&quot;:0.33},{&quot;2026-08-08&quot;:0.33},{&quot;2026-08-09&quot;:0.33},{&quot;2026-08-10&quot;:0.33},{&quot;2026-08-11&quot;:0.33},{&quot;2026-08-12&quot;:0.33},{&quot;2026-08-13&quot;:0.34},{&quot;2026-08-14&quot;:0.34},{&quot;2026-08-15&quot;:0.34},{&quot;2026-08-16&quot;:0.33},{&quot;2026-08-17&quot;:0.32},{&quot;2026-08-18&quot;:0.31},{&quot;2026-08-19&quot;:0.31},{&quot;2026-08-20&quot;:0.31},{&quot;2026-08-21&quot;:0.31},{&quot;2026-08-22&quot;:0.31},{&quot;2026-08-23&quot;:0.3},{&quot;2026-08-24&quot;:0.3},{&quot;2026-08-25&quot;:0.3},{&quot;2026-08-26&quot;:0.3},{&quot;2026-08-27&quot;:0.32},{&quot;2026-08-28&quot;:0.32},{&quot;2026-08-29&quot;:0.32},{&quot;2026-08-30&quot;:0.32},{&quot;2026-08-31&quot;:0.32},{&quot;2026-09-01&quot;:0.32},{&quot;2026-09-02&quot;:0.33},{&quot;2026-09-03&quot;:0.33},{&quot;2026-09-04&quot;:0.33},{&quot;2026-09-05&quot;:0.37},{&quot;2026-09-06&quot;:0.37},{&quot;2026-09-07&quot;:0.38},{&quot;2026-09-08&quot;:0.38},{&quot;2026-09-09&quot;:0.38},{&quot;2026-09-10&quot;:0.38},{&quot;2026-09-11&quot;:0.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="99468"
  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-ecl ss-common ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.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="Swamp" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/c/0cf904da-496c-4d88-a62b-c736ba895078.jpg?1782683904" />

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Swamp" src="https://cards.scryfall.io/large/front/0/c/0cf904da-496c-4d88-a62b-c736ba895078.jpg?1782683904" />
    </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.28
              </span>

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

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

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

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

    <!-- Quick Actions -->

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

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


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Land — Gate
      </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="Golgari Guildgate" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/f/4fb450ae-0dc7-47bd-9a60-1cc4d9d5a695.jpg?1783913256" />

        <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">
            Golgari Guildgate
        </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 — Gate</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="Golgari Guildgate" src="https://cards.scryfall.io/large/front/4/f/4fb450ae-0dc7-47bd-9a60-1cc4d9d5a695.jpg?1783913256" />
    </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.33
              </span>

            </div>
          </div>

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $0.37
              </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-13&quot;:0.3},{&quot;2026-06-14&quot;:0.34},{&quot;2026-06-15&quot;:0.36},{&quot;2026-06-16&quot;:0.36},{&quot;2026-06-17&quot;:0.37},{&quot;2026-06-18&quot;:0.37},{&quot;2026-06-19&quot;:0.36},{&quot;2026-06-20&quot;:0.36},{&quot;2026-06-21&quot;:0.36},{&quot;2026-06-22&quot;:0.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.38},{&quot;2026-06-29&quot;:0.38},{&quot;2026-06-30&quot;:0.38},{&quot;2026-07-01&quot;:0.38},{&quot;2026-07-02&quot;:0.38},{&quot;2026-07-03&quot;:0.38},{&quot;2026-07-04&quot;:0.38},{&quot;2026-07-05&quot;:0.38},{&quot;2026-07-06&quot;:0.38},{&quot;2026-07-07&quot;:0.38},{&quot;2026-07-08&quot;:0.38},{&quot;2026-07-09&quot;:0.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.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.37},{&quot;2026-07-25&quot;:0.37},{&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.38},{&quot;2026-08-05&quot;:0.38},{&quot;2026-08-07&quot;:0.38},{&quot;2026-08-08&quot;:0.38},{&quot;2026-08-09&quot;:0.38},{&quot;2026-08-10&quot;:0.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.38},{&quot;2026-08-21&quot;:0.38},{&quot;2026-08-22&quot;:0.38},{&quot;2026-08-23&quot;:0.38},{&quot;2026-08-24&quot;:0.38},{&quot;2026-08-25&quot;:0.38},{&quot;2026-08-26&quot;:0.38},{&quot;2026-08-27&quot;:0.38},{&quot;2026-08-28&quot;:0.38},{&quot;2026-08-29&quot;:0.38},{&quot;2026-08-30&quot;:0.38},{&quot;2026-08-31&quot;:0.38},{&quot;2026-09-01&quot;:0.38},{&quot;2026-09-02&quot;:0.37},{&quot;2026-09-03&quot;:0.37},{&quot;2026-09-04&quot;:0.37},{&quot;2026-09-05&quot;:0.37},{&quot;2026-09-06&quot;:0.37},{&quot;2026-09-07&quot;:0.37},{&quot;2026-09-08&quot;:0.37},{&quot;2026-09-09&quot;:0.37},{&quot;2026-09-10&quot;:0.37},{&quot;2026-09-11&quot;:0.37}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.26},{&quot;2026-06-14&quot;:0.31},{&quot;2026-06-15&quot;:0.31},{&quot;2026-06-16&quot;:0.32},{&quot;2026-06-17&quot;:0.34},{&quot;2026-06-18&quot;:0.34},{&quot;2026-06-19&quot;:0.36},{&quot;2026-06-20&quot;:0.36},{&quot;2026-06-21&quot;:0.37},{&quot;2026-06-22&quot;:0.37},{&quot;2026-06-23&quot;:0.38},{&quot;2026-06-24&quot;:0.37},{&quot;2026-06-25&quot;:0.37},{&quot;2026-06-26&quot;:0.34},{&quot;2026-06-27&quot;:0.33},{&quot;2026-06-28&quot;:0.32},{&quot;2026-06-29&quot;:0.32},{&quot;2026-06-30&quot;:0.32},{&quot;2026-07-01&quot;:0.31},{&quot;2026-07-02&quot;:0.31},{&quot;2026-07-03&quot;:0.31},{&quot;2026-07-04&quot;:0.29},{&quot;2026-07-05&quot;:0.29},{&quot;2026-07-06&quot;:0.27},{&quot;2026-07-07&quot;:0.27},{&quot;2026-07-08&quot;:0.23},{&quot;2026-07-09&quot;:0.23},{&quot;2026-07-10&quot;:0.23},{&quot;2026-07-11&quot;:0.21},{&quot;2026-07-12&quot;:0.21},{&quot;2026-07-13&quot;:0.2},{&quot;2026-07-14&quot;:0.2},{&quot;2026-07-15&quot;:0.18},{&quot;2026-07-16&quot;:0.18},{&quot;2026-07-17&quot;:0.17},{&quot;2026-07-18&quot;:0.14},{&quot;2026-07-19&quot;:0.12},{&quot;2026-07-20&quot;:0.16},{&quot;2026-07-21&quot;:0.19},{&quot;2026-07-22&quot;:0.19},{&quot;2026-07-23&quot;:0.2},{&quot;2026-07-24&quot;:0.21},{&quot;2026-07-25&quot;:0.21},{&quot;2026-07-26&quot;:0.22},{&quot;2026-07-27&quot;:0.22},{&quot;2026-07-28&quot;:0.22},{&quot;2026-07-29&quot;:0.23},{&quot;2026-07-30&quot;:0.26},{&quot;2026-07-31&quot;:0.27},{&quot;2026-08-01&quot;:0.27},{&quot;2026-08-02&quot;:0.29},{&quot;2026-08-03&quot;:0.3},{&quot;2026-08-04&quot;:0.31},{&quot;2026-08-05&quot;:0.33},{&quot;2026-08-07&quot;:0.33},{&quot;2026-08-08&quot;:0.33},{&quot;2026-08-09&quot;:0.33},{&quot;2026-08-10&quot;:0.34},{&quot;2026-08-11&quot;:0.33},{&quot;2026-08-12&quot;:0.33},{&quot;2026-08-13&quot;:0.33},{&quot;2026-08-14&quot;:0.33},{&quot;2026-08-15&quot;:0.33},{&quot;2026-08-16&quot;:0.32},{&quot;2026-08-17&quot;:0.32},{&quot;2026-08-18&quot;:0.33},{&quot;2026-08-19&quot;:0.33},{&quot;2026-08-20&quot;:0.33},{&quot;2026-08-21&quot;:0.33},{&quot;2026-08-22&quot;:0.33},{&quot;2026-08-23&quot;:0.33},{&quot;2026-08-24&quot;:0.33},{&quot;2026-08-25&quot;:0.33},{&quot;2026-08-26&quot;:0.33},{&quot;2026-08-27&quot;:0.33},{&quot;2026-08-28&quot;:0.33},{&quot;2026-08-29&quot;:0.33},{&quot;2026-08-30&quot;:0.33},{&quot;2026-08-31&quot;:0.34},{&quot;2026-09-01&quot;:0.33},{&quot;2026-09-02&quot;:0.33},{&quot;2026-09-03&quot;:0.33},{&quot;2026-09-04&quot;:0.33},{&quot;2026-09-05&quot;:0.33},{&quot;2026-09-06&quot;:0.33},{&quot;2026-09-07&quot;:0.33},{&quot;2026-09-08&quot;:0.31},{&quot;2026-09-09&quot;:0.31},{&quot;2026-09-10&quot;:0.33},{&quot;2026-09-11&quot;:0.33}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="10641"
  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-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">
            Simic Guildgate
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Land — Gate
      </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.34
          </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="Simic Guildgate" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/4/d4e7b715-38c5-406f-883c-9c174f87944e.jpg?1783932702" />

        <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">
            Simic Guildgate
        </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 — Gate</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="Simic Guildgate" src="https://cards.scryfall.io/large/front/d/4/d4e7b715-38c5-406f-883c-9c174f87944e.jpg?1783932702" />
    </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.34
              </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-08&quot;:0.26},{&quot;2026-06-10&quot;:0.25},{&quot;2026-06-11&quot;:0.27},{&quot;2026-06-12&quot;:0.27},{&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.27},{&quot;2026-06-17&quot;:0.27},{&quot;2026-06-18&quot;:0.27},{&quot;2026-06-19&quot;:0.27},{&quot;2026-06-20&quot;:0.27},{&quot;2026-06-21&quot;:0.27},{&quot;2026-06-22&quot;:0.27},{&quot;2026-06-24&quot;:0.27},{&quot;2026-06-25&quot;:0.27},{&quot;2026-06-26&quot;:0.27},{&quot;2026-06-27&quot;:0.27},{&quot;2026-06-28&quot;:0.27},{&quot;2026-06-29&quot;:0.27},{&quot;2026-06-30&quot;:0.27},{&quot;2026-07-01&quot;:0.27},{&quot;2026-07-02&quot;:0.27},{&quot;2026-07-03&quot;:0.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.28},{&quot;2026-07-12&quot;:0.29},{&quot;2026-07-13&quot;:0.29},{&quot;2026-07-14&quot;:0.29},{&quot;2026-07-15&quot;:0.29},{&quot;2026-07-16&quot;:0.3},{&quot;2026-07-17&quot;:0.29},{&quot;2026-07-18&quot;:0.29},{&quot;2026-07-19&quot;:0.29},{&quot;2026-07-20&quot;:0.29},{&quot;2026-07-21&quot;:0.29},{&quot;2026-07-23&quot;:0.32},{&quot;2026-07-25&quot;:0.35},{&quot;2026-07-26&quot;:0.35},{&quot;2026-07-27&quot;:0.36},{&quot;2026-07-29&quot;:0.36},{&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.37},{&quot;2026-08-04&quot;:0.37},{&quot;2026-08-05&quot;:0.37},{&quot;2026-08-07&quot;:0.37},{&quot;2026-08-08&quot;:0.37},{&quot;2026-08-09&quot;:0.37},{&quot;2026-08-10&quot;:0.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.35},{&quot;2026-08-19&quot;:0.35},{&quot;2026-08-20&quot;:0.35},{&quot;2026-08-21&quot;:0.35},{&quot;2026-08-22&quot;:0.35},{&quot;2026-08-23&quot;:0.35},{&quot;2026-08-24&quot;:0.35},{&quot;2026-08-25&quot;:0.35},{&quot;2026-08-26&quot;:0.35},{&quot;2026-08-27&quot;:0.35},{&quot;2026-08-28&quot;:0.35},{&quot;2026-08-29&quot;:0.35},{&quot;2026-08-30&quot;:0.35},{&quot;2026-08-31&quot;:0.35},{&quot;2026-09-01&quot;:0.35},{&quot;2026-09-02&quot;:0.35},{&quot;2026-09-03&quot;:0.35},{&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.34},{&quot;2026-09-10&quot;:0.34},{&quot;2026-09-11&quot;:0.34}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Island" src="https://cards.scryfall.io/large/front/1/2/12ebd9c8-6587-456e-aba9-7aad1c2a09ea.jpg?1782683905" />
    </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.32
              </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">
                $0.33
              </span>

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell 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;:0.35},{&quot;2026-06-14&quot;:0.34},{&quot;2026-06-15&quot;:0.33},{&quot;2026-06-16&quot;:0.31},{&quot;2026-06-17&quot;:0.33},{&quot;2026-06-18&quot;:0.33},{&quot;2026-06-19&quot;:0.31},{&quot;2026-06-20&quot;:0.31},{&quot;2026-06-21&quot;:0.3},{&quot;2026-06-22&quot;:0.33},{&quot;2026-06-23&quot;:0.35},{&quot;2026-06-24&quot;:0.34},{&quot;2026-06-25&quot;:0.33},{&quot;2026-06-26&quot;:0.33},{&quot;2026-06-27&quot;:0.32},{&quot;2026-06-28&quot;:0.36},{&quot;2026-06-29&quot;:0.38},{&quot;2026-06-30&quot;:0.38},{&quot;2026-07-01&quot;:0.37},{&quot;2026-07-02&quot;:0.36},{&quot;2026-07-03&quot;:0.37},{&quot;2026-07-04&quot;:0.37},{&quot;2026-07-05&quot;:0.35},{&quot;2026-07-06&quot;:0.35},{&quot;2026-07-07&quot;:0.36},{&quot;2026-07-08&quot;:0.35},{&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.38},{&quot;2026-07-13&quot;:0.38},{&quot;2026-07-14&quot;:0.38},{&quot;2026-07-15&quot;:0.39},{&quot;2026-07-16&quot;:0.38},{&quot;2026-07-17&quot;:0.38},{&quot;2026-07-18&quot;:0.38},{&quot;2026-07-19&quot;:0.35},{&quot;2026-07-20&quot;:0.36},{&quot;2026-07-21&quot;:0.34},{&quot;2026-07-22&quot;:0.36},{&quot;2026-07-23&quot;:0.33},{&quot;2026-07-24&quot;:0.32},{&quot;2026-07-25&quot;:0.32},{&quot;2026-07-26&quot;:0.31},{&quot;2026-07-27&quot;:0.3},{&quot;2026-07-28&quot;:0.33},{&quot;2026-07-29&quot;:0.33},{&quot;2026-07-30&quot;:0.31},{&quot;2026-07-31&quot;:0.4},{&quot;2026-08-01&quot;:0.39},{&quot;2026-08-02&quot;:0.4},{&quot;2026-08-03&quot;:0.4},{&quot;2026-08-04&quot;:0.4},{&quot;2026-08-05&quot;:0.39},{&quot;2026-08-07&quot;:0.4},{&quot;2026-08-08&quot;:0.41},{&quot;2026-08-09&quot;:0.41},{&quot;2026-08-10&quot;:0.41},{&quot;2026-08-11&quot;:0.37},{&quot;2026-08-12&quot;:0.39},{&quot;2026-08-13&quot;:0.39},{&quot;2026-08-14&quot;:0.39},{&quot;2026-08-15&quot;:0.38},{&quot;2026-08-16&quot;:0.41},{&quot;2026-08-17&quot;:0.41},{&quot;2026-08-18&quot;:0.41},{&quot;2026-08-19&quot;:0.41},{&quot;2026-08-20&quot;:0.4},{&quot;2026-08-21&quot;:0.4},{&quot;2026-08-22&quot;:0.4},{&quot;2026-08-23&quot;:0.4},{&quot;2026-08-24&quot;:0.39},{&quot;2026-08-25&quot;:0.41},{&quot;2026-08-26&quot;:0.47},{&quot;2026-08-27&quot;:0.46},{&quot;2026-08-28&quot;:0.47},{&quot;2026-08-29&quot;:0.47},{&quot;2026-08-30&quot;:0.43},{&quot;2026-08-31&quot;:0.42},{&quot;2026-09-01&quot;:0.4},{&quot;2026-09-02&quot;:0.39},{&quot;2026-09-03&quot;:0.38},{&quot;2026-09-04&quot;:0.35},{&quot;2026-09-05&quot;:0.33},{&quot;2026-09-06&quot;:0.31},{&quot;2026-09-07&quot;:0.3},{&quot;2026-09-08&quot;:0.32},{&quot;2026-09-09&quot;:0.31},{&quot;2026-09-10&quot;:0.33},{&quot;2026-09-11&quot;:0.33}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.29},{&quot;2026-06-14&quot;:0.29},{&quot;2026-06-15&quot;:0.31},{&quot;2026-06-16&quot;:0.31},{&quot;2026-06-17&quot;:0.31},{&quot;2026-06-18&quot;:0.31},{&quot;2026-06-19&quot;:0.3},{&quot;2026-06-20&quot;:0.31},{&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.33},{&quot;2026-06-25&quot;:0.33},{&quot;2026-06-26&quot;:0.33},{&quot;2026-06-27&quot;:0.33},{&quot;2026-06-28&quot;:0.32},{&quot;2026-06-29&quot;:0.31},{&quot;2026-06-30&quot;:0.32},{&quot;2026-07-01&quot;:0.34},{&quot;2026-07-02&quot;:0.34},{&quot;2026-07-03&quot;:0.32},{&quot;2026-07-04&quot;:0.31},{&quot;2026-07-05&quot;:0.3},{&quot;2026-07-06&quot;:0.29},{&quot;2026-07-07&quot;:0.28},{&quot;2026-07-08&quot;:0.29},{&quot;2026-07-09&quot;:0.32},{&quot;2026-07-10&quot;:0.35},{&quot;2026-07-11&quot;:0.33},{&quot;2026-07-12&quot;:0.35},{&quot;2026-07-13&quot;:0.36},{&quot;2026-07-14&quot;:0.36},{&quot;2026-07-15&quot;:0.34},{&quot;2026-07-16&quot;:0.35},{&quot;2026-07-17&quot;:0.33},{&quot;2026-07-18&quot;:0.32},{&quot;2026-07-19&quot;:0.31},{&quot;2026-07-20&quot;:0.32},{&quot;2026-07-21&quot;:0.34},{&quot;2026-07-22&quot;:0.34},{&quot;2026-07-23&quot;:0.32},{&quot;2026-07-24&quot;:0.32},{&quot;2026-07-25&quot;:0.31},{&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.31},{&quot;2026-07-31&quot;:0.31},{&quot;2026-08-01&quot;:0.31},{&quot;2026-08-02&quot;:0.32},{&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.3},{&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.33},{&quot;2026-08-14&quot;:0.33},{&quot;2026-08-15&quot;:0.31},{&quot;2026-08-16&quot;:0.34},{&quot;2026-08-17&quot;:0.34},{&quot;2026-08-18&quot;:0.33},{&quot;2026-08-19&quot;:0.33},{&quot;2026-08-20&quot;:0.32},{&quot;2026-08-21&quot;:0.33},{&quot;2026-08-22&quot;:0.33},{&quot;2026-08-23&quot;:0.34},{&quot;2026-08-24&quot;:0.34},{&quot;2026-08-25&quot;:0.35},{&quot;2026-08-26&quot;:0.34},{&quot;2026-08-27&quot;:0.34},{&quot;2026-08-28&quot;:0.36},{&quot;2026-08-29&quot;:0.36},{&quot;2026-08-30&quot;:0.36},{&quot;2026-08-31&quot;:0.36},{&quot;2026-09-01&quot;:0.35},{&quot;2026-09-02&quot;:0.34},{&quot;2026-09-03&quot;:0.32},{&quot;2026-09-04&quot;:0.3},{&quot;2026-09-05&quot;:0.3},{&quot;2026-09-06&quot;:0.31},{&quot;2026-09-07&quot;:0.31},{&quot;2026-09-08&quot;:0.32},{&quot;2026-09-09&quot;:0.33},{&quot;2026-09-10&quot;:0.33},{&quot;2026-09-11&quot;:0.32}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="12671"
  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">
            Nine-Fingers Keene
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Nine-Fingers Keene" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/5/4/5480ac0a-883a-4f73-8e7c-56d64be410a3.jpg?1783922686" />

        <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">
            Nine-Fingers Keene
        </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 Rogue</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Nine-Fingers Keene" src="https://cards.scryfall.io/large/front/5/4/5480ac0a-883a-4f73-8e7c-56d64be410a3.jpg?1783922686" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="89681"
  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">
            Mind Stone
        </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">
            $0.32
          </span>
        </div>
      </div>
    </div>

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Mind Stone" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/5/d5795300-dcfa-4a40-9c23-79a061c26851.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">
            Mind Stone
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Mind Stone" src="https://cards.scryfall.io/large/front/d/5/d5795300-dcfa-4a40-9c23-79a061c26851.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">
                $0.32
              </span>

            </div>
          </div>

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

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

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

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

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

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

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Open the Gates
        </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-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="Open the Gates" src="https://cards.scryfall.io/large/front/0/d/0daa4f17-149a-4304-a488-8874ebe045e9.jpg?1783913302" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="89717"
  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-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">
            Dimir Guildgate
        </span>


      </div>

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

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

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

        <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">
            Dimir Guildgate
        </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 — Gate</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="Dimir Guildgate" src="https://cards.scryfall.io/large/front/2/b/2b7faa71-72f3-4b64-b6e2-d05ebd9c705d.jpg?1783929443" />
    </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.30
              </span>

            </div>
          </div>

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

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

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Ior Ruin Expedition
        </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.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="Ior Ruin Expedition" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/7/c7a6e64e-4a9d-4fab-b85c-e9c4e88bca2f.jpg?1783932126" />

        <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">
            Ior Ruin Expedition
        </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">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-u'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Ior Ruin Expedition" src="https://cards.scryfall.io/large/front/c/7/c7a6e64e-4a9d-4fab-b85c-e9c4e88bca2f.jpg?1783932126" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>


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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="12497"
  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">
            Explore the Underdark
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.21
          </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="Explore the Underdark" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/c/0cbf06f5-d1c7-474c-8f09-72f5ad0c8120.jpg?1783922714" />

        <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">
            Explore the Underdark
        </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-4'></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="Explore the Underdark" src="https://cards.scryfall.io/large/front/0/c/0cbf06f5-d1c7-474c-8f09-72f5ad0c8120.jpg?1783922714" />
    </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.21
              </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.23
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:2.18},{&quot;2026-06-11&quot;:2.22},{&quot;2026-06-12&quot;:2.23},{&quot;2026-06-13&quot;:2.26},{&quot;2026-06-14&quot;:2.27},{&quot;2026-06-15&quot;:2.28},{&quot;2026-06-16&quot;:2.26},{&quot;2026-06-17&quot;:2.18},{&quot;2026-06-18&quot;:2.18},{&quot;2026-06-19&quot;:2.17},{&quot;2026-06-20&quot;:2.17},{&quot;2026-06-21&quot;:2.17},{&quot;2026-06-22&quot;:2.17},{&quot;2026-06-23&quot;:2.17},{&quot;2026-06-24&quot;:2.02},{&quot;2026-06-25&quot;:2.02},{&quot;2026-06-26&quot;:2.02},{&quot;2026-06-27&quot;:2.01},{&quot;2026-06-28&quot;:2.01},{&quot;2026-06-29&quot;:2.01},{&quot;2026-06-30&quot;:2.01},{&quot;2026-07-01&quot;:2.01},{&quot;2026-07-02&quot;:2.01},{&quot;2026-07-03&quot;:1.89},{&quot;2026-07-04&quot;:1.78},{&quot;2026-07-05&quot;:1.59},{&quot;2026-07-06&quot;:1.59},{&quot;2026-07-07&quot;:1.57},{&quot;2026-07-08&quot;:1.57},{&quot;2026-07-09&quot;:1.54},{&quot;2026-07-10&quot;:1.49},{&quot;2026-07-11&quot;:1.42},{&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.21},{&quot;2026-07-16&quot;:1.21},{&quot;2026-07-17&quot;:1.21},{&quot;2026-07-18&quot;:1.21},{&quot;2026-07-19&quot;:1.21},{&quot;2026-07-20&quot;:1.24},{&quot;2026-07-21&quot;:1.24},{&quot;2026-07-23&quot;:1.19},{&quot;2026-07-25&quot;:1.17},{&quot;2026-07-26&quot;:1.15},{&quot;2026-07-27&quot;:1.13},{&quot;2026-07-29&quot;:1.13},{&quot;2026-07-30&quot;:1.12},{&quot;2026-07-31&quot;:1.12},{&quot;2026-08-01&quot;:1.12},{&quot;2026-08-02&quot;:1.08},{&quot;2026-08-03&quot;:0.99},{&quot;2026-08-04&quot;:0.99},{&quot;2026-08-05&quot;:0.99},{&quot;2026-08-07&quot;:0.95},{&quot;2026-08-08&quot;:0.95},{&quot;2026-08-09&quot;:0.95},{&quot;2026-08-10&quot;:0.95},{&quot;2026-08-11&quot;:0.97},{&quot;2026-08-12&quot;:0.97},{&quot;2026-08-13&quot;:0.89},{&quot;2026-08-14&quot;:0.89},{&quot;2026-08-15&quot;:0.89},{&quot;2026-08-16&quot;:0.85},{&quot;2026-08-17&quot;:0.85},{&quot;2026-08-18&quot;:0.88},{&quot;2026-08-19&quot;:0.79},{&quot;2026-08-20&quot;:0.79},{&quot;2026-08-21&quot;:0.75},{&quot;2026-08-22&quot;:0.75},{&quot;2026-08-23&quot;:0.75},{&quot;2026-08-24&quot;:0.75},{&quot;2026-08-25&quot;:0.75},{&quot;2026-08-26&quot;:0.77},{&quot;2026-08-27&quot;:0.77},{&quot;2026-08-28&quot;:0.77},{&quot;2026-08-29&quot;:0.77},{&quot;2026-08-30&quot;:0.78},{&quot;2026-08-31&quot;:0.79},{&quot;2026-09-01&quot;:0.79},{&quot;2026-09-02&quot;:0.93},{&quot;2026-09-03&quot;:1.03},{&quot;2026-09-04&quot;:1.03},{&quot;2026-09-05&quot;:1.06},{&quot;2026-09-06&quot;:1.06},{&quot;2026-09-07&quot;:1.19},{&quot;2026-09-08&quot;:1.19},{&quot;2026-09-09&quot;:1.19},{&quot;2026-09-10&quot;:1.23},{&quot;2026-09-11&quot;:1.23}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:0.18},{&quot;2026-06-11&quot;:0.18},{&quot;2026-06-12&quot;:0.18},{&quot;2026-06-13&quot;:0.19},{&quot;2026-06-14&quot;:0.19},{&quot;2026-06-15&quot;:0.19},{&quot;2026-06-16&quot;:0.2},{&quot;2026-06-17&quot;:0.21},{&quot;2026-06-18&quot;:0.21},{&quot;2026-06-19&quot;:0.21},{&quot;2026-06-20&quot;:0.21},{&quot;2026-06-21&quot;:0.21},{&quot;2026-06-22&quot;:0.21},{&quot;2026-06-23&quot;:0.21},{&quot;2026-06-24&quot;:0.22},{&quot;2026-06-25&quot;:0.22},{&quot;2026-06-26&quot;:0.22},{&quot;2026-06-27&quot;:0.22},{&quot;2026-06-28&quot;:0.21},{&quot;2026-06-29&quot;:0.21},{&quot;2026-06-30&quot;:0.23},{&quot;2026-07-01&quot;:0.23},{&quot;2026-07-02&quot;:0.23},{&quot;2026-07-03&quot;:0.22},{&quot;2026-07-04&quot;:0.22},{&quot;2026-07-05&quot;:0.22},{&quot;2026-07-06&quot;:0.22},{&quot;2026-07-07&quot;:0.22},{&quot;2026-07-08&quot;:0.22},{&quot;2026-07-09&quot;:0.22},{&quot;2026-07-10&quot;:0.22},{&quot;2026-07-11&quot;:0.22},{&quot;2026-07-12&quot;:0.22},{&quot;2026-07-13&quot;:0.22},{&quot;2026-07-14&quot;:0.22},{&quot;2026-07-15&quot;:0.22},{&quot;2026-07-16&quot;:0.22},{&quot;2026-07-17&quot;:0.22},{&quot;2026-07-18&quot;:0.24},{&quot;2026-07-19&quot;:0.27},{&quot;2026-07-20&quot;:0.26},{&quot;2026-07-21&quot;:0.26},{&quot;2026-07-23&quot;:0.28},{&quot;2026-07-25&quot;:0.28},{&quot;2026-07-26&quot;:0.27},{&quot;2026-07-27&quot;:0.27},{&quot;2026-07-29&quot;:0.27},{&quot;2026-07-30&quot;:0.27},{&quot;2026-07-31&quot;:0.27},{&quot;2026-08-01&quot;:0.27},{&quot;2026-08-02&quot;:0.27},{&quot;2026-08-03&quot;:0.26},{&quot;2026-08-04&quot;:0.27},{&quot;2026-08-05&quot;:0.26},{&quot;2026-08-07&quot;:0.27},{&quot;2026-08-08&quot;:0.25},{&quot;2026-08-09&quot;:0.24},{&quot;2026-08-10&quot;:0.26},{&quot;2026-08-11&quot;:0.23},{&quot;2026-08-12&quot;:0.23},{&quot;2026-08-13&quot;:0.23},{&quot;2026-08-14&quot;:0.23},{&quot;2026-08-15&quot;:0.23},{&quot;2026-08-16&quot;:0.21},{&quot;2026-08-17&quot;:0.2},{&quot;2026-08-18&quot;:0.2},{&quot;2026-08-19&quot;:0.2},{&quot;2026-08-20&quot;:0.2},{&quot;2026-08-21&quot;:0.2},{&quot;2026-08-22&quot;:0.21},{&quot;2026-08-23&quot;:0.21},{&quot;2026-08-24&quot;:0.21},{&quot;2026-08-25&quot;:0.21},{&quot;2026-08-26&quot;:0.21},{&quot;2026-08-27&quot;:0.21},{&quot;2026-08-28&quot;:0.21},{&quot;2026-08-29&quot;:0.21},{&quot;2026-08-30&quot;:0.21},{&quot;2026-08-31&quot;:0.2},{&quot;2026-09-01&quot;:0.2},{&quot;2026-09-02&quot;:0.2},{&quot;2026-09-03&quot;:0.2},{&quot;2026-09-04&quot;:0.21},{&quot;2026-09-05&quot;:0.2},{&quot;2026-09-06&quot;:0.2},{&quot;2026-09-07&quot;:0.2},{&quot;2026-09-08&quot;:0.21},{&quot;2026-09-09&quot;:0.21},{&quot;2026-09-10&quot;:0.21},{&quot;2026-09-11&quot;:0.21}]}"
        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 48 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=13&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=13&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=13&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=13&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=13&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=13&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=13&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=13&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=13&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="74370"
          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">
              246
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-ltr ss-mythic ss-fw ss-2x mr-4"></i>
              The One Ring


            </td>

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

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

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

                </div>
            </td>

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

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

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

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

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

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

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


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

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="53356"
          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">
              226
            </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>
              Lotus Petal


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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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


            </td>

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

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

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

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

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

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

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


            </td>

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

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

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

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

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

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


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

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

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

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

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

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

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

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


            </td>

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

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

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

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

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

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

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

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

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


            </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-u'></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">
                  $8.09

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

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

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

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

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


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

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

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="80531"
          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-uma ss-rare ss-fw ss-2x mr-4"></i>
              Life from the Loam


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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="14006"
          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">
              730
            </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>
              Propaganda


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

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="49038"
          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">
              97
            </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>
              Profane Tutor


            </td>

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

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

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

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

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

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


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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $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.38
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="74442"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_74442" src="/boxset_card/74442?collection_id=13&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="69722"
          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">
              54
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-stx ss-uncommon ss-fw ss-2x mr-4"></i>
              Solve the Equation


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.95

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      5%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $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.51
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="69722"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_69722" src="/boxset_card/69722?collection_id=13&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="20447"
          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">
              161
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2xm ss-uncommon ss-fw ss-2x mr-4"></i>
              Crop Rotation


            </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">
                  $3.72

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      4%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $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.92
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="20447"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_20447" src="/boxset_card/20447?collection_id=13&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12536"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              244
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-clb 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.64

                    <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">
                $1.85
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.24
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="12536"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12536" src="/boxset_card/12536?collection_id=13&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="49276"
          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">
              180
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mh2 ss-uncommon ss-fw ss-2x mr-4"></i>
              Tireless Provisioner


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Elf Scout
            </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">
                  $2.98

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      20%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $2.25
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.50
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="49276"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_49276" src="/boxset_card/49276?collection_id=13&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="14445"
          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">
              871
            </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>
              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.92

                    <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.30
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.46
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="14445"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_14445" src="/boxset_card/14445?collection_id=13&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="20724"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              255
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2xm ss-common ss-fw ss-2x mr-4"></i>
              Expedition Map


            </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.84

                    <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">
                $1.60
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.17
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="20724"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_20724" src="/boxset_card/20724?collection_id=13&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="20544"
          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">
              160
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2x2 ss-uncommon ss-fw ss-2x mr-4"></i>
              Summer Bloom


            </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">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.82

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.60
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.56
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="20544"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_20544" src="/boxset_card/20544?collection_id=13&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="87505"
          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">
              C15-101
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-common ss-fw ss-2x mr-4"></i>
              Preordain


            </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-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.65

                </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.11
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="87505"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_87505" src="/boxset_card/87505?collection_id=13&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="94859"
          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">
              28
            </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>
              Brainstorm


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.48

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      5%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.21
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="94859"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_94859" src="/boxset_card/94859?collection_id=13&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="19429"
          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">
              422
            </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>
              Thran Portal


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land — Gate
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.25

                    <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.50
            </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="19429"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_19429" src="/boxset_card/19429?collection_id=13&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="28921"
          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">
              206
            </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>
              Fellwar Stone


            </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.98

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      6%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.72
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.18
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="28921"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_28921" src="/boxset_card/28921?collection_id=13&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="79915"
          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">
              NEM-117
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-common ss-fw ss-2x mr-4"></i>
              Skyshroud Claim


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.98

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.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.18
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="79915"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_79915" src="/boxset_card/79915?collection_id=13&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="89513"
          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">
              62
            </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>
              Circuitous Route


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.91

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-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.08
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.18
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="89513"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_89513" src="/boxset_card/89513?collection_id=13&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12267"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              297
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-uncommon ss-fw ss-2x mr-4"></i>
              Arcane Signet


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.66

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      4%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.33
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.24
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="12267"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12267" src="/boxset_card/12267?collection_id=13&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="10343"
          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">
              177
            </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-common ss-fw ss-2x mr-4"></i>
              Sakura-Tribe Elder


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Snake 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-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">
                  $0.52

                    <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.20
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.16
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="10343"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_10343" src="/boxset_card/10343?collection_id=13&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12421"
          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">
              350
            </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-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">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.49

                    <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.60
            </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="12421"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12421" src="/boxset_card/12421?collection_id=13&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="82545"
          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">
              FUT-173
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Tolaria West


            </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.49

                    <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.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="82545"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_82545" src="/boxset_card/82545?collection_id=13&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="49383"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              232
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mh1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Talisman of Curiosity


            </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.47

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      4%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.15
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.29
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="49383"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_49383" src="/boxset_card/49383?collection_id=13&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="87838"
          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">
              C18-165
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-common ss-fw ss-2x mr-4"></i>
              Wild Growth


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Enchantment — Aura
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.47

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.25
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.16
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="87838"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_87838" src="/boxset_card/87838?collection_id=13&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="49388"
          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">
              234
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mh1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Talisman of Resilience


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.45

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-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.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.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="49388"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_49388" src="/boxset_card/49388?collection_id=13&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="87817"
          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">
              C18-147
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-common ss-fw ss-2x mr-4"></i>
              Fertile Ground


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Enchantment — Aura
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.45

                </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.15
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="87817"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_87817" src="/boxset_card/87817?collection_id=13&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="99470"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              278
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-ecl 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.30

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.44

                    <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">
                $0.09
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.38
            </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="99470"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_99470" src="/boxset_card/99470?collection_id=13&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="14335"
          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">
              834
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-clb ss-common ss-fw ss-2x mr-4"></i>
              Search for Tomorrow


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </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">
                      ↓
                      7%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.15
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.11
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="14335"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_14335" src="/boxset_card/14335?collection_id=13&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="53010"
          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">
              113
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb2 ss-rare ss-fw ss-2x mr-4"></i>
              Thespian&#39;s Stage


            </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.40

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      8%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.09
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.37
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="53010"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_53010" src="/boxset_card/53010?collection_id=13&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="99468"
          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-ecl ss-common ss-fw ss-2x mr-4"></i>
              Swamp


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Basic Land — Swamp
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.40

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.50
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.33
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="99468"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_99468" src="/boxset_card/99468?collection_id=13&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="61264"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              278
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-rvr ss-common ss-fw ss-2x mr-4"></i>
              Golgari Guildgate


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land — Gate
            </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.37

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.12
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="61264"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_61264" src="/boxset_card/61264?collection_id=13&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="10641"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              275
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c19 ss-common ss-fw ss-2x mr-4"></i>
              Simic Guildgate


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land — Gate
            </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.34

                    <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.07
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="10641"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_10641" src="/boxset_card/10641?collection_id=13&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="99467"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              275
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-ecl ss-common ss-fw ss-2x mr-4"></i>
              Island


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Basic Land — Island
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.33

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.60
            </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="99467"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_99467" src="/boxset_card/99467?collection_id=13&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12671"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              289
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-clb ss-rare ss-fw ss-2x mr-4"></i>
              Nine-Fingers Keene


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Human Rogue
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.32

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.03
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.26
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="12671"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12671" src="/boxset_card/12671?collection_id=13&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="89681"
          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">
              114
            </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>
              Mind Stone


            </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.32

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.20
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="89681"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_89681" src="/boxset_card/89681?collection_id=13&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="60859"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              151
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-rvr ss-common ss-fw ss-2x mr-4"></i>
              Open the Gates


            </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-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.31

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      15%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.01
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.07
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="60859"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_60859" src="/boxset_card/60859?collection_id=13&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="89717"
          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">
              127
            </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-common ss-fw ss-2x mr-4"></i>
              Dimir Guildgate


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land — Gate
            </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.30

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.01
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="89717"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_89717" src="/boxset_card/89717?collection_id=13&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="80337"
          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">
              E01-25
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-common ss-fw ss-2x mr-4"></i>
              Ior Ruin Expedition


            </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-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.29

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="80337"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_80337" src="/boxset_card/80337?collection_id=13&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12497"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              232
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-clb ss-uncommon ss-fw ss-2x mr-4"></i>
              Explore the Underdark


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-4'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.21

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      5%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.07
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.11
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="12497"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12497" src="/boxset_card/12497?collection_id=13&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 48 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>