<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="15" 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="74583"
  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-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">
            Roaming Throne
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $52.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="Roaming Throne" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/3/2/32fd8b7c-baf3-4d3d-be6f-044a917b11a0.jpg?1783913723" />

        <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">
            Roaming Throne
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Roaming Throne" src="https://cards.scryfall.io/large/front/3/2/32fd8b7c-baf3-4d3d-be6f-044a917b11a0.jpg?1783913723" />
    </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">
                $51.28
              </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">
                $52.33
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:54.19},{&quot;2026-06-14&quot;:54.62},{&quot;2026-06-15&quot;:55.06},{&quot;2026-06-16&quot;:55.06},{&quot;2026-06-17&quot;:55.06},{&quot;2026-06-18&quot;:55.06},{&quot;2026-06-19&quot;:55.37},{&quot;2026-06-20&quot;:55.37},{&quot;2026-06-21&quot;:55.05},{&quot;2026-06-22&quot;:55.05},{&quot;2026-06-23&quot;:55.05},{&quot;2026-06-24&quot;:54.49},{&quot;2026-06-25&quot;:54.01},{&quot;2026-06-26&quot;:54.01},{&quot;2026-06-27&quot;:53.69},{&quot;2026-06-28&quot;:53.59},{&quot;2026-06-29&quot;:53.17},{&quot;2026-06-30&quot;:53.17},{&quot;2026-07-01&quot;:52.93},{&quot;2026-07-02&quot;:52.19},{&quot;2026-07-03&quot;:52.15},{&quot;2026-07-04&quot;:51.42},{&quot;2026-07-05&quot;:50.14},{&quot;2026-07-06&quot;:49.93},{&quot;2026-07-07&quot;:49.72},{&quot;2026-07-08&quot;:49.59},{&quot;2026-07-09&quot;:47.75},{&quot;2026-07-10&quot;:47.63},{&quot;2026-07-11&quot;:47.66},{&quot;2026-07-12&quot;:47.63},{&quot;2026-07-13&quot;:49.12},{&quot;2026-07-14&quot;:49.83},{&quot;2026-07-15&quot;:50.54},{&quot;2026-07-16&quot;:50.54},{&quot;2026-07-17&quot;:50.54},{&quot;2026-07-18&quot;:50.54},{&quot;2026-07-19&quot;:50.54},{&quot;2026-07-20&quot;:50.54},{&quot;2026-07-21&quot;:50.54},{&quot;2026-07-22&quot;:50.88},{&quot;2026-07-23&quot;:51.99},{&quot;2026-07-24&quot;:51.99},{&quot;2026-07-25&quot;:53.23},{&quot;2026-07-26&quot;:53.23},{&quot;2026-07-27&quot;:53.23},{&quot;2026-07-28&quot;:53.27},{&quot;2026-07-29&quot;:53.99},{&quot;2026-07-30&quot;:55.71},{&quot;2026-07-31&quot;:56.07},{&quot;2026-08-01&quot;:56.06},{&quot;2026-08-02&quot;:56.29},{&quot;2026-08-03&quot;:56.29},{&quot;2026-08-04&quot;:56.29},{&quot;2026-08-05&quot;:55.84},{&quot;2026-08-07&quot;:55.33},{&quot;2026-08-08&quot;:55.33},{&quot;2026-08-09&quot;:55.33},{&quot;2026-08-10&quot;:55.33},{&quot;2026-08-11&quot;:55.33},{&quot;2026-08-12&quot;:55.0},{&quot;2026-08-13&quot;:56.38},{&quot;2026-08-14&quot;:55.86},{&quot;2026-08-15&quot;:55.98},{&quot;2026-08-16&quot;:55.98},{&quot;2026-08-17&quot;:55.98},{&quot;2026-08-18&quot;:54.64},{&quot;2026-08-19&quot;:54.08},{&quot;2026-08-20&quot;:54.09},{&quot;2026-08-21&quot;:54.2},{&quot;2026-08-22&quot;:53.48},{&quot;2026-08-23&quot;:52.06},{&quot;2026-08-24&quot;:52.48},{&quot;2026-08-25&quot;:51.86},{&quot;2026-08-26&quot;:51.86},{&quot;2026-08-27&quot;:52.12},{&quot;2026-08-28&quot;:52.12},{&quot;2026-08-29&quot;:52.12},{&quot;2026-08-30&quot;:52.4},{&quot;2026-08-31&quot;:51.88},{&quot;2026-09-01&quot;:51.62},{&quot;2026-09-02&quot;:51.62},{&quot;2026-09-03&quot;:51.62},{&quot;2026-09-04&quot;:51.62},{&quot;2026-09-05&quot;:51.59},{&quot;2026-09-06&quot;:51.74},{&quot;2026-09-07&quot;:51.71},{&quot;2026-09-08&quot;:51.71},{&quot;2026-09-09&quot;:52.37},{&quot;2026-09-10&quot;:52.33},{&quot;2026-09-11&quot;:52.33}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:47.46},{&quot;2026-06-14&quot;:46.08},{&quot;2026-06-15&quot;:45.89},{&quot;2026-06-16&quot;:47.89},{&quot;2026-06-17&quot;:49.85},{&quot;2026-06-18&quot;:50.85},{&quot;2026-06-19&quot;:48.66},{&quot;2026-06-20&quot;:49.02},{&quot;2026-06-21&quot;:48.53},{&quot;2026-06-22&quot;:45.8},{&quot;2026-06-23&quot;:46.7},{&quot;2026-06-24&quot;:48.38},{&quot;2026-06-25&quot;:48.36},{&quot;2026-06-26&quot;:48.58},{&quot;2026-06-27&quot;:47.29},{&quot;2026-06-28&quot;:47.58},{&quot;2026-06-29&quot;:47.16},{&quot;2026-06-30&quot;:47.87},{&quot;2026-07-01&quot;:47.54},{&quot;2026-07-02&quot;:47.77},{&quot;2026-07-03&quot;:47.48},{&quot;2026-07-04&quot;:47.04},{&quot;2026-07-05&quot;:47.55},{&quot;2026-07-06&quot;:47.08},{&quot;2026-07-07&quot;:47.42},{&quot;2026-07-08&quot;:48.8},{&quot;2026-07-09&quot;:48.66},{&quot;2026-07-10&quot;:48.74},{&quot;2026-07-11&quot;:48.49},{&quot;2026-07-12&quot;:48.57},{&quot;2026-07-13&quot;:50.41},{&quot;2026-07-14&quot;:50.91},{&quot;2026-07-15&quot;:50.89},{&quot;2026-07-16&quot;:50.15},{&quot;2026-07-17&quot;:50.61},{&quot;2026-07-18&quot;:49.7},{&quot;2026-07-19&quot;:49.29},{&quot;2026-07-20&quot;:51.01},{&quot;2026-07-21&quot;:50.64},{&quot;2026-07-22&quot;:49.83},{&quot;2026-07-23&quot;:49.81},{&quot;2026-07-24&quot;:53.19},{&quot;2026-07-25&quot;:53.16},{&quot;2026-07-26&quot;:51.95},{&quot;2026-07-27&quot;:53.61},{&quot;2026-07-28&quot;:51.72},{&quot;2026-07-29&quot;:50.16},{&quot;2026-07-30&quot;:51.53},{&quot;2026-07-31&quot;:52.01},{&quot;2026-08-01&quot;:52.96},{&quot;2026-08-02&quot;:52.8},{&quot;2026-08-03&quot;:52.43},{&quot;2026-08-04&quot;:50.68},{&quot;2026-08-05&quot;:49.44},{&quot;2026-08-07&quot;:49.26},{&quot;2026-08-08&quot;:49.85},{&quot;2026-08-09&quot;:49.57},{&quot;2026-08-10&quot;:50.17},{&quot;2026-08-11&quot;:50.15},{&quot;2026-08-12&quot;:50.16},{&quot;2026-08-13&quot;:50.18},{&quot;2026-08-14&quot;:50.1},{&quot;2026-08-15&quot;:48.63},{&quot;2026-08-16&quot;:48.06},{&quot;2026-08-17&quot;:48.84},{&quot;2026-08-18&quot;:50.24},{&quot;2026-08-19&quot;:50.1},{&quot;2026-08-20&quot;:49.62},{&quot;2026-08-21&quot;:47.89},{&quot;2026-08-22&quot;:48.02},{&quot;2026-08-23&quot;:48.17},{&quot;2026-08-24&quot;:49.07},{&quot;2026-08-25&quot;:48.86},{&quot;2026-08-26&quot;:49.61},{&quot;2026-08-27&quot;:51.79},{&quot;2026-08-28&quot;:51.08},{&quot;2026-08-29&quot;:51.08},{&quot;2026-08-30&quot;:49.79},{&quot;2026-08-31&quot;:50.3},{&quot;2026-09-01&quot;:51.0},{&quot;2026-09-02&quot;:50.51},{&quot;2026-09-03&quot;:49.98},{&quot;2026-09-04&quot;:49.92},{&quot;2026-09-05&quot;:50.08},{&quot;2026-09-06&quot;:50.25},{&quot;2026-09-07&quot;:50.59},{&quot;2026-09-08&quot;:52.86},{&quot;2026-09-09&quot;:53.84},{&quot;2026-09-10&quot;:53.57},{&quot;2026-09-11&quot;:51.28}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="46003"
  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">
            Etali, Primal Conqueror 
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $28.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="Etali, Primal Conqueror // Etali, Primal Sickness" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/5/95c14c4d-6c16-4826-8d93-d89ad04aee09.jpg?1783916997" />

        <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">
            Etali, Primal Conqueror 
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <div data-controller="card-flip" class="flex flex-col items-center">
          <div
            data-action="click->card-flip#flip"
            class="flip-container cursor-pointer w-full max-w-xs mx-auto"
          >
            <div data-card-flip-target="card" class="flip-card">
              <div class="flip-card-front">
                <img class="w-full h-auto rounded-2xl" alt="Etali, Primal Conqueror // Etali, Primal Sickness" src="https://cards.scryfall.io/large/front/9/5/95c14c4d-6c16-4826-8d93-d89ad04aee09.jpg?1783916997" />
              </div>

              <div class="flip-card-back">
                <img class="w-full h-auto rounded-2xl" alt="Etali, Primal Conqueror // Etali, Primal Sickness" src="https://cards.scryfall.io/large/back/9/5/95c14c4d-6c16-4826-8d93-d89ad04aee09.jpg?1783916997" />
              </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">
                $28.50
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:38.33},{&quot;2026-06-14&quot;:38.33},{&quot;2026-06-15&quot;:38.33},{&quot;2026-06-16&quot;:39.26},{&quot;2026-06-17&quot;:39.65},{&quot;2026-06-18&quot;:39.65},{&quot;2026-06-19&quot;:39.65},{&quot;2026-06-20&quot;:39.65},{&quot;2026-06-21&quot;:39.65},{&quot;2026-06-22&quot;:39.65},{&quot;2026-06-23&quot;:39.65},{&quot;2026-06-24&quot;:39.38},{&quot;2026-06-25&quot;:39.38},{&quot;2026-06-26&quot;:39.66},{&quot;2026-06-27&quot;:39.51},{&quot;2026-06-28&quot;:39.68},{&quot;2026-06-29&quot;:39.68},{&quot;2026-06-30&quot;:39.8},{&quot;2026-07-01&quot;:39.72},{&quot;2026-07-02&quot;:39.72},{&quot;2026-07-03&quot;:39.72},{&quot;2026-07-04&quot;:39.87},{&quot;2026-07-05&quot;:39.87},{&quot;2026-07-06&quot;:39.67},{&quot;2026-07-07&quot;:39.67},{&quot;2026-07-08&quot;:39.83},{&quot;2026-07-09&quot;:39.83},{&quot;2026-07-10&quot;:39.83},{&quot;2026-07-11&quot;:39.93},{&quot;2026-07-12&quot;:40.01},{&quot;2026-07-13&quot;:40.01},{&quot;2026-07-14&quot;:40.01},{&quot;2026-07-15&quot;:40.01},{&quot;2026-07-16&quot;:40.2},{&quot;2026-07-17&quot;:40.2},{&quot;2026-07-18&quot;:40.2},{&quot;2026-07-19&quot;:40.0},{&quot;2026-07-20&quot;:39.52},{&quot;2026-07-21&quot;:39.46},{&quot;2026-07-22&quot;:39.26},{&quot;2026-07-23&quot;:39.26},{&quot;2026-07-24&quot;:39.26},{&quot;2026-07-25&quot;:39.32},{&quot;2026-07-26&quot;:39.42},{&quot;2026-07-27&quot;:39.62},{&quot;2026-07-28&quot;:39.62},{&quot;2026-07-29&quot;:39.31},{&quot;2026-07-30&quot;:38.47},{&quot;2026-07-31&quot;:38.45},{&quot;2026-08-01&quot;:38.45},{&quot;2026-08-02&quot;:38.45},{&quot;2026-08-03&quot;:38.13},{&quot;2026-08-04&quot;:38.01},{&quot;2026-08-05&quot;:37.94},{&quot;2026-08-07&quot;:37.64},{&quot;2026-08-08&quot;:37.64},{&quot;2026-08-09&quot;:37.64},{&quot;2026-08-10&quot;:37.64},{&quot;2026-08-11&quot;:37.64},{&quot;2026-08-12&quot;:37.64},{&quot;2026-08-13&quot;:37.64},{&quot;2026-08-14&quot;:37.44},{&quot;2026-08-15&quot;:37.42},{&quot;2026-08-16&quot;:37.42},{&quot;2026-08-17&quot;:37.42},{&quot;2026-08-18&quot;:37.34},{&quot;2026-08-19&quot;:37.34},{&quot;2026-08-20&quot;:37.34},{&quot;2026-08-21&quot;:37.34},{&quot;2026-08-22&quot;:37.34},{&quot;2026-08-23&quot;:37.31},{&quot;2026-08-24&quot;:36.95},{&quot;2026-08-25&quot;:36.95},{&quot;2026-08-26&quot;:36.95},{&quot;2026-08-27&quot;:36.75},{&quot;2026-08-28&quot;:36.75},{&quot;2026-08-29&quot;:36.75},{&quot;2026-08-30&quot;:36.75},{&quot;2026-08-31&quot;:36.75},{&quot;2026-09-01&quot;:36.75},{&quot;2026-09-02&quot;:36.75},{&quot;2026-09-03&quot;:36.86},{&quot;2026-09-04&quot;:36.86},{&quot;2026-09-05&quot;:36.86},{&quot;2026-09-06&quot;:36.84},{&quot;2026-09-07&quot;:37.16},{&quot;2026-09-08&quot;:37.16},{&quot;2026-09-09&quot;:37.22},{&quot;2026-09-10&quot;:37.22},{&quot;2026-09-11&quot;:36.87}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:36.71},{&quot;2026-06-14&quot;:37.1},{&quot;2026-06-15&quot;:37.31},{&quot;2026-06-16&quot;:37.18},{&quot;2026-06-17&quot;:36.3},{&quot;2026-06-18&quot;:36.09},{&quot;2026-06-19&quot;:36.27},{&quot;2026-06-20&quot;:35.93},{&quot;2026-06-21&quot;:35.16},{&quot;2026-06-22&quot;:35.03},{&quot;2026-06-23&quot;:34.86},{&quot;2026-06-24&quot;:35.04},{&quot;2026-06-25&quot;:34.98},{&quot;2026-06-26&quot;:34.93},{&quot;2026-06-27&quot;:34.18},{&quot;2026-06-28&quot;:34.19},{&quot;2026-06-29&quot;:34.07},{&quot;2026-06-30&quot;:34.31},{&quot;2026-07-01&quot;:34.21},{&quot;2026-07-02&quot;:34.14},{&quot;2026-07-03&quot;:34.16},{&quot;2026-07-04&quot;:33.99},{&quot;2026-07-05&quot;:34.13},{&quot;2026-07-06&quot;:33.97},{&quot;2026-07-07&quot;:33.71},{&quot;2026-07-08&quot;:33.69},{&quot;2026-07-09&quot;:33.72},{&quot;2026-07-10&quot;:33.7},{&quot;2026-07-11&quot;:33.42},{&quot;2026-07-12&quot;:33.38},{&quot;2026-07-13&quot;:33.39},{&quot;2026-07-14&quot;:33.41},{&quot;2026-07-15&quot;:33.52},{&quot;2026-07-16&quot;:33.28},{&quot;2026-07-17&quot;:33.36},{&quot;2026-07-18&quot;:33.5},{&quot;2026-07-19&quot;:33.55},{&quot;2026-07-20&quot;:33.6},{&quot;2026-07-21&quot;:33.59},{&quot;2026-07-22&quot;:33.59},{&quot;2026-07-23&quot;:33.69},{&quot;2026-07-24&quot;:33.65},{&quot;2026-07-25&quot;:33.53},{&quot;2026-07-26&quot;:33.29},{&quot;2026-07-27&quot;:33.19},{&quot;2026-07-28&quot;:33.04},{&quot;2026-07-29&quot;:33.03},{&quot;2026-07-30&quot;:32.94},{&quot;2026-07-31&quot;:32.88},{&quot;2026-08-01&quot;:32.75},{&quot;2026-08-02&quot;:32.79},{&quot;2026-08-03&quot;:32.58},{&quot;2026-08-04&quot;:32.64},{&quot;2026-08-05&quot;:32.84},{&quot;2026-08-07&quot;:32.73},{&quot;2026-08-08&quot;:32.77},{&quot;2026-08-09&quot;:32.69},{&quot;2026-08-10&quot;:32.74},{&quot;2026-08-11&quot;:32.41},{&quot;2026-08-12&quot;:32.8},{&quot;2026-08-13&quot;:34.56},{&quot;2026-08-14&quot;:34.89},{&quot;2026-08-15&quot;:35.0},{&quot;2026-08-16&quot;:35.2},{&quot;2026-08-17&quot;:35.31},{&quot;2026-08-18&quot;:34.27},{&quot;2026-08-19&quot;:34.04},{&quot;2026-08-20&quot;:34.11},{&quot;2026-08-21&quot;:34.11},{&quot;2026-08-22&quot;:33.91},{&quot;2026-08-23&quot;:33.84},{&quot;2026-08-24&quot;:33.84},{&quot;2026-08-25&quot;:33.84},{&quot;2026-08-26&quot;:33.42},{&quot;2026-08-27&quot;:33.42},{&quot;2026-08-28&quot;:33.42},{&quot;2026-08-29&quot;:33.42},{&quot;2026-08-30&quot;:33.15},{&quot;2026-08-31&quot;:32.74},{&quot;2026-09-01&quot;:32.62},{&quot;2026-09-02&quot;:31.79},{&quot;2026-09-03&quot;:31.75},{&quot;2026-09-04&quot;:30.84},{&quot;2026-09-05&quot;:31.14},{&quot;2026-09-06&quot;:31.14},{&quot;2026-09-07&quot;:30.67},{&quot;2026-09-08&quot;:30.2},{&quot;2026-09-09&quot;:29.79},{&quot;2026-09-10&quot;:29.79},{&quot;2026-09-11&quot;:28.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="18486"
  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-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">
            Sylvan Library
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Sylvan Library
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-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="Sylvan Library" src="https://cards.scryfall.io/large/front/6/a/6ada256f-2e55-4c1f-b4d3-d7b10b498956.jpg?1783918436" />
    </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">
                $27.79
              </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">
                $28.17
              </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">$19.00</span>
              <span class="text-xs text-grey-text">Credit: $24.70</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-12&quot;:26.78},{&quot;2026-06-13&quot;:26.78},{&quot;2026-06-14&quot;:26.78},{&quot;2026-06-15&quot;:26.78},{&quot;2026-06-16&quot;:26.78},{&quot;2026-06-17&quot;:26.78},{&quot;2026-06-18&quot;:26.78},{&quot;2026-06-19&quot;:26.78},{&quot;2026-06-20&quot;:26.78},{&quot;2026-06-21&quot;:26.78},{&quot;2026-06-22&quot;:26.78},{&quot;2026-06-23&quot;:26.83},{&quot;2026-06-24&quot;:26.83},{&quot;2026-06-25&quot;:26.83},{&quot;2026-06-26&quot;:27.32},{&quot;2026-06-27&quot;:27.32},{&quot;2026-06-28&quot;:27.32},{&quot;2026-06-29&quot;:27.32},{&quot;2026-06-30&quot;:27.32},{&quot;2026-07-01&quot;:27.36},{&quot;2026-07-02&quot;:27.36},{&quot;2026-07-03&quot;:27.36},{&quot;2026-07-04&quot;:27.32},{&quot;2026-07-05&quot;:27.32},{&quot;2026-07-06&quot;:27.14},{&quot;2026-07-07&quot;:27.15},{&quot;2026-07-08&quot;:27.62},{&quot;2026-07-09&quot;:27.62},{&quot;2026-07-10&quot;:28.04},{&quot;2026-07-11&quot;:27.94},{&quot;2026-07-12&quot;:27.94},{&quot;2026-07-13&quot;:27.94},{&quot;2026-07-14&quot;:27.94},{&quot;2026-07-15&quot;:27.94},{&quot;2026-07-16&quot;:27.94},{&quot;2026-07-17&quot;:27.94},{&quot;2026-07-18&quot;:27.94},{&quot;2026-07-19&quot;:27.94},{&quot;2026-07-20&quot;:27.94},{&quot;2026-07-21&quot;:27.94},{&quot;2026-07-23&quot;:27.94},{&quot;2026-07-24&quot;:27.94},{&quot;2026-07-25&quot;:27.94},{&quot;2026-07-26&quot;:27.94},{&quot;2026-07-27&quot;:27.94},{&quot;2026-07-28&quot;:27.94},{&quot;2026-07-29&quot;:27.94},{&quot;2026-07-30&quot;:27.94},{&quot;2026-07-31&quot;:27.94},{&quot;2026-08-01&quot;:27.94},{&quot;2026-08-02&quot;:27.92},{&quot;2026-08-03&quot;:28.09},{&quot;2026-08-04&quot;:28.09},{&quot;2026-08-05&quot;:28.05},{&quot;2026-08-07&quot;:28.04},{&quot;2026-08-08&quot;:28.04},{&quot;2026-08-09&quot;:28.08},{&quot;2026-08-10&quot;:28.08},{&quot;2026-08-11&quot;:28.12},{&quot;2026-08-12&quot;:28.12},{&quot;2026-08-13&quot;:28.17},{&quot;2026-08-14&quot;:28.17},{&quot;2026-08-15&quot;:28.17},{&quot;2026-08-16&quot;:28.18},{&quot;2026-08-17&quot;:28.26},{&quot;2026-08-18&quot;:28.26},{&quot;2026-08-19&quot;:28.26},{&quot;2026-08-20&quot;:28.26},{&quot;2026-08-21&quot;:28.35},{&quot;2026-08-22&quot;:28.35},{&quot;2026-08-23&quot;:28.31},{&quot;2026-08-24&quot;:28.31},{&quot;2026-08-25&quot;:28.31},{&quot;2026-08-26&quot;:28.22},{&quot;2026-08-27&quot;:28.22},{&quot;2026-08-28&quot;:28.22},{&quot;2026-08-29&quot;:28.22},{&quot;2026-08-30&quot;:27.6},{&quot;2026-08-31&quot;:27.6},{&quot;2026-09-01&quot;:27.57},{&quot;2026-09-02&quot;:27.84},{&quot;2026-09-03&quot;:27.84},{&quot;2026-09-04&quot;:27.84},{&quot;2026-09-05&quot;:27.84},{&quot;2026-09-06&quot;:28.17},{&quot;2026-09-07&quot;:28.17},{&quot;2026-09-08&quot;:28.17},{&quot;2026-09-09&quot;:28.17},{&quot;2026-09-10&quot;:28.17},{&quot;2026-09-11&quot;:28.17}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:29.22},{&quot;2026-06-13&quot;:29.45},{&quot;2026-06-14&quot;:29.45},{&quot;2026-06-15&quot;:29.25},{&quot;2026-06-16&quot;:29.25},{&quot;2026-06-17&quot;:29.73},{&quot;2026-06-18&quot;:29.73},{&quot;2026-06-19&quot;:29.02},{&quot;2026-06-20&quot;:29.02},{&quot;2026-06-21&quot;:29.6},{&quot;2026-06-22&quot;:29.6},{&quot;2026-06-23&quot;:29.6},{&quot;2026-06-24&quot;:29.6},{&quot;2026-06-25&quot;:29.69},{&quot;2026-06-26&quot;:29.69},{&quot;2026-06-27&quot;:29.69},{&quot;2026-06-28&quot;:29.69},{&quot;2026-06-29&quot;:29.69},{&quot;2026-06-30&quot;:29.69},{&quot;2026-07-01&quot;:29.69},{&quot;2026-07-02&quot;:29.37},{&quot;2026-07-03&quot;:29.24},{&quot;2026-07-04&quot;:29.53},{&quot;2026-07-05&quot;:29.53},{&quot;2026-07-06&quot;:29.53},{&quot;2026-07-07&quot;:29.64},{&quot;2026-07-08&quot;:29.64},{&quot;2026-07-09&quot;:29.68},{&quot;2026-07-10&quot;:29.68},{&quot;2026-07-11&quot;:29.69},{&quot;2026-07-12&quot;:29.69},{&quot;2026-07-13&quot;:29.73},{&quot;2026-07-14&quot;:29.16},{&quot;2026-07-15&quot;:29.4},{&quot;2026-07-16&quot;:29.31},{&quot;2026-07-17&quot;:29.31},{&quot;2026-07-18&quot;:29.31},{&quot;2026-07-19&quot;:29.31},{&quot;2026-07-20&quot;:29.31},{&quot;2026-07-21&quot;:29.48},{&quot;2026-07-23&quot;:28.61},{&quot;2026-07-24&quot;:28.61},{&quot;2026-07-25&quot;:28.61},{&quot;2026-07-26&quot;:28.61},{&quot;2026-07-27&quot;:28.18},{&quot;2026-07-28&quot;:27.63},{&quot;2026-07-29&quot;:27.92},{&quot;2026-07-30&quot;:27.61},{&quot;2026-07-31&quot;:27.61},{&quot;2026-08-01&quot;:27.61},{&quot;2026-08-02&quot;:27.53},{&quot;2026-08-03&quot;:27.53},{&quot;2026-08-04&quot;:27.44},{&quot;2026-08-05&quot;:27.11},{&quot;2026-08-07&quot;:26.59},{&quot;2026-08-08&quot;:26.59},{&quot;2026-08-09&quot;:26.48},{&quot;2026-08-10&quot;:26.43},{&quot;2026-08-11&quot;:26.59},{&quot;2026-08-12&quot;:26.81},{&quot;2026-08-13&quot;:26.58},{&quot;2026-08-14&quot;:26.58},{&quot;2026-08-15&quot;:26.34},{&quot;2026-08-16&quot;:26.09},{&quot;2026-08-17&quot;:25.86},{&quot;2026-08-18&quot;:25.86},{&quot;2026-08-19&quot;:25.89},{&quot;2026-08-20&quot;:25.89},{&quot;2026-08-21&quot;:26.07},{&quot;2026-08-22&quot;:26.07},{&quot;2026-08-23&quot;:26.02},{&quot;2026-08-24&quot;:26.02},{&quot;2026-08-25&quot;:26.02},{&quot;2026-08-26&quot;:25.92},{&quot;2026-08-27&quot;:25.92},{&quot;2026-08-28&quot;:25.92},{&quot;2026-08-29&quot;:25.92},{&quot;2026-08-30&quot;:25.85},{&quot;2026-08-31&quot;:26.24},{&quot;2026-09-01&quot;:26.35},{&quot;2026-09-02&quot;:26.35},{&quot;2026-09-03&quot;:26.35},{&quot;2026-09-04&quot;:26.35},{&quot;2026-09-05&quot;:26.35},{&quot;2026-09-06&quot;:26.55},{&quot;2026-09-07&quot;:26.48},{&quot;2026-09-08&quot;:27.9},{&quot;2026-09-09&quot;:27.9},{&quot;2026-09-10&quot;:27.9},{&quot;2026-09-11&quot;:27.79}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            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">
            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">
            $21.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="Forest // Forest" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/e/7e703632-5ed0-4509-a12b-594269f865f1.jpg?1783913635" />

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

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            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"
    >
        <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="Forest // Forest" src="https://cards.scryfall.io/large/front/7/e/7e703632-5ed0-4509-a12b-594269f865f1.jpg?1783913635" />
              </div>

              <div class="flip-card-back">
                <img class="w-full h-auto rounded-2xl" alt="Forest // Forest" src="https://cards.scryfall.io/large/back/7/e/7e703632-5ed0-4509-a12b-594269f865f1.jpg?1783913635" />
              </div>
            </div>
          </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Foil</span>
              <span class="text-lg font-medium text-nine-white">$9.20</span>
              <span class="text-xs text-grey-text">Credit: $11.96</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;:20.21},{&quot;2026-06-11&quot;:20.21},{&quot;2026-06-12&quot;:20.21},{&quot;2026-06-13&quot;:20.21},{&quot;2026-06-14&quot;:20.21},{&quot;2026-06-15&quot;:20.28},{&quot;2026-06-16&quot;:20.47},{&quot;2026-06-17&quot;:20.29},{&quot;2026-06-18&quot;:20.38},{&quot;2026-06-19&quot;:20.38},{&quot;2026-06-20&quot;:20.38},{&quot;2026-06-21&quot;:20.38},{&quot;2026-06-22&quot;:20.2},{&quot;2026-06-23&quot;:20.2},{&quot;2026-06-24&quot;:20.2},{&quot;2026-06-25&quot;:20.2},{&quot;2026-06-26&quot;:19.28},{&quot;2026-06-27&quot;:19.28},{&quot;2026-06-28&quot;:19.3},{&quot;2026-06-29&quot;:19.47},{&quot;2026-06-30&quot;:19.47},{&quot;2026-07-01&quot;:19.47},{&quot;2026-07-02&quot;:19.47},{&quot;2026-07-03&quot;:19.47},{&quot;2026-07-04&quot;:19.47},{&quot;2026-07-05&quot;:19.47},{&quot;2026-07-06&quot;:19.47},{&quot;2026-07-07&quot;:19.77},{&quot;2026-07-08&quot;:19.8},{&quot;2026-07-09&quot;:19.8},{&quot;2026-07-10&quot;:20.0},{&quot;2026-07-11&quot;:20.14},{&quot;2026-07-12&quot;:19.92},{&quot;2026-07-13&quot;:19.92},{&quot;2026-07-14&quot;:20.52},{&quot;2026-07-15&quot;:20.64},{&quot;2026-07-16&quot;:20.64},{&quot;2026-07-17&quot;:20.64},{&quot;2026-07-18&quot;:20.61},{&quot;2026-07-19&quot;:20.61},{&quot;2026-07-20&quot;:20.61},{&quot;2026-07-21&quot;:20.84},{&quot;2026-07-23&quot;:20.84},{&quot;2026-07-25&quot;:20.56},{&quot;2026-07-26&quot;:20.56},{&quot;2026-07-27&quot;:20.87},{&quot;2026-07-29&quot;:20.79},{&quot;2026-07-30&quot;:20.79},{&quot;2026-07-31&quot;:20.79},{&quot;2026-08-01&quot;:21.12},{&quot;2026-08-02&quot;:21.12},{&quot;2026-08-03&quot;:21.29},{&quot;2026-08-04&quot;:21.29},{&quot;2026-08-05&quot;:21.29},{&quot;2026-08-07&quot;:21.29},{&quot;2026-08-08&quot;:21.29},{&quot;2026-08-09&quot;:21.29},{&quot;2026-08-10&quot;:21.29},{&quot;2026-08-11&quot;:21.29},{&quot;2026-08-12&quot;:21.78},{&quot;2026-08-13&quot;:21.78},{&quot;2026-08-14&quot;:21.78},{&quot;2026-08-15&quot;:21.78},{&quot;2026-08-16&quot;:21.93},{&quot;2026-08-17&quot;:21.93},{&quot;2026-08-18&quot;:21.93},{&quot;2026-08-19&quot;:21.93},{&quot;2026-08-20&quot;:21.93},{&quot;2026-08-21&quot;:22.27},{&quot;2026-08-22&quot;:22.27},{&quot;2026-08-23&quot;:22.27},{&quot;2026-08-24&quot;:22.34},{&quot;2026-08-25&quot;:22.34},{&quot;2026-08-26&quot;:22.34},{&quot;2026-08-27&quot;:22.34},{&quot;2026-08-28&quot;:22.34},{&quot;2026-08-29&quot;:22.34},{&quot;2026-08-30&quot;:22.34},{&quot;2026-08-31&quot;:22.19},{&quot;2026-09-01&quot;:22.19},{&quot;2026-09-02&quot;:22.21},{&quot;2026-09-03&quot;:22.21},{&quot;2026-09-04&quot;:22.21},{&quot;2026-09-05&quot;:22.21},{&quot;2026-09-06&quot;:22.21},{&quot;2026-09-07&quot;:22.21},{&quot;2026-09-08&quot;:22.21},{&quot;2026-09-09&quot;:22.09},{&quot;2026-09-10&quot;:22.09},{&quot;2026-09-11&quot;:21.98}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:8.06},{&quot;2026-06-11&quot;:8.06},{&quot;2026-06-12&quot;:7.91},{&quot;2026-06-13&quot;:7.89},{&quot;2026-06-14&quot;:7.89},{&quot;2026-06-15&quot;:7.88},{&quot;2026-06-16&quot;:7.88},{&quot;2026-06-17&quot;:7.99},{&quot;2026-06-18&quot;:7.99},{&quot;2026-06-19&quot;:7.98},{&quot;2026-06-20&quot;:8.0},{&quot;2026-06-21&quot;:8.01},{&quot;2026-06-22&quot;:8.01},{&quot;2026-06-23&quot;:7.96},{&quot;2026-06-24&quot;:7.91},{&quot;2026-06-25&quot;:7.91},{&quot;2026-06-26&quot;:7.94},{&quot;2026-06-27&quot;:7.94},{&quot;2026-06-28&quot;:7.94},{&quot;2026-06-29&quot;:7.93},{&quot;2026-06-30&quot;:7.93},{&quot;2026-07-01&quot;:7.93},{&quot;2026-07-02&quot;:7.86},{&quot;2026-07-03&quot;:7.83},{&quot;2026-07-04&quot;:7.86},{&quot;2026-07-05&quot;:7.98},{&quot;2026-07-06&quot;:8.21},{&quot;2026-07-07&quot;:8.3},{&quot;2026-07-08&quot;:8.29},{&quot;2026-07-09&quot;:8.4},{&quot;2026-07-10&quot;:8.29},{&quot;2026-07-11&quot;:8.22},{&quot;2026-07-12&quot;:8.23},{&quot;2026-07-13&quot;:8.26},{&quot;2026-07-14&quot;:8.08},{&quot;2026-07-15&quot;:8.07},{&quot;2026-07-16&quot;:8.09},{&quot;2026-07-17&quot;:8.14},{&quot;2026-07-18&quot;:8.27},{&quot;2026-07-19&quot;:8.35},{&quot;2026-07-20&quot;:8.38},{&quot;2026-07-21&quot;:8.33},{&quot;2026-07-23&quot;:8.41},{&quot;2026-07-25&quot;:8.5},{&quot;2026-07-26&quot;:8.64},{&quot;2026-07-27&quot;:8.64},{&quot;2026-07-29&quot;:8.64},{&quot;2026-07-30&quot;:8.57},{&quot;2026-07-31&quot;:8.34},{&quot;2026-08-01&quot;:8.37},{&quot;2026-08-02&quot;:8.38},{&quot;2026-08-03&quot;:8.45},{&quot;2026-08-04&quot;:8.49},{&quot;2026-08-05&quot;:8.45},{&quot;2026-08-07&quot;:8.54},{&quot;2026-08-08&quot;:8.51},{&quot;2026-08-09&quot;:8.51},{&quot;2026-08-10&quot;:8.69},{&quot;2026-08-11&quot;:8.73},{&quot;2026-08-12&quot;:8.73},{&quot;2026-08-13&quot;:8.72},{&quot;2026-08-14&quot;:8.68},{&quot;2026-08-15&quot;:8.64},{&quot;2026-08-16&quot;:8.66},{&quot;2026-08-17&quot;:8.66},{&quot;2026-08-18&quot;:8.71},{&quot;2026-08-19&quot;:8.71},{&quot;2026-08-20&quot;:8.71},{&quot;2026-08-21&quot;:8.71},{&quot;2026-08-22&quot;:8.71},{&quot;2026-08-23&quot;:8.76},{&quot;2026-08-24&quot;:8.76},{&quot;2026-08-25&quot;:8.76},{&quot;2026-08-26&quot;:8.93},{&quot;2026-08-27&quot;:8.94},{&quot;2026-08-28&quot;:8.95},{&quot;2026-08-29&quot;:8.95},{&quot;2026-08-30&quot;:8.94},{&quot;2026-08-31&quot;:8.94},{&quot;2026-09-01&quot;:8.94},{&quot;2026-09-02&quot;:8.71},{&quot;2026-09-03&quot;:8.5},{&quot;2026-09-04&quot;:8.37},{&quot;2026-09-05&quot;:8.26},{&quot;2026-09-06&quot;:8.47},{&quot;2026-09-07&quot;:8.47},{&quot;2026-09-08&quot;:8.59},{&quot;2026-09-09&quot;:8.59},{&quot;2026-09-10&quot;:8.75},{&quot;2026-09-11&quot;:9.0}]}"
        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="68927"
  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">
            Jetmir&#39;s Garden
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Jetmir&#39;s Garden" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/6/26d40e03-6de4-4373-9fbf-04c1dd79e995.jpg?1783923058" />

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

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Land — Mountain Forest 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="Jetmir&#39;s Garden" src="https://cards.scryfall.io/large/front/2/6/26d40e03-6de4-4373-9fbf-04c1dd79e995.jpg?1783923058" />
    </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.61
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:17.53},{&quot;2026-06-14&quot;:17.53},{&quot;2026-06-15&quot;:17.53},{&quot;2026-06-16&quot;:17.75},{&quot;2026-06-17&quot;:17.72},{&quot;2026-06-18&quot;:17.72},{&quot;2026-06-19&quot;:17.72},{&quot;2026-06-20&quot;:17.72},{&quot;2026-06-21&quot;:17.72},{&quot;2026-06-22&quot;:17.67},{&quot;2026-06-23&quot;:17.67},{&quot;2026-06-24&quot;:17.67},{&quot;2026-06-25&quot;:17.88},{&quot;2026-06-26&quot;:17.88},{&quot;2026-06-27&quot;:17.86},{&quot;2026-06-28&quot;:18.38},{&quot;2026-06-29&quot;:18.38},{&quot;2026-06-30&quot;:18.44},{&quot;2026-07-01&quot;:18.44},{&quot;2026-07-02&quot;:18.69},{&quot;2026-07-03&quot;:18.69},{&quot;2026-07-04&quot;:18.62},{&quot;2026-07-05&quot;:18.64},{&quot;2026-07-06&quot;:18.64},{&quot;2026-07-07&quot;:18.58},{&quot;2026-07-08&quot;:18.58},{&quot;2026-07-09&quot;:18.58},{&quot;2026-07-10&quot;:18.61},{&quot;2026-07-11&quot;:18.74},{&quot;2026-07-12&quot;:18.74},{&quot;2026-07-13&quot;:18.74},{&quot;2026-07-14&quot;:18.74},{&quot;2026-07-15&quot;:18.91},{&quot;2026-07-16&quot;:18.91},{&quot;2026-07-17&quot;:18.89},{&quot;2026-07-18&quot;:18.91},{&quot;2026-07-19&quot;:18.91},{&quot;2026-07-20&quot;:18.91},{&quot;2026-07-21&quot;:18.91},{&quot;2026-07-22&quot;:18.91},{&quot;2026-07-23&quot;:18.91},{&quot;2026-07-24&quot;:18.91},{&quot;2026-07-25&quot;:18.81},{&quot;2026-07-26&quot;:18.87},{&quot;2026-07-27&quot;:18.97},{&quot;2026-07-28&quot;:18.97},{&quot;2026-07-29&quot;:18.97},{&quot;2026-07-30&quot;:18.97},{&quot;2026-07-31&quot;:18.83},{&quot;2026-08-01&quot;:18.83},{&quot;2026-08-02&quot;:18.83},{&quot;2026-08-03&quot;:18.58},{&quot;2026-08-04&quot;:18.73},{&quot;2026-08-05&quot;:18.73},{&quot;2026-08-07&quot;:18.73},{&quot;2026-08-08&quot;:18.73},{&quot;2026-08-09&quot;:18.87},{&quot;2026-08-10&quot;:18.87},{&quot;2026-08-11&quot;:18.87},{&quot;2026-08-12&quot;:18.87},{&quot;2026-08-13&quot;:18.87},{&quot;2026-08-14&quot;:18.87},{&quot;2026-08-15&quot;:18.87},{&quot;2026-08-16&quot;:18.87},{&quot;2026-08-17&quot;:18.78},{&quot;2026-08-18&quot;:18.7},{&quot;2026-08-19&quot;:18.7},{&quot;2026-08-20&quot;:18.7},{&quot;2026-08-21&quot;:18.7},{&quot;2026-08-22&quot;:18.7},{&quot;2026-08-23&quot;:18.7},{&quot;2026-08-24&quot;:18.7},{&quot;2026-08-25&quot;:18.7},{&quot;2026-08-26&quot;:18.7},{&quot;2026-08-27&quot;:18.29},{&quot;2026-08-28&quot;:18.3},{&quot;2026-08-29&quot;:18.3},{&quot;2026-08-30&quot;:18.3},{&quot;2026-08-31&quot;:18.3},{&quot;2026-09-01&quot;:18.3},{&quot;2026-09-02&quot;:18.3},{&quot;2026-09-03&quot;:18.12},{&quot;2026-09-04&quot;:18.12},{&quot;2026-09-05&quot;:18.12},{&quot;2026-09-06&quot;:18.12},{&quot;2026-09-07&quot;:18.12},{&quot;2026-09-08&quot;:18.07},{&quot;2026-09-09&quot;:18.07},{&quot;2026-09-10&quot;:18.07},{&quot;2026-09-11&quot;:18.07}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:16.99},{&quot;2026-06-14&quot;:16.99},{&quot;2026-06-15&quot;:16.99},{&quot;2026-06-16&quot;:17.04},{&quot;2026-06-17&quot;:17.14},{&quot;2026-06-18&quot;:17.27},{&quot;2026-06-19&quot;:17.48},{&quot;2026-06-20&quot;:17.41},{&quot;2026-06-21&quot;:17.53},{&quot;2026-06-22&quot;:17.57},{&quot;2026-06-23&quot;:17.68},{&quot;2026-06-24&quot;:17.92},{&quot;2026-06-25&quot;:17.86},{&quot;2026-06-26&quot;:17.82},{&quot;2026-06-27&quot;:17.63},{&quot;2026-06-28&quot;:17.41},{&quot;2026-06-29&quot;:17.31},{&quot;2026-06-30&quot;:17.36},{&quot;2026-07-01&quot;:17.35},{&quot;2026-07-02&quot;:17.47},{&quot;2026-07-03&quot;:17.68},{&quot;2026-07-04&quot;:17.72},{&quot;2026-07-05&quot;:17.52},{&quot;2026-07-06&quot;:17.79},{&quot;2026-07-07&quot;:17.38},{&quot;2026-07-08&quot;:17.0},{&quot;2026-07-09&quot;:16.65},{&quot;2026-07-10&quot;:16.4},{&quot;2026-07-11&quot;:16.19},{&quot;2026-07-12&quot;:16.08},{&quot;2026-07-13&quot;:16.88},{&quot;2026-07-14&quot;:17.25},{&quot;2026-07-15&quot;:17.35},{&quot;2026-07-16&quot;:17.23},{&quot;2026-07-17&quot;:17.21},{&quot;2026-07-18&quot;:17.2},{&quot;2026-07-19&quot;:17.24},{&quot;2026-07-20&quot;:17.3},{&quot;2026-07-21&quot;:17.37},{&quot;2026-07-22&quot;:17.23},{&quot;2026-07-23&quot;:17.2},{&quot;2026-07-24&quot;:17.46},{&quot;2026-07-25&quot;:17.44},{&quot;2026-07-26&quot;:17.66},{&quot;2026-07-27&quot;:17.64},{&quot;2026-07-28&quot;:17.41},{&quot;2026-07-29&quot;:17.41},{&quot;2026-07-30&quot;:17.41},{&quot;2026-07-31&quot;:17.33},{&quot;2026-08-01&quot;:17.29},{&quot;2026-08-02&quot;:16.98},{&quot;2026-08-03&quot;:16.86},{&quot;2026-08-04&quot;:16.76},{&quot;2026-08-05&quot;:16.54},{&quot;2026-08-07&quot;:16.2},{&quot;2026-08-08&quot;:16.36},{&quot;2026-08-09&quot;:16.58},{&quot;2026-08-10&quot;:16.48},{&quot;2026-08-11&quot;:16.26},{&quot;2026-08-12&quot;:16.26},{&quot;2026-08-13&quot;:16.21},{&quot;2026-08-14&quot;:16.33},{&quot;2026-08-15&quot;:15.98},{&quot;2026-08-16&quot;:16.02},{&quot;2026-08-17&quot;:16.11},{&quot;2026-08-18&quot;:16.1},{&quot;2026-08-19&quot;:16.14},{&quot;2026-08-20&quot;:15.79},{&quot;2026-08-21&quot;:15.92},{&quot;2026-08-22&quot;:16.21},{&quot;2026-08-23&quot;:16.27},{&quot;2026-08-24&quot;:16.63},{&quot;2026-08-25&quot;:16.63},{&quot;2026-08-26&quot;:16.87},{&quot;2026-08-27&quot;:17.08},{&quot;2026-08-28&quot;:16.87},{&quot;2026-08-29&quot;:16.87},{&quot;2026-08-30&quot;:16.94},{&quot;2026-08-31&quot;:16.6},{&quot;2026-09-01&quot;:16.71},{&quot;2026-09-02&quot;:16.69},{&quot;2026-09-03&quot;:16.85},{&quot;2026-09-04&quot;:17.42},{&quot;2026-09-05&quot;:17.35},{&quot;2026-09-06&quot;:17.35},{&quot;2026-09-07&quot;:17.7},{&quot;2026-09-08&quot;:17.59},{&quot;2026-09-09&quot;:17.67},{&quot;2026-09-10&quot;:17.67},{&quot;2026-09-11&quot;:17.61}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $16.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="Akroma&#39;s Will" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/6/0/608cdbdb-6f7e-438a-bab0-0e7782435f0f.jpg?1783913897" />

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Akroma&#39;s Will" src="https://cards.scryfall.io/large/front/6/0/608cdbdb-6f7e-438a-bab0-0e7782435f0f.jpg?1783913897" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:16.61},{&quot;2026-06-14&quot;:16.54},{&quot;2026-06-15&quot;:15.93},{&quot;2026-06-16&quot;:14.66},{&quot;2026-06-17&quot;:12.95},{&quot;2026-06-18&quot;:12.1},{&quot;2026-06-19&quot;:13.29},{&quot;2026-06-20&quot;:13.1},{&quot;2026-06-21&quot;:13.61},{&quot;2026-06-22&quot;:13.68},{&quot;2026-06-23&quot;:13.56},{&quot;2026-06-24&quot;:13.6},{&quot;2026-06-25&quot;:13.88},{&quot;2026-06-26&quot;:14.15},{&quot;2026-06-27&quot;:13.88},{&quot;2026-06-28&quot;:13.52},{&quot;2026-06-29&quot;:13.62},{&quot;2026-06-30&quot;:13.9},{&quot;2026-07-01&quot;:14.19},{&quot;2026-07-02&quot;:14.38},{&quot;2026-07-03&quot;:14.49},{&quot;2026-07-04&quot;:14.66},{&quot;2026-07-05&quot;:14.84},{&quot;2026-07-06&quot;:14.82},{&quot;2026-07-07&quot;:14.7},{&quot;2026-07-08&quot;:14.2},{&quot;2026-07-09&quot;:14.1},{&quot;2026-07-10&quot;:14.06},{&quot;2026-07-11&quot;:13.9},{&quot;2026-07-12&quot;:14.05},{&quot;2026-07-13&quot;:14.19},{&quot;2026-07-14&quot;:14.17},{&quot;2026-07-15&quot;:14.22},{&quot;2026-07-16&quot;:14.19},{&quot;2026-07-17&quot;:14.09},{&quot;2026-07-18&quot;:14.04},{&quot;2026-07-19&quot;:14.21},{&quot;2026-07-20&quot;:14.59},{&quot;2026-07-21&quot;:14.69},{&quot;2026-07-22&quot;:14.73},{&quot;2026-07-23&quot;:14.98},{&quot;2026-07-24&quot;:14.94},{&quot;2026-07-25&quot;:14.92},{&quot;2026-07-26&quot;:14.92},{&quot;2026-07-27&quot;:15.11},{&quot;2026-07-28&quot;:15.38},{&quot;2026-07-29&quot;:15.32},{&quot;2026-07-30&quot;:15.32},{&quot;2026-07-31&quot;:15.11},{&quot;2026-08-01&quot;:15.11},{&quot;2026-08-02&quot;:14.99},{&quot;2026-08-03&quot;:15.4},{&quot;2026-08-04&quot;:15.0},{&quot;2026-08-05&quot;:14.95},{&quot;2026-08-07&quot;:14.22},{&quot;2026-08-08&quot;:14.15},{&quot;2026-08-09&quot;:14.41},{&quot;2026-08-10&quot;:14.71},{&quot;2026-08-11&quot;:14.9},{&quot;2026-08-12&quot;:15.4},{&quot;2026-08-13&quot;:15.4},{&quot;2026-08-14&quot;:15.38},{&quot;2026-08-15&quot;:15.25},{&quot;2026-08-16&quot;:15.37},{&quot;2026-08-17&quot;:15.23},{&quot;2026-08-18&quot;:15.02},{&quot;2026-08-19&quot;:15.22},{&quot;2026-08-20&quot;:15.04},{&quot;2026-08-21&quot;:14.94},{&quot;2026-08-22&quot;:15.07},{&quot;2026-08-23&quot;:15.53},{&quot;2026-08-24&quot;:15.88},{&quot;2026-08-25&quot;:15.83},{&quot;2026-08-26&quot;:15.82},{&quot;2026-08-27&quot;:15.98},{&quot;2026-08-28&quot;:15.92},{&quot;2026-08-29&quot;:15.92},{&quot;2026-08-30&quot;:14.75},{&quot;2026-08-31&quot;:14.62},{&quot;2026-09-01&quot;:14.34},{&quot;2026-09-02&quot;:14.24},{&quot;2026-09-03&quot;:15.21},{&quot;2026-09-04&quot;:15.41},{&quot;2026-09-05&quot;:16.04},{&quot;2026-09-06&quot;:15.89},{&quot;2026-09-07&quot;:16.33},{&quot;2026-09-08&quot;:16.7},{&quot;2026-09-09&quot;:16.68},{&quot;2026-09-10&quot;:16.79},{&quot;2026-09-11&quot;:16.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="20941"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2xm ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

        <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">
            Wooded Bastion
        </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="Wooded Bastion" src="https://cards.scryfall.io/large/front/3/6/36b591ec-0231-4b91-a132-eb3aedfdf8fa.jpg?1783930080" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $16.29
              </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">
                $16.88
              </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">$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-11&quot;:16.12},{&quot;2026-06-12&quot;:16.12},{&quot;2026-06-13&quot;:16.16},{&quot;2026-06-14&quot;:16.16},{&quot;2026-06-15&quot;:16.11},{&quot;2026-06-16&quot;:16.11},{&quot;2026-06-17&quot;:16.11},{&quot;2026-06-18&quot;:16.11},{&quot;2026-06-19&quot;:16.11},{&quot;2026-06-20&quot;:16.11},{&quot;2026-06-21&quot;:16.11},{&quot;2026-06-22&quot;:16.11},{&quot;2026-06-23&quot;:15.97},{&quot;2026-06-24&quot;:15.97},{&quot;2026-06-25&quot;:15.97},{&quot;2026-06-26&quot;:15.97},{&quot;2026-06-27&quot;:15.97},{&quot;2026-06-28&quot;:16.0},{&quot;2026-06-29&quot;:16.0},{&quot;2026-06-30&quot;:16.12},{&quot;2026-07-01&quot;:16.12},{&quot;2026-07-02&quot;:16.12},{&quot;2026-07-03&quot;:16.15},{&quot;2026-07-04&quot;:16.15},{&quot;2026-07-05&quot;:16.15},{&quot;2026-07-06&quot;:16.15},{&quot;2026-07-07&quot;:16.15},{&quot;2026-07-08&quot;:16.15},{&quot;2026-07-09&quot;:16.15},{&quot;2026-07-10&quot;:16.15},{&quot;2026-07-11&quot;:16.17},{&quot;2026-07-12&quot;:16.17},{&quot;2026-07-13&quot;:16.22},{&quot;2026-07-14&quot;:16.22},{&quot;2026-07-15&quot;:16.33},{&quot;2026-07-16&quot;:16.12},{&quot;2026-07-17&quot;:16.12},{&quot;2026-07-18&quot;:16.36},{&quot;2026-07-19&quot;:16.36},{&quot;2026-07-20&quot;:16.36},{&quot;2026-07-21&quot;:16.36},{&quot;2026-07-23&quot;:16.44},{&quot;2026-07-25&quot;:16.44},{&quot;2026-07-26&quot;:16.44},{&quot;2026-07-27&quot;:16.44},{&quot;2026-07-28&quot;:16.44},{&quot;2026-07-29&quot;:16.44},{&quot;2026-07-30&quot;:16.36},{&quot;2026-07-31&quot;:16.36},{&quot;2026-08-01&quot;:16.36},{&quot;2026-08-02&quot;:16.36},{&quot;2026-08-03&quot;:16.36},{&quot;2026-08-04&quot;:16.36},{&quot;2026-08-05&quot;:16.36},{&quot;2026-08-07&quot;:16.25},{&quot;2026-08-08&quot;:16.25},{&quot;2026-08-09&quot;:16.22},{&quot;2026-08-10&quot;:16.14},{&quot;2026-08-11&quot;:16.08},{&quot;2026-08-12&quot;:16.08},{&quot;2026-08-13&quot;:16.08},{&quot;2026-08-14&quot;:16.08},{&quot;2026-08-15&quot;:16.08},{&quot;2026-08-16&quot;:16.08},{&quot;2026-08-17&quot;:16.05},{&quot;2026-08-18&quot;:16.05},{&quot;2026-08-19&quot;:16.05},{&quot;2026-08-20&quot;:16.05},{&quot;2026-08-21&quot;:16.09},{&quot;2026-08-22&quot;:16.15},{&quot;2026-08-23&quot;:16.2},{&quot;2026-08-24&quot;:16.2},{&quot;2026-08-25&quot;:16.04},{&quot;2026-08-26&quot;:16.04},{&quot;2026-08-27&quot;:16.04},{&quot;2026-08-28&quot;:16.26},{&quot;2026-08-29&quot;:16.26},{&quot;2026-08-30&quot;:16.26},{&quot;2026-08-31&quot;:16.26},{&quot;2026-09-01&quot;:16.26},{&quot;2026-09-02&quot;:16.67},{&quot;2026-09-03&quot;:16.67},{&quot;2026-09-04&quot;:16.67},{&quot;2026-09-05&quot;:16.67},{&quot;2026-09-06&quot;:16.67},{&quot;2026-09-07&quot;:16.67},{&quot;2026-09-08&quot;:16.83},{&quot;2026-09-09&quot;:16.88},{&quot;2026-09-10&quot;:16.88},{&quot;2026-09-11&quot;:16.88}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:16.27},{&quot;2026-06-12&quot;:16.29},{&quot;2026-06-13&quot;:16.49},{&quot;2026-06-14&quot;:16.46},{&quot;2026-06-15&quot;:16.25},{&quot;2026-06-16&quot;:16.0},{&quot;2026-06-17&quot;:15.63},{&quot;2026-06-18&quot;:15.63},{&quot;2026-06-19&quot;:15.71},{&quot;2026-06-20&quot;:15.64},{&quot;2026-06-21&quot;:15.64},{&quot;2026-06-22&quot;:15.64},{&quot;2026-06-23&quot;:15.66},{&quot;2026-06-24&quot;:14.72},{&quot;2026-06-25&quot;:14.49},{&quot;2026-06-26&quot;:14.66},{&quot;2026-06-27&quot;:15.05},{&quot;2026-06-28&quot;:15.05},{&quot;2026-06-29&quot;:15.05},{&quot;2026-06-30&quot;:14.97},{&quot;2026-07-01&quot;:14.97},{&quot;2026-07-02&quot;:14.97},{&quot;2026-07-03&quot;:14.94},{&quot;2026-07-04&quot;:14.78},{&quot;2026-07-05&quot;:14.78},{&quot;2026-07-06&quot;:14.78},{&quot;2026-07-07&quot;:14.75},{&quot;2026-07-08&quot;:14.75},{&quot;2026-07-09&quot;:14.56},{&quot;2026-07-10&quot;:14.43},{&quot;2026-07-11&quot;:14.49},{&quot;2026-07-12&quot;:14.5},{&quot;2026-07-13&quot;:14.62},{&quot;2026-07-14&quot;:14.73},{&quot;2026-07-15&quot;:14.73},{&quot;2026-07-16&quot;:14.73},{&quot;2026-07-17&quot;:14.73},{&quot;2026-07-18&quot;:14.73},{&quot;2026-07-19&quot;:14.66},{&quot;2026-07-20&quot;:15.03},{&quot;2026-07-21&quot;:15.27},{&quot;2026-07-23&quot;:15.36},{&quot;2026-07-25&quot;:15.91},{&quot;2026-07-26&quot;:16.1},{&quot;2026-07-27&quot;:16.4},{&quot;2026-07-28&quot;:16.64},{&quot;2026-07-29&quot;:16.74},{&quot;2026-07-30&quot;:16.74},{&quot;2026-07-31&quot;:16.68},{&quot;2026-08-01&quot;:16.9},{&quot;2026-08-02&quot;:17.18},{&quot;2026-08-03&quot;:17.06},{&quot;2026-08-04&quot;:17.07},{&quot;2026-08-05&quot;:17.31},{&quot;2026-08-07&quot;:17.39},{&quot;2026-08-08&quot;:17.35},{&quot;2026-08-09&quot;:17.06},{&quot;2026-08-10&quot;:16.59},{&quot;2026-08-11&quot;:16.4},{&quot;2026-08-12&quot;:16.6},{&quot;2026-08-13&quot;:16.6},{&quot;2026-08-14&quot;:16.61},{&quot;2026-08-15&quot;:16.61},{&quot;2026-08-16&quot;:16.65},{&quot;2026-08-17&quot;:16.67},{&quot;2026-08-18&quot;:16.58},{&quot;2026-08-19&quot;:16.16},{&quot;2026-08-20&quot;:16.16},{&quot;2026-08-21&quot;:15.95},{&quot;2026-08-22&quot;:15.83},{&quot;2026-08-23&quot;:16.03},{&quot;2026-08-24&quot;:16.03},{&quot;2026-08-25&quot;:16.03},{&quot;2026-08-26&quot;:16.14},{&quot;2026-08-27&quot;:16.14},{&quot;2026-08-28&quot;:16.27},{&quot;2026-08-29&quot;:16.27},{&quot;2026-08-30&quot;:16.4},{&quot;2026-08-31&quot;:16.08},{&quot;2026-09-01&quot;:16.08},{&quot;2026-09-02&quot;:16.28},{&quot;2026-09-03&quot;:16.19},{&quot;2026-09-04&quot;:16.14},{&quot;2026-09-05&quot;:16.14},{&quot;2026-09-06&quot;:16.26},{&quot;2026-09-07&quot;:16.11},{&quot;2026-09-08&quot;:16.11},{&quot;2026-09-09&quot;:16.29},{&quot;2026-09-10&quot;:16.29},{&quot;2026-09-11&quot;:16.29}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="74181"
  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">
            Bonehoard Dracosaur
        </span>


      </div>

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

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

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="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">
            $13.83
          </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="Bonehoard Dracosaur" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/2/2220ed60-3f8f-4dd2-8319-6a06896a5350.jpg?1783913768" />

        <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">
            Bonehoard Dracosaur
        </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 — Dinosaur Dragon</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Bonehoard Dracosaur" src="https://cards.scryfall.io/large/front/2/2/2220ed60-3f8f-4dd2-8319-6a06896a5350.jpg?1783913768" />
    </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.83
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-11&quot;:15.16},{&quot;2026-06-12&quot;:15.16},{&quot;2026-06-13&quot;:15.56},{&quot;2026-06-14&quot;:15.56},{&quot;2026-06-15&quot;:15.52},{&quot;2026-06-16&quot;:15.52},{&quot;2026-06-17&quot;:15.52},{&quot;2026-06-18&quot;:15.56},{&quot;2026-06-19&quot;:15.76},{&quot;2026-06-20&quot;:15.76},{&quot;2026-06-21&quot;:15.76},{&quot;2026-06-22&quot;:15.88},{&quot;2026-06-23&quot;:15.88},{&quot;2026-06-24&quot;:15.88},{&quot;2026-06-25&quot;:15.88},{&quot;2026-06-26&quot;:15.88},{&quot;2026-06-27&quot;:15.88},{&quot;2026-06-28&quot;:15.88},{&quot;2026-06-29&quot;:15.88},{&quot;2026-06-30&quot;:15.94},{&quot;2026-07-01&quot;:15.94},{&quot;2026-07-02&quot;:15.94},{&quot;2026-07-03&quot;:15.94},{&quot;2026-07-04&quot;:15.94},{&quot;2026-07-05&quot;:15.94},{&quot;2026-07-06&quot;:15.94},{&quot;2026-07-07&quot;:15.94},{&quot;2026-07-08&quot;:15.94},{&quot;2026-07-09&quot;:15.94},{&quot;2026-07-10&quot;:15.94},{&quot;2026-07-11&quot;:15.94},{&quot;2026-07-12&quot;:16.14},{&quot;2026-07-13&quot;:16.14},{&quot;2026-07-14&quot;:16.14},{&quot;2026-07-15&quot;:16.22},{&quot;2026-07-16&quot;:16.22},{&quot;2026-07-17&quot;:15.78},{&quot;2026-07-18&quot;:15.78},{&quot;2026-07-19&quot;:15.78},{&quot;2026-07-20&quot;:15.78},{&quot;2026-07-21&quot;:15.78},{&quot;2026-07-23&quot;:15.78},{&quot;2026-07-25&quot;:15.78},{&quot;2026-07-26&quot;:15.89},{&quot;2026-07-27&quot;:15.89},{&quot;2026-07-28&quot;:15.89},{&quot;2026-07-29&quot;:15.89},{&quot;2026-07-30&quot;:15.89},{&quot;2026-07-31&quot;:16.18},{&quot;2026-08-01&quot;:15.84},{&quot;2026-08-02&quot;:15.84},{&quot;2026-08-03&quot;:15.84},{&quot;2026-08-04&quot;:15.97},{&quot;2026-08-05&quot;:15.97},{&quot;2026-08-07&quot;:15.93},{&quot;2026-08-08&quot;:16.01},{&quot;2026-08-09&quot;:16.01},{&quot;2026-08-10&quot;:15.93},{&quot;2026-08-11&quot;:15.93},{&quot;2026-08-12&quot;:15.93},{&quot;2026-08-13&quot;:15.93},{&quot;2026-08-14&quot;:15.87},{&quot;2026-08-15&quot;:15.81},{&quot;2026-08-16&quot;:15.79},{&quot;2026-08-17&quot;:15.66},{&quot;2026-08-18&quot;:15.78},{&quot;2026-08-19&quot;:15.78},{&quot;2026-08-20&quot;:15.78},{&quot;2026-08-21&quot;:15.37},{&quot;2026-08-22&quot;:15.29},{&quot;2026-08-23&quot;:15.29},{&quot;2026-08-24&quot;:15.29},{&quot;2026-08-25&quot;:15.29},{&quot;2026-08-26&quot;:15.19},{&quot;2026-08-27&quot;:14.99},{&quot;2026-08-28&quot;:15.04},{&quot;2026-08-29&quot;:15.04},{&quot;2026-08-30&quot;:15.23},{&quot;2026-08-31&quot;:15.23},{&quot;2026-09-01&quot;:15.23},{&quot;2026-09-02&quot;:15.18},{&quot;2026-09-03&quot;:15.22},{&quot;2026-09-04&quot;:15.22},{&quot;2026-09-05&quot;:15.22},{&quot;2026-09-06&quot;:15.22},{&quot;2026-09-07&quot;:15.35},{&quot;2026-09-08&quot;:15.16},{&quot;2026-09-09&quot;:15.28},{&quot;2026-09-10&quot;:15.28},{&quot;2026-09-11&quot;:15.28}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:14.31},{&quot;2026-06-12&quot;:14.33},{&quot;2026-06-13&quot;:14.23},{&quot;2026-06-14&quot;:14.73},{&quot;2026-06-15&quot;:14.72},{&quot;2026-06-16&quot;:14.33},{&quot;2026-06-17&quot;:14.33},{&quot;2026-06-18&quot;:14.16},{&quot;2026-06-19&quot;:14.49},{&quot;2026-06-20&quot;:14.48},{&quot;2026-06-21&quot;:14.48},{&quot;2026-06-22&quot;:14.35},{&quot;2026-06-23&quot;:14.14},{&quot;2026-06-24&quot;:14.09},{&quot;2026-06-25&quot;:14.14},{&quot;2026-06-26&quot;:14.17},{&quot;2026-06-27&quot;:14.12},{&quot;2026-06-28&quot;:14.17},{&quot;2026-06-29&quot;:14.15},{&quot;2026-06-30&quot;:13.8},{&quot;2026-07-01&quot;:13.68},{&quot;2026-07-02&quot;:13.55},{&quot;2026-07-03&quot;:13.62},{&quot;2026-07-04&quot;:13.63},{&quot;2026-07-05&quot;:13.66},{&quot;2026-07-06&quot;:13.61},{&quot;2026-07-07&quot;:13.43},{&quot;2026-07-08&quot;:13.56},{&quot;2026-07-09&quot;:13.62},{&quot;2026-07-10&quot;:13.53},{&quot;2026-07-11&quot;:13.48},{&quot;2026-07-12&quot;:13.49},{&quot;2026-07-13&quot;:13.56},{&quot;2026-07-14&quot;:13.7},{&quot;2026-07-15&quot;:13.64},{&quot;2026-07-16&quot;:13.66},{&quot;2026-07-17&quot;:13.41},{&quot;2026-07-18&quot;:13.26},{&quot;2026-07-19&quot;:13.36},{&quot;2026-07-20&quot;:13.12},{&quot;2026-07-21&quot;:13.24},{&quot;2026-07-23&quot;:13.29},{&quot;2026-07-25&quot;:13.54},{&quot;2026-07-26&quot;:13.6},{&quot;2026-07-27&quot;:13.58},{&quot;2026-07-28&quot;:13.56},{&quot;2026-07-29&quot;:13.53},{&quot;2026-07-30&quot;:13.23},{&quot;2026-07-31&quot;:13.58},{&quot;2026-08-01&quot;:13.51},{&quot;2026-08-02&quot;:13.26},{&quot;2026-08-03&quot;:13.08},{&quot;2026-08-04&quot;:13.14},{&quot;2026-08-05&quot;:13.25},{&quot;2026-08-07&quot;:13.52},{&quot;2026-08-08&quot;:13.7},{&quot;2026-08-09&quot;:13.55},{&quot;2026-08-10&quot;:13.36},{&quot;2026-08-11&quot;:13.2},{&quot;2026-08-12&quot;:13.15},{&quot;2026-08-13&quot;:13.54},{&quot;2026-08-14&quot;:13.52},{&quot;2026-08-15&quot;:13.7},{&quot;2026-08-16&quot;:14.11},{&quot;2026-08-17&quot;:14.58},{&quot;2026-08-18&quot;:14.54},{&quot;2026-08-19&quot;:14.71},{&quot;2026-08-20&quot;:14.71},{&quot;2026-08-21&quot;:14.74},{&quot;2026-08-22&quot;:14.74},{&quot;2026-08-23&quot;:14.26},{&quot;2026-08-24&quot;:14.38},{&quot;2026-08-25&quot;:14.38},{&quot;2026-08-26&quot;:14.34},{&quot;2026-08-27&quot;:14.32},{&quot;2026-08-28&quot;:14.34},{&quot;2026-08-29&quot;:14.34},{&quot;2026-08-30&quot;:14.23},{&quot;2026-08-31&quot;:14.09},{&quot;2026-09-01&quot;:14.09},{&quot;2026-09-02&quot;:14.28},{&quot;2026-09-03&quot;:14.43},{&quot;2026-09-04&quot;:14.35},{&quot;2026-09-05&quot;:14.35},{&quot;2026-09-06&quot;:14.26},{&quot;2026-09-07&quot;:14.47},{&quot;2026-09-08&quot;:14.0},{&quot;2026-09-09&quot;:13.76},{&quot;2026-09-10&quot;:13.7},{&quot;2026-09-11&quot;:13.83}]}"
        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="18990"
  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-100 text-badge-text">
              ↓
              1%
            </span>

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

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

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

        <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/8/2/82ef6d6c-db50-4d24-8ebd-311613ddef06.jpg?1783918366" />
    </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.27
              </span>

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

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

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

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$6.50</span>
              <span class="text-xs text-grey-text">Credit: $8.45</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;:25.6},{&quot;2026-06-13&quot;:25.6},{&quot;2026-06-14&quot;:25.6},{&quot;2026-06-15&quot;:25.6},{&quot;2026-06-16&quot;:25.6},{&quot;2026-06-17&quot;:25.6},{&quot;2026-06-18&quot;:26.18},{&quot;2026-06-19&quot;:27.04},{&quot;2026-06-20&quot;:27.04},{&quot;2026-06-21&quot;:27.04},{&quot;2026-06-22&quot;:27.52},{&quot;2026-06-23&quot;:27.52},{&quot;2026-06-24&quot;:27.52},{&quot;2026-06-25&quot;:27.52},{&quot;2026-06-26&quot;:27.96},{&quot;2026-06-27&quot;:28.35},{&quot;2026-06-28&quot;:28.35},{&quot;2026-06-29&quot;:28.35},{&quot;2026-06-30&quot;:28.35},{&quot;2026-07-01&quot;:28.68},{&quot;2026-07-02&quot;:28.68},{&quot;2026-07-03&quot;:28.68},{&quot;2026-07-04&quot;:29.32},{&quot;2026-07-05&quot;:29.32},{&quot;2026-07-06&quot;:30.2},{&quot;2026-07-07&quot;:30.51},{&quot;2026-07-08&quot;:30.51},{&quot;2026-07-09&quot;:30.51},{&quot;2026-07-10&quot;:30.51},{&quot;2026-07-11&quot;:30.51},{&quot;2026-07-12&quot;:30.51},{&quot;2026-07-13&quot;:30.51},{&quot;2026-07-14&quot;:30.51},{&quot;2026-07-15&quot;:30.51},{&quot;2026-07-16&quot;:30.51},{&quot;2026-07-17&quot;:30.51},{&quot;2026-07-18&quot;:30.51},{&quot;2026-07-19&quot;:30.51},{&quot;2026-07-20&quot;:31.84},{&quot;2026-07-21&quot;:32.3},{&quot;2026-07-23&quot;:32.3},{&quot;2026-07-24&quot;:32.3},{&quot;2026-07-25&quot;:32.3},{&quot;2026-07-26&quot;:32.3},{&quot;2026-07-27&quot;:32.3},{&quot;2026-07-28&quot;:31.87},{&quot;2026-07-29&quot;:31.98},{&quot;2026-07-30&quot;:31.98},{&quot;2026-07-31&quot;:31.97},{&quot;2026-08-01&quot;:31.97},{&quot;2026-08-02&quot;:31.97},{&quot;2026-08-03&quot;:31.97},{&quot;2026-08-04&quot;:31.94},{&quot;2026-08-05&quot;:31.94},{&quot;2026-08-07&quot;:31.29},{&quot;2026-08-08&quot;:31.29},{&quot;2026-08-09&quot;:31.29},{&quot;2026-08-10&quot;:31.29},{&quot;2026-08-11&quot;:31.61},{&quot;2026-08-12&quot;:31.61},{&quot;2026-08-13&quot;:31.61},{&quot;2026-08-14&quot;:31.61},{&quot;2026-08-15&quot;:31.61},{&quot;2026-08-16&quot;:31.61},{&quot;2026-08-17&quot;:31.61},{&quot;2026-08-18&quot;:31.61},{&quot;2026-08-19&quot;:31.61},{&quot;2026-08-20&quot;:31.61},{&quot;2026-08-21&quot;:31.6},{&quot;2026-08-22&quot;:31.6},{&quot;2026-08-23&quot;:31.6},{&quot;2026-08-24&quot;:31.6},{&quot;2026-08-25&quot;:31.64},{&quot;2026-08-26&quot;:31.64},{&quot;2026-08-27&quot;:31.64},{&quot;2026-08-28&quot;:31.64},{&quot;2026-08-29&quot;:31.64},{&quot;2026-08-30&quot;:31.64},{&quot;2026-08-31&quot;:31.64},{&quot;2026-09-01&quot;:31.64},{&quot;2026-09-02&quot;:31.64},{&quot;2026-09-03&quot;:31.64},{&quot;2026-09-04&quot;:31.64},{&quot;2026-09-05&quot;:31.64},{&quot;2026-09-06&quot;:31.64},{&quot;2026-09-07&quot;:31.64},{&quot;2026-09-08&quot;:31.58},{&quot;2026-09-09&quot;:31.58},{&quot;2026-09-10&quot;:31.58},{&quot;2026-09-11&quot;:31.58}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:12.61},{&quot;2026-06-13&quot;:12.54},{&quot;2026-06-14&quot;:12.54},{&quot;2026-06-15&quot;:12.59},{&quot;2026-06-16&quot;:12.6},{&quot;2026-06-17&quot;:12.66},{&quot;2026-06-18&quot;:12.66},{&quot;2026-06-19&quot;:12.66},{&quot;2026-06-20&quot;:12.78},{&quot;2026-06-21&quot;:12.64},{&quot;2026-06-22&quot;:12.64},{&quot;2026-06-23&quot;:12.64},{&quot;2026-06-24&quot;:12.64},{&quot;2026-06-25&quot;:12.68},{&quot;2026-06-26&quot;:12.68},{&quot;2026-06-27&quot;:12.83},{&quot;2026-06-28&quot;:12.83},{&quot;2026-06-29&quot;:12.83},{&quot;2026-06-30&quot;:12.75},{&quot;2026-07-01&quot;:12.75},{&quot;2026-07-02&quot;:12.75},{&quot;2026-07-03&quot;:12.67},{&quot;2026-07-04&quot;:12.67},{&quot;2026-07-05&quot;:12.63},{&quot;2026-07-06&quot;:12.63},{&quot;2026-07-07&quot;:12.63},{&quot;2026-07-08&quot;:12.63},{&quot;2026-07-09&quot;:12.67},{&quot;2026-07-10&quot;:12.67},{&quot;2026-07-11&quot;:12.67},{&quot;2026-07-12&quot;:12.67},{&quot;2026-07-13&quot;:12.67},{&quot;2026-07-14&quot;:12.67},{&quot;2026-07-15&quot;:12.58},{&quot;2026-07-16&quot;:12.58},{&quot;2026-07-17&quot;:12.57},{&quot;2026-07-18&quot;:12.57},{&quot;2026-07-19&quot;:12.57},{&quot;2026-07-20&quot;:12.57},{&quot;2026-07-21&quot;:12.57},{&quot;2026-07-23&quot;:12.5},{&quot;2026-07-24&quot;:12.28},{&quot;2026-07-25&quot;:12.2},{&quot;2026-07-26&quot;:12.12},{&quot;2026-07-27&quot;:12.08},{&quot;2026-07-28&quot;:11.87},{&quot;2026-07-29&quot;:11.87},{&quot;2026-07-30&quot;:11.87},{&quot;2026-07-31&quot;:11.56},{&quot;2026-08-01&quot;:11.56},{&quot;2026-08-02&quot;:11.53},{&quot;2026-08-03&quot;:11.48},{&quot;2026-08-04&quot;:11.49},{&quot;2026-08-05&quot;:11.51},{&quot;2026-08-07&quot;:11.53},{&quot;2026-08-08&quot;:11.58},{&quot;2026-08-09&quot;:11.58},{&quot;2026-08-10&quot;:11.58},{&quot;2026-08-11&quot;:11.64},{&quot;2026-08-12&quot;:11.71},{&quot;2026-08-13&quot;:12.09},{&quot;2026-08-14&quot;:12.09},{&quot;2026-08-15&quot;:12.13},{&quot;2026-08-16&quot;:12.13},{&quot;2026-08-17&quot;:12.13},{&quot;2026-08-18&quot;:12.13},{&quot;2026-08-19&quot;:12.13},{&quot;2026-08-20&quot;:12.13},{&quot;2026-08-21&quot;:12.13},{&quot;2026-08-22&quot;:12.3},{&quot;2026-08-23&quot;:12.3},{&quot;2026-08-24&quot;:12.19},{&quot;2026-08-25&quot;:12.16},{&quot;2026-08-26&quot;:12.3},{&quot;2026-08-27&quot;:12.3},{&quot;2026-08-28&quot;:12.3},{&quot;2026-08-29&quot;:12.3},{&quot;2026-08-30&quot;:12.31},{&quot;2026-08-31&quot;:12.36},{&quot;2026-09-01&quot;:12.45},{&quot;2026-09-02&quot;:12.45},{&quot;2026-09-03&quot;:12.45},{&quot;2026-09-04&quot;:12.36},{&quot;2026-09-05&quot;:12.36},{&quot;2026-09-06&quot;:12.34},{&quot;2026-09-07&quot;:12.27},{&quot;2026-09-08&quot;:12.27},{&quot;2026-09-09&quot;:12.27},{&quot;2026-09-10&quot;:12.27},{&quot;2026-09-11&quot;:12.27}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Sacred Foundry" src="https://cards.scryfall.io/large/front/8/b/8b4e2642-3c87-4708-b9b4-2e7f7359ac7d.jpg?1752947600" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:11.54},{&quot;2026-06-14&quot;:11.61},{&quot;2026-06-15&quot;:11.57},{&quot;2026-06-16&quot;:11.57},{&quot;2026-06-17&quot;:11.57},{&quot;2026-06-18&quot;:11.65},{&quot;2026-06-19&quot;:11.65},{&quot;2026-06-20&quot;:11.65},{&quot;2026-06-21&quot;:12.07},{&quot;2026-06-22&quot;:11.93},{&quot;2026-06-23&quot;:11.79},{&quot;2026-06-24&quot;:11.77},{&quot;2026-06-25&quot;:11.77},{&quot;2026-06-26&quot;:11.7},{&quot;2026-06-27&quot;:11.2},{&quot;2026-06-28&quot;:10.57},{&quot;2026-06-29&quot;:10.47},{&quot;2026-06-30&quot;:10.23},{&quot;2026-07-01&quot;:10.06},{&quot;2026-07-02&quot;:9.98},{&quot;2026-07-03&quot;:9.61},{&quot;2026-07-04&quot;:9.69},{&quot;2026-07-05&quot;:9.69},{&quot;2026-07-06&quot;:9.63},{&quot;2026-07-07&quot;:9.66},{&quot;2026-07-08&quot;:9.71},{&quot;2026-07-09&quot;:9.89},{&quot;2026-07-10&quot;:9.8},{&quot;2026-07-11&quot;:9.84},{&quot;2026-07-12&quot;:9.84},{&quot;2026-07-13&quot;:9.89},{&quot;2026-07-14&quot;:9.86},{&quot;2026-07-15&quot;:9.89},{&quot;2026-07-16&quot;:9.82},{&quot;2026-07-17&quot;:9.91},{&quot;2026-07-18&quot;:9.91},{&quot;2026-07-19&quot;:9.98},{&quot;2026-07-20&quot;:10.21},{&quot;2026-07-21&quot;:10.49},{&quot;2026-07-22&quot;:10.54},{&quot;2026-07-23&quot;:10.62},{&quot;2026-07-24&quot;:10.66},{&quot;2026-07-25&quot;:10.57},{&quot;2026-07-26&quot;:10.52},{&quot;2026-07-27&quot;:10.44},{&quot;2026-07-28&quot;:10.54},{&quot;2026-07-29&quot;:10.54},{&quot;2026-07-30&quot;:10.54},{&quot;2026-07-31&quot;:10.48},{&quot;2026-08-01&quot;:10.46},{&quot;2026-08-02&quot;:10.46},{&quot;2026-08-03&quot;:10.46},{&quot;2026-08-04&quot;:10.46},{&quot;2026-08-05&quot;:10.46},{&quot;2026-08-07&quot;:10.25},{&quot;2026-08-08&quot;:10.29},{&quot;2026-08-09&quot;:10.2},{&quot;2026-08-10&quot;:10.27},{&quot;2026-08-11&quot;:10.38},{&quot;2026-08-12&quot;:10.38},{&quot;2026-08-13&quot;:10.41},{&quot;2026-08-14&quot;:10.41},{&quot;2026-08-15&quot;:10.42},{&quot;2026-08-16&quot;:10.32},{&quot;2026-08-17&quot;:10.32},{&quot;2026-08-18&quot;:10.32},{&quot;2026-08-19&quot;:10.42},{&quot;2026-08-20&quot;:10.49},{&quot;2026-08-21&quot;:10.51},{&quot;2026-08-22&quot;:10.5},{&quot;2026-08-23&quot;:10.5},{&quot;2026-08-24&quot;:10.63},{&quot;2026-08-25&quot;:10.67},{&quot;2026-08-26&quot;:10.57},{&quot;2026-08-27&quot;:10.5},{&quot;2026-08-28&quot;:10.56},{&quot;2026-08-29&quot;:10.56},{&quot;2026-08-30&quot;:10.47},{&quot;2026-08-31&quot;:10.65},{&quot;2026-09-01&quot;:10.8},{&quot;2026-09-02&quot;:10.92},{&quot;2026-09-03&quot;:10.84},{&quot;2026-09-04&quot;:11.01},{&quot;2026-09-05&quot;:11.07},{&quot;2026-09-06&quot;:11.1},{&quot;2026-09-07&quot;:11.1},{&quot;2026-09-08&quot;:11.1},{&quot;2026-09-09&quot;:11.08},{&quot;2026-09-10&quot;:11.17},{&quot;2026-09-11&quot;:11.0}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:10.28},{&quot;2026-06-14&quot;:10.42},{&quot;2026-06-15&quot;:10.34},{&quot;2026-06-16&quot;:10.09},{&quot;2026-06-17&quot;:10.17},{&quot;2026-06-18&quot;:10.4},{&quot;2026-06-19&quot;:10.36},{&quot;2026-06-20&quot;:10.29},{&quot;2026-06-21&quot;:9.93},{&quot;2026-06-22&quot;:9.2},{&quot;2026-06-23&quot;:9.19},{&quot;2026-06-24&quot;:9.18},{&quot;2026-06-25&quot;:9.07},{&quot;2026-06-26&quot;:9.0},{&quot;2026-06-27&quot;:9.29},{&quot;2026-06-28&quot;:11.24},{&quot;2026-06-29&quot;:10.73},{&quot;2026-06-30&quot;:9.09},{&quot;2026-07-01&quot;:8.91},{&quot;2026-07-02&quot;:8.93},{&quot;2026-07-03&quot;:9.34},{&quot;2026-07-04&quot;:9.42},{&quot;2026-07-05&quot;:9.45},{&quot;2026-07-06&quot;:9.96},{&quot;2026-07-07&quot;:9.6},{&quot;2026-07-08&quot;:9.44},{&quot;2026-07-09&quot;:9.68},{&quot;2026-07-10&quot;:9.91},{&quot;2026-07-11&quot;:9.78},{&quot;2026-07-12&quot;:9.7},{&quot;2026-07-13&quot;:10.17},{&quot;2026-07-14&quot;:10.51},{&quot;2026-07-15&quot;:10.39},{&quot;2026-07-16&quot;:10.03},{&quot;2026-07-17&quot;:9.83},{&quot;2026-07-18&quot;:10.29},{&quot;2026-07-19&quot;:10.4},{&quot;2026-07-20&quot;:10.34},{&quot;2026-07-21&quot;:9.97},{&quot;2026-07-22&quot;:10.05},{&quot;2026-07-23&quot;:10.5},{&quot;2026-07-24&quot;:10.83},{&quot;2026-07-25&quot;:10.58},{&quot;2026-07-26&quot;:10.52},{&quot;2026-07-27&quot;:10.34},{&quot;2026-07-28&quot;:10.13},{&quot;2026-07-29&quot;:10.04},{&quot;2026-07-30&quot;:10.06},{&quot;2026-07-31&quot;:10.31},{&quot;2026-08-01&quot;:10.55},{&quot;2026-08-02&quot;:10.85},{&quot;2026-08-03&quot;:10.21},{&quot;2026-08-04&quot;:10.08},{&quot;2026-08-05&quot;:9.87},{&quot;2026-08-07&quot;:9.76},{&quot;2026-08-08&quot;:9.59},{&quot;2026-08-09&quot;:9.53},{&quot;2026-08-10&quot;:9.53},{&quot;2026-08-11&quot;:9.48},{&quot;2026-08-12&quot;:9.79},{&quot;2026-08-13&quot;:10.1},{&quot;2026-08-14&quot;:10.03},{&quot;2026-08-15&quot;:9.74},{&quot;2026-08-16&quot;:10.01},{&quot;2026-08-17&quot;:10.15},{&quot;2026-08-18&quot;:10.09},{&quot;2026-08-19&quot;:9.35},{&quot;2026-08-20&quot;:9.33},{&quot;2026-08-21&quot;:9.85},{&quot;2026-08-22&quot;:9.4},{&quot;2026-08-23&quot;:9.45},{&quot;2026-08-24&quot;:10.39},{&quot;2026-08-25&quot;:10.68},{&quot;2026-08-26&quot;:10.67},{&quot;2026-08-27&quot;:11.15},{&quot;2026-08-28&quot;:10.99},{&quot;2026-08-29&quot;:10.99},{&quot;2026-08-30&quot;:11.13},{&quot;2026-08-31&quot;:10.69},{&quot;2026-09-01&quot;:10.46},{&quot;2026-09-02&quot;:10.33},{&quot;2026-09-03&quot;:10.58},{&quot;2026-09-04&quot;:10.79},{&quot;2026-09-05&quot;:10.9},{&quot;2026-09-06&quot;:10.77},{&quot;2026-09-07&quot;:10.8},{&quot;2026-09-08&quot;:10.95},{&quot;2026-09-09&quot;:10.46},{&quot;2026-09-10&quot;:10.36},{&quot;2026-09-11&quot;:10.62}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Apex Altisaur" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/e/1e6beba4-128c-418e-83ed-8a82afc0c39e.jpg?1783913862" />

        <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">
            Apex Altisaur
        </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 — Dinosaur</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-7'></i><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="Apex Altisaur" src="https://cards.scryfall.io/large/front/1/e/1e6beba4-128c-418e-83ed-8a82afc0c39e.jpg?1783913862" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $8.90
              </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">$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;normal&quot;:[{&quot;2026-06-11&quot;:7.28},{&quot;2026-06-12&quot;:7.13},{&quot;2026-06-13&quot;:6.99},{&quot;2026-06-14&quot;:7.07},{&quot;2026-06-15&quot;:6.55},{&quot;2026-06-16&quot;:6.89},{&quot;2026-06-17&quot;:6.8},{&quot;2026-06-18&quot;:6.87},{&quot;2026-06-19&quot;:7.3},{&quot;2026-06-20&quot;:7.32},{&quot;2026-06-21&quot;:7.33},{&quot;2026-06-22&quot;:7.54},{&quot;2026-06-23&quot;:7.92},{&quot;2026-06-24&quot;:8.09},{&quot;2026-06-25&quot;:7.95},{&quot;2026-06-26&quot;:7.69},{&quot;2026-06-27&quot;:7.79},{&quot;2026-06-28&quot;:7.63},{&quot;2026-06-29&quot;:7.51},{&quot;2026-06-30&quot;:7.76},{&quot;2026-07-01&quot;:8.13},{&quot;2026-07-02&quot;:8.51},{&quot;2026-07-03&quot;:8.22},{&quot;2026-07-04&quot;:8.22},{&quot;2026-07-05&quot;:8.31},{&quot;2026-07-06&quot;:8.16},{&quot;2026-07-07&quot;:7.97},{&quot;2026-07-08&quot;:7.91},{&quot;2026-07-09&quot;:7.86},{&quot;2026-07-10&quot;:7.95},{&quot;2026-07-11&quot;:8.11},{&quot;2026-07-12&quot;:8.06},{&quot;2026-07-13&quot;:8.01},{&quot;2026-07-14&quot;:8.05},{&quot;2026-07-15&quot;:8.03},{&quot;2026-07-16&quot;:8.18},{&quot;2026-07-17&quot;:8.18},{&quot;2026-07-18&quot;:8.3},{&quot;2026-07-19&quot;:8.1},{&quot;2026-07-20&quot;:8.13},{&quot;2026-07-21&quot;:8.24},{&quot;2026-07-23&quot;:8.28},{&quot;2026-07-25&quot;:8.4},{&quot;2026-07-26&quot;:8.23},{&quot;2026-07-27&quot;:8.62},{&quot;2026-07-28&quot;:8.52},{&quot;2026-07-29&quot;:8.4},{&quot;2026-07-30&quot;:8.33},{&quot;2026-07-31&quot;:8.01},{&quot;2026-08-01&quot;:8.22},{&quot;2026-08-02&quot;:8.15},{&quot;2026-08-03&quot;:8.01},{&quot;2026-08-04&quot;:8.19},{&quot;2026-08-05&quot;:8.27},{&quot;2026-08-07&quot;:8.3},{&quot;2026-08-08&quot;:7.83},{&quot;2026-08-09&quot;:7.74},{&quot;2026-08-10&quot;:7.63},{&quot;2026-08-11&quot;:7.63},{&quot;2026-08-12&quot;:7.7},{&quot;2026-08-13&quot;:7.75},{&quot;2026-08-14&quot;:7.79},{&quot;2026-08-15&quot;:7.88},{&quot;2026-08-16&quot;:7.97},{&quot;2026-08-17&quot;:8.03},{&quot;2026-08-18&quot;:7.97},{&quot;2026-08-19&quot;:8.01},{&quot;2026-08-20&quot;:8.01},{&quot;2026-08-21&quot;:8.22},{&quot;2026-08-22&quot;:8.21},{&quot;2026-08-23&quot;:8.18},{&quot;2026-08-24&quot;:8.29},{&quot;2026-08-25&quot;:8.29},{&quot;2026-08-26&quot;:8.57},{&quot;2026-08-27&quot;:8.65},{&quot;2026-08-28&quot;:8.68},{&quot;2026-08-29&quot;:8.68},{&quot;2026-08-30&quot;:8.8},{&quot;2026-08-31&quot;:8.83},{&quot;2026-09-01&quot;:8.83},{&quot;2026-09-02&quot;:8.68},{&quot;2026-09-03&quot;:8.65},{&quot;2026-09-04&quot;:8.67},{&quot;2026-09-05&quot;:8.54},{&quot;2026-09-06&quot;:8.54},{&quot;2026-09-07&quot;:8.67},{&quot;2026-09-08&quot;:8.67},{&quot;2026-09-09&quot;:8.78},{&quot;2026-09-10&quot;:8.81},{&quot;2026-09-11&quot;:8.9}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

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

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Eiganjo, Seat of the Empire
        </h3>

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Eiganjo, Seat of the Empire" src="https://cards.scryfall.io/large/front/e/c/ecb53f59-d89b-481c-af98-75c11c30ee17.jpg?1783923724" />
    </div>

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

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

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

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

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

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

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Foil</span>
              <span class="text-lg font-medium text-nine-white">$5.60</span>
              <span class="text-xs text-grey-text">Credit: $7.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-08&quot;:7.5},{&quot;2026-06-10&quot;:7.5},{&quot;2026-06-11&quot;:7.44},{&quot;2026-06-12&quot;:7.44},{&quot;2026-06-13&quot;:7.44},{&quot;2026-06-14&quot;:7.44},{&quot;2026-06-15&quot;:7.45},{&quot;2026-06-16&quot;:7.45},{&quot;2026-06-17&quot;:7.45},{&quot;2026-06-18&quot;:7.45},{&quot;2026-06-19&quot;:7.45},{&quot;2026-06-20&quot;:7.63},{&quot;2026-06-21&quot;:7.64},{&quot;2026-06-22&quot;:7.64},{&quot;2026-06-24&quot;:7.64},{&quot;2026-06-25&quot;:7.64},{&quot;2026-06-26&quot;:7.64},{&quot;2026-06-27&quot;:7.67},{&quot;2026-06-28&quot;:7.67},{&quot;2026-06-29&quot;:7.65},{&quot;2026-06-30&quot;:7.65},{&quot;2026-07-01&quot;:7.65},{&quot;2026-07-02&quot;:7.69},{&quot;2026-07-03&quot;:7.79},{&quot;2026-07-04&quot;:7.94},{&quot;2026-07-05&quot;:7.94},{&quot;2026-07-06&quot;:7.94},{&quot;2026-07-07&quot;:7.94},{&quot;2026-07-08&quot;:7.94},{&quot;2026-07-09&quot;:7.94},{&quot;2026-07-10&quot;:7.94},{&quot;2026-07-11&quot;:7.94},{&quot;2026-07-12&quot;:7.94},{&quot;2026-07-13&quot;:7.94},{&quot;2026-07-14&quot;:7.94},{&quot;2026-07-15&quot;:7.94},{&quot;2026-07-16&quot;:7.94},{&quot;2026-07-17&quot;:7.94},{&quot;2026-07-18&quot;:7.94},{&quot;2026-07-19&quot;:7.94},{&quot;2026-07-20&quot;:8.09},{&quot;2026-07-21&quot;:8.09},{&quot;2026-07-23&quot;:8.09},{&quot;2026-07-25&quot;:8.13},{&quot;2026-07-26&quot;:8.13},{&quot;2026-07-27&quot;:8.13},{&quot;2026-07-29&quot;:8.09},{&quot;2026-07-30&quot;:8.09},{&quot;2026-07-31&quot;:8.09},{&quot;2026-08-01&quot;:8.09},{&quot;2026-08-02&quot;:8.09},{&quot;2026-08-03&quot;:8.09},{&quot;2026-08-04&quot;:8.14},{&quot;2026-08-05&quot;:8.14},{&quot;2026-08-07&quot;:8.52},{&quot;2026-08-08&quot;:8.52},{&quot;2026-08-09&quot;:8.52},{&quot;2026-08-10&quot;:8.52},{&quot;2026-08-11&quot;:8.52},{&quot;2026-08-12&quot;:8.56},{&quot;2026-08-13&quot;:8.56},{&quot;2026-08-14&quot;:8.56},{&quot;2026-08-15&quot;:8.56},{&quot;2026-08-16&quot;:8.57},{&quot;2026-08-17&quot;:8.57},{&quot;2026-08-18&quot;:8.59},{&quot;2026-08-19&quot;:8.63},{&quot;2026-08-20&quot;:8.63},{&quot;2026-08-21&quot;:8.63},{&quot;2026-08-22&quot;:8.51},{&quot;2026-08-23&quot;:8.51},{&quot;2026-08-24&quot;:8.54},{&quot;2026-08-25&quot;:8.54},{&quot;2026-08-26&quot;:8.43},{&quot;2026-08-27&quot;:8.43},{&quot;2026-08-28&quot;:8.49},{&quot;2026-08-29&quot;:8.49},{&quot;2026-08-30&quot;:8.4},{&quot;2026-08-31&quot;:8.4},{&quot;2026-09-01&quot;:8.4},{&quot;2026-09-02&quot;:8.4},{&quot;2026-09-03&quot;:8.4},{&quot;2026-09-04&quot;:8.4},{&quot;2026-09-05&quot;:8.4},{&quot;2026-09-06&quot;:8.4},{&quot;2026-09-07&quot;:8.21},{&quot;2026-09-08&quot;:8.21},{&quot;2026-09-09&quot;:8.21},{&quot;2026-09-10&quot;:8.21},{&quot;2026-09-11&quot;:8.28}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:6.34},{&quot;2026-06-10&quot;:6.34},{&quot;2026-06-11&quot;:6.34},{&quot;2026-06-12&quot;:6.31},{&quot;2026-06-13&quot;:6.38},{&quot;2026-06-14&quot;:6.43},{&quot;2026-06-15&quot;:6.52},{&quot;2026-06-16&quot;:6.55},{&quot;2026-06-17&quot;:6.55},{&quot;2026-06-18&quot;:6.55},{&quot;2026-06-19&quot;:6.54},{&quot;2026-06-20&quot;:6.54},{&quot;2026-06-21&quot;:6.63},{&quot;2026-06-22&quot;:6.63},{&quot;2026-06-24&quot;:6.68},{&quot;2026-06-25&quot;:6.68},{&quot;2026-06-26&quot;:6.67},{&quot;2026-06-27&quot;:6.67},{&quot;2026-06-28&quot;:6.68},{&quot;2026-06-29&quot;:6.68},{&quot;2026-06-30&quot;:6.67},{&quot;2026-07-01&quot;:6.69},{&quot;2026-07-02&quot;:6.69},{&quot;2026-07-03&quot;:6.69},{&quot;2026-07-04&quot;:6.71},{&quot;2026-07-05&quot;:6.71},{&quot;2026-07-06&quot;:6.89},{&quot;2026-07-07&quot;:6.89},{&quot;2026-07-08&quot;:6.89},{&quot;2026-07-09&quot;:6.96},{&quot;2026-07-10&quot;:6.96},{&quot;2026-07-11&quot;:6.96},{&quot;2026-07-12&quot;:7.02},{&quot;2026-07-13&quot;:7.04},{&quot;2026-07-14&quot;:7.04},{&quot;2026-07-15&quot;:7.04},{&quot;2026-07-16&quot;:7.04},{&quot;2026-07-17&quot;:7.04},{&quot;2026-07-18&quot;:7.04},{&quot;2026-07-19&quot;:7.04},{&quot;2026-07-20&quot;:7.14},{&quot;2026-07-21&quot;:6.95},{&quot;2026-07-23&quot;:7.18},{&quot;2026-07-25&quot;:7.24},{&quot;2026-07-26&quot;:7.24},{&quot;2026-07-27&quot;:7.24},{&quot;2026-07-29&quot;:7.31},{&quot;2026-07-30&quot;:7.34},{&quot;2026-07-31&quot;:7.37},{&quot;2026-08-01&quot;:7.37},{&quot;2026-08-02&quot;:7.37},{&quot;2026-08-03&quot;:7.37},{&quot;2026-08-04&quot;:7.37},{&quot;2026-08-05&quot;:7.37},{&quot;2026-08-07&quot;:7.4},{&quot;2026-08-08&quot;:7.4},{&quot;2026-08-09&quot;:7.4},{&quot;2026-08-10&quot;:7.4},{&quot;2026-08-11&quot;:7.4},{&quot;2026-08-12&quot;:7.55},{&quot;2026-08-13&quot;:7.55},{&quot;2026-08-14&quot;:7.52},{&quot;2026-08-15&quot;:7.5},{&quot;2026-08-16&quot;:7.5},{&quot;2026-08-17&quot;:7.5},{&quot;2026-08-18&quot;:7.5},{&quot;2026-08-19&quot;:7.5},{&quot;2026-08-20&quot;:7.5},{&quot;2026-08-21&quot;:7.37},{&quot;2026-08-22&quot;:7.37},{&quot;2026-08-23&quot;:7.37},{&quot;2026-08-24&quot;:7.37},{&quot;2026-08-25&quot;:7.37},{&quot;2026-08-26&quot;:7.37},{&quot;2026-08-27&quot;:7.37},{&quot;2026-08-28&quot;:7.37},{&quot;2026-08-29&quot;:7.37},{&quot;2026-08-30&quot;:7.36},{&quot;2026-08-31&quot;:7.35},{&quot;2026-09-01&quot;:7.35},{&quot;2026-09-02&quot;:7.35},{&quot;2026-09-03&quot;:7.36},{&quot;2026-09-04&quot;:7.36},{&quot;2026-09-05&quot;:7.36},{&quot;2026-09-06&quot;:7.36},{&quot;2026-09-07&quot;:7.38},{&quot;2026-09-08&quot;:7.38},{&quot;2026-09-09&quot;:7.38},{&quot;2026-09-10&quot;:7.47},{&quot;2026-09-11&quot;:7.51}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

        <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">
            Stomping Ground
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Land — Mountain 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="Stomping Ground" src="https://cards.scryfall.io/large/front/6/9/69be21b4-c613-47c6-ba57-f4785861af3e.jpg?1752947608" />
    </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.01
              </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">
                $7.03
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:9.67},{&quot;2026-06-11&quot;:9.67},{&quot;2026-06-12&quot;:9.7},{&quot;2026-06-13&quot;:9.65},{&quot;2026-06-14&quot;:9.65},{&quot;2026-06-15&quot;:9.68},{&quot;2026-06-16&quot;:9.74},{&quot;2026-06-17&quot;:9.74},{&quot;2026-06-18&quot;:9.74},{&quot;2026-06-19&quot;:9.74},{&quot;2026-06-20&quot;:9.74},{&quot;2026-06-21&quot;:9.71},{&quot;2026-06-22&quot;:9.59},{&quot;2026-06-23&quot;:9.38},{&quot;2026-06-24&quot;:9.38},{&quot;2026-06-25&quot;:8.84},{&quot;2026-06-26&quot;:8.81},{&quot;2026-06-27&quot;:8.81},{&quot;2026-06-28&quot;:8.72},{&quot;2026-06-29&quot;:8.62},{&quot;2026-06-30&quot;:8.59},{&quot;2026-07-01&quot;:8.56},{&quot;2026-07-02&quot;:8.41},{&quot;2026-07-03&quot;:8.29},{&quot;2026-07-04&quot;:8.26},{&quot;2026-07-05&quot;:8.31},{&quot;2026-07-06&quot;:8.28},{&quot;2026-07-07&quot;:8.05},{&quot;2026-07-08&quot;:7.91},{&quot;2026-07-09&quot;:7.89},{&quot;2026-07-10&quot;:7.77},{&quot;2026-07-11&quot;:7.71},{&quot;2026-07-12&quot;:7.64},{&quot;2026-07-13&quot;:7.71},{&quot;2026-07-14&quot;:7.66},{&quot;2026-07-15&quot;:7.59},{&quot;2026-07-16&quot;:7.59},{&quot;2026-07-17&quot;:7.54},{&quot;2026-07-18&quot;:7.62},{&quot;2026-07-19&quot;:7.45},{&quot;2026-07-20&quot;:7.71},{&quot;2026-07-21&quot;:7.71},{&quot;2026-07-23&quot;:7.93},{&quot;2026-07-25&quot;:8.08},{&quot;2026-07-26&quot;:8.08},{&quot;2026-07-27&quot;:7.99},{&quot;2026-07-29&quot;:7.89},{&quot;2026-07-30&quot;:7.9},{&quot;2026-07-31&quot;:7.6},{&quot;2026-08-01&quot;:7.52},{&quot;2026-08-02&quot;:7.52},{&quot;2026-08-03&quot;:7.52},{&quot;2026-08-04&quot;:7.52},{&quot;2026-08-05&quot;:7.52},{&quot;2026-08-07&quot;:7.33},{&quot;2026-08-08&quot;:7.35},{&quot;2026-08-09&quot;:7.35},{&quot;2026-08-10&quot;:7.35},{&quot;2026-08-11&quot;:7.39},{&quot;2026-08-12&quot;:7.36},{&quot;2026-08-13&quot;:7.55},{&quot;2026-08-14&quot;:7.37},{&quot;2026-08-15&quot;:7.53},{&quot;2026-08-16&quot;:7.49},{&quot;2026-08-17&quot;:7.49},{&quot;2026-08-18&quot;:7.49},{&quot;2026-08-19&quot;:7.51},{&quot;2026-08-20&quot;:7.51},{&quot;2026-08-21&quot;:7.51},{&quot;2026-08-22&quot;:7.34},{&quot;2026-08-23&quot;:7.34},{&quot;2026-08-24&quot;:7.34},{&quot;2026-08-25&quot;:7.34},{&quot;2026-08-26&quot;:7.21},{&quot;2026-08-27&quot;:7.21},{&quot;2026-08-28&quot;:7.23},{&quot;2026-08-29&quot;:7.23},{&quot;2026-08-30&quot;:7.06},{&quot;2026-08-31&quot;:6.9},{&quot;2026-09-01&quot;:6.9},{&quot;2026-09-02&quot;:6.91},{&quot;2026-09-03&quot;:6.95},{&quot;2026-09-04&quot;:6.95},{&quot;2026-09-05&quot;:6.94},{&quot;2026-09-06&quot;:6.94},{&quot;2026-09-07&quot;:6.88},{&quot;2026-09-08&quot;:6.94},{&quot;2026-09-09&quot;:6.95},{&quot;2026-09-10&quot;:6.98},{&quot;2026-09-11&quot;:7.03}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:6.89},{&quot;2026-06-11&quot;:7.29},{&quot;2026-06-12&quot;:6.81},{&quot;2026-06-13&quot;:6.29},{&quot;2026-06-14&quot;:7.12},{&quot;2026-06-15&quot;:6.94},{&quot;2026-06-16&quot;:7.22},{&quot;2026-06-17&quot;:7.18},{&quot;2026-06-18&quot;:6.83},{&quot;2026-06-19&quot;:6.96},{&quot;2026-06-20&quot;:6.92},{&quot;2026-06-21&quot;:7.01},{&quot;2026-06-22&quot;:6.95},{&quot;2026-06-23&quot;:6.53},{&quot;2026-06-24&quot;:6.91},{&quot;2026-06-25&quot;:7.0},{&quot;2026-06-26&quot;:6.85},{&quot;2026-06-27&quot;:6.76},{&quot;2026-06-28&quot;:7.38},{&quot;2026-06-29&quot;:6.82},{&quot;2026-06-30&quot;:7.22},{&quot;2026-07-01&quot;:7.17},{&quot;2026-07-02&quot;:6.79},{&quot;2026-07-03&quot;:6.82},{&quot;2026-07-04&quot;:6.88},{&quot;2026-07-05&quot;:6.61},{&quot;2026-07-06&quot;:6.58},{&quot;2026-07-07&quot;:6.51},{&quot;2026-07-08&quot;:6.38},{&quot;2026-07-09&quot;:6.35},{&quot;2026-07-10&quot;:6.57},{&quot;2026-07-11&quot;:7.3},{&quot;2026-07-12&quot;:6.9},{&quot;2026-07-13&quot;:7.5},{&quot;2026-07-14&quot;:7.45},{&quot;2026-07-15&quot;:6.8},{&quot;2026-07-16&quot;:7.09},{&quot;2026-07-17&quot;:7.11},{&quot;2026-07-18&quot;:7.19},{&quot;2026-07-19&quot;:7.41},{&quot;2026-07-20&quot;:7.22},{&quot;2026-07-21&quot;:7.08},{&quot;2026-07-23&quot;:7.19},{&quot;2026-07-25&quot;:7.3},{&quot;2026-07-26&quot;:6.69},{&quot;2026-07-27&quot;:6.63},{&quot;2026-07-29&quot;:6.96},{&quot;2026-07-30&quot;:7.16},{&quot;2026-07-31&quot;:7.36},{&quot;2026-08-01&quot;:7.36},{&quot;2026-08-02&quot;:7.95},{&quot;2026-08-03&quot;:8.1},{&quot;2026-08-04&quot;:7.2},{&quot;2026-08-05&quot;:7.09},{&quot;2026-08-07&quot;:7.31},{&quot;2026-08-08&quot;:7.39},{&quot;2026-08-09&quot;:7.66},{&quot;2026-08-10&quot;:7.44},{&quot;2026-08-11&quot;:7.41},{&quot;2026-08-12&quot;:7.51},{&quot;2026-08-13&quot;:7.73},{&quot;2026-08-14&quot;:7.74},{&quot;2026-08-15&quot;:6.5},{&quot;2026-08-16&quot;:6.58},{&quot;2026-08-17&quot;:6.59},{&quot;2026-08-18&quot;:6.45},{&quot;2026-08-19&quot;:6.41},{&quot;2026-08-20&quot;:6.41},{&quot;2026-08-21&quot;:6.89},{&quot;2026-08-22&quot;:6.57},{&quot;2026-08-23&quot;:6.59},{&quot;2026-08-24&quot;:6.58},{&quot;2026-08-25&quot;:6.58},{&quot;2026-08-26&quot;:6.59},{&quot;2026-08-27&quot;:6.3},{&quot;2026-08-28&quot;:6.43},{&quot;2026-08-29&quot;:6.43},{&quot;2026-08-30&quot;:6.69},{&quot;2026-08-31&quot;:6.7},{&quot;2026-09-01&quot;:6.7},{&quot;2026-09-02&quot;:6.9},{&quot;2026-09-03&quot;:6.67},{&quot;2026-09-04&quot;:6.64},{&quot;2026-09-05&quot;:7.15},{&quot;2026-09-06&quot;:7.12},{&quot;2026-09-07&quot;:7.0},{&quot;2026-09-08&quot;:7.16},{&quot;2026-09-09&quot;:7.27},{&quot;2026-09-10&quot;:7.09},{&quot;2026-09-11&quot;:7.01}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Legendary Creature — Dinosaur
      </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">
            $5.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="Pantlaza, Sun-Favored" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/5/2524645e-b066-4351-885b-10faa8d819d7.jpg?1783913937" />

        <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">
            Pantlaza, Sun-Favored
        </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 — Dinosaur</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></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="Pantlaza, Sun-Favored" src="https://cards.scryfall.io/large/front/2/5/2524645e-b066-4351-885b-10faa8d819d7.jpg?1783913937" />
    </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">
                $5.37
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-08&quot;:4.0},{&quot;2026-06-10&quot;:4.25},{&quot;2026-06-11&quot;:4.2},{&quot;2026-06-12&quot;:4.13},{&quot;2026-06-13&quot;:4.26},{&quot;2026-06-14&quot;:4.25},{&quot;2026-06-15&quot;:4.11},{&quot;2026-06-16&quot;:4.25},{&quot;2026-06-17&quot;:4.35},{&quot;2026-06-18&quot;:4.57},{&quot;2026-06-19&quot;:4.73},{&quot;2026-06-20&quot;:4.73},{&quot;2026-06-21&quot;:4.66},{&quot;2026-06-22&quot;:4.87},{&quot;2026-06-24&quot;:4.86},{&quot;2026-06-25&quot;:4.86},{&quot;2026-06-26&quot;:4.86},{&quot;2026-06-27&quot;:4.86},{&quot;2026-06-28&quot;:5.0},{&quot;2026-06-29&quot;:4.87},{&quot;2026-06-30&quot;:4.93},{&quot;2026-07-01&quot;:4.87},{&quot;2026-07-02&quot;:4.81},{&quot;2026-07-03&quot;:4.75},{&quot;2026-07-04&quot;:4.68},{&quot;2026-07-05&quot;:4.43},{&quot;2026-07-06&quot;:4.58},{&quot;2026-07-07&quot;:4.52},{&quot;2026-07-08&quot;:4.54},{&quot;2026-07-09&quot;:4.44},{&quot;2026-07-10&quot;:4.55},{&quot;2026-07-11&quot;:4.47},{&quot;2026-07-12&quot;:4.47},{&quot;2026-07-13&quot;:4.47},{&quot;2026-07-14&quot;:4.47},{&quot;2026-07-15&quot;:4.41},{&quot;2026-07-16&quot;:4.45},{&quot;2026-07-17&quot;:4.74},{&quot;2026-07-18&quot;:4.97},{&quot;2026-07-19&quot;:5.19},{&quot;2026-07-20&quot;:5.19},{&quot;2026-07-21&quot;:5.01},{&quot;2026-07-23&quot;:4.76},{&quot;2026-07-25&quot;:4.66},{&quot;2026-07-26&quot;:4.62},{&quot;2026-07-27&quot;:4.46},{&quot;2026-07-29&quot;:4.48},{&quot;2026-07-30&quot;:4.56},{&quot;2026-07-31&quot;:4.64},{&quot;2026-08-01&quot;:4.62},{&quot;2026-08-02&quot;:4.47},{&quot;2026-08-03&quot;:4.47},{&quot;2026-08-04&quot;:4.37},{&quot;2026-08-05&quot;:4.23},{&quot;2026-08-07&quot;:4.24},{&quot;2026-08-08&quot;:4.31},{&quot;2026-08-09&quot;:4.27},{&quot;2026-08-10&quot;:4.36},{&quot;2026-08-11&quot;:4.31},{&quot;2026-08-12&quot;:4.52},{&quot;2026-08-13&quot;:4.59},{&quot;2026-08-14&quot;:4.66},{&quot;2026-08-15&quot;:4.73},{&quot;2026-08-16&quot;:4.85},{&quot;2026-08-17&quot;:4.97},{&quot;2026-08-18&quot;:5.14},{&quot;2026-08-19&quot;:5.14},{&quot;2026-08-20&quot;:5.14},{&quot;2026-08-21&quot;:5.14},{&quot;2026-08-22&quot;:5.14},{&quot;2026-08-23&quot;:5.01},{&quot;2026-08-24&quot;:4.97},{&quot;2026-08-25&quot;:4.97},{&quot;2026-08-26&quot;:4.93},{&quot;2026-08-27&quot;:4.95},{&quot;2026-08-28&quot;:5.0},{&quot;2026-08-29&quot;:5.0},{&quot;2026-08-30&quot;:4.93},{&quot;2026-08-31&quot;:4.76},{&quot;2026-09-01&quot;:4.76},{&quot;2026-09-02&quot;:4.94},{&quot;2026-09-03&quot;:4.83},{&quot;2026-09-04&quot;:4.84},{&quot;2026-09-05&quot;:4.94},{&quot;2026-09-06&quot;:5.14},{&quot;2026-09-07&quot;:5.2},{&quot;2026-09-08&quot;:5.25},{&quot;2026-09-09&quot;:5.25},{&quot;2026-09-10&quot;:5.23},{&quot;2026-09-11&quot;:5.19}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:2.32},{&quot;2026-06-10&quot;:2.48},{&quot;2026-06-11&quot;:2.56},{&quot;2026-06-12&quot;:2.5},{&quot;2026-06-13&quot;:2.5},{&quot;2026-06-14&quot;:2.4},{&quot;2026-06-15&quot;:2.42},{&quot;2026-06-16&quot;:2.58},{&quot;2026-06-17&quot;:2.63},{&quot;2026-06-18&quot;:2.62},{&quot;2026-06-19&quot;:2.68},{&quot;2026-06-20&quot;:2.63},{&quot;2026-06-21&quot;:2.72},{&quot;2026-06-22&quot;:2.72},{&quot;2026-06-24&quot;:2.71},{&quot;2026-06-25&quot;:2.72},{&quot;2026-06-26&quot;:2.72},{&quot;2026-06-27&quot;:2.7},{&quot;2026-06-28&quot;:2.7},{&quot;2026-06-29&quot;:2.7},{&quot;2026-06-30&quot;:2.7},{&quot;2026-07-01&quot;:2.72},{&quot;2026-07-02&quot;:2.72},{&quot;2026-07-03&quot;:2.72},{&quot;2026-07-04&quot;:2.72},{&quot;2026-07-05&quot;:2.76},{&quot;2026-07-06&quot;:2.76},{&quot;2026-07-07&quot;:2.78},{&quot;2026-07-08&quot;:2.83},{&quot;2026-07-09&quot;:2.83},{&quot;2026-07-10&quot;:2.83},{&quot;2026-07-11&quot;:2.87},{&quot;2026-07-12&quot;:2.88},{&quot;2026-07-13&quot;:2.88},{&quot;2026-07-14&quot;:2.88},{&quot;2026-07-15&quot;:2.88},{&quot;2026-07-16&quot;:2.86},{&quot;2026-07-17&quot;:2.86},{&quot;2026-07-18&quot;:2.86},{&quot;2026-07-19&quot;:3.26},{&quot;2026-07-20&quot;:3.31},{&quot;2026-07-21&quot;:3.31},{&quot;2026-07-23&quot;:3.11},{&quot;2026-07-25&quot;:3.13},{&quot;2026-07-26&quot;:3.13},{&quot;2026-07-27&quot;:3.41},{&quot;2026-07-29&quot;:3.51},{&quot;2026-07-30&quot;:3.27},{&quot;2026-07-31&quot;:3.32},{&quot;2026-08-01&quot;:3.32},{&quot;2026-08-02&quot;:3.42},{&quot;2026-08-03&quot;:3.42},{&quot;2026-08-04&quot;:3.71},{&quot;2026-08-05&quot;:3.71},{&quot;2026-08-07&quot;:4.09},{&quot;2026-08-08&quot;:4.14},{&quot;2026-08-09&quot;:4.22},{&quot;2026-08-10&quot;:4.22},{&quot;2026-08-11&quot;:5.19},{&quot;2026-08-12&quot;:4.97},{&quot;2026-08-13&quot;:4.93},{&quot;2026-08-14&quot;:4.93},{&quot;2026-08-15&quot;:4.93},{&quot;2026-08-16&quot;:4.95},{&quot;2026-08-17&quot;:4.95},{&quot;2026-08-18&quot;:5.04},{&quot;2026-08-19&quot;:4.99},{&quot;2026-08-20&quot;:4.99},{&quot;2026-08-21&quot;:5.2},{&quot;2026-08-22&quot;:5.26},{&quot;2026-08-23&quot;:5.31},{&quot;2026-08-24&quot;:5.27},{&quot;2026-08-25&quot;:5.27},{&quot;2026-08-26&quot;:5.46},{&quot;2026-08-27&quot;:5.32},{&quot;2026-08-28&quot;:5.32},{&quot;2026-08-29&quot;:5.32},{&quot;2026-08-30&quot;:5.32},{&quot;2026-08-31&quot;:5.32},{&quot;2026-09-01&quot;:5.32},{&quot;2026-09-02&quot;:5.34},{&quot;2026-09-03&quot;:5.34},{&quot;2026-09-04&quot;:5.34},{&quot;2026-09-05&quot;:5.34},{&quot;2026-09-06&quot;:5.34},{&quot;2026-09-07&quot;:5.34},{&quot;2026-09-08&quot;:5.45},{&quot;2026-09-09&quot;:5.29},{&quot;2026-09-10&quot;:5.29},{&quot;2026-09-11&quot;:5.37}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

        <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">
            Wrathful Raptors
        </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 — Dinosaur</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-r'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Wrathful Raptors" src="https://cards.scryfall.io/large/front/4/9/49243e92-93e3-4090-b4f7-86fa4ca2fef5.jpg?1783913908" />
    </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.09
              </span>

            </div>
          </div>

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:3.84},{&quot;2026-06-11&quot;:3.83},{&quot;2026-06-12&quot;:3.84},{&quot;2026-06-13&quot;:3.84},{&quot;2026-06-14&quot;:3.92},{&quot;2026-06-15&quot;:3.92},{&quot;2026-06-16&quot;:4.05},{&quot;2026-06-17&quot;:4.08},{&quot;2026-06-18&quot;:4.08},{&quot;2026-06-19&quot;:4.12},{&quot;2026-06-20&quot;:4.19},{&quot;2026-06-21&quot;:4.26},{&quot;2026-06-22&quot;:4.24},{&quot;2026-06-23&quot;:4.22},{&quot;2026-06-24&quot;:4.34},{&quot;2026-06-25&quot;:4.31},{&quot;2026-06-26&quot;:4.19},{&quot;2026-06-27&quot;:4.15},{&quot;2026-06-28&quot;:4.13},{&quot;2026-06-29&quot;:4.05},{&quot;2026-06-30&quot;:4.05},{&quot;2026-07-01&quot;:4.09},{&quot;2026-07-02&quot;:4.15},{&quot;2026-07-03&quot;:4.19},{&quot;2026-07-04&quot;:4.19},{&quot;2026-07-05&quot;:4.18},{&quot;2026-07-06&quot;:4.25},{&quot;2026-07-07&quot;:4.24},{&quot;2026-07-08&quot;:4.23},{&quot;2026-07-09&quot;:4.15},{&quot;2026-07-10&quot;:4.2},{&quot;2026-07-11&quot;:4.24},{&quot;2026-07-12&quot;:4.32},{&quot;2026-07-13&quot;:4.4},{&quot;2026-07-14&quot;:4.4},{&quot;2026-07-15&quot;:4.39},{&quot;2026-07-16&quot;:4.35},{&quot;2026-07-17&quot;:4.34},{&quot;2026-07-18&quot;:4.27},{&quot;2026-07-19&quot;:4.24},{&quot;2026-07-20&quot;:4.2},{&quot;2026-07-21&quot;:4.1},{&quot;2026-07-23&quot;:4.19},{&quot;2026-07-25&quot;:4.16},{&quot;2026-07-26&quot;:4.16},{&quot;2026-07-27&quot;:4.12},{&quot;2026-07-29&quot;:4.2},{&quot;2026-07-30&quot;:4.11},{&quot;2026-07-31&quot;:4.23},{&quot;2026-08-01&quot;:4.31},{&quot;2026-08-02&quot;:4.36},{&quot;2026-08-03&quot;:4.26},{&quot;2026-08-04&quot;:4.24},{&quot;2026-08-05&quot;:4.36},{&quot;2026-08-07&quot;:4.33},{&quot;2026-08-08&quot;:4.25},{&quot;2026-08-09&quot;:4.17},{&quot;2026-08-10&quot;:4.08},{&quot;2026-08-11&quot;:4.06},{&quot;2026-08-12&quot;:4.06},{&quot;2026-08-13&quot;:4.03},{&quot;2026-08-14&quot;:4.05},{&quot;2026-08-15&quot;:4.13},{&quot;2026-08-16&quot;:4.25},{&quot;2026-08-17&quot;:4.28},{&quot;2026-08-18&quot;:4.33},{&quot;2026-08-19&quot;:4.33},{&quot;2026-08-20&quot;:4.33},{&quot;2026-08-21&quot;:4.23},{&quot;2026-08-22&quot;:4.3},{&quot;2026-08-23&quot;:4.32},{&quot;2026-08-24&quot;:4.47},{&quot;2026-08-25&quot;:4.47},{&quot;2026-08-26&quot;:4.45},{&quot;2026-08-27&quot;:4.42},{&quot;2026-08-28&quot;:4.43},{&quot;2026-08-29&quot;:4.43},{&quot;2026-08-30&quot;:4.48},{&quot;2026-08-31&quot;:4.63},{&quot;2026-09-01&quot;:4.63},{&quot;2026-09-02&quot;:4.8},{&quot;2026-09-03&quot;:5.04},{&quot;2026-09-04&quot;:5.11},{&quot;2026-09-05&quot;:5.11},{&quot;2026-09-06&quot;:5.19},{&quot;2026-09-07&quot;:5.11},{&quot;2026-09-08&quot;:5.08},{&quot;2026-09-09&quot;:5.07},{&quot;2026-09-10&quot;:5.07},{&quot;2026-09-11&quot;:5.09}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

        <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">
            Thornspire Verge
        </h3>

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Thornspire Verge" src="https://cards.scryfall.io/large/front/7/e/7e1cdc03-6faa-4138-9a52-caafbe34fb59.jpg?1783909426" />
    </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.95
              </span>

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-11&quot;:5.78},{&quot;2026-06-12&quot;:5.78},{&quot;2026-06-13&quot;:5.78},{&quot;2026-06-14&quot;:5.78},{&quot;2026-06-15&quot;:5.74},{&quot;2026-06-16&quot;:5.74},{&quot;2026-06-17&quot;:5.74},{&quot;2026-06-18&quot;:5.74},{&quot;2026-06-19&quot;:5.71},{&quot;2026-06-20&quot;:5.71},{&quot;2026-06-21&quot;:5.73},{&quot;2026-06-22&quot;:5.73},{&quot;2026-06-23&quot;:5.73},{&quot;2026-06-24&quot;:5.73},{&quot;2026-06-25&quot;:5.73},{&quot;2026-06-26&quot;:5.73},{&quot;2026-06-27&quot;:5.81},{&quot;2026-06-28&quot;:5.81},{&quot;2026-06-29&quot;:5.76},{&quot;2026-06-30&quot;:5.78},{&quot;2026-07-01&quot;:5.79},{&quot;2026-07-02&quot;:5.79},{&quot;2026-07-03&quot;:5.79},{&quot;2026-07-04&quot;:5.77},{&quot;2026-07-05&quot;:5.77},{&quot;2026-07-06&quot;:5.7},{&quot;2026-07-07&quot;:5.74},{&quot;2026-07-08&quot;:5.63},{&quot;2026-07-09&quot;:5.63},{&quot;2026-07-10&quot;:5.66},{&quot;2026-07-11&quot;:5.67},{&quot;2026-07-12&quot;:5.56},{&quot;2026-07-13&quot;:5.6},{&quot;2026-07-14&quot;:5.62},{&quot;2026-07-15&quot;:5.54},{&quot;2026-07-16&quot;:5.52},{&quot;2026-07-17&quot;:5.46},{&quot;2026-07-18&quot;:5.46},{&quot;2026-07-19&quot;:5.6},{&quot;2026-07-20&quot;:5.6},{&quot;2026-07-21&quot;:5.6},{&quot;2026-07-23&quot;:5.67},{&quot;2026-07-25&quot;:5.67},{&quot;2026-07-26&quot;:5.72},{&quot;2026-07-27&quot;:5.77},{&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;:5.84},{&quot;2026-08-01&quot;:5.84},{&quot;2026-08-02&quot;:5.84},{&quot;2026-08-03&quot;:5.84},{&quot;2026-08-04&quot;:5.84},{&quot;2026-08-05&quot;:5.83},{&quot;2026-08-07&quot;:5.85},{&quot;2026-08-08&quot;:5.85},{&quot;2026-08-09&quot;:5.85},{&quot;2026-08-10&quot;:5.85},{&quot;2026-08-11&quot;:5.97},{&quot;2026-08-12&quot;:5.86},{&quot;2026-08-13&quot;:5.8},{&quot;2026-08-14&quot;:5.8},{&quot;2026-08-15&quot;:5.8},{&quot;2026-08-16&quot;:5.8},{&quot;2026-08-17&quot;:5.7},{&quot;2026-08-18&quot;:5.7},{&quot;2026-08-19&quot;:5.7},{&quot;2026-08-20&quot;:5.7},{&quot;2026-08-21&quot;:5.59},{&quot;2026-08-22&quot;:5.54},{&quot;2026-08-23&quot;:5.54},{&quot;2026-08-24&quot;:5.54},{&quot;2026-08-25&quot;:5.54},{&quot;2026-08-26&quot;:5.66},{&quot;2026-08-27&quot;:5.66},{&quot;2026-08-28&quot;:5.66},{&quot;2026-08-29&quot;:5.66},{&quot;2026-08-30&quot;:5.65},{&quot;2026-08-31&quot;:5.54},{&quot;2026-09-01&quot;:5.54},{&quot;2026-09-02&quot;:5.54},{&quot;2026-09-03&quot;:5.47},{&quot;2026-09-04&quot;:5.49},{&quot;2026-09-05&quot;:5.51},{&quot;2026-09-06&quot;:5.51},{&quot;2026-09-07&quot;:5.43},{&quot;2026-09-08&quot;:5.43},{&quot;2026-09-09&quot;:5.42},{&quot;2026-09-10&quot;:5.36},{&quot;2026-09-11&quot;:5.33}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:5.42},{&quot;2026-06-12&quot;:5.44},{&quot;2026-06-13&quot;:5.32},{&quot;2026-06-14&quot;:5.12},{&quot;2026-06-15&quot;:5.02},{&quot;2026-06-16&quot;:4.98},{&quot;2026-06-17&quot;:5.11},{&quot;2026-06-18&quot;:5.12},{&quot;2026-06-19&quot;:5.25},{&quot;2026-06-20&quot;:5.29},{&quot;2026-06-21&quot;:5.28},{&quot;2026-06-22&quot;:5.24},{&quot;2026-06-23&quot;:5.23},{&quot;2026-06-24&quot;:5.26},{&quot;2026-06-25&quot;:5.36},{&quot;2026-06-26&quot;:5.32},{&quot;2026-06-27&quot;:5.28},{&quot;2026-06-28&quot;:5.2},{&quot;2026-06-29&quot;:5.0},{&quot;2026-06-30&quot;:4.99},{&quot;2026-07-01&quot;:4.72},{&quot;2026-07-02&quot;:4.65},{&quot;2026-07-03&quot;:4.73},{&quot;2026-07-04&quot;:4.7},{&quot;2026-07-05&quot;:4.96},{&quot;2026-07-06&quot;:5.11},{&quot;2026-07-07&quot;:5.13},{&quot;2026-07-08&quot;:5.32},{&quot;2026-07-09&quot;:5.49},{&quot;2026-07-10&quot;:5.53},{&quot;2026-07-11&quot;:5.6},{&quot;2026-07-12&quot;:5.6},{&quot;2026-07-13&quot;:5.51},{&quot;2026-07-14&quot;:5.47},{&quot;2026-07-15&quot;:5.31},{&quot;2026-07-16&quot;:5.17},{&quot;2026-07-17&quot;:4.99},{&quot;2026-07-18&quot;:5.11},{&quot;2026-07-19&quot;:5.34},{&quot;2026-07-20&quot;:5.58},{&quot;2026-07-21&quot;:5.66},{&quot;2026-07-23&quot;:5.61},{&quot;2026-07-25&quot;:5.65},{&quot;2026-07-26&quot;:5.65},{&quot;2026-07-27&quot;:5.57},{&quot;2026-07-28&quot;:5.5},{&quot;2026-07-29&quot;:5.38},{&quot;2026-07-30&quot;:5.23},{&quot;2026-07-31&quot;:5.19},{&quot;2026-08-01&quot;:5.2},{&quot;2026-08-02&quot;:5.48},{&quot;2026-08-03&quot;:5.36},{&quot;2026-08-04&quot;:5.43},{&quot;2026-08-05&quot;:5.13},{&quot;2026-08-07&quot;:4.96},{&quot;2026-08-08&quot;:4.96},{&quot;2026-08-09&quot;:4.77},{&quot;2026-08-10&quot;:4.56},{&quot;2026-08-11&quot;:4.82},{&quot;2026-08-12&quot;:4.79},{&quot;2026-08-13&quot;:4.83},{&quot;2026-08-14&quot;:4.95},{&quot;2026-08-15&quot;:5.0},{&quot;2026-08-16&quot;:5.08},{&quot;2026-08-17&quot;:5.15},{&quot;2026-08-18&quot;:5.19},{&quot;2026-08-19&quot;:5.31},{&quot;2026-08-20&quot;:5.31},{&quot;2026-08-21&quot;:5.26},{&quot;2026-08-22&quot;:5.21},{&quot;2026-08-23&quot;:5.01},{&quot;2026-08-24&quot;:4.93},{&quot;2026-08-25&quot;:4.93},{&quot;2026-08-26&quot;:5.01},{&quot;2026-08-27&quot;:5.0},{&quot;2026-08-28&quot;:4.98},{&quot;2026-08-29&quot;:4.98},{&quot;2026-08-30&quot;:4.66},{&quot;2026-08-31&quot;:4.48},{&quot;2026-09-01&quot;:4.48},{&quot;2026-09-02&quot;:4.67},{&quot;2026-09-03&quot;:5.01},{&quot;2026-09-04&quot;:5.07},{&quot;2026-09-05&quot;:5.23},{&quot;2026-09-06&quot;:5.22},{&quot;2026-09-07&quot;:5.0},{&quot;2026-09-08&quot;:4.99},{&quot;2026-09-09&quot;:4.88},{&quot;2026-09-10&quot;:4.97},{&quot;2026-09-11&quot;:4.95}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Curious Altisaur" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/3/83fb87d8-d6f6-4cb0-aca1-49e6fcb181b1.jpg?1783913908" />

        <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">
            Curious Altisaur
        </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 — Dinosaur</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Curious Altisaur" src="https://cards.scryfall.io/large/front/8/3/83fb87d8-d6f6-4cb0-aca1-49e6fcb181b1.jpg?1783913908" />
    </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.41
              </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">$2.00</span>
              <span class="text-xs text-grey-text">Credit: $2.60</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:3.64},{&quot;2026-06-14&quot;:3.77},{&quot;2026-06-15&quot;:3.77},{&quot;2026-06-16&quot;:3.77},{&quot;2026-06-17&quot;:3.87},{&quot;2026-06-18&quot;:3.88},{&quot;2026-06-19&quot;:4.12},{&quot;2026-06-20&quot;:4.12},{&quot;2026-06-21&quot;:4.13},{&quot;2026-06-22&quot;:4.15},{&quot;2026-06-23&quot;:4.07},{&quot;2026-06-24&quot;:4.03},{&quot;2026-06-25&quot;:3.91},{&quot;2026-06-26&quot;:3.73},{&quot;2026-06-27&quot;:3.86},{&quot;2026-06-28&quot;:3.79},{&quot;2026-06-29&quot;:3.86},{&quot;2026-06-30&quot;:3.84},{&quot;2026-07-01&quot;:3.83},{&quot;2026-07-02&quot;:3.85},{&quot;2026-07-03&quot;:3.85},{&quot;2026-07-04&quot;:3.83},{&quot;2026-07-05&quot;:3.84},{&quot;2026-07-06&quot;:3.78},{&quot;2026-07-07&quot;:3.64},{&quot;2026-07-08&quot;:3.67},{&quot;2026-07-09&quot;:3.59},{&quot;2026-07-10&quot;:3.77},{&quot;2026-07-11&quot;:3.8},{&quot;2026-07-12&quot;:3.9},{&quot;2026-07-13&quot;:3.96},{&quot;2026-07-14&quot;:3.96},{&quot;2026-07-15&quot;:3.99},{&quot;2026-07-16&quot;:3.93},{&quot;2026-07-17&quot;:3.95},{&quot;2026-07-18&quot;:4.03},{&quot;2026-07-19&quot;:3.95},{&quot;2026-07-20&quot;:4.0},{&quot;2026-07-21&quot;:4.05},{&quot;2026-07-22&quot;:4.25},{&quot;2026-07-23&quot;:4.29},{&quot;2026-07-24&quot;:4.35},{&quot;2026-07-25&quot;:4.43},{&quot;2026-07-26&quot;:4.32},{&quot;2026-07-27&quot;:4.22},{&quot;2026-07-28&quot;:4.12},{&quot;2026-07-29&quot;:4.09},{&quot;2026-07-30&quot;:4.03},{&quot;2026-07-31&quot;:4.16},{&quot;2026-08-01&quot;:4.21},{&quot;2026-08-02&quot;:4.11},{&quot;2026-08-03&quot;:4.06},{&quot;2026-08-04&quot;:4.07},{&quot;2026-08-05&quot;:4.02},{&quot;2026-08-07&quot;:3.88},{&quot;2026-08-08&quot;:3.9},{&quot;2026-08-09&quot;:3.74},{&quot;2026-08-10&quot;:3.88},{&quot;2026-08-11&quot;:3.82},{&quot;2026-08-12&quot;:3.77},{&quot;2026-08-13&quot;:3.7},{&quot;2026-08-14&quot;:3.6},{&quot;2026-08-15&quot;:3.66},{&quot;2026-08-16&quot;:3.74},{&quot;2026-08-17&quot;:3.72},{&quot;2026-08-18&quot;:3.92},{&quot;2026-08-19&quot;:3.92},{&quot;2026-08-20&quot;:4.1},{&quot;2026-08-21&quot;:4.11},{&quot;2026-08-22&quot;:4.41},{&quot;2026-08-23&quot;:4.41},{&quot;2026-08-24&quot;:4.49},{&quot;2026-08-25&quot;:4.46},{&quot;2026-08-26&quot;:4.47},{&quot;2026-08-27&quot;:4.45},{&quot;2026-08-28&quot;:4.45},{&quot;2026-08-29&quot;:4.45},{&quot;2026-08-30&quot;:4.38},{&quot;2026-08-31&quot;:4.26},{&quot;2026-09-01&quot;:4.31},{&quot;2026-09-02&quot;:4.16},{&quot;2026-09-03&quot;:4.1},{&quot;2026-09-04&quot;:4.18},{&quot;2026-09-05&quot;:4.19},{&quot;2026-09-06&quot;:4.21},{&quot;2026-09-07&quot;:4.24},{&quot;2026-09-08&quot;:4.47},{&quot;2026-09-09&quot;:4.47},{&quot;2026-09-10&quot;:4.51},{&quot;2026-09-11&quot;:4.41}]}"
        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="74126"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-ltr ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

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

          <span class="text-sm font-medium text-nine-white">
            $3.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="Entish Restoration" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/d/cd4dbf80-187b-40e3-9e0b-526f78d9a34e.jpg?1783916269" />

        <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">
            Entish Restoration
        </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="Entish Restoration" src="https://cards.scryfall.io/large/front/c/d/cd4dbf80-187b-40e3-9e0b-526f78d9a34e.jpg?1783916269" />
    </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.91
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:4.28},{&quot;2026-06-11&quot;:4.29},{&quot;2026-06-12&quot;:4.31},{&quot;2026-06-13&quot;:4.34},{&quot;2026-06-14&quot;:4.33},{&quot;2026-06-15&quot;:4.33},{&quot;2026-06-16&quot;:4.33},{&quot;2026-06-17&quot;:4.3},{&quot;2026-06-18&quot;:4.27},{&quot;2026-06-19&quot;:4.27},{&quot;2026-06-20&quot;:4.27},{&quot;2026-06-21&quot;:4.27},{&quot;2026-06-22&quot;:4.24},{&quot;2026-06-23&quot;:4.24},{&quot;2026-06-24&quot;:4.24},{&quot;2026-06-25&quot;:4.24},{&quot;2026-06-26&quot;:4.27},{&quot;2026-06-27&quot;:4.27},{&quot;2026-06-28&quot;:4.2},{&quot;2026-06-29&quot;:4.2},{&quot;2026-06-30&quot;:4.2},{&quot;2026-07-01&quot;:4.2},{&quot;2026-07-02&quot;:4.16},{&quot;2026-07-03&quot;:4.16},{&quot;2026-07-04&quot;:4.22},{&quot;2026-07-05&quot;:4.22},{&quot;2026-07-06&quot;:4.22},{&quot;2026-07-07&quot;:4.34},{&quot;2026-07-08&quot;:4.27},{&quot;2026-07-09&quot;:4.19},{&quot;2026-07-10&quot;:4.35},{&quot;2026-07-11&quot;:4.35},{&quot;2026-07-12&quot;:4.4},{&quot;2026-07-13&quot;:4.34},{&quot;2026-07-14&quot;:4.39},{&quot;2026-07-15&quot;:4.39},{&quot;2026-07-16&quot;:4.39},{&quot;2026-07-17&quot;:4.39},{&quot;2026-07-18&quot;:4.39},{&quot;2026-07-19&quot;:4.39},{&quot;2026-07-20&quot;:4.42},{&quot;2026-07-21&quot;:4.47},{&quot;2026-07-23&quot;:4.44},{&quot;2026-07-25&quot;:4.42},{&quot;2026-07-26&quot;:4.42},{&quot;2026-07-27&quot;:4.42},{&quot;2026-07-29&quot;:4.38},{&quot;2026-07-30&quot;:4.26},{&quot;2026-07-31&quot;:4.3},{&quot;2026-08-01&quot;:4.22},{&quot;2026-08-02&quot;:4.24},{&quot;2026-08-03&quot;:4.24},{&quot;2026-08-04&quot;:4.31},{&quot;2026-08-05&quot;:4.31},{&quot;2026-08-07&quot;:4.2},{&quot;2026-08-08&quot;:4.21},{&quot;2026-08-09&quot;:4.21},{&quot;2026-08-10&quot;:4.21},{&quot;2026-08-11&quot;:4.17},{&quot;2026-08-12&quot;:4.13},{&quot;2026-08-13&quot;:4.13},{&quot;2026-08-14&quot;:4.17},{&quot;2026-08-15&quot;:4.13},{&quot;2026-08-16&quot;:4.05},{&quot;2026-08-17&quot;:4.02},{&quot;2026-08-18&quot;:4.08},{&quot;2026-08-19&quot;:4.19},{&quot;2026-08-20&quot;:4.19},{&quot;2026-08-21&quot;:4.22},{&quot;2026-08-22&quot;:4.24},{&quot;2026-08-23&quot;:4.24},{&quot;2026-08-24&quot;:4.24},{&quot;2026-08-25&quot;:4.24},{&quot;2026-08-26&quot;:4.27},{&quot;2026-08-27&quot;:4.27},{&quot;2026-08-28&quot;:4.16},{&quot;2026-08-29&quot;:4.16},{&quot;2026-08-30&quot;:4.13},{&quot;2026-08-31&quot;:4.11},{&quot;2026-09-01&quot;:4.11},{&quot;2026-09-02&quot;:4.15},{&quot;2026-09-03&quot;:4.11},{&quot;2026-09-04&quot;:4.03},{&quot;2026-09-05&quot;:4.03},{&quot;2026-09-06&quot;:4.03},{&quot;2026-09-07&quot;:3.99},{&quot;2026-09-08&quot;:4.11},{&quot;2026-09-09&quot;:4.07},{&quot;2026-09-10&quot;:4.34},{&quot;2026-09-11&quot;:4.45}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:3.19},{&quot;2026-06-11&quot;:3.53},{&quot;2026-06-12&quot;:3.7},{&quot;2026-06-13&quot;:3.49},{&quot;2026-06-14&quot;:3.46},{&quot;2026-06-15&quot;:3.97},{&quot;2026-06-16&quot;:3.89},{&quot;2026-06-17&quot;:3.71},{&quot;2026-06-18&quot;:3.66},{&quot;2026-06-19&quot;:3.0},{&quot;2026-06-20&quot;:2.97},{&quot;2026-06-21&quot;:2.9},{&quot;2026-06-22&quot;:2.59},{&quot;2026-06-23&quot;:2.53},{&quot;2026-06-24&quot;:2.42},{&quot;2026-06-25&quot;:2.18},{&quot;2026-06-26&quot;:2.43},{&quot;2026-06-27&quot;:2.58},{&quot;2026-06-28&quot;:2.59},{&quot;2026-06-29&quot;:3.37},{&quot;2026-06-30&quot;:3.36},{&quot;2026-07-01&quot;:3.03},{&quot;2026-07-02&quot;:2.83},{&quot;2026-07-03&quot;:2.97},{&quot;2026-07-04&quot;:3.1},{&quot;2026-07-05&quot;:2.88},{&quot;2026-07-06&quot;:3.3},{&quot;2026-07-07&quot;:3.31},{&quot;2026-07-08&quot;:3.17},{&quot;2026-07-09&quot;:3.43},{&quot;2026-07-10&quot;:3.57},{&quot;2026-07-11&quot;:3.29},{&quot;2026-07-12&quot;:3.38},{&quot;2026-07-13&quot;:3.3},{&quot;2026-07-14&quot;:3.39},{&quot;2026-07-15&quot;:3.34},{&quot;2026-07-16&quot;:3.56},{&quot;2026-07-17&quot;:3.76},{&quot;2026-07-18&quot;:3.68},{&quot;2026-07-19&quot;:3.59},{&quot;2026-07-20&quot;:3.67},{&quot;2026-07-21&quot;:3.56},{&quot;2026-07-23&quot;:3.16},{&quot;2026-07-25&quot;:2.98},{&quot;2026-07-26&quot;:2.79},{&quot;2026-07-27&quot;:2.91},{&quot;2026-07-29&quot;:3.33},{&quot;2026-07-30&quot;:3.57},{&quot;2026-07-31&quot;:4.06},{&quot;2026-08-01&quot;:3.34},{&quot;2026-08-02&quot;:2.92},{&quot;2026-08-03&quot;:3.79},{&quot;2026-08-04&quot;:4.2},{&quot;2026-08-05&quot;:3.82},{&quot;2026-08-07&quot;:3.2},{&quot;2026-08-08&quot;:3.09},{&quot;2026-08-09&quot;:2.85},{&quot;2026-08-10&quot;:3.68},{&quot;2026-08-11&quot;:3.79},{&quot;2026-08-12&quot;:3.53},{&quot;2026-08-13&quot;:3.46},{&quot;2026-08-14&quot;:3.2},{&quot;2026-08-15&quot;:3.05},{&quot;2026-08-16&quot;:3.05},{&quot;2026-08-17&quot;:3.13},{&quot;2026-08-18&quot;:3.17},{&quot;2026-08-19&quot;:3.14},{&quot;2026-08-20&quot;:3.14},{&quot;2026-08-21&quot;:3.18},{&quot;2026-08-22&quot;:3.32},{&quot;2026-08-23&quot;:3.57},{&quot;2026-08-24&quot;:3.62},{&quot;2026-08-25&quot;:3.62},{&quot;2026-08-26&quot;:3.69},{&quot;2026-08-27&quot;:3.6},{&quot;2026-08-28&quot;:3.73},{&quot;2026-08-29&quot;:3.73},{&quot;2026-08-30&quot;:3.54},{&quot;2026-08-31&quot;:3.6},{&quot;2026-09-01&quot;:3.6},{&quot;2026-09-02&quot;:3.6},{&quot;2026-09-03&quot;:3.84},{&quot;2026-09-04&quot;:3.55},{&quot;2026-09-05&quot;:3.38},{&quot;2026-09-06&quot;:3.36},{&quot;2026-09-07&quot;:3.86},{&quot;2026-09-08&quot;:4.07},{&quot;2026-09-09&quot;:4.15},{&quot;2026-09-10&quot;:4.02},{&quot;2026-09-11&quot;:3.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="19020"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-dmr ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

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

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Nature&#39;s Lore
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Nature&#39;s Lore" src="https://cards.scryfall.io/large/front/e/d/ed3e1d00-effa-46ac-a899-030c0eb149ac.jpg?1783918363" />
    </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.06
              </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">
                $9.05
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-08&quot;:8.37},{&quot;2026-06-10&quot;:8.37},{&quot;2026-06-11&quot;:8.37},{&quot;2026-06-12&quot;:8.37},{&quot;2026-06-13&quot;:8.37},{&quot;2026-06-14&quot;:8.37},{&quot;2026-06-15&quot;:8.37},{&quot;2026-06-16&quot;:8.52},{&quot;2026-06-17&quot;:8.52},{&quot;2026-06-18&quot;:8.49},{&quot;2026-06-19&quot;:8.52},{&quot;2026-06-20&quot;:8.67},{&quot;2026-06-21&quot;:8.67},{&quot;2026-06-22&quot;:8.67},{&quot;2026-06-24&quot;:8.67},{&quot;2026-06-25&quot;:8.67},{&quot;2026-06-26&quot;:8.67},{&quot;2026-06-27&quot;:8.67},{&quot;2026-06-28&quot;:8.7},{&quot;2026-06-29&quot;:8.7},{&quot;2026-06-30&quot;:8.75},{&quot;2026-07-01&quot;:8.75},{&quot;2026-07-02&quot;:8.78},{&quot;2026-07-03&quot;:8.78},{&quot;2026-07-04&quot;:8.78},{&quot;2026-07-05&quot;:8.78},{&quot;2026-07-06&quot;:8.78},{&quot;2026-07-07&quot;:8.78},{&quot;2026-07-08&quot;:8.89},{&quot;2026-07-09&quot;:8.89},{&quot;2026-07-10&quot;:8.98},{&quot;2026-07-11&quot;:8.98},{&quot;2026-07-12&quot;:8.94},{&quot;2026-07-13&quot;:8.92},{&quot;2026-07-14&quot;:8.92},{&quot;2026-07-15&quot;:8.95},{&quot;2026-07-16&quot;:8.95},{&quot;2026-07-17&quot;:8.95},{&quot;2026-07-18&quot;:8.95},{&quot;2026-07-19&quot;:8.95},{&quot;2026-07-20&quot;:8.96},{&quot;2026-07-21&quot;:8.96},{&quot;2026-07-23&quot;:8.97},{&quot;2026-07-25&quot;:9.17},{&quot;2026-07-26&quot;:9.17},{&quot;2026-07-27&quot;:9.2},{&quot;2026-07-29&quot;:9.25},{&quot;2026-07-30&quot;:9.25},{&quot;2026-07-31&quot;:9.16},{&quot;2026-08-01&quot;:9.16},{&quot;2026-08-02&quot;:9.07},{&quot;2026-08-03&quot;:9.07},{&quot;2026-08-04&quot;:9.07},{&quot;2026-08-05&quot;:9.07},{&quot;2026-08-07&quot;:9.07},{&quot;2026-08-08&quot;:9.07},{&quot;2026-08-09&quot;:9.01},{&quot;2026-08-10&quot;:9.01},{&quot;2026-08-11&quot;:8.98},{&quot;2026-08-12&quot;:8.98},{&quot;2026-08-13&quot;:8.99},{&quot;2026-08-14&quot;:9.07},{&quot;2026-08-15&quot;:9.07},{&quot;2026-08-16&quot;:9.09},{&quot;2026-08-17&quot;:9.09},{&quot;2026-08-18&quot;:9.08},{&quot;2026-08-19&quot;:9.04},{&quot;2026-08-20&quot;:9.04},{&quot;2026-08-21&quot;:9.04},{&quot;2026-08-22&quot;:9.04},{&quot;2026-08-23&quot;:9.02},{&quot;2026-08-24&quot;:9.02},{&quot;2026-08-25&quot;:9.02},{&quot;2026-08-26&quot;:9.07},{&quot;2026-08-27&quot;:9.07},{&quot;2026-08-28&quot;:9.07},{&quot;2026-08-29&quot;:9.07},{&quot;2026-08-30&quot;:9.01},{&quot;2026-08-31&quot;:9.01},{&quot;2026-09-01&quot;:9.01},{&quot;2026-09-02&quot;:9.01},{&quot;2026-09-03&quot;:9.01},{&quot;2026-09-04&quot;:9.01},{&quot;2026-09-05&quot;:9.03},{&quot;2026-09-06&quot;:9.03},{&quot;2026-09-07&quot;:9.03},{&quot;2026-09-08&quot;:9.03},{&quot;2026-09-09&quot;:9.03},{&quot;2026-09-10&quot;:9.05},{&quot;2026-09-11&quot;:9.05}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:3.07},{&quot;2026-06-10&quot;:3.0},{&quot;2026-06-11&quot;:2.92},{&quot;2026-06-12&quot;:3.0},{&quot;2026-06-13&quot;:3.0},{&quot;2026-06-14&quot;:2.93},{&quot;2026-06-15&quot;:2.97},{&quot;2026-06-16&quot;:2.97},{&quot;2026-06-17&quot;:2.97},{&quot;2026-06-18&quot;:2.97},{&quot;2026-06-19&quot;:3.03},{&quot;2026-06-20&quot;:3.02},{&quot;2026-06-21&quot;:3.07},{&quot;2026-06-22&quot;:3.07},{&quot;2026-06-24&quot;:3.21},{&quot;2026-06-25&quot;:3.26},{&quot;2026-06-26&quot;:3.14},{&quot;2026-06-27&quot;:3.21},{&quot;2026-06-28&quot;:3.18},{&quot;2026-06-29&quot;:3.21},{&quot;2026-06-30&quot;:3.21},{&quot;2026-07-01&quot;:3.22},{&quot;2026-07-02&quot;:3.22},{&quot;2026-07-03&quot;:3.22},{&quot;2026-07-04&quot;:3.22},{&quot;2026-07-05&quot;:3.27},{&quot;2026-07-06&quot;:3.27},{&quot;2026-07-07&quot;:3.27},{&quot;2026-07-08&quot;:3.33},{&quot;2026-07-09&quot;:3.33},{&quot;2026-07-10&quot;:3.33},{&quot;2026-07-11&quot;:3.36},{&quot;2026-07-12&quot;:3.36},{&quot;2026-07-13&quot;:3.35},{&quot;2026-07-14&quot;:3.43},{&quot;2026-07-15&quot;:3.39},{&quot;2026-07-16&quot;:3.39},{&quot;2026-07-17&quot;:3.45},{&quot;2026-07-18&quot;:3.41},{&quot;2026-07-19&quot;:3.38},{&quot;2026-07-20&quot;:3.34},{&quot;2026-07-21&quot;:3.34},{&quot;2026-07-23&quot;:3.34},{&quot;2026-07-25&quot;:3.38},{&quot;2026-07-26&quot;:3.38},{&quot;2026-07-27&quot;:3.39},{&quot;2026-07-29&quot;:3.41},{&quot;2026-07-30&quot;:3.41},{&quot;2026-07-31&quot;:3.42},{&quot;2026-08-01&quot;:3.34},{&quot;2026-08-02&quot;:3.4},{&quot;2026-08-03&quot;:3.46},{&quot;2026-08-04&quot;:3.46},{&quot;2026-08-05&quot;:3.45},{&quot;2026-08-07&quot;:3.32},{&quot;2026-08-08&quot;:3.32},{&quot;2026-08-09&quot;:3.32},{&quot;2026-08-10&quot;:3.32},{&quot;2026-08-11&quot;:3.29},{&quot;2026-08-12&quot;:3.24},{&quot;2026-08-13&quot;:3.26},{&quot;2026-08-14&quot;:3.26},{&quot;2026-08-15&quot;:3.27},{&quot;2026-08-16&quot;:3.24},{&quot;2026-08-17&quot;:3.22},{&quot;2026-08-18&quot;:3.22},{&quot;2026-08-19&quot;:3.22},{&quot;2026-08-20&quot;:3.22},{&quot;2026-08-21&quot;:3.07},{&quot;2026-08-22&quot;:3.09},{&quot;2026-08-23&quot;:3.09},{&quot;2026-08-24&quot;:2.96},{&quot;2026-08-25&quot;:2.96},{&quot;2026-08-26&quot;:2.9},{&quot;2026-08-27&quot;:2.92},{&quot;2026-08-28&quot;:2.94},{&quot;2026-08-29&quot;:2.94},{&quot;2026-08-30&quot;:2.96},{&quot;2026-08-31&quot;:2.96},{&quot;2026-09-01&quot;:2.96},{&quot;2026-09-02&quot;:2.93},{&quot;2026-09-03&quot;:2.92},{&quot;2026-09-04&quot;:2.97},{&quot;2026-09-05&quot;:2.93},{&quot;2026-09-06&quot;:2.9},{&quot;2026-09-07&quot;:2.87},{&quot;2026-09-08&quot;:2.99},{&quot;2026-09-09&quot;:2.99},{&quot;2026-09-10&quot;:3.06},{&quot;2026-09-11&quot;:3.06}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="46396"
  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">
            Kogla and Yidaro
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Legendary Creature — Ape Dinosaur Turtle
      </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">
            $2.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="Kogla and Yidaro" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/7/b760ebdf-bea6-4c43-a187-4a02ebf95ebf.jpg?1783916942" />

        <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">
            Kogla and Yidaro
        </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 — Ape Dinosaur Turtle</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></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="Kogla and Yidaro" src="https://cards.scryfall.io/large/front/b/7/b760ebdf-bea6-4c43-a187-4a02ebf95ebf.jpg?1783916942" />
    </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.13
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-08&quot;:2.86},{&quot;2026-06-10&quot;:3.0},{&quot;2026-06-11&quot;:3.0},{&quot;2026-06-12&quot;:3.0},{&quot;2026-06-13&quot;:2.95},{&quot;2026-06-14&quot;:2.95},{&quot;2026-06-15&quot;:2.95},{&quot;2026-06-16&quot;:2.95},{&quot;2026-06-17&quot;:2.96},{&quot;2026-06-18&quot;:2.96},{&quot;2026-06-19&quot;:2.96},{&quot;2026-06-20&quot;:2.96},{&quot;2026-06-21&quot;:3.07},{&quot;2026-06-22&quot;:3.02},{&quot;2026-06-24&quot;:3.02},{&quot;2026-06-25&quot;:3.02},{&quot;2026-06-26&quot;:3.02},{&quot;2026-06-27&quot;:3.06},{&quot;2026-06-28&quot;:3.06},{&quot;2026-06-29&quot;:2.99},{&quot;2026-06-30&quot;:2.99},{&quot;2026-07-01&quot;:2.99},{&quot;2026-07-02&quot;:2.95},{&quot;2026-07-03&quot;:2.95},{&quot;2026-07-04&quot;:2.95},{&quot;2026-07-05&quot;:2.95},{&quot;2026-07-06&quot;:2.95},{&quot;2026-07-07&quot;:2.95},{&quot;2026-07-08&quot;:3.06},{&quot;2026-07-09&quot;:3.21},{&quot;2026-07-10&quot;:3.21},{&quot;2026-07-11&quot;:3.21},{&quot;2026-07-12&quot;:3.21},{&quot;2026-07-13&quot;:3.21},{&quot;2026-07-14&quot;:3.19},{&quot;2026-07-15&quot;:3.19},{&quot;2026-07-16&quot;:3.19},{&quot;2026-07-17&quot;:3.19},{&quot;2026-07-18&quot;:3.22},{&quot;2026-07-19&quot;:3.23},{&quot;2026-07-20&quot;:3.23},{&quot;2026-07-21&quot;:3.23},{&quot;2026-07-23&quot;:3.23},{&quot;2026-07-25&quot;:3.23},{&quot;2026-07-26&quot;:3.23},{&quot;2026-07-27&quot;:3.22},{&quot;2026-07-29&quot;:3.22},{&quot;2026-07-30&quot;:3.22},{&quot;2026-07-31&quot;:3.26},{&quot;2026-08-01&quot;:3.26},{&quot;2026-08-02&quot;:3.26},{&quot;2026-08-03&quot;:3.26},{&quot;2026-08-04&quot;:3.26},{&quot;2026-08-05&quot;:3.26},{&quot;2026-08-07&quot;:3.09},{&quot;2026-08-08&quot;:3.09},{&quot;2026-08-09&quot;:3.08},{&quot;2026-08-10&quot;:3.09},{&quot;2026-08-11&quot;:3.02},{&quot;2026-08-12&quot;:3.02},{&quot;2026-08-13&quot;:3.02},{&quot;2026-08-14&quot;:3.02},{&quot;2026-08-15&quot;:3.02},{&quot;2026-08-16&quot;:3.24},{&quot;2026-08-17&quot;:3.24},{&quot;2026-08-18&quot;:3.24},{&quot;2026-08-19&quot;:3.24},{&quot;2026-08-20&quot;:3.24},{&quot;2026-08-21&quot;:3.24},{&quot;2026-08-22&quot;:3.29},{&quot;2026-08-23&quot;:3.29},{&quot;2026-08-24&quot;:3.29},{&quot;2026-08-25&quot;:3.29},{&quot;2026-08-26&quot;:3.32},{&quot;2026-08-27&quot;:3.32},{&quot;2026-08-28&quot;:3.32},{&quot;2026-08-29&quot;:3.32},{&quot;2026-08-30&quot;:3.32},{&quot;2026-08-31&quot;:3.32},{&quot;2026-09-01&quot;:3.32},{&quot;2026-09-02&quot;:3.3},{&quot;2026-09-03&quot;:3.15},{&quot;2026-09-04&quot;:2.98},{&quot;2026-09-05&quot;:2.97},{&quot;2026-09-06&quot;:2.97},{&quot;2026-09-07&quot;:2.9},{&quot;2026-09-08&quot;:2.88},{&quot;2026-09-09&quot;:2.88},{&quot;2026-09-10&quot;:2.88},{&quot;2026-09-11&quot;:2.86}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:3.14},{&quot;2026-06-10&quot;:3.41},{&quot;2026-06-11&quot;:3.34},{&quot;2026-06-12&quot;:3.33},{&quot;2026-06-13&quot;:3.35},{&quot;2026-06-14&quot;:3.25},{&quot;2026-06-15&quot;:3.28},{&quot;2026-06-16&quot;:3.36},{&quot;2026-06-17&quot;:2.94},{&quot;2026-06-18&quot;:2.77},{&quot;2026-06-19&quot;:3.1},{&quot;2026-06-20&quot;:3.21},{&quot;2026-06-21&quot;:3.07},{&quot;2026-06-22&quot;:3.07},{&quot;2026-06-24&quot;:2.88},{&quot;2026-06-25&quot;:2.98},{&quot;2026-06-26&quot;:3.04},{&quot;2026-06-27&quot;:3.15},{&quot;2026-06-28&quot;:3.41},{&quot;2026-06-29&quot;:3.31},{&quot;2026-06-30&quot;:3.15},{&quot;2026-07-01&quot;:2.89},{&quot;2026-07-02&quot;:2.87},{&quot;2026-07-03&quot;:2.96},{&quot;2026-07-04&quot;:2.85},{&quot;2026-07-05&quot;:2.87},{&quot;2026-07-06&quot;:2.87},{&quot;2026-07-07&quot;:2.67},{&quot;2026-07-08&quot;:2.56},{&quot;2026-07-09&quot;:2.57},{&quot;2026-07-10&quot;:2.57},{&quot;2026-07-11&quot;:2.47},{&quot;2026-07-12&quot;:2.45},{&quot;2026-07-13&quot;:2.36},{&quot;2026-07-14&quot;:2.36},{&quot;2026-07-15&quot;:2.37},{&quot;2026-07-16&quot;:2.44},{&quot;2026-07-17&quot;:2.43},{&quot;2026-07-18&quot;:2.48},{&quot;2026-07-19&quot;:2.54},{&quot;2026-07-20&quot;:2.53},{&quot;2026-07-21&quot;:2.53},{&quot;2026-07-23&quot;:2.62},{&quot;2026-07-25&quot;:2.71},{&quot;2026-07-26&quot;:2.61},{&quot;2026-07-27&quot;:2.58},{&quot;2026-07-29&quot;:2.47},{&quot;2026-07-30&quot;:2.45},{&quot;2026-07-31&quot;:2.5},{&quot;2026-08-01&quot;:2.51},{&quot;2026-08-02&quot;:2.45},{&quot;2026-08-03&quot;:2.48},{&quot;2026-08-04&quot;:2.46},{&quot;2026-08-05&quot;:2.48},{&quot;2026-08-07&quot;:2.4},{&quot;2026-08-08&quot;:2.4},{&quot;2026-08-09&quot;:2.4},{&quot;2026-08-10&quot;:2.4},{&quot;2026-08-11&quot;:2.41},{&quot;2026-08-12&quot;:2.36},{&quot;2026-08-13&quot;:2.46},{&quot;2026-08-14&quot;:2.45},{&quot;2026-08-15&quot;:2.46},{&quot;2026-08-16&quot;:2.4},{&quot;2026-08-17&quot;:2.47},{&quot;2026-08-18&quot;:2.43},{&quot;2026-08-19&quot;:2.47},{&quot;2026-08-20&quot;:2.47},{&quot;2026-08-21&quot;:2.46},{&quot;2026-08-22&quot;:2.39},{&quot;2026-08-23&quot;:2.34},{&quot;2026-08-24&quot;:2.4},{&quot;2026-08-25&quot;:2.4},{&quot;2026-08-26&quot;:2.45},{&quot;2026-08-27&quot;:2.47},{&quot;2026-08-28&quot;:2.5},{&quot;2026-08-29&quot;:2.5},{&quot;2026-08-30&quot;:2.44},{&quot;2026-08-31&quot;:2.54},{&quot;2026-09-01&quot;:2.54},{&quot;2026-09-02&quot;:2.52},{&quot;2026-09-03&quot;:2.44},{&quot;2026-09-04&quot;:2.35},{&quot;2026-09-05&quot;:2.35},{&quot;2026-09-06&quot;:2.36},{&quot;2026-09-07&quot;:2.32},{&quot;2026-09-08&quot;:2.29},{&quot;2026-09-09&quot;:2.22},{&quot;2026-09-10&quot;:2.22},{&quot;2026-09-11&quot;:2.13}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Scion of Calamity" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/5/75db3c02-7a03-4de5-a70e-220777227dd3.jpg?1783913907" />

        <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">
            Scion of Calamity
        </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 — Dinosaur</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Scion of Calamity" src="https://cards.scryfall.io/large/front/7/5/75db3c02-7a03-4de5-a70e-220777227dd3.jpg?1783913907" />
    </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.74
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:1.76},{&quot;2026-06-11&quot;:1.76},{&quot;2026-06-12&quot;:1.91},{&quot;2026-06-13&quot;:2.01},{&quot;2026-06-14&quot;:2.09},{&quot;2026-06-15&quot;:2.14},{&quot;2026-06-16&quot;:2.24},{&quot;2026-06-17&quot;:2.17},{&quot;2026-06-18&quot;:2.15},{&quot;2026-06-19&quot;:2.15},{&quot;2026-06-20&quot;:2.21},{&quot;2026-06-21&quot;:2.21},{&quot;2026-06-22&quot;:2.23},{&quot;2026-06-23&quot;:2.19},{&quot;2026-06-24&quot;:2.41},{&quot;2026-06-25&quot;:2.35},{&quot;2026-06-26&quot;:2.5},{&quot;2026-06-27&quot;:2.65},{&quot;2026-06-28&quot;:2.73},{&quot;2026-06-29&quot;:2.67},{&quot;2026-06-30&quot;:2.67},{&quot;2026-07-01&quot;:2.66},{&quot;2026-07-02&quot;:3.18},{&quot;2026-07-03&quot;:2.8},{&quot;2026-07-04&quot;:2.85},{&quot;2026-07-05&quot;:2.99},{&quot;2026-07-06&quot;:2.97},{&quot;2026-07-07&quot;:2.97},{&quot;2026-07-08&quot;:3.0},{&quot;2026-07-09&quot;:2.9},{&quot;2026-07-10&quot;:2.95},{&quot;2026-07-11&quot;:3.01},{&quot;2026-07-12&quot;:2.79},{&quot;2026-07-13&quot;:2.62},{&quot;2026-07-14&quot;:2.64},{&quot;2026-07-15&quot;:2.65},{&quot;2026-07-16&quot;:2.76},{&quot;2026-07-17&quot;:2.76},{&quot;2026-07-18&quot;:2.66},{&quot;2026-07-19&quot;:2.76},{&quot;2026-07-20&quot;:2.8},{&quot;2026-07-21&quot;:2.82},{&quot;2026-07-23&quot;:2.73},{&quot;2026-07-25&quot;:2.66},{&quot;2026-07-26&quot;:2.65},{&quot;2026-07-27&quot;:2.64},{&quot;2026-07-29&quot;:2.61},{&quot;2026-07-30&quot;:2.6},{&quot;2026-07-31&quot;:2.44},{&quot;2026-08-01&quot;:2.61},{&quot;2026-08-02&quot;:2.48},{&quot;2026-08-03&quot;:2.46},{&quot;2026-08-04&quot;:2.42},{&quot;2026-08-05&quot;:2.36},{&quot;2026-08-07&quot;:2.36},{&quot;2026-08-08&quot;:2.33},{&quot;2026-08-09&quot;:2.3},{&quot;2026-08-10&quot;:2.18},{&quot;2026-08-11&quot;:2.19},{&quot;2026-08-12&quot;:2.12},{&quot;2026-08-13&quot;:2.23},{&quot;2026-08-14&quot;:2.18},{&quot;2026-08-15&quot;:2.11},{&quot;2026-08-16&quot;:2.17},{&quot;2026-08-17&quot;:2.22},{&quot;2026-08-18&quot;:2.16},{&quot;2026-08-19&quot;:2.17},{&quot;2026-08-20&quot;:2.17},{&quot;2026-08-21&quot;:2.36},{&quot;2026-08-22&quot;:2.4},{&quot;2026-08-23&quot;:2.4},{&quot;2026-08-24&quot;:2.4},{&quot;2026-08-25&quot;:2.4},{&quot;2026-08-26&quot;:2.52},{&quot;2026-08-27&quot;:2.52},{&quot;2026-08-28&quot;:2.48},{&quot;2026-08-29&quot;:2.48},{&quot;2026-08-30&quot;:2.47},{&quot;2026-08-31&quot;:2.45},{&quot;2026-09-01&quot;:2.45},{&quot;2026-09-02&quot;:2.59},{&quot;2026-09-03&quot;:2.59},{&quot;2026-09-04&quot;:2.59},{&quot;2026-09-05&quot;:2.63},{&quot;2026-09-06&quot;:2.63},{&quot;2026-09-07&quot;:2.71},{&quot;2026-09-08&quot;:2.75},{&quot;2026-09-09&quot;:2.74},{&quot;2026-09-10&quot;:2.74},{&quot;2026-09-11&quot;:2.74}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="74303"
  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-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">
            Trumpeting Carnosaur
        </span>


      </div>

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

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

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

        <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">
            Trumpeting Carnosaur
        </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 — Dinosaur</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-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Trumpeting Carnosaur" src="https://cards.scryfall.io/large/front/e/d/edc035ca-f0a3-4814-9405-d6dc6f048315.jpg?1783913753" />
    </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.66
              </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.91
              </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.60</span>
              <span class="text-xs text-grey-text">Credit: $2.08</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-11&quot;:3.67},{&quot;2026-06-12&quot;:3.64},{&quot;2026-06-13&quot;:3.64},{&quot;2026-06-14&quot;:3.64},{&quot;2026-06-15&quot;:3.71},{&quot;2026-06-16&quot;:3.8},{&quot;2026-06-17&quot;:3.71},{&quot;2026-06-18&quot;:3.71},{&quot;2026-06-19&quot;:3.71},{&quot;2026-06-20&quot;:3.45},{&quot;2026-06-21&quot;:3.45},{&quot;2026-06-22&quot;:3.45},{&quot;2026-06-23&quot;:3.45},{&quot;2026-06-24&quot;:3.45},{&quot;2026-06-25&quot;:3.45},{&quot;2026-06-26&quot;:3.45},{&quot;2026-06-27&quot;:3.45},{&quot;2026-06-28&quot;:3.4},{&quot;2026-06-29&quot;:3.4},{&quot;2026-06-30&quot;:3.4},{&quot;2026-07-01&quot;:3.4},{&quot;2026-07-02&quot;:3.4},{&quot;2026-07-03&quot;:3.4},{&quot;2026-07-04&quot;:3.4},{&quot;2026-07-05&quot;:3.4},{&quot;2026-07-06&quot;:3.4},{&quot;2026-07-07&quot;:3.19},{&quot;2026-07-08&quot;:3.19},{&quot;2026-07-09&quot;:3.19},{&quot;2026-07-10&quot;:3.09},{&quot;2026-07-11&quot;:3.09},{&quot;2026-07-12&quot;:3.09},{&quot;2026-07-13&quot;:3.09},{&quot;2026-07-14&quot;:3.09},{&quot;2026-07-15&quot;:3.09},{&quot;2026-07-16&quot;:3.09},{&quot;2026-07-17&quot;:3.09},{&quot;2026-07-18&quot;:3.09},{&quot;2026-07-19&quot;:3.09},{&quot;2026-07-20&quot;:3.13},{&quot;2026-07-21&quot;:3.13},{&quot;2026-07-23&quot;:3.04},{&quot;2026-07-25&quot;:3.07},{&quot;2026-07-26&quot;:3.07},{&quot;2026-07-27&quot;:3.07},{&quot;2026-07-28&quot;:3.07},{&quot;2026-07-29&quot;:3.07},{&quot;2026-07-30&quot;:3.07},{&quot;2026-07-31&quot;:3.07},{&quot;2026-08-01&quot;:3.07},{&quot;2026-08-02&quot;:3.07},{&quot;2026-08-03&quot;:3.07},{&quot;2026-08-04&quot;:3.07},{&quot;2026-08-05&quot;:3.07},{&quot;2026-08-07&quot;:3.07},{&quot;2026-08-08&quot;:3.07},{&quot;2026-08-09&quot;:3.07},{&quot;2026-08-10&quot;:3.07},{&quot;2026-08-11&quot;:3.07},{&quot;2026-08-12&quot;:3.0},{&quot;2026-08-13&quot;:3.0},{&quot;2026-08-14&quot;:3.0},{&quot;2026-08-15&quot;:3.04},{&quot;2026-08-16&quot;:3.04},{&quot;2026-08-17&quot;:3.01},{&quot;2026-08-18&quot;:2.97},{&quot;2026-08-19&quot;:3.03},{&quot;2026-08-20&quot;:3.03},{&quot;2026-08-21&quot;:3.03},{&quot;2026-08-22&quot;:2.96},{&quot;2026-08-23&quot;:2.96},{&quot;2026-08-24&quot;:2.96},{&quot;2026-08-25&quot;:2.96},{&quot;2026-08-26&quot;:2.96},{&quot;2026-08-27&quot;:2.88},{&quot;2026-08-28&quot;:2.76},{&quot;2026-08-29&quot;:2.76},{&quot;2026-08-30&quot;:2.65},{&quot;2026-08-31&quot;:2.73},{&quot;2026-09-01&quot;:2.73},{&quot;2026-09-02&quot;:2.72},{&quot;2026-09-03&quot;:2.72},{&quot;2026-09-04&quot;:2.84},{&quot;2026-09-05&quot;:2.84},{&quot;2026-09-06&quot;:2.91},{&quot;2026-09-07&quot;:2.91},{&quot;2026-09-08&quot;:2.91},{&quot;2026-09-09&quot;:2.91},{&quot;2026-09-10&quot;:2.91},{&quot;2026-09-11&quot;:2.91}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:2.59},{&quot;2026-06-12&quot;:2.51},{&quot;2026-06-13&quot;:2.56},{&quot;2026-06-14&quot;:2.54},{&quot;2026-06-15&quot;:2.56},{&quot;2026-06-16&quot;:2.38},{&quot;2026-06-17&quot;:2.38},{&quot;2026-06-18&quot;:2.38},{&quot;2026-06-19&quot;:2.48},{&quot;2026-06-20&quot;:2.44},{&quot;2026-06-21&quot;:2.4},{&quot;2026-06-22&quot;:2.3},{&quot;2026-06-23&quot;:2.25},{&quot;2026-06-24&quot;:2.17},{&quot;2026-06-25&quot;:2.14},{&quot;2026-06-26&quot;:2.2},{&quot;2026-06-27&quot;:2.2},{&quot;2026-06-28&quot;:2.38},{&quot;2026-06-29&quot;:2.41},{&quot;2026-06-30&quot;:2.41},{&quot;2026-07-01&quot;:2.44},{&quot;2026-07-02&quot;:2.35},{&quot;2026-07-03&quot;:2.45},{&quot;2026-07-04&quot;:2.45},{&quot;2026-07-05&quot;:2.26},{&quot;2026-07-06&quot;:2.27},{&quot;2026-07-07&quot;:2.22},{&quot;2026-07-08&quot;:2.13},{&quot;2026-07-09&quot;:2.3},{&quot;2026-07-10&quot;:2.26},{&quot;2026-07-11&quot;:2.22},{&quot;2026-07-12&quot;:2.19},{&quot;2026-07-13&quot;:2.25},{&quot;2026-07-14&quot;:2.3},{&quot;2026-07-15&quot;:2.29},{&quot;2026-07-16&quot;:2.32},{&quot;2026-07-17&quot;:2.29},{&quot;2026-07-18&quot;:2.3},{&quot;2026-07-19&quot;:2.32},{&quot;2026-07-20&quot;:2.2},{&quot;2026-07-21&quot;:2.2},{&quot;2026-07-23&quot;:2.14},{&quot;2026-07-25&quot;:2.15},{&quot;2026-07-26&quot;:2.18},{&quot;2026-07-27&quot;:2.22},{&quot;2026-07-28&quot;:2.22},{&quot;2026-07-29&quot;:2.31},{&quot;2026-07-30&quot;:2.31},{&quot;2026-07-31&quot;:2.33},{&quot;2026-08-01&quot;:2.33},{&quot;2026-08-02&quot;:2.34},{&quot;2026-08-03&quot;:2.32},{&quot;2026-08-04&quot;:2.27},{&quot;2026-08-05&quot;:2.27},{&quot;2026-08-07&quot;:2.2},{&quot;2026-08-08&quot;:2.28},{&quot;2026-08-09&quot;:2.31},{&quot;2026-08-10&quot;:2.47},{&quot;2026-08-11&quot;:2.59},{&quot;2026-08-12&quot;:2.55},{&quot;2026-08-13&quot;:2.58},{&quot;2026-08-14&quot;:2.58},{&quot;2026-08-15&quot;:2.63},{&quot;2026-08-16&quot;:2.64},{&quot;2026-08-17&quot;:2.63},{&quot;2026-08-18&quot;:2.54},{&quot;2026-08-19&quot;:2.49},{&quot;2026-08-20&quot;:2.49},{&quot;2026-08-21&quot;:2.21},{&quot;2026-08-22&quot;:2.19},{&quot;2026-08-23&quot;:2.21},{&quot;2026-08-24&quot;:2.11},{&quot;2026-08-25&quot;:2.11},{&quot;2026-08-26&quot;:2.36},{&quot;2026-08-27&quot;:2.48},{&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.61},{&quot;2026-09-01&quot;:2.61},{&quot;2026-09-02&quot;:2.78},{&quot;2026-09-03&quot;:2.64},{&quot;2026-09-04&quot;:2.52},{&quot;2026-09-05&quot;:2.59},{&quot;2026-09-06&quot;:2.53},{&quot;2026-09-07&quot;:2.49},{&quot;2026-09-08&quot;:2.35},{&quot;2026-09-09&quot;:2.3},{&quot;2026-09-10&quot;:2.53},{&quot;2026-09-11&quot;:2.66}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="5569"
  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">
            Fabled Passage
        </span>


      </div>

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

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

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

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

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

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

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Fabled Passage" src="https://cards.scryfall.io/large/front/8/8/8809830f-d8e1-4603-9652-0ad8b00234e9.jpg?1783910785" />
    </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.11
              </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">
                $3.25
              </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.35</span>
              <span class="text-xs text-grey-text">Credit: $1.76</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:3.15},{&quot;2026-06-14&quot;:3.15},{&quot;2026-06-15&quot;:3.15},{&quot;2026-06-16&quot;:3.15},{&quot;2026-06-17&quot;:3.27},{&quot;2026-06-18&quot;:3.24},{&quot;2026-06-19&quot;:3.24},{&quot;2026-06-20&quot;:3.22},{&quot;2026-06-21&quot;:3.15},{&quot;2026-06-22&quot;:3.23},{&quot;2026-06-23&quot;:3.23},{&quot;2026-06-24&quot;:3.23},{&quot;2026-06-25&quot;:3.23},{&quot;2026-06-26&quot;:3.2},{&quot;2026-06-27&quot;:3.21},{&quot;2026-06-28&quot;:3.21},{&quot;2026-06-29&quot;:3.16},{&quot;2026-06-30&quot;:3.18},{&quot;2026-07-01&quot;:3.21},{&quot;2026-07-02&quot;:3.16},{&quot;2026-07-03&quot;:3.12},{&quot;2026-07-04&quot;:3.14},{&quot;2026-07-05&quot;:3.14},{&quot;2026-07-06&quot;:3.3},{&quot;2026-07-07&quot;:3.22},{&quot;2026-07-08&quot;:3.19},{&quot;2026-07-09&quot;:3.15},{&quot;2026-07-10&quot;:3.15},{&quot;2026-07-11&quot;:3.15},{&quot;2026-07-12&quot;:3.15},{&quot;2026-07-13&quot;:3.15},{&quot;2026-07-14&quot;:3.15},{&quot;2026-07-15&quot;:3.16},{&quot;2026-07-16&quot;:3.16},{&quot;2026-07-17&quot;:3.16},{&quot;2026-07-18&quot;:3.2},{&quot;2026-07-19&quot;:3.12},{&quot;2026-07-20&quot;:3.12},{&quot;2026-07-21&quot;:3.11},{&quot;2026-07-22&quot;:3.12},{&quot;2026-07-23&quot;:3.12},{&quot;2026-07-24&quot;:3.12},{&quot;2026-07-25&quot;:3.12},{&quot;2026-07-26&quot;:3.12},{&quot;2026-07-27&quot;:3.12},{&quot;2026-07-28&quot;:3.13},{&quot;2026-07-29&quot;:3.13},{&quot;2026-07-30&quot;:3.13},{&quot;2026-07-31&quot;:3.13},{&quot;2026-08-01&quot;:3.13},{&quot;2026-08-02&quot;:3.09},{&quot;2026-08-03&quot;:3.09},{&quot;2026-08-04&quot;:3.12},{&quot;2026-08-05&quot;:3.14},{&quot;2026-08-07&quot;:3.12},{&quot;2026-08-08&quot;:3.1},{&quot;2026-08-09&quot;:3.14},{&quot;2026-08-10&quot;:3.15},{&quot;2026-08-11&quot;:3.15},{&quot;2026-08-12&quot;:3.16},{&quot;2026-08-13&quot;:3.16},{&quot;2026-08-14&quot;:2.97},{&quot;2026-08-15&quot;:2.97},{&quot;2026-08-16&quot;:2.97},{&quot;2026-08-17&quot;:2.97},{&quot;2026-08-18&quot;:3.07},{&quot;2026-08-19&quot;:3.14},{&quot;2026-08-20&quot;:3.14},{&quot;2026-08-21&quot;:3.21},{&quot;2026-08-22&quot;:3.22},{&quot;2026-08-23&quot;:3.22},{&quot;2026-08-24&quot;:3.22},{&quot;2026-08-25&quot;:3.21},{&quot;2026-08-26&quot;:3.21},{&quot;2026-08-27&quot;:3.21},{&quot;2026-08-28&quot;:3.21},{&quot;2026-08-29&quot;:3.21},{&quot;2026-08-30&quot;:3.25},{&quot;2026-08-31&quot;:3.23},{&quot;2026-09-01&quot;:3.23},{&quot;2026-09-02&quot;:3.23},{&quot;2026-09-03&quot;:3.23},{&quot;2026-09-04&quot;:3.26},{&quot;2026-09-05&quot;:3.26},{&quot;2026-09-06&quot;:3.26},{&quot;2026-09-07&quot;:3.26},{&quot;2026-09-08&quot;:3.26},{&quot;2026-09-09&quot;:3.23},{&quot;2026-09-10&quot;:3.23},{&quot;2026-09-11&quot;:3.25}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:2.35},{&quot;2026-06-14&quot;:2.32},{&quot;2026-06-15&quot;:2.49},{&quot;2026-06-16&quot;:2.47},{&quot;2026-06-17&quot;:2.49},{&quot;2026-06-18&quot;:2.48},{&quot;2026-06-19&quot;:2.62},{&quot;2026-06-20&quot;:2.58},{&quot;2026-06-21&quot;:2.46},{&quot;2026-06-22&quot;:2.33},{&quot;2026-06-23&quot;:2.27},{&quot;2026-06-24&quot;:2.26},{&quot;2026-06-25&quot;:2.26},{&quot;2026-06-26&quot;:2.05},{&quot;2026-06-27&quot;:1.94},{&quot;2026-06-28&quot;:1.6},{&quot;2026-06-29&quot;:1.68},{&quot;2026-06-30&quot;:1.68},{&quot;2026-07-01&quot;:1.53},{&quot;2026-07-02&quot;:1.53},{&quot;2026-07-03&quot;:1.57},{&quot;2026-07-04&quot;:1.56},{&quot;2026-07-05&quot;:1.45},{&quot;2026-07-06&quot;:1.46},{&quot;2026-07-07&quot;:1.8},{&quot;2026-07-08&quot;:1.91},{&quot;2026-07-09&quot;:2.3},{&quot;2026-07-10&quot;:2.46},{&quot;2026-07-11&quot;:2.52},{&quot;2026-07-12&quot;:2.5},{&quot;2026-07-13&quot;:2.49},{&quot;2026-07-14&quot;:2.25},{&quot;2026-07-15&quot;:1.93},{&quot;2026-07-16&quot;:1.86},{&quot;2026-07-17&quot;:1.77},{&quot;2026-07-18&quot;:1.64},{&quot;2026-07-19&quot;:1.74},{&quot;2026-07-20&quot;:1.73},{&quot;2026-07-21&quot;:1.77},{&quot;2026-07-22&quot;:1.89},{&quot;2026-07-23&quot;:1.89},{&quot;2026-07-24&quot;:1.8},{&quot;2026-07-25&quot;:1.71},{&quot;2026-07-26&quot;:1.69},{&quot;2026-07-27&quot;:1.64},{&quot;2026-07-28&quot;:1.65},{&quot;2026-07-29&quot;:1.71},{&quot;2026-07-30&quot;:1.76},{&quot;2026-07-31&quot;:1.81},{&quot;2026-08-01&quot;:1.82},{&quot;2026-08-02&quot;:1.86},{&quot;2026-08-03&quot;:1.92},{&quot;2026-08-04&quot;:1.86},{&quot;2026-08-05&quot;:1.92},{&quot;2026-08-07&quot;:1.98},{&quot;2026-08-08&quot;:2.1},{&quot;2026-08-09&quot;:2.11},{&quot;2026-08-10&quot;:1.98},{&quot;2026-08-11&quot;:1.87},{&quot;2026-08-12&quot;:1.77},{&quot;2026-08-13&quot;:1.73},{&quot;2026-08-14&quot;:2.03},{&quot;2026-08-15&quot;:2.11},{&quot;2026-08-16&quot;:2.29},{&quot;2026-08-17&quot;:2.26},{&quot;2026-08-18&quot;:2.22},{&quot;2026-08-19&quot;:2.14},{&quot;2026-08-20&quot;:2.09},{&quot;2026-08-21&quot;:2.04},{&quot;2026-08-22&quot;:1.97},{&quot;2026-08-23&quot;:1.95},{&quot;2026-08-24&quot;:2.0},{&quot;2026-08-25&quot;:2.0},{&quot;2026-08-26&quot;:2.01},{&quot;2026-08-27&quot;:2.0},{&quot;2026-08-28&quot;:2.14},{&quot;2026-08-29&quot;:2.14},{&quot;2026-08-30&quot;:2.29},{&quot;2026-08-31&quot;:2.25},{&quot;2026-09-01&quot;:2.21},{&quot;2026-09-02&quot;:2.05},{&quot;2026-09-03&quot;:2.04},{&quot;2026-09-04&quot;:2.05},{&quot;2026-09-05&quot;:2.04},{&quot;2026-09-06&quot;:1.95},{&quot;2026-09-07&quot;:2.07},{&quot;2026-09-08&quot;:2.1},{&quot;2026-09-09&quot;:2.06},{&quot;2026-09-10&quot;:2.07},{&quot;2026-09-11&quot;:2.11}]}"
        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="20788"
  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">
            Legion&#39;s Initiative
        </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">
              ↓
              12%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $1.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="Legion&#39;s Initiative" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/e/4/e41f950f-b818-4150-af71-b53a502ca0d5.jpg?1783921822" />

        <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">
            Legion&#39;s Initiative
        </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-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Legion&#39;s Initiative" src="https://cards.scryfall.io/large/front/e/4/e41f950f-b818-4150-af71-b53a502ca0d5.jpg?1783921822" />
    </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.98
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-08&quot;:1.02},{&quot;2026-06-10&quot;:1.03},{&quot;2026-06-11&quot;:1.03},{&quot;2026-06-12&quot;:1.03},{&quot;2026-06-13&quot;:1.03},{&quot;2026-06-14&quot;:1.03},{&quot;2026-06-15&quot;:1.03},{&quot;2026-06-16&quot;:1.03},{&quot;2026-06-17&quot;:1.03},{&quot;2026-06-18&quot;:1.03},{&quot;2026-06-19&quot;:1.03},{&quot;2026-06-20&quot;:1.03},{&quot;2026-06-21&quot;:1.03},{&quot;2026-06-22&quot;:1.03},{&quot;2026-06-24&quot;:1.03},{&quot;2026-06-25&quot;:1.03},{&quot;2026-06-26&quot;:1.03},{&quot;2026-06-27&quot;:1.03},{&quot;2026-06-28&quot;:1.03},{&quot;2026-06-29&quot;:1.03},{&quot;2026-06-30&quot;:1.03},{&quot;2026-07-01&quot;:1.03},{&quot;2026-07-02&quot;:1.03},{&quot;2026-07-03&quot;:1.03},{&quot;2026-07-04&quot;:1.04},{&quot;2026-07-05&quot;:1.04},{&quot;2026-07-06&quot;:1.1},{&quot;2026-07-07&quot;:1.1},{&quot;2026-07-08&quot;:1.11},{&quot;2026-07-09&quot;:1.11},{&quot;2026-07-10&quot;:1.11},{&quot;2026-07-11&quot;:1.11},{&quot;2026-07-12&quot;:1.11},{&quot;2026-07-13&quot;:1.11},{&quot;2026-07-14&quot;:1.11},{&quot;2026-07-15&quot;:1.11},{&quot;2026-07-16&quot;:1.11},{&quot;2026-07-17&quot;:1.11},{&quot;2026-07-18&quot;:1.16},{&quot;2026-07-19&quot;:1.16},{&quot;2026-07-20&quot;:1.16},{&quot;2026-07-21&quot;:1.16},{&quot;2026-07-23&quot;:1.16},{&quot;2026-07-25&quot;:1.16},{&quot;2026-07-26&quot;:1.16},{&quot;2026-07-27&quot;:1.18},{&quot;2026-07-29&quot;:1.18},{&quot;2026-07-30&quot;:1.23},{&quot;2026-07-31&quot;:1.23},{&quot;2026-08-01&quot;:1.23},{&quot;2026-08-02&quot;:1.23},{&quot;2026-08-03&quot;:1.23},{&quot;2026-08-04&quot;:1.23},{&quot;2026-08-05&quot;:1.23},{&quot;2026-08-07&quot;:1.23},{&quot;2026-08-08&quot;:1.23},{&quot;2026-08-09&quot;:1.23},{&quot;2026-08-10&quot;:1.23},{&quot;2026-08-11&quot;:1.23},{&quot;2026-08-12&quot;:1.23},{&quot;2026-08-13&quot;:1.23},{&quot;2026-08-14&quot;:1.23},{&quot;2026-08-15&quot;:1.23},{&quot;2026-08-16&quot;:1.23},{&quot;2026-08-17&quot;:1.23},{&quot;2026-08-18&quot;:1.23},{&quot;2026-08-19&quot;:1.23},{&quot;2026-08-20&quot;:1.23},{&quot;2026-08-21&quot;:1.23},{&quot;2026-08-22&quot;:1.23},{&quot;2026-08-23&quot;:1.23},{&quot;2026-08-24&quot;:1.23},{&quot;2026-08-25&quot;:1.23},{&quot;2026-08-26&quot;:1.23},{&quot;2026-08-27&quot;:1.23},{&quot;2026-08-28&quot;:1.23},{&quot;2026-08-29&quot;:1.23},{&quot;2026-08-30&quot;:1.23},{&quot;2026-08-31&quot;:1.23},{&quot;2026-09-01&quot;:1.23},{&quot;2026-09-02&quot;:1.23},{&quot;2026-09-03&quot;:1.23},{&quot;2026-09-04&quot;:1.23},{&quot;2026-09-05&quot;:1.23},{&quot;2026-09-06&quot;:1.23},{&quot;2026-09-07&quot;:1.23},{&quot;2026-09-08&quot;:1.23},{&quot;2026-09-09&quot;:1.26},{&quot;2026-09-10&quot;:1.26},{&quot;2026-09-11&quot;:1.26}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:2.04},{&quot;2026-06-10&quot;:2.34},{&quot;2026-06-11&quot;:2.3},{&quot;2026-06-12&quot;:2.3},{&quot;2026-06-13&quot;:2.31},{&quot;2026-06-14&quot;:2.3},{&quot;2026-06-15&quot;:2.24},{&quot;2026-06-16&quot;:2.24},{&quot;2026-06-17&quot;:2.16},{&quot;2026-06-18&quot;:2.26},{&quot;2026-06-19&quot;:2.26},{&quot;2026-06-20&quot;:2.26},{&quot;2026-06-21&quot;:2.26},{&quot;2026-06-22&quot;:2.18},{&quot;2026-06-24&quot;:2.02},{&quot;2026-06-25&quot;:2.02},{&quot;2026-06-26&quot;:2.08},{&quot;2026-06-27&quot;:1.97},{&quot;2026-06-28&quot;:2.01},{&quot;2026-06-29&quot;:1.92},{&quot;2026-06-30&quot;:1.92},{&quot;2026-07-01&quot;:1.97},{&quot;2026-07-02&quot;:1.97},{&quot;2026-07-03&quot;:2.01},{&quot;2026-07-04&quot;:2.01},{&quot;2026-07-05&quot;:1.98},{&quot;2026-07-06&quot;:1.85},{&quot;2026-07-07&quot;:1.84},{&quot;2026-07-08&quot;:1.84},{&quot;2026-07-09&quot;:1.94},{&quot;2026-07-10&quot;:1.94},{&quot;2026-07-11&quot;:2.06},{&quot;2026-07-12&quot;:2.3},{&quot;2026-07-13&quot;:2.47},{&quot;2026-07-14&quot;:2.35},{&quot;2026-07-15&quot;:2.47},{&quot;2026-07-16&quot;:2.69},{&quot;2026-07-17&quot;:2.84},{&quot;2026-07-18&quot;:3.03},{&quot;2026-07-19&quot;:3.11},{&quot;2026-07-20&quot;:3.19},{&quot;2026-07-21&quot;:3.19},{&quot;2026-07-23&quot;:3.25},{&quot;2026-07-25&quot;:3.4},{&quot;2026-07-26&quot;:3.7},{&quot;2026-07-27&quot;:3.67},{&quot;2026-07-29&quot;:3.87},{&quot;2026-07-30&quot;:3.74},{&quot;2026-07-31&quot;:3.77},{&quot;2026-08-01&quot;:3.77},{&quot;2026-08-02&quot;:3.77},{&quot;2026-08-03&quot;:3.8},{&quot;2026-08-04&quot;:3.93},{&quot;2026-08-05&quot;:3.65},{&quot;2026-08-07&quot;:3.45},{&quot;2026-08-08&quot;:3.45},{&quot;2026-08-09&quot;:3.49},{&quot;2026-08-10&quot;:3.41},{&quot;2026-08-11&quot;:3.41},{&quot;2026-08-12&quot;:3.31},{&quot;2026-08-13&quot;:3.47},{&quot;2026-08-14&quot;:3.38},{&quot;2026-08-15&quot;:3.4},{&quot;2026-08-16&quot;:3.4},{&quot;2026-08-17&quot;:3.39},{&quot;2026-08-18&quot;:3.39},{&quot;2026-08-19&quot;:3.43},{&quot;2026-08-20&quot;:3.43},{&quot;2026-08-21&quot;:3.43},{&quot;2026-08-22&quot;:3.1},{&quot;2026-08-23&quot;:3.1},{&quot;2026-08-24&quot;:3.0},{&quot;2026-08-25&quot;:3.0},{&quot;2026-08-26&quot;:2.72},{&quot;2026-08-27&quot;:2.7},{&quot;2026-08-28&quot;:2.7},{&quot;2026-08-29&quot;:2.7},{&quot;2026-08-30&quot;:2.5},{&quot;2026-08-31&quot;:2.5},{&quot;2026-09-01&quot;:2.5},{&quot;2026-09-02&quot;:2.36},{&quot;2026-09-03&quot;:2.23},{&quot;2026-09-04&quot;:2.24},{&quot;2026-09-05&quot;:2.24},{&quot;2026-09-06&quot;:2.13},{&quot;2026-09-07&quot;:2.13},{&quot;2026-09-08&quot;:2.08},{&quot;2026-09-09&quot;:2.03},{&quot;2026-09-10&quot;:1.98},{&quot;2026-09-11&quot;:1.98}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $1.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="Zacama, Primal Calamity" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/5/05c5a9a8-badd-43ab-8408-a13e75407681.jpg?1783913841" />

        <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">
            Zacama, Primal Calamity
        </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 — Elder Dinosaur</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-6'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></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="Zacama, Primal Calamity" src="https://cards.scryfall.io/large/front/0/5/05c5a9a8-badd-43ab-8408-a13e75407681.jpg?1783913841" />
    </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-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.70</span>
              <span class="text-xs text-grey-text">Credit: $0.91</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.03},{&quot;2026-06-10&quot;:1.03},{&quot;2026-06-11&quot;:1.05},{&quot;2026-06-12&quot;:1.06},{&quot;2026-06-13&quot;:1.1},{&quot;2026-06-14&quot;:1.13},{&quot;2026-06-15&quot;:1.18},{&quot;2026-06-16&quot;:1.2},{&quot;2026-06-17&quot;:1.19},{&quot;2026-06-18&quot;:1.24},{&quot;2026-06-19&quot;:1.29},{&quot;2026-06-20&quot;:1.32},{&quot;2026-06-21&quot;:1.32},{&quot;2026-06-22&quot;:1.34},{&quot;2026-06-24&quot;:1.3},{&quot;2026-06-25&quot;:1.21},{&quot;2026-06-26&quot;:1.24},{&quot;2026-06-27&quot;:1.2},{&quot;2026-06-28&quot;:1.18},{&quot;2026-06-29&quot;:1.18},{&quot;2026-06-30&quot;:1.25},{&quot;2026-07-01&quot;:1.24},{&quot;2026-07-02&quot;:1.25},{&quot;2026-07-03&quot;:1.28},{&quot;2026-07-04&quot;:1.28},{&quot;2026-07-05&quot;:1.26},{&quot;2026-07-06&quot;:1.2},{&quot;2026-07-07&quot;:1.2},{&quot;2026-07-08&quot;:1.19},{&quot;2026-07-09&quot;:1.16},{&quot;2026-07-10&quot;:1.08},{&quot;2026-07-11&quot;:1.05},{&quot;2026-07-12&quot;:1.03},{&quot;2026-07-13&quot;:1.07},{&quot;2026-07-14&quot;:1.08},{&quot;2026-07-15&quot;:1.08},{&quot;2026-07-16&quot;:1.08},{&quot;2026-07-17&quot;:1.11},{&quot;2026-07-18&quot;:1.13},{&quot;2026-07-19&quot;:1.12},{&quot;2026-07-20&quot;:1.12},{&quot;2026-07-21&quot;:1.12},{&quot;2026-07-23&quot;:1.15},{&quot;2026-07-25&quot;:1.27},{&quot;2026-07-26&quot;:1.32},{&quot;2026-07-27&quot;:1.38},{&quot;2026-07-29&quot;:1.36},{&quot;2026-07-30&quot;:1.37},{&quot;2026-07-31&quot;:1.21},{&quot;2026-08-01&quot;:1.24},{&quot;2026-08-02&quot;:1.26},{&quot;2026-08-03&quot;:1.3},{&quot;2026-08-04&quot;:1.28},{&quot;2026-08-05&quot;:1.34},{&quot;2026-08-07&quot;:1.4},{&quot;2026-08-08&quot;:1.43},{&quot;2026-08-09&quot;:1.43},{&quot;2026-08-10&quot;:1.36},{&quot;2026-08-11&quot;:1.38},{&quot;2026-08-12&quot;:1.36},{&quot;2026-08-13&quot;:1.3},{&quot;2026-08-14&quot;:1.3},{&quot;2026-08-15&quot;:1.27},{&quot;2026-08-16&quot;:1.28},{&quot;2026-08-17&quot;:1.21},{&quot;2026-08-18&quot;:1.27},{&quot;2026-08-19&quot;:1.24},{&quot;2026-08-20&quot;:1.24},{&quot;2026-08-21&quot;:1.31},{&quot;2026-08-22&quot;:1.32},{&quot;2026-08-23&quot;:1.43},{&quot;2026-08-24&quot;:1.51},{&quot;2026-08-25&quot;:1.51},{&quot;2026-08-26&quot;:1.62},{&quot;2026-08-27&quot;:1.63},{&quot;2026-08-28&quot;:1.6},{&quot;2026-08-29&quot;:1.6},{&quot;2026-08-30&quot;:1.69},{&quot;2026-08-31&quot;:1.69},{&quot;2026-09-01&quot;:1.69},{&quot;2026-09-02&quot;:1.71},{&quot;2026-09-03&quot;:1.72},{&quot;2026-09-04&quot;:1.72},{&quot;2026-09-05&quot;:1.77},{&quot;2026-09-06&quot;:1.78},{&quot;2026-09-07&quot;:1.75},{&quot;2026-09-08&quot;:1.78},{&quot;2026-09-09&quot;:1.78},{&quot;2026-09-10&quot;:1.78},{&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="76014"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

        <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/2/d/2d47121d-8b90-4d28-9ffa-0a640b9dd611.jpg?1783913836" />
    </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.77
              </span>

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

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Sunfrill Imitator" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/f/1/f1ac22a3-6edb-4f3e-b473-8166529eb769.jpg?1783913907" />

        <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">
            Sunfrill Imitator
        </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 — Dinosaur</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="Sunfrill Imitator" src="https://cards.scryfall.io/large/front/f/1/f1ac22a3-6edb-4f3e-b473-8166529eb769.jpg?1783913907" />
    </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.60
              </span>

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

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.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;normal&quot;:[{&quot;2026-06-08&quot;:1.14},{&quot;2026-06-10&quot;:1.28},{&quot;2026-06-11&quot;:0.94},{&quot;2026-06-12&quot;:0.89},{&quot;2026-06-13&quot;:0.87},{&quot;2026-06-14&quot;:0.82},{&quot;2026-06-15&quot;:0.84},{&quot;2026-06-16&quot;:0.87},{&quot;2026-06-17&quot;:0.9},{&quot;2026-06-18&quot;:0.87},{&quot;2026-06-19&quot;:0.93},{&quot;2026-06-20&quot;:0.97},{&quot;2026-06-21&quot;:0.96},{&quot;2026-06-22&quot;:0.96},{&quot;2026-06-24&quot;:0.98},{&quot;2026-06-25&quot;:0.94},{&quot;2026-06-26&quot;:0.97},{&quot;2026-06-27&quot;:0.95},{&quot;2026-06-28&quot;:0.91},{&quot;2026-06-29&quot;:0.86},{&quot;2026-06-30&quot;:0.86},{&quot;2026-07-01&quot;:0.87},{&quot;2026-07-02&quot;:0.88},{&quot;2026-07-03&quot;:0.86},{&quot;2026-07-04&quot;:0.86},{&quot;2026-07-05&quot;:0.86},{&quot;2026-07-06&quot;:0.77},{&quot;2026-07-07&quot;:0.79},{&quot;2026-07-08&quot;:0.77},{&quot;2026-07-09&quot;:0.77},{&quot;2026-07-10&quot;:0.77},{&quot;2026-07-11&quot;:0.76},{&quot;2026-07-12&quot;:0.74},{&quot;2026-07-13&quot;:0.7},{&quot;2026-07-14&quot;:0.71},{&quot;2026-07-15&quot;:0.7},{&quot;2026-07-16&quot;:0.79},{&quot;2026-07-17&quot;:0.8},{&quot;2026-07-18&quot;:0.84},{&quot;2026-07-19&quot;:0.87},{&quot;2026-07-20&quot;:0.89},{&quot;2026-07-21&quot;:0.93},{&quot;2026-07-23&quot;:0.9},{&quot;2026-07-25&quot;:0.97},{&quot;2026-07-26&quot;:1.01},{&quot;2026-07-27&quot;:1.03},{&quot;2026-07-29&quot;:1.09},{&quot;2026-07-30&quot;:1.1},{&quot;2026-07-31&quot;:1.07},{&quot;2026-08-01&quot;:1.1},{&quot;2026-08-02&quot;:1.16},{&quot;2026-08-03&quot;:1.15},{&quot;2026-08-04&quot;:1.17},{&quot;2026-08-05&quot;:1.18},{&quot;2026-08-07&quot;:1.21},{&quot;2026-08-08&quot;:1.2},{&quot;2026-08-09&quot;:1.17},{&quot;2026-08-10&quot;:1.11},{&quot;2026-08-11&quot;:1.15},{&quot;2026-08-12&quot;:1.05},{&quot;2026-08-13&quot;:1.07},{&quot;2026-08-14&quot;:1.05},{&quot;2026-08-15&quot;:1.03},{&quot;2026-08-16&quot;:1.0},{&quot;2026-08-17&quot;:1.07},{&quot;2026-08-18&quot;:1.06},{&quot;2026-08-19&quot;:1.06},{&quot;2026-08-20&quot;:1.06},{&quot;2026-08-21&quot;:1.05},{&quot;2026-08-22&quot;:1.16},{&quot;2026-08-23&quot;:1.22},{&quot;2026-08-24&quot;:1.25},{&quot;2026-08-25&quot;:1.25},{&quot;2026-08-26&quot;:1.28},{&quot;2026-08-27&quot;:1.36},{&quot;2026-08-28&quot;:1.39},{&quot;2026-08-29&quot;:1.39},{&quot;2026-08-30&quot;:1.46},{&quot;2026-08-31&quot;:1.54},{&quot;2026-09-01&quot;:1.54},{&quot;2026-09-02&quot;:1.51},{&quot;2026-09-03&quot;:1.46},{&quot;2026-09-04&quot;:1.43},{&quot;2026-09-05&quot;:1.45},{&quot;2026-09-06&quot;:1.49},{&quot;2026-09-07&quot;:1.48},{&quot;2026-09-08&quot;:1.44},{&quot;2026-09-09&quot;:1.41},{&quot;2026-09-10&quot;:1.53},{&quot;2026-09-11&quot;:1.6}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Dinosaur
      </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">
              ↑
              22%
            </span>

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

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

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

        <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">
            Palani&#39;s Hatcher
        </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 — Dinosaur</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Palani&#39;s Hatcher" src="https://cards.scryfall.io/large/front/a/0/a0817334-d7ba-4de9-ade7-67beef358d1f.jpg?1783913695" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

                <span class="text-xs text-accent-50">
                  ↑
                  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">
                $1.30
              </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.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;:0.91},{&quot;2026-06-14&quot;:0.91},{&quot;2026-06-15&quot;:0.92},{&quot;2026-06-16&quot;:0.92},{&quot;2026-06-17&quot;:0.92},{&quot;2026-06-18&quot;:0.95},{&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.95},{&quot;2026-06-24&quot;:0.98},{&quot;2026-06-25&quot;:0.98},{&quot;2026-06-26&quot;:0.98},{&quot;2026-06-27&quot;:0.98},{&quot;2026-06-28&quot;:1.09},{&quot;2026-06-29&quot;:1.09},{&quot;2026-06-30&quot;:1.09},{&quot;2026-07-01&quot;:1.09},{&quot;2026-07-02&quot;:1.09},{&quot;2026-07-03&quot;:1.09},{&quot;2026-07-04&quot;:1.12},{&quot;2026-07-05&quot;:1.08},{&quot;2026-07-06&quot;:1.09},{&quot;2026-07-07&quot;:1.08},{&quot;2026-07-08&quot;:1.08},{&quot;2026-07-09&quot;:1.09},{&quot;2026-07-10&quot;:1.09},{&quot;2026-07-11&quot;:1.09},{&quot;2026-07-12&quot;:1.16},{&quot;2026-07-13&quot;:1.16},{&quot;2026-07-14&quot;:1.11},{&quot;2026-07-15&quot;:1.11},{&quot;2026-07-16&quot;:1.1},{&quot;2026-07-17&quot;:1.1},{&quot;2026-07-18&quot;:1.1},{&quot;2026-07-19&quot;:1.1},{&quot;2026-07-20&quot;:1.1},{&quot;2026-07-21&quot;:1.11},{&quot;2026-07-22&quot;:1.11},{&quot;2026-07-23&quot;:1.11},{&quot;2026-07-24&quot;:1.09},{&quot;2026-07-25&quot;:1.09},{&quot;2026-07-26&quot;:1.09},{&quot;2026-07-27&quot;:1.09},{&quot;2026-07-28&quot;:1.09},{&quot;2026-07-29&quot;:1.12},{&quot;2026-07-30&quot;:1.12},{&quot;2026-07-31&quot;:1.12},{&quot;2026-08-01&quot;:1.12},{&quot;2026-08-02&quot;:1.12},{&quot;2026-08-03&quot;:1.11},{&quot;2026-08-04&quot;:1.12},{&quot;2026-08-05&quot;:1.14},{&quot;2026-08-07&quot;:1.11},{&quot;2026-08-08&quot;:1.11},{&quot;2026-08-09&quot;:1.18},{&quot;2026-08-10&quot;:1.19},{&quot;2026-08-11&quot;:1.19},{&quot;2026-08-12&quot;:1.19},{&quot;2026-08-13&quot;:1.22},{&quot;2026-08-14&quot;:1.22},{&quot;2026-08-15&quot;:1.22},{&quot;2026-08-16&quot;:1.14},{&quot;2026-08-17&quot;:1.16},{&quot;2026-08-18&quot;:1.16},{&quot;2026-08-19&quot;:1.17},{&quot;2026-08-20&quot;:1.15},{&quot;2026-08-21&quot;:1.15},{&quot;2026-08-22&quot;:1.14},{&quot;2026-08-23&quot;:1.1},{&quot;2026-08-24&quot;:1.1},{&quot;2026-08-25&quot;:1.1},{&quot;2026-08-26&quot;:1.12},{&quot;2026-08-27&quot;:1.12},{&quot;2026-08-28&quot;:1.11},{&quot;2026-08-29&quot;:1.11},{&quot;2026-08-30&quot;:1.11},{&quot;2026-08-31&quot;:1.14},{&quot;2026-09-01&quot;:1.21},{&quot;2026-09-02&quot;:1.19},{&quot;2026-09-03&quot;:1.24},{&quot;2026-09-04&quot;:1.24},{&quot;2026-09-05&quot;:1.24},{&quot;2026-09-06&quot;:1.24},{&quot;2026-09-07&quot;:1.24},{&quot;2026-09-08&quot;:1.24},{&quot;2026-09-09&quot;:1.24},{&quot;2026-09-10&quot;:1.3},{&quot;2026-09-11&quot;:1.3}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.15},{&quot;2026-06-14&quot;:1.17},{&quot;2026-06-15&quot;:1.17},{&quot;2026-06-16&quot;:0.81},{&quot;2026-06-17&quot;:0.79},{&quot;2026-06-18&quot;:0.82},{&quot;2026-06-19&quot;:0.82},{&quot;2026-06-20&quot;:0.79},{&quot;2026-06-21&quot;:0.77},{&quot;2026-06-22&quot;:0.76},{&quot;2026-06-23&quot;:0.74},{&quot;2026-06-24&quot;:0.73},{&quot;2026-06-25&quot;:0.75},{&quot;2026-06-26&quot;:0.75},{&quot;2026-06-27&quot;:0.73},{&quot;2026-06-28&quot;:0.71},{&quot;2026-06-29&quot;:0.7},{&quot;2026-06-30&quot;:0.7},{&quot;2026-07-01&quot;:0.7},{&quot;2026-07-02&quot;:0.74},{&quot;2026-07-03&quot;:0.75},{&quot;2026-07-04&quot;:0.78},{&quot;2026-07-05&quot;:0.8},{&quot;2026-07-06&quot;:0.8},{&quot;2026-07-07&quot;:0.76},{&quot;2026-07-08&quot;:0.76},{&quot;2026-07-09&quot;:0.78},{&quot;2026-07-10&quot;:0.76},{&quot;2026-07-11&quot;:0.78},{&quot;2026-07-12&quot;:0.78},{&quot;2026-07-13&quot;:0.77},{&quot;2026-07-14&quot;:0.79},{&quot;2026-07-15&quot;:0.77},{&quot;2026-07-16&quot;:0.77},{&quot;2026-07-17&quot;:0.77},{&quot;2026-07-18&quot;:0.77},{&quot;2026-07-19&quot;:0.8},{&quot;2026-07-20&quot;:0.8},{&quot;2026-07-21&quot;:0.87},{&quot;2026-07-22&quot;:0.85},{&quot;2026-07-23&quot;:0.87},{&quot;2026-07-24&quot;:0.86},{&quot;2026-07-25&quot;:0.89},{&quot;2026-07-26&quot;:0.87},{&quot;2026-07-27&quot;:0.87},{&quot;2026-07-28&quot;:0.87},{&quot;2026-07-29&quot;:0.89},{&quot;2026-07-30&quot;:0.85},{&quot;2026-07-31&quot;:0.85},{&quot;2026-08-01&quot;:0.85},{&quot;2026-08-02&quot;:0.85},{&quot;2026-08-03&quot;:0.88},{&quot;2026-08-04&quot;:0.89},{&quot;2026-08-05&quot;:0.89},{&quot;2026-08-07&quot;:0.89},{&quot;2026-08-08&quot;:0.89},{&quot;2026-08-09&quot;:0.9},{&quot;2026-08-10&quot;:0.92},{&quot;2026-08-11&quot;:0.91},{&quot;2026-08-12&quot;:0.89},{&quot;2026-08-13&quot;:0.91},{&quot;2026-08-14&quot;:0.95},{&quot;2026-08-15&quot;:0.94},{&quot;2026-08-16&quot;:0.91},{&quot;2026-08-17&quot;:0.9},{&quot;2026-08-18&quot;:0.92},{&quot;2026-08-19&quot;:0.89},{&quot;2026-08-20&quot;:0.92},{&quot;2026-08-21&quot;:0.95},{&quot;2026-08-22&quot;:0.93},{&quot;2026-08-23&quot;:0.9},{&quot;2026-08-24&quot;:0.92},{&quot;2026-08-25&quot;:0.92},{&quot;2026-08-26&quot;:0.97},{&quot;2026-08-27&quot;:1.0},{&quot;2026-08-28&quot;:1.07},{&quot;2026-08-29&quot;:1.07},{&quot;2026-08-30&quot;:1.15},{&quot;2026-08-31&quot;:1.15},{&quot;2026-09-01&quot;:1.15},{&quot;2026-09-02&quot;:1.12},{&quot;2026-09-03&quot;:1.12},{&quot;2026-09-04&quot;:1.15},{&quot;2026-09-05&quot;:1.15},{&quot;2026-09-06&quot;:1.17},{&quot;2026-09-07&quot;:1.21},{&quot;2026-09-08&quot;:1.21},{&quot;2026-09-09&quot;:1.22},{&quot;2026-09-10&quot;:1.26},{&quot;2026-09-11&quot;:1.4}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="93400"
  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-tdm 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">
            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">
            $1.40
          </span>
        </div>
      </div>
    </div>

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

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

        <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/4/8/48811e13-5774-4da1-95ec-6ea5dc4976ad.jpg?1743205092" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:2.32},{&quot;2026-06-14&quot;:2.29},{&quot;2026-06-15&quot;:1.78},{&quot;2026-06-16&quot;:1.56},{&quot;2026-06-17&quot;:1.61},{&quot;2026-06-18&quot;:1.75},{&quot;2026-06-19&quot;:1.75},{&quot;2026-06-20&quot;:1.68},{&quot;2026-06-21&quot;:1.76},{&quot;2026-06-22&quot;:1.81},{&quot;2026-06-23&quot;:1.81},{&quot;2026-06-24&quot;:1.81},{&quot;2026-06-25&quot;:1.81},{&quot;2026-06-26&quot;:1.76},{&quot;2026-06-27&quot;:1.86},{&quot;2026-06-28&quot;:1.85},{&quot;2026-06-29&quot;:1.85},{&quot;2026-06-30&quot;:1.94},{&quot;2026-07-01&quot;:1.94},{&quot;2026-07-02&quot;:2.01},{&quot;2026-07-03&quot;:2.01},{&quot;2026-07-04&quot;:1.93},{&quot;2026-07-05&quot;:1.92},{&quot;2026-07-06&quot;:2.02},{&quot;2026-07-07&quot;:1.99},{&quot;2026-07-08&quot;:1.91},{&quot;2026-07-09&quot;:2.02},{&quot;2026-07-10&quot;:2.02},{&quot;2026-07-11&quot;:2.02},{&quot;2026-07-12&quot;:2.04},{&quot;2026-07-13&quot;:2.02},{&quot;2026-07-14&quot;:2.0},{&quot;2026-07-15&quot;:2.17},{&quot;2026-07-16&quot;:2.37},{&quot;2026-07-17&quot;:2.41},{&quot;2026-07-18&quot;:2.39},{&quot;2026-07-19&quot;:2.39},{&quot;2026-07-20&quot;:2.51},{&quot;2026-07-21&quot;:2.49},{&quot;2026-07-22&quot;:2.44},{&quot;2026-07-23&quot;:2.43},{&quot;2026-07-24&quot;:2.44},{&quot;2026-07-25&quot;:2.44},{&quot;2026-07-26&quot;:2.45},{&quot;2026-07-27&quot;:2.48},{&quot;2026-07-28&quot;:2.48},{&quot;2026-07-29&quot;:2.18},{&quot;2026-07-30&quot;:2.04},{&quot;2026-07-31&quot;:1.84},{&quot;2026-08-01&quot;:1.9},{&quot;2026-08-02&quot;:1.92},{&quot;2026-08-03&quot;:1.86},{&quot;2026-08-04&quot;:1.83},{&quot;2026-08-05&quot;:1.88},{&quot;2026-08-07&quot;:1.76},{&quot;2026-08-08&quot;:1.76},{&quot;2026-08-09&quot;:1.83},{&quot;2026-08-10&quot;:1.92},{&quot;2026-08-11&quot;:1.96},{&quot;2026-08-12&quot;:1.9},{&quot;2026-08-13&quot;:1.87},{&quot;2026-08-14&quot;:1.87},{&quot;2026-08-15&quot;:1.78},{&quot;2026-08-16&quot;:1.84},{&quot;2026-08-17&quot;:1.87},{&quot;2026-08-18&quot;:1.81},{&quot;2026-08-19&quot;:1.9},{&quot;2026-08-20&quot;:1.9},{&quot;2026-08-21&quot;:1.86},{&quot;2026-08-22&quot;:1.85},{&quot;2026-08-23&quot;:1.73},{&quot;2026-08-24&quot;:1.71},{&quot;2026-08-25&quot;:1.76},{&quot;2026-08-26&quot;:1.73},{&quot;2026-08-27&quot;:1.64},{&quot;2026-08-28&quot;:1.72},{&quot;2026-08-29&quot;:1.72},{&quot;2026-08-30&quot;:1.73},{&quot;2026-08-31&quot;:1.74},{&quot;2026-09-01&quot;:1.75},{&quot;2026-09-02&quot;:1.75},{&quot;2026-09-03&quot;:1.79},{&quot;2026-09-04&quot;:1.83},{&quot;2026-09-05&quot;:1.87},{&quot;2026-09-06&quot;:1.9},{&quot;2026-09-07&quot;:1.78},{&quot;2026-09-08&quot;:1.78},{&quot;2026-09-09&quot;:1.81},{&quot;2026-09-10&quot;:1.76},{&quot;2026-09-11&quot;:1.73}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.34},{&quot;2026-06-14&quot;:1.34},{&quot;2026-06-15&quot;:1.31},{&quot;2026-06-16&quot;:1.24},{&quot;2026-06-17&quot;:1.24},{&quot;2026-06-18&quot;:1.22},{&quot;2026-06-19&quot;:1.22},{&quot;2026-06-20&quot;:1.23},{&quot;2026-06-21&quot;:1.23},{&quot;2026-06-22&quot;:1.21},{&quot;2026-06-23&quot;:1.2},{&quot;2026-06-24&quot;:1.23},{&quot;2026-06-25&quot;:1.31},{&quot;2026-06-26&quot;:1.39},{&quot;2026-06-27&quot;:1.39},{&quot;2026-06-28&quot;:1.4},{&quot;2026-06-29&quot;:1.38},{&quot;2026-06-30&quot;:1.42},{&quot;2026-07-01&quot;:1.42},{&quot;2026-07-02&quot;:1.41},{&quot;2026-07-03&quot;:1.51},{&quot;2026-07-04&quot;:1.57},{&quot;2026-07-05&quot;:1.58},{&quot;2026-07-06&quot;:1.64},{&quot;2026-07-07&quot;:1.72},{&quot;2026-07-08&quot;:1.84},{&quot;2026-07-09&quot;:1.86},{&quot;2026-07-10&quot;:1.87},{&quot;2026-07-11&quot;:1.85},{&quot;2026-07-12&quot;:1.8},{&quot;2026-07-13&quot;:1.83},{&quot;2026-07-14&quot;:1.92},{&quot;2026-07-15&quot;:1.92},{&quot;2026-07-16&quot;:1.91},{&quot;2026-07-17&quot;:1.91},{&quot;2026-07-18&quot;:1.91},{&quot;2026-07-19&quot;:1.91},{&quot;2026-07-20&quot;:1.85},{&quot;2026-07-21&quot;:1.85},{&quot;2026-07-22&quot;:1.85},{&quot;2026-07-23&quot;:1.64},{&quot;2026-07-24&quot;:1.65},{&quot;2026-07-25&quot;:1.73},{&quot;2026-07-26&quot;:1.76},{&quot;2026-07-27&quot;:1.75},{&quot;2026-07-28&quot;:1.74},{&quot;2026-07-29&quot;:1.74},{&quot;2026-07-30&quot;:1.74},{&quot;2026-07-31&quot;:1.74},{&quot;2026-08-01&quot;:1.74},{&quot;2026-08-02&quot;:1.74},{&quot;2026-08-03&quot;:1.75},{&quot;2026-08-04&quot;:1.75},{&quot;2026-08-05&quot;:1.64},{&quot;2026-08-07&quot;:1.57},{&quot;2026-08-08&quot;:1.56},{&quot;2026-08-09&quot;:1.67},{&quot;2026-08-10&quot;:1.63},{&quot;2026-08-11&quot;:1.73},{&quot;2026-08-12&quot;:1.73},{&quot;2026-08-13&quot;:1.71},{&quot;2026-08-14&quot;:1.74},{&quot;2026-08-15&quot;:1.65},{&quot;2026-08-16&quot;:1.75},{&quot;2026-08-17&quot;:1.8},{&quot;2026-08-18&quot;:1.8},{&quot;2026-08-19&quot;:1.8},{&quot;2026-08-20&quot;:1.77},{&quot;2026-08-21&quot;:1.76},{&quot;2026-08-22&quot;:1.74},{&quot;2026-08-23&quot;:1.74},{&quot;2026-08-24&quot;:1.73},{&quot;2026-08-25&quot;:1.76},{&quot;2026-08-26&quot;:1.71},{&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.87},{&quot;2026-08-31&quot;:1.81},{&quot;2026-09-01&quot;:1.81},{&quot;2026-09-02&quot;:1.76},{&quot;2026-09-03&quot;:1.76},{&quot;2026-09-04&quot;:1.76},{&quot;2026-09-05&quot;:1.76},{&quot;2026-09-06&quot;:1.58},{&quot;2026-09-07&quot;:1.55},{&quot;2026-09-08&quot;:1.46},{&quot;2026-09-09&quot;:1.46},{&quot;2026-09-10&quot;:1.45},{&quot;2026-09-11&quot;:1.4}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="4903"
  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">
            Parting Gust
        </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">
              ↓
              31%
            </span>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Parting Gust" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/0/1086e826-94b8-4398-8a38-d8eacca56a43.jpg?1783910858" />

        <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">
            Parting Gust
        </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><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="Parting Gust" src="https://cards.scryfall.io/large/front/1/0/1086e826-94b8-4398-8a38-d8eacca56a43.jpg?1783910858" />
    </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.29
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:1.12},{&quot;2026-06-14&quot;:1.13},{&quot;2026-06-15&quot;:1.15},{&quot;2026-06-16&quot;:1.29},{&quot;2026-06-17&quot;:1.28},{&quot;2026-06-18&quot;:1.12},{&quot;2026-06-19&quot;:1.16},{&quot;2026-06-20&quot;:1.23},{&quot;2026-06-21&quot;:1.22},{&quot;2026-06-22&quot;:1.22},{&quot;2026-06-23&quot;:1.21},{&quot;2026-06-24&quot;:1.15},{&quot;2026-06-25&quot;:1.17},{&quot;2026-06-26&quot;:1.17},{&quot;2026-06-27&quot;:1.18},{&quot;2026-06-28&quot;:1.19},{&quot;2026-06-29&quot;:1.24},{&quot;2026-06-30&quot;:1.24},{&quot;2026-07-01&quot;:1.23},{&quot;2026-07-02&quot;:1.3},{&quot;2026-07-03&quot;:1.27},{&quot;2026-07-04&quot;:1.29},{&quot;2026-07-05&quot;:1.39},{&quot;2026-07-06&quot;:1.41},{&quot;2026-07-07&quot;:1.42},{&quot;2026-07-08&quot;:1.42},{&quot;2026-07-09&quot;:1.42},{&quot;2026-07-10&quot;:1.42},{&quot;2026-07-11&quot;:1.46},{&quot;2026-07-12&quot;:1.64},{&quot;2026-07-13&quot;:1.62},{&quot;2026-07-14&quot;:1.62},{&quot;2026-07-15&quot;:1.62},{&quot;2026-07-16&quot;:1.58},{&quot;2026-07-17&quot;:1.6},{&quot;2026-07-18&quot;:1.61},{&quot;2026-07-19&quot;:1.61},{&quot;2026-07-20&quot;:1.54},{&quot;2026-07-21&quot;:1.47},{&quot;2026-07-22&quot;:1.52},{&quot;2026-07-23&quot;:1.45},{&quot;2026-07-24&quot;:1.42},{&quot;2026-07-25&quot;:1.5},{&quot;2026-07-26&quot;:1.3},{&quot;2026-07-27&quot;:1.36},{&quot;2026-07-28&quot;:1.36},{&quot;2026-07-29&quot;:1.3},{&quot;2026-07-30&quot;:1.14},{&quot;2026-07-31&quot;:1.24},{&quot;2026-08-01&quot;:1.17},{&quot;2026-08-02&quot;:1.21},{&quot;2026-08-03&quot;:1.22},{&quot;2026-08-04&quot;:1.23},{&quot;2026-08-05&quot;:1.22},{&quot;2026-08-07&quot;:1.23},{&quot;2026-08-08&quot;:1.19},{&quot;2026-08-09&quot;:1.29},{&quot;2026-08-10&quot;:1.27},{&quot;2026-08-11&quot;:1.37},{&quot;2026-08-12&quot;:1.37},{&quot;2026-08-13&quot;:1.37},{&quot;2026-08-14&quot;:1.37},{&quot;2026-08-15&quot;:1.39},{&quot;2026-08-16&quot;:1.39},{&quot;2026-08-17&quot;:1.38},{&quot;2026-08-18&quot;:1.38},{&quot;2026-08-19&quot;:1.41},{&quot;2026-08-20&quot;:1.47},{&quot;2026-08-21&quot;:1.6},{&quot;2026-08-22&quot;:1.6},{&quot;2026-08-23&quot;:1.62},{&quot;2026-08-24&quot;:1.52},{&quot;2026-08-25&quot;:1.5},{&quot;2026-08-26&quot;:1.49},{&quot;2026-08-27&quot;:1.5},{&quot;2026-08-28&quot;:1.55},{&quot;2026-08-29&quot;:1.55},{&quot;2026-08-30&quot;:1.52},{&quot;2026-08-31&quot;:1.52},{&quot;2026-09-01&quot;:1.52},{&quot;2026-09-02&quot;:1.52},{&quot;2026-09-03&quot;:1.44},{&quot;2026-09-04&quot;:1.39},{&quot;2026-09-05&quot;:1.36},{&quot;2026-09-06&quot;:1.44},{&quot;2026-09-07&quot;:1.57},{&quot;2026-09-08&quot;:1.64},{&quot;2026-09-09&quot;:1.62},{&quot;2026-09-10&quot;:1.64},{&quot;2026-09-11&quot;:1.65}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.92},{&quot;2026-06-14&quot;:1.01},{&quot;2026-06-15&quot;:0.95},{&quot;2026-06-16&quot;:0.97},{&quot;2026-06-17&quot;:1.03},{&quot;2026-06-18&quot;:1.17},{&quot;2026-06-19&quot;:1.13},{&quot;2026-06-20&quot;:1.1},{&quot;2026-06-21&quot;:1.07},{&quot;2026-06-22&quot;:1.04},{&quot;2026-06-23&quot;:1.1},{&quot;2026-06-24&quot;:1.08},{&quot;2026-06-25&quot;:1.09},{&quot;2026-06-26&quot;:1.0},{&quot;2026-06-27&quot;:0.94},{&quot;2026-06-28&quot;:0.91},{&quot;2026-06-29&quot;:0.87},{&quot;2026-06-30&quot;:0.98},{&quot;2026-07-01&quot;:1.05},{&quot;2026-07-02&quot;:1.07},{&quot;2026-07-03&quot;:1.06},{&quot;2026-07-04&quot;:1.16},{&quot;2026-07-05&quot;:1.12},{&quot;2026-07-06&quot;:1.02},{&quot;2026-07-07&quot;:1.16},{&quot;2026-07-08&quot;:1.19},{&quot;2026-07-09&quot;:1.2},{&quot;2026-07-10&quot;:1.21},{&quot;2026-07-11&quot;:1.12},{&quot;2026-07-12&quot;:1.32},{&quot;2026-07-13&quot;:1.38},{&quot;2026-07-14&quot;:1.53},{&quot;2026-07-15&quot;:1.58},{&quot;2026-07-16&quot;:1.36},{&quot;2026-07-17&quot;:1.26},{&quot;2026-07-18&quot;:1.21},{&quot;2026-07-19&quot;:1.32},{&quot;2026-07-20&quot;:1.46},{&quot;2026-07-21&quot;:1.39},{&quot;2026-07-22&quot;:1.33},{&quot;2026-07-23&quot;:1.13},{&quot;2026-07-24&quot;:1.08},{&quot;2026-07-25&quot;:0.98},{&quot;2026-07-26&quot;:0.94},{&quot;2026-07-27&quot;:0.97},{&quot;2026-07-28&quot;:1.02},{&quot;2026-07-29&quot;:1.05},{&quot;2026-07-30&quot;:1.01},{&quot;2026-07-31&quot;:0.96},{&quot;2026-08-01&quot;:1.02},{&quot;2026-08-02&quot;:1.14},{&quot;2026-08-03&quot;:1.3},{&quot;2026-08-04&quot;:1.46},{&quot;2026-08-05&quot;:1.57},{&quot;2026-08-07&quot;:1.6},{&quot;2026-08-08&quot;:1.6},{&quot;2026-08-09&quot;:1.55},{&quot;2026-08-10&quot;:1.59},{&quot;2026-08-11&quot;:1.51},{&quot;2026-08-12&quot;:1.3},{&quot;2026-08-13&quot;:1.04},{&quot;2026-08-14&quot;:1.13},{&quot;2026-08-15&quot;:1.0},{&quot;2026-08-16&quot;:1.18},{&quot;2026-08-17&quot;:1.39},{&quot;2026-08-18&quot;:1.37},{&quot;2026-08-19&quot;:1.27},{&quot;2026-08-20&quot;:1.14},{&quot;2026-08-21&quot;:1.32},{&quot;2026-08-22&quot;:1.34},{&quot;2026-08-23&quot;:1.32},{&quot;2026-08-24&quot;:1.41},{&quot;2026-08-25&quot;:1.54},{&quot;2026-08-26&quot;:1.55},{&quot;2026-08-27&quot;:1.54},{&quot;2026-08-28&quot;:1.59},{&quot;2026-08-29&quot;:1.59},{&quot;2026-08-30&quot;:1.64},{&quot;2026-08-31&quot;:1.76},{&quot;2026-09-01&quot;:1.68},{&quot;2026-09-02&quot;:1.73},{&quot;2026-09-03&quot;:1.78},{&quot;2026-09-04&quot;:1.92},{&quot;2026-09-05&quot;:1.88},{&quot;2026-09-06&quot;:1.9},{&quot;2026-09-07&quot;:1.72},{&quot;2026-09-08&quot;:1.52},{&quot;2026-09-09&quot;:1.42},{&quot;2026-09-10&quot;:1.28},{&quot;2026-09-11&quot;:1.29}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

        <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/c/0cfd3cb1-2209-453d-be45-ce1b56265496.jpg?1783913858" />
    </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.16
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  18%
                </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-13&quot;:1.36},{&quot;2026-06-14&quot;:1.37},{&quot;2026-06-15&quot;:1.39},{&quot;2026-06-16&quot;:1.4},{&quot;2026-06-17&quot;:1.41},{&quot;2026-06-18&quot;:1.41},{&quot;2026-06-19&quot;:1.39},{&quot;2026-06-20&quot;:1.39},{&quot;2026-06-21&quot;:1.39},{&quot;2026-06-22&quot;:1.4},{&quot;2026-06-23&quot;:1.39},{&quot;2026-06-24&quot;:1.23},{&quot;2026-06-25&quot;:1.25},{&quot;2026-06-26&quot;:1.25},{&quot;2026-06-27&quot;:1.28},{&quot;2026-06-28&quot;:1.24},{&quot;2026-06-29&quot;:1.24},{&quot;2026-06-30&quot;:1.24},{&quot;2026-07-01&quot;:1.18},{&quot;2026-07-02&quot;:1.17},{&quot;2026-07-03&quot;:1.17},{&quot;2026-07-04&quot;:1.15},{&quot;2026-07-05&quot;:1.09},{&quot;2026-07-06&quot;:1.05},{&quot;2026-07-07&quot;:1.07},{&quot;2026-07-08&quot;:1.05},{&quot;2026-07-09&quot;:1.05},{&quot;2026-07-10&quot;:1.05},{&quot;2026-07-11&quot;:1.05},{&quot;2026-07-12&quot;:1.14},{&quot;2026-07-13&quot;:1.14},{&quot;2026-07-14&quot;:1.17},{&quot;2026-07-15&quot;:1.15},{&quot;2026-07-16&quot;:1.15},{&quot;2026-07-17&quot;:1.13},{&quot;2026-07-18&quot;:1.2},{&quot;2026-07-19&quot;:1.27},{&quot;2026-07-20&quot;:1.27},{&quot;2026-07-21&quot;:1.26},{&quot;2026-07-22&quot;:1.25},{&quot;2026-07-23&quot;:1.22},{&quot;2026-07-24&quot;:1.22},{&quot;2026-07-25&quot;:1.38},{&quot;2026-07-26&quot;:1.3},{&quot;2026-07-27&quot;:1.33},{&quot;2026-07-28&quot;:1.33},{&quot;2026-07-29&quot;:1.32},{&quot;2026-07-30&quot;:1.32},{&quot;2026-07-31&quot;:1.24},{&quot;2026-08-01&quot;:1.27},{&quot;2026-08-02&quot;:1.28},{&quot;2026-08-03&quot;:1.21},{&quot;2026-08-04&quot;:1.16},{&quot;2026-08-05&quot;:1.11},{&quot;2026-08-07&quot;:1.17},{&quot;2026-08-08&quot;:1.15},{&quot;2026-08-09&quot;:1.19},{&quot;2026-08-10&quot;:1.24},{&quot;2026-08-11&quot;:1.26},{&quot;2026-08-12&quot;:1.24},{&quot;2026-08-13&quot;:1.24},{&quot;2026-08-14&quot;:1.24},{&quot;2026-08-15&quot;:1.26},{&quot;2026-08-16&quot;:1.45},{&quot;2026-08-17&quot;:1.44},{&quot;2026-08-18&quot;:1.48},{&quot;2026-08-19&quot;:1.45},{&quot;2026-08-20&quot;:1.48},{&quot;2026-08-21&quot;:1.5},{&quot;2026-08-22&quot;:1.57},{&quot;2026-08-23&quot;:1.6},{&quot;2026-08-24&quot;:1.65},{&quot;2026-08-25&quot;:1.65},{&quot;2026-08-26&quot;:1.67},{&quot;2026-08-27&quot;:1.72},{&quot;2026-08-28&quot;:1.72},{&quot;2026-08-29&quot;:1.72},{&quot;2026-08-30&quot;:1.44},{&quot;2026-08-31&quot;:1.46},{&quot;2026-09-01&quot;:1.39},{&quot;2026-09-02&quot;:1.42},{&quot;2026-09-03&quot;:1.42},{&quot;2026-09-04&quot;:1.42},{&quot;2026-09-05&quot;:1.41},{&quot;2026-09-06&quot;:1.35},{&quot;2026-09-07&quot;:1.31},{&quot;2026-09-08&quot;:1.29},{&quot;2026-09-09&quot;:1.26},{&quot;2026-09-10&quot;:1.18},{&quot;2026-09-11&quot;:1.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="11862"
  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">
            Blasphemous Act
        </span>


      </div>

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

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Blasphemous Act" src="https://cards.scryfall.io/large/front/4/0/40e1ef14-cb26-486e-9b54-0b532f5b7435.jpg?1783928821" />
    </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.02
              </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">
                $3.40
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:3.29},{&quot;2026-06-14&quot;:3.29},{&quot;2026-06-15&quot;:3.29},{&quot;2026-06-16&quot;:3.29},{&quot;2026-06-17&quot;:3.29},{&quot;2026-06-18&quot;:3.29},{&quot;2026-06-19&quot;:3.29},{&quot;2026-06-20&quot;:3.29},{&quot;2026-06-21&quot;:3.29},{&quot;2026-06-22&quot;:3.29},{&quot;2026-06-23&quot;:3.29},{&quot;2026-06-24&quot;:3.29},{&quot;2026-06-25&quot;:3.28},{&quot;2026-06-26&quot;:3.28},{&quot;2026-06-27&quot;:3.28},{&quot;2026-06-28&quot;:3.28},{&quot;2026-06-29&quot;:3.28},{&quot;2026-06-30&quot;:3.28},{&quot;2026-07-01&quot;:3.28},{&quot;2026-07-02&quot;:3.28},{&quot;2026-07-03&quot;:3.28},{&quot;2026-07-04&quot;:3.28},{&quot;2026-07-05&quot;:3.29},{&quot;2026-07-06&quot;:3.29},{&quot;2026-07-07&quot;:3.29},{&quot;2026-07-08&quot;:3.29},{&quot;2026-07-09&quot;:3.29},{&quot;2026-07-10&quot;:3.29},{&quot;2026-07-11&quot;:3.29},{&quot;2026-07-12&quot;:3.29},{&quot;2026-07-13&quot;:3.29},{&quot;2026-07-14&quot;:3.29},{&quot;2026-07-15&quot;:3.33},{&quot;2026-07-16&quot;:3.33},{&quot;2026-07-17&quot;:3.3},{&quot;2026-07-18&quot;:3.3},{&quot;2026-07-19&quot;:3.3},{&quot;2026-07-20&quot;:3.3},{&quot;2026-07-21&quot;:3.3},{&quot;2026-07-22&quot;:3.3},{&quot;2026-07-23&quot;:3.3},{&quot;2026-07-24&quot;:3.3},{&quot;2026-07-25&quot;:3.3},{&quot;2026-07-26&quot;:3.3},{&quot;2026-07-27&quot;:3.3},{&quot;2026-07-28&quot;:3.39},{&quot;2026-07-29&quot;:3.39},{&quot;2026-07-30&quot;:3.3},{&quot;2026-07-31&quot;:3.28},{&quot;2026-08-01&quot;:3.32},{&quot;2026-08-02&quot;:3.32},{&quot;2026-08-03&quot;:3.38},{&quot;2026-08-04&quot;:3.38},{&quot;2026-08-05&quot;:3.63},{&quot;2026-08-07&quot;:3.63},{&quot;2026-08-08&quot;:3.63},{&quot;2026-08-09&quot;:3.63},{&quot;2026-08-10&quot;:3.63},{&quot;2026-08-11&quot;:3.62},{&quot;2026-08-12&quot;:3.62},{&quot;2026-08-13&quot;:3.62},{&quot;2026-08-14&quot;:3.62},{&quot;2026-08-15&quot;:3.62},{&quot;2026-08-16&quot;:3.61},{&quot;2026-08-17&quot;:3.6},{&quot;2026-08-18&quot;:3.6},{&quot;2026-08-19&quot;:3.62},{&quot;2026-08-20&quot;:3.62},{&quot;2026-08-21&quot;:3.62},{&quot;2026-08-22&quot;:3.62},{&quot;2026-08-23&quot;:3.62},{&quot;2026-08-24&quot;:3.41},{&quot;2026-08-25&quot;:3.4},{&quot;2026-08-26&quot;:3.4},{&quot;2026-08-27&quot;:3.4},{&quot;2026-08-28&quot;:3.4},{&quot;2026-08-29&quot;:3.4},{&quot;2026-08-30&quot;:3.4},{&quot;2026-08-31&quot;:3.4},{&quot;2026-09-01&quot;:3.4},{&quot;2026-09-02&quot;:3.4},{&quot;2026-09-03&quot;:3.4},{&quot;2026-09-04&quot;:3.4},{&quot;2026-09-05&quot;:3.4},{&quot;2026-09-06&quot;:3.4},{&quot;2026-09-07&quot;:3.4},{&quot;2026-09-08&quot;:3.4},{&quot;2026-09-09&quot;:3.4},{&quot;2026-09-10&quot;:3.4},{&quot;2026-09-11&quot;:3.4}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.13},{&quot;2026-06-14&quot;:1.09},{&quot;2026-06-15&quot;:1.14},{&quot;2026-06-16&quot;:1.13},{&quot;2026-06-17&quot;:1.12},{&quot;2026-06-18&quot;:1.12},{&quot;2026-06-19&quot;:1.12},{&quot;2026-06-20&quot;:1.08},{&quot;2026-06-21&quot;:1.08},{&quot;2026-06-22&quot;:1.07},{&quot;2026-06-23&quot;:1.07},{&quot;2026-06-24&quot;:1.06},{&quot;2026-06-25&quot;:1.07},{&quot;2026-06-26&quot;:1.07},{&quot;2026-06-27&quot;:1.06},{&quot;2026-06-28&quot;:1.06},{&quot;2026-06-29&quot;:1.06},{&quot;2026-06-30&quot;:1.06},{&quot;2026-07-01&quot;:1.07},{&quot;2026-07-02&quot;:1.07},{&quot;2026-07-03&quot;:1.08},{&quot;2026-07-04&quot;:1.06},{&quot;2026-07-05&quot;:1.06},{&quot;2026-07-06&quot;:1.04},{&quot;2026-07-07&quot;:1.07},{&quot;2026-07-08&quot;:1.07},{&quot;2026-07-09&quot;:1.07},{&quot;2026-07-10&quot;:1.07},{&quot;2026-07-11&quot;:1.07},{&quot;2026-07-12&quot;:1.07},{&quot;2026-07-13&quot;:1.12},{&quot;2026-07-14&quot;:1.12},{&quot;2026-07-15&quot;:1.12},{&quot;2026-07-16&quot;:1.12},{&quot;2026-07-17&quot;:1.11},{&quot;2026-07-18&quot;:1.11},{&quot;2026-07-19&quot;:1.09},{&quot;2026-07-20&quot;:1.08},{&quot;2026-07-21&quot;:1.08},{&quot;2026-07-22&quot;:1.07},{&quot;2026-07-23&quot;:1.08},{&quot;2026-07-24&quot;:1.08},{&quot;2026-07-25&quot;:1.06},{&quot;2026-07-26&quot;:1.08},{&quot;2026-07-27&quot;:1.08},{&quot;2026-07-28&quot;:1.06},{&quot;2026-07-29&quot;:1.06},{&quot;2026-07-30&quot;:1.09},{&quot;2026-07-31&quot;:1.04},{&quot;2026-08-01&quot;:1.04},{&quot;2026-08-02&quot;:1.04},{&quot;2026-08-03&quot;:1.0},{&quot;2026-08-04&quot;:1.0},{&quot;2026-08-05&quot;:1.02},{&quot;2026-08-07&quot;:1.04},{&quot;2026-08-08&quot;:1.02},{&quot;2026-08-09&quot;:1.03},{&quot;2026-08-10&quot;:1.03},{&quot;2026-08-11&quot;:1.02},{&quot;2026-08-12&quot;:1.03},{&quot;2026-08-13&quot;:1.03},{&quot;2026-08-14&quot;:1.03},{&quot;2026-08-15&quot;:1.03},{&quot;2026-08-16&quot;:1.01},{&quot;2026-08-17&quot;:1.0},{&quot;2026-08-18&quot;:1.0},{&quot;2026-08-19&quot;:1.03},{&quot;2026-08-20&quot;:1.04},{&quot;2026-08-21&quot;:1.06},{&quot;2026-08-22&quot;:1.08},{&quot;2026-08-23&quot;:1.06},{&quot;2026-08-24&quot;:1.06},{&quot;2026-08-25&quot;:1.07},{&quot;2026-08-26&quot;:1.04},{&quot;2026-08-27&quot;:1.03},{&quot;2026-08-28&quot;:1.03},{&quot;2026-08-29&quot;:1.03},{&quot;2026-08-30&quot;:1.03},{&quot;2026-08-31&quot;:1.03},{&quot;2026-09-01&quot;:1.06},{&quot;2026-09-02&quot;:1.06},{&quot;2026-09-03&quot;:1.0},{&quot;2026-09-04&quot;:0.95},{&quot;2026-09-05&quot;:0.96},{&quot;2026-09-06&quot;:0.96},{&quot;2026-09-07&quot;:0.97},{&quot;2026-09-08&quot;:0.99},{&quot;2026-09-09&quot;:0.99},{&quot;2026-09-10&quot;:0.98},{&quot;2026-09-11&quot;:1.02}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Skyshroud Claim" src="https://cards.scryfall.io/large/front/b/9/b946e86c-a6fd-4377-9746-bc08b71e499a.jpg?1783910198" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

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

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


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Plant Dinosaur
      </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="Topiary Stomper" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/e/8/e8b92271-4412-4165-a4a6-e8653e755107.jpg?1783913853" />

        <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">
            Topiary Stomper
        </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 — Plant Dinosaur</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
          </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="Topiary Stomper" src="https://cards.scryfall.io/large/front/e/8/e8b92271-4412-4165-a4a6-e8653e755107.jpg?1783913853" />
    </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>

        <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-13&quot;:0.7},{&quot;2026-06-14&quot;:0.69},{&quot;2026-06-15&quot;:0.69},{&quot;2026-06-16&quot;:0.7},{&quot;2026-06-17&quot;:0.69},{&quot;2026-06-18&quot;:0.69},{&quot;2026-06-19&quot;:0.7},{&quot;2026-06-20&quot;:0.7},{&quot;2026-06-21&quot;:0.68},{&quot;2026-06-22&quot;:0.67},{&quot;2026-06-23&quot;:0.66},{&quot;2026-06-24&quot;:0.65},{&quot;2026-06-25&quot;:0.64},{&quot;2026-06-26&quot;:0.64},{&quot;2026-06-27&quot;:0.63},{&quot;2026-06-28&quot;:0.61},{&quot;2026-06-29&quot;:0.6},{&quot;2026-06-30&quot;:0.6},{&quot;2026-07-01&quot;:0.6},{&quot;2026-07-02&quot;:0.59},{&quot;2026-07-03&quot;:0.59},{&quot;2026-07-04&quot;:0.58},{&quot;2026-07-05&quot;:0.59},{&quot;2026-07-06&quot;:0.61},{&quot;2026-07-07&quot;:0.6},{&quot;2026-07-08&quot;:0.62},{&quot;2026-07-09&quot;:0.62},{&quot;2026-07-10&quot;:0.62},{&quot;2026-07-11&quot;:0.65},{&quot;2026-07-12&quot;:0.65},{&quot;2026-07-13&quot;:0.68},{&quot;2026-07-14&quot;:0.67},{&quot;2026-07-15&quot;:0.69},{&quot;2026-07-16&quot;:0.69},{&quot;2026-07-17&quot;:0.72},{&quot;2026-07-18&quot;:0.72},{&quot;2026-07-19&quot;:0.72},{&quot;2026-07-20&quot;:0.72},{&quot;2026-07-21&quot;:0.72},{&quot;2026-07-22&quot;:0.72},{&quot;2026-07-23&quot;:0.73},{&quot;2026-07-24&quot;:0.76},{&quot;2026-07-25&quot;:0.78},{&quot;2026-07-26&quot;:0.79},{&quot;2026-07-27&quot;:0.82},{&quot;2026-07-28&quot;:0.85},{&quot;2026-07-29&quot;:0.89},{&quot;2026-07-30&quot;:0.89},{&quot;2026-07-31&quot;:0.92},{&quot;2026-08-01&quot;:0.92},{&quot;2026-08-02&quot;:0.9},{&quot;2026-08-03&quot;:0.87},{&quot;2026-08-04&quot;:0.85},{&quot;2026-08-05&quot;:0.85},{&quot;2026-08-07&quot;:0.85},{&quot;2026-08-08&quot;:0.9},{&quot;2026-08-09&quot;:0.9},{&quot;2026-08-10&quot;:0.93},{&quot;2026-08-11&quot;:0.95},{&quot;2026-08-12&quot;:0.92},{&quot;2026-08-13&quot;:0.92},{&quot;2026-08-14&quot;:0.91},{&quot;2026-08-15&quot;:0.91},{&quot;2026-08-16&quot;:0.91},{&quot;2026-08-17&quot;:0.9},{&quot;2026-08-18&quot;:0.84},{&quot;2026-08-19&quot;:0.86},{&quot;2026-08-20&quot;:0.88},{&quot;2026-08-21&quot;:0.87},{&quot;2026-08-22&quot;:0.8},{&quot;2026-08-23&quot;:0.78},{&quot;2026-08-24&quot;:0.82},{&quot;2026-08-25&quot;:0.82},{&quot;2026-08-26&quot;:0.81},{&quot;2026-08-27&quot;:0.83},{&quot;2026-08-28&quot;:0.84},{&quot;2026-08-29&quot;:0.84},{&quot;2026-08-30&quot;:0.83},{&quot;2026-08-31&quot;:0.83},{&quot;2026-09-01&quot;:0.86},{&quot;2026-09-02&quot;:0.86},{&quot;2026-09-03&quot;:0.84},{&quot;2026-09-04&quot;:0.86},{&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.88},{&quot;2026-09-09&quot;:0.86},{&quot;2026-09-10&quot;:0.87},{&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="74671"
  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-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">
            2 owned
          </div>

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

          <span class="text-sm font-medium text-nine-white">
            $0.83
          </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/5/b5453630-bfff-4403-a9a9-49f1534e1d42.jpg?1783913713" />

        <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/5/b5453630-bfff-4403-a9a9-49f1534e1d42.jpg?1783913713" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Foil</span>
              <span class="text-lg font-medium text-nine-white">$0.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;:0.74},{&quot;2026-06-10&quot;:0.8},{&quot;2026-06-11&quot;:0.78},{&quot;2026-06-12&quot;:0.79},{&quot;2026-06-13&quot;:0.79},{&quot;2026-06-14&quot;:0.77},{&quot;2026-06-15&quot;:0.76},{&quot;2026-06-16&quot;:0.77},{&quot;2026-06-17&quot;:0.77},{&quot;2026-06-18&quot;:0.77},{&quot;2026-06-19&quot;:0.77},{&quot;2026-06-20&quot;:0.73},{&quot;2026-06-21&quot;:0.73},{&quot;2026-06-22&quot;:0.76},{&quot;2026-06-24&quot;:0.73},{&quot;2026-06-25&quot;:0.75},{&quot;2026-06-26&quot;:0.77},{&quot;2026-06-27&quot;:0.77},{&quot;2026-06-28&quot;:0.78},{&quot;2026-06-29&quot;:0.78},{&quot;2026-06-30&quot;:0.77},{&quot;2026-07-01&quot;:0.79},{&quot;2026-07-02&quot;:0.8},{&quot;2026-07-03&quot;:0.78},{&quot;2026-07-04&quot;:0.78},{&quot;2026-07-05&quot;:0.79},{&quot;2026-07-06&quot;:0.73},{&quot;2026-07-07&quot;:0.73},{&quot;2026-07-08&quot;:0.74},{&quot;2026-07-09&quot;:0.76},{&quot;2026-07-10&quot;:0.74},{&quot;2026-07-11&quot;:0.74},{&quot;2026-07-12&quot;:0.72},{&quot;2026-07-13&quot;:0.71},{&quot;2026-07-14&quot;:0.68},{&quot;2026-07-15&quot;:0.68},{&quot;2026-07-16&quot;:0.68},{&quot;2026-07-17&quot;:0.68},{&quot;2026-07-18&quot;:0.68},{&quot;2026-07-19&quot;:0.68},{&quot;2026-07-20&quot;:0.68},{&quot;2026-07-21&quot;:0.68},{&quot;2026-07-23&quot;:0.64},{&quot;2026-07-25&quot;:0.63},{&quot;2026-07-26&quot;:0.64},{&quot;2026-07-27&quot;:0.64},{&quot;2026-07-29&quot;:0.62},{&quot;2026-07-30&quot;:0.62},{&quot;2026-07-31&quot;:0.65},{&quot;2026-08-01&quot;:0.65},{&quot;2026-08-02&quot;:0.68},{&quot;2026-08-03&quot;:0.68},{&quot;2026-08-04&quot;:0.68},{&quot;2026-08-05&quot;:0.68},{&quot;2026-08-07&quot;:0.71},{&quot;2026-08-08&quot;:0.73},{&quot;2026-08-09&quot;:0.72},{&quot;2026-08-10&quot;:0.79},{&quot;2026-08-11&quot;:0.83},{&quot;2026-08-12&quot;:0.82},{&quot;2026-08-13&quot;:0.81},{&quot;2026-08-14&quot;:0.81},{&quot;2026-08-15&quot;:0.81},{&quot;2026-08-16&quot;:0.81},{&quot;2026-08-17&quot;:0.81},{&quot;2026-08-18&quot;:0.82},{&quot;2026-08-19&quot;:0.83},{&quot;2026-08-20&quot;:0.83},{&quot;2026-08-21&quot;:0.79},{&quot;2026-08-22&quot;:0.77},{&quot;2026-08-23&quot;:0.76},{&quot;2026-08-24&quot;:0.78},{&quot;2026-08-25&quot;:0.78},{&quot;2026-08-26&quot;:0.78},{&quot;2026-08-27&quot;:0.76},{&quot;2026-08-28&quot;:0.78},{&quot;2026-08-29&quot;:0.78},{&quot;2026-08-30&quot;:0.69},{&quot;2026-08-31&quot;:0.73},{&quot;2026-09-01&quot;:0.73},{&quot;2026-09-02&quot;:0.76},{&quot;2026-09-03&quot;:0.78},{&quot;2026-09-04&quot;:0.79},{&quot;2026-09-05&quot;:0.79},{&quot;2026-09-06&quot;:0.81},{&quot;2026-09-07&quot;:0.83},{&quot;2026-09-08&quot;:0.83},{&quot;2026-09-09&quot;:0.83},{&quot;2026-09-10&quot;:0.83},{&quot;2026-09-11&quot;:0.83}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:0.39},{&quot;2026-06-10&quot;:0.41},{&quot;2026-06-11&quot;:0.41},{&quot;2026-06-12&quot;:0.41},{&quot;2026-06-13&quot;:0.41},{&quot;2026-06-14&quot;:0.41},{&quot;2026-06-15&quot;:0.41},{&quot;2026-06-16&quot;:0.42},{&quot;2026-06-17&quot;:0.42},{&quot;2026-06-18&quot;:0.47},{&quot;2026-06-19&quot;:0.45},{&quot;2026-06-20&quot;:0.43},{&quot;2026-06-21&quot;:0.45},{&quot;2026-06-22&quot;:0.43},{&quot;2026-06-24&quot;:0.42},{&quot;2026-06-25&quot;:0.42},{&quot;2026-06-26&quot;:0.42},{&quot;2026-06-27&quot;:0.42},{&quot;2026-06-28&quot;:0.41},{&quot;2026-06-29&quot;:0.4},{&quot;2026-06-30&quot;:0.46},{&quot;2026-07-01&quot;:0.42},{&quot;2026-07-02&quot;:0.44},{&quot;2026-07-03&quot;:0.45},{&quot;2026-07-04&quot;:0.45},{&quot;2026-07-05&quot;:0.47},{&quot;2026-07-06&quot;:0.49},{&quot;2026-07-07&quot;:0.47},{&quot;2026-07-08&quot;:0.45},{&quot;2026-07-09&quot;:0.44},{&quot;2026-07-10&quot;:0.44},{&quot;2026-07-11&quot;:0.42},{&quot;2026-07-12&quot;:0.41},{&quot;2026-07-13&quot;:0.41},{&quot;2026-07-14&quot;:0.43},{&quot;2026-07-15&quot;:0.42},{&quot;2026-07-16&quot;:0.41},{&quot;2026-07-17&quot;:0.41},{&quot;2026-07-18&quot;:0.44},{&quot;2026-07-19&quot;:0.44},{&quot;2026-07-20&quot;:0.43},{&quot;2026-07-21&quot;:0.44},{&quot;2026-07-23&quot;:0.46},{&quot;2026-07-25&quot;:0.51},{&quot;2026-07-26&quot;:0.49},{&quot;2026-07-27&quot;:0.49},{&quot;2026-07-29&quot;:0.51},{&quot;2026-07-30&quot;:0.51},{&quot;2026-07-31&quot;:0.51},{&quot;2026-08-01&quot;:0.5},{&quot;2026-08-02&quot;:0.49},{&quot;2026-08-03&quot;:0.48},{&quot;2026-08-04&quot;:0.47},{&quot;2026-08-05&quot;:0.46},{&quot;2026-08-07&quot;:0.52},{&quot;2026-08-08&quot;:0.51},{&quot;2026-08-09&quot;:0.51},{&quot;2026-08-10&quot;:0.53},{&quot;2026-08-11&quot;:0.52},{&quot;2026-08-12&quot;:0.54},{&quot;2026-08-13&quot;:0.53},{&quot;2026-08-14&quot;:0.51},{&quot;2026-08-15&quot;:0.47},{&quot;2026-08-16&quot;:0.47},{&quot;2026-08-17&quot;:0.47},{&quot;2026-08-18&quot;:0.43},{&quot;2026-08-19&quot;:0.43},{&quot;2026-08-20&quot;:0.43},{&quot;2026-08-21&quot;:0.43},{&quot;2026-08-22&quot;:0.41},{&quot;2026-08-23&quot;:0.42},{&quot;2026-08-24&quot;:0.43},{&quot;2026-08-25&quot;:0.43},{&quot;2026-08-26&quot;:0.45},{&quot;2026-08-27&quot;:0.44},{&quot;2026-08-28&quot;:0.45},{&quot;2026-08-29&quot;:0.45},{&quot;2026-08-30&quot;:0.46},{&quot;2026-08-31&quot;:0.46},{&quot;2026-09-01&quot;:0.46},{&quot;2026-09-02&quot;:0.46},{&quot;2026-09-03&quot;:0.46},{&quot;2026-09-04&quot;:0.45},{&quot;2026-09-05&quot;:0.43},{&quot;2026-09-06&quot;:0.41},{&quot;2026-09-07&quot;:0.4},{&quot;2026-09-08&quot;:0.39},{&quot;2026-09-09&quot;:0.38},{&quot;2026-09-10&quot;:0.38},{&quot;2026-09-11&quot;:0.37}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

        <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">
            Bronzebeak Foragers
        </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 — Dinosaur</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Bronzebeak Foragers" src="https://cards.scryfall.io/large/front/d/a/dadfcd91-3000-448e-a304-be425ff68644.jpg?1783913914" />
    </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.64
              </span>

            </div>
          </div>

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Cultivate" src="https://cards.scryfall.io/large/front/e/1/e19cd136-0541-4db0-997f-20a58ec8d028.jpg?1783913861" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Garruk&#39;s Uprising" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/8/4805c303-e73b-443b-a09f-49d2c2c88bb5.jpg?1783909059" />

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

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Garruk&#39;s Uprising
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Garruk&#39;s Uprising" src="https://cards.scryfall.io/large/front/4/8/4805c303-e73b-443b-a09f-49d2c2c88bb5.jpg?1783909059" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-11&quot;:0.68},{&quot;2026-06-12&quot;:0.68},{&quot;2026-06-13&quot;:0.7},{&quot;2026-06-14&quot;:0.71},{&quot;2026-06-15&quot;:0.71},{&quot;2026-06-16&quot;:0.72},{&quot;2026-06-17&quot;:0.72},{&quot;2026-06-18&quot;:0.72},{&quot;2026-06-19&quot;:0.71},{&quot;2026-06-20&quot;:0.71},{&quot;2026-06-21&quot;:0.71},{&quot;2026-06-22&quot;:0.71},{&quot;2026-06-23&quot;:0.72},{&quot;2026-06-24&quot;:0.72},{&quot;2026-06-25&quot;:0.71},{&quot;2026-06-26&quot;:0.71},{&quot;2026-06-27&quot;:0.7},{&quot;2026-06-28&quot;:0.69},{&quot;2026-06-29&quot;:0.69},{&quot;2026-06-30&quot;:0.69},{&quot;2026-07-01&quot;:0.68},{&quot;2026-07-02&quot;:0.67},{&quot;2026-07-03&quot;:0.68},{&quot;2026-07-04&quot;:0.68},{&quot;2026-07-05&quot;:0.67},{&quot;2026-07-06&quot;:0.67},{&quot;2026-07-07&quot;:0.68},{&quot;2026-07-08&quot;:0.69},{&quot;2026-07-09&quot;:0.69},{&quot;2026-07-10&quot;:0.68},{&quot;2026-07-11&quot;:0.68},{&quot;2026-07-12&quot;:0.68},{&quot;2026-07-13&quot;:0.73},{&quot;2026-07-14&quot;:0.76},{&quot;2026-07-15&quot;:0.76},{&quot;2026-07-16&quot;:0.78},{&quot;2026-07-17&quot;:0.78},{&quot;2026-07-18&quot;:0.78},{&quot;2026-07-19&quot;:0.81},{&quot;2026-07-20&quot;:0.8},{&quot;2026-07-21&quot;:0.8},{&quot;2026-07-23&quot;:0.77},{&quot;2026-07-25&quot;:0.72},{&quot;2026-07-26&quot;:0.73},{&quot;2026-07-27&quot;:0.73},{&quot;2026-07-28&quot;:0.73},{&quot;2026-07-29&quot;:0.73},{&quot;2026-07-30&quot;:0.74},{&quot;2026-07-31&quot;:0.7},{&quot;2026-08-01&quot;:0.69},{&quot;2026-08-02&quot;:0.74},{&quot;2026-08-03&quot;:0.74},{&quot;2026-08-04&quot;:0.87},{&quot;2026-08-05&quot;:0.97},{&quot;2026-08-07&quot;:1.01},{&quot;2026-08-08&quot;:1.01},{&quot;2026-08-09&quot;:0.99},{&quot;2026-08-10&quot;:0.98},{&quot;2026-08-11&quot;:0.98},{&quot;2026-08-12&quot;:1.03},{&quot;2026-08-13&quot;:0.99},{&quot;2026-08-14&quot;:0.96},{&quot;2026-08-15&quot;:0.9},{&quot;2026-08-16&quot;:0.94},{&quot;2026-08-17&quot;:0.89},{&quot;2026-08-18&quot;:0.88},{&quot;2026-08-19&quot;:0.9},{&quot;2026-08-20&quot;:0.9},{&quot;2026-08-21&quot;:0.89},{&quot;2026-08-22&quot;:0.88},{&quot;2026-08-23&quot;:0.88},{&quot;2026-08-24&quot;:0.89},{&quot;2026-08-25&quot;:0.87},{&quot;2026-08-26&quot;:0.81},{&quot;2026-08-27&quot;:0.81},{&quot;2026-08-28&quot;:0.76},{&quot;2026-08-29&quot;:0.76},{&quot;2026-08-30&quot;:0.73},{&quot;2026-08-31&quot;:0.72},{&quot;2026-09-01&quot;:0.72},{&quot;2026-09-02&quot;:0.74},{&quot;2026-09-03&quot;:0.76},{&quot;2026-09-04&quot;:0.76},{&quot;2026-09-05&quot;:0.75},{&quot;2026-09-06&quot;:0.79},{&quot;2026-09-07&quot;:0.78},{&quot;2026-09-08&quot;:0.78},{&quot;2026-09-09&quot;:0.76},{&quot;2026-09-10&quot;:0.77},{&quot;2026-09-11&quot;:0.75}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:0.49},{&quot;2026-06-12&quot;:0.45},{&quot;2026-06-13&quot;:0.45},{&quot;2026-06-14&quot;:0.47},{&quot;2026-06-15&quot;:0.47},{&quot;2026-06-16&quot;:0.44},{&quot;2026-06-17&quot;:0.41},{&quot;2026-06-18&quot;:0.38},{&quot;2026-06-19&quot;:0.36},{&quot;2026-06-20&quot;:0.38},{&quot;2026-06-21&quot;:0.43},{&quot;2026-06-22&quot;:0.46},{&quot;2026-06-23&quot;:0.48},{&quot;2026-06-24&quot;:0.38},{&quot;2026-06-25&quot;:0.43},{&quot;2026-06-26&quot;:0.41},{&quot;2026-06-27&quot;:0.42},{&quot;2026-06-28&quot;:0.43},{&quot;2026-06-29&quot;:0.4},{&quot;2026-06-30&quot;:0.4},{&quot;2026-07-01&quot;:0.43},{&quot;2026-07-02&quot;:0.46},{&quot;2026-07-03&quot;:0.4},{&quot;2026-07-04&quot;:0.42},{&quot;2026-07-05&quot;:0.43},{&quot;2026-07-06&quot;:0.44},{&quot;2026-07-07&quot;:0.43},{&quot;2026-07-08&quot;:0.44},{&quot;2026-07-09&quot;:0.44},{&quot;2026-07-10&quot;:0.65},{&quot;2026-07-11&quot;:0.44},{&quot;2026-07-12&quot;:0.46},{&quot;2026-07-13&quot;:0.42},{&quot;2026-07-14&quot;:0.39},{&quot;2026-07-15&quot;:0.38},{&quot;2026-07-16&quot;:0.43},{&quot;2026-07-17&quot;:0.42},{&quot;2026-07-18&quot;:0.47},{&quot;2026-07-19&quot;:0.41},{&quot;2026-07-20&quot;:0.44},{&quot;2026-07-21&quot;:0.42},{&quot;2026-07-23&quot;:0.41},{&quot;2026-07-25&quot;:0.45},{&quot;2026-07-26&quot;:0.39},{&quot;2026-07-27&quot;:0.4},{&quot;2026-07-28&quot;:0.43},{&quot;2026-07-29&quot;:0.43},{&quot;2026-07-30&quot;:0.43},{&quot;2026-07-31&quot;:0.44},{&quot;2026-08-01&quot;:0.44},{&quot;2026-08-02&quot;:0.43},{&quot;2026-08-03&quot;:0.45},{&quot;2026-08-04&quot;:0.46},{&quot;2026-08-05&quot;:0.43},{&quot;2026-08-07&quot;:0.47},{&quot;2026-08-08&quot;:0.43},{&quot;2026-08-09&quot;:0.48},{&quot;2026-08-10&quot;:0.46},{&quot;2026-08-11&quot;:0.45},{&quot;2026-08-12&quot;:0.48},{&quot;2026-08-13&quot;:0.48},{&quot;2026-08-14&quot;:0.51},{&quot;2026-08-15&quot;:0.54},{&quot;2026-08-16&quot;:0.53},{&quot;2026-08-17&quot;:0.49},{&quot;2026-08-18&quot;:0.5},{&quot;2026-08-19&quot;:0.55},{&quot;2026-08-20&quot;:0.55},{&quot;2026-08-21&quot;:0.51},{&quot;2026-08-22&quot;:0.49},{&quot;2026-08-23&quot;:0.45},{&quot;2026-08-24&quot;:0.5},{&quot;2026-08-25&quot;:0.51},{&quot;2026-08-26&quot;:0.54},{&quot;2026-08-27&quot;:0.49},{&quot;2026-08-28&quot;:0.48},{&quot;2026-08-29&quot;:0.48},{&quot;2026-08-30&quot;:0.57},{&quot;2026-08-31&quot;:0.58},{&quot;2026-09-01&quot;:0.58},{&quot;2026-09-02&quot;:0.51},{&quot;2026-09-03&quot;:0.56},{&quot;2026-09-04&quot;:0.57},{&quot;2026-09-05&quot;:0.59},{&quot;2026-09-06&quot;:0.57},{&quot;2026-09-07&quot;:0.61},{&quot;2026-09-08&quot;:0.66},{&quot;2026-09-09&quot;:0.69},{&quot;2026-09-10&quot;:0.72},{&quot;2026-09-11&quot;:0.57}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

        <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">
            Regal Behemoth
        </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 — Dinosaur</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Regal Behemoth" src="https://cards.scryfall.io/large/front/e/3/e3a8bdfa-a39c-4ca7-b591-1c6aca4cc5ac.jpg?1783913856" />
    </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.54
              </span>

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

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Mosswort Bridge" src="https://cards.scryfall.io/large/front/e/2/e2f2bd6c-fd3b-4dbd-a710-f004011fd58b.jpg?1783913826" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

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

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


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Dinosaur Avatar
      </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.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="Verdant Sun&#39;s Avatar" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/e/8/e8fce06a-56f7-4d0c-b094-ff147fec8256.jpg?1783913852" />

        <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">
            Verdant Sun&#39;s Avatar
        </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 — Dinosaur Avatar</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-5'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Verdant Sun&#39;s Avatar" src="https://cards.scryfall.io/large/front/e/8/e8fce06a-56f7-4d0c-b094-ff147fec8256.jpg?1783913852" />
    </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.35
              </span>

            </div>
          </div>

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

        <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">
            Canopy Vista
        </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</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="Canopy Vista" src="https://cards.scryfall.io/large/front/2/2/2258c917-763a-43a6-9635-a5181e6bb54d.jpg?1783913835" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

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

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

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

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

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

        <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">
            Clifftop Retreat
        </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="Clifftop Retreat" src="https://cards.scryfall.io/large/front/6/e/6e2b6fe5-e02d-488d-a176-5a1744dce2b8.jpg?1783913832" />
    </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>

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

      </div>

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

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

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

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


      </div>

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

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

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

          <span class="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="Mountain" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/1/a18ef64b-a9de-4548-b4d5-168758442db7.jpg?1783906541" />

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Mountain" src="https://cards.scryfall.io/large/front/a/1/a18ef64b-a9de-4548-b4d5-168758442db7.jpg?1783906541" />
    </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-nine-white">
            1
          </span>
        </div>

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

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

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

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

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

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

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

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.06</span>
              <span class="text-xs text-grey-text">Credit: $0.08</span>
            </div>
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Foil</span>
              <span class="text-lg font-medium text-nine-white">$0.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;:0.31},{&quot;2026-06-10&quot;:0.3},{&quot;2026-06-11&quot;:0.34},{&quot;2026-06-12&quot;:0.35},{&quot;2026-06-13&quot;:0.35},{&quot;2026-06-14&quot;:0.35},{&quot;2026-06-15&quot;:0.35},{&quot;2026-06-16&quot;:0.34},{&quot;2026-06-17&quot;:0.33},{&quot;2026-06-18&quot;:0.33},{&quot;2026-06-19&quot;:0.3},{&quot;2026-06-20&quot;:0.3},{&quot;2026-06-21&quot;:0.29},{&quot;2026-06-22&quot;:0.31},{&quot;2026-06-24&quot;:0.32},{&quot;2026-06-25&quot;:0.33},{&quot;2026-06-26&quot;:0.33},{&quot;2026-06-27&quot;:0.33},{&quot;2026-06-28&quot;:0.33},{&quot;2026-06-29&quot;:0.32},{&quot;2026-06-30&quot;:0.32},{&quot;2026-07-01&quot;:0.31},{&quot;2026-07-02&quot;:0.31},{&quot;2026-07-03&quot;:0.33},{&quot;2026-07-04&quot;:0.33},{&quot;2026-07-05&quot;:0.34},{&quot;2026-07-06&quot;:0.34},{&quot;2026-07-07&quot;:0.33},{&quot;2026-07-08&quot;:0.33},{&quot;2026-07-09&quot;:0.34},{&quot;2026-07-10&quot;:0.33},{&quot;2026-07-11&quot;:0.32},{&quot;2026-07-12&quot;:0.33},{&quot;2026-07-13&quot;:0.33},{&quot;2026-07-14&quot;:0.33},{&quot;2026-07-15&quot;:0.33},{&quot;2026-07-16&quot;:0.35},{&quot;2026-07-17&quot;:0.34},{&quot;2026-07-18&quot;:0.35},{&quot;2026-07-19&quot;:0.35},{&quot;2026-07-20&quot;:0.35},{&quot;2026-07-21&quot;:0.38},{&quot;2026-07-23&quot;:0.38},{&quot;2026-07-25&quot;:0.37},{&quot;2026-07-26&quot;:0.33},{&quot;2026-07-27&quot;:0.32},{&quot;2026-07-29&quot;:0.3},{&quot;2026-07-30&quot;:0.28},{&quot;2026-07-31&quot;:0.28},{&quot;2026-08-01&quot;:0.27},{&quot;2026-08-02&quot;:0.27},{&quot;2026-08-03&quot;:0.28},{&quot;2026-08-04&quot;:0.32},{&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.34},{&quot;2026-08-10&quot;:0.33},{&quot;2026-08-11&quot;:0.34},{&quot;2026-08-12&quot;:0.33},{&quot;2026-08-13&quot;:0.32},{&quot;2026-08-14&quot;:0.28},{&quot;2026-08-15&quot;:0.29},{&quot;2026-08-16&quot;:0.3},{&quot;2026-08-17&quot;:0.3},{&quot;2026-08-18&quot;:0.31},{&quot;2026-08-19&quot;:0.32},{&quot;2026-08-20&quot;:0.32},{&quot;2026-08-21&quot;:0.34},{&quot;2026-08-22&quot;:0.33},{&quot;2026-08-23&quot;:0.35},{&quot;2026-08-24&quot;:0.35},{&quot;2026-08-25&quot;:0.35},{&quot;2026-08-26&quot;:0.38},{&quot;2026-08-27&quot;:0.39},{&quot;2026-08-28&quot;:0.39},{&quot;2026-08-29&quot;:0.39},{&quot;2026-08-30&quot;:0.36},{&quot;2026-08-31&quot;:0.35},{&quot;2026-09-01&quot;:0.35},{&quot;2026-09-02&quot;:0.31},{&quot;2026-09-03&quot;:0.33},{&quot;2026-09-04&quot;:0.3},{&quot;2026-09-05&quot;:0.32},{&quot;2026-09-06&quot;:0.32},{&quot;2026-09-07&quot;:0.32},{&quot;2026-09-08&quot;:0.32},{&quot;2026-09-09&quot;:0.33},{&quot;2026-09-10&quot;:0.3},{&quot;2026-09-11&quot;:0.3}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:0.26},{&quot;2026-06-10&quot;:0.27},{&quot;2026-06-11&quot;:0.27},{&quot;2026-06-12&quot;:0.28},{&quot;2026-06-13&quot;:0.3},{&quot;2026-06-14&quot;:0.29},{&quot;2026-06-15&quot;:0.28},{&quot;2026-06-16&quot;:0.27},{&quot;2026-06-17&quot;:0.26},{&quot;2026-06-18&quot;:0.25},{&quot;2026-06-19&quot;:0.24},{&quot;2026-06-20&quot;:0.25},{&quot;2026-06-21&quot;:0.24},{&quot;2026-06-22&quot;:0.23},{&quot;2026-06-24&quot;:0.25},{&quot;2026-06-25&quot;:0.26},{&quot;2026-06-26&quot;:0.28},{&quot;2026-06-27&quot;:0.28},{&quot;2026-06-28&quot;:0.31},{&quot;2026-06-29&quot;:0.3},{&quot;2026-06-30&quot;:0.27},{&quot;2026-07-01&quot;:0.27},{&quot;2026-07-02&quot;:0.27},{&quot;2026-07-03&quot;:0.24},{&quot;2026-07-04&quot;:0.24},{&quot;2026-07-05&quot;:0.26},{&quot;2026-07-06&quot;:0.24},{&quot;2026-07-07&quot;:0.25},{&quot;2026-07-08&quot;:0.26},{&quot;2026-07-09&quot;:0.29},{&quot;2026-07-10&quot;:0.28},{&quot;2026-07-11&quot;:0.29},{&quot;2026-07-12&quot;:0.3},{&quot;2026-07-13&quot;:0.31},{&quot;2026-07-14&quot;:0.33},{&quot;2026-07-15&quot;:0.32},{&quot;2026-07-16&quot;:0.31},{&quot;2026-07-17&quot;:0.32},{&quot;2026-07-18&quot;:0.31},{&quot;2026-07-19&quot;:0.3},{&quot;2026-07-20&quot;:0.28},{&quot;2026-07-21&quot;:0.29},{&quot;2026-07-23&quot;:0.3},{&quot;2026-07-25&quot;:0.31},{&quot;2026-07-26&quot;:0.27},{&quot;2026-07-27&quot;:0.26},{&quot;2026-07-29&quot;:0.23},{&quot;2026-07-30&quot;:0.21},{&quot;2026-07-31&quot;:0.18},{&quot;2026-08-01&quot;:0.2},{&quot;2026-08-02&quot;:0.2},{&quot;2026-08-03&quot;:0.21},{&quot;2026-08-04&quot;:0.21},{&quot;2026-08-05&quot;:0.22},{&quot;2026-08-07&quot;:0.25},{&quot;2026-08-08&quot;:0.27},{&quot;2026-08-09&quot;:0.24},{&quot;2026-08-10&quot;:0.18},{&quot;2026-08-11&quot;:0.2},{&quot;2026-08-12&quot;:0.2},{&quot;2026-08-13&quot;:0.24},{&quot;2026-08-14&quot;:0.26},{&quot;2026-08-15&quot;:0.27},{&quot;2026-08-16&quot;:0.26},{&quot;2026-08-17&quot;:0.25},{&quot;2026-08-18&quot;:0.25},{&quot;2026-08-19&quot;:0.24},{&quot;2026-08-20&quot;:0.24},{&quot;2026-08-21&quot;:0.28},{&quot;2026-08-22&quot;:0.27},{&quot;2026-08-23&quot;:0.24},{&quot;2026-08-24&quot;:0.22},{&quot;2026-08-25&quot;:0.22},{&quot;2026-08-26&quot;:0.23},{&quot;2026-08-27&quot;:0.23},{&quot;2026-08-28&quot;:0.25},{&quot;2026-08-29&quot;:0.25},{&quot;2026-08-30&quot;:0.27},{&quot;2026-08-31&quot;:0.26},{&quot;2026-09-01&quot;:0.26},{&quot;2026-09-02&quot;:0.27},{&quot;2026-09-03&quot;:0.27},{&quot;2026-09-04&quot;:0.24},{&quot;2026-09-05&quot;:0.22},{&quot;2026-09-06&quot;:0.19},{&quot;2026-09-07&quot;:0.17},{&quot;2026-09-08&quot;:0.2},{&quot;2026-09-09&quot;:0.21},{&quot;2026-09-10&quot;:0.21},{&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="74341"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lci ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

        <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">
            Earthshaker Dreadmaw
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Earthshaker Dreadmaw" src="https://cards.scryfall.io/large/front/c/d/cdcbba6f-aa54-44be-a3b0-f712fa8bd5ad.jpg?1783913748" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </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.38
              </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.02</span>
              <span class="text-xs text-grey-text">Credit: $0.03</span>
            </div>
        </div>

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

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

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

    <!-- Quick Actions -->

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

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

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

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

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

        <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">
            Exotic Orchard
        </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="Exotic Orchard" src="https://cards.scryfall.io/large/front/c/5/c5a8de0f-726a-4ea3-9215-5188f7181951.jpg?1783926158" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

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

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

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

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

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

        <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/d/4/d477d733-2360-4f1d-9ecd-cdedc2e8a7ae.jpg?1783913832" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

                <span class="text-xs text-accent-100">
                  ↓
                  24%
                </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-12&quot;:0.37},{&quot;2026-06-13&quot;:0.38},{&quot;2026-06-14&quot;:0.35},{&quot;2026-06-15&quot;:0.33},{&quot;2026-06-16&quot;:0.33},{&quot;2026-06-17&quot;:0.35},{&quot;2026-06-18&quot;:0.38},{&quot;2026-06-19&quot;:0.36},{&quot;2026-06-20&quot;:0.35},{&quot;2026-06-21&quot;:0.37},{&quot;2026-06-22&quot;:0.34},{&quot;2026-06-23&quot;:0.38},{&quot;2026-06-24&quot;:0.38},{&quot;2026-06-25&quot;:0.33},{&quot;2026-06-26&quot;:0.32},{&quot;2026-06-27&quot;:0.32},{&quot;2026-06-28&quot;:0.32},{&quot;2026-06-29&quot;:0.34},{&quot;2026-06-30&quot;:0.38},{&quot;2026-07-01&quot;:0.39},{&quot;2026-07-02&quot;:0.33},{&quot;2026-07-03&quot;:0.36},{&quot;2026-07-04&quot;:0.37},{&quot;2026-07-05&quot;:0.35},{&quot;2026-07-06&quot;:0.33},{&quot;2026-07-07&quot;:0.46},{&quot;2026-07-08&quot;:0.48},{&quot;2026-07-09&quot;:0.48},{&quot;2026-07-10&quot;:0.47},{&quot;2026-07-11&quot;:0.47},{&quot;2026-07-12&quot;:0.48},{&quot;2026-07-13&quot;:0.46},{&quot;2026-07-14&quot;:0.38},{&quot;2026-07-15&quot;:0.37},{&quot;2026-07-16&quot;:0.37},{&quot;2026-07-17&quot;:0.36},{&quot;2026-07-18&quot;:0.35},{&quot;2026-07-19&quot;:0.34},{&quot;2026-07-20&quot;:0.33},{&quot;2026-07-21&quot;:0.34},{&quot;2026-07-23&quot;:0.34},{&quot;2026-07-24&quot;:0.35},{&quot;2026-07-25&quot;:0.33},{&quot;2026-07-26&quot;:0.32},{&quot;2026-07-27&quot;:0.35},{&quot;2026-07-28&quot;:0.36},{&quot;2026-07-29&quot;:0.34},{&quot;2026-07-30&quot;:0.34},{&quot;2026-07-31&quot;:0.33},{&quot;2026-08-01&quot;:0.34},{&quot;2026-08-02&quot;:0.32},{&quot;2026-08-03&quot;:0.31},{&quot;2026-08-04&quot;:0.33},{&quot;2026-08-05&quot;:0.34},{&quot;2026-08-07&quot;:0.35},{&quot;2026-08-08&quot;:0.33},{&quot;2026-08-09&quot;:0.33},{&quot;2026-08-10&quot;:0.3},{&quot;2026-08-11&quot;:0.33},{&quot;2026-08-12&quot;:0.34},{&quot;2026-08-13&quot;:0.35},{&quot;2026-08-14&quot;:0.36},{&quot;2026-08-15&quot;:0.35},{&quot;2026-08-16&quot;:0.34},{&quot;2026-08-17&quot;:0.33},{&quot;2026-08-18&quot;:0.32},{&quot;2026-08-19&quot;:0.34},{&quot;2026-08-20&quot;:0.34},{&quot;2026-08-21&quot;:0.4},{&quot;2026-08-22&quot;:0.4},{&quot;2026-08-23&quot;:0.38},{&quot;2026-08-24&quot;:0.38},{&quot;2026-08-25&quot;:0.36},{&quot;2026-08-26&quot;:0.3},{&quot;2026-08-27&quot;:0.36},{&quot;2026-08-28&quot;:0.4},{&quot;2026-08-29&quot;:0.4},{&quot;2026-08-30&quot;:0.33},{&quot;2026-08-31&quot;:0.33},{&quot;2026-09-01&quot;:0.28},{&quot;2026-09-02&quot;:0.34},{&quot;2026-09-03&quot;:0.26},{&quot;2026-09-04&quot;:0.29},{&quot;2026-09-05&quot;:0.34},{&quot;2026-09-06&quot;:0.31},{&quot;2026-09-07&quot;:0.28},{&quot;2026-09-08&quot;:0.25},{&quot;2026-09-09&quot;:0.25},{&quot;2026-09-10&quot;:0.26},{&quot;2026-09-11&quot;:0.26}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

        <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">
            Cinder Glade
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Land — Mountain 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="Cinder Glade" src="https://cards.scryfall.io/large/front/f/e/fe5ef229-2bce-4f13-93de-003c75fedaf8.jpg?1783913833" />
    </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.25
              </span>

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

      </div>

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

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

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

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

    <!-- Quick Actions -->

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


    <div
      class="
        flex flex-col gap-2 w-full px-4 py-3 mt-2 bg-foreground text-sm
        rounded-xl
      "
    >
      <div class="text-grey-text"><span class="pagy info">Displaying 48 items</span></div>

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

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

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


            </td>

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

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

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="46003"
          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">
              137
            </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>
              Etali, Primal Conqueror // Etali, Primal Sickness


            </td>

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

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

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

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

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="18486"
          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-dmr ss-mythic ss-fw ss-2x mr-4"></i>
              Sylvan Library


            </td>

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

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

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

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

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

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-rex ss-common ss-fw ss-2x mr-4"></i>
              Forest // 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">
            </td>

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

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="68927"
          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-snc ss-rare ss-fw ss-2x mr-4"></i>
              Jetmir&#39;s Garden


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land — Mountain Forest 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">
                  $17.61

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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


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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="74181"
          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">
              134
            </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>
              Bonehoard Dracosaur


            </td>

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="18990"
          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">
              336
            </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">
                  $12.27

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

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

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

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

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

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


            </td>

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

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

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

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

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

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


            </td>

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

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

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-neo ss-rare ss-fw ss-2x mr-4"></i>
              Eiganjo, Seat of the Empire


            </td>

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

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

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

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $5.60
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.21
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="42653"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_42653" src="/boxset_card/42653?collection_id=15&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="95833"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              258
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-eoe ss-rare ss-fw ss-2x mr-4"></i>
              Stomping Ground


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land — Mountain 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">
                  $7.01

                    <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">
                $5.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.19
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="95833"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_95833" src="/boxset_card/95833?collection_id=15&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75102"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              4
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-mythic ss-fw ss-2x mr-4"></i>
              Pantlaza, Sun-Favored


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Dinosaur
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $5.19

                    <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.60
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.84
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="75102"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_75102" src="/boxset_card/75102?collection_id=15&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75376"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              88
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-rare ss-fw ss-2x mr-4"></i>
              Wrathful Raptors


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Dinosaur
            </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-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $5.09

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $4.70
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.32
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="75376"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_75376" src="/boxset_card/75376?collection_id=15&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="24383"
          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">
              270
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-dsk ss-rare ss-fw ss-2x mr-4"></i>
              Thornspire Verge


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $4.95

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      5%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $4.40
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.11
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="24383"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_24383" src="/boxset_card/24383?collection_id=15&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75386"
          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">
              90
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-rare ss-fw ss-2x mr-4"></i>
              Curious Altisaur


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Dinosaur
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $4.41

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      5%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $2.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.21
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="75386"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_75386" src="/boxset_card/75386?collection_id=15&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="74126"
          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">
              163
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-ltr ss-uncommon ss-fw ss-2x mr-4"></i>
              Entish Restoration


            </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">
                  $3.91

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      16%
                    </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.35
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.23
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="74126"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_74126" src="/boxset_card/74126?collection_id=15&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="19020"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              346
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-dmr ss-uncommon ss-fw ss-2x mr-4"></i>
              Nature&#39;s Lore


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.06

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      4%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $2.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.24
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="19020"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_19020" src="/boxset_card/19020?collection_id=15&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="46396"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              244
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mom ss-rare ss-fw ss-2x mr-4"></i>
              Kogla and Yidaro


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Ape Dinosaur Turtle
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></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">
                  $2.86

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      4%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.60
            </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="46396"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_46396" src="/boxset_card/46396?collection_id=15&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75395"
          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">
              93
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-rare ss-fw ss-2x mr-4"></i>
              Scion of Calamity


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Dinosaur
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.74

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      4%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.37
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="75395"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_75395" src="/boxset_card/75395?collection_id=15&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="74303"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              171
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lci ss-rare ss-fw ss-2x mr-4"></i>
              Trumpeting Carnosaur


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Dinosaur
            </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-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.66

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.60
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.32
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="74303"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_74303" src="/boxset_card/74303?collection_id=15&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="5569"
          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">
              252
            </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>
              Fabled Passage


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.11

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.35
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.10
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="5569"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_5569" src="/boxset_card/5569?collection_id=15&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="20788"
          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">
              242
            </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>
              Legion&#39;s Initiative


            </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-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.98

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      12%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.20
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="20788"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_20788" src="/boxset_card/20788?collection_id=15&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75966"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              296
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-mythic ss-fw ss-2x mr-4"></i>
              Zacama, Primal Calamity


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Elder Dinosaur
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-6'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.78

                    <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.70
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.65
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="75966"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_75966" src="/boxset_card/75966?collection_id=15&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="76014"
          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">
              313
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-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.77

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      4%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.90
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.46
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="76014"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_76014" src="/boxset_card/76014?collection_id=15&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75398"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              94
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-rare ss-fw ss-2x mr-4"></i>
              Sunfrill Imitator


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Dinosaur
            </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.60

                    <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">
                $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.23
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="75398"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_75398" src="/boxset_card/75398?collection_id=15&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="74819"
          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">
              332
            </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-rare ss-fw ss-2x mr-4"></i>
              Palani&#39;s Hatcher


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Dinosaur
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.40

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      22%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.15
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.19
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="74819"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_74819" src="/boxset_card/74819?collection_id=15&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="93400"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              276
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tdm 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">
                  $1.40

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      20%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $2.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.70
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="93400"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_93400" src="/boxset_card/93400?collection_id=15&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="4903"
          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">
              24
            </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>
              Parting Gust


            </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><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.29

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      31%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.22
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="4903"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_4903" src="/boxset_card/4903?collection_id=15&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75819"
          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">
              242
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-common ss-fw ss-2x mr-4"></i>
              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.16

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      18%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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="75819"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_75819" src="/boxset_card/75819?collection_id=15&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="11862"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              162
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-rare ss-fw ss-2x mr-4"></i>
              Blasphemous Act


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-8'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.02

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      6%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.62
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="11862"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_11862" src="/boxset_card/11862?collection_id=15&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="79915"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              NEM-117
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-common ss-fw ss-2x mr-4"></i>
              Skyshroud Claim


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.98

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.05
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.18
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="79915"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_79915" src="/boxset_card/79915?collection_id=15&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75868"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              261
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-rare ss-fw ss-2x mr-4"></i>
              Topiary Stomper


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Plant Dinosaur
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </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.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="75868"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_75868" src="/boxset_card/75868?collection_id=15&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="74671"
          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">
              287
            </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-common ss-fw ss-2x mr-4"></i>
              Plains


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Basic Land — Plains
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.83

                    <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.12
            </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="74671"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_74671" src="/boxset_card/74671?collection_id=15&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75320"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              69
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-rare ss-fw ss-2x mr-4"></i>
              Bronzebeak Foragers


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Dinosaur
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.64

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.72
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.14
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="75320"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_75320" src="/boxset_card/75320?collection_id=15&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75802"
          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">
              235
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-common ss-fw ss-2x mr-4"></i>
              Cultivate


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.57

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.20
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="75802"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_75802" src="/boxset_card/75802?collection_id=15&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="90324"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              220
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fdn ss-uncommon ss-fw ss-2x mr-4"></i>
              Garruk&#39;s Uprising


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Enchantment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.57

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.19
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.32
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="90324"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_90324" src="/boxset_card/90324?collection_id=15&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75841"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              251
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-rare ss-fw ss-2x mr-4"></i>
              Regal Behemoth


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Dinosaur
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-4'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.54

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.33
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.28
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="75841"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_75841" src="/boxset_card/75841?collection_id=15&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="76095"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              342
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-rare ss-fw ss-2x mr-4"></i>
              Mosswort Bridge


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.38

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      27%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.17
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.17
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="76095"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_76095" src="/boxset_card/76095?collection_id=15&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="75870"
          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">
              262
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-rare ss-fw ss-2x mr-4"></i>
              Verdant Sun&#39;s Avatar


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Dinosaur Avatar
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-5'></i><i class='no-tailwind ms ms-cost ml-0 ms-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">
                  $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.16
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="75870"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_75870" src="/boxset_card/75870?collection_id=15&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="76038"
          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">
              321
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-rare ss-fw ss-2x mr-4"></i>
              Canopy Vista


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land — Forest 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.32

                    <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.08
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.10
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="76038"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_76038" src="/boxset_card/76038?collection_id=15&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="76047"
          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">
              324
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-rare ss-fw ss-2x mr-4"></i>
              Clifftop Retreat


            </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.30

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      6%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.17
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.03
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="76047"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_76047" src="/boxset_card/76047?collection_id=15&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="95243"
          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">
              303
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fin ss-common ss-fw ss-2x mr-4"></i>
              Mountain


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Basic Land — Mountain
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.22

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.30

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      6%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.06
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.12
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.32
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="95243"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_95243" src="/boxset_card/95243?collection_id=15&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="74341"
          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">
              183
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lci ss-uncommon ss-fw ss-2x mr-4"></i>
              Earthshaker Dreadmaw


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Dinosaur
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-4'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.29

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.02
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.19
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="74341"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_74341" src="/boxset_card/74341?collection_id=15&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="29008"
          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">
              236
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-afc ss-rare ss-fw ss-2x mr-4"></i>
              Exotic Orchard


            </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.27

                    <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.08
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.14
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="29008"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_29008" src="/boxset_card/29008?collection_id=15&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="76050"
          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">
              325
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-common ss-fw ss-2x mr-4"></i>
              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.26

                    <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">
                $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="76050"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_76050" src="/boxset_card/76050?collection_id=15&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="76044"
          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">
              323
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-lcc ss-rare ss-fw ss-2x mr-4"></i>
              Cinder Glade


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land — Mountain 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.25

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      17%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.10
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="76044"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_76044" src="/boxset_card/76044?collection_id=15&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>
    </tbody>
  </table>

    <div class="flex flex-row items-center justify-between w-full p-6 space-x-4">
      <span class="pagy info">Displaying 48 items</span>
      <nav class="pagy series-nav" aria-label="Page"><a role="link" aria-disabled="true" aria-label="Previous">&lt;</a><a role="link" aria-disabled="true" aria-current="page">1</a><a role="link" aria-disabled="true" aria-label="Next">&gt;</a></nav>
    </div>
</div>

</template></turbo-stream>