<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="21" 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="49474"
  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">
            Misty Rainforest
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $38.24
          </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="Misty Rainforest" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/8/88231c0d-0cc8-44ec-bf95-81d1710ac141.jpg?1783926795" />

        <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">
            Misty Rainforest
        </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="Misty Rainforest" src="https://cards.scryfall.io/large/front/8/8/88231c0d-0cc8-44ec-bf95-81d1710ac141.jpg?1783926795" />
    </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">
                $38.24
              </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">
                $45.45
              </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">$27.00</span>
              <span class="text-xs text-grey-text">Credit: $35.10</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:38.77},{&quot;2026-06-14&quot;:39.86},{&quot;2026-06-15&quot;:39.86},{&quot;2026-06-16&quot;:39.86},{&quot;2026-06-17&quot;:39.86},{&quot;2026-06-18&quot;:39.86},{&quot;2026-06-19&quot;:39.86},{&quot;2026-06-20&quot;:39.86},{&quot;2026-06-21&quot;:39.86},{&quot;2026-06-22&quot;:39.86},{&quot;2026-06-23&quot;:39.86},{&quot;2026-06-24&quot;:39.86},{&quot;2026-06-25&quot;:40.9},{&quot;2026-06-26&quot;:40.9},{&quot;2026-06-27&quot;:40.9},{&quot;2026-06-28&quot;:40.9},{&quot;2026-06-29&quot;:40.9},{&quot;2026-06-30&quot;:40.9},{&quot;2026-07-01&quot;:41.55},{&quot;2026-07-02&quot;:41.55},{&quot;2026-07-03&quot;:41.55},{&quot;2026-07-04&quot;:41.55},{&quot;2026-07-05&quot;:41.8},{&quot;2026-07-06&quot;:41.8},{&quot;2026-07-07&quot;:42.53},{&quot;2026-07-08&quot;:42.53},{&quot;2026-07-09&quot;:42.71},{&quot;2026-07-10&quot;:42.71},{&quot;2026-07-11&quot;:42.71},{&quot;2026-07-12&quot;:42.71},{&quot;2026-07-13&quot;:42.71},{&quot;2026-07-14&quot;:43.17},{&quot;2026-07-15&quot;:43.17},{&quot;2026-07-16&quot;:43.17},{&quot;2026-07-17&quot;:43.17},{&quot;2026-07-18&quot;:43.17},{&quot;2026-07-19&quot;:43.17},{&quot;2026-07-20&quot;:43.17},{&quot;2026-07-21&quot;:43.17},{&quot;2026-07-22&quot;:43.17},{&quot;2026-07-23&quot;:43.17},{&quot;2026-07-24&quot;:43.61},{&quot;2026-07-25&quot;:43.61},{&quot;2026-07-26&quot;:43.61},{&quot;2026-07-27&quot;:43.61},{&quot;2026-07-28&quot;:43.61},{&quot;2026-07-29&quot;:43.61},{&quot;2026-07-30&quot;:43.61},{&quot;2026-07-31&quot;:43.61},{&quot;2026-08-01&quot;:43.61},{&quot;2026-08-02&quot;:43.61},{&quot;2026-08-03&quot;:43.61},{&quot;2026-08-04&quot;:43.61},{&quot;2026-08-05&quot;:43.61},{&quot;2026-08-07&quot;:43.89},{&quot;2026-08-08&quot;:43.89},{&quot;2026-08-09&quot;:43.89},{&quot;2026-08-10&quot;:43.68},{&quot;2026-08-11&quot;:43.66},{&quot;2026-08-12&quot;:43.66},{&quot;2026-08-13&quot;:43.66},{&quot;2026-08-14&quot;:43.66},{&quot;2026-08-15&quot;:43.66},{&quot;2026-08-16&quot;:43.66},{&quot;2026-08-17&quot;:43.79},{&quot;2026-08-18&quot;:44.08},{&quot;2026-08-19&quot;:44.45},{&quot;2026-08-20&quot;:44.45},{&quot;2026-08-21&quot;:44.45},{&quot;2026-08-22&quot;:44.45},{&quot;2026-08-23&quot;:44.45},{&quot;2026-08-24&quot;:44.45},{&quot;2026-08-25&quot;:44.83},{&quot;2026-08-26&quot;:44.83},{&quot;2026-08-27&quot;:44.83},{&quot;2026-08-28&quot;:44.83},{&quot;2026-08-29&quot;:44.83},{&quot;2026-08-30&quot;:44.83},{&quot;2026-08-31&quot;:44.83},{&quot;2026-09-01&quot;:44.83},{&quot;2026-09-02&quot;:44.83},{&quot;2026-09-03&quot;:44.83},{&quot;2026-09-04&quot;:44.75},{&quot;2026-09-05&quot;:45.02},{&quot;2026-09-06&quot;:45.02},{&quot;2026-09-07&quot;:45.02},{&quot;2026-09-08&quot;:45.35},{&quot;2026-09-09&quot;:45.35},{&quot;2026-09-10&quot;:45.35},{&quot;2026-09-11&quot;:45.45}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:37.51},{&quot;2026-06-14&quot;:37.75},{&quot;2026-06-15&quot;:37.39},{&quot;2026-06-16&quot;:37.32},{&quot;2026-06-17&quot;:36.96},{&quot;2026-06-18&quot;:37.9},{&quot;2026-06-19&quot;:37.39},{&quot;2026-06-20&quot;:36.92},{&quot;2026-06-21&quot;:36.83},{&quot;2026-06-22&quot;:37.42},{&quot;2026-06-23&quot;:37.2},{&quot;2026-06-24&quot;:37.43},{&quot;2026-06-25&quot;:37.84},{&quot;2026-06-26&quot;:35.98},{&quot;2026-06-27&quot;:35.34},{&quot;2026-06-28&quot;:35.54},{&quot;2026-06-29&quot;:35.29},{&quot;2026-06-30&quot;:35.54},{&quot;2026-07-01&quot;:36.21},{&quot;2026-07-02&quot;:37.25},{&quot;2026-07-03&quot;:36.38},{&quot;2026-07-04&quot;:36.49},{&quot;2026-07-05&quot;:35.37},{&quot;2026-07-06&quot;:35.81},{&quot;2026-07-07&quot;:36.17},{&quot;2026-07-08&quot;:35.45},{&quot;2026-07-09&quot;:35.64},{&quot;2026-07-10&quot;:35.7},{&quot;2026-07-11&quot;:35.73},{&quot;2026-07-12&quot;:35.17},{&quot;2026-07-13&quot;:35.95},{&quot;2026-07-14&quot;:36.41},{&quot;2026-07-15&quot;:36.6},{&quot;2026-07-16&quot;:36.36},{&quot;2026-07-17&quot;:35.72},{&quot;2026-07-18&quot;:34.88},{&quot;2026-07-19&quot;:35.2},{&quot;2026-07-20&quot;:35.37},{&quot;2026-07-21&quot;:35.67},{&quot;2026-07-22&quot;:35.71},{&quot;2026-07-23&quot;:36.05},{&quot;2026-07-24&quot;:36.92},{&quot;2026-07-25&quot;:37.12},{&quot;2026-07-26&quot;:36.49},{&quot;2026-07-27&quot;:36.71},{&quot;2026-07-28&quot;:36.34},{&quot;2026-07-29&quot;:37.32},{&quot;2026-07-30&quot;:37.98},{&quot;2026-07-31&quot;:38.26},{&quot;2026-08-01&quot;:38.3},{&quot;2026-08-02&quot;:38.61},{&quot;2026-08-03&quot;:37.34},{&quot;2026-08-04&quot;:36.5},{&quot;2026-08-05&quot;:35.6},{&quot;2026-08-07&quot;:36.02},{&quot;2026-08-08&quot;:36.26},{&quot;2026-08-09&quot;:36.7},{&quot;2026-08-10&quot;:37.54},{&quot;2026-08-11&quot;:37.08},{&quot;2026-08-12&quot;:37.09},{&quot;2026-08-13&quot;:37.2},{&quot;2026-08-14&quot;:37.25},{&quot;2026-08-15&quot;:37.28},{&quot;2026-08-16&quot;:37.12},{&quot;2026-08-17&quot;:37.53},{&quot;2026-08-18&quot;:38.07},{&quot;2026-08-19&quot;:38.45},{&quot;2026-08-20&quot;:38.82},{&quot;2026-08-21&quot;:38.62},{&quot;2026-08-22&quot;:37.99},{&quot;2026-08-23&quot;:36.71},{&quot;2026-08-24&quot;:36.29},{&quot;2026-08-25&quot;:35.9},{&quot;2026-08-26&quot;:35.94},{&quot;2026-08-27&quot;:36.33},{&quot;2026-08-28&quot;:36.03},{&quot;2026-08-29&quot;:36.03},{&quot;2026-08-30&quot;:35.94},{&quot;2026-08-31&quot;:36.33},{&quot;2026-09-01&quot;:36.13},{&quot;2026-09-02&quot;:36.06},{&quot;2026-09-03&quot;:36.5},{&quot;2026-09-04&quot;:36.86},{&quot;2026-09-05&quot;:36.74},{&quot;2026-09-06&quot;:37.2},{&quot;2026-09-07&quot;:37.56},{&quot;2026-09-08&quot;:37.12},{&quot;2026-09-09&quot;:37.73},{&quot;2026-09-10&quot;:37.76},{&quot;2026-09-11&quot;:38.24}]}"
        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="41706"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-neo ss-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">
            Kodama of the West Tree
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Kodama of the West Tree" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/e/f/ef1e1dff-b559-441d-8df3-b6a418066aca.jpg?1783923845" />

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

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Kodama of the West Tree
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Kodama of the West Tree" src="https://cards.scryfall.io/large/front/e/f/ef1e1dff-b559-441d-8df3-b6a418066aca.jpg?1783923845" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:25.83},{&quot;2026-06-11&quot;:25.83},{&quot;2026-06-12&quot;:25.83},{&quot;2026-06-13&quot;:25.72},{&quot;2026-06-14&quot;:25.64},{&quot;2026-06-15&quot;:25.59},{&quot;2026-06-16&quot;:25.47},{&quot;2026-06-17&quot;:25.47},{&quot;2026-06-18&quot;:25.37},{&quot;2026-06-19&quot;:25.37},{&quot;2026-06-20&quot;:23.72},{&quot;2026-06-21&quot;:23.72},{&quot;2026-06-22&quot;:23.72},{&quot;2026-06-23&quot;:23.61},{&quot;2026-06-24&quot;:23.61},{&quot;2026-06-25&quot;:23.61},{&quot;2026-06-26&quot;:23.61},{&quot;2026-06-27&quot;:23.96},{&quot;2026-06-28&quot;:23.89},{&quot;2026-06-29&quot;:23.89},{&quot;2026-06-30&quot;:23.89},{&quot;2026-07-01&quot;:24.05},{&quot;2026-07-02&quot;:24.05},{&quot;2026-07-03&quot;:23.65},{&quot;2026-07-04&quot;:23.65},{&quot;2026-07-05&quot;:22.7},{&quot;2026-07-06&quot;:22.59},{&quot;2026-07-07&quot;:22.81},{&quot;2026-07-08&quot;:23.02},{&quot;2026-07-09&quot;:23.23},{&quot;2026-07-10&quot;:23.23},{&quot;2026-07-11&quot;:23.23},{&quot;2026-07-12&quot;:23.23},{&quot;2026-07-13&quot;:23.23},{&quot;2026-07-14&quot;:22.57},{&quot;2026-07-15&quot;:22.58},{&quot;2026-07-16&quot;:23.32},{&quot;2026-07-17&quot;:23.32},{&quot;2026-07-18&quot;:23.32},{&quot;2026-07-19&quot;:23.32},{&quot;2026-07-20&quot;:24.13},{&quot;2026-07-21&quot;:24.88},{&quot;2026-07-23&quot;:24.86},{&quot;2026-07-25&quot;:24.56},{&quot;2026-07-26&quot;:24.56},{&quot;2026-07-27&quot;:24.56},{&quot;2026-07-29&quot;:24.15},{&quot;2026-07-30&quot;:24.15},{&quot;2026-07-31&quot;:24.15},{&quot;2026-08-01&quot;:24.15},{&quot;2026-08-02&quot;:24.15},{&quot;2026-08-03&quot;:23.87},{&quot;2026-08-04&quot;:23.97},{&quot;2026-08-05&quot;:23.71},{&quot;2026-08-07&quot;:23.91},{&quot;2026-08-08&quot;:23.91},{&quot;2026-08-09&quot;:24.11},{&quot;2026-08-10&quot;:24.11},{&quot;2026-08-11&quot;:23.6},{&quot;2026-08-12&quot;:23.7},{&quot;2026-08-13&quot;:23.7},{&quot;2026-08-14&quot;:23.7},{&quot;2026-08-15&quot;:23.7},{&quot;2026-08-16&quot;:23.7},{&quot;2026-08-17&quot;:23.7},{&quot;2026-08-18&quot;:23.7},{&quot;2026-08-19&quot;:23.7},{&quot;2026-08-20&quot;:23.7},{&quot;2026-08-21&quot;:23.33},{&quot;2026-08-22&quot;:23.33},{&quot;2026-08-23&quot;:23.33},{&quot;2026-08-24&quot;:23.33},{&quot;2026-08-25&quot;:23.33},{&quot;2026-08-26&quot;:23.29},{&quot;2026-08-27&quot;:23.29},{&quot;2026-08-28&quot;:23.29},{&quot;2026-08-29&quot;:23.29},{&quot;2026-08-30&quot;:23.4},{&quot;2026-08-31&quot;:23.4},{&quot;2026-09-01&quot;:23.4},{&quot;2026-09-02&quot;:23.53},{&quot;2026-09-03&quot;:23.19},{&quot;2026-09-04&quot;:23.19},{&quot;2026-09-05&quot;:23.19},{&quot;2026-09-06&quot;:23.19},{&quot;2026-09-07&quot;:22.64},{&quot;2026-09-08&quot;:22.64},{&quot;2026-09-09&quot;:22.64},{&quot;2026-09-10&quot;:22.84},{&quot;2026-09-11&quot;:22.84}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:22.7},{&quot;2026-06-11&quot;:22.36},{&quot;2026-06-12&quot;:22.36},{&quot;2026-06-13&quot;:22.25},{&quot;2026-06-14&quot;:22.35},{&quot;2026-06-15&quot;:21.97},{&quot;2026-06-16&quot;:22.21},{&quot;2026-06-17&quot;:21.93},{&quot;2026-06-18&quot;:21.77},{&quot;2026-06-19&quot;:21.51},{&quot;2026-06-20&quot;:21.36},{&quot;2026-06-21&quot;:21.68},{&quot;2026-06-22&quot;:21.94},{&quot;2026-06-23&quot;:21.72},{&quot;2026-06-24&quot;:21.84},{&quot;2026-06-25&quot;:22.12},{&quot;2026-06-26&quot;:21.15},{&quot;2026-06-27&quot;:22.13},{&quot;2026-06-28&quot;:22.07},{&quot;2026-06-29&quot;:22.27},{&quot;2026-06-30&quot;:22.39},{&quot;2026-07-01&quot;:22.33},{&quot;2026-07-02&quot;:22.33},{&quot;2026-07-03&quot;:22.97},{&quot;2026-07-04&quot;:21.36},{&quot;2026-07-05&quot;:21.47},{&quot;2026-07-06&quot;:21.26},{&quot;2026-07-07&quot;:20.58},{&quot;2026-07-08&quot;:20.45},{&quot;2026-07-09&quot;:19.95},{&quot;2026-07-10&quot;:19.77},{&quot;2026-07-11&quot;:19.99},{&quot;2026-07-12&quot;:21.13},{&quot;2026-07-13&quot;:20.77},{&quot;2026-07-14&quot;:21.85},{&quot;2026-07-15&quot;:21.86},{&quot;2026-07-16&quot;:21.84},{&quot;2026-07-17&quot;:23.04},{&quot;2026-07-18&quot;:23.98},{&quot;2026-07-19&quot;:24.13},{&quot;2026-07-20&quot;:24.24},{&quot;2026-07-21&quot;:24.26},{&quot;2026-07-23&quot;:23.8},{&quot;2026-07-25&quot;:24.18},{&quot;2026-07-26&quot;:22.73},{&quot;2026-07-27&quot;:22.37},{&quot;2026-07-29&quot;:21.71},{&quot;2026-07-30&quot;:21.63},{&quot;2026-07-31&quot;:20.99},{&quot;2026-08-01&quot;:20.99},{&quot;2026-08-02&quot;:20.96},{&quot;2026-08-03&quot;:21.0},{&quot;2026-08-04&quot;:20.78},{&quot;2026-08-05&quot;:20.28},{&quot;2026-08-07&quot;:21.05},{&quot;2026-08-08&quot;:20.94},{&quot;2026-08-09&quot;:21.19},{&quot;2026-08-10&quot;:21.25},{&quot;2026-08-11&quot;:21.25},{&quot;2026-08-12&quot;:21.01},{&quot;2026-08-13&quot;:21.05},{&quot;2026-08-14&quot;:21.32},{&quot;2026-08-15&quot;:21.23},{&quot;2026-08-16&quot;:21.2},{&quot;2026-08-17&quot;:21.08},{&quot;2026-08-18&quot;:20.51},{&quot;2026-08-19&quot;:20.67},{&quot;2026-08-20&quot;:20.67},{&quot;2026-08-21&quot;:20.54},{&quot;2026-08-22&quot;:20.19},{&quot;2026-08-23&quot;:20.24},{&quot;2026-08-24&quot;:20.44},{&quot;2026-08-25&quot;:20.44},{&quot;2026-08-26&quot;:20.26},{&quot;2026-08-27&quot;:20.28},{&quot;2026-08-28&quot;:20.28},{&quot;2026-08-29&quot;:20.28},{&quot;2026-08-30&quot;:20.49},{&quot;2026-08-31&quot;:20.66},{&quot;2026-09-01&quot;:20.66},{&quot;2026-09-02&quot;:20.68},{&quot;2026-09-03&quot;:20.67},{&quot;2026-09-04&quot;:20.88},{&quot;2026-09-05&quot;:20.57},{&quot;2026-09-06&quot;:20.8},{&quot;2026-09-07&quot;:20.48},{&quot;2026-09-08&quot;:20.24},{&quot;2026-09-09&quot;:20.26},{&quot;2026-09-10&quot;:20.17},{&quot;2026-09-11&quot;:20.26}]}"
        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="21269"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2x2 ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

        <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">
            Vedalken Orrery
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-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="Vedalken Orrery" src="https://cards.scryfall.io/large/front/c/9/c91adeef-c1d5-4b14-9d79-ddd0dc035786.jpg?1783921753" />
    </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">
                $17.97
              </span>

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-08&quot;:25.73},{&quot;2026-06-10&quot;:25.44},{&quot;2026-06-11&quot;:25.44},{&quot;2026-06-12&quot;:25.15},{&quot;2026-06-13&quot;:25.15},{&quot;2026-06-14&quot;:25.15},{&quot;2026-06-15&quot;:25.15},{&quot;2026-06-16&quot;:25.15},{&quot;2026-06-17&quot;:25.15},{&quot;2026-06-18&quot;:25.52},{&quot;2026-06-19&quot;:25.52},{&quot;2026-06-20&quot;:25.52},{&quot;2026-06-21&quot;:25.52},{&quot;2026-06-22&quot;:25.52},{&quot;2026-06-24&quot;:25.52},{&quot;2026-06-25&quot;:25.52},{&quot;2026-06-26&quot;:24.25},{&quot;2026-06-27&quot;:25.52},{&quot;2026-06-28&quot;:25.52},{&quot;2026-06-29&quot;:25.52},{&quot;2026-06-30&quot;:25.52},{&quot;2026-07-01&quot;:24.63},{&quot;2026-07-02&quot;:24.63},{&quot;2026-07-03&quot;:24.17},{&quot;2026-07-04&quot;:24.17},{&quot;2026-07-05&quot;:24.17},{&quot;2026-07-06&quot;:24.19},{&quot;2026-07-07&quot;:24.19},{&quot;2026-07-08&quot;:24.19},{&quot;2026-07-09&quot;:24.19},{&quot;2026-07-10&quot;:24.19},{&quot;2026-07-11&quot;:24.19},{&quot;2026-07-12&quot;:24.15},{&quot;2026-07-13&quot;:24.15},{&quot;2026-07-14&quot;:23.53},{&quot;2026-07-15&quot;:23.53},{&quot;2026-07-16&quot;:22.45},{&quot;2026-07-17&quot;:22.09},{&quot;2026-07-18&quot;:22.09},{&quot;2026-07-19&quot;:22.09},{&quot;2026-07-20&quot;:21.72},{&quot;2026-07-21&quot;:20.7},{&quot;2026-07-23&quot;:20.7},{&quot;2026-07-25&quot;:19.59},{&quot;2026-07-26&quot;:19.3},{&quot;2026-07-27&quot;:18.82},{&quot;2026-07-29&quot;:18.4},{&quot;2026-07-30&quot;:18.23},{&quot;2026-07-31&quot;:18.23},{&quot;2026-08-01&quot;:18.23},{&quot;2026-08-02&quot;:18.04},{&quot;2026-08-03&quot;:17.81},{&quot;2026-08-04&quot;:17.81},{&quot;2026-08-05&quot;:17.81},{&quot;2026-08-07&quot;:17.95},{&quot;2026-08-08&quot;:17.94},{&quot;2026-08-09&quot;:17.94},{&quot;2026-08-10&quot;:17.94},{&quot;2026-08-11&quot;:17.77},{&quot;2026-08-12&quot;:17.77},{&quot;2026-08-13&quot;:17.77},{&quot;2026-08-14&quot;:17.87},{&quot;2026-08-15&quot;:17.87},{&quot;2026-08-16&quot;:17.87},{&quot;2026-08-17&quot;:17.97},{&quot;2026-08-18&quot;:17.97},{&quot;2026-08-19&quot;:18.07},{&quot;2026-08-20&quot;:18.07},{&quot;2026-08-21&quot;:18.4},{&quot;2026-08-22&quot;:18.48},{&quot;2026-08-23&quot;:18.48},{&quot;2026-08-24&quot;:18.48},{&quot;2026-08-25&quot;:18.48},{&quot;2026-08-26&quot;:18.66},{&quot;2026-08-27&quot;:18.66},{&quot;2026-08-28&quot;:18.8},{&quot;2026-08-29&quot;:18.8},{&quot;2026-08-30&quot;:18.8},{&quot;2026-08-31&quot;:18.78},{&quot;2026-09-01&quot;:18.78},{&quot;2026-09-02&quot;:18.78},{&quot;2026-09-03&quot;:18.78},{&quot;2026-09-04&quot;:18.89},{&quot;2026-09-05&quot;:18.89},{&quot;2026-09-06&quot;:18.89},{&quot;2026-09-07&quot;:18.61},{&quot;2026-09-08&quot;:18.65},{&quot;2026-09-09&quot;:18.72},{&quot;2026-09-10&quot;:18.72},{&quot;2026-09-11&quot;:18.7}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:18.79},{&quot;2026-06-10&quot;:18.79},{&quot;2026-06-11&quot;:18.83},{&quot;2026-06-12&quot;:18.83},{&quot;2026-06-13&quot;:18.83},{&quot;2026-06-14&quot;:18.86},{&quot;2026-06-15&quot;:18.89},{&quot;2026-06-16&quot;:18.82},{&quot;2026-06-17&quot;:18.94},{&quot;2026-06-18&quot;:18.93},{&quot;2026-06-19&quot;:18.94},{&quot;2026-06-20&quot;:18.87},{&quot;2026-06-21&quot;:18.88},{&quot;2026-06-22&quot;:18.87},{&quot;2026-06-24&quot;:19.12},{&quot;2026-06-25&quot;:19.16},{&quot;2026-06-26&quot;:18.41},{&quot;2026-06-27&quot;:19.2},{&quot;2026-06-28&quot;:19.2},{&quot;2026-06-29&quot;:19.3},{&quot;2026-06-30&quot;:19.3},{&quot;2026-07-01&quot;:19.34},{&quot;2026-07-02&quot;:19.34},{&quot;2026-07-03&quot;:19.38},{&quot;2026-07-04&quot;:19.55},{&quot;2026-07-05&quot;:19.55},{&quot;2026-07-06&quot;:19.55},{&quot;2026-07-07&quot;:19.56},{&quot;2026-07-08&quot;:19.56},{&quot;2026-07-09&quot;:19.53},{&quot;2026-07-10&quot;:19.53},{&quot;2026-07-11&quot;:19.53},{&quot;2026-07-12&quot;:19.53},{&quot;2026-07-13&quot;:19.63},{&quot;2026-07-14&quot;:19.6},{&quot;2026-07-15&quot;:19.69},{&quot;2026-07-16&quot;:19.69},{&quot;2026-07-17&quot;:19.76},{&quot;2026-07-18&quot;:19.76},{&quot;2026-07-19&quot;:19.76},{&quot;2026-07-20&quot;:19.76},{&quot;2026-07-21&quot;:19.52},{&quot;2026-07-23&quot;:19.37},{&quot;2026-07-25&quot;:19.29},{&quot;2026-07-26&quot;:19.12},{&quot;2026-07-27&quot;:19.08},{&quot;2026-07-29&quot;:18.94},{&quot;2026-07-30&quot;:18.94},{&quot;2026-07-31&quot;:18.94},{&quot;2026-08-01&quot;:18.94},{&quot;2026-08-02&quot;:18.94},{&quot;2026-08-03&quot;:18.86},{&quot;2026-08-04&quot;:18.75},{&quot;2026-08-05&quot;:18.67},{&quot;2026-08-07&quot;:18.67},{&quot;2026-08-08&quot;:18.67},{&quot;2026-08-09&quot;:18.49},{&quot;2026-08-10&quot;:18.49},{&quot;2026-08-11&quot;:18.52},{&quot;2026-08-12&quot;:18.52},{&quot;2026-08-13&quot;:18.5},{&quot;2026-08-14&quot;:18.5},{&quot;2026-08-15&quot;:18.5},{&quot;2026-08-16&quot;:18.26},{&quot;2026-08-17&quot;:18.26},{&quot;2026-08-18&quot;:18.09},{&quot;2026-08-19&quot;:18.13},{&quot;2026-08-20&quot;:18.13},{&quot;2026-08-21&quot;:18.13},{&quot;2026-08-22&quot;:18.5},{&quot;2026-08-23&quot;:18.5},{&quot;2026-08-24&quot;:18.5},{&quot;2026-08-25&quot;:18.5},{&quot;2026-08-26&quot;:18.48},{&quot;2026-08-27&quot;:18.48},{&quot;2026-08-28&quot;:18.48},{&quot;2026-08-29&quot;:18.48},{&quot;2026-08-30&quot;:18.48},{&quot;2026-08-31&quot;:18.53},{&quot;2026-09-01&quot;:18.53},{&quot;2026-09-02&quot;:18.53},{&quot;2026-09-03&quot;:18.42},{&quot;2026-09-04&quot;:18.42},{&quot;2026-09-05&quot;:18.42},{&quot;2026-09-06&quot;:18.42},{&quot;2026-09-07&quot;:18.03},{&quot;2026-09-08&quot;:18.03},{&quot;2026-09-09&quot;:18.03},{&quot;2026-09-10&quot;:18.03},{&quot;2026-09-11&quot;:17.97}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="67444"
  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-spg 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">
            Swords to Plowshares
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Swords to Plowshares" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/0/80590c26-285e-4b7b-9ee5-62956dba4ad7.jpg?1783909914" />

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Swords to Plowshares" src="https://cards.scryfall.io/large/front/8/0/80590c26-285e-4b7b-9ee5-62956dba4ad7.jpg?1783909914" />
    </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">
                $17.86
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-11&quot;:59.52},{&quot;2026-06-12&quot;:59.52},{&quot;2026-06-13&quot;:59.52},{&quot;2026-06-14&quot;:59.52},{&quot;2026-06-15&quot;:59.52},{&quot;2026-06-16&quot;:60.08},{&quot;2026-06-17&quot;:59.61},{&quot;2026-06-18&quot;:60.26},{&quot;2026-06-19&quot;:60.91},{&quot;2026-06-20&quot;:60.91},{&quot;2026-06-21&quot;:60.91},{&quot;2026-06-22&quot;:60.91},{&quot;2026-06-23&quot;:60.91},{&quot;2026-06-24&quot;:60.91},{&quot;2026-06-25&quot;:60.91},{&quot;2026-06-26&quot;:60.91},{&quot;2026-06-27&quot;:60.91},{&quot;2026-06-28&quot;:60.91},{&quot;2026-06-29&quot;:60.91},{&quot;2026-06-30&quot;:60.91},{&quot;2026-07-01&quot;:60.91},{&quot;2026-07-02&quot;:61.42},{&quot;2026-07-03&quot;:61.42},{&quot;2026-07-04&quot;:61.42},{&quot;2026-07-05&quot;:61.42},{&quot;2026-07-06&quot;:61.42},{&quot;2026-07-07&quot;:61.42},{&quot;2026-07-08&quot;:62.1},{&quot;2026-07-09&quot;:62.1},{&quot;2026-07-10&quot;:62.1},{&quot;2026-07-11&quot;:62.1},{&quot;2026-07-12&quot;:62.1},{&quot;2026-07-13&quot;:62.1},{&quot;2026-07-14&quot;:62.1},{&quot;2026-07-15&quot;:62.1},{&quot;2026-07-16&quot;:62.1},{&quot;2026-07-17&quot;:62.1},{&quot;2026-07-18&quot;:62.1},{&quot;2026-07-19&quot;:63.12},{&quot;2026-07-20&quot;:63.12},{&quot;2026-07-21&quot;:63.41},{&quot;2026-07-23&quot;:63.41},{&quot;2026-07-25&quot;:63.41},{&quot;2026-07-26&quot;:63.98},{&quot;2026-07-27&quot;:64.02},{&quot;2026-07-28&quot;:63.81},{&quot;2026-07-29&quot;:63.81},{&quot;2026-07-30&quot;:63.81},{&quot;2026-07-31&quot;:63.81},{&quot;2026-08-01&quot;:63.81},{&quot;2026-08-02&quot;:63.81},{&quot;2026-08-03&quot;:63.81},{&quot;2026-08-04&quot;:63.38},{&quot;2026-08-05&quot;:63.38},{&quot;2026-08-07&quot;:63.38},{&quot;2026-08-08&quot;:63.42},{&quot;2026-08-09&quot;:63.57},{&quot;2026-08-10&quot;:63.57},{&quot;2026-08-11&quot;:63.57},{&quot;2026-08-12&quot;:63.57},{&quot;2026-08-13&quot;:63.57},{&quot;2026-08-14&quot;:63.72},{&quot;2026-08-15&quot;:63.72},{&quot;2026-08-16&quot;:63.72},{&quot;2026-08-17&quot;:63.72},{&quot;2026-08-18&quot;:63.72},{&quot;2026-08-19&quot;:63.72},{&quot;2026-08-20&quot;:63.72},{&quot;2026-08-21&quot;:64.04},{&quot;2026-08-22&quot;:64.04},{&quot;2026-08-23&quot;:64.04},{&quot;2026-08-24&quot;:64.04},{&quot;2026-08-25&quot;:64.04},{&quot;2026-08-26&quot;:64.04},{&quot;2026-08-27&quot;:64.04},{&quot;2026-08-28&quot;:64.04},{&quot;2026-08-29&quot;:64.04},{&quot;2026-08-30&quot;:64.04},{&quot;2026-08-31&quot;:64.04},{&quot;2026-09-01&quot;:64.04},{&quot;2026-09-02&quot;:64.29},{&quot;2026-09-03&quot;:64.29},{&quot;2026-09-04&quot;:64.29},{&quot;2026-09-05&quot;:64.29},{&quot;2026-09-06&quot;:64.29},{&quot;2026-09-07&quot;:64.29},{&quot;2026-09-08&quot;:64.29},{&quot;2026-09-09&quot;:64.29},{&quot;2026-09-10&quot;:64.29},{&quot;2026-09-11&quot;:64.29}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:16.85},{&quot;2026-06-12&quot;:16.98},{&quot;2026-06-13&quot;:16.53},{&quot;2026-06-14&quot;:17.08},{&quot;2026-06-15&quot;:17.08},{&quot;2026-06-16&quot;:16.99},{&quot;2026-06-17&quot;:16.99},{&quot;2026-06-18&quot;:16.99},{&quot;2026-06-19&quot;:16.99},{&quot;2026-06-20&quot;:16.99},{&quot;2026-06-21&quot;:16.99},{&quot;2026-06-22&quot;:16.99},{&quot;2026-06-23&quot;:16.99},{&quot;2026-06-24&quot;:16.7},{&quot;2026-06-25&quot;:16.27},{&quot;2026-06-26&quot;:16.34},{&quot;2026-06-27&quot;:16.39},{&quot;2026-06-28&quot;:16.39},{&quot;2026-06-29&quot;:16.39},{&quot;2026-06-30&quot;:16.45},{&quot;2026-07-01&quot;:16.33},{&quot;2026-07-02&quot;:16.39},{&quot;2026-07-03&quot;:16.66},{&quot;2026-07-04&quot;:16.66},{&quot;2026-07-05&quot;:16.23},{&quot;2026-07-06&quot;:16.19},{&quot;2026-07-07&quot;:16.32},{&quot;2026-07-08&quot;:16.32},{&quot;2026-07-09&quot;:16.54},{&quot;2026-07-10&quot;:16.63},{&quot;2026-07-11&quot;:16.63},{&quot;2026-07-12&quot;:16.63},{&quot;2026-07-13&quot;:16.5},{&quot;2026-07-14&quot;:16.53},{&quot;2026-07-15&quot;:16.73},{&quot;2026-07-16&quot;:16.73},{&quot;2026-07-17&quot;:16.73},{&quot;2026-07-18&quot;:16.57},{&quot;2026-07-19&quot;:16.74},{&quot;2026-07-20&quot;:16.6},{&quot;2026-07-21&quot;:16.6},{&quot;2026-07-23&quot;:16.6},{&quot;2026-07-25&quot;:16.6},{&quot;2026-07-26&quot;:16.6},{&quot;2026-07-27&quot;:16.82},{&quot;2026-07-28&quot;:16.82},{&quot;2026-07-29&quot;:16.82},{&quot;2026-07-30&quot;:16.82},{&quot;2026-07-31&quot;:16.78},{&quot;2026-08-01&quot;:16.78},{&quot;2026-08-02&quot;:16.78},{&quot;2026-08-03&quot;:16.82},{&quot;2026-08-04&quot;:16.7},{&quot;2026-08-05&quot;:16.74},{&quot;2026-08-07&quot;:16.65},{&quot;2026-08-08&quot;:16.65},{&quot;2026-08-09&quot;:16.79},{&quot;2026-08-10&quot;:16.95},{&quot;2026-08-11&quot;:16.95},{&quot;2026-08-12&quot;:16.98},{&quot;2026-08-13&quot;:16.98},{&quot;2026-08-14&quot;:16.98},{&quot;2026-08-15&quot;:16.98},{&quot;2026-08-16&quot;:17.09},{&quot;2026-08-17&quot;:16.95},{&quot;2026-08-18&quot;:16.95},{&quot;2026-08-19&quot;:16.95},{&quot;2026-08-20&quot;:16.95},{&quot;2026-08-21&quot;:17.09},{&quot;2026-08-22&quot;:17.46},{&quot;2026-08-23&quot;:17.46},{&quot;2026-08-24&quot;:17.31},{&quot;2026-08-25&quot;:17.31},{&quot;2026-08-26&quot;:17.31},{&quot;2026-08-27&quot;:17.34},{&quot;2026-08-28&quot;:17.34},{&quot;2026-08-29&quot;:17.34},{&quot;2026-08-30&quot;:17.89},{&quot;2026-08-31&quot;:17.89},{&quot;2026-09-01&quot;:17.89},{&quot;2026-09-02&quot;:17.74},{&quot;2026-09-03&quot;:17.51},{&quot;2026-09-04&quot;:17.51},{&quot;2026-09-05&quot;:17.44},{&quot;2026-09-06&quot;:17.44},{&quot;2026-09-07&quot;:17.44},{&quot;2026-09-08&quot;:17.44},{&quot;2026-09-09&quot;:17.44},{&quot;2026-09-10&quot;:17.48},{&quot;2026-09-11&quot;:17.86}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="5696"
  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-blb 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">
            Dawn&#39;s Truce
        </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">
              ↑
              10%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $13.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="Dawn&#39;s Truce" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/c/0cce7aec-f9b0-461b-8245-5286b741409d.jpg?1783910771" />

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

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
          </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="Dawn&#39;s Truce" src="https://cards.scryfall.io/large/front/0/c/0cce7aec-f9b0-461b-8245-5286b741409d.jpg?1783910771" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:19.84},{&quot;2026-06-14&quot;:19.74},{&quot;2026-06-15&quot;:19.62},{&quot;2026-06-16&quot;:19.64},{&quot;2026-06-17&quot;:19.42},{&quot;2026-06-18&quot;:19.42},{&quot;2026-06-19&quot;:19.41},{&quot;2026-06-20&quot;:19.46},{&quot;2026-06-21&quot;:19.46},{&quot;2026-06-22&quot;:19.46},{&quot;2026-06-23&quot;:19.46},{&quot;2026-06-24&quot;:19.71},{&quot;2026-06-25&quot;:19.87},{&quot;2026-06-26&quot;:19.87},{&quot;2026-06-27&quot;:19.87},{&quot;2026-06-28&quot;:19.87},{&quot;2026-06-29&quot;:19.84},{&quot;2026-06-30&quot;:19.87},{&quot;2026-07-01&quot;:20.03},{&quot;2026-07-02&quot;:19.99},{&quot;2026-07-03&quot;:19.99},{&quot;2026-07-04&quot;:20.24},{&quot;2026-07-05&quot;:20.43},{&quot;2026-07-06&quot;:20.43},{&quot;2026-07-07&quot;:20.54},{&quot;2026-07-08&quot;:20.41},{&quot;2026-07-09&quot;:20.41},{&quot;2026-07-10&quot;:20.49},{&quot;2026-07-11&quot;:20.69},{&quot;2026-07-12&quot;:20.83},{&quot;2026-07-13&quot;:20.83},{&quot;2026-07-14&quot;:20.81},{&quot;2026-07-15&quot;:20.85},{&quot;2026-07-16&quot;:20.85},{&quot;2026-07-17&quot;:20.85},{&quot;2026-07-18&quot;:20.74},{&quot;2026-07-19&quot;:20.78},{&quot;2026-07-20&quot;:20.78},{&quot;2026-07-21&quot;:20.93},{&quot;2026-07-22&quot;:20.93},{&quot;2026-07-23&quot;:20.93},{&quot;2026-07-24&quot;:20.93},{&quot;2026-07-25&quot;:20.93},{&quot;2026-07-26&quot;:21.01},{&quot;2026-07-27&quot;:21.01},{&quot;2026-07-28&quot;:20.96},{&quot;2026-07-29&quot;:21.04},{&quot;2026-07-30&quot;:21.04},{&quot;2026-07-31&quot;:21.04},{&quot;2026-08-01&quot;:21.04},{&quot;2026-08-02&quot;:21.04},{&quot;2026-08-03&quot;:21.01},{&quot;2026-08-04&quot;:21.05},{&quot;2026-08-05&quot;:21.05},{&quot;2026-08-07&quot;:21.03},{&quot;2026-08-08&quot;:21.03},{&quot;2026-08-09&quot;:21.1},{&quot;2026-08-10&quot;:21.17},{&quot;2026-08-11&quot;:21.17},{&quot;2026-08-12&quot;:21.17},{&quot;2026-08-13&quot;:21.27},{&quot;2026-08-14&quot;:21.27},{&quot;2026-08-15&quot;:21.27},{&quot;2026-08-16&quot;:21.56},{&quot;2026-08-17&quot;:21.56},{&quot;2026-08-18&quot;:21.69},{&quot;2026-08-19&quot;:21.85},{&quot;2026-08-20&quot;:21.84},{&quot;2026-08-21&quot;:21.9},{&quot;2026-08-22&quot;:21.86},{&quot;2026-08-23&quot;:21.93},{&quot;2026-08-24&quot;:21.93},{&quot;2026-08-25&quot;:22.03},{&quot;2026-08-26&quot;:22.03},{&quot;2026-08-27&quot;:22.03},{&quot;2026-08-28&quot;:22.03},{&quot;2026-08-29&quot;:22.03},{&quot;2026-08-30&quot;:21.96},{&quot;2026-08-31&quot;:21.98},{&quot;2026-09-01&quot;:21.98},{&quot;2026-09-02&quot;:21.98},{&quot;2026-09-03&quot;:22.08},{&quot;2026-09-04&quot;:22.04},{&quot;2026-09-05&quot;:22.04},{&quot;2026-09-06&quot;:22.04},{&quot;2026-09-07&quot;:22.04},{&quot;2026-09-08&quot;:21.9},{&quot;2026-09-09&quot;:21.9},{&quot;2026-09-10&quot;:21.94},{&quot;2026-09-11&quot;:21.94}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:11.35},{&quot;2026-06-14&quot;:11.45},{&quot;2026-06-15&quot;:11.24},{&quot;2026-06-16&quot;:11.27},{&quot;2026-06-17&quot;:11.23},{&quot;2026-06-18&quot;:11.27},{&quot;2026-06-19&quot;:11.36},{&quot;2026-06-20&quot;:11.43},{&quot;2026-06-21&quot;:11.42},{&quot;2026-06-22&quot;:11.32},{&quot;2026-06-23&quot;:11.26},{&quot;2026-06-24&quot;:11.42},{&quot;2026-06-25&quot;:11.52},{&quot;2026-06-26&quot;:10.14},{&quot;2026-06-27&quot;:11.55},{&quot;2026-06-28&quot;:11.69},{&quot;2026-06-29&quot;:11.69},{&quot;2026-06-30&quot;:11.69},{&quot;2026-07-01&quot;:12.09},{&quot;2026-07-02&quot;:12.1},{&quot;2026-07-03&quot;:12.29},{&quot;2026-07-04&quot;:12.09},{&quot;2026-07-05&quot;:12.05},{&quot;2026-07-06&quot;:12.04},{&quot;2026-07-07&quot;:12.11},{&quot;2026-07-08&quot;:11.76},{&quot;2026-07-09&quot;:11.83},{&quot;2026-07-10&quot;:11.74},{&quot;2026-07-11&quot;:11.88},{&quot;2026-07-12&quot;:12.02},{&quot;2026-07-13&quot;:12.09},{&quot;2026-07-14&quot;:12.46},{&quot;2026-07-15&quot;:12.72},{&quot;2026-07-16&quot;:12.21},{&quot;2026-07-17&quot;:11.87},{&quot;2026-07-18&quot;:11.86},{&quot;2026-07-19&quot;:11.78},{&quot;2026-07-20&quot;:12.0},{&quot;2026-07-21&quot;:12.04},{&quot;2026-07-22&quot;:12.23},{&quot;2026-07-23&quot;:12.48},{&quot;2026-07-24&quot;:12.57},{&quot;2026-07-25&quot;:12.66},{&quot;2026-07-26&quot;:12.61},{&quot;2026-07-27&quot;:12.29},{&quot;2026-07-28&quot;:12.53},{&quot;2026-07-29&quot;:12.56},{&quot;2026-07-30&quot;:12.44},{&quot;2026-07-31&quot;:12.68},{&quot;2026-08-01&quot;:12.63},{&quot;2026-08-02&quot;:12.63},{&quot;2026-08-03&quot;:12.94},{&quot;2026-08-04&quot;:12.42},{&quot;2026-08-05&quot;:12.43},{&quot;2026-08-07&quot;:12.21},{&quot;2026-08-08&quot;:12.52},{&quot;2026-08-09&quot;:12.54},{&quot;2026-08-10&quot;:12.78},{&quot;2026-08-11&quot;:12.75},{&quot;2026-08-12&quot;:12.48},{&quot;2026-08-13&quot;:12.53},{&quot;2026-08-14&quot;:12.96},{&quot;2026-08-15&quot;:12.86},{&quot;2026-08-16&quot;:12.82},{&quot;2026-08-17&quot;:12.48},{&quot;2026-08-18&quot;:12.38},{&quot;2026-08-19&quot;:12.29},{&quot;2026-08-20&quot;:12.53},{&quot;2026-08-21&quot;:12.34},{&quot;2026-08-22&quot;:12.48},{&quot;2026-08-23&quot;:12.29},{&quot;2026-08-24&quot;:12.55},{&quot;2026-08-25&quot;:12.55},{&quot;2026-08-26&quot;:12.31},{&quot;2026-08-27&quot;:11.99},{&quot;2026-08-28&quot;:12.09},{&quot;2026-08-29&quot;:12.09},{&quot;2026-08-30&quot;:12.08},{&quot;2026-08-31&quot;:12.31},{&quot;2026-09-01&quot;:12.36},{&quot;2026-09-02&quot;:12.35},{&quot;2026-09-03&quot;:12.35},{&quot;2026-09-04&quot;:12.12},{&quot;2026-09-05&quot;:12.61},{&quot;2026-09-06&quot;:13.25},{&quot;2026-09-07&quot;:13.24},{&quot;2026-09-08&quot;:13.23},{&quot;2026-09-09&quot;:13.12},{&quot;2026-09-10&quot;:13.62},{&quot;2026-09-11&quot;:13.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="69227"
  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-snc 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">
            Spara&#39;s Headquarters
        </span>


      </div>

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

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

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

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

        <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">
            Spara&#39;s Headquarters
        </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 Plains 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="Spara&#39;s Headquarters" src="https://cards.scryfall.io/large/front/0/d/0ddd6093-eb29-4a1a-a0af-debb86c9cadd.jpg?1783923012" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $15.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-08&quot;:16.05},{&quot;2026-06-10&quot;:16.05},{&quot;2026-06-11&quot;:16.05},{&quot;2026-06-12&quot;:16.05},{&quot;2026-06-13&quot;:16.05},{&quot;2026-06-14&quot;:16.05},{&quot;2026-06-15&quot;:16.12},{&quot;2026-06-16&quot;:16.12},{&quot;2026-06-17&quot;:16.12},{&quot;2026-06-18&quot;:16.12},{&quot;2026-06-19&quot;:16.12},{&quot;2026-06-20&quot;:16.12},{&quot;2026-06-21&quot;:16.17},{&quot;2026-06-22&quot;:16.17},{&quot;2026-06-24&quot;:16.17},{&quot;2026-06-25&quot;:16.17},{&quot;2026-06-26&quot;:16.21},{&quot;2026-06-27&quot;:16.21},{&quot;2026-06-28&quot;:16.21},{&quot;2026-06-29&quot;:16.21},{&quot;2026-06-30&quot;:16.21},{&quot;2026-07-01&quot;:16.21},{&quot;2026-07-02&quot;:16.21},{&quot;2026-07-03&quot;:16.21},{&quot;2026-07-04&quot;:16.21},{&quot;2026-07-05&quot;:16.21},{&quot;2026-07-06&quot;:16.21},{&quot;2026-07-07&quot;:16.21},{&quot;2026-07-08&quot;:16.21},{&quot;2026-07-09&quot;:16.21},{&quot;2026-07-10&quot;:16.21},{&quot;2026-07-11&quot;:16.21},{&quot;2026-07-12&quot;:16.21},{&quot;2026-07-13&quot;:16.21},{&quot;2026-07-14&quot;:16.21},{&quot;2026-07-15&quot;:16.26},{&quot;2026-07-16&quot;:16.26},{&quot;2026-07-17&quot;:16.18},{&quot;2026-07-18&quot;:16.18},{&quot;2026-07-19&quot;:16.18},{&quot;2026-07-20&quot;:16.18},{&quot;2026-07-21&quot;:16.18},{&quot;2026-07-23&quot;:16.18},{&quot;2026-07-25&quot;:16.18},{&quot;2026-07-26&quot;:16.18},{&quot;2026-07-27&quot;:16.18},{&quot;2026-07-29&quot;:16.18},{&quot;2026-07-30&quot;:16.18},{&quot;2026-07-31&quot;:16.18},{&quot;2026-08-01&quot;:16.18},{&quot;2026-08-02&quot;:16.18},{&quot;2026-08-03&quot;:16.18},{&quot;2026-08-04&quot;:16.18},{&quot;2026-08-05&quot;:16.18},{&quot;2026-08-07&quot;:16.18},{&quot;2026-08-08&quot;:16.18},{&quot;2026-08-09&quot;:16.18},{&quot;2026-08-10&quot;:16.18},{&quot;2026-08-11&quot;:16.18},{&quot;2026-08-12&quot;:16.18},{&quot;2026-08-13&quot;:16.18},{&quot;2026-08-14&quot;:16.18},{&quot;2026-08-15&quot;:16.18},{&quot;2026-08-16&quot;:16.18},{&quot;2026-08-17&quot;:16.18},{&quot;2026-08-18&quot;:16.18},{&quot;2026-08-19&quot;:16.18},{&quot;2026-08-20&quot;:16.18},{&quot;2026-08-21&quot;:16.22},{&quot;2026-08-22&quot;:16.32},{&quot;2026-08-23&quot;:15.38},{&quot;2026-08-24&quot;:15.46},{&quot;2026-08-25&quot;:15.46},{&quot;2026-08-26&quot;:15.35},{&quot;2026-08-27&quot;:15.35},{&quot;2026-08-28&quot;:15.35},{&quot;2026-08-29&quot;:15.35},{&quot;2026-08-30&quot;:15.35},{&quot;2026-08-31&quot;:15.38},{&quot;2026-09-01&quot;:15.38},{&quot;2026-09-02&quot;:15.38},{&quot;2026-09-03&quot;:15.38},{&quot;2026-09-04&quot;:15.38},{&quot;2026-09-05&quot;:15.38},{&quot;2026-09-06&quot;:15.42},{&quot;2026-09-07&quot;:15.42},{&quot;2026-09-08&quot;:15.42},{&quot;2026-09-09&quot;:15.42},{&quot;2026-09-10&quot;:15.42},{&quot;2026-09-11&quot;:15.42}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:13.75},{&quot;2026-06-10&quot;:13.75},{&quot;2026-06-11&quot;:13.83},{&quot;2026-06-12&quot;:14.02},{&quot;2026-06-13&quot;:14.02},{&quot;2026-06-14&quot;:14.02},{&quot;2026-06-15&quot;:14.02},{&quot;2026-06-16&quot;:14.02},{&quot;2026-06-17&quot;:14.02},{&quot;2026-06-18&quot;:14.02},{&quot;2026-06-19&quot;:14.02},{&quot;2026-06-20&quot;:13.98},{&quot;2026-06-21&quot;:14.14},{&quot;2026-06-22&quot;:14.14},{&quot;2026-06-24&quot;:14.14},{&quot;2026-06-25&quot;:14.14},{&quot;2026-06-26&quot;:14.14},{&quot;2026-06-27&quot;:14.2},{&quot;2026-06-28&quot;:14.2},{&quot;2026-06-29&quot;:14.2},{&quot;2026-06-30&quot;:14.2},{&quot;2026-07-01&quot;:14.2},{&quot;2026-07-02&quot;:14.2},{&quot;2026-07-03&quot;:14.29},{&quot;2026-07-04&quot;:14.29},{&quot;2026-07-05&quot;:14.29},{&quot;2026-07-06&quot;:14.46},{&quot;2026-07-07&quot;:14.46},{&quot;2026-07-08&quot;:14.46},{&quot;2026-07-09&quot;:14.46},{&quot;2026-07-10&quot;:14.51},{&quot;2026-07-11&quot;:14.51},{&quot;2026-07-12&quot;:14.51},{&quot;2026-07-13&quot;:14.49},{&quot;2026-07-14&quot;:14.49},{&quot;2026-07-15&quot;:14.38},{&quot;2026-07-16&quot;:14.27},{&quot;2026-07-17&quot;:14.27},{&quot;2026-07-18&quot;:14.27},{&quot;2026-07-19&quot;:14.21},{&quot;2026-07-20&quot;:14.21},{&quot;2026-07-21&quot;:14.21},{&quot;2026-07-23&quot;:14.0},{&quot;2026-07-25&quot;:13.78},{&quot;2026-07-26&quot;:13.79},{&quot;2026-07-27&quot;:13.79},{&quot;2026-07-29&quot;:13.79},{&quot;2026-07-30&quot;:13.79},{&quot;2026-07-31&quot;:13.79},{&quot;2026-08-01&quot;:13.73},{&quot;2026-08-02&quot;:13.73},{&quot;2026-08-03&quot;:13.73},{&quot;2026-08-04&quot;:13.63},{&quot;2026-08-05&quot;:13.63},{&quot;2026-08-07&quot;:12.78},{&quot;2026-08-08&quot;:12.78},{&quot;2026-08-09&quot;:12.33},{&quot;2026-08-10&quot;:12.05},{&quot;2026-08-11&quot;:11.81},{&quot;2026-08-12&quot;:11.81},{&quot;2026-08-13&quot;:11.61},{&quot;2026-08-14&quot;:11.44},{&quot;2026-08-15&quot;:11.24},{&quot;2026-08-16&quot;:11.12},{&quot;2026-08-17&quot;:11.08},{&quot;2026-08-18&quot;:10.95},{&quot;2026-08-19&quot;:10.95},{&quot;2026-08-20&quot;:10.95},{&quot;2026-08-21&quot;:11.0},{&quot;2026-08-22&quot;:11.0},{&quot;2026-08-23&quot;:11.22},{&quot;2026-08-24&quot;:11.58},{&quot;2026-08-25&quot;:11.58},{&quot;2026-08-26&quot;:11.95},{&quot;2026-08-27&quot;:12.18},{&quot;2026-08-28&quot;:12.39},{&quot;2026-08-29&quot;:12.39},{&quot;2026-08-30&quot;:12.45},{&quot;2026-08-31&quot;:12.47},{&quot;2026-09-01&quot;:12.47},{&quot;2026-09-02&quot;:12.47},{&quot;2026-09-03&quot;:12.7},{&quot;2026-09-04&quot;:12.7},{&quot;2026-09-05&quot;:12.62},{&quot;2026-09-06&quot;:12.8},{&quot;2026-09-07&quot;:13.02},{&quot;2026-09-08&quot;:13.15},{&quot;2026-09-09&quot;:13.15},{&quot;2026-09-10&quot;:13.15},{&quot;2026-09-11&quot;:13.33}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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

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

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

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

        <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">
            Bear Umbra
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Bear Umbra" src="https://cards.scryfall.io/large/front/f/0/f025451f-24aa-41d6-9051-c456e52bbdda.jpg?1783934292" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:9.49},{&quot;2026-06-11&quot;:9.49},{&quot;2026-06-12&quot;:9.49},{&quot;2026-06-13&quot;:9.49},{&quot;2026-06-14&quot;:9.49},{&quot;2026-06-15&quot;:9.49},{&quot;2026-06-16&quot;:9.66},{&quot;2026-06-17&quot;:9.78},{&quot;2026-06-18&quot;:9.78},{&quot;2026-06-19&quot;:9.78},{&quot;2026-06-20&quot;:9.78},{&quot;2026-06-21&quot;:9.78},{&quot;2026-06-22&quot;:9.64},{&quot;2026-06-23&quot;:9.59},{&quot;2026-06-24&quot;:9.62},{&quot;2026-06-25&quot;:9.62},{&quot;2026-06-26&quot;:9.24},{&quot;2026-06-27&quot;:9.59},{&quot;2026-06-28&quot;:9.66},{&quot;2026-06-29&quot;:9.61},{&quot;2026-06-30&quot;:9.61},{&quot;2026-07-01&quot;:9.61},{&quot;2026-07-02&quot;:9.65},{&quot;2026-07-03&quot;:9.67},{&quot;2026-07-04&quot;:9.67},{&quot;2026-07-05&quot;:9.7},{&quot;2026-07-06&quot;:9.73},{&quot;2026-07-07&quot;:9.71},{&quot;2026-07-08&quot;:9.8},{&quot;2026-07-09&quot;:9.78},{&quot;2026-07-10&quot;:9.77},{&quot;2026-07-11&quot;:9.77},{&quot;2026-07-12&quot;:9.77},{&quot;2026-07-13&quot;:9.81},{&quot;2026-07-14&quot;:9.81},{&quot;2026-07-15&quot;:9.95},{&quot;2026-07-16&quot;:10.06},{&quot;2026-07-17&quot;:10.06},{&quot;2026-07-18&quot;:10.09},{&quot;2026-07-19&quot;:10.09},{&quot;2026-07-20&quot;:10.09},{&quot;2026-07-21&quot;:10.14},{&quot;2026-07-23&quot;:10.29},{&quot;2026-07-25&quot;:10.5},{&quot;2026-07-26&quot;:10.41},{&quot;2026-07-27&quot;:10.41},{&quot;2026-07-29&quot;:10.44},{&quot;2026-07-30&quot;:10.44},{&quot;2026-07-31&quot;:10.57},{&quot;2026-08-01&quot;:10.67},{&quot;2026-08-02&quot;:10.67},{&quot;2026-08-03&quot;:10.68},{&quot;2026-08-04&quot;:10.59},{&quot;2026-08-05&quot;:10.59},{&quot;2026-08-07&quot;:10.6},{&quot;2026-08-08&quot;:10.61},{&quot;2026-08-09&quot;:10.61},{&quot;2026-08-10&quot;:10.61},{&quot;2026-08-11&quot;:10.61},{&quot;2026-08-12&quot;:10.61},{&quot;2026-08-13&quot;:10.45},{&quot;2026-08-14&quot;:10.6},{&quot;2026-08-15&quot;:10.61},{&quot;2026-08-16&quot;:10.62},{&quot;2026-08-17&quot;:10.61},{&quot;2026-08-18&quot;:10.62},{&quot;2026-08-19&quot;:10.8},{&quot;2026-08-20&quot;:10.8},{&quot;2026-08-21&quot;:11.32},{&quot;2026-08-22&quot;:11.42},{&quot;2026-08-23&quot;:11.42},{&quot;2026-08-24&quot;:11.48},{&quot;2026-08-25&quot;:11.48},{&quot;2026-08-26&quot;:11.48},{&quot;2026-08-27&quot;:11.58},{&quot;2026-08-28&quot;:12.02},{&quot;2026-08-29&quot;:12.02},{&quot;2026-08-30&quot;:12.28},{&quot;2026-08-31&quot;:12.39},{&quot;2026-09-01&quot;:12.39},{&quot;2026-09-02&quot;:12.62},{&quot;2026-09-03&quot;:12.54},{&quot;2026-09-04&quot;:12.65},{&quot;2026-09-05&quot;:12.66},{&quot;2026-09-06&quot;:12.72},{&quot;2026-09-07&quot;:12.72},{&quot;2026-09-08&quot;:12.72},{&quot;2026-09-09&quot;:12.56},{&quot;2026-09-10&quot;:12.65},{&quot;2026-09-11&quot;:12.59}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

        <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">
            Faerie Mastermind
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Creature — Faerie 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-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="Faerie Mastermind" src="https://cards.scryfall.io/large/front/5/2/52d3005f-a1c7-4ef5-911f-ccc0752f4181.jpg?1783917037" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:26.58},{&quot;2026-06-14&quot;:26.58},{&quot;2026-06-15&quot;:26.58},{&quot;2026-06-16&quot;:26.58},{&quot;2026-06-17&quot;:26.58},{&quot;2026-06-18&quot;:26.58},{&quot;2026-06-19&quot;:26.58},{&quot;2026-06-20&quot;:26.58},{&quot;2026-06-21&quot;:25.36},{&quot;2026-06-22&quot;:25.36},{&quot;2026-06-23&quot;:24.73},{&quot;2026-06-24&quot;:24.73},{&quot;2026-06-25&quot;:23.91},{&quot;2026-06-26&quot;:23.91},{&quot;2026-06-27&quot;:23.91},{&quot;2026-06-28&quot;:23.91},{&quot;2026-06-29&quot;:23.91},{&quot;2026-06-30&quot;:23.91},{&quot;2026-07-01&quot;:22.87},{&quot;2026-07-02&quot;:22.73},{&quot;2026-07-03&quot;:22.73},{&quot;2026-07-04&quot;:22.39},{&quot;2026-07-05&quot;:22.39},{&quot;2026-07-06&quot;:22.56},{&quot;2026-07-07&quot;:21.99},{&quot;2026-07-08&quot;:21.28},{&quot;2026-07-09&quot;:20.55},{&quot;2026-07-10&quot;:20.55},{&quot;2026-07-11&quot;:20.55},{&quot;2026-07-12&quot;:20.55},{&quot;2026-07-13&quot;:20.17},{&quot;2026-07-14&quot;:20.17},{&quot;2026-07-15&quot;:20.17},{&quot;2026-07-16&quot;:20.17},{&quot;2026-07-17&quot;:20.17},{&quot;2026-07-18&quot;:19.79},{&quot;2026-07-19&quot;:19.79},{&quot;2026-07-20&quot;:19.79},{&quot;2026-07-21&quot;:19.79},{&quot;2026-07-22&quot;:19.79},{&quot;2026-07-23&quot;:19.42},{&quot;2026-07-24&quot;:19.06},{&quot;2026-07-25&quot;:19.06},{&quot;2026-07-26&quot;:19.06},{&quot;2026-07-27&quot;:19.06},{&quot;2026-07-28&quot;:19.06},{&quot;2026-07-29&quot;:19.06},{&quot;2026-07-30&quot;:18.08},{&quot;2026-07-31&quot;:17.64},{&quot;2026-08-01&quot;:17.64},{&quot;2026-08-02&quot;:17.64},{&quot;2026-08-03&quot;:17.64},{&quot;2026-08-04&quot;:17.29},{&quot;2026-08-05&quot;:16.96},{&quot;2026-08-07&quot;:16.59},{&quot;2026-08-08&quot;:16.59},{&quot;2026-08-09&quot;:16.59},{&quot;2026-08-10&quot;:16.28},{&quot;2026-08-11&quot;:15.9},{&quot;2026-08-12&quot;:15.9},{&quot;2026-08-13&quot;:15.65},{&quot;2026-08-14&quot;:15.65},{&quot;2026-08-15&quot;:15.36},{&quot;2026-08-16&quot;:15.36},{&quot;2026-08-17&quot;:15.08},{&quot;2026-08-18&quot;:14.99},{&quot;2026-08-19&quot;:14.99},{&quot;2026-08-20&quot;:14.95},{&quot;2026-08-21&quot;:14.95},{&quot;2026-08-22&quot;:14.93},{&quot;2026-08-23&quot;:14.93},{&quot;2026-08-24&quot;:14.93},{&quot;2026-08-25&quot;:14.61},{&quot;2026-08-26&quot;:14.61},{&quot;2026-08-27&quot;:14.52},{&quot;2026-08-28&quot;:14.52},{&quot;2026-08-29&quot;:14.52},{&quot;2026-08-30&quot;:14.63},{&quot;2026-08-31&quot;:14.63},{&quot;2026-09-01&quot;:14.55},{&quot;2026-09-02&quot;:14.61},{&quot;2026-09-03&quot;:14.61},{&quot;2026-09-04&quot;:14.72},{&quot;2026-09-05&quot;:14.84},{&quot;2026-09-06&quot;:14.83},{&quot;2026-09-07&quot;:14.83},{&quot;2026-09-08&quot;:14.83},{&quot;2026-09-09&quot;:14.83},{&quot;2026-09-10&quot;:14.79},{&quot;2026-09-11&quot;:14.79}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:12.01},{&quot;2026-06-14&quot;:12.28},{&quot;2026-06-15&quot;:12.81},{&quot;2026-06-16&quot;:12.98},{&quot;2026-06-17&quot;:12.85},{&quot;2026-06-18&quot;:13.14},{&quot;2026-06-19&quot;:12.87},{&quot;2026-06-20&quot;:12.75},{&quot;2026-06-21&quot;:12.74},{&quot;2026-06-22&quot;:12.87},{&quot;2026-06-23&quot;:13.03},{&quot;2026-06-24&quot;:12.96},{&quot;2026-06-25&quot;:12.96},{&quot;2026-06-26&quot;:12.81},{&quot;2026-06-27&quot;:12.78},{&quot;2026-06-28&quot;:12.78},{&quot;2026-06-29&quot;:12.62},{&quot;2026-06-30&quot;:12.92},{&quot;2026-07-01&quot;:12.97},{&quot;2026-07-02&quot;:12.41},{&quot;2026-07-03&quot;:11.94},{&quot;2026-07-04&quot;:12.27},{&quot;2026-07-05&quot;:12.16},{&quot;2026-07-06&quot;:12.29},{&quot;2026-07-07&quot;:12.15},{&quot;2026-07-08&quot;:12.58},{&quot;2026-07-09&quot;:12.57},{&quot;2026-07-10&quot;:12.35},{&quot;2026-07-11&quot;:12.17},{&quot;2026-07-12&quot;:12.47},{&quot;2026-07-13&quot;:12.77},{&quot;2026-07-14&quot;:12.98},{&quot;2026-07-15&quot;:12.58},{&quot;2026-07-16&quot;:12.56},{&quot;2026-07-17&quot;:12.19},{&quot;2026-07-18&quot;:12.17},{&quot;2026-07-19&quot;:12.16},{&quot;2026-07-20&quot;:12.2},{&quot;2026-07-21&quot;:12.18},{&quot;2026-07-22&quot;:12.11},{&quot;2026-07-23&quot;:11.87},{&quot;2026-07-24&quot;:12.01},{&quot;2026-07-25&quot;:11.87},{&quot;2026-07-26&quot;:11.86},{&quot;2026-07-27&quot;:11.9},{&quot;2026-07-28&quot;:11.69},{&quot;2026-07-29&quot;:11.75},{&quot;2026-07-30&quot;:11.83},{&quot;2026-07-31&quot;:12.2},{&quot;2026-08-01&quot;:12.15},{&quot;2026-08-02&quot;:12.23},{&quot;2026-08-03&quot;:12.29},{&quot;2026-08-04&quot;:12.8},{&quot;2026-08-05&quot;:12.79},{&quot;2026-08-07&quot;:12.66},{&quot;2026-08-08&quot;:12.58},{&quot;2026-08-09&quot;:12.52},{&quot;2026-08-10&quot;:12.39},{&quot;2026-08-11&quot;:12.16},{&quot;2026-08-12&quot;:12.2},{&quot;2026-08-13&quot;:12.0},{&quot;2026-08-14&quot;:11.91},{&quot;2026-08-15&quot;:12.04},{&quot;2026-08-16&quot;:12.03},{&quot;2026-08-17&quot;:12.08},{&quot;2026-08-18&quot;:12.0},{&quot;2026-08-19&quot;:11.95},{&quot;2026-08-20&quot;:12.16},{&quot;2026-08-21&quot;:12.27},{&quot;2026-08-22&quot;:12.42},{&quot;2026-08-23&quot;:12.41},{&quot;2026-08-24&quot;:12.63},{&quot;2026-08-25&quot;:12.66},{&quot;2026-08-26&quot;:12.76},{&quot;2026-08-27&quot;:12.77},{&quot;2026-08-28&quot;:12.82},{&quot;2026-08-29&quot;:12.82},{&quot;2026-08-30&quot;:12.79},{&quot;2026-08-31&quot;:12.64},{&quot;2026-09-01&quot;:12.64},{&quot;2026-09-02&quot;:12.51},{&quot;2026-09-03&quot;:12.53},{&quot;2026-09-04&quot;:12.21},{&quot;2026-09-05&quot;:12.17},{&quot;2026-09-06&quot;:12.2},{&quot;2026-09-07&quot;:12.23},{&quot;2026-09-08&quot;:12.21},{&quot;2026-09-09&quot;:12.17},{&quot;2026-09-10&quot;:11.97},{&quot;2026-09-11&quot;:11.97}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="18405"
  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">
            Birds of Paradise
        </span>


      </div>

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

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Birds of Paradise" src="https://cards.scryfall.io/large/front/4/9/496849a5-4b24-4eae-8bfb-d46f645d85ea.jpg?1783918450" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:12.95},{&quot;2026-06-14&quot;:12.9},{&quot;2026-06-15&quot;:12.9},{&quot;2026-06-16&quot;:12.96},{&quot;2026-06-17&quot;:13.15},{&quot;2026-06-18&quot;:13.15},{&quot;2026-06-19&quot;:13.03},{&quot;2026-06-20&quot;:12.78},{&quot;2026-06-21&quot;:12.9},{&quot;2026-06-22&quot;:12.9},{&quot;2026-06-23&quot;:12.91},{&quot;2026-06-24&quot;:12.88},{&quot;2026-06-25&quot;:12.89},{&quot;2026-06-26&quot;:12.89},{&quot;2026-06-27&quot;:12.89},{&quot;2026-06-28&quot;:12.89},{&quot;2026-06-29&quot;:12.89},{&quot;2026-06-30&quot;:12.83},{&quot;2026-07-01&quot;:12.93},{&quot;2026-07-02&quot;:13.17},{&quot;2026-07-03&quot;:13.17},{&quot;2026-07-04&quot;:13.22},{&quot;2026-07-05&quot;:13.22},{&quot;2026-07-06&quot;:13.19},{&quot;2026-07-07&quot;:13.19},{&quot;2026-07-08&quot;:13.19},{&quot;2026-07-09&quot;:13.19},{&quot;2026-07-10&quot;:13.16},{&quot;2026-07-11&quot;:13.16},{&quot;2026-07-12&quot;:13.16},{&quot;2026-07-13&quot;:13.16},{&quot;2026-07-14&quot;:13.16},{&quot;2026-07-15&quot;:13.19},{&quot;2026-07-16&quot;:13.31},{&quot;2026-07-17&quot;:13.31},{&quot;2026-07-18&quot;:13.27},{&quot;2026-07-19&quot;:13.27},{&quot;2026-07-20&quot;:13.27},{&quot;2026-07-21&quot;:13.27},{&quot;2026-07-22&quot;:13.27},{&quot;2026-07-23&quot;:13.27},{&quot;2026-07-24&quot;:13.27},{&quot;2026-07-25&quot;:13.32},{&quot;2026-07-26&quot;:13.29},{&quot;2026-07-27&quot;:13.29},{&quot;2026-07-28&quot;:13.28},{&quot;2026-07-29&quot;:13.28},{&quot;2026-07-30&quot;:13.18},{&quot;2026-07-31&quot;:13.18},{&quot;2026-08-01&quot;:13.13},{&quot;2026-08-02&quot;:13.13},{&quot;2026-08-03&quot;:13.13},{&quot;2026-08-04&quot;:13.13},{&quot;2026-08-05&quot;:13.13},{&quot;2026-08-07&quot;:13.14},{&quot;2026-08-08&quot;:13.14},{&quot;2026-08-09&quot;:13.14},{&quot;2026-08-10&quot;:13.14},{&quot;2026-08-11&quot;:13.07},{&quot;2026-08-12&quot;:13.08},{&quot;2026-08-13&quot;:13.05},{&quot;2026-08-14&quot;:13.05},{&quot;2026-08-15&quot;:13.05},{&quot;2026-08-16&quot;:12.99},{&quot;2026-08-17&quot;:12.99},{&quot;2026-08-18&quot;:12.99},{&quot;2026-08-19&quot;:12.99},{&quot;2026-08-20&quot;:12.99},{&quot;2026-08-21&quot;:12.99},{&quot;2026-08-22&quot;:12.99},{&quot;2026-08-23&quot;:12.94},{&quot;2026-08-24&quot;:12.94},{&quot;2026-08-25&quot;:12.94},{&quot;2026-08-26&quot;:12.98},{&quot;2026-08-27&quot;:12.89},{&quot;2026-08-28&quot;:12.78},{&quot;2026-08-29&quot;:12.78},{&quot;2026-08-30&quot;:12.89},{&quot;2026-08-31&quot;:12.97},{&quot;2026-09-01&quot;:12.96},{&quot;2026-09-02&quot;:13.0},{&quot;2026-09-03&quot;:13.0},{&quot;2026-09-04&quot;:13.0},{&quot;2026-09-05&quot;:13.0},{&quot;2026-09-06&quot;:13.0},{&quot;2026-09-07&quot;:13.0},{&quot;2026-09-08&quot;:12.91},{&quot;2026-09-09&quot;:12.91},{&quot;2026-09-10&quot;:12.98},{&quot;2026-09-11&quot;:12.98}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:12.25},{&quot;2026-06-14&quot;:12.29},{&quot;2026-06-15&quot;:12.23},{&quot;2026-06-16&quot;:12.23},{&quot;2026-06-17&quot;:12.23},{&quot;2026-06-18&quot;:12.28},{&quot;2026-06-19&quot;:12.44},{&quot;2026-06-20&quot;:12.46},{&quot;2026-06-21&quot;:12.46},{&quot;2026-06-22&quot;:12.5},{&quot;2026-06-23&quot;:12.5},{&quot;2026-06-24&quot;:12.45},{&quot;2026-06-25&quot;:12.45},{&quot;2026-06-26&quot;:12.45},{&quot;2026-06-27&quot;:12.45},{&quot;2026-06-28&quot;:12.45},{&quot;2026-06-29&quot;:12.45},{&quot;2026-06-30&quot;:12.51},{&quot;2026-07-01&quot;:12.51},{&quot;2026-07-02&quot;:12.51},{&quot;2026-07-03&quot;:12.41},{&quot;2026-07-04&quot;:12.41},{&quot;2026-07-05&quot;:12.41},{&quot;2026-07-06&quot;:12.33},{&quot;2026-07-07&quot;:12.33},{&quot;2026-07-08&quot;:12.33},{&quot;2026-07-09&quot;:12.43},{&quot;2026-07-10&quot;:12.43},{&quot;2026-07-11&quot;:12.41},{&quot;2026-07-12&quot;:12.47},{&quot;2026-07-13&quot;:12.48},{&quot;2026-07-14&quot;:12.48},{&quot;2026-07-15&quot;:12.48},{&quot;2026-07-16&quot;:12.25},{&quot;2026-07-17&quot;:12.24},{&quot;2026-07-18&quot;:12.27},{&quot;2026-07-19&quot;:12.24},{&quot;2026-07-20&quot;:12.34},{&quot;2026-07-21&quot;:12.34},{&quot;2026-07-22&quot;:12.23},{&quot;2026-07-23&quot;:12.23},{&quot;2026-07-24&quot;:12.28},{&quot;2026-07-25&quot;:12.25},{&quot;2026-07-26&quot;:12.28},{&quot;2026-07-27&quot;:12.28},{&quot;2026-07-28&quot;:12.28},{&quot;2026-07-29&quot;:12.28},{&quot;2026-07-30&quot;:12.28},{&quot;2026-07-31&quot;:12.26},{&quot;2026-08-01&quot;:12.2},{&quot;2026-08-02&quot;:12.09},{&quot;2026-08-03&quot;:12.01},{&quot;2026-08-04&quot;:12.01},{&quot;2026-08-05&quot;:12.11},{&quot;2026-08-07&quot;:12.13},{&quot;2026-08-08&quot;:12.21},{&quot;2026-08-09&quot;:12.25},{&quot;2026-08-10&quot;:12.42},{&quot;2026-08-11&quot;:12.36},{&quot;2026-08-12&quot;:12.36},{&quot;2026-08-13&quot;:12.48},{&quot;2026-08-14&quot;:12.48},{&quot;2026-08-15&quot;:12.48},{&quot;2026-08-16&quot;:12.52},{&quot;2026-08-17&quot;:12.71},{&quot;2026-08-18&quot;:12.71},{&quot;2026-08-19&quot;:12.71},{&quot;2026-08-20&quot;:12.75},{&quot;2026-08-21&quot;:12.77},{&quot;2026-08-22&quot;:12.77},{&quot;2026-08-23&quot;:12.75},{&quot;2026-08-24&quot;:12.57},{&quot;2026-08-25&quot;:12.42},{&quot;2026-08-26&quot;:12.55},{&quot;2026-08-27&quot;:12.47},{&quot;2026-08-28&quot;:12.32},{&quot;2026-08-29&quot;:12.32},{&quot;2026-08-30&quot;:12.32},{&quot;2026-08-31&quot;:12.14},{&quot;2026-09-01&quot;:12.03},{&quot;2026-09-02&quot;:11.95},{&quot;2026-09-03&quot;:11.95},{&quot;2026-09-04&quot;:11.92},{&quot;2026-09-05&quot;:11.79},{&quot;2026-09-06&quot;:11.83},{&quot;2026-09-07&quot;:11.83},{&quot;2026-09-08&quot;:11.58},{&quot;2026-09-09&quot;:11.61},{&quot;2026-09-10&quot;:11.61},{&quot;2026-09-11&quot;:11.88}]}"
        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="92382"
  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">
            Benevolent Hydra
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Hydra
      </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">
            $9.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="Benevolent Hydra" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/f/3/f3b80559-dd4a-4280-8472-28a85fe5eb71.jpg?1783907942" />

        <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">
            Benevolent Hydra
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Benevolent Hydra" src="https://cards.scryfall.io/large/front/f/3/f3b80559-dd4a-4280-8472-28a85fe5eb71.jpg?1783907942" />
    </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">
                $9.98
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:11.89},{&quot;2026-06-14&quot;:11.84},{&quot;2026-06-15&quot;:11.84},{&quot;2026-06-16&quot;:11.89},{&quot;2026-06-17&quot;:11.89},{&quot;2026-06-18&quot;:11.89},{&quot;2026-06-19&quot;:11.89},{&quot;2026-06-20&quot;:11.88},{&quot;2026-06-21&quot;:11.91},{&quot;2026-06-22&quot;:11.91},{&quot;2026-06-23&quot;:11.91},{&quot;2026-06-24&quot;:11.79},{&quot;2026-06-25&quot;:11.75},{&quot;2026-06-26&quot;:11.75},{&quot;2026-06-27&quot;:11.56},{&quot;2026-06-28&quot;:11.56},{&quot;2026-06-29&quot;:11.56},{&quot;2026-06-30&quot;:11.59},{&quot;2026-07-01&quot;:11.59},{&quot;2026-07-02&quot;:11.59},{&quot;2026-07-03&quot;:11.53},{&quot;2026-07-04&quot;:11.53},{&quot;2026-07-05&quot;:11.39},{&quot;2026-07-06&quot;:11.33},{&quot;2026-07-07&quot;:11.33},{&quot;2026-07-08&quot;:11.23},{&quot;2026-07-09&quot;:11.23},{&quot;2026-07-10&quot;:11.16},{&quot;2026-07-11&quot;:11.16},{&quot;2026-07-12&quot;:10.94},{&quot;2026-07-13&quot;:10.94},{&quot;2026-07-14&quot;:10.96},{&quot;2026-07-15&quot;:10.92},{&quot;2026-07-16&quot;:10.92},{&quot;2026-07-17&quot;:10.92},{&quot;2026-07-18&quot;:11.0},{&quot;2026-07-19&quot;:11.0},{&quot;2026-07-20&quot;:10.97},{&quot;2026-07-21&quot;:10.81},{&quot;2026-07-22&quot;:10.84},{&quot;2026-07-23&quot;:10.84},{&quot;2026-07-24&quot;:10.67},{&quot;2026-07-25&quot;:10.67},{&quot;2026-07-26&quot;:10.65},{&quot;2026-07-27&quot;:10.65},{&quot;2026-07-28&quot;:10.65},{&quot;2026-07-29&quot;:10.65},{&quot;2026-07-30&quot;:10.62},{&quot;2026-07-31&quot;:10.58},{&quot;2026-08-01&quot;:10.58},{&quot;2026-08-02&quot;:10.58},{&quot;2026-08-03&quot;:10.58},{&quot;2026-08-04&quot;:10.55},{&quot;2026-08-05&quot;:10.55},{&quot;2026-08-07&quot;:10.45},{&quot;2026-08-08&quot;:10.45},{&quot;2026-08-09&quot;:10.45},{&quot;2026-08-10&quot;:10.45},{&quot;2026-08-11&quot;:10.45},{&quot;2026-08-12&quot;:10.45},{&quot;2026-08-13&quot;:10.45},{&quot;2026-08-14&quot;:10.36},{&quot;2026-08-15&quot;:10.36},{&quot;2026-08-16&quot;:10.37},{&quot;2026-08-17&quot;:10.48},{&quot;2026-08-18&quot;:10.42},{&quot;2026-08-19&quot;:10.42},{&quot;2026-08-20&quot;:10.42},{&quot;2026-08-21&quot;:10.46},{&quot;2026-08-22&quot;:10.45},{&quot;2026-08-23&quot;:10.55},{&quot;2026-08-24&quot;:10.55},{&quot;2026-08-25&quot;:10.54},{&quot;2026-08-26&quot;:10.54},{&quot;2026-08-27&quot;:10.54},{&quot;2026-08-28&quot;:10.54},{&quot;2026-08-29&quot;:10.54},{&quot;2026-08-30&quot;:10.3},{&quot;2026-08-31&quot;:10.35},{&quot;2026-09-01&quot;:10.3},{&quot;2026-09-02&quot;:10.36},{&quot;2026-09-03&quot;:10.36},{&quot;2026-09-04&quot;:10.36},{&quot;2026-09-05&quot;:10.36},{&quot;2026-09-06&quot;:10.29},{&quot;2026-09-07&quot;:10.29},{&quot;2026-09-08&quot;:9.98},{&quot;2026-09-09&quot;:9.91},{&quot;2026-09-10&quot;:9.93},{&quot;2026-09-11&quot;:9.98}],&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="96026"
  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-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">
            Cosmogrand Zenith
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Cosmogrand Zenith" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/3/b3c1e5e3-4e6b-456a-958c-7a75c38f8183.jpg?1782685580" />

        <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">
            Cosmogrand Zenith
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Cosmogrand Zenith" src="https://cards.scryfall.io/large/front/b/3/b3c1e5e3-4e6b-456a-958c-7a75c38f8183.jpg?1782685580" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-11&quot;:7.41},{&quot;2026-06-12&quot;:7.41},{&quot;2026-06-13&quot;:7.41},{&quot;2026-06-14&quot;:7.41},{&quot;2026-06-15&quot;:7.41},{&quot;2026-06-16&quot;:7.41},{&quot;2026-06-17&quot;:7.41},{&quot;2026-06-18&quot;:7.41},{&quot;2026-06-19&quot;:7.24},{&quot;2026-06-20&quot;:6.98},{&quot;2026-06-21&quot;:6.98},{&quot;2026-06-22&quot;:6.98},{&quot;2026-06-23&quot;:6.98},{&quot;2026-06-24&quot;:6.98},{&quot;2026-06-25&quot;:6.93},{&quot;2026-06-26&quot;:6.93},{&quot;2026-06-27&quot;:6.78},{&quot;2026-06-28&quot;:6.78},{&quot;2026-06-29&quot;:6.78},{&quot;2026-06-30&quot;:6.96},{&quot;2026-07-01&quot;:6.82},{&quot;2026-07-02&quot;:6.57},{&quot;2026-07-03&quot;:6.57},{&quot;2026-07-04&quot;:6.49},{&quot;2026-07-05&quot;:6.3},{&quot;2026-07-06&quot;:6.33},{&quot;2026-07-07&quot;:6.33},{&quot;2026-07-08&quot;:6.26},{&quot;2026-07-09&quot;:6.18},{&quot;2026-07-10&quot;:6.18},{&quot;2026-07-11&quot;:6.18},{&quot;2026-07-12&quot;:6.18},{&quot;2026-07-13&quot;:6.18},{&quot;2026-07-14&quot;:5.79},{&quot;2026-07-15&quot;:5.54},{&quot;2026-07-16&quot;:5.51},{&quot;2026-07-17&quot;:5.38},{&quot;2026-07-18&quot;:5.16},{&quot;2026-07-19&quot;:5.09},{&quot;2026-07-20&quot;:5.33},{&quot;2026-07-21&quot;:5.43},{&quot;2026-07-23&quot;:5.5},{&quot;2026-07-25&quot;:5.56},{&quot;2026-07-26&quot;:5.66},{&quot;2026-07-27&quot;:5.78},{&quot;2026-07-28&quot;:5.77},{&quot;2026-07-29&quot;:5.84},{&quot;2026-07-30&quot;:5.89},{&quot;2026-07-31&quot;:6.0},{&quot;2026-08-01&quot;:6.0},{&quot;2026-08-02&quot;:6.13},{&quot;2026-08-03&quot;:6.53},{&quot;2026-08-04&quot;:6.53},{&quot;2026-08-05&quot;:6.55},{&quot;2026-08-07&quot;:6.61},{&quot;2026-08-08&quot;:6.72},{&quot;2026-08-09&quot;:6.79},{&quot;2026-08-10&quot;:6.79},{&quot;2026-08-11&quot;:6.79},{&quot;2026-08-12&quot;:6.81},{&quot;2026-08-13&quot;:6.9},{&quot;2026-08-14&quot;:6.87},{&quot;2026-08-15&quot;:6.91},{&quot;2026-08-16&quot;:6.89},{&quot;2026-08-17&quot;:6.96},{&quot;2026-08-18&quot;:7.17},{&quot;2026-08-19&quot;:7.17},{&quot;2026-08-20&quot;:7.17},{&quot;2026-08-21&quot;:7.35},{&quot;2026-08-22&quot;:7.23},{&quot;2026-08-23&quot;:7.19},{&quot;2026-08-24&quot;:7.45},{&quot;2026-08-25&quot;:7.45},{&quot;2026-08-26&quot;:7.53},{&quot;2026-08-27&quot;:7.58},{&quot;2026-08-28&quot;:7.57},{&quot;2026-08-29&quot;:7.57},{&quot;2026-08-30&quot;:7.59},{&quot;2026-08-31&quot;:7.65},{&quot;2026-09-01&quot;:7.65},{&quot;2026-09-02&quot;:7.56},{&quot;2026-09-03&quot;:7.56},{&quot;2026-09-04&quot;:7.38},{&quot;2026-09-05&quot;:7.38},{&quot;2026-09-06&quot;:7.38},{&quot;2026-09-07&quot;:7.23},{&quot;2026-09-08&quot;:7.23},{&quot;2026-09-09&quot;:7.22},{&quot;2026-09-10&quot;:7.24},{&quot;2026-09-11&quot;:7.34}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:5.9},{&quot;2026-06-12&quot;:5.85},{&quot;2026-06-13&quot;:5.9},{&quot;2026-06-14&quot;:5.63},{&quot;2026-06-15&quot;:5.55},{&quot;2026-06-16&quot;:5.4},{&quot;2026-06-17&quot;:5.27},{&quot;2026-06-18&quot;:5.2},{&quot;2026-06-19&quot;:5.2},{&quot;2026-06-20&quot;:5.0},{&quot;2026-06-21&quot;:4.97},{&quot;2026-06-22&quot;:4.69},{&quot;2026-06-23&quot;:4.84},{&quot;2026-06-24&quot;:4.78},{&quot;2026-06-25&quot;:4.65},{&quot;2026-06-26&quot;:4.48},{&quot;2026-06-27&quot;:4.39},{&quot;2026-06-28&quot;:4.35},{&quot;2026-06-29&quot;:4.62},{&quot;2026-06-30&quot;:4.61},{&quot;2026-07-01&quot;:4.61},{&quot;2026-07-02&quot;:4.62},{&quot;2026-07-03&quot;:4.77},{&quot;2026-07-04&quot;:4.72},{&quot;2026-07-05&quot;:4.65},{&quot;2026-07-06&quot;:4.43},{&quot;2026-07-07&quot;:4.4},{&quot;2026-07-08&quot;:4.35},{&quot;2026-07-09&quot;:4.4},{&quot;2026-07-10&quot;:4.44},{&quot;2026-07-11&quot;:4.42},{&quot;2026-07-12&quot;:4.49},{&quot;2026-07-13&quot;:4.5},{&quot;2026-07-14&quot;:4.37},{&quot;2026-07-15&quot;:4.9},{&quot;2026-07-16&quot;:4.81},{&quot;2026-07-17&quot;:4.81},{&quot;2026-07-18&quot;:5.05},{&quot;2026-07-19&quot;:5.02},{&quot;2026-07-20&quot;:4.87},{&quot;2026-07-21&quot;:4.96},{&quot;2026-07-23&quot;:4.95},{&quot;2026-07-25&quot;:5.02},{&quot;2026-07-26&quot;:5.12},{&quot;2026-07-27&quot;:4.99},{&quot;2026-07-28&quot;:5.19},{&quot;2026-07-29&quot;:5.26},{&quot;2026-07-30&quot;:5.56},{&quot;2026-07-31&quot;:5.73},{&quot;2026-08-01&quot;:5.76},{&quot;2026-08-02&quot;:5.82},{&quot;2026-08-03&quot;:5.94},{&quot;2026-08-04&quot;:6.08},{&quot;2026-08-05&quot;:6.08},{&quot;2026-08-07&quot;:5.88},{&quot;2026-08-08&quot;:5.92},{&quot;2026-08-09&quot;:5.58},{&quot;2026-08-10&quot;:5.52},{&quot;2026-08-11&quot;:5.74},{&quot;2026-08-12&quot;:5.69},{&quot;2026-08-13&quot;:5.82},{&quot;2026-08-14&quot;:5.9},{&quot;2026-08-15&quot;:5.84},{&quot;2026-08-16&quot;:5.63},{&quot;2026-08-17&quot;:5.92},{&quot;2026-08-18&quot;:6.05},{&quot;2026-08-19&quot;:6.4},{&quot;2026-08-20&quot;:6.4},{&quot;2026-08-21&quot;:6.59},{&quot;2026-08-22&quot;:6.74},{&quot;2026-08-23&quot;:6.35},{&quot;2026-08-24&quot;:6.2},{&quot;2026-08-25&quot;:6.2},{&quot;2026-08-26&quot;:6.48},{&quot;2026-08-27&quot;:6.35},{&quot;2026-08-28&quot;:6.62},{&quot;2026-08-29&quot;:6.62},{&quot;2026-08-30&quot;:6.65},{&quot;2026-08-31&quot;:6.79},{&quot;2026-09-01&quot;:6.79},{&quot;2026-09-02&quot;:6.54},{&quot;2026-09-03&quot;:6.28},{&quot;2026-09-04&quot;:6.31},{&quot;2026-09-05&quot;:6.51},{&quot;2026-09-06&quot;:7.16},{&quot;2026-09-07&quot;:7.19},{&quot;2026-09-08&quot;:7.68},{&quot;2026-09-09&quot;:7.6},{&quot;2026-09-10&quot;:7.55},{&quot;2026-09-11&quot;:7.36}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="74411"
  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-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">
            Ojer Kaslem, Deepest Growth 
        </span>


      </div>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Ojer Kaslem, Deepest Growth // Temple of Cultivation" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/c/0cbc43a3-8cba-4988-9de1-c89aedd79ada.jpg?1783913744" />

        <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">
            Ojer Kaslem, Deepest Growth 
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <div data-controller="card-flip" class="flex flex-col items-center">
          <div
            data-action="click->card-flip#flip"
            class="flip-container cursor-pointer w-full max-w-xs mx-auto"
          >
            <div data-card-flip-target="card" class="flip-card">
              <div class="flip-card-front">
                <img class="w-full h-auto rounded-2xl" alt="Ojer Kaslem, Deepest Growth // Temple of Cultivation" src="https://cards.scryfall.io/large/front/0/c/0cbc43a3-8cba-4988-9de1-c89aedd79ada.jpg?1783913744" />
              </div>

              <div class="flip-card-back">
                <img class="w-full h-auto rounded-2xl" alt="Ojer Kaslem, Deepest Growth // Temple of Cultivation" src="https://cards.scryfall.io/large/back/0/c/0cbc43a3-8cba-4988-9de1-c89aedd79ada.jpg?1783913744" />
              </div>
            </div>
          </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-12&quot;:6.85},{&quot;2026-06-13&quot;:6.85},{&quot;2026-06-14&quot;:6.9},{&quot;2026-06-15&quot;:6.96},{&quot;2026-06-16&quot;:6.96},{&quot;2026-06-17&quot;:6.99},{&quot;2026-06-18&quot;:6.94},{&quot;2026-06-19&quot;:6.94},{&quot;2026-06-20&quot;:6.98},{&quot;2026-06-21&quot;:6.98},{&quot;2026-06-22&quot;:7.18},{&quot;2026-06-23&quot;:7.18},{&quot;2026-06-24&quot;:7.35},{&quot;2026-06-25&quot;:7.4},{&quot;2026-06-26&quot;:7.4},{&quot;2026-06-27&quot;:7.4},{&quot;2026-06-28&quot;:7.4},{&quot;2026-06-29&quot;:7.55},{&quot;2026-06-30&quot;:7.73},{&quot;2026-07-01&quot;:7.79},{&quot;2026-07-02&quot;:7.75},{&quot;2026-07-03&quot;:7.8},{&quot;2026-07-04&quot;:7.8},{&quot;2026-07-05&quot;:7.8},{&quot;2026-07-06&quot;:7.8},{&quot;2026-07-07&quot;:7.8},{&quot;2026-07-08&quot;:7.81},{&quot;2026-07-09&quot;:7.96},{&quot;2026-07-10&quot;:7.96},{&quot;2026-07-11&quot;:7.79},{&quot;2026-07-12&quot;:7.79},{&quot;2026-07-13&quot;:7.79},{&quot;2026-07-14&quot;:7.79},{&quot;2026-07-15&quot;:7.8},{&quot;2026-07-16&quot;:7.8},{&quot;2026-07-17&quot;:7.8},{&quot;2026-07-18&quot;:7.8},{&quot;2026-07-19&quot;:7.8},{&quot;2026-07-20&quot;:7.8},{&quot;2026-07-21&quot;:7.8},{&quot;2026-07-23&quot;:7.8},{&quot;2026-07-24&quot;:7.78},{&quot;2026-07-25&quot;:7.78},{&quot;2026-07-26&quot;:7.78},{&quot;2026-07-27&quot;:7.78},{&quot;2026-07-28&quot;:7.78},{&quot;2026-07-29&quot;:7.79},{&quot;2026-07-30&quot;:7.81},{&quot;2026-07-31&quot;:7.87},{&quot;2026-08-01&quot;:7.94},{&quot;2026-08-02&quot;:7.98},{&quot;2026-08-03&quot;:7.95},{&quot;2026-08-04&quot;:7.99},{&quot;2026-08-05&quot;:7.99},{&quot;2026-08-07&quot;:7.99},{&quot;2026-08-08&quot;:7.99},{&quot;2026-08-09&quot;:7.99},{&quot;2026-08-10&quot;:7.99},{&quot;2026-08-11&quot;:7.99},{&quot;2026-08-12&quot;:7.99},{&quot;2026-08-13&quot;:7.99},{&quot;2026-08-14&quot;:7.99},{&quot;2026-08-15&quot;:7.99},{&quot;2026-08-16&quot;:7.99},{&quot;2026-08-17&quot;:7.99},{&quot;2026-08-18&quot;:7.99},{&quot;2026-08-19&quot;:7.99},{&quot;2026-08-20&quot;:7.99},{&quot;2026-08-21&quot;:7.67},{&quot;2026-08-22&quot;:7.67},{&quot;2026-08-23&quot;:7.7},{&quot;2026-08-24&quot;:7.7},{&quot;2026-08-25&quot;:7.7},{&quot;2026-08-26&quot;:7.7},{&quot;2026-08-27&quot;:7.7},{&quot;2026-08-28&quot;:7.7},{&quot;2026-08-29&quot;:7.7},{&quot;2026-08-30&quot;:7.57},{&quot;2026-08-31&quot;:7.57},{&quot;2026-09-01&quot;:7.57},{&quot;2026-09-02&quot;:7.57},{&quot;2026-09-03&quot;:7.58},{&quot;2026-09-04&quot;:7.55},{&quot;2026-09-05&quot;:7.56},{&quot;2026-09-06&quot;:7.54},{&quot;2026-09-07&quot;:7.54},{&quot;2026-09-08&quot;:7.53},{&quot;2026-09-09&quot;:7.57},{&quot;2026-09-10&quot;:7.42},{&quot;2026-09-11&quot;:7.52}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:6.92},{&quot;2026-06-13&quot;:6.78},{&quot;2026-06-14&quot;:6.69},{&quot;2026-06-15&quot;:6.46},{&quot;2026-06-16&quot;:6.49},{&quot;2026-06-17&quot;:6.35},{&quot;2026-06-18&quot;:6.46},{&quot;2026-06-19&quot;:6.55},{&quot;2026-06-20&quot;:6.59},{&quot;2026-06-21&quot;:6.59},{&quot;2026-06-22&quot;:6.57},{&quot;2026-06-23&quot;:6.51},{&quot;2026-06-24&quot;:6.74},{&quot;2026-06-25&quot;:6.86},{&quot;2026-06-26&quot;:7.08},{&quot;2026-06-27&quot;:7.08},{&quot;2026-06-28&quot;:7.35},{&quot;2026-06-29&quot;:7.5},{&quot;2026-06-30&quot;:7.38},{&quot;2026-07-01&quot;:7.54},{&quot;2026-07-02&quot;:7.49},{&quot;2026-07-03&quot;:7.52},{&quot;2026-07-04&quot;:7.52},{&quot;2026-07-05&quot;:7.31},{&quot;2026-07-06&quot;:7.41},{&quot;2026-07-07&quot;:6.7},{&quot;2026-07-08&quot;:6.73},{&quot;2026-07-09&quot;:6.86},{&quot;2026-07-10&quot;:6.87},{&quot;2026-07-11&quot;:6.6},{&quot;2026-07-12&quot;:6.33},{&quot;2026-07-13&quot;:6.31},{&quot;2026-07-14&quot;:6.25},{&quot;2026-07-15&quot;:6.31},{&quot;2026-07-16&quot;:6.16},{&quot;2026-07-17&quot;:6.16},{&quot;2026-07-18&quot;:6.27},{&quot;2026-07-19&quot;:6.37},{&quot;2026-07-20&quot;:6.42},{&quot;2026-07-21&quot;:6.45},{&quot;2026-07-23&quot;:6.53},{&quot;2026-07-24&quot;:6.51},{&quot;2026-07-25&quot;:6.51},{&quot;2026-07-26&quot;:6.44},{&quot;2026-07-27&quot;:6.26},{&quot;2026-07-28&quot;:6.22},{&quot;2026-07-29&quot;:6.22},{&quot;2026-07-30&quot;:6.22},{&quot;2026-07-31&quot;:6.18},{&quot;2026-08-01&quot;:6.12},{&quot;2026-08-02&quot;:6.1},{&quot;2026-08-03&quot;:6.05},{&quot;2026-08-04&quot;:6.25},{&quot;2026-08-05&quot;:6.14},{&quot;2026-08-07&quot;:6.51},{&quot;2026-08-08&quot;:6.62},{&quot;2026-08-09&quot;:6.83},{&quot;2026-08-10&quot;:7.18},{&quot;2026-08-11&quot;:6.97},{&quot;2026-08-12&quot;:7.22},{&quot;2026-08-13&quot;:7.23},{&quot;2026-08-14&quot;:7.11},{&quot;2026-08-15&quot;:7.11},{&quot;2026-08-16&quot;:7.32},{&quot;2026-08-17&quot;:7.17},{&quot;2026-08-18&quot;:7.17},{&quot;2026-08-19&quot;:7.16},{&quot;2026-08-20&quot;:7.16},{&quot;2026-08-21&quot;:7.56},{&quot;2026-08-22&quot;:7.55},{&quot;2026-08-23&quot;:7.58},{&quot;2026-08-24&quot;:7.67},{&quot;2026-08-25&quot;:7.67},{&quot;2026-08-26&quot;:7.77},{&quot;2026-08-27&quot;:7.73},{&quot;2026-08-28&quot;:7.53},{&quot;2026-08-29&quot;:7.53},{&quot;2026-08-30&quot;:7.14},{&quot;2026-08-31&quot;:7.14},{&quot;2026-09-01&quot;:7.21},{&quot;2026-09-02&quot;:7.25},{&quot;2026-09-03&quot;:7.25},{&quot;2026-09-04&quot;:7.28},{&quot;2026-09-05&quot;:7.32},{&quot;2026-09-06&quot;:7.05},{&quot;2026-09-07&quot;:7.06},{&quot;2026-09-08&quot;:7.22},{&quot;2026-09-09&quot;:7.22},{&quot;2026-09-10&quot;:7.0},{&quot;2026-09-11&quot;:6.99}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $6.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="Rejuvenating Springs" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/5/1/51e69910-0d90-48a0-af29-3cddaeec5151.jpg?1783928741" />

        <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">
            Rejuvenating Springs
        </h3>

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Rejuvenating Springs" src="https://cards.scryfall.io/large/front/5/1/51e69910-0d90-48a0-af29-3cddaeec5151.jpg?1783928741" />
    </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.23
              </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">
                $8.89
              </span>

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$3.25</span>
              <span class="text-xs text-grey-text">Credit: $4.23</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;:9.69},{&quot;2026-06-13&quot;:9.69},{&quot;2026-06-14&quot;:9.69},{&quot;2026-06-15&quot;:9.71},{&quot;2026-06-16&quot;:9.71},{&quot;2026-06-17&quot;:9.71},{&quot;2026-06-18&quot;:9.71},{&quot;2026-06-19&quot;:9.71},{&quot;2026-06-20&quot;:9.71},{&quot;2026-06-21&quot;:9.77},{&quot;2026-06-22&quot;:9.77},{&quot;2026-06-23&quot;:9.82},{&quot;2026-06-24&quot;:9.82},{&quot;2026-06-25&quot;:9.79},{&quot;2026-06-26&quot;:9.79},{&quot;2026-06-27&quot;:9.79},{&quot;2026-06-28&quot;:9.79},{&quot;2026-06-29&quot;:9.79},{&quot;2026-06-30&quot;:9.84},{&quot;2026-07-01&quot;:9.84},{&quot;2026-07-02&quot;:9.84},{&quot;2026-07-03&quot;:9.84},{&quot;2026-07-04&quot;:9.75},{&quot;2026-07-05&quot;:9.8},{&quot;2026-07-06&quot;:9.75},{&quot;2026-07-07&quot;:9.76},{&quot;2026-07-08&quot;:9.76},{&quot;2026-07-09&quot;:9.76},{&quot;2026-07-10&quot;:9.76},{&quot;2026-07-11&quot;:9.76},{&quot;2026-07-12&quot;:9.59},{&quot;2026-07-13&quot;:9.59},{&quot;2026-07-14&quot;:9.59},{&quot;2026-07-15&quot;:9.59},{&quot;2026-07-16&quot;:9.59},{&quot;2026-07-17&quot;:9.59},{&quot;2026-07-18&quot;:9.59},{&quot;2026-07-19&quot;:9.59},{&quot;2026-07-20&quot;:9.59},{&quot;2026-07-21&quot;:9.59},{&quot;2026-07-23&quot;:9.33},{&quot;2026-07-24&quot;:9.33},{&quot;2026-07-25&quot;:9.33},{&quot;2026-07-26&quot;:9.33},{&quot;2026-07-27&quot;:9.33},{&quot;2026-07-28&quot;:9.18},{&quot;2026-07-29&quot;:9.18},{&quot;2026-07-30&quot;:9.18},{&quot;2026-07-31&quot;:9.18},{&quot;2026-08-01&quot;:9.18},{&quot;2026-08-02&quot;:9.25},{&quot;2026-08-03&quot;:9.25},{&quot;2026-08-04&quot;:9.25},{&quot;2026-08-05&quot;:9.1},{&quot;2026-08-07&quot;:8.89},{&quot;2026-08-08&quot;:8.89},{&quot;2026-08-09&quot;:8.89},{&quot;2026-08-10&quot;:8.89},{&quot;2026-08-11&quot;:8.89},{&quot;2026-08-12&quot;:8.89},{&quot;2026-08-13&quot;:8.89},{&quot;2026-08-14&quot;:8.89},{&quot;2026-08-15&quot;:8.89},{&quot;2026-08-16&quot;:8.89},{&quot;2026-08-17&quot;:8.89},{&quot;2026-08-18&quot;:8.89},{&quot;2026-08-19&quot;:8.89},{&quot;2026-08-20&quot;:8.89},{&quot;2026-08-21&quot;:8.89},{&quot;2026-08-22&quot;:8.89},{&quot;2026-08-23&quot;:8.89},{&quot;2026-08-24&quot;:8.89},{&quot;2026-08-25&quot;:8.89},{&quot;2026-08-26&quot;:8.89},{&quot;2026-08-27&quot;:8.89},{&quot;2026-08-28&quot;:8.89},{&quot;2026-08-29&quot;:8.89},{&quot;2026-08-30&quot;:8.89},{&quot;2026-08-31&quot;:8.89},{&quot;2026-09-01&quot;:8.89},{&quot;2026-09-02&quot;:8.85},{&quot;2026-09-03&quot;:8.85},{&quot;2026-09-04&quot;:8.85},{&quot;2026-09-05&quot;:8.85},{&quot;2026-09-06&quot;:8.85},{&quot;2026-09-07&quot;:8.85},{&quot;2026-09-08&quot;:8.85},{&quot;2026-09-09&quot;:8.85},{&quot;2026-09-10&quot;:8.85},{&quot;2026-09-11&quot;:8.89}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:8.18},{&quot;2026-06-13&quot;:8.01},{&quot;2026-06-14&quot;:7.97},{&quot;2026-06-15&quot;:7.89},{&quot;2026-06-16&quot;:7.66},{&quot;2026-06-17&quot;:7.67},{&quot;2026-06-18&quot;:7.65},{&quot;2026-06-19&quot;:7.21},{&quot;2026-06-20&quot;:7.09},{&quot;2026-06-21&quot;:6.82},{&quot;2026-06-22&quot;:7.88},{&quot;2026-06-23&quot;:8.24},{&quot;2026-06-24&quot;:8.17},{&quot;2026-06-25&quot;:8.2},{&quot;2026-06-26&quot;:8.02},{&quot;2026-06-27&quot;:8.36},{&quot;2026-06-28&quot;:8.27},{&quot;2026-06-29&quot;:8.16},{&quot;2026-06-30&quot;:7.89},{&quot;2026-07-01&quot;:7.89},{&quot;2026-07-02&quot;:7.74},{&quot;2026-07-03&quot;:7.92},{&quot;2026-07-04&quot;:7.81},{&quot;2026-07-05&quot;:7.96},{&quot;2026-07-06&quot;:8.0},{&quot;2026-07-07&quot;:7.97},{&quot;2026-07-08&quot;:7.86},{&quot;2026-07-09&quot;:7.89},{&quot;2026-07-10&quot;:7.87},{&quot;2026-07-11&quot;:7.8},{&quot;2026-07-12&quot;:7.8},{&quot;2026-07-13&quot;:7.76},{&quot;2026-07-14&quot;:7.88},{&quot;2026-07-15&quot;:8.1},{&quot;2026-07-16&quot;:7.95},{&quot;2026-07-17&quot;:7.95},{&quot;2026-07-18&quot;:7.78},{&quot;2026-07-19&quot;:7.88},{&quot;2026-07-20&quot;:7.5},{&quot;2026-07-21&quot;:7.67},{&quot;2026-07-23&quot;:7.69},{&quot;2026-07-24&quot;:7.66},{&quot;2026-07-25&quot;:7.86},{&quot;2026-07-26&quot;:8.07},{&quot;2026-07-27&quot;:7.92},{&quot;2026-07-28&quot;:8.05},{&quot;2026-07-29&quot;:8.03},{&quot;2026-07-30&quot;:7.74},{&quot;2026-07-31&quot;:8.01},{&quot;2026-08-01&quot;:7.97},{&quot;2026-08-02&quot;:8.03},{&quot;2026-08-03&quot;:7.97},{&quot;2026-08-04&quot;:7.83},{&quot;2026-08-05&quot;:7.58},{&quot;2026-08-07&quot;:7.66},{&quot;2026-08-08&quot;:7.59},{&quot;2026-08-09&quot;:6.94},{&quot;2026-08-10&quot;:6.94},{&quot;2026-08-11&quot;:6.92},{&quot;2026-08-12&quot;:7.02},{&quot;2026-08-13&quot;:6.7},{&quot;2026-08-14&quot;:6.1},{&quot;2026-08-15&quot;:6.06},{&quot;2026-08-16&quot;:6.34},{&quot;2026-08-17&quot;:6.2},{&quot;2026-08-18&quot;:5.9},{&quot;2026-08-19&quot;:5.97},{&quot;2026-08-20&quot;:5.97},{&quot;2026-08-21&quot;:6.36},{&quot;2026-08-22&quot;:6.41},{&quot;2026-08-23&quot;:6.31},{&quot;2026-08-24&quot;:6.32},{&quot;2026-08-25&quot;:6.2},{&quot;2026-08-26&quot;:6.13},{&quot;2026-08-27&quot;:6.23},{&quot;2026-08-28&quot;:6.23},{&quot;2026-08-29&quot;:6.23},{&quot;2026-08-30&quot;:5.94},{&quot;2026-08-31&quot;:6.03},{&quot;2026-09-01&quot;:5.83},{&quot;2026-09-02&quot;:5.87},{&quot;2026-09-03&quot;:5.87},{&quot;2026-09-04&quot;:5.85},{&quot;2026-09-05&quot;:6.0},{&quot;2026-09-06&quot;:6.11},{&quot;2026-09-07&quot;:5.99},{&quot;2026-09-08&quot;:6.32},{&quot;2026-09-09&quot;:6.32},{&quot;2026-09-10&quot;:6.25},{&quot;2026-09-11&quot;:6.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="41118"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-neo ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $5.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="Farewell" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/e/1/e1068723-d1ef-4007-97d9-b10dccdbade4.jpg?1783923923" />

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Farewell" src="https://cards.scryfall.io/large/front/e/1/e1068723-d1ef-4007-97d9-b10dccdbade4.jpg?1783923923" />
    </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.91
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:6.68},{&quot;2026-06-11&quot;:6.68},{&quot;2026-06-12&quot;:6.68},{&quot;2026-06-13&quot;:6.68},{&quot;2026-06-14&quot;:6.68},{&quot;2026-06-15&quot;:6.68},{&quot;2026-06-16&quot;:6.77},{&quot;2026-06-17&quot;:6.77},{&quot;2026-06-18&quot;:6.82},{&quot;2026-06-19&quot;:6.82},{&quot;2026-06-20&quot;:6.82},{&quot;2026-06-21&quot;:6.82},{&quot;2026-06-22&quot;:6.87},{&quot;2026-06-23&quot;:6.87},{&quot;2026-06-24&quot;:6.87},{&quot;2026-06-25&quot;:6.87},{&quot;2026-06-26&quot;:6.87},{&quot;2026-06-27&quot;:6.79},{&quot;2026-06-28&quot;:6.79},{&quot;2026-06-29&quot;:6.79},{&quot;2026-06-30&quot;:6.79},{&quot;2026-07-01&quot;:6.79},{&quot;2026-07-02&quot;:6.79},{&quot;2026-07-03&quot;:6.79},{&quot;2026-07-04&quot;:6.79},{&quot;2026-07-05&quot;:6.79},{&quot;2026-07-06&quot;:6.83},{&quot;2026-07-07&quot;:6.83},{&quot;2026-07-08&quot;:6.83},{&quot;2026-07-09&quot;:6.83},{&quot;2026-07-10&quot;:6.9},{&quot;2026-07-11&quot;:6.89},{&quot;2026-07-12&quot;:6.89},{&quot;2026-07-13&quot;:6.89},{&quot;2026-07-14&quot;:7.06},{&quot;2026-07-15&quot;:7.06},{&quot;2026-07-16&quot;:7.06},{&quot;2026-07-17&quot;:7.06},{&quot;2026-07-18&quot;:7.05},{&quot;2026-07-19&quot;:7.05},{&quot;2026-07-20&quot;:7.05},{&quot;2026-07-21&quot;:6.68},{&quot;2026-07-23&quot;:6.7},{&quot;2026-07-25&quot;:6.7},{&quot;2026-07-26&quot;:6.7},{&quot;2026-07-27&quot;:6.7},{&quot;2026-07-29&quot;:6.7},{&quot;2026-07-30&quot;:6.7},{&quot;2026-07-31&quot;:6.71},{&quot;2026-08-01&quot;:6.71},{&quot;2026-08-02&quot;:6.71},{&quot;2026-08-03&quot;:6.86},{&quot;2026-08-04&quot;:6.86},{&quot;2026-08-05&quot;:6.86},{&quot;2026-08-07&quot;:6.99},{&quot;2026-08-08&quot;:7.08},{&quot;2026-08-09&quot;:7.03},{&quot;2026-08-10&quot;:6.85},{&quot;2026-08-11&quot;:6.85},{&quot;2026-08-12&quot;:6.85},{&quot;2026-08-13&quot;:6.85},{&quot;2026-08-14&quot;:6.95},{&quot;2026-08-15&quot;:6.95},{&quot;2026-08-16&quot;:6.95},{&quot;2026-08-17&quot;:6.92},{&quot;2026-08-18&quot;:6.92},{&quot;2026-08-19&quot;:6.92},{&quot;2026-08-20&quot;:6.92},{&quot;2026-08-21&quot;:6.92},{&quot;2026-08-22&quot;:6.92},{&quot;2026-08-23&quot;:6.88},{&quot;2026-08-24&quot;:6.88},{&quot;2026-08-25&quot;:6.88},{&quot;2026-08-26&quot;:6.77},{&quot;2026-08-27&quot;:6.77},{&quot;2026-08-28&quot;:6.73},{&quot;2026-08-29&quot;:6.73},{&quot;2026-08-30&quot;:6.89},{&quot;2026-08-31&quot;:6.89},{&quot;2026-09-01&quot;:6.89},{&quot;2026-09-02&quot;:6.89},{&quot;2026-09-03&quot;:6.89},{&quot;2026-09-04&quot;:6.89},{&quot;2026-09-05&quot;:6.95},{&quot;2026-09-06&quot;:6.95},{&quot;2026-09-07&quot;:6.91},{&quot;2026-09-08&quot;:6.91},{&quot;2026-09-09&quot;:6.91},{&quot;2026-09-10&quot;:6.91},{&quot;2026-09-11&quot;:6.91}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:5.73},{&quot;2026-06-11&quot;:5.83},{&quot;2026-06-12&quot;:5.76},{&quot;2026-06-13&quot;:6.06},{&quot;2026-06-14&quot;:5.93},{&quot;2026-06-15&quot;:5.95},{&quot;2026-06-16&quot;:5.82},{&quot;2026-06-17&quot;:5.79},{&quot;2026-06-18&quot;:5.86},{&quot;2026-06-19&quot;:5.87},{&quot;2026-06-20&quot;:5.92},{&quot;2026-06-21&quot;:5.91},{&quot;2026-06-22&quot;:5.96},{&quot;2026-06-23&quot;:5.99},{&quot;2026-06-24&quot;:5.99},{&quot;2026-06-25&quot;:5.93},{&quot;2026-06-26&quot;:5.92},{&quot;2026-06-27&quot;:5.89},{&quot;2026-06-28&quot;:5.86},{&quot;2026-06-29&quot;:5.86},{&quot;2026-06-30&quot;:5.86},{&quot;2026-07-01&quot;:5.81},{&quot;2026-07-02&quot;:5.73},{&quot;2026-07-03&quot;:5.9},{&quot;2026-07-04&quot;:5.98},{&quot;2026-07-05&quot;:6.02},{&quot;2026-07-06&quot;:5.81},{&quot;2026-07-07&quot;:5.85},{&quot;2026-07-08&quot;:5.96},{&quot;2026-07-09&quot;:6.01},{&quot;2026-07-10&quot;:6.08},{&quot;2026-07-11&quot;:5.98},{&quot;2026-07-12&quot;:5.86},{&quot;2026-07-13&quot;:5.82},{&quot;2026-07-14&quot;:5.81},{&quot;2026-07-15&quot;:5.76},{&quot;2026-07-16&quot;:5.81},{&quot;2026-07-17&quot;:5.88},{&quot;2026-07-18&quot;:5.7},{&quot;2026-07-19&quot;:5.59},{&quot;2026-07-20&quot;:5.69},{&quot;2026-07-21&quot;:5.62},{&quot;2026-07-23&quot;:5.81},{&quot;2026-07-25&quot;:5.63},{&quot;2026-07-26&quot;:5.59},{&quot;2026-07-27&quot;:5.53},{&quot;2026-07-29&quot;:5.52},{&quot;2026-07-30&quot;:5.46},{&quot;2026-07-31&quot;:5.38},{&quot;2026-08-01&quot;:5.34},{&quot;2026-08-02&quot;:5.21},{&quot;2026-08-03&quot;:5.3},{&quot;2026-08-04&quot;:5.25},{&quot;2026-08-05&quot;:5.29},{&quot;2026-08-07&quot;:5.27},{&quot;2026-08-08&quot;:5.25},{&quot;2026-08-09&quot;:5.29},{&quot;2026-08-10&quot;:5.43},{&quot;2026-08-11&quot;:5.39},{&quot;2026-08-12&quot;:5.33},{&quot;2026-08-13&quot;:5.28},{&quot;2026-08-14&quot;:5.31},{&quot;2026-08-15&quot;:5.42},{&quot;2026-08-16&quot;:5.46},{&quot;2026-08-17&quot;:5.65},{&quot;2026-08-18&quot;:5.9},{&quot;2026-08-19&quot;:5.77},{&quot;2026-08-20&quot;:5.77},{&quot;2026-08-21&quot;:5.74},{&quot;2026-08-22&quot;:5.68},{&quot;2026-08-23&quot;:5.63},{&quot;2026-08-24&quot;:5.59},{&quot;2026-08-25&quot;:5.59},{&quot;2026-08-26&quot;:5.44},{&quot;2026-08-27&quot;:5.44},{&quot;2026-08-28&quot;:5.66},{&quot;2026-08-29&quot;:5.66},{&quot;2026-08-30&quot;:5.8},{&quot;2026-08-31&quot;:5.97},{&quot;2026-09-01&quot;:5.97},{&quot;2026-09-02&quot;:6.17},{&quot;2026-09-03&quot;:6.13},{&quot;2026-09-04&quot;:5.93},{&quot;2026-09-05&quot;:6.01},{&quot;2026-09-06&quot;:5.94},{&quot;2026-09-07&quot;:6.02},{&quot;2026-09-08&quot;:5.79},{&quot;2026-09-09&quot;:5.85},{&quot;2026-09-10&quot;:5.89},{&quot;2026-09-11&quot;:5.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="87534"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-wot ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $5.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="Hardened Scales" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/2/d2d1bfab-25b4-474b-bdab-ac18215f1920.jpg?1783914918" />

        <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">
            Hardened Scales
        </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="Hardened Scales" src="https://cards.scryfall.io/large/front/d/2/d2d1bfab-25b4-474b-bdab-ac18215f1920.jpg?1783914918" />
    </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.34
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:8.0},{&quot;2026-06-14&quot;:8.07},{&quot;2026-06-15&quot;:8.07},{&quot;2026-06-16&quot;:7.81},{&quot;2026-06-17&quot;:7.81},{&quot;2026-06-18&quot;:7.74},{&quot;2026-06-19&quot;:7.46},{&quot;2026-06-20&quot;:7.46},{&quot;2026-06-21&quot;:7.46},{&quot;2026-06-22&quot;:7.46},{&quot;2026-06-23&quot;:7.46},{&quot;2026-06-24&quot;:7.53},{&quot;2026-06-25&quot;:7.53},{&quot;2026-06-26&quot;:7.68},{&quot;2026-06-27&quot;:7.68},{&quot;2026-06-28&quot;:7.68},{&quot;2026-06-29&quot;:7.74},{&quot;2026-06-30&quot;:7.68},{&quot;2026-07-01&quot;:7.45},{&quot;2026-07-02&quot;:7.59},{&quot;2026-07-03&quot;:7.59},{&quot;2026-07-04&quot;:7.81},{&quot;2026-07-05&quot;:7.82},{&quot;2026-07-06&quot;:8.03},{&quot;2026-07-07&quot;:8.03},{&quot;2026-07-08&quot;:8.03},{&quot;2026-07-09&quot;:8.03},{&quot;2026-07-10&quot;:8.03},{&quot;2026-07-11&quot;:8.03},{&quot;2026-07-12&quot;:8.03},{&quot;2026-07-13&quot;:8.09},{&quot;2026-07-14&quot;:8.15},{&quot;2026-07-15&quot;:8.14},{&quot;2026-07-16&quot;:8.49},{&quot;2026-07-17&quot;:8.49},{&quot;2026-07-18&quot;:8.5},{&quot;2026-07-19&quot;:8.5},{&quot;2026-07-20&quot;:8.5},{&quot;2026-07-21&quot;:8.56},{&quot;2026-07-22&quot;:8.56},{&quot;2026-07-23&quot;:8.56},{&quot;2026-07-24&quot;:8.58},{&quot;2026-07-25&quot;:8.71},{&quot;2026-07-26&quot;:8.71},{&quot;2026-07-27&quot;:8.71},{&quot;2026-07-28&quot;:8.71},{&quot;2026-07-29&quot;:8.78},{&quot;2026-07-30&quot;:8.78},{&quot;2026-07-31&quot;:9.12},{&quot;2026-08-01&quot;:9.17},{&quot;2026-08-02&quot;:9.16},{&quot;2026-08-03&quot;:9.16},{&quot;2026-08-04&quot;:9.16},{&quot;2026-08-05&quot;:9.33},{&quot;2026-08-07&quot;:9.41},{&quot;2026-08-08&quot;:9.41},{&quot;2026-08-09&quot;:9.41},{&quot;2026-08-10&quot;:9.41},{&quot;2026-08-11&quot;:9.38},{&quot;2026-08-12&quot;:9.35},{&quot;2026-08-13&quot;:9.35},{&quot;2026-08-14&quot;:9.35},{&quot;2026-08-15&quot;:9.35},{&quot;2026-08-16&quot;:9.22},{&quot;2026-08-17&quot;:9.22},{&quot;2026-08-18&quot;:9.22},{&quot;2026-08-19&quot;:9.29},{&quot;2026-08-20&quot;:9.2},{&quot;2026-08-21&quot;:9.19},{&quot;2026-08-22&quot;:9.19},{&quot;2026-08-23&quot;:9.24},{&quot;2026-08-24&quot;:9.24},{&quot;2026-08-25&quot;:9.29},{&quot;2026-08-26&quot;:9.29},{&quot;2026-08-27&quot;:9.29},{&quot;2026-08-28&quot;:9.29},{&quot;2026-08-29&quot;:9.29},{&quot;2026-08-30&quot;:9.29},{&quot;2026-08-31&quot;:8.94},{&quot;2026-09-01&quot;:9.2},{&quot;2026-09-02&quot;:9.23},{&quot;2026-09-03&quot;:9.16},{&quot;2026-09-04&quot;:9.16},{&quot;2026-09-05&quot;:9.16},{&quot;2026-09-06&quot;:9.16},{&quot;2026-09-07&quot;:9.21},{&quot;2026-09-08&quot;:9.21},{&quot;2026-09-09&quot;:9.21},{&quot;2026-09-10&quot;:9.21},{&quot;2026-09-11&quot;:9.71}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:4.73},{&quot;2026-06-14&quot;:4.51},{&quot;2026-06-15&quot;:4.31},{&quot;2026-06-16&quot;:4.08},{&quot;2026-06-17&quot;:4.09},{&quot;2026-06-18&quot;:4.31},{&quot;2026-06-19&quot;:4.52},{&quot;2026-06-20&quot;:4.61},{&quot;2026-06-21&quot;:4.49},{&quot;2026-06-22&quot;:4.57},{&quot;2026-06-23&quot;:4.61},{&quot;2026-06-24&quot;:4.6},{&quot;2026-06-25&quot;:4.56},{&quot;2026-06-26&quot;:4.52},{&quot;2026-06-27&quot;:4.58},{&quot;2026-06-28&quot;:4.65},{&quot;2026-06-29&quot;:4.88},{&quot;2026-06-30&quot;:4.82},{&quot;2026-07-01&quot;:5.03},{&quot;2026-07-02&quot;:5.19},{&quot;2026-07-03&quot;:5.13},{&quot;2026-07-04&quot;:5.08},{&quot;2026-07-05&quot;:5.01},{&quot;2026-07-06&quot;:4.84},{&quot;2026-07-07&quot;:4.9},{&quot;2026-07-08&quot;:5.16},{&quot;2026-07-09&quot;:5.17},{&quot;2026-07-10&quot;:5.11},{&quot;2026-07-11&quot;:5.07},{&quot;2026-07-12&quot;:5.13},{&quot;2026-07-13&quot;:5.02},{&quot;2026-07-14&quot;:4.79},{&quot;2026-07-15&quot;:4.99},{&quot;2026-07-16&quot;:4.69},{&quot;2026-07-17&quot;:4.7},{&quot;2026-07-18&quot;:4.66},{&quot;2026-07-19&quot;:4.54},{&quot;2026-07-20&quot;:4.52},{&quot;2026-07-21&quot;:4.6},{&quot;2026-07-22&quot;:4.54},{&quot;2026-07-23&quot;:4.81},{&quot;2026-07-24&quot;:4.94},{&quot;2026-07-25&quot;:5.0},{&quot;2026-07-26&quot;:4.78},{&quot;2026-07-27&quot;:4.67},{&quot;2026-07-28&quot;:4.69},{&quot;2026-07-29&quot;:4.58},{&quot;2026-07-30&quot;:4.13},{&quot;2026-07-31&quot;:4.9},{&quot;2026-08-01&quot;:4.83},{&quot;2026-08-02&quot;:4.89},{&quot;2026-08-03&quot;:4.79},{&quot;2026-08-04&quot;:4.98},{&quot;2026-08-05&quot;:5.01},{&quot;2026-08-07&quot;:4.83},{&quot;2026-08-08&quot;:4.64},{&quot;2026-08-09&quot;:4.65},{&quot;2026-08-10&quot;:4.69},{&quot;2026-08-11&quot;:4.58},{&quot;2026-08-12&quot;:4.76},{&quot;2026-08-13&quot;:5.02},{&quot;2026-08-14&quot;:5.0},{&quot;2026-08-15&quot;:4.99},{&quot;2026-08-16&quot;:4.9},{&quot;2026-08-17&quot;:5.02},{&quot;2026-08-18&quot;:4.9},{&quot;2026-08-19&quot;:5.02},{&quot;2026-08-20&quot;:4.95},{&quot;2026-08-21&quot;:4.58},{&quot;2026-08-22&quot;:4.57},{&quot;2026-08-23&quot;:4.7},{&quot;2026-08-24&quot;:5.02},{&quot;2026-08-25&quot;:5.17},{&quot;2026-08-26&quot;:5.14},{&quot;2026-08-27&quot;:5.17},{&quot;2026-08-28&quot;:5.16},{&quot;2026-08-29&quot;:5.16},{&quot;2026-08-30&quot;:5.45},{&quot;2026-08-31&quot;:5.39},{&quot;2026-09-01&quot;:5.47},{&quot;2026-09-02&quot;:5.58},{&quot;2026-09-03&quot;:5.9},{&quot;2026-09-04&quot;:6.05},{&quot;2026-09-05&quot;:5.91},{&quot;2026-09-06&quot;:5.68},{&quot;2026-09-07&quot;:5.2},{&quot;2026-09-08&quot;:5.18},{&quot;2026-09-09&quot;:5.31},{&quot;2026-09-10&quot;:5.09},{&quot;2026-09-11&quot;:5.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="13277"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmm ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $5.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="Reliquary Tower" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/e/c/ec1d8a99-8a06-4e51-9277-96edb6899b29.jpg?1783915585" />

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

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

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            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="Reliquary Tower" src="https://cards.scryfall.io/large/front/e/c/ec1d8a99-8a06-4e51-9277-96edb6899b29.jpg?1783915585" />
    </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.10
              </span>

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $6.36
              </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">$1.20</span>
              <span class="text-xs text-grey-text">Credit: $1.56</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.65},{&quot;2026-06-14&quot;:5.65},{&quot;2026-06-15&quot;:5.65},{&quot;2026-06-16&quot;:5.6},{&quot;2026-06-17&quot;:5.61},{&quot;2026-06-18&quot;:5.61},{&quot;2026-06-19&quot;:5.62},{&quot;2026-06-20&quot;:5.6},{&quot;2026-06-21&quot;:5.62},{&quot;2026-06-22&quot;:5.62},{&quot;2026-06-23&quot;:5.62},{&quot;2026-06-24&quot;:5.49},{&quot;2026-06-25&quot;:5.49},{&quot;2026-06-26&quot;:5.49},{&quot;2026-06-27&quot;:5.49},{&quot;2026-06-28&quot;:5.49},{&quot;2026-06-29&quot;:5.43},{&quot;2026-06-30&quot;:5.43},{&quot;2026-07-01&quot;:5.47},{&quot;2026-07-02&quot;:5.54},{&quot;2026-07-03&quot;:5.54},{&quot;2026-07-04&quot;:5.54},{&quot;2026-07-05&quot;:5.54},{&quot;2026-07-06&quot;:5.59},{&quot;2026-07-07&quot;:5.59},{&quot;2026-07-08&quot;:5.59},{&quot;2026-07-09&quot;:5.59},{&quot;2026-07-10&quot;:5.59},{&quot;2026-07-11&quot;:5.59},{&quot;2026-07-12&quot;:5.72},{&quot;2026-07-13&quot;:5.72},{&quot;2026-07-14&quot;:5.72},{&quot;2026-07-15&quot;:5.77},{&quot;2026-07-16&quot;:5.69},{&quot;2026-07-17&quot;:5.83},{&quot;2026-07-18&quot;:5.98},{&quot;2026-07-19&quot;:5.91},{&quot;2026-07-20&quot;:5.83},{&quot;2026-07-21&quot;:5.83},{&quot;2026-07-22&quot;:5.83},{&quot;2026-07-23&quot;:5.83},{&quot;2026-07-24&quot;:5.91},{&quot;2026-07-25&quot;:5.91},{&quot;2026-07-26&quot;:5.91},{&quot;2026-07-27&quot;:5.91},{&quot;2026-07-28&quot;:5.91},{&quot;2026-07-29&quot;:6.0},{&quot;2026-07-30&quot;:6.0},{&quot;2026-07-31&quot;:6.0},{&quot;2026-08-01&quot;:6.0},{&quot;2026-08-02&quot;:6.08},{&quot;2026-08-03&quot;:6.18},{&quot;2026-08-04&quot;:6.18},{&quot;2026-08-05&quot;:6.18},{&quot;2026-08-07&quot;:6.18},{&quot;2026-08-08&quot;:6.18},{&quot;2026-08-09&quot;:6.17},{&quot;2026-08-10&quot;:6.2},{&quot;2026-08-11&quot;:6.21},{&quot;2026-08-12&quot;:6.21},{&quot;2026-08-13&quot;:6.31},{&quot;2026-08-14&quot;:6.51},{&quot;2026-08-15&quot;:6.54},{&quot;2026-08-16&quot;:6.54},{&quot;2026-08-17&quot;:6.5},{&quot;2026-08-18&quot;:6.5},{&quot;2026-08-19&quot;:6.5},{&quot;2026-08-20&quot;:6.5},{&quot;2026-08-21&quot;:6.56},{&quot;2026-08-22&quot;:6.56},{&quot;2026-08-23&quot;:6.56},{&quot;2026-08-24&quot;:6.56},{&quot;2026-08-25&quot;:6.64},{&quot;2026-08-26&quot;:6.5},{&quot;2026-08-27&quot;:6.5},{&quot;2026-08-28&quot;:6.5},{&quot;2026-08-29&quot;:6.5},{&quot;2026-08-30&quot;:6.4},{&quot;2026-08-31&quot;:6.4},{&quot;2026-09-01&quot;:6.4},{&quot;2026-09-02&quot;:6.4},{&quot;2026-09-03&quot;:6.4},{&quot;2026-09-04&quot;:6.4},{&quot;2026-09-05&quot;:6.26},{&quot;2026-09-06&quot;:6.26},{&quot;2026-09-07&quot;:6.26},{&quot;2026-09-08&quot;:6.36},{&quot;2026-09-09&quot;:6.36},{&quot;2026-09-10&quot;:6.36},{&quot;2026-09-11&quot;:6.36}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:4.89},{&quot;2026-06-14&quot;:4.9},{&quot;2026-06-15&quot;:4.91},{&quot;2026-06-16&quot;:4.86},{&quot;2026-06-17&quot;:4.63},{&quot;2026-06-18&quot;:4.64},{&quot;2026-06-19&quot;:4.41},{&quot;2026-06-20&quot;:4.29},{&quot;2026-06-21&quot;:4.12},{&quot;2026-06-22&quot;:4.61},{&quot;2026-06-23&quot;:4.56},{&quot;2026-06-24&quot;:4.6},{&quot;2026-06-25&quot;:4.52},{&quot;2026-06-26&quot;:4.44},{&quot;2026-06-27&quot;:4.22},{&quot;2026-06-28&quot;:4.02},{&quot;2026-06-29&quot;:3.84},{&quot;2026-06-30&quot;:3.84},{&quot;2026-07-01&quot;:3.5},{&quot;2026-07-02&quot;:3.62},{&quot;2026-07-03&quot;:3.86},{&quot;2026-07-04&quot;:4.19},{&quot;2026-07-05&quot;:4.1},{&quot;2026-07-06&quot;:4.12},{&quot;2026-07-07&quot;:3.6},{&quot;2026-07-08&quot;:3.59},{&quot;2026-07-09&quot;:3.53},{&quot;2026-07-10&quot;:3.75},{&quot;2026-07-11&quot;:4.4},{&quot;2026-07-12&quot;:4.4},{&quot;2026-07-13&quot;:4.67},{&quot;2026-07-14&quot;:4.76},{&quot;2026-07-15&quot;:4.71},{&quot;2026-07-16&quot;:4.73},{&quot;2026-07-17&quot;:4.46},{&quot;2026-07-18&quot;:4.44},{&quot;2026-07-19&quot;:4.43},{&quot;2026-07-20&quot;:4.37},{&quot;2026-07-21&quot;:4.37},{&quot;2026-07-22&quot;:4.13},{&quot;2026-07-23&quot;:3.99},{&quot;2026-07-24&quot;:4.0},{&quot;2026-07-25&quot;:3.95},{&quot;2026-07-26&quot;:3.91},{&quot;2026-07-27&quot;:3.78},{&quot;2026-07-28&quot;:3.67},{&quot;2026-07-29&quot;:3.88},{&quot;2026-07-30&quot;:3.92},{&quot;2026-07-31&quot;:3.82},{&quot;2026-08-01&quot;:3.84},{&quot;2026-08-02&quot;:3.89},{&quot;2026-08-03&quot;:3.8},{&quot;2026-08-04&quot;:3.81},{&quot;2026-08-05&quot;:4.11},{&quot;2026-08-07&quot;:4.0},{&quot;2026-08-08&quot;:4.02},{&quot;2026-08-09&quot;:4.12},{&quot;2026-08-10&quot;:4.1},{&quot;2026-08-11&quot;:4.1},{&quot;2026-08-12&quot;:4.18},{&quot;2026-08-13&quot;:4.07},{&quot;2026-08-14&quot;:3.99},{&quot;2026-08-15&quot;:3.86},{&quot;2026-08-16&quot;:4.28},{&quot;2026-08-17&quot;:4.83},{&quot;2026-08-18&quot;:4.81},{&quot;2026-08-19&quot;:4.69},{&quot;2026-08-20&quot;:4.62},{&quot;2026-08-21&quot;:4.63},{&quot;2026-08-22&quot;:4.56},{&quot;2026-08-23&quot;:4.64},{&quot;2026-08-24&quot;:4.67},{&quot;2026-08-25&quot;:4.79},{&quot;2026-08-26&quot;:4.74},{&quot;2026-08-27&quot;:4.86},{&quot;2026-08-28&quot;:4.68},{&quot;2026-08-29&quot;:4.68},{&quot;2026-08-30&quot;:4.61},{&quot;2026-08-31&quot;:4.61},{&quot;2026-09-01&quot;:4.48},{&quot;2026-09-02&quot;:4.59},{&quot;2026-09-03&quot;:4.62},{&quot;2026-09-04&quot;:4.6},{&quot;2026-09-05&quot;:4.81},{&quot;2026-09-06&quot;:4.64},{&quot;2026-09-07&quot;:5.23},{&quot;2026-09-08&quot;:5.19},{&quot;2026-09-09&quot;:5.02},{&quot;2026-09-10&quot;:4.98},{&quot;2026-09-11&quot;:5.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="28575"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fdn ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="High Fae Trickster" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/f/7f1b93ea-1ec1-4010-9343-765742f5088b.jpg?1783909118" />

        <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">
            High Fae Trickster
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Creature — Faerie Wizard</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-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="High Fae Trickster" src="https://cards.scryfall.io/large/front/7/f/7f1b93ea-1ec1-4010-9343-765742f5088b.jpg?1783909118" />
    </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.44
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:5.71},{&quot;2026-06-14&quot;:5.35},{&quot;2026-06-15&quot;:5.33},{&quot;2026-06-16&quot;:5.33},{&quot;2026-06-17&quot;:5.33},{&quot;2026-06-18&quot;:5.33},{&quot;2026-06-19&quot;:5.31},{&quot;2026-06-20&quot;:5.4},{&quot;2026-06-21&quot;:5.17},{&quot;2026-06-22&quot;:4.97},{&quot;2026-06-23&quot;:4.88},{&quot;2026-06-24&quot;:4.88},{&quot;2026-06-25&quot;:4.88},{&quot;2026-06-26&quot;:4.74},{&quot;2026-06-27&quot;:4.68},{&quot;2026-06-28&quot;:4.6},{&quot;2026-06-29&quot;:4.46},{&quot;2026-06-30&quot;:4.43},{&quot;2026-07-01&quot;:4.48},{&quot;2026-07-02&quot;:4.54},{&quot;2026-07-03&quot;:4.54},{&quot;2026-07-04&quot;:4.51},{&quot;2026-07-05&quot;:4.51},{&quot;2026-07-06&quot;:4.43},{&quot;2026-07-07&quot;:4.66},{&quot;2026-07-08&quot;:5.0},{&quot;2026-07-09&quot;:5.05},{&quot;2026-07-10&quot;:5.22},{&quot;2026-07-11&quot;:5.22},{&quot;2026-07-12&quot;:5.26},{&quot;2026-07-13&quot;:5.41},{&quot;2026-07-14&quot;:5.2},{&quot;2026-07-15&quot;:5.16},{&quot;2026-07-16&quot;:5.4},{&quot;2026-07-17&quot;:5.41},{&quot;2026-07-18&quot;:5.42},{&quot;2026-07-19&quot;:5.56},{&quot;2026-07-20&quot;:5.41},{&quot;2026-07-21&quot;:5.31},{&quot;2026-07-22&quot;:5.24},{&quot;2026-07-23&quot;:5.16},{&quot;2026-07-24&quot;:5.16},{&quot;2026-07-25&quot;:5.14},{&quot;2026-07-26&quot;:5.18},{&quot;2026-07-27&quot;:4.98},{&quot;2026-07-28&quot;:4.65},{&quot;2026-07-29&quot;:4.82},{&quot;2026-07-30&quot;:4.91},{&quot;2026-07-31&quot;:4.42},{&quot;2026-08-01&quot;:4.42},{&quot;2026-08-02&quot;:4.53},{&quot;2026-08-03&quot;:4.39},{&quot;2026-08-04&quot;:4.38},{&quot;2026-08-05&quot;:4.51},{&quot;2026-08-07&quot;:4.77},{&quot;2026-08-08&quot;:4.62},{&quot;2026-08-09&quot;:4.55},{&quot;2026-08-10&quot;:4.59},{&quot;2026-08-11&quot;:4.59},{&quot;2026-08-12&quot;:4.52},{&quot;2026-08-13&quot;:4.88},{&quot;2026-08-14&quot;:4.86},{&quot;2026-08-15&quot;:4.86},{&quot;2026-08-16&quot;:4.84},{&quot;2026-08-17&quot;:4.8},{&quot;2026-08-18&quot;:4.63},{&quot;2026-08-19&quot;:4.72},{&quot;2026-08-20&quot;:4.94},{&quot;2026-08-21&quot;:4.63},{&quot;2026-08-22&quot;:4.42},{&quot;2026-08-23&quot;:4.74},{&quot;2026-08-24&quot;:4.93},{&quot;2026-08-25&quot;:4.96},{&quot;2026-08-26&quot;:4.98},{&quot;2026-08-27&quot;:5.02},{&quot;2026-08-28&quot;:5.12},{&quot;2026-08-29&quot;:5.12},{&quot;2026-08-30&quot;:5.15},{&quot;2026-08-31&quot;:5.05},{&quot;2026-09-01&quot;:5.23},{&quot;2026-09-02&quot;:5.59},{&quot;2026-09-03&quot;:5.59},{&quot;2026-09-04&quot;:5.59},{&quot;2026-09-05&quot;:5.6},{&quot;2026-09-06&quot;:5.6},{&quot;2026-09-07&quot;:5.74},{&quot;2026-09-08&quot;:5.57},{&quot;2026-09-09&quot;:5.57},{&quot;2026-09-10&quot;:5.48},{&quot;2026-09-11&quot;:5.48}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:5.13},{&quot;2026-06-14&quot;:5.2},{&quot;2026-06-15&quot;:5.69},{&quot;2026-06-16&quot;:5.17},{&quot;2026-06-17&quot;:5.25},{&quot;2026-06-18&quot;:5.17},{&quot;2026-06-19&quot;:5.23},{&quot;2026-06-20&quot;:5.43},{&quot;2026-06-21&quot;:5.61},{&quot;2026-06-22&quot;:5.68},{&quot;2026-06-23&quot;:5.23},{&quot;2026-06-24&quot;:5.34},{&quot;2026-06-25&quot;:5.16},{&quot;2026-06-26&quot;:4.94},{&quot;2026-06-27&quot;:4.83},{&quot;2026-06-28&quot;:4.66},{&quot;2026-06-29&quot;:4.72},{&quot;2026-06-30&quot;:4.77},{&quot;2026-07-01&quot;:4.77},{&quot;2026-07-02&quot;:4.68},{&quot;2026-07-03&quot;:4.38},{&quot;2026-07-04&quot;:4.33},{&quot;2026-07-05&quot;:4.45},{&quot;2026-07-06&quot;:4.62},{&quot;2026-07-07&quot;:4.52},{&quot;2026-07-08&quot;:4.36},{&quot;2026-07-09&quot;:4.38},{&quot;2026-07-10&quot;:4.41},{&quot;2026-07-11&quot;:4.57},{&quot;2026-07-12&quot;:4.68},{&quot;2026-07-13&quot;:4.9},{&quot;2026-07-14&quot;:5.21},{&quot;2026-07-15&quot;:4.95},{&quot;2026-07-16&quot;:5.09},{&quot;2026-07-17&quot;:5.12},{&quot;2026-07-18&quot;:5.06},{&quot;2026-07-19&quot;:4.99},{&quot;2026-07-20&quot;:4.73},{&quot;2026-07-21&quot;:4.41},{&quot;2026-07-22&quot;:4.39},{&quot;2026-07-23&quot;:4.38},{&quot;2026-07-24&quot;:4.28},{&quot;2026-07-25&quot;:4.26},{&quot;2026-07-26&quot;:4.1},{&quot;2026-07-27&quot;:4.06},{&quot;2026-07-28&quot;:4.18},{&quot;2026-07-29&quot;:4.64},{&quot;2026-07-30&quot;:4.33},{&quot;2026-07-31&quot;:4.36},{&quot;2026-08-01&quot;:4.13},{&quot;2026-08-02&quot;:4.34},{&quot;2026-08-03&quot;:4.16},{&quot;2026-08-04&quot;:4.46},{&quot;2026-08-05&quot;:4.2},{&quot;2026-08-07&quot;:3.88},{&quot;2026-08-08&quot;:4.23},{&quot;2026-08-09&quot;:4.31},{&quot;2026-08-10&quot;:3.64},{&quot;2026-08-11&quot;:3.91},{&quot;2026-08-12&quot;:4.49},{&quot;2026-08-13&quot;:4.47},{&quot;2026-08-14&quot;:4.16},{&quot;2026-08-15&quot;:3.92},{&quot;2026-08-16&quot;:3.8},{&quot;2026-08-17&quot;:4.46},{&quot;2026-08-18&quot;:4.7},{&quot;2026-08-19&quot;:4.52},{&quot;2026-08-20&quot;:4.93},{&quot;2026-08-21&quot;:5.2},{&quot;2026-08-22&quot;:5.33},{&quot;2026-08-23&quot;:4.98},{&quot;2026-08-24&quot;:5.13},{&quot;2026-08-25&quot;:4.75},{&quot;2026-08-26&quot;:4.81},{&quot;2026-08-27&quot;:4.68},{&quot;2026-08-28&quot;:4.84},{&quot;2026-08-29&quot;:4.84},{&quot;2026-08-30&quot;:5.04},{&quot;2026-08-31&quot;:5.03},{&quot;2026-09-01&quot;:4.94},{&quot;2026-09-02&quot;:4.85},{&quot;2026-09-03&quot;:4.5},{&quot;2026-09-04&quot;:4.85},{&quot;2026-09-05&quot;:4.91},{&quot;2026-09-06&quot;:4.94},{&quot;2026-09-07&quot;:4.71},{&quot;2026-09-08&quot;:4.59},{&quot;2026-09-09&quot;:4.25},{&quot;2026-09-10&quot;:4.21},{&quot;2026-09-11&quot;:4.44}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="78033"
  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">
            Wizard Class
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $3.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="Wizard Class" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/1/715cf105-edf8-4d75-9279-c83431c087c6.jpg?1783922344" />

        <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">
            Wizard Class
        </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 — Class</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="Wizard Class" src="https://cards.scryfall.io/large/front/7/1/715cf105-edf8-4d75-9279-c83431c087c6.jpg?1783922344" />
    </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.22
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:2.27},{&quot;2026-06-14&quot;:2.32},{&quot;2026-06-15&quot;:2.41},{&quot;2026-06-16&quot;:2.33},{&quot;2026-06-17&quot;:2.33},{&quot;2026-06-18&quot;:2.33},{&quot;2026-06-19&quot;:2.33},{&quot;2026-06-20&quot;:2.28},{&quot;2026-06-21&quot;:2.34},{&quot;2026-06-22&quot;:2.38},{&quot;2026-06-23&quot;:2.52},{&quot;2026-06-24&quot;:2.52},{&quot;2026-06-25&quot;:2.51},{&quot;2026-06-26&quot;:2.44},{&quot;2026-06-27&quot;:2.44},{&quot;2026-06-28&quot;:2.36},{&quot;2026-06-29&quot;:2.28},{&quot;2026-06-30&quot;:2.4},{&quot;2026-07-01&quot;:2.21},{&quot;2026-07-02&quot;:2.23},{&quot;2026-07-03&quot;:2.31},{&quot;2026-07-04&quot;:2.49},{&quot;2026-07-05&quot;:2.43},{&quot;2026-07-06&quot;:2.61},{&quot;2026-07-07&quot;:2.61},{&quot;2026-07-08&quot;:2.6},{&quot;2026-07-09&quot;:2.61},{&quot;2026-07-10&quot;:2.69},{&quot;2026-07-11&quot;:2.72},{&quot;2026-07-12&quot;:2.71},{&quot;2026-07-13&quot;:2.73},{&quot;2026-07-14&quot;:2.64},{&quot;2026-07-15&quot;:2.95},{&quot;2026-07-16&quot;:2.92},{&quot;2026-07-17&quot;:2.79},{&quot;2026-07-18&quot;:2.79},{&quot;2026-07-19&quot;:2.85},{&quot;2026-07-20&quot;:2.88},{&quot;2026-07-21&quot;:2.79},{&quot;2026-07-22&quot;:2.81},{&quot;2026-07-23&quot;:2.68},{&quot;2026-07-24&quot;:2.57},{&quot;2026-07-25&quot;:2.57},{&quot;2026-07-26&quot;:2.54},{&quot;2026-07-27&quot;:2.45},{&quot;2026-07-28&quot;:2.47},{&quot;2026-07-29&quot;:2.42},{&quot;2026-07-30&quot;:2.53},{&quot;2026-07-31&quot;:2.31},{&quot;2026-08-01&quot;:2.48},{&quot;2026-08-02&quot;:2.52},{&quot;2026-08-03&quot;:2.54},{&quot;2026-08-04&quot;:2.62},{&quot;2026-08-05&quot;:2.65},{&quot;2026-08-07&quot;:2.39},{&quot;2026-08-08&quot;:2.2},{&quot;2026-08-09&quot;:2.08},{&quot;2026-08-10&quot;:2.2},{&quot;2026-08-11&quot;:2.24},{&quot;2026-08-12&quot;:2.51},{&quot;2026-08-13&quot;:2.59},{&quot;2026-08-14&quot;:2.62},{&quot;2026-08-15&quot;:2.7},{&quot;2026-08-16&quot;:2.71},{&quot;2026-08-17&quot;:2.62},{&quot;2026-08-18&quot;:2.28},{&quot;2026-08-19&quot;:2.4},{&quot;2026-08-20&quot;:2.38},{&quot;2026-08-21&quot;:2.35},{&quot;2026-08-22&quot;:2.65},{&quot;2026-08-23&quot;:2.8},{&quot;2026-08-24&quot;:2.76},{&quot;2026-08-25&quot;:2.9},{&quot;2026-08-26&quot;:2.76},{&quot;2026-08-27&quot;:2.9},{&quot;2026-08-28&quot;:2.88},{&quot;2026-08-29&quot;:2.88},{&quot;2026-08-30&quot;:2.86},{&quot;2026-08-31&quot;:2.86},{&quot;2026-09-01&quot;:2.92},{&quot;2026-09-02&quot;:2.88},{&quot;2026-09-03&quot;:3.13},{&quot;2026-09-04&quot;:3.05},{&quot;2026-09-05&quot;:3.19},{&quot;2026-09-06&quot;:3.19},{&quot;2026-09-07&quot;:3.18},{&quot;2026-09-08&quot;:3.11},{&quot;2026-09-09&quot;:3.18},{&quot;2026-09-10&quot;:3.14},{&quot;2026-09-11&quot;:3.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="76562"
  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">
            An Offer You Can&#39;t Refuse
        </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">
              ↑
              1%
            </span>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="An Offer You Can&#39;t Refuse" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/1/71c65e99-6caa-45e9-b619-6d7669ea4178.jpg?1783910348" />

        <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">
            An Offer You Can&#39;t Refuse
        </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="An Offer You Can&#39;t Refuse" src="https://cards.scryfall.io/large/front/7/1/71c65e99-6caa-45e9-b619-6d7669ea4178.jpg?1783910348" />
    </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.19
              </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.20</span>
              <span class="text-xs text-grey-text">Credit: $1.56</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:2.29},{&quot;2026-06-11&quot;:2.3},{&quot;2026-06-12&quot;:2.3},{&quot;2026-06-13&quot;:2.28},{&quot;2026-06-14&quot;:2.27},{&quot;2026-06-15&quot;:2.25},{&quot;2026-06-16&quot;:2.25},{&quot;2026-06-17&quot;:2.2},{&quot;2026-06-18&quot;:2.2},{&quot;2026-06-19&quot;:2.21},{&quot;2026-06-20&quot;:2.23},{&quot;2026-06-21&quot;:2.22},{&quot;2026-06-22&quot;:2.25},{&quot;2026-06-23&quot;:2.25},{&quot;2026-06-24&quot;:2.25},{&quot;2026-06-25&quot;:2.24},{&quot;2026-06-26&quot;:2.24},{&quot;2026-06-27&quot;:2.25},{&quot;2026-06-28&quot;:2.24},{&quot;2026-06-29&quot;:2.24},{&quot;2026-06-30&quot;:2.24},{&quot;2026-07-01&quot;:2.24},{&quot;2026-07-02&quot;:2.3},{&quot;2026-07-03&quot;:2.32},{&quot;2026-07-04&quot;:2.37},{&quot;2026-07-05&quot;:2.36},{&quot;2026-07-06&quot;:2.36},{&quot;2026-07-07&quot;:2.34},{&quot;2026-07-08&quot;:2.35},{&quot;2026-07-09&quot;:2.35},{&quot;2026-07-10&quot;:2.36},{&quot;2026-07-11&quot;:2.26},{&quot;2026-07-12&quot;:2.22},{&quot;2026-07-13&quot;:2.23},{&quot;2026-07-14&quot;:2.24},{&quot;2026-07-15&quot;:2.19},{&quot;2026-07-16&quot;:2.2},{&quot;2026-07-17&quot;:2.28},{&quot;2026-07-18&quot;:2.45},{&quot;2026-07-19&quot;:2.49},{&quot;2026-07-20&quot;:2.51},{&quot;2026-07-21&quot;:2.51},{&quot;2026-07-23&quot;:2.63},{&quot;2026-07-25&quot;:2.65},{&quot;2026-07-26&quot;:2.59},{&quot;2026-07-27&quot;:2.59},{&quot;2026-07-29&quot;:2.41},{&quot;2026-07-30&quot;:2.41},{&quot;2026-07-31&quot;:2.32},{&quot;2026-08-01&quot;:2.38},{&quot;2026-08-02&quot;:2.37},{&quot;2026-08-03&quot;:2.34},{&quot;2026-08-04&quot;:2.34},{&quot;2026-08-05&quot;:2.36},{&quot;2026-08-07&quot;:2.42},{&quot;2026-08-08&quot;:2.42},{&quot;2026-08-09&quot;:2.43},{&quot;2026-08-10&quot;:2.32},{&quot;2026-08-11&quot;:2.34},{&quot;2026-08-12&quot;:2.34},{&quot;2026-08-13&quot;:2.37},{&quot;2026-08-14&quot;:2.44},{&quot;2026-08-15&quot;:2.59},{&quot;2026-08-16&quot;:2.63},{&quot;2026-08-17&quot;:2.78},{&quot;2026-08-18&quot;:2.88},{&quot;2026-08-19&quot;:2.93},{&quot;2026-08-20&quot;:2.93},{&quot;2026-08-21&quot;:2.98},{&quot;2026-08-22&quot;:2.95},{&quot;2026-08-23&quot;:2.97},{&quot;2026-08-24&quot;:2.83},{&quot;2026-08-25&quot;:2.83},{&quot;2026-08-26&quot;:2.92},{&quot;2026-08-27&quot;:2.94},{&quot;2026-08-28&quot;:2.91},{&quot;2026-08-29&quot;:2.91},{&quot;2026-08-30&quot;:3.07},{&quot;2026-08-31&quot;:3.1},{&quot;2026-09-01&quot;:3.1},{&quot;2026-09-02&quot;:3.14},{&quot;2026-09-03&quot;:3.13},{&quot;2026-09-04&quot;:3.15},{&quot;2026-09-05&quot;:3.15},{&quot;2026-09-06&quot;:3.15},{&quot;2026-09-07&quot;:3.21},{&quot;2026-09-08&quot;:3.25},{&quot;2026-09-09&quot;:3.25},{&quot;2026-09-10&quot;:3.19},{&quot;2026-09-11&quot;:3.19}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Swiftfoot Boots" src="https://cards.scryfall.io/large/front/a/f/aff074f2-6ad9-4c0c-88e2-fc622772d2a1.jpg?1783904750" />
    </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.03
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:2.54},{&quot;2026-06-14&quot;:2.6},{&quot;2026-06-15&quot;:2.64},{&quot;2026-06-16&quot;:2.58},{&quot;2026-06-17&quot;:2.6},{&quot;2026-06-18&quot;:2.51},{&quot;2026-06-19&quot;:2.46},{&quot;2026-06-20&quot;:2.54},{&quot;2026-06-21&quot;:2.63},{&quot;2026-06-22&quot;:2.68},{&quot;2026-06-23&quot;:2.76},{&quot;2026-06-24&quot;:2.85},{&quot;2026-06-25&quot;:2.8},{&quot;2026-06-26&quot;:2.8},{&quot;2026-06-27&quot;:2.96},{&quot;2026-06-28&quot;:2.87},{&quot;2026-06-29&quot;:2.83},{&quot;2026-06-30&quot;:2.97},{&quot;2026-07-01&quot;:2.77},{&quot;2026-07-02&quot;:2.77},{&quot;2026-07-03&quot;:2.65},{&quot;2026-07-04&quot;:2.56},{&quot;2026-07-05&quot;:2.42},{&quot;2026-07-06&quot;:2.49},{&quot;2026-07-07&quot;:2.47},{&quot;2026-07-08&quot;:2.46},{&quot;2026-07-09&quot;:2.41},{&quot;2026-07-10&quot;:2.53},{&quot;2026-07-11&quot;:2.44},{&quot;2026-07-12&quot;:2.45},{&quot;2026-07-13&quot;:2.62},{&quot;2026-07-14&quot;:2.74},{&quot;2026-07-15&quot;:2.71},{&quot;2026-07-16&quot;:2.69},{&quot;2026-07-17&quot;:2.6},{&quot;2026-07-18&quot;:2.53},{&quot;2026-07-19&quot;:2.26},{&quot;2026-07-20&quot;:2.19},{&quot;2026-07-21&quot;:2.22},{&quot;2026-07-22&quot;:2.26},{&quot;2026-07-23&quot;:2.37},{&quot;2026-07-24&quot;:2.39},{&quot;2026-07-25&quot;:2.53},{&quot;2026-07-26&quot;:2.49},{&quot;2026-07-27&quot;:2.52},{&quot;2026-07-28&quot;:2.49},{&quot;2026-07-29&quot;:2.48},{&quot;2026-07-30&quot;:2.5},{&quot;2026-07-31&quot;:2.48},{&quot;2026-08-01&quot;:2.53},{&quot;2026-08-02&quot;:2.5},{&quot;2026-08-03&quot;:2.46},{&quot;2026-08-04&quot;:2.51},{&quot;2026-08-05&quot;:2.43},{&quot;2026-08-07&quot;:2.52},{&quot;2026-08-08&quot;:2.46},{&quot;2026-08-09&quot;:2.48},{&quot;2026-08-10&quot;:2.62},{&quot;2026-08-11&quot;:2.55},{&quot;2026-08-12&quot;:2.73},{&quot;2026-08-13&quot;:2.73},{&quot;2026-08-14&quot;:2.73},{&quot;2026-08-15&quot;:2.66},{&quot;2026-08-16&quot;:2.64},{&quot;2026-08-17&quot;:2.61},{&quot;2026-08-18&quot;:2.68},{&quot;2026-08-19&quot;:2.78},{&quot;2026-08-20&quot;:2.8},{&quot;2026-08-21&quot;:2.86},{&quot;2026-08-22&quot;:2.92},{&quot;2026-08-23&quot;:2.84},{&quot;2026-08-24&quot;:2.94},{&quot;2026-08-25&quot;:2.95},{&quot;2026-08-26&quot;:2.91},{&quot;2026-08-27&quot;:2.95},{&quot;2026-08-28&quot;:3.19},{&quot;2026-08-29&quot;:3.19},{&quot;2026-08-30&quot;:3.31},{&quot;2026-08-31&quot;:3.3},{&quot;2026-09-01&quot;:3.34},{&quot;2026-09-02&quot;:3.05},{&quot;2026-09-03&quot;:3.05},{&quot;2026-09-04&quot;:3.03},{&quot;2026-09-05&quot;:2.97},{&quot;2026-09-06&quot;:2.96},{&quot;2026-09-07&quot;:2.86},{&quot;2026-09-08&quot;:2.96},{&quot;2026-09-09&quot;:2.95},{&quot;2026-09-10&quot;:2.97},{&quot;2026-09-11&quot;:3.03}]}"
        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="94958"
  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-fic 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">
            Alisaie Leveilleur
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Alisaie Leveilleur
        </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 — Elf Wizard</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Alisaie Leveilleur" src="https://cards.scryfall.io/large/front/d/e/de9e594c-fe46-4c24-8e64-a5929472453d.jpg?1783906330" />
    </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.50
              </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">
                $11.91
              </span>

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$1.75</span>
              <span class="text-xs text-grey-text">Credit: $2.28</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;:11.82},{&quot;2026-06-11&quot;:11.72},{&quot;2026-06-12&quot;:11.72},{&quot;2026-06-13&quot;:11.72},{&quot;2026-06-14&quot;:11.7},{&quot;2026-06-15&quot;:11.63},{&quot;2026-06-16&quot;:11.62},{&quot;2026-06-17&quot;:11.61},{&quot;2026-06-18&quot;:11.61},{&quot;2026-06-19&quot;:11.61},{&quot;2026-06-20&quot;:11.61},{&quot;2026-06-21&quot;:11.61},{&quot;2026-06-22&quot;:11.6},{&quot;2026-06-23&quot;:11.6},{&quot;2026-06-24&quot;:11.6},{&quot;2026-06-25&quot;:11.6},{&quot;2026-06-26&quot;:11.6},{&quot;2026-06-27&quot;:11.6},{&quot;2026-06-28&quot;:11.6},{&quot;2026-06-29&quot;:11.59},{&quot;2026-06-30&quot;:11.59},{&quot;2026-07-01&quot;:11.59},{&quot;2026-07-02&quot;:11.59},{&quot;2026-07-03&quot;:11.61},{&quot;2026-07-04&quot;:11.63},{&quot;2026-07-05&quot;:11.71},{&quot;2026-07-06&quot;:11.63},{&quot;2026-07-07&quot;:11.67},{&quot;2026-07-08&quot;:11.71},{&quot;2026-07-09&quot;:11.77},{&quot;2026-07-10&quot;:11.77},{&quot;2026-07-11&quot;:11.77},{&quot;2026-07-12&quot;:11.77},{&quot;2026-07-13&quot;:11.77},{&quot;2026-07-14&quot;:11.83},{&quot;2026-07-15&quot;:11.89},{&quot;2026-07-16&quot;:11.97},{&quot;2026-07-17&quot;:11.97},{&quot;2026-07-18&quot;:11.97},{&quot;2026-07-19&quot;:11.97},{&quot;2026-07-20&quot;:11.97},{&quot;2026-07-21&quot;:11.97},{&quot;2026-07-23&quot;:11.97},{&quot;2026-07-25&quot;:11.97},{&quot;2026-07-26&quot;:11.97},{&quot;2026-07-27&quot;:11.97},{&quot;2026-07-29&quot;:12.02},{&quot;2026-07-30&quot;:12.02},{&quot;2026-07-31&quot;:12.02},{&quot;2026-08-01&quot;:12.02},{&quot;2026-08-02&quot;:12.02},{&quot;2026-08-03&quot;:11.84},{&quot;2026-08-04&quot;:11.84},{&quot;2026-08-05&quot;:11.84},{&quot;2026-08-07&quot;:11.75},{&quot;2026-08-08&quot;:11.75},{&quot;2026-08-09&quot;:11.75},{&quot;2026-08-10&quot;:11.75},{&quot;2026-08-11&quot;:11.75},{&quot;2026-08-12&quot;:11.81},{&quot;2026-08-13&quot;:11.8},{&quot;2026-08-14&quot;:11.8},{&quot;2026-08-15&quot;:11.8},{&quot;2026-08-16&quot;:11.71},{&quot;2026-08-17&quot;:11.71},{&quot;2026-08-18&quot;:11.71},{&quot;2026-08-19&quot;:11.71},{&quot;2026-08-20&quot;:11.71},{&quot;2026-08-21&quot;:11.71},{&quot;2026-08-22&quot;:11.71},{&quot;2026-08-23&quot;:11.71},{&quot;2026-08-24&quot;:11.71},{&quot;2026-08-25&quot;:11.71},{&quot;2026-08-26&quot;:11.71},{&quot;2026-08-27&quot;:11.71},{&quot;2026-08-28&quot;:11.71},{&quot;2026-08-29&quot;:11.71},{&quot;2026-08-30&quot;:11.74},{&quot;2026-08-31&quot;:11.74},{&quot;2026-09-01&quot;:11.74},{&quot;2026-09-02&quot;:11.79},{&quot;2026-09-03&quot;:11.81},{&quot;2026-09-04&quot;:11.81},{&quot;2026-09-05&quot;:11.88},{&quot;2026-09-06&quot;:11.88},{&quot;2026-09-07&quot;:11.92},{&quot;2026-09-08&quot;:11.91},{&quot;2026-09-09&quot;:11.91},{&quot;2026-09-10&quot;:11.91},{&quot;2026-09-11&quot;:11.91}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:2.09},{&quot;2026-06-11&quot;:2.09},{&quot;2026-06-12&quot;:2.13},{&quot;2026-06-13&quot;:2.13},{&quot;2026-06-14&quot;:2.07},{&quot;2026-06-15&quot;:2.07},{&quot;2026-06-16&quot;:1.98},{&quot;2026-06-17&quot;:1.98},{&quot;2026-06-18&quot;:2.0},{&quot;2026-06-19&quot;:2.0},{&quot;2026-06-20&quot;:1.89},{&quot;2026-06-21&quot;:1.89},{&quot;2026-06-22&quot;:1.84},{&quot;2026-06-23&quot;:1.86},{&quot;2026-06-24&quot;:1.86},{&quot;2026-06-25&quot;:1.81},{&quot;2026-06-26&quot;:1.81},{&quot;2026-06-27&quot;:1.81},{&quot;2026-06-28&quot;:1.82},{&quot;2026-06-29&quot;:1.82},{&quot;2026-06-30&quot;:1.82},{&quot;2026-07-01&quot;:1.81},{&quot;2026-07-02&quot;:2.02},{&quot;2026-07-03&quot;:2.01},{&quot;2026-07-04&quot;:2.05},{&quot;2026-07-05&quot;:2.04},{&quot;2026-07-06&quot;:2.03},{&quot;2026-07-07&quot;:1.99},{&quot;2026-07-08&quot;:2.01},{&quot;2026-07-09&quot;:2.03},{&quot;2026-07-10&quot;:2.17},{&quot;2026-07-11&quot;:2.27},{&quot;2026-07-12&quot;:2.24},{&quot;2026-07-13&quot;:2.31},{&quot;2026-07-14&quot;:2.33},{&quot;2026-07-15&quot;:2.33},{&quot;2026-07-16&quot;:2.33},{&quot;2026-07-17&quot;:2.3},{&quot;2026-07-18&quot;:2.11},{&quot;2026-07-19&quot;:2.11},{&quot;2026-07-20&quot;:2.02},{&quot;2026-07-21&quot;:1.91},{&quot;2026-07-23&quot;:2.03},{&quot;2026-07-25&quot;:1.84},{&quot;2026-07-26&quot;:1.78},{&quot;2026-07-27&quot;:1.81},{&quot;2026-07-29&quot;:1.91},{&quot;2026-07-30&quot;:2.05},{&quot;2026-07-31&quot;:2.1},{&quot;2026-08-01&quot;:2.14},{&quot;2026-08-02&quot;:2.28},{&quot;2026-08-03&quot;:2.33},{&quot;2026-08-04&quot;:2.43},{&quot;2026-08-05&quot;:2.51},{&quot;2026-08-07&quot;:2.43},{&quot;2026-08-08&quot;:2.42},{&quot;2026-08-09&quot;:2.45},{&quot;2026-08-10&quot;:2.2},{&quot;2026-08-11&quot;:2.26},{&quot;2026-08-12&quot;:2.49},{&quot;2026-08-13&quot;:2.53},{&quot;2026-08-14&quot;:2.64},{&quot;2026-08-15&quot;:2.64},{&quot;2026-08-16&quot;:2.75},{&quot;2026-08-17&quot;:2.74},{&quot;2026-08-18&quot;:2.96},{&quot;2026-08-19&quot;:3.16},{&quot;2026-08-20&quot;:3.16},{&quot;2026-08-21&quot;:3.16},{&quot;2026-08-22&quot;:3.16},{&quot;2026-08-23&quot;:3.0},{&quot;2026-08-24&quot;:2.9},{&quot;2026-08-25&quot;:2.9},{&quot;2026-08-26&quot;:2.88},{&quot;2026-08-27&quot;:2.62},{&quot;2026-08-28&quot;:2.57},{&quot;2026-08-29&quot;:2.57},{&quot;2026-08-30&quot;:2.57},{&quot;2026-08-31&quot;:2.42},{&quot;2026-09-01&quot;:2.42},{&quot;2026-09-02&quot;:2.5},{&quot;2026-09-03&quot;:2.45},{&quot;2026-09-04&quot;:2.53},{&quot;2026-09-05&quot;:2.46},{&quot;2026-09-06&quot;:2.59},{&quot;2026-09-07&quot;:2.56},{&quot;2026-09-08&quot;:2.55},{&quot;2026-09-09&quot;:2.52},{&quot;2026-09-10&quot;:2.55},{&quot;2026-09-11&quot;:2.5}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Arcane Denial
        </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="text-sm font-medium text-nine-white">
            $2.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="Arcane Denial" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/4/247e08a1-b9ce-4312-aec4-626992933038.jpg?1783924967" />

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

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-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="Arcane Denial" src="https://cards.scryfall.io/large/front/2/4/247e08a1-b9ce-4312-aec4-626992933038.jpg?1783924967" />
    </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.34
              </span>

            </div>
          </div>

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-08&quot;:2.52},{&quot;2026-06-10&quot;:2.52},{&quot;2026-06-11&quot;:2.56},{&quot;2026-06-12&quot;:2.56},{&quot;2026-06-13&quot;:2.56},{&quot;2026-06-14&quot;:2.56},{&quot;2026-06-15&quot;:2.56},{&quot;2026-06-16&quot;:2.56},{&quot;2026-06-17&quot;:2.56},{&quot;2026-06-18&quot;:2.62},{&quot;2026-06-19&quot;:2.62},{&quot;2026-06-20&quot;:2.62},{&quot;2026-06-21&quot;:2.62},{&quot;2026-06-22&quot;:2.66},{&quot;2026-06-24&quot;:2.66},{&quot;2026-06-25&quot;:2.66},{&quot;2026-06-26&quot;:2.66},{&quot;2026-06-27&quot;:2.66},{&quot;2026-06-28&quot;:2.66},{&quot;2026-06-29&quot;:2.64},{&quot;2026-06-30&quot;:2.64},{&quot;2026-07-01&quot;:2.64},{&quot;2026-07-02&quot;:2.64},{&quot;2026-07-03&quot;:2.64},{&quot;2026-07-04&quot;:2.63},{&quot;2026-07-05&quot;:2.66},{&quot;2026-07-06&quot;:2.66},{&quot;2026-07-07&quot;:2.7},{&quot;2026-07-08&quot;:2.79},{&quot;2026-07-09&quot;:2.79},{&quot;2026-07-10&quot;:2.81},{&quot;2026-07-11&quot;:2.84},{&quot;2026-07-12&quot;:2.84},{&quot;2026-07-13&quot;:2.97},{&quot;2026-07-14&quot;:2.9},{&quot;2026-07-15&quot;:2.94},{&quot;2026-07-16&quot;:2.93},{&quot;2026-07-17&quot;:2.91},{&quot;2026-07-18&quot;:2.89},{&quot;2026-07-19&quot;:2.83},{&quot;2026-07-20&quot;:2.75},{&quot;2026-07-21&quot;:2.64},{&quot;2026-07-23&quot;:2.64},{&quot;2026-07-25&quot;:2.66},{&quot;2026-07-26&quot;:2.66},{&quot;2026-07-27&quot;:2.65},{&quot;2026-07-29&quot;:2.53},{&quot;2026-07-30&quot;:2.48},{&quot;2026-07-31&quot;:2.42},{&quot;2026-08-01&quot;:2.42},{&quot;2026-08-02&quot;:2.38},{&quot;2026-08-03&quot;:2.38},{&quot;2026-08-04&quot;:2.35},{&quot;2026-08-05&quot;:2.63},{&quot;2026-08-07&quot;:2.78},{&quot;2026-08-08&quot;:2.78},{&quot;2026-08-09&quot;:2.77},{&quot;2026-08-10&quot;:2.77},{&quot;2026-08-11&quot;:2.77},{&quot;2026-08-12&quot;:2.71},{&quot;2026-08-13&quot;:2.71},{&quot;2026-08-14&quot;:2.71},{&quot;2026-08-15&quot;:2.71},{&quot;2026-08-16&quot;:2.69},{&quot;2026-08-17&quot;:2.69},{&quot;2026-08-18&quot;:2.65},{&quot;2026-08-19&quot;:2.62},{&quot;2026-08-20&quot;:2.62},{&quot;2026-08-21&quot;:2.58},{&quot;2026-08-22&quot;:2.47},{&quot;2026-08-23&quot;:2.47},{&quot;2026-08-24&quot;:2.47},{&quot;2026-08-25&quot;:2.47},{&quot;2026-08-26&quot;:2.46},{&quot;2026-08-27&quot;:2.4},{&quot;2026-08-28&quot;:2.4},{&quot;2026-08-29&quot;:2.4},{&quot;2026-08-30&quot;:2.4},{&quot;2026-08-31&quot;:2.4},{&quot;2026-09-01&quot;:2.4},{&quot;2026-09-02&quot;:2.41},{&quot;2026-09-03&quot;:2.35},{&quot;2026-09-04&quot;:2.35},{&quot;2026-09-05&quot;:2.33},{&quot;2026-09-06&quot;:2.3},{&quot;2026-09-07&quot;:2.33},{&quot;2026-09-08&quot;:2.31},{&quot;2026-09-09&quot;:2.31},{&quot;2026-09-10&quot;:2.31},{&quot;2026-09-11&quot;:2.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="94633"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fin ss-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">
            Restoration Magic
        </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">
              ↓
              20%
            </span>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Restoration Magic" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/9/494e68e9-ecba-4482-82bc-207ad59144c1.jpg?1783906646" />

        <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">
            Restoration Magic
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Restoration Magic" src="https://cards.scryfall.io/large/front/4/9/494e68e9-ecba-4482-82bc-207ad59144c1.jpg?1783906646" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-11&quot;:3.34},{&quot;2026-06-12&quot;:3.36},{&quot;2026-06-13&quot;:3.39},{&quot;2026-06-14&quot;:3.4},{&quot;2026-06-15&quot;:3.37},{&quot;2026-06-16&quot;:3.3},{&quot;2026-06-17&quot;:3.22},{&quot;2026-06-18&quot;:2.95},{&quot;2026-06-19&quot;:2.8},{&quot;2026-06-20&quot;:2.87},{&quot;2026-06-21&quot;:2.97},{&quot;2026-06-22&quot;:2.99},{&quot;2026-06-23&quot;:3.03},{&quot;2026-06-24&quot;:3.13},{&quot;2026-06-25&quot;:3.05},{&quot;2026-06-26&quot;:3.05},{&quot;2026-06-27&quot;:3.08},{&quot;2026-06-28&quot;:2.83},{&quot;2026-06-29&quot;:2.74},{&quot;2026-06-30&quot;:2.82},{&quot;2026-07-01&quot;:2.78},{&quot;2026-07-02&quot;:2.67},{&quot;2026-07-03&quot;:2.16},{&quot;2026-07-04&quot;:2.28},{&quot;2026-07-05&quot;:2.48},{&quot;2026-07-06&quot;:2.27},{&quot;2026-07-07&quot;:2.39},{&quot;2026-07-08&quot;:2.52},{&quot;2026-07-09&quot;:2.52},{&quot;2026-07-10&quot;:2.54},{&quot;2026-07-11&quot;:2.66},{&quot;2026-07-12&quot;:2.66},{&quot;2026-07-13&quot;:2.67},{&quot;2026-07-14&quot;:2.67},{&quot;2026-07-15&quot;:2.72},{&quot;2026-07-16&quot;:2.56},{&quot;2026-07-17&quot;:2.23},{&quot;2026-07-18&quot;:2.3},{&quot;2026-07-19&quot;:2.48},{&quot;2026-07-20&quot;:2.34},{&quot;2026-07-21&quot;:2.22},{&quot;2026-07-23&quot;:2.39},{&quot;2026-07-25&quot;:2.43},{&quot;2026-07-26&quot;:2.52},{&quot;2026-07-27&quot;:2.51},{&quot;2026-07-28&quot;:2.57},{&quot;2026-07-29&quot;:2.52},{&quot;2026-07-30&quot;:2.58},{&quot;2026-07-31&quot;:2.45},{&quot;2026-08-01&quot;:2.51},{&quot;2026-08-02&quot;:2.62},{&quot;2026-08-03&quot;:2.63},{&quot;2026-08-04&quot;:2.58},{&quot;2026-08-05&quot;:2.57},{&quot;2026-08-07&quot;:2.62},{&quot;2026-08-08&quot;:2.67},{&quot;2026-08-09&quot;:2.67},{&quot;2026-08-10&quot;:2.6},{&quot;2026-08-11&quot;:2.63},{&quot;2026-08-12&quot;:2.48},{&quot;2026-08-13&quot;:2.45},{&quot;2026-08-14&quot;:2.55},{&quot;2026-08-15&quot;:2.51},{&quot;2026-08-16&quot;:2.58},{&quot;2026-08-17&quot;:2.62},{&quot;2026-08-18&quot;:2.71},{&quot;2026-08-19&quot;:2.76},{&quot;2026-08-20&quot;:2.76},{&quot;2026-08-21&quot;:2.8},{&quot;2026-08-22&quot;:2.69},{&quot;2026-08-23&quot;:2.5},{&quot;2026-08-24&quot;:2.67},{&quot;2026-08-25&quot;:2.67},{&quot;2026-08-26&quot;:2.57},{&quot;2026-08-27&quot;:2.58},{&quot;2026-08-28&quot;:2.56},{&quot;2026-08-29&quot;:2.56},{&quot;2026-08-30&quot;:2.54},{&quot;2026-08-31&quot;:2.48},{&quot;2026-09-01&quot;:2.48},{&quot;2026-09-02&quot;:2.64},{&quot;2026-09-03&quot;:2.82},{&quot;2026-09-04&quot;:2.79},{&quot;2026-09-05&quot;:2.89},{&quot;2026-09-06&quot;:2.93},{&quot;2026-09-07&quot;:2.81},{&quot;2026-09-08&quot;:2.82},{&quot;2026-09-09&quot;:2.8},{&quot;2026-09-10&quot;:2.78},{&quot;2026-09-11&quot;:2.32}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:2.11},{&quot;2026-06-12&quot;:2.19},{&quot;2026-06-13&quot;:2.11},{&quot;2026-06-14&quot;:2.72},{&quot;2026-06-15&quot;:2.69},{&quot;2026-06-16&quot;:2.39},{&quot;2026-06-17&quot;:2.25},{&quot;2026-06-18&quot;:1.97},{&quot;2026-06-19&quot;:2.15},{&quot;2026-06-20&quot;:2.26},{&quot;2026-06-21&quot;:2.27},{&quot;2026-06-22&quot;:2.43},{&quot;2026-06-23&quot;:2.76},{&quot;2026-06-24&quot;:2.62},{&quot;2026-06-25&quot;:2.16},{&quot;2026-06-26&quot;:2.2},{&quot;2026-06-27&quot;:1.91},{&quot;2026-06-28&quot;:1.56},{&quot;2026-06-29&quot;:2.0},{&quot;2026-06-30&quot;:2.11},{&quot;2026-07-01&quot;:2.18},{&quot;2026-07-02&quot;:1.97},{&quot;2026-07-03&quot;:1.67},{&quot;2026-07-04&quot;:2.04},{&quot;2026-07-05&quot;:2.46},{&quot;2026-07-06&quot;:2.28},{&quot;2026-07-07&quot;:2.15},{&quot;2026-07-08&quot;:2.22},{&quot;2026-07-09&quot;:2.32},{&quot;2026-07-10&quot;:2.61},{&quot;2026-07-11&quot;:2.17},{&quot;2026-07-12&quot;:2.02},{&quot;2026-07-13&quot;:1.5},{&quot;2026-07-14&quot;:1.57},{&quot;2026-07-15&quot;:1.51},{&quot;2026-07-16&quot;:1.57},{&quot;2026-07-17&quot;:1.52},{&quot;2026-07-18&quot;:1.7},{&quot;2026-07-19&quot;:1.96},{&quot;2026-07-20&quot;:2.06},{&quot;2026-07-21&quot;:2.15},{&quot;2026-07-23&quot;:2.01},{&quot;2026-07-25&quot;:2.21},{&quot;2026-07-26&quot;:2.68},{&quot;2026-07-27&quot;:2.48},{&quot;2026-07-28&quot;:2.21},{&quot;2026-07-29&quot;:2.42},{&quot;2026-07-30&quot;:2.69},{&quot;2026-07-31&quot;:2.64},{&quot;2026-08-01&quot;:2.65},{&quot;2026-08-02&quot;:2.72},{&quot;2026-08-03&quot;:2.53},{&quot;2026-08-04&quot;:2.72},{&quot;2026-08-05&quot;:2.75},{&quot;2026-08-07&quot;:2.57},{&quot;2026-08-08&quot;:2.53},{&quot;2026-08-09&quot;:2.22},{&quot;2026-08-10&quot;:2.04},{&quot;2026-08-11&quot;:2.67},{&quot;2026-08-12&quot;:2.6},{&quot;2026-08-13&quot;:2.19},{&quot;2026-08-14&quot;:2.49},{&quot;2026-08-15&quot;:2.46},{&quot;2026-08-16&quot;:2.19},{&quot;2026-08-17&quot;:2.03},{&quot;2026-08-18&quot;:1.96},{&quot;2026-08-19&quot;:2.12},{&quot;2026-08-20&quot;:2.12},{&quot;2026-08-21&quot;:2.31},{&quot;2026-08-22&quot;:2.18},{&quot;2026-08-23&quot;:1.99},{&quot;2026-08-24&quot;:2.12},{&quot;2026-08-25&quot;:2.12},{&quot;2026-08-26&quot;:2.04},{&quot;2026-08-27&quot;:1.92},{&quot;2026-08-28&quot;:2.2},{&quot;2026-08-29&quot;:2.2},{&quot;2026-08-30&quot;:2.88},{&quot;2026-08-31&quot;:2.63},{&quot;2026-09-01&quot;:2.63},{&quot;2026-09-02&quot;:2.72},{&quot;2026-09-03&quot;:2.52},{&quot;2026-09-04&quot;:2.58},{&quot;2026-09-05&quot;:2.43},{&quot;2026-09-06&quot;:2.71},{&quot;2026-09-07&quot;:2.56},{&quot;2026-09-08&quot;:2.43},{&quot;2026-09-09&quot;:2.58},{&quot;2026-09-10&quot;:2.36},{&quot;2026-09-11&quot;:2.16}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Sorcery — Arcane
      </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.93
          </span>
        </div>
      </div>
    </div>

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Kodama&#39;s Reach" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/1/d1a6d4f8-31e8-46b1-a0e3-5a0f9da112fd.jpg?1783929466" />

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

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Kodama&#39;s Reach
        </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 — Arcane</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="Kodama&#39;s Reach" src="https://cards.scryfall.io/large/front/d/1/d1a6d4f8-31e8-46b1-a0e3-5a0f9da112fd.jpg?1783929466" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="5375"
  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-blb 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">
            Overprotect
        </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">
              ↓
              24%
            </span>

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

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

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

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

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Overprotect" src="https://cards.scryfall.io/large/front/0/7/079e979f-b618-4625-989c-e0ea5b61ed8a.jpg?1783910806" />
    </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.78
              </span>

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:1.41},{&quot;2026-06-14&quot;:1.41},{&quot;2026-06-15&quot;:1.41},{&quot;2026-06-16&quot;:1.36},{&quot;2026-06-17&quot;:1.44},{&quot;2026-06-18&quot;:1.45},{&quot;2026-06-19&quot;:1.44},{&quot;2026-06-20&quot;:1.4},{&quot;2026-06-21&quot;:1.39},{&quot;2026-06-22&quot;:1.39},{&quot;2026-06-23&quot;:1.28},{&quot;2026-06-24&quot;:1.29},{&quot;2026-06-25&quot;:1.29},{&quot;2026-06-26&quot;:1.22},{&quot;2026-06-27&quot;:1.18},{&quot;2026-06-28&quot;:1.18},{&quot;2026-06-29&quot;:1.14},{&quot;2026-06-30&quot;:1.28},{&quot;2026-07-01&quot;:1.28},{&quot;2026-07-02&quot;:1.29},{&quot;2026-07-03&quot;:1.4},{&quot;2026-07-04&quot;:1.37},{&quot;2026-07-05&quot;:1.37},{&quot;2026-07-06&quot;:1.36},{&quot;2026-07-07&quot;:1.35},{&quot;2026-07-08&quot;:1.44},{&quot;2026-07-09&quot;:1.35},{&quot;2026-07-10&quot;:1.37},{&quot;2026-07-11&quot;:1.32},{&quot;2026-07-12&quot;:1.22},{&quot;2026-07-13&quot;:1.21},{&quot;2026-07-14&quot;:1.21},{&quot;2026-07-15&quot;:1.21},{&quot;2026-07-16&quot;:1.19},{&quot;2026-07-17&quot;:1.19},{&quot;2026-07-18&quot;:1.18},{&quot;2026-07-19&quot;:1.25},{&quot;2026-07-20&quot;:1.35},{&quot;2026-07-21&quot;:1.36},{&quot;2026-07-22&quot;:1.37},{&quot;2026-07-23&quot;:1.37},{&quot;2026-07-24&quot;:1.39},{&quot;2026-07-25&quot;:1.38},{&quot;2026-07-26&quot;:1.4},{&quot;2026-07-27&quot;:1.28},{&quot;2026-07-28&quot;:1.27},{&quot;2026-07-29&quot;:1.33},{&quot;2026-07-30&quot;:1.34},{&quot;2026-07-31&quot;:1.36},{&quot;2026-08-01&quot;:1.41},{&quot;2026-08-02&quot;:1.41},{&quot;2026-08-03&quot;:1.47},{&quot;2026-08-04&quot;:1.47},{&quot;2026-08-05&quot;:1.52},{&quot;2026-08-07&quot;:1.78},{&quot;2026-08-08&quot;:1.78},{&quot;2026-08-09&quot;:1.84},{&quot;2026-08-10&quot;:1.81},{&quot;2026-08-11&quot;:1.81},{&quot;2026-08-12&quot;:2.06},{&quot;2026-08-13&quot;:2.02},{&quot;2026-08-14&quot;:1.99},{&quot;2026-08-15&quot;:1.97},{&quot;2026-08-16&quot;:1.98},{&quot;2026-08-17&quot;:1.99},{&quot;2026-08-18&quot;:1.83},{&quot;2026-08-19&quot;:1.89},{&quot;2026-08-20&quot;:1.83},{&quot;2026-08-21&quot;:1.84},{&quot;2026-08-22&quot;:1.83},{&quot;2026-08-23&quot;:1.62},{&quot;2026-08-24&quot;:1.66},{&quot;2026-08-25&quot;:1.66},{&quot;2026-08-26&quot;:1.73},{&quot;2026-08-27&quot;:1.96},{&quot;2026-08-28&quot;:1.82},{&quot;2026-08-29&quot;:1.82},{&quot;2026-08-30&quot;:2.07},{&quot;2026-08-31&quot;:2.09},{&quot;2026-09-01&quot;:2.19},{&quot;2026-09-02&quot;:2.2},{&quot;2026-09-03&quot;:2.5},{&quot;2026-09-04&quot;:2.55},{&quot;2026-09-05&quot;:2.68},{&quot;2026-09-06&quot;:2.53},{&quot;2026-09-07&quot;:2.7},{&quot;2026-09-08&quot;:2.92},{&quot;2026-09-09&quot;:2.82},{&quot;2026-09-10&quot;:2.85},{&quot;2026-09-11&quot;:2.9}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.97},{&quot;2026-06-14&quot;:0.92},{&quot;2026-06-15&quot;:0.85},{&quot;2026-06-16&quot;:0.82},{&quot;2026-06-17&quot;:0.85},{&quot;2026-06-18&quot;:0.86},{&quot;2026-06-19&quot;:0.82},{&quot;2026-06-20&quot;:0.84},{&quot;2026-06-21&quot;:0.81},{&quot;2026-06-22&quot;:0.65},{&quot;2026-06-23&quot;:0.63},{&quot;2026-06-24&quot;:0.72},{&quot;2026-06-25&quot;:0.7},{&quot;2026-06-26&quot;:0.62},{&quot;2026-06-27&quot;:0.6},{&quot;2026-06-28&quot;:0.67},{&quot;2026-06-29&quot;:0.74},{&quot;2026-06-30&quot;:0.8},{&quot;2026-07-01&quot;:0.84},{&quot;2026-07-02&quot;:1.08},{&quot;2026-07-03&quot;:1.1},{&quot;2026-07-04&quot;:1.15},{&quot;2026-07-05&quot;:1.2},{&quot;2026-07-06&quot;:1.05},{&quot;2026-07-07&quot;:0.79},{&quot;2026-07-08&quot;:0.91},{&quot;2026-07-09&quot;:1.04},{&quot;2026-07-10&quot;:1.24},{&quot;2026-07-11&quot;:1.28},{&quot;2026-07-12&quot;:1.13},{&quot;2026-07-13&quot;:1.04},{&quot;2026-07-14&quot;:1.07},{&quot;2026-07-15&quot;:1.29},{&quot;2026-07-16&quot;:1.28},{&quot;2026-07-17&quot;:1.44},{&quot;2026-07-18&quot;:1.29},{&quot;2026-07-19&quot;:1.23},{&quot;2026-07-20&quot;:1.15},{&quot;2026-07-21&quot;:1.01},{&quot;2026-07-22&quot;:1.07},{&quot;2026-07-23&quot;:0.94},{&quot;2026-07-24&quot;:0.96},{&quot;2026-07-25&quot;:0.83},{&quot;2026-07-26&quot;:0.85},{&quot;2026-07-27&quot;:0.79},{&quot;2026-07-28&quot;:0.86},{&quot;2026-07-29&quot;:0.85},{&quot;2026-07-30&quot;:0.94},{&quot;2026-07-31&quot;:1.21},{&quot;2026-08-01&quot;:1.19},{&quot;2026-08-02&quot;:1.44},{&quot;2026-08-03&quot;:1.43},{&quot;2026-08-04&quot;:1.35},{&quot;2026-08-05&quot;:1.34},{&quot;2026-08-07&quot;:1.77},{&quot;2026-08-08&quot;:1.33},{&quot;2026-08-09&quot;:1.02},{&quot;2026-08-10&quot;:1.07},{&quot;2026-08-11&quot;:1.11},{&quot;2026-08-12&quot;:1.14},{&quot;2026-08-13&quot;:1.49},{&quot;2026-08-14&quot;:1.75},{&quot;2026-08-15&quot;:1.71},{&quot;2026-08-16&quot;:1.42},{&quot;2026-08-17&quot;:1.65},{&quot;2026-08-18&quot;:1.72},{&quot;2026-08-19&quot;:1.71},{&quot;2026-08-20&quot;:1.4},{&quot;2026-08-21&quot;:1.45},{&quot;2026-08-22&quot;:1.45},{&quot;2026-08-23&quot;:1.61},{&quot;2026-08-24&quot;:1.71},{&quot;2026-08-25&quot;:1.58},{&quot;2026-08-26&quot;:1.58},{&quot;2026-08-27&quot;:1.41},{&quot;2026-08-28&quot;:1.95},{&quot;2026-08-29&quot;:1.95},{&quot;2026-08-30&quot;:2.12},{&quot;2026-08-31&quot;:1.67},{&quot;2026-09-01&quot;:1.86},{&quot;2026-09-02&quot;:1.99},{&quot;2026-09-03&quot;:2.03},{&quot;2026-09-04&quot;:2.05},{&quot;2026-09-05&quot;:2.34},{&quot;2026-09-06&quot;:2.36},{&quot;2026-09-07&quot;:2.58},{&quot;2026-09-08&quot;:2.4},{&quot;2026-09-09&quot;:1.68},{&quot;2026-09-10&quot;:1.63},{&quot;2026-09-11&quot;:1.78}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

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

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

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

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

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

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

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            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="Farseek" src="https://cards.scryfall.io/large/front/0/6/061f0032-eb14-4c63-8231-aa61472396c2.jpg?1783932747" />
    </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.68
              </span>

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

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.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;normal&quot;:[{&quot;2026-06-11&quot;:1.13},{&quot;2026-06-12&quot;:1.14},{&quot;2026-06-13&quot;:1.17},{&quot;2026-06-14&quot;:1.2},{&quot;2026-06-15&quot;:1.2},{&quot;2026-06-16&quot;:1.15},{&quot;2026-06-17&quot;:1.16},{&quot;2026-06-18&quot;:1.16},{&quot;2026-06-19&quot;:1.18},{&quot;2026-06-20&quot;:1.2},{&quot;2026-06-21&quot;:1.22},{&quot;2026-06-22&quot;:1.28},{&quot;2026-06-23&quot;:1.25},{&quot;2026-06-24&quot;:1.21},{&quot;2026-06-25&quot;:1.31},{&quot;2026-06-26&quot;:1.38},{&quot;2026-06-27&quot;:1.39},{&quot;2026-06-28&quot;:1.54},{&quot;2026-06-29&quot;:1.71},{&quot;2026-06-30&quot;:1.71},{&quot;2026-07-01&quot;:1.72},{&quot;2026-07-02&quot;:1.65},{&quot;2026-07-03&quot;:1.65},{&quot;2026-07-04&quot;:1.64},{&quot;2026-07-05&quot;:1.8},{&quot;2026-07-06&quot;:1.86},{&quot;2026-07-07&quot;:1.7},{&quot;2026-07-08&quot;:1.78},{&quot;2026-07-09&quot;:1.78},{&quot;2026-07-10&quot;:1.75},{&quot;2026-07-11&quot;:1.75},{&quot;2026-07-12&quot;:1.63},{&quot;2026-07-13&quot;:1.49},{&quot;2026-07-14&quot;:1.13},{&quot;2026-07-15&quot;:1.15},{&quot;2026-07-16&quot;:1.2},{&quot;2026-07-17&quot;:1.11},{&quot;2026-07-18&quot;:1.08},{&quot;2026-07-19&quot;:1.06},{&quot;2026-07-20&quot;:1.1},{&quot;2026-07-21&quot;:1.01},{&quot;2026-07-23&quot;:1.08},{&quot;2026-07-25&quot;:1.08},{&quot;2026-07-26&quot;:1.44},{&quot;2026-07-27&quot;:1.48},{&quot;2026-07-28&quot;:1.51},{&quot;2026-07-29&quot;:1.54},{&quot;2026-07-30&quot;:1.51},{&quot;2026-07-31&quot;:1.46},{&quot;2026-08-01&quot;:1.54},{&quot;2026-08-02&quot;:1.63},{&quot;2026-08-03&quot;:1.65},{&quot;2026-08-04&quot;:1.66},{&quot;2026-08-05&quot;:1.64},{&quot;2026-08-07&quot;:1.61},{&quot;2026-08-08&quot;:1.62},{&quot;2026-08-09&quot;:1.32},{&quot;2026-08-10&quot;:1.27},{&quot;2026-08-11&quot;:1.22},{&quot;2026-08-12&quot;:1.22},{&quot;2026-08-13&quot;:1.26},{&quot;2026-08-14&quot;:1.27},{&quot;2026-08-15&quot;:1.25},{&quot;2026-08-16&quot;:1.29},{&quot;2026-08-17&quot;:1.33},{&quot;2026-08-18&quot;:1.38},{&quot;2026-08-19&quot;:1.45},{&quot;2026-08-20&quot;:1.45},{&quot;2026-08-21&quot;:1.59},{&quot;2026-08-22&quot;:1.61},{&quot;2026-08-23&quot;:1.61},{&quot;2026-08-24&quot;:1.62},{&quot;2026-08-25&quot;:1.62},{&quot;2026-08-26&quot;:1.66},{&quot;2026-08-27&quot;:1.66},{&quot;2026-08-28&quot;:1.67},{&quot;2026-08-29&quot;:1.67},{&quot;2026-08-30&quot;:1.71},{&quot;2026-08-31&quot;:1.68},{&quot;2026-09-01&quot;:1.68},{&quot;2026-09-02&quot;:1.62},{&quot;2026-09-03&quot;:1.59},{&quot;2026-09-04&quot;:1.62},{&quot;2026-09-05&quot;:1.6},{&quot;2026-09-06&quot;:1.51},{&quot;2026-09-07&quot;:1.51},{&quot;2026-09-08&quot;:1.51},{&quot;2026-09-09&quot;:1.41},{&quot;2026-09-10&quot;:1.68},{&quot;2026-09-11&quot;:1.68}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="20145"
  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">
            Path to Exile
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Path to Exile" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/0/90460227-6f34-4403-b2ef-d79f95f44790.jpg?1783921930" />

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Path to Exile" src="https://cards.scryfall.io/large/front/9/0/90460227-6f34-4403-b2ef-d79f95f44790.jpg?1783921930" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:1.82},{&quot;2026-06-11&quot;:1.79},{&quot;2026-06-12&quot;:1.82},{&quot;2026-06-13&quot;:1.79},{&quot;2026-06-14&quot;:1.79},{&quot;2026-06-15&quot;:1.77},{&quot;2026-06-16&quot;:1.78},{&quot;2026-06-17&quot;:1.78},{&quot;2026-06-18&quot;:1.78},{&quot;2026-06-19&quot;:1.73},{&quot;2026-06-20&quot;:1.73},{&quot;2026-06-21&quot;:1.73},{&quot;2026-06-22&quot;:1.73},{&quot;2026-06-23&quot;:1.73},{&quot;2026-06-24&quot;:1.71},{&quot;2026-06-25&quot;:1.71},{&quot;2026-06-26&quot;:1.71},{&quot;2026-06-27&quot;:1.69},{&quot;2026-06-28&quot;:1.73},{&quot;2026-06-29&quot;:1.73},{&quot;2026-06-30&quot;:1.73},{&quot;2026-07-01&quot;:1.73},{&quot;2026-07-02&quot;:1.73},{&quot;2026-07-03&quot;:1.76},{&quot;2026-07-04&quot;:1.81},{&quot;2026-07-05&quot;:1.81},{&quot;2026-07-06&quot;:1.77},{&quot;2026-07-07&quot;:1.77},{&quot;2026-07-08&quot;:1.77},{&quot;2026-07-09&quot;:1.77},{&quot;2026-07-10&quot;:1.77},{&quot;2026-07-11&quot;:1.77},{&quot;2026-07-12&quot;:1.77},{&quot;2026-07-13&quot;:1.77},{&quot;2026-07-14&quot;:1.75},{&quot;2026-07-15&quot;:1.75},{&quot;2026-07-16&quot;:1.75},{&quot;2026-07-17&quot;:1.75},{&quot;2026-07-18&quot;:1.82},{&quot;2026-07-19&quot;:1.81},{&quot;2026-07-20&quot;:1.81},{&quot;2026-07-21&quot;:1.81},{&quot;2026-07-23&quot;:1.81},{&quot;2026-07-25&quot;:1.81},{&quot;2026-07-26&quot;:1.82},{&quot;2026-07-27&quot;:1.82},{&quot;2026-07-29&quot;:1.82},{&quot;2026-07-30&quot;:1.81},{&quot;2026-07-31&quot;:1.81},{&quot;2026-08-01&quot;:1.81},{&quot;2026-08-02&quot;:1.79},{&quot;2026-08-03&quot;:1.81},{&quot;2026-08-04&quot;:1.81},{&quot;2026-08-05&quot;:1.76},{&quot;2026-08-07&quot;:1.76},{&quot;2026-08-08&quot;:1.76},{&quot;2026-08-09&quot;:1.76},{&quot;2026-08-10&quot;:1.76},{&quot;2026-08-11&quot;:1.81},{&quot;2026-08-12&quot;:1.81},{&quot;2026-08-13&quot;:1.78},{&quot;2026-08-14&quot;:1.78},{&quot;2026-08-15&quot;:1.78},{&quot;2026-08-16&quot;:1.78},{&quot;2026-08-17&quot;:1.8},{&quot;2026-08-18&quot;:1.8},{&quot;2026-08-19&quot;:1.82},{&quot;2026-08-20&quot;:1.82},{&quot;2026-08-21&quot;:1.85},{&quot;2026-08-22&quot;:1.78},{&quot;2026-08-23&quot;:1.77},{&quot;2026-08-24&quot;:1.74},{&quot;2026-08-25&quot;:1.74},{&quot;2026-08-26&quot;:1.74},{&quot;2026-08-27&quot;:1.75},{&quot;2026-08-28&quot;:1.82},{&quot;2026-08-29&quot;:1.82},{&quot;2026-08-30&quot;:1.81},{&quot;2026-08-31&quot;:1.81},{&quot;2026-09-01&quot;:1.81},{&quot;2026-09-02&quot;:1.82},{&quot;2026-09-03&quot;:1.82},{&quot;2026-09-04&quot;:1.82},{&quot;2026-09-05&quot;:1.82},{&quot;2026-09-06&quot;:1.82},{&quot;2026-09-07&quot;:1.77},{&quot;2026-09-08&quot;:1.75},{&quot;2026-09-09&quot;:1.75},{&quot;2026-09-10&quot;:1.69},{&quot;2026-09-11&quot;:1.71}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:1.43},{&quot;2026-06-11&quot;:1.43},{&quot;2026-06-12&quot;:1.44},{&quot;2026-06-13&quot;:1.42},{&quot;2026-06-14&quot;:1.42},{&quot;2026-06-15&quot;:1.42},{&quot;2026-06-16&quot;:1.42},{&quot;2026-06-17&quot;:1.42},{&quot;2026-06-18&quot;:1.43},{&quot;2026-06-19&quot;:1.41},{&quot;2026-06-20&quot;:1.42},{&quot;2026-06-21&quot;:1.42},{&quot;2026-06-22&quot;:1.42},{&quot;2026-06-23&quot;:1.44},{&quot;2026-06-24&quot;:1.43},{&quot;2026-06-25&quot;:1.42},{&quot;2026-06-26&quot;:1.41},{&quot;2026-06-27&quot;:1.42},{&quot;2026-06-28&quot;:1.42},{&quot;2026-06-29&quot;:1.41},{&quot;2026-06-30&quot;:1.39},{&quot;2026-07-01&quot;:1.39},{&quot;2026-07-02&quot;:1.41},{&quot;2026-07-03&quot;:1.41},{&quot;2026-07-04&quot;:1.39},{&quot;2026-07-05&quot;:1.4},{&quot;2026-07-06&quot;:1.45},{&quot;2026-07-07&quot;:1.43},{&quot;2026-07-08&quot;:1.42},{&quot;2026-07-09&quot;:1.41},{&quot;2026-07-10&quot;:1.41},{&quot;2026-07-11&quot;:1.41},{&quot;2026-07-12&quot;:1.42},{&quot;2026-07-13&quot;:1.43},{&quot;2026-07-14&quot;:1.43},{&quot;2026-07-15&quot;:1.46},{&quot;2026-07-16&quot;:1.46},{&quot;2026-07-17&quot;:1.46},{&quot;2026-07-18&quot;:1.46},{&quot;2026-07-19&quot;:1.46},{&quot;2026-07-20&quot;:1.46},{&quot;2026-07-21&quot;:1.56},{&quot;2026-07-23&quot;:1.56},{&quot;2026-07-25&quot;:1.59},{&quot;2026-07-26&quot;:1.57},{&quot;2026-07-27&quot;:1.58},{&quot;2026-07-29&quot;:1.59},{&quot;2026-07-30&quot;:1.58},{&quot;2026-07-31&quot;:1.58},{&quot;2026-08-01&quot;:1.57},{&quot;2026-08-02&quot;:1.59},{&quot;2026-08-03&quot;:1.52},{&quot;2026-08-04&quot;:1.54},{&quot;2026-08-05&quot;:1.58},{&quot;2026-08-07&quot;:1.62},{&quot;2026-08-08&quot;:1.62},{&quot;2026-08-09&quot;:1.6},{&quot;2026-08-10&quot;:1.59},{&quot;2026-08-11&quot;:1.57},{&quot;2026-08-12&quot;:1.54},{&quot;2026-08-13&quot;:1.52},{&quot;2026-08-14&quot;:1.53},{&quot;2026-08-15&quot;:1.53},{&quot;2026-08-16&quot;:1.5},{&quot;2026-08-17&quot;:1.57},{&quot;2026-08-18&quot;:1.6},{&quot;2026-08-19&quot;:1.56},{&quot;2026-08-20&quot;:1.56},{&quot;2026-08-21&quot;:1.54},{&quot;2026-08-22&quot;:1.5},{&quot;2026-08-23&quot;:1.5},{&quot;2026-08-24&quot;:1.46},{&quot;2026-08-25&quot;:1.46},{&quot;2026-08-26&quot;:1.54},{&quot;2026-08-27&quot;:1.6},{&quot;2026-08-28&quot;:1.61},{&quot;2026-08-29&quot;:1.61},{&quot;2026-08-30&quot;:1.61},{&quot;2026-08-31&quot;:1.6},{&quot;2026-09-01&quot;:1.6},{&quot;2026-09-02&quot;:1.59},{&quot;2026-09-03&quot;:1.59},{&quot;2026-09-04&quot;:1.6},{&quot;2026-09-05&quot;:1.6},{&quot;2026-09-06&quot;:1.57},{&quot;2026-09-07&quot;:1.57},{&quot;2026-09-08&quot;:1.56},{&quot;2026-09-09&quot;:1.56},{&quot;2026-09-10&quot;:1.55},{&quot;2026-09-11&quot;:1.59}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Seachrome Coast" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/c/9c37f4e8-aa29-4c68-ab89-7a529bae73e9.jpg?1783917932" />

        <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">
            Seachrome Coast
        </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="Seachrome Coast" src="https://cards.scryfall.io/large/front/9/c/9c37f4e8-aa29-4c68-ab89-7a529bae73e9.jpg?1783917932" />
    </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.44
              </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.98
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-12&quot;:1.38},{&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.4},{&quot;2026-06-17&quot;:1.4},{&quot;2026-06-18&quot;:1.4},{&quot;2026-06-19&quot;:1.32},{&quot;2026-06-20&quot;:1.32},{&quot;2026-06-21&quot;:1.32},{&quot;2026-06-22&quot;:1.32},{&quot;2026-06-23&quot;:1.32},{&quot;2026-06-24&quot;:1.32},{&quot;2026-06-25&quot;:1.32},{&quot;2026-06-26&quot;:1.32},{&quot;2026-06-27&quot;:1.36},{&quot;2026-06-28&quot;:1.36},{&quot;2026-06-29&quot;:1.36},{&quot;2026-06-30&quot;:1.4},{&quot;2026-07-01&quot;:1.4},{&quot;2026-07-02&quot;:1.4},{&quot;2026-07-03&quot;:1.44},{&quot;2026-07-04&quot;:1.51},{&quot;2026-07-05&quot;:1.51},{&quot;2026-07-06&quot;:1.51},{&quot;2026-07-07&quot;:1.48},{&quot;2026-07-08&quot;:1.51},{&quot;2026-07-09&quot;:1.48},{&quot;2026-07-10&quot;:1.5},{&quot;2026-07-11&quot;:1.56},{&quot;2026-07-12&quot;:1.6},{&quot;2026-07-13&quot;:1.6},{&quot;2026-07-14&quot;:1.6},{&quot;2026-07-15&quot;:1.64},{&quot;2026-07-16&quot;:1.64},{&quot;2026-07-17&quot;:1.64},{&quot;2026-07-18&quot;:1.64},{&quot;2026-07-19&quot;:1.65},{&quot;2026-07-20&quot;:1.73},{&quot;2026-07-21&quot;:1.79},{&quot;2026-07-23&quot;:1.77},{&quot;2026-07-24&quot;:1.77},{&quot;2026-07-25&quot;:1.77},{&quot;2026-07-26&quot;:1.8},{&quot;2026-07-27&quot;:1.8},{&quot;2026-07-28&quot;:1.8},{&quot;2026-07-29&quot;:1.83},{&quot;2026-07-30&quot;:1.85},{&quot;2026-07-31&quot;:1.85},{&quot;2026-08-01&quot;:1.84},{&quot;2026-08-02&quot;:1.88},{&quot;2026-08-03&quot;:1.92},{&quot;2026-08-04&quot;:1.92},{&quot;2026-08-05&quot;:1.89},{&quot;2026-08-07&quot;:1.89},{&quot;2026-08-08&quot;:1.92},{&quot;2026-08-09&quot;:1.89},{&quot;2026-08-10&quot;:1.89},{&quot;2026-08-11&quot;:1.91},{&quot;2026-08-12&quot;:1.95},{&quot;2026-08-13&quot;:1.96},{&quot;2026-08-14&quot;:1.96},{&quot;2026-08-15&quot;:1.97},{&quot;2026-08-16&quot;:1.97},{&quot;2026-08-17&quot;:2.0},{&quot;2026-08-18&quot;:2.0},{&quot;2026-08-19&quot;:2.02},{&quot;2026-08-20&quot;:2.02},{&quot;2026-08-21&quot;:2.02},{&quot;2026-08-22&quot;:2.02},{&quot;2026-08-23&quot;:2.02},{&quot;2026-08-24&quot;:2.0},{&quot;2026-08-25&quot;:1.96},{&quot;2026-08-26&quot;:1.88},{&quot;2026-08-27&quot;:1.88},{&quot;2026-08-28&quot;:1.88},{&quot;2026-08-29&quot;:1.88},{&quot;2026-08-30&quot;:1.86},{&quot;2026-08-31&quot;:1.84},{&quot;2026-09-01&quot;:1.88},{&quot;2026-09-02&quot;:1.88},{&quot;2026-09-03&quot;:1.91},{&quot;2026-09-04&quot;:1.91},{&quot;2026-09-05&quot;:1.91},{&quot;2026-09-06&quot;:1.91},{&quot;2026-09-07&quot;:1.92},{&quot;2026-09-08&quot;:1.92},{&quot;2026-09-09&quot;:1.98},{&quot;2026-09-10&quot;:1.98},{&quot;2026-09-11&quot;:1.98}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:1.21},{&quot;2026-06-13&quot;:1.21},{&quot;2026-06-14&quot;:1.2},{&quot;2026-06-15&quot;:1.21},{&quot;2026-06-16&quot;:1.23},{&quot;2026-06-17&quot;:1.23},{&quot;2026-06-18&quot;:1.23},{&quot;2026-06-19&quot;:1.23},{&quot;2026-06-20&quot;:1.23},{&quot;2026-06-21&quot;:1.23},{&quot;2026-06-22&quot;:1.23},{&quot;2026-06-23&quot;:1.24},{&quot;2026-06-24&quot;:1.22},{&quot;2026-06-25&quot;:1.22},{&quot;2026-06-26&quot;:1.22},{&quot;2026-06-27&quot;:1.23},{&quot;2026-06-28&quot;:1.27},{&quot;2026-06-29&quot;:1.33},{&quot;2026-06-30&quot;:1.34},{&quot;2026-07-01&quot;:1.3},{&quot;2026-07-02&quot;:1.32},{&quot;2026-07-03&quot;:1.31},{&quot;2026-07-04&quot;:1.29},{&quot;2026-07-05&quot;:1.29},{&quot;2026-07-06&quot;:1.32},{&quot;2026-07-07&quot;:1.32},{&quot;2026-07-08&quot;:1.27},{&quot;2026-07-09&quot;:1.31},{&quot;2026-07-10&quot;:1.31},{&quot;2026-07-11&quot;:1.36},{&quot;2026-07-12&quot;:1.35},{&quot;2026-07-13&quot;:1.35},{&quot;2026-07-14&quot;:1.36},{&quot;2026-07-15&quot;:1.37},{&quot;2026-07-16&quot;:1.37},{&quot;2026-07-17&quot;:1.35},{&quot;2026-07-18&quot;:1.36},{&quot;2026-07-19&quot;:1.36},{&quot;2026-07-20&quot;:1.36},{&quot;2026-07-21&quot;:1.31},{&quot;2026-07-23&quot;:1.31},{&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.24},{&quot;2026-07-28&quot;:1.24},{&quot;2026-07-29&quot;:1.25},{&quot;2026-07-30&quot;:1.24},{&quot;2026-07-31&quot;:1.31},{&quot;2026-08-01&quot;:1.29},{&quot;2026-08-02&quot;:1.31},{&quot;2026-08-03&quot;:1.29},{&quot;2026-08-04&quot;:1.31},{&quot;2026-08-05&quot;:1.27},{&quot;2026-08-07&quot;:1.26},{&quot;2026-08-08&quot;:1.26},{&quot;2026-08-09&quot;:1.26},{&quot;2026-08-10&quot;:1.26},{&quot;2026-08-11&quot;:1.26},{&quot;2026-08-12&quot;:1.26},{&quot;2026-08-13&quot;:1.26},{&quot;2026-08-14&quot;:1.29},{&quot;2026-08-15&quot;:1.32},{&quot;2026-08-16&quot;:1.32},{&quot;2026-08-17&quot;:1.32},{&quot;2026-08-18&quot;:1.31},{&quot;2026-08-19&quot;:1.31},{&quot;2026-08-20&quot;:1.31},{&quot;2026-08-21&quot;:1.3},{&quot;2026-08-22&quot;:1.33},{&quot;2026-08-23&quot;:1.33},{&quot;2026-08-24&quot;:1.32},{&quot;2026-08-25&quot;:1.32},{&quot;2026-08-26&quot;:1.32},{&quot;2026-08-27&quot;:1.32},{&quot;2026-08-28&quot;:1.35},{&quot;2026-08-29&quot;:1.35},{&quot;2026-08-30&quot;:1.39},{&quot;2026-08-31&quot;:1.39},{&quot;2026-09-01&quot;:1.4},{&quot;2026-09-02&quot;:1.41},{&quot;2026-09-03&quot;:1.4},{&quot;2026-09-04&quot;:1.4},{&quot;2026-09-05&quot;:1.37},{&quot;2026-09-06&quot;:1.4},{&quot;2026-09-07&quot;:1.4},{&quot;2026-09-08&quot;:1.4},{&quot;2026-09-09&quot;:1.41},{&quot;2026-09-10&quot;:1.44},{&quot;2026-09-11&quot;:1.44}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="14317"
  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">
            Managorger Hydra
        </span>


      </div>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Managorger Hydra" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/3/3/330aefb9-629f-4d07-94d4-7252f17f85ba.jpg?1783922407" />

        <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">
            Managorger Hydra
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Creature — Hydra</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="Managorger Hydra" src="https://cards.scryfall.io/large/front/3/3/330aefb9-629f-4d07-94d4-7252f17f85ba.jpg?1783922407" />
    </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.42
              </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.15</span>
              <span class="text-xs text-grey-text">Credit: $1.50</span>
            </div>
        </div>

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

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

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Krosan Grip" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/5/253352d1-26e1-4074-94d8-f88c697e910e.jpg?1783927777" />

        <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">
            Krosan Grip
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Krosan Grip" src="https://cards.scryfall.io/large/front/2/5/253352d1-26e1-4074-94d8-f88c697e910e.jpg?1783927777" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:1.88},{&quot;2026-06-11&quot;:1.88},{&quot;2026-06-12&quot;:1.88},{&quot;2026-06-13&quot;:1.88},{&quot;2026-06-14&quot;:1.88},{&quot;2026-06-15&quot;:1.88},{&quot;2026-06-16&quot;:1.9},{&quot;2026-06-17&quot;:1.9},{&quot;2026-06-18&quot;:1.9},{&quot;2026-06-19&quot;:1.9},{&quot;2026-06-20&quot;:1.89},{&quot;2026-06-21&quot;:1.89},{&quot;2026-06-22&quot;:1.89},{&quot;2026-06-23&quot;:1.89},{&quot;2026-06-24&quot;:1.89},{&quot;2026-06-25&quot;:1.89},{&quot;2026-06-26&quot;:1.88},{&quot;2026-06-27&quot;:1.88},{&quot;2026-06-28&quot;:1.93},{&quot;2026-06-29&quot;:1.93},{&quot;2026-06-30&quot;:1.93},{&quot;2026-07-01&quot;:1.93},{&quot;2026-07-02&quot;:1.93},{&quot;2026-07-03&quot;:1.93},{&quot;2026-07-04&quot;:1.93},{&quot;2026-07-05&quot;:1.93},{&quot;2026-07-06&quot;:1.93},{&quot;2026-07-07&quot;:1.93},{&quot;2026-07-08&quot;:1.93},{&quot;2026-07-09&quot;:1.92},{&quot;2026-07-10&quot;:1.92},{&quot;2026-07-11&quot;:1.92},{&quot;2026-07-12&quot;:1.92},{&quot;2026-07-13&quot;:1.92},{&quot;2026-07-14&quot;:1.92},{&quot;2026-07-15&quot;:1.92},{&quot;2026-07-16&quot;:1.92},{&quot;2026-07-17&quot;:1.92},{&quot;2026-07-18&quot;:1.98},{&quot;2026-07-19&quot;:1.98},{&quot;2026-07-20&quot;:1.98},{&quot;2026-07-21&quot;:1.98},{&quot;2026-07-23&quot;:1.92},{&quot;2026-07-25&quot;:1.86},{&quot;2026-07-26&quot;:1.86},{&quot;2026-07-27&quot;:1.86},{&quot;2026-07-29&quot;:1.86},{&quot;2026-07-30&quot;:1.86},{&quot;2026-07-31&quot;:1.86},{&quot;2026-08-01&quot;:1.86},{&quot;2026-08-02&quot;:1.86},{&quot;2026-08-03&quot;:1.86},{&quot;2026-08-04&quot;:1.86},{&quot;2026-08-05&quot;:1.86},{&quot;2026-08-07&quot;:1.86},{&quot;2026-08-08&quot;:1.86},{&quot;2026-08-09&quot;:1.86},{&quot;2026-08-10&quot;:1.86},{&quot;2026-08-11&quot;:1.86},{&quot;2026-08-12&quot;:1.86},{&quot;2026-08-13&quot;:1.86},{&quot;2026-08-14&quot;:1.79},{&quot;2026-08-15&quot;:1.79},{&quot;2026-08-16&quot;:1.79},{&quot;2026-08-17&quot;:1.79},{&quot;2026-08-18&quot;:1.79},{&quot;2026-08-19&quot;:1.79},{&quot;2026-08-20&quot;:1.79},{&quot;2026-08-21&quot;:1.79},{&quot;2026-08-22&quot;:2.05},{&quot;2026-08-23&quot;:1.96},{&quot;2026-08-24&quot;:1.96},{&quot;2026-08-25&quot;:1.96},{&quot;2026-08-26&quot;:1.96},{&quot;2026-08-27&quot;:1.96},{&quot;2026-08-28&quot;:1.96},{&quot;2026-08-29&quot;:1.96},{&quot;2026-08-30&quot;:1.96},{&quot;2026-08-31&quot;:1.96},{&quot;2026-09-01&quot;:1.96},{&quot;2026-09-02&quot;:1.96},{&quot;2026-09-03&quot;:1.96},{&quot;2026-09-04&quot;:1.96},{&quot;2026-09-05&quot;:2.05},{&quot;2026-09-06&quot;:2.05},{&quot;2026-09-07&quot;:2.05},{&quot;2026-09-08&quot;:2.04},{&quot;2026-09-09&quot;:2.04},{&quot;2026-09-10&quot;:2.04},{&quot;2026-09-11&quot;:2.04}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:0.81},{&quot;2026-06-11&quot;:0.81},{&quot;2026-06-12&quot;:0.81},{&quot;2026-06-13&quot;:0.82},{&quot;2026-06-14&quot;:0.85},{&quot;2026-06-15&quot;:0.85},{&quot;2026-06-16&quot;:0.85},{&quot;2026-06-17&quot;:0.85},{&quot;2026-06-18&quot;:0.85},{&quot;2026-06-19&quot;:0.83},{&quot;2026-06-20&quot;:0.8},{&quot;2026-06-21&quot;:0.78},{&quot;2026-06-22&quot;:0.76},{&quot;2026-06-23&quot;:0.75},{&quot;2026-06-24&quot;:0.81},{&quot;2026-06-25&quot;:0.81},{&quot;2026-06-26&quot;:0.81},{&quot;2026-06-27&quot;:0.83},{&quot;2026-06-28&quot;:0.83},{&quot;2026-06-29&quot;:0.84},{&quot;2026-06-30&quot;:0.81},{&quot;2026-07-01&quot;:0.8},{&quot;2026-07-02&quot;:0.8},{&quot;2026-07-03&quot;:0.81},{&quot;2026-07-04&quot;:0.8},{&quot;2026-07-05&quot;:0.78},{&quot;2026-07-06&quot;:0.78},{&quot;2026-07-07&quot;:0.79},{&quot;2026-07-08&quot;:0.79},{&quot;2026-07-09&quot;:0.78},{&quot;2026-07-10&quot;:0.76},{&quot;2026-07-11&quot;:0.73},{&quot;2026-07-12&quot;:0.72},{&quot;2026-07-13&quot;:0.73},{&quot;2026-07-14&quot;:0.73},{&quot;2026-07-15&quot;:0.72},{&quot;2026-07-16&quot;:0.73},{&quot;2026-07-17&quot;:0.74},{&quot;2026-07-18&quot;:0.74},{&quot;2026-07-19&quot;:0.74},{&quot;2026-07-20&quot;:0.74},{&quot;2026-07-21&quot;:0.74},{&quot;2026-07-23&quot;:0.74},{&quot;2026-07-25&quot;:0.75},{&quot;2026-07-26&quot;:0.8},{&quot;2026-07-27&quot;:0.79},{&quot;2026-07-29&quot;:0.8},{&quot;2026-07-30&quot;:0.84},{&quot;2026-07-31&quot;:0.86},{&quot;2026-08-01&quot;:0.81},{&quot;2026-08-02&quot;:0.82},{&quot;2026-08-03&quot;:0.86},{&quot;2026-08-04&quot;:0.86},{&quot;2026-08-05&quot;:0.86},{&quot;2026-08-07&quot;:0.88},{&quot;2026-08-08&quot;:0.89},{&quot;2026-08-09&quot;:0.89},{&quot;2026-08-10&quot;:0.9},{&quot;2026-08-11&quot;:0.9},{&quot;2026-08-12&quot;:0.9},{&quot;2026-08-13&quot;:0.9},{&quot;2026-08-14&quot;:0.9},{&quot;2026-08-15&quot;:0.91},{&quot;2026-08-16&quot;:0.96},{&quot;2026-08-17&quot;:0.94},{&quot;2026-08-18&quot;:0.91},{&quot;2026-08-19&quot;:0.91},{&quot;2026-08-20&quot;:0.91},{&quot;2026-08-21&quot;:0.81},{&quot;2026-08-22&quot;:0.79},{&quot;2026-08-23&quot;:0.81},{&quot;2026-08-24&quot;:0.78},{&quot;2026-08-25&quot;:0.78},{&quot;2026-08-26&quot;:0.76},{&quot;2026-08-27&quot;:0.76},{&quot;2026-08-28&quot;:0.76},{&quot;2026-08-29&quot;:0.76},{&quot;2026-08-30&quot;:0.85},{&quot;2026-08-31&quot;:0.85},{&quot;2026-09-01&quot;:0.85},{&quot;2026-09-02&quot;:0.87},{&quot;2026-09-03&quot;:0.89},{&quot;2026-09-04&quot;:0.89},{&quot;2026-09-05&quot;:0.89},{&quot;2026-09-06&quot;:0.9},{&quot;2026-09-07&quot;:0.9},{&quot;2026-09-08&quot;:0.9},{&quot;2026-09-09&quot;:0.91},{&quot;2026-09-10&quot;:0.9},{&quot;2026-09-11&quot;:0.92}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Rogue&#39;s Passage" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/8/481c877e-0188-427f-8de2-25ad82d7cadb.jpg?1783915584" />

        <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">
            Rogue&#39;s Passage
        </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="Rogue&#39;s Passage" src="https://cards.scryfall.io/large/front/4/8/481c877e-0188-427f-8de2-25ad82d7cadb.jpg?1783915584" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

                <span class="text-xs text-accent-50">
                  ↑
                  29%
                </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.68
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:1.46},{&quot;2026-06-14&quot;:1.48},{&quot;2026-06-15&quot;:1.48},{&quot;2026-06-16&quot;:1.48},{&quot;2026-06-17&quot;:1.48},{&quot;2026-06-18&quot;:1.48},{&quot;2026-06-19&quot;:1.48},{&quot;2026-06-20&quot;:1.48},{&quot;2026-06-21&quot;:1.48},{&quot;2026-06-22&quot;:1.48},{&quot;2026-06-23&quot;:1.48},{&quot;2026-06-24&quot;:1.48},{&quot;2026-06-25&quot;:1.48},{&quot;2026-06-26&quot;:1.48},{&quot;2026-06-27&quot;:1.48},{&quot;2026-06-28&quot;:1.48},{&quot;2026-06-29&quot;:1.48},{&quot;2026-06-30&quot;:1.49},{&quot;2026-07-01&quot;:1.49},{&quot;2026-07-02&quot;:1.49},{&quot;2026-07-03&quot;:1.49},{&quot;2026-07-04&quot;:1.49},{&quot;2026-07-05&quot;:1.49},{&quot;2026-07-06&quot;:1.49},{&quot;2026-07-07&quot;:1.49},{&quot;2026-07-08&quot;:1.49},{&quot;2026-07-09&quot;:1.49},{&quot;2026-07-10&quot;:1.48},{&quot;2026-07-11&quot;:1.48},{&quot;2026-07-12&quot;:1.48},{&quot;2026-07-13&quot;:1.48},{&quot;2026-07-14&quot;:1.49},{&quot;2026-07-15&quot;:1.49},{&quot;2026-07-16&quot;:1.48},{&quot;2026-07-17&quot;:1.48},{&quot;2026-07-18&quot;:1.48},{&quot;2026-07-19&quot;:1.48},{&quot;2026-07-20&quot;:1.45},{&quot;2026-07-21&quot;:1.44},{&quot;2026-07-22&quot;:1.41},{&quot;2026-07-23&quot;:1.41},{&quot;2026-07-24&quot;:1.41},{&quot;2026-07-25&quot;:1.43},{&quot;2026-07-26&quot;:1.43},{&quot;2026-07-27&quot;:1.45},{&quot;2026-07-28&quot;:1.43},{&quot;2026-07-29&quot;:1.43},{&quot;2026-07-30&quot;:1.43},{&quot;2026-07-31&quot;:1.43},{&quot;2026-08-01&quot;:1.43},{&quot;2026-08-02&quot;:1.43},{&quot;2026-08-03&quot;:1.43},{&quot;2026-08-04&quot;:1.43},{&quot;2026-08-05&quot;:1.43},{&quot;2026-08-07&quot;:1.43},{&quot;2026-08-08&quot;:1.45},{&quot;2026-08-09&quot;:1.45},{&quot;2026-08-10&quot;:1.48},{&quot;2026-08-11&quot;:1.46},{&quot;2026-08-12&quot;:1.46},{&quot;2026-08-13&quot;:1.46},{&quot;2026-08-14&quot;:1.46},{&quot;2026-08-15&quot;:1.46},{&quot;2026-08-16&quot;:1.46},{&quot;2026-08-17&quot;:1.46},{&quot;2026-08-18&quot;:1.46},{&quot;2026-08-19&quot;:1.46},{&quot;2026-08-20&quot;:1.46},{&quot;2026-08-21&quot;:1.45},{&quot;2026-08-22&quot;:1.45},{&quot;2026-08-23&quot;:1.49},{&quot;2026-08-24&quot;:1.49},{&quot;2026-08-25&quot;:1.49},{&quot;2026-08-26&quot;:1.49},{&quot;2026-08-27&quot;:1.49},{&quot;2026-08-28&quot;:1.49},{&quot;2026-08-29&quot;:1.49},{&quot;2026-08-30&quot;:1.51},{&quot;2026-08-31&quot;:1.51},{&quot;2026-09-01&quot;:1.51},{&quot;2026-09-02&quot;:1.51},{&quot;2026-09-03&quot;:1.51},{&quot;2026-09-04&quot;:1.52},{&quot;2026-09-05&quot;:1.52},{&quot;2026-09-06&quot;:1.56},{&quot;2026-09-07&quot;:1.56},{&quot;2026-09-08&quot;:1.56},{&quot;2026-09-09&quot;:1.67},{&quot;2026-09-10&quot;:1.67},{&quot;2026-09-11&quot;:1.68}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.42},{&quot;2026-06-14&quot;:0.43},{&quot;2026-06-15&quot;:0.43},{&quot;2026-06-16&quot;:0.43},{&quot;2026-06-17&quot;:0.43},{&quot;2026-06-18&quot;:0.43},{&quot;2026-06-19&quot;:0.43},{&quot;2026-06-20&quot;:0.41},{&quot;2026-06-21&quot;:0.39},{&quot;2026-06-22&quot;:0.39},{&quot;2026-06-23&quot;:0.39},{&quot;2026-06-24&quot;:0.4},{&quot;2026-06-25&quot;:0.4},{&quot;2026-06-26&quot;:0.4},{&quot;2026-06-27&quot;:0.4},{&quot;2026-06-28&quot;:0.4},{&quot;2026-06-29&quot;:0.4},{&quot;2026-06-30&quot;:0.41},{&quot;2026-07-01&quot;:0.42},{&quot;2026-07-02&quot;:0.42},{&quot;2026-07-03&quot;:0.42},{&quot;2026-07-04&quot;:0.42},{&quot;2026-07-05&quot;:0.42},{&quot;2026-07-06&quot;:0.42},{&quot;2026-07-07&quot;:0.42},{&quot;2026-07-08&quot;:0.42},{&quot;2026-07-09&quot;:0.42},{&quot;2026-07-10&quot;:0.41},{&quot;2026-07-11&quot;:0.42},{&quot;2026-07-12&quot;:0.42},{&quot;2026-07-13&quot;:0.43},{&quot;2026-07-14&quot;:0.46},{&quot;2026-07-15&quot;:0.46},{&quot;2026-07-16&quot;:0.46},{&quot;2026-07-17&quot;:0.47},{&quot;2026-07-18&quot;:0.47},{&quot;2026-07-19&quot;:0.57},{&quot;2026-07-20&quot;:0.57},{&quot;2026-07-21&quot;:0.6},{&quot;2026-07-22&quot;:0.6},{&quot;2026-07-23&quot;:0.59},{&quot;2026-07-24&quot;:0.58},{&quot;2026-07-25&quot;:0.58},{&quot;2026-07-26&quot;:0.58},{&quot;2026-07-27&quot;:0.59},{&quot;2026-07-28&quot;:0.59},{&quot;2026-07-29&quot;:0.59},{&quot;2026-07-30&quot;:0.59},{&quot;2026-07-31&quot;:0.59},{&quot;2026-08-01&quot;:0.59},{&quot;2026-08-02&quot;:0.58},{&quot;2026-08-03&quot;:0.58},{&quot;2026-08-04&quot;:0.61},{&quot;2026-08-05&quot;:0.6},{&quot;2026-08-07&quot;:0.61},{&quot;2026-08-08&quot;:0.6},{&quot;2026-08-09&quot;:0.59},{&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.52},{&quot;2026-08-14&quot;:0.52},{&quot;2026-08-15&quot;:0.52},{&quot;2026-08-16&quot;:0.51},{&quot;2026-08-17&quot;:0.49},{&quot;2026-08-18&quot;:0.48},{&quot;2026-08-19&quot;:0.51},{&quot;2026-08-20&quot;:0.6},{&quot;2026-08-21&quot;:0.61},{&quot;2026-08-22&quot;:0.61},{&quot;2026-08-23&quot;:0.61},{&quot;2026-08-24&quot;:0.63},{&quot;2026-08-25&quot;:0.64},{&quot;2026-08-26&quot;:0.64},{&quot;2026-08-27&quot;:0.63},{&quot;2026-08-28&quot;:0.63},{&quot;2026-08-29&quot;:0.63},{&quot;2026-08-30&quot;:0.63},{&quot;2026-08-31&quot;:0.63},{&quot;2026-09-01&quot;:0.63},{&quot;2026-09-02&quot;:0.64},{&quot;2026-09-03&quot;:0.64},{&quot;2026-09-04&quot;:0.64},{&quot;2026-09-05&quot;:0.66},{&quot;2026-09-06&quot;:0.65},{&quot;2026-09-07&quot;:0.64},{&quot;2026-09-08&quot;:0.66},{&quot;2026-09-09&quot;:0.66},{&quot;2026-09-10&quot;:0.85},{&quot;2026-09-11&quot;:0.85}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

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

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

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

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

        <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">
            Razorverge Thicket
        </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="Razorverge Thicket" src="https://cards.scryfall.io/large/front/6/5/65b26f68-3a25-4c4e-bc76-a199ab479a50.jpg?1783917981" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.18</span>
              <span class="text-xs text-grey-text">Credit: $0.23</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.93},{&quot;2026-06-14&quot;:0.93},{&quot;2026-06-15&quot;:0.93},{&quot;2026-06-16&quot;:0.93},{&quot;2026-06-17&quot;:0.94},{&quot;2026-06-18&quot;:0.94},{&quot;2026-06-19&quot;:0.94},{&quot;2026-06-20&quot;:0.94},{&quot;2026-06-21&quot;:0.94},{&quot;2026-06-22&quot;:0.94},{&quot;2026-06-23&quot;:0.94},{&quot;2026-06-24&quot;:0.94},{&quot;2026-06-25&quot;:0.94},{&quot;2026-06-26&quot;:0.94},{&quot;2026-06-27&quot;:0.94},{&quot;2026-06-28&quot;:0.94},{&quot;2026-06-29&quot;:0.94},{&quot;2026-06-30&quot;:0.94},{&quot;2026-07-01&quot;:0.94},{&quot;2026-07-02&quot;:0.94},{&quot;2026-07-03&quot;:0.94},{&quot;2026-07-04&quot;:0.95},{&quot;2026-07-05&quot;:0.95},{&quot;2026-07-06&quot;:0.97},{&quot;2026-07-07&quot;:0.97},{&quot;2026-07-08&quot;:0.97},{&quot;2026-07-09&quot;:0.97},{&quot;2026-07-10&quot;:0.97},{&quot;2026-07-11&quot;:0.99},{&quot;2026-07-12&quot;:0.99},{&quot;2026-07-13&quot;:0.99},{&quot;2026-07-14&quot;:0.93},{&quot;2026-07-15&quot;:0.98},{&quot;2026-07-16&quot;:0.98},{&quot;2026-07-17&quot;:0.93},{&quot;2026-07-18&quot;:0.93},{&quot;2026-07-19&quot;:0.93},{&quot;2026-07-20&quot;:0.93},{&quot;2026-07-21&quot;:0.93},{&quot;2026-07-22&quot;:0.93},{&quot;2026-07-23&quot;:0.93},{&quot;2026-07-24&quot;:0.93},{&quot;2026-07-25&quot;:0.93},{&quot;2026-07-26&quot;:0.93},{&quot;2026-07-27&quot;:0.93},{&quot;2026-07-28&quot;:0.93},{&quot;2026-07-29&quot;:0.93},{&quot;2026-07-30&quot;:0.93},{&quot;2026-07-31&quot;:0.91},{&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.93},{&quot;2026-08-05&quot;:0.93},{&quot;2026-08-07&quot;:0.93},{&quot;2026-08-08&quot;:0.93},{&quot;2026-08-09&quot;:0.88},{&quot;2026-08-10&quot;:0.84},{&quot;2026-08-11&quot;:0.84},{&quot;2026-08-12&quot;:0.84},{&quot;2026-08-13&quot;:0.84},{&quot;2026-08-14&quot;:0.84},{&quot;2026-08-15&quot;:0.84},{&quot;2026-08-16&quot;:0.84},{&quot;2026-08-17&quot;:0.84},{&quot;2026-08-18&quot;:0.84},{&quot;2026-08-19&quot;:0.84},{&quot;2026-08-20&quot;:0.84},{&quot;2026-08-21&quot;:0.82},{&quot;2026-08-22&quot;:0.82},{&quot;2026-08-23&quot;:0.82},{&quot;2026-08-24&quot;:0.82},{&quot;2026-08-25&quot;:0.82},{&quot;2026-08-26&quot;:0.8},{&quot;2026-08-27&quot;:0.81},{&quot;2026-08-28&quot;:0.81},{&quot;2026-08-29&quot;:0.81},{&quot;2026-08-30&quot;:0.81},{&quot;2026-08-31&quot;:0.81},{&quot;2026-09-01&quot;:0.8},{&quot;2026-09-02&quot;:0.8},{&quot;2026-09-03&quot;:0.8},{&quot;2026-09-04&quot;:0.8},{&quot;2026-09-05&quot;:0.81},{&quot;2026-09-06&quot;:0.82},{&quot;2026-09-07&quot;:0.8},{&quot;2026-09-08&quot;:0.81},{&quot;2026-09-09&quot;:0.81},{&quot;2026-09-10&quot;:0.78},{&quot;2026-09-11&quot;:0.78}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.64},{&quot;2026-06-14&quot;:0.69},{&quot;2026-06-15&quot;:0.69},{&quot;2026-06-16&quot;:0.68},{&quot;2026-06-17&quot;:0.68},{&quot;2026-06-18&quot;:0.69},{&quot;2026-06-19&quot;:0.69},{&quot;2026-06-20&quot;:0.69},{&quot;2026-06-21&quot;:0.69},{&quot;2026-06-22&quot;:0.65},{&quot;2026-06-23&quot;:0.69},{&quot;2026-06-24&quot;:0.68},{&quot;2026-06-25&quot;:0.67},{&quot;2026-06-26&quot;:0.66},{&quot;2026-06-27&quot;:0.66},{&quot;2026-06-28&quot;:0.66},{&quot;2026-06-29&quot;:0.68},{&quot;2026-06-30&quot;:0.68},{&quot;2026-07-01&quot;:0.66},{&quot;2026-07-02&quot;:0.66},{&quot;2026-07-03&quot;:0.66},{&quot;2026-07-04&quot;:0.65},{&quot;2026-07-05&quot;:0.62},{&quot;2026-07-06&quot;:0.62},{&quot;2026-07-07&quot;:0.63},{&quot;2026-07-08&quot;:0.61},{&quot;2026-07-09&quot;:0.65},{&quot;2026-07-10&quot;:0.65},{&quot;2026-07-11&quot;:0.65},{&quot;2026-07-12&quot;:0.63},{&quot;2026-07-13&quot;:0.63},{&quot;2026-07-14&quot;:0.62},{&quot;2026-07-15&quot;:0.62},{&quot;2026-07-16&quot;:0.6},{&quot;2026-07-17&quot;:0.6},{&quot;2026-07-18&quot;:0.6},{&quot;2026-07-19&quot;:0.6},{&quot;2026-07-20&quot;:0.61},{&quot;2026-07-21&quot;:0.63},{&quot;2026-07-22&quot;:0.63},{&quot;2026-07-23&quot;:0.63},{&quot;2026-07-24&quot;:0.63},{&quot;2026-07-25&quot;:0.63},{&quot;2026-07-26&quot;:0.63},{&quot;2026-07-27&quot;:0.64},{&quot;2026-07-28&quot;:0.66},{&quot;2026-07-29&quot;:0.67},{&quot;2026-07-30&quot;:0.67},{&quot;2026-07-31&quot;:0.67},{&quot;2026-08-01&quot;:0.67},{&quot;2026-08-02&quot;:0.67},{&quot;2026-08-03&quot;:0.67},{&quot;2026-08-04&quot;:0.69},{&quot;2026-08-05&quot;:0.68},{&quot;2026-08-07&quot;:0.69},{&quot;2026-08-08&quot;:0.69},{&quot;2026-08-09&quot;:0.69},{&quot;2026-08-10&quot;:0.69},{&quot;2026-08-11&quot;:0.7},{&quot;2026-08-12&quot;:0.71},{&quot;2026-08-13&quot;:0.72},{&quot;2026-08-14&quot;:0.71},{&quot;2026-08-15&quot;:0.71},{&quot;2026-08-16&quot;:0.71},{&quot;2026-08-17&quot;:0.71},{&quot;2026-08-18&quot;:0.66},{&quot;2026-08-19&quot;:0.7},{&quot;2026-08-20&quot;:0.71},{&quot;2026-08-21&quot;:0.68},{&quot;2026-08-22&quot;:0.67},{&quot;2026-08-23&quot;:0.65},{&quot;2026-08-24&quot;:0.65},{&quot;2026-08-25&quot;:0.65},{&quot;2026-08-26&quot;:0.66},{&quot;2026-08-27&quot;:0.64},{&quot;2026-08-28&quot;:0.6},{&quot;2026-08-29&quot;:0.6},{&quot;2026-08-30&quot;:0.62},{&quot;2026-08-31&quot;:0.62},{&quot;2026-09-01&quot;:0.63},{&quot;2026-09-02&quot;:0.63},{&quot;2026-09-03&quot;:0.63},{&quot;2026-09-04&quot;:0.62},{&quot;2026-09-05&quot;:0.61},{&quot;2026-09-06&quot;:0.6},{&quot;2026-09-07&quot;:0.59},{&quot;2026-09-08&quot;:0.59},{&quot;2026-09-09&quot;:0.58},{&quot;2026-09-10&quot;:0.58},{&quot;2026-09-11&quot;:0.57}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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

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

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

        <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/6/d/6d28946e-a478-4e0b-b39b-ec0236ddc9a5.jpg?1783934250" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="19186"
  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-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">
            3 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.35
          </span>
        </div>
      </div>
    </div>

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

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

        <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/f/9/f9c4ab8b-9f84-4b92-a114-93b082c15080.jpg?1783918339" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

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

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

            </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-13&quot;:1.84},{&quot;2026-06-14&quot;:1.84},{&quot;2026-06-15&quot;:1.87},{&quot;2026-06-16&quot;:1.87},{&quot;2026-06-17&quot;:1.87},{&quot;2026-06-18&quot;:1.87},{&quot;2026-06-19&quot;:1.87},{&quot;2026-06-20&quot;:1.87},{&quot;2026-06-21&quot;:1.87},{&quot;2026-06-22&quot;:1.87},{&quot;2026-06-23&quot;:1.85},{&quot;2026-06-24&quot;:1.84},{&quot;2026-06-25&quot;:1.84},{&quot;2026-06-26&quot;:1.84},{&quot;2026-06-27&quot;:1.86},{&quot;2026-06-28&quot;:1.86},{&quot;2026-06-29&quot;:1.92},{&quot;2026-06-30&quot;:1.95},{&quot;2026-07-01&quot;:1.94},{&quot;2026-07-02&quot;:1.85},{&quot;2026-07-03&quot;:1.9},{&quot;2026-07-04&quot;:1.92},{&quot;2026-07-05&quot;:1.92},{&quot;2026-07-06&quot;:1.91},{&quot;2026-07-07&quot;:1.91},{&quot;2026-07-08&quot;:1.91},{&quot;2026-07-09&quot;:1.89},{&quot;2026-07-10&quot;:1.9},{&quot;2026-07-11&quot;:1.9},{&quot;2026-07-12&quot;:1.9},{&quot;2026-07-13&quot;:1.9},{&quot;2026-07-14&quot;:1.87},{&quot;2026-07-15&quot;:1.9},{&quot;2026-07-16&quot;:1.9},{&quot;2026-07-17&quot;:1.9},{&quot;2026-07-18&quot;:1.9},{&quot;2026-07-19&quot;:1.9},{&quot;2026-07-20&quot;:1.9},{&quot;2026-07-21&quot;:1.9},{&quot;2026-07-22&quot;:1.87},{&quot;2026-07-23&quot;:1.87},{&quot;2026-07-24&quot;:1.87},{&quot;2026-07-25&quot;:1.87},{&quot;2026-07-26&quot;:1.87},{&quot;2026-07-27&quot;:1.86},{&quot;2026-07-28&quot;:1.94},{&quot;2026-07-29&quot;:1.94},{&quot;2026-07-30&quot;:1.94},{&quot;2026-07-31&quot;:1.94},{&quot;2026-08-01&quot;:1.96},{&quot;2026-08-02&quot;:1.96},{&quot;2026-08-03&quot;:1.98},{&quot;2026-08-04&quot;:1.98},{&quot;2026-08-05&quot;:1.98},{&quot;2026-08-07&quot;:1.99},{&quot;2026-08-08&quot;:1.99},{&quot;2026-08-09&quot;:1.99},{&quot;2026-08-10&quot;:2.01},{&quot;2026-08-11&quot;:2.01},{&quot;2026-08-12&quot;:2.01},{&quot;2026-08-13&quot;:1.98},{&quot;2026-08-14&quot;:1.98},{&quot;2026-08-15&quot;:1.98},{&quot;2026-08-16&quot;:2.03},{&quot;2026-08-17&quot;:2.0},{&quot;2026-08-18&quot;:2.01},{&quot;2026-08-19&quot;:2.08},{&quot;2026-08-20&quot;:2.08},{&quot;2026-08-21&quot;:2.08},{&quot;2026-08-22&quot;:2.08},{&quot;2026-08-23&quot;:2.08},{&quot;2026-08-24&quot;:2.11},{&quot;2026-08-25&quot;:2.11},{&quot;2026-08-26&quot;:2.11},{&quot;2026-08-27&quot;:2.11},{&quot;2026-08-28&quot;:2.11},{&quot;2026-08-29&quot;:2.11},{&quot;2026-08-30&quot;:2.11},{&quot;2026-08-31&quot;:2.11},{&quot;2026-09-01&quot;:2.08},{&quot;2026-09-02&quot;:2.04},{&quot;2026-09-03&quot;:2.01},{&quot;2026-09-04&quot;:2.01},{&quot;2026-09-05&quot;:2.03},{&quot;2026-09-06&quot;:2.03},{&quot;2026-09-07&quot;:2.03},{&quot;2026-09-08&quot;:2.03},{&quot;2026-09-09&quot;:2.03},{&quot;2026-09-10&quot;:2.03},{&quot;2026-09-11&quot;:2.03}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.41},{&quot;2026-06-14&quot;:0.4},{&quot;2026-06-15&quot;:0.4},{&quot;2026-06-16&quot;:0.4},{&quot;2026-06-17&quot;:0.4},{&quot;2026-06-18&quot;:0.4},{&quot;2026-06-19&quot;:0.39},{&quot;2026-06-20&quot;:0.39},{&quot;2026-06-21&quot;:0.39},{&quot;2026-06-22&quot;:0.39},{&quot;2026-06-23&quot;:0.39},{&quot;2026-06-24&quot;:0.39},{&quot;2026-06-25&quot;:0.39},{&quot;2026-06-26&quot;:0.39},{&quot;2026-06-27&quot;:0.39},{&quot;2026-06-28&quot;:0.39},{&quot;2026-06-29&quot;:0.39},{&quot;2026-06-30&quot;:0.4},{&quot;2026-07-01&quot;:0.39},{&quot;2026-07-02&quot;:0.39},{&quot;2026-07-03&quot;:0.39},{&quot;2026-07-04&quot;:0.39},{&quot;2026-07-05&quot;:0.37},{&quot;2026-07-06&quot;:0.37},{&quot;2026-07-07&quot;:0.37},{&quot;2026-07-08&quot;:0.37},{&quot;2026-07-09&quot;:0.37},{&quot;2026-07-10&quot;:0.35},{&quot;2026-07-11&quot;:0.35},{&quot;2026-07-12&quot;:0.35},{&quot;2026-07-13&quot;:0.36},{&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.33},{&quot;2026-07-18&quot;:0.33},{&quot;2026-07-19&quot;:0.33},{&quot;2026-07-20&quot;:0.33},{&quot;2026-07-21&quot;:0.33},{&quot;2026-07-22&quot;:0.33},{&quot;2026-07-23&quot;:0.33},{&quot;2026-07-24&quot;:0.32},{&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.32},{&quot;2026-08-01&quot;:0.32},{&quot;2026-08-02&quot;:0.32},{&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.34},{&quot;2026-08-11&quot;:0.34},{&quot;2026-08-12&quot;:0.34},{&quot;2026-08-13&quot;:0.32},{&quot;2026-08-14&quot;:0.32},{&quot;2026-08-15&quot;:0.33},{&quot;2026-08-16&quot;:0.33},{&quot;2026-08-17&quot;:0.33},{&quot;2026-08-18&quot;:0.34},{&quot;2026-08-19&quot;:0.34},{&quot;2026-08-20&quot;:0.34},{&quot;2026-08-21&quot;:0.34},{&quot;2026-08-22&quot;:0.34},{&quot;2026-08-23&quot;:0.34},{&quot;2026-08-24&quot;:0.34},{&quot;2026-08-25&quot;:0.34},{&quot;2026-08-26&quot;:0.34},{&quot;2026-08-27&quot;:0.34},{&quot;2026-08-28&quot;:0.34},{&quot;2026-08-29&quot;:0.34},{&quot;2026-08-30&quot;:0.35},{&quot;2026-08-31&quot;:0.35},{&quot;2026-09-01&quot;:0.34},{&quot;2026-09-02&quot;:0.34},{&quot;2026-09-03&quot;:0.34},{&quot;2026-09-04&quot;:0.34},{&quot;2026-09-05&quot;:0.35},{&quot;2026-09-06&quot;:0.35},{&quot;2026-09-07&quot;:0.35},{&quot;2026-09-08&quot;:0.34},{&quot;2026-09-09&quot;:0.34},{&quot;2026-09-10&quot;:0.34},{&quot;2026-09-11&quot;:0.35}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-100 text-badge-text">
              ↓
              11%
            </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="Forest" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/4/941546b8-8540-40dd-bacc-9b11f3d63033.jpg?1783918337" />

        <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/9/4/941546b8-8540-40dd-bacc-9b11f3d63033.jpg?1783918337" />
    </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">
            4
          </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-100">
                  ↓
                  11%
                </span>
            </div>
          </div>

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

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

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

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

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

    <!-- Quick Actions -->

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

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

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


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Land — Plains 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.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="Prairie Stream" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/e/ae6bf73b-c70b-4b19-ac00-7317d5fcea7c.jpg?1783924932" />

        <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">
            Prairie Stream
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Land — Plains 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="Prairie Stream" src="https://cards.scryfall.io/large/front/a/e/ae6bf73b-c70b-4b19-ac00-7317d5fcea7c.jpg?1783924932" />
    </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.03</span>
              <span class="text-xs text-grey-text">Credit: $0.04</span>
            </div>
        </div>

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.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="Terramorphic Expanse" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/2/c2b7a200-3da0-4714-ae1c-2e4847725416.jpg?1783928676" />

        <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">
            Terramorphic Expanse
        </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="Terramorphic Expanse" src="https://cards.scryfall.io/large/front/c/2/c2b7a200-3da0-4714-ae1c-2e4847725416.jpg?1783928676" />
    </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.22
              </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-11&quot;:0.17},{&quot;2026-06-12&quot;:0.17},{&quot;2026-06-13&quot;:0.17},{&quot;2026-06-14&quot;:0.17},{&quot;2026-06-15&quot;:0.17},{&quot;2026-06-16&quot;:0.17},{&quot;2026-06-17&quot;:0.17},{&quot;2026-06-18&quot;:0.17},{&quot;2026-06-19&quot;:0.17},{&quot;2026-06-20&quot;:0.17},{&quot;2026-06-21&quot;:0.17},{&quot;2026-06-22&quot;:0.17},{&quot;2026-06-23&quot;:0.17},{&quot;2026-06-24&quot;:0.17},{&quot;2026-06-25&quot;:0.17},{&quot;2026-06-26&quot;:0.17},{&quot;2026-06-27&quot;:0.17},{&quot;2026-06-28&quot;:0.17},{&quot;2026-06-29&quot;:0.17},{&quot;2026-06-30&quot;:0.17},{&quot;2026-07-01&quot;:0.17},{&quot;2026-07-02&quot;:0.18},{&quot;2026-07-03&quot;:0.19},{&quot;2026-07-04&quot;:0.19},{&quot;2026-07-05&quot;:0.19},{&quot;2026-07-06&quot;:0.19},{&quot;2026-07-07&quot;:0.19},{&quot;2026-07-08&quot;:0.19},{&quot;2026-07-09&quot;:0.19},{&quot;2026-07-10&quot;:0.19},{&quot;2026-07-11&quot;:0.19},{&quot;2026-07-12&quot;:0.19},{&quot;2026-07-13&quot;:0.19},{&quot;2026-07-14&quot;:0.19},{&quot;2026-07-15&quot;:0.19},{&quot;2026-07-16&quot;:0.2},{&quot;2026-07-17&quot;:0.2},{&quot;2026-07-18&quot;:0.2},{&quot;2026-07-19&quot;:0.2},{&quot;2026-07-20&quot;:0.2},{&quot;2026-07-21&quot;:0.2},{&quot;2026-07-23&quot;:0.2},{&quot;2026-07-25&quot;:0.21},{&quot;2026-07-26&quot;:0.21},{&quot;2026-07-27&quot;:0.21},{&quot;2026-07-28&quot;:0.21},{&quot;2026-07-29&quot;:0.21},{&quot;2026-07-30&quot;:0.21},{&quot;2026-07-31&quot;:0.21},{&quot;2026-08-01&quot;:0.21},{&quot;2026-08-02&quot;:0.21},{&quot;2026-08-03&quot;:0.21},{&quot;2026-08-04&quot;:0.21},{&quot;2026-08-05&quot;:0.21},{&quot;2026-08-07&quot;:0.21},{&quot;2026-08-08&quot;:0.21},{&quot;2026-08-09&quot;:0.21},{&quot;2026-08-10&quot;:0.21},{&quot;2026-08-11&quot;:0.21},{&quot;2026-08-12&quot;:0.21},{&quot;2026-08-13&quot;:0.21},{&quot;2026-08-14&quot;:0.21},{&quot;2026-08-15&quot;:0.21},{&quot;2026-08-16&quot;:0.21},{&quot;2026-08-17&quot;:0.21},{&quot;2026-08-18&quot;:0.21},{&quot;2026-08-19&quot;:0.21},{&quot;2026-08-20&quot;:0.21},{&quot;2026-08-21&quot;:0.21},{&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.22},{&quot;2026-08-31&quot;:0.22},{&quot;2026-09-01&quot;:0.22},{&quot;2026-09-02&quot;:0.22},{&quot;2026-09-03&quot;:0.22},{&quot;2026-09-04&quot;:0.22},{&quot;2026-09-05&quot;:0.22},{&quot;2026-09-06&quot;:0.22},{&quot;2026-09-07&quot;:0.22},{&quot;2026-09-08&quot;:0.22},{&quot;2026-09-09&quot;:0.22},{&quot;2026-09-10&quot;:0.22},{&quot;2026-09-11&quot;:0.22}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            3 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.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="Plains" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/a/bac23c5e-a489-4fba-b14f-a968b202ac22.jpg?1783918341" />

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Plains" src="https://cards.scryfall.io/large/front/b/a/bac23c5e-a489-4fba-b14f-a968b202ac22.jpg?1783918341" />
    </div>

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

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

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

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

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

            </div>
          </div>

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

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

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$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;2026-06-13&quot;:0.54},{&quot;2026-06-14&quot;:0.53},{&quot;2026-06-15&quot;:0.54},{&quot;2026-06-16&quot;:0.53},{&quot;2026-06-17&quot;:0.56},{&quot;2026-06-18&quot;:0.56},{&quot;2026-06-19&quot;:0.56},{&quot;2026-06-20&quot;:0.56},{&quot;2026-06-21&quot;:0.56},{&quot;2026-06-22&quot;:0.55},{&quot;2026-06-23&quot;:0.54},{&quot;2026-06-24&quot;:0.54},{&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.54},{&quot;2026-06-29&quot;:0.51},{&quot;2026-06-30&quot;:0.51},{&quot;2026-07-01&quot;:0.51},{&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.5},{&quot;2026-07-07&quot;:0.5},{&quot;2026-07-08&quot;:0.49},{&quot;2026-07-09&quot;:0.46},{&quot;2026-07-10&quot;:0.46},{&quot;2026-07-11&quot;:0.46},{&quot;2026-07-12&quot;:0.46},{&quot;2026-07-13&quot;:0.46},{&quot;2026-07-14&quot;:0.46},{&quot;2026-07-15&quot;:0.47},{&quot;2026-07-16&quot;:0.47},{&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.47},{&quot;2026-07-22&quot;:0.47},{&quot;2026-07-23&quot;:0.47},{&quot;2026-07-24&quot;:0.47},{&quot;2026-07-25&quot;:0.47},{&quot;2026-07-26&quot;:0.45},{&quot;2026-07-27&quot;:0.46},{&quot;2026-07-28&quot;:0.46},{&quot;2026-07-29&quot;:0.46},{&quot;2026-07-30&quot;:0.46},{&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.49},{&quot;2026-08-04&quot;:0.49},{&quot;2026-08-05&quot;:0.49},{&quot;2026-08-07&quot;:0.49},{&quot;2026-08-08&quot;:0.49},{&quot;2026-08-09&quot;:0.54},{&quot;2026-08-10&quot;:0.54},{&quot;2026-08-11&quot;:0.54},{&quot;2026-08-12&quot;:0.54},{&quot;2026-08-13&quot;:0.53},{&quot;2026-08-14&quot;:0.52},{&quot;2026-08-15&quot;:0.52},{&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.52},{&quot;2026-08-20&quot;:0.52},{&quot;2026-08-21&quot;:0.52},{&quot;2026-08-22&quot;:0.52},{&quot;2026-08-23&quot;:0.52},{&quot;2026-08-24&quot;:0.52},{&quot;2026-08-25&quot;:0.52},{&quot;2026-08-26&quot;:0.53},{&quot;2026-08-27&quot;:0.53},{&quot;2026-08-28&quot;:0.53},{&quot;2026-08-29&quot;:0.53},{&quot;2026-08-30&quot;:0.58},{&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.6},{&quot;2026-09-04&quot;:0.6},{&quot;2026-09-05&quot;:0.6},{&quot;2026-09-06&quot;:0.69},{&quot;2026-09-07&quot;:0.69},{&quot;2026-09-08&quot;:0.69},{&quot;2026-09-09&quot;:0.69},{&quot;2026-09-10&quot;:0.69},{&quot;2026-09-11&quot;:0.69}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.29},{&quot;2026-06-14&quot;:0.29},{&quot;2026-06-15&quot;:0.29},{&quot;2026-06-16&quot;:0.28},{&quot;2026-06-17&quot;:0.27},{&quot;2026-06-18&quot;:0.27},{&quot;2026-06-19&quot;:0.27},{&quot;2026-06-20&quot;:0.27},{&quot;2026-06-21&quot;:0.27},{&quot;2026-06-22&quot;:0.26},{&quot;2026-06-23&quot;:0.26},{&quot;2026-06-24&quot;:0.26},{&quot;2026-06-25&quot;:0.26},{&quot;2026-06-26&quot;:0.26},{&quot;2026-06-27&quot;:0.26},{&quot;2026-06-28&quot;:0.26},{&quot;2026-06-29&quot;:0.26},{&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.26},{&quot;2026-07-04&quot;:0.26},{&quot;2026-07-05&quot;:0.26},{&quot;2026-07-06&quot;:0.26},{&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.26},{&quot;2026-07-11&quot;:0.25},{&quot;2026-07-12&quot;:0.26},{&quot;2026-07-13&quot;:0.25},{&quot;2026-07-14&quot;:0.25},{&quot;2026-07-15&quot;:0.25},{&quot;2026-07-16&quot;:0.24},{&quot;2026-07-17&quot;:0.23},{&quot;2026-07-18&quot;:0.23},{&quot;2026-07-19&quot;:0.23},{&quot;2026-07-20&quot;:0.23},{&quot;2026-07-21&quot;:0.23},{&quot;2026-07-22&quot;:0.23},{&quot;2026-07-23&quot;:0.22},{&quot;2026-07-24&quot;:0.2},{&quot;2026-07-25&quot;:0.19},{&quot;2026-07-26&quot;:0.2},{&quot;2026-07-27&quot;:0.2},{&quot;2026-07-28&quot;:0.22},{&quot;2026-07-29&quot;:0.22},{&quot;2026-07-30&quot;:0.22},{&quot;2026-07-31&quot;:0.22},{&quot;2026-08-01&quot;:0.22},{&quot;2026-08-02&quot;:0.21},{&quot;2026-08-03&quot;:0.21},{&quot;2026-08-04&quot;:0.21},{&quot;2026-08-05&quot;:0.21},{&quot;2026-08-07&quot;:0.21},{&quot;2026-08-08&quot;:0.21},{&quot;2026-08-09&quot;:0.21},{&quot;2026-08-10&quot;:0.21},{&quot;2026-08-11&quot;:0.22},{&quot;2026-08-12&quot;:0.22},{&quot;2026-08-13&quot;:0.22},{&quot;2026-08-14&quot;:0.22},{&quot;2026-08-15&quot;:0.22},{&quot;2026-08-16&quot;:0.22},{&quot;2026-08-17&quot;:0.22},{&quot;2026-08-18&quot;:0.21},{&quot;2026-08-19&quot;:0.21},{&quot;2026-08-20&quot;:0.21},{&quot;2026-08-21&quot;:0.21},{&quot;2026-08-22&quot;:0.21},{&quot;2026-08-23&quot;:0.22},{&quot;2026-08-24&quot;:0.2},{&quot;2026-08-25&quot;:0.2},{&quot;2026-08-26&quot;:0.2},{&quot;2026-08-27&quot;:0.2},{&quot;2026-08-28&quot;:0.21},{&quot;2026-08-29&quot;:0.21},{&quot;2026-08-30&quot;:0.22},{&quot;2026-08-31&quot;:0.22},{&quot;2026-09-01&quot;:0.22},{&quot;2026-09-02&quot;:0.22},{&quot;2026-09-03&quot;:0.22},{&quot;2026-09-04&quot;:0.22},{&quot;2026-09-05&quot;:0.22},{&quot;2026-09-06&quot;:0.22},{&quot;2026-09-07&quot;:0.22},{&quot;2026-09-08&quot;:0.22},{&quot;2026-09-09&quot;:0.22},{&quot;2026-09-10&quot;:0.22},{&quot;2026-09-11&quot;:0.22}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

        <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">
            Temple of Enlightenment
        </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="Temple of Enlightenment" src="https://cards.scryfall.io/large/front/f/6/f68f08ae-f560-4310-89f9-d38986903bd6.jpg?1783924929" />
    </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.14
              </span>

            </div>
          </div>

      </div>


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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.18},{&quot;2026-06-14&quot;:0.18},{&quot;2026-06-15&quot;:0.18},{&quot;2026-06-16&quot;:0.18},{&quot;2026-06-17&quot;:0.18},{&quot;2026-06-18&quot;:0.18},{&quot;2026-06-19&quot;:0.18},{&quot;2026-06-20&quot;:0.18},{&quot;2026-06-21&quot;:0.18},{&quot;2026-06-22&quot;:0.18},{&quot;2026-06-23&quot;:0.18},{&quot;2026-06-24&quot;:0.18},{&quot;2026-06-25&quot;:0.16},{&quot;2026-06-26&quot;:0.16},{&quot;2026-06-27&quot;:0.16},{&quot;2026-06-28&quot;:0.16},{&quot;2026-06-29&quot;:0.16},{&quot;2026-06-30&quot;:0.16},{&quot;2026-07-01&quot;:0.16},{&quot;2026-07-02&quot;:0.16},{&quot;2026-07-03&quot;:0.16},{&quot;2026-07-04&quot;:0.16},{&quot;2026-07-05&quot;:0.16},{&quot;2026-07-06&quot;:0.16},{&quot;2026-07-07&quot;:0.15},{&quot;2026-07-08&quot;:0.15},{&quot;2026-07-09&quot;:0.15},{&quot;2026-07-10&quot;:0.15},{&quot;2026-07-11&quot;:0.15},{&quot;2026-07-12&quot;:0.15},{&quot;2026-07-13&quot;:0.15},{&quot;2026-07-14&quot;:0.15},{&quot;2026-07-15&quot;:0.15},{&quot;2026-07-16&quot;:0.15},{&quot;2026-07-17&quot;:0.14},{&quot;2026-07-18&quot;:0.14},{&quot;2026-07-19&quot;:0.14},{&quot;2026-07-20&quot;:0.14},{&quot;2026-07-21&quot;:0.15},{&quot;2026-07-22&quot;:0.15},{&quot;2026-07-23&quot;:0.15},{&quot;2026-07-24&quot;:0.15},{&quot;2026-07-25&quot;:0.15},{&quot;2026-07-26&quot;:0.15},{&quot;2026-07-27&quot;:0.15},{&quot;2026-07-28&quot;:0.15},{&quot;2026-07-29&quot;:0.15},{&quot;2026-07-30&quot;:0.15},{&quot;2026-07-31&quot;:0.15},{&quot;2026-08-01&quot;:0.15},{&quot;2026-08-02&quot;:0.15},{&quot;2026-08-03&quot;:0.15},{&quot;2026-08-04&quot;:0.15},{&quot;2026-08-05&quot;:0.15},{&quot;2026-08-07&quot;:0.15},{&quot;2026-08-08&quot;:0.15},{&quot;2026-08-09&quot;:0.15},{&quot;2026-08-10&quot;:0.15},{&quot;2026-08-11&quot;:0.15},{&quot;2026-08-12&quot;:0.16},{&quot;2026-08-13&quot;:0.16},{&quot;2026-08-14&quot;:0.16},{&quot;2026-08-15&quot;:0.16},{&quot;2026-08-16&quot;:0.16},{&quot;2026-08-17&quot;:0.16},{&quot;2026-08-18&quot;:0.16},{&quot;2026-08-19&quot;:0.16},{&quot;2026-08-20&quot;:0.16},{&quot;2026-08-21&quot;:0.16},{&quot;2026-08-22&quot;:0.16},{&quot;2026-08-23&quot;:0.15},{&quot;2026-08-24&quot;:0.15},{&quot;2026-08-25&quot;:0.15},{&quot;2026-08-26&quot;:0.15},{&quot;2026-08-27&quot;:0.15},{&quot;2026-08-28&quot;:0.15},{&quot;2026-08-29&quot;:0.15},{&quot;2026-08-30&quot;:0.15},{&quot;2026-08-31&quot;:0.15},{&quot;2026-09-01&quot;:0.15},{&quot;2026-09-02&quot;:0.14},{&quot;2026-09-03&quot;:0.14},{&quot;2026-09-04&quot;:0.14},{&quot;2026-09-05&quot;:0.14},{&quot;2026-09-06&quot;:0.14},{&quot;2026-09-07&quot;:0.14},{&quot;2026-09-08&quot;:0.14},{&quot;2026-09-09&quot;:0.14},{&quot;2026-09-10&quot;:0.14},{&quot;2026-09-11&quot;:0.14}]}"
        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 41 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=21&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=21&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=21&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=21&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=21&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=21&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=21&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=21&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=21&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="49474"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              250
            </td>

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


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

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

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

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

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

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

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

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

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


            </td>

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-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">
                  $20.26

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

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

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

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

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

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


            </td>

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

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

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="67444"
          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-spg ss-mythic ss-fw ss-2x mr-4"></i>
              Swords to Plowshares


            </td>

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

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

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

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

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

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

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

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

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

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

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


            </td>

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

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

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

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

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

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

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


            </td>

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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


            </td>

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

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="18405"
          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-dmr ss-rare ss-fw ss-2x mr-4"></i>
              Birds of Paradise


            </td>

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="92382"
          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">
              1889
            </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>
              Benevolent Hydra


            </td>

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

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

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

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="96026"
          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">
              9
            </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-mythic ss-fw ss-2x mr-4"></i>
              Cosmogrand Zenith


            </td>

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

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

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

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

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="74411"
          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">
              204
            </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-mythic ss-fw ss-2x mr-4"></i>
              Ojer Kaslem, Deepest Growth // Temple of Cultivation


            </td>

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

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

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

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

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

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

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

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

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


            </td>

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

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

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

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

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

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


            </td>

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $5.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">
                $3.80
            </td>

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

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

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

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

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


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

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

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

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

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

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

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

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

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


            </td>

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

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

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

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

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

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

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

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


            </td>

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

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $3.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.37
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="28575"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_28575" src="/boxset_card/28575?collection_id=21&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="78033"
          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">
              AFR-81
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Wizard Class


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Enchantment — Class
            </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">
                  $3.22

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.90
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.16
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="78033"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_78033" src="/boxset_card/78033?collection_id=21&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="76562"
          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">
              SNC-51
            </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>
              An Offer You Can&#39;t Refuse


            </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">
                  $3.19

                    <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.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.67
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="76562"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_76562" src="/boxset_card/76562?collection_id=21&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="98390"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              317
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tle ss-rare ss-fw ss-2x mr-4"></i>
              Swiftfoot Boots


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact — Equipment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.03

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $2.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.38
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="98390"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_98390" src="/boxset_card/98390?collection_id=21&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="94958"
          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">
              129
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fic ss-rare ss-fw ss-2x mr-4"></i>
              Alisaie Leveilleur


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Elf Wizard
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.50

                    <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">
                $1.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.25
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="94958"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_94958" src="/boxset_card/94958?collection_id=21&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="16469"
          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">
              102
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-voc ss-common ss-fw ss-2x mr-4"></i>
              Arcane Denial


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.34

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.46
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="16469"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_16469" src="/boxset_card/16469?collection_id=21&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="94633"
          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">
              30
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fin ss-uncommon ss-fw ss-2x mr-4"></i>
              Restoration Magic


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.32

                    <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">
                $1.40
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.29
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="94633"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_94633" src="/boxset_card/94633?collection_id=21&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="89549"
          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">
              73
            </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>
              Kodama&#39;s Reach


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery — Arcane
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.93

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.80
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.18
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="89549"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_89549" src="/boxset_card/89549?collection_id=21&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="89697"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              120
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-znc ss-uncommon ss-fw ss-2x mr-4"></i>
              Sol Ring


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.91

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.46
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="89697"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_89697" src="/boxset_card/89697?collection_id=21&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="5375"
          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">
              185
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-blb ss-uncommon ss-fw ss-2x mr-4"></i>
              Overprotect


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.78

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      24%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.30
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.22
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="5375"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_5375" src="/boxset_card/5375?collection_id=21&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="10308"
          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">
              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-c19 ss-common ss-fw ss-2x mr-4"></i>
              Farseek


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.68

                    <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.38
            </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="10308"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_10308" src="/boxset_card/10308?collection_id=21&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="20145"
          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">
              23
            </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>
              Path to Exile


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.59

                    <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">
                0.44
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="20145"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_20145" src="/boxset_card/20145?collection_id=21&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="58063"
          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">
              374
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-one ss-rare ss-fw ss-2x mr-4"></i>
              Seachrome Coast


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.44

                    <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.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.11
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="58063"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_58063" src="/boxset_card/58063?collection_id=21&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="14317"
          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">
              828
            </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>
              Managorger Hydra


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Hydra
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.42

                    <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.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.48
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="14317"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_14317" src="/boxset_card/14317?collection_id=21&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="79323"
          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">
              214
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tsr ss-uncommon ss-fw ss-2x mr-4"></i>
              Krosan Grip


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.92

                    <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.23
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.40
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="79323"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_79323" src="/boxset_card/79323?collection_id=21&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="13280"
          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">
              426
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmm ss-uncommon ss-fw ss-2x mr-4"></i>
              Rogue&#39;s Passage


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.85

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      29%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.40
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.35
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="13280"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_13280" src="/boxset_card/13280?collection_id=21&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="40509"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              96
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-khc ss-common ss-fw ss-2x mr-4"></i>
              Arcane Signet


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.68

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      6%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.10
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.24
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="40509"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_40509" src="/boxset_card/40509?collection_id=21&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="57719"
          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">
              257
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-one ss-rare ss-fw ss-2x mr-4"></i>
              Razorverge Thicket


            </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.57

                    <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.18
            </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="57719"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_57719" src="/boxset_card/57719?collection_id=21&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="9907"
          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">
              240
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c18 ss-common ss-fw ss-2x mr-4"></i>
              Command Tower


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.38

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.06
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.38
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="9907"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_9907" src="/boxset_card/9907?collection_id=21&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="19186"
          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">
              404
            </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-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">
                <div class="flex items-center gap-2">
                  $0.35

                </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.92
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="19186"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_19186" src="/boxset_card/19186?collection_id=21&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="19205"
          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">
              410
            </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-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.31

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      11%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.12
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.70
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="19205"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_19205" src="/boxset_card/19205?collection_id=21&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="16700"
          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">
              179
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-voc ss-rare ss-fw ss-2x mr-4"></i>
              Prairie Stream


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land — Plains 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">
                  $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.03
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.14
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="16700"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_16700" src="/boxset_card/16700?collection_id=21&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12868"
          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">
              497
            </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>
              Terramorphic Expanse


            </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.22

                </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.04
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="12868"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12868" src="/boxset_card/12868?collection_id=21&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="19180"
          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">
              402
            </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-common ss-fw ss-2x mr-4"></i>
              Plains


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Basic Land — Plains
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.22

                </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.31
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="19180"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_19180" src="/boxset_card/19180?collection_id=21&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="16718"
          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">
              185
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-voc ss-rare ss-fw ss-2x mr-4"></i>
              Temple of Enlightenment


            </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.14

                </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.01
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="16718"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_16718" src="/boxset_card/16718?collection_id=21&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 41 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>