<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="11" 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="71327"
  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-ltc 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">
            Urborg, Tomb of Yawgmoth
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $132.63
          </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="Urborg, Tomb of Yawgmoth" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/1/4116f1c7-9191-4d92-81ca-54d9ae3c8166.jpg?1783915831" />

        <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">
            Urborg, Tomb of Yawgmoth
        </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 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="Urborg, Tomb of Yawgmoth" src="https://cards.scryfall.io/large/front/4/1/4116f1c7-9191-4d92-81ca-54d9ae3c8166.jpg?1783915831" />
    </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">
                $121.70
              </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">
                $132.63
              </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">$90.00</span>
              <span class="text-xs text-grey-text">Credit: $117.00</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:124.27},{&quot;2026-06-14&quot;:124.51},{&quot;2026-06-15&quot;:124.59},{&quot;2026-06-16&quot;:124.59},{&quot;2026-06-17&quot;:124.59},{&quot;2026-06-18&quot;:124.87},{&quot;2026-06-19&quot;:125.63},{&quot;2026-06-20&quot;:126.19},{&quot;2026-06-21&quot;:126.83},{&quot;2026-06-22&quot;:128.03},{&quot;2026-06-23&quot;:128.03},{&quot;2026-06-24&quot;:128.03},{&quot;2026-06-25&quot;:128.51},{&quot;2026-06-26&quot;:129.31},{&quot;2026-06-27&quot;:129.31},{&quot;2026-06-28&quot;:129.31},{&quot;2026-06-29&quot;:129.31},{&quot;2026-06-30&quot;:130.1},{&quot;2026-07-01&quot;:130.1},{&quot;2026-07-02&quot;:130.1},{&quot;2026-07-03&quot;:130.1},{&quot;2026-07-04&quot;:130.1},{&quot;2026-07-05&quot;:130.1},{&quot;2026-07-06&quot;:130.47},{&quot;2026-07-07&quot;:130.47},{&quot;2026-07-08&quot;:130.47},{&quot;2026-07-09&quot;:130.67},{&quot;2026-07-10&quot;:130.67},{&quot;2026-07-11&quot;:130.67},{&quot;2026-07-12&quot;:130.67},{&quot;2026-07-13&quot;:131.07},{&quot;2026-07-14&quot;:131.07},{&quot;2026-07-15&quot;:131.86},{&quot;2026-07-16&quot;:131.86},{&quot;2026-07-17&quot;:131.86},{&quot;2026-07-18&quot;:132.54},{&quot;2026-07-19&quot;:133.06},{&quot;2026-07-20&quot;:133.06},{&quot;2026-07-21&quot;:133.46},{&quot;2026-07-22&quot;:133.46},{&quot;2026-07-23&quot;:133.46},{&quot;2026-07-24&quot;:132.67},{&quot;2026-07-25&quot;:132.67},{&quot;2026-07-26&quot;:132.67},{&quot;2026-07-27&quot;:132.67},{&quot;2026-07-28&quot;:132.67},{&quot;2026-07-29&quot;:132.67},{&quot;2026-07-30&quot;:132.67},{&quot;2026-07-31&quot;:130.74},{&quot;2026-08-01&quot;:130.74},{&quot;2026-08-02&quot;:130.94},{&quot;2026-08-03&quot;:131.14},{&quot;2026-08-04&quot;:131.14},{&quot;2026-08-05&quot;:130.79},{&quot;2026-08-07&quot;:131.06},{&quot;2026-08-08&quot;:131.06},{&quot;2026-08-09&quot;:131.06},{&quot;2026-08-10&quot;:131.06},{&quot;2026-08-11&quot;:131.06},{&quot;2026-08-12&quot;:131.66},{&quot;2026-08-13&quot;:131.66},{&quot;2026-08-14&quot;:131.26},{&quot;2026-08-15&quot;:131.26},{&quot;2026-08-16&quot;:130.94},{&quot;2026-08-17&quot;:130.9},{&quot;2026-08-18&quot;:130.98},{&quot;2026-08-19&quot;:130.98},{&quot;2026-08-20&quot;:131.38},{&quot;2026-08-21&quot;:131.38},{&quot;2026-08-22&quot;:131.46},{&quot;2026-08-23&quot;:131.42},{&quot;2026-08-24&quot;:131.42},{&quot;2026-08-25&quot;:131.42},{&quot;2026-08-26&quot;:131.42},{&quot;2026-08-27&quot;:131.42},{&quot;2026-08-28&quot;:131.42},{&quot;2026-08-29&quot;:131.42},{&quot;2026-08-30&quot;:131.32},{&quot;2026-08-31&quot;:131.32},{&quot;2026-09-01&quot;:131.32},{&quot;2026-09-02&quot;:131.32},{&quot;2026-09-03&quot;:131.32},{&quot;2026-09-04&quot;:131.17},{&quot;2026-09-05&quot;:131.17},{&quot;2026-09-06&quot;:133.17},{&quot;2026-09-07&quot;:133.62},{&quot;2026-09-08&quot;:133.62},{&quot;2026-09-09&quot;:132.63},{&quot;2026-09-10&quot;:132.63},{&quot;2026-09-11&quot;:132.63}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:125.06},{&quot;2026-06-14&quot;:125.06},{&quot;2026-06-15&quot;:125.66},{&quot;2026-06-16&quot;:125.06},{&quot;2026-06-17&quot;:125.06},{&quot;2026-06-18&quot;:125.06},{&quot;2026-06-19&quot;:125.71},{&quot;2026-06-20&quot;:125.71},{&quot;2026-06-21&quot;:125.31},{&quot;2026-06-22&quot;:124.62},{&quot;2026-06-23&quot;:124.62},{&quot;2026-06-24&quot;:126.16},{&quot;2026-06-25&quot;:126.16},{&quot;2026-06-26&quot;:124.84},{&quot;2026-06-27&quot;:124.84},{&quot;2026-06-28&quot;:124.84},{&quot;2026-06-29&quot;:124.84},{&quot;2026-06-30&quot;:125.08},{&quot;2026-07-01&quot;:124.09},{&quot;2026-07-02&quot;:124.09},{&quot;2026-07-03&quot;:124.09},{&quot;2026-07-04&quot;:124.09},{&quot;2026-07-05&quot;:124.09},{&quot;2026-07-06&quot;:124.09},{&quot;2026-07-07&quot;:124.09},{&quot;2026-07-08&quot;:124.09},{&quot;2026-07-09&quot;:123.41},{&quot;2026-07-10&quot;:124.0},{&quot;2026-07-11&quot;:123.64},{&quot;2026-07-12&quot;:123.6},{&quot;2026-07-13&quot;:123.58},{&quot;2026-07-14&quot;:123.35},{&quot;2026-07-15&quot;:122.86},{&quot;2026-07-16&quot;:122.86},{&quot;2026-07-17&quot;:122.86},{&quot;2026-07-18&quot;:122.86},{&quot;2026-07-19&quot;:122.86},{&quot;2026-07-20&quot;:122.86},{&quot;2026-07-21&quot;:122.86},{&quot;2026-07-22&quot;:122.86},{&quot;2026-07-23&quot;:122.86},{&quot;2026-07-24&quot;:121.95},{&quot;2026-07-25&quot;:121.95},{&quot;2026-07-26&quot;:121.95},{&quot;2026-07-27&quot;:121.51},{&quot;2026-07-28&quot;:121.51},{&quot;2026-07-29&quot;:121.55},{&quot;2026-07-30&quot;:120.95},{&quot;2026-07-31&quot;:120.39},{&quot;2026-08-01&quot;:120.08},{&quot;2026-08-02&quot;:119.68},{&quot;2026-08-03&quot;:119.68},{&quot;2026-08-04&quot;:119.68},{&quot;2026-08-05&quot;:119.13},{&quot;2026-08-07&quot;:119.13},{&quot;2026-08-08&quot;:119.13},{&quot;2026-08-09&quot;:120.12},{&quot;2026-08-10&quot;:120.12},{&quot;2026-08-11&quot;:120.12},{&quot;2026-08-12&quot;:120.0},{&quot;2026-08-13&quot;:120.04},{&quot;2026-08-14&quot;:119.86},{&quot;2026-08-15&quot;:119.86},{&quot;2026-08-16&quot;:120.14},{&quot;2026-08-17&quot;:120.14},{&quot;2026-08-18&quot;:121.77},{&quot;2026-08-19&quot;:121.94},{&quot;2026-08-20&quot;:119.92},{&quot;2026-08-21&quot;:120.45},{&quot;2026-08-22&quot;:119.88},{&quot;2026-08-23&quot;:119.53},{&quot;2026-08-24&quot;:119.53},{&quot;2026-08-25&quot;:120.13},{&quot;2026-08-26&quot;:120.13},{&quot;2026-08-27&quot;:120.13},{&quot;2026-08-28&quot;:119.97},{&quot;2026-08-29&quot;:119.97},{&quot;2026-08-30&quot;:120.89},{&quot;2026-08-31&quot;:121.1},{&quot;2026-09-01&quot;:120.09},{&quot;2026-09-02&quot;:120.09},{&quot;2026-09-03&quot;:120.76},{&quot;2026-09-04&quot;:119.93},{&quot;2026-09-05&quot;:120.35},{&quot;2026-09-06&quot;:120.79},{&quot;2026-09-07&quot;:121.44},{&quot;2026-09-08&quot;:121.13},{&quot;2026-09-09&quot;:121.7},{&quot;2026-09-10&quot;:121.7},{&quot;2026-09-11&quot;:121.7}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="41909"
  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">
            Boseiju, Who Endures
        </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">
              ↓
              3%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $49.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="Boseiju, Who Endures" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/1/2135ac5a-187b-4dc9-8f82-34e8d1603416.jpg?1783923818" />

        <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">
            Boseiju, Who Endures
        </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="Boseiju, Who Endures" src="https://cards.scryfall.io/large/front/2/1/2135ac5a-187b-4dc9-8f82-34e8d1603416.jpg?1783923818" />
    </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">
                $49.78
              </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">
                $52.38
              </span>

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$36.00</span>
              <span class="text-xs text-grey-text">Credit: $46.80</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;:54.23},{&quot;2026-06-12&quot;:54.23},{&quot;2026-06-13&quot;:54.04},{&quot;2026-06-14&quot;:54.04},{&quot;2026-06-15&quot;:54.32},{&quot;2026-06-16&quot;:54.12},{&quot;2026-06-17&quot;:54.02},{&quot;2026-06-18&quot;:53.92},{&quot;2026-06-19&quot;:53.88},{&quot;2026-06-20&quot;:53.88},{&quot;2026-06-21&quot;:53.88},{&quot;2026-06-22&quot;:53.82},{&quot;2026-06-23&quot;:53.82},{&quot;2026-06-24&quot;:53.82},{&quot;2026-06-25&quot;:53.96},{&quot;2026-06-26&quot;:53.96},{&quot;2026-06-27&quot;:53.96},{&quot;2026-06-28&quot;:53.96},{&quot;2026-06-29&quot;:54.24},{&quot;2026-06-30&quot;:54.24},{&quot;2026-07-01&quot;:54.24},{&quot;2026-07-02&quot;:54.25},{&quot;2026-07-03&quot;:54.21},{&quot;2026-07-04&quot;:54.16},{&quot;2026-07-05&quot;:54.16},{&quot;2026-07-06&quot;:54.16},{&quot;2026-07-07&quot;:54.16},{&quot;2026-07-08&quot;:54.23},{&quot;2026-07-09&quot;:54.23},{&quot;2026-07-10&quot;:54.23},{&quot;2026-07-11&quot;:53.95},{&quot;2026-07-12&quot;:53.95},{&quot;2026-07-13&quot;:53.95},{&quot;2026-07-14&quot;:54.02},{&quot;2026-07-15&quot;:54.02},{&quot;2026-07-16&quot;:54.02},{&quot;2026-07-17&quot;:54.02},{&quot;2026-07-18&quot;:54.02},{&quot;2026-07-19&quot;:53.57},{&quot;2026-07-20&quot;:53.86},{&quot;2026-07-21&quot;:53.86},{&quot;2026-07-23&quot;:53.88},{&quot;2026-07-25&quot;:53.88},{&quot;2026-07-26&quot;:53.98},{&quot;2026-07-27&quot;:53.98},{&quot;2026-07-28&quot;:54.01},{&quot;2026-07-29&quot;:53.93},{&quot;2026-07-30&quot;:53.93},{&quot;2026-07-31&quot;:53.93},{&quot;2026-08-01&quot;:53.61},{&quot;2026-08-02&quot;:53.61},{&quot;2026-08-03&quot;:53.07},{&quot;2026-08-04&quot;:52.85},{&quot;2026-08-05&quot;:52.85},{&quot;2026-08-07&quot;:52.8},{&quot;2026-08-08&quot;:52.8},{&quot;2026-08-09&quot;:52.83},{&quot;2026-08-10&quot;:52.81},{&quot;2026-08-11&quot;:53.07},{&quot;2026-08-12&quot;:52.98},{&quot;2026-08-13&quot;:52.98},{&quot;2026-08-14&quot;:52.84},{&quot;2026-08-15&quot;:52.84},{&quot;2026-08-16&quot;:53.67},{&quot;2026-08-17&quot;:53.18},{&quot;2026-08-18&quot;:53.13},{&quot;2026-08-19&quot;:53.51},{&quot;2026-08-20&quot;:53.51},{&quot;2026-08-21&quot;:53.85},{&quot;2026-08-22&quot;:54.14},{&quot;2026-08-23&quot;:54.11},{&quot;2026-08-24&quot;:54.03},{&quot;2026-08-25&quot;:54.03},{&quot;2026-08-26&quot;:53.77},{&quot;2026-08-27&quot;:53.77},{&quot;2026-08-28&quot;:53.75},{&quot;2026-08-29&quot;:53.75},{&quot;2026-08-30&quot;:53.75},{&quot;2026-08-31&quot;:53.83},{&quot;2026-09-01&quot;:53.83},{&quot;2026-09-02&quot;:53.83},{&quot;2026-09-03&quot;:53.75},{&quot;2026-09-04&quot;:53.75},{&quot;2026-09-05&quot;:54.1},{&quot;2026-09-06&quot;:53.9},{&quot;2026-09-07&quot;:53.16},{&quot;2026-09-08&quot;:53.16},{&quot;2026-09-09&quot;:52.63},{&quot;2026-09-10&quot;:52.63},{&quot;2026-09-11&quot;:52.38}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:53.17},{&quot;2026-06-12&quot;:53.58},{&quot;2026-06-13&quot;:53.56},{&quot;2026-06-14&quot;:52.17},{&quot;2026-06-15&quot;:50.77},{&quot;2026-06-16&quot;:51.21},{&quot;2026-06-17&quot;:50.74},{&quot;2026-06-18&quot;:50.35},{&quot;2026-06-19&quot;:49.58},{&quot;2026-06-20&quot;:49.96},{&quot;2026-06-21&quot;:49.94},{&quot;2026-06-22&quot;:50.51},{&quot;2026-06-23&quot;:50.41},{&quot;2026-06-24&quot;:49.92},{&quot;2026-06-25&quot;:50.94},{&quot;2026-06-26&quot;:50.67},{&quot;2026-06-27&quot;:49.97},{&quot;2026-06-28&quot;:49.79},{&quot;2026-06-29&quot;:49.54},{&quot;2026-06-30&quot;:46.06},{&quot;2026-07-01&quot;:45.91},{&quot;2026-07-02&quot;:46.66},{&quot;2026-07-03&quot;:48.52},{&quot;2026-07-04&quot;:48.78},{&quot;2026-07-05&quot;:48.52},{&quot;2026-07-06&quot;:49.15},{&quot;2026-07-07&quot;:48.39},{&quot;2026-07-08&quot;:48.68},{&quot;2026-07-09&quot;:48.98},{&quot;2026-07-10&quot;:49.11},{&quot;2026-07-11&quot;:48.82},{&quot;2026-07-12&quot;:47.78},{&quot;2026-07-13&quot;:47.71},{&quot;2026-07-14&quot;:47.99},{&quot;2026-07-15&quot;:49.04},{&quot;2026-07-16&quot;:49.67},{&quot;2026-07-17&quot;:49.61},{&quot;2026-07-18&quot;:49.28},{&quot;2026-07-19&quot;:48.56},{&quot;2026-07-20&quot;:49.88},{&quot;2026-07-21&quot;:49.8},{&quot;2026-07-23&quot;:50.72},{&quot;2026-07-25&quot;:50.0},{&quot;2026-07-26&quot;:49.28},{&quot;2026-07-27&quot;:49.17},{&quot;2026-07-28&quot;:49.47},{&quot;2026-07-29&quot;:49.94},{&quot;2026-07-30&quot;:49.85},{&quot;2026-07-31&quot;:50.17},{&quot;2026-08-01&quot;:50.29},{&quot;2026-08-02&quot;:50.82},{&quot;2026-08-03&quot;:50.58},{&quot;2026-08-04&quot;:51.16},{&quot;2026-08-05&quot;:51.66},{&quot;2026-08-07&quot;:51.54},{&quot;2026-08-08&quot;:51.82},{&quot;2026-08-09&quot;:51.38},{&quot;2026-08-10&quot;:50.96},{&quot;2026-08-11&quot;:50.11},{&quot;2026-08-12&quot;:49.75},{&quot;2026-08-13&quot;:50.12},{&quot;2026-08-14&quot;:49.12},{&quot;2026-08-15&quot;:49.94},{&quot;2026-08-16&quot;:49.28},{&quot;2026-08-17&quot;:49.1},{&quot;2026-08-18&quot;:49.73},{&quot;2026-08-19&quot;:50.0},{&quot;2026-08-20&quot;:50.0},{&quot;2026-08-21&quot;:50.17},{&quot;2026-08-22&quot;:50.79},{&quot;2026-08-23&quot;:51.15},{&quot;2026-08-24&quot;:50.51},{&quot;2026-08-25&quot;:50.41},{&quot;2026-08-26&quot;:50.29},{&quot;2026-08-27&quot;:49.88},{&quot;2026-08-28&quot;:49.28},{&quot;2026-08-29&quot;:49.28},{&quot;2026-08-30&quot;:49.43},{&quot;2026-08-31&quot;:48.93},{&quot;2026-09-01&quot;:48.99},{&quot;2026-09-02&quot;:49.89},{&quot;2026-09-03&quot;:51.46},{&quot;2026-09-04&quot;:51.65},{&quot;2026-09-05&quot;:51.21},{&quot;2026-09-06&quot;:50.2},{&quot;2026-09-07&quot;:49.3},{&quot;2026-09-08&quot;:49.71},{&quot;2026-09-09&quot;:49.59},{&quot;2026-09-10&quot;:49.85},{&quot;2026-09-11&quot;:49.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="18427"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-dmr ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Exploration" src="https://cards.scryfall.io/large/front/5/b/5b372045-a4a0-44c8-96ec-1e201d61ed26.jpg?1783918444" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="93146"
  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-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">
            Craterhoof Behemoth
        </span>


      </div>

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

          <span class="text-sm font-medium text-nine-white">
            $29.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="Craterhoof Behemoth" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/7/276f5cee-a501-4658-bd4d-7a044bf1ccbc.jpg?1743204520" />

        <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">
            Craterhoof Behemoth
        </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 — Beast</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><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="Craterhoof Behemoth" src="https://cards.scryfall.io/large/front/2/7/276f5cee-a501-4658-bd4d-7a044bf1ccbc.jpg?1743204520" />
    </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">
                $29.64
              </span>

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $25.43
              </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">$20.50</span>
              <span class="text-xs text-grey-text">Credit: $26.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;:21.91},{&quot;2026-06-14&quot;:21.92},{&quot;2026-06-15&quot;:21.92},{&quot;2026-06-16&quot;:22.17},{&quot;2026-06-17&quot;:22.17},{&quot;2026-06-18&quot;:22.17},{&quot;2026-06-19&quot;:21.73},{&quot;2026-06-20&quot;:21.88},{&quot;2026-06-21&quot;:22.02},{&quot;2026-06-22&quot;:22.02},{&quot;2026-06-23&quot;:22.02},{&quot;2026-06-24&quot;:21.47},{&quot;2026-06-25&quot;:21.47},{&quot;2026-06-26&quot;:21.47},{&quot;2026-06-27&quot;:21.47},{&quot;2026-06-28&quot;:22.2},{&quot;2026-06-29&quot;:22.2},{&quot;2026-06-30&quot;:22.2},{&quot;2026-07-01&quot;:22.15},{&quot;2026-07-02&quot;:21.94},{&quot;2026-07-03&quot;:21.94},{&quot;2026-07-04&quot;:21.94},{&quot;2026-07-05&quot;:21.73},{&quot;2026-07-06&quot;:21.73},{&quot;2026-07-07&quot;:21.73},{&quot;2026-07-08&quot;:21.73},{&quot;2026-07-09&quot;:21.73},{&quot;2026-07-10&quot;:21.72},{&quot;2026-07-11&quot;:21.72},{&quot;2026-07-12&quot;:21.6},{&quot;2026-07-13&quot;:21.6},{&quot;2026-07-14&quot;:21.6},{&quot;2026-07-15&quot;:21.86},{&quot;2026-07-16&quot;:22.3},{&quot;2026-07-17&quot;:22.3},{&quot;2026-07-18&quot;:22.34},{&quot;2026-07-19&quot;:22.38},{&quot;2026-07-20&quot;:22.05},{&quot;2026-07-21&quot;:22.19},{&quot;2026-07-22&quot;:21.96},{&quot;2026-07-23&quot;:21.96},{&quot;2026-07-24&quot;:21.96},{&quot;2026-07-25&quot;:21.96},{&quot;2026-07-26&quot;:22.03},{&quot;2026-07-27&quot;:22.47},{&quot;2026-07-28&quot;:22.47},{&quot;2026-07-29&quot;:22.82},{&quot;2026-07-30&quot;:22.93},{&quot;2026-07-31&quot;:23.29},{&quot;2026-08-01&quot;:23.29},{&quot;2026-08-02&quot;:23.49},{&quot;2026-08-03&quot;:23.49},{&quot;2026-08-04&quot;:23.49},{&quot;2026-08-05&quot;:23.49},{&quot;2026-08-07&quot;:23.76},{&quot;2026-08-08&quot;:23.87},{&quot;2026-08-09&quot;:23.87},{&quot;2026-08-10&quot;:23.87},{&quot;2026-08-11&quot;:23.65},{&quot;2026-08-12&quot;:23.3},{&quot;2026-08-13&quot;:23.3},{&quot;2026-08-14&quot;:23.41},{&quot;2026-08-15&quot;:23.35},{&quot;2026-08-16&quot;:23.5},{&quot;2026-08-17&quot;:23.36},{&quot;2026-08-18&quot;:23.33},{&quot;2026-08-19&quot;:23.33},{&quot;2026-08-20&quot;:23.33},{&quot;2026-08-21&quot;:23.33},{&quot;2026-08-22&quot;:23.43},{&quot;2026-08-23&quot;:23.43},{&quot;2026-08-24&quot;:23.43},{&quot;2026-08-25&quot;:23.43},{&quot;2026-08-26&quot;:23.41},{&quot;2026-08-27&quot;:24.09},{&quot;2026-08-28&quot;:24.09},{&quot;2026-08-29&quot;:24.09},{&quot;2026-08-30&quot;:24.02},{&quot;2026-08-31&quot;:23.92},{&quot;2026-09-01&quot;:23.92},{&quot;2026-09-02&quot;:23.82},{&quot;2026-09-03&quot;:24.49},{&quot;2026-09-04&quot;:24.49},{&quot;2026-09-05&quot;:24.54},{&quot;2026-09-06&quot;:25.32},{&quot;2026-09-07&quot;:25.99},{&quot;2026-09-08&quot;:25.95},{&quot;2026-09-09&quot;:25.95},{&quot;2026-09-10&quot;:25.39},{&quot;2026-09-11&quot;:25.43}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:20.32},{&quot;2026-06-14&quot;:19.85},{&quot;2026-06-15&quot;:19.68},{&quot;2026-06-16&quot;:19.8},{&quot;2026-06-17&quot;:19.06},{&quot;2026-06-18&quot;:19.26},{&quot;2026-06-19&quot;:20.1},{&quot;2026-06-20&quot;:20.64},{&quot;2026-06-21&quot;:20.81},{&quot;2026-06-22&quot;:21.29},{&quot;2026-06-23&quot;:21.03},{&quot;2026-06-24&quot;:20.55},{&quot;2026-06-25&quot;:20.56},{&quot;2026-06-26&quot;:20.39},{&quot;2026-06-27&quot;:20.3},{&quot;2026-06-28&quot;:21.02},{&quot;2026-06-29&quot;:21.23},{&quot;2026-06-30&quot;:21.19},{&quot;2026-07-01&quot;:21.43},{&quot;2026-07-02&quot;:21.54},{&quot;2026-07-03&quot;:22.23},{&quot;2026-07-04&quot;:22.16},{&quot;2026-07-05&quot;:21.96},{&quot;2026-07-06&quot;:21.67},{&quot;2026-07-07&quot;:22.13},{&quot;2026-07-08&quot;:22.0},{&quot;2026-07-09&quot;:21.37},{&quot;2026-07-10&quot;:21.37},{&quot;2026-07-11&quot;:21.63},{&quot;2026-07-12&quot;:21.09},{&quot;2026-07-13&quot;:21.68},{&quot;2026-07-14&quot;:21.04},{&quot;2026-07-15&quot;:21.4},{&quot;2026-07-16&quot;:22.04},{&quot;2026-07-17&quot;:22.65},{&quot;2026-07-18&quot;:22.99},{&quot;2026-07-19&quot;:22.79},{&quot;2026-07-20&quot;:23.89},{&quot;2026-07-21&quot;:23.52},{&quot;2026-07-22&quot;:22.84},{&quot;2026-07-23&quot;:23.28},{&quot;2026-07-24&quot;:23.83},{&quot;2026-07-25&quot;:23.84},{&quot;2026-07-26&quot;:24.2},{&quot;2026-07-27&quot;:22.98},{&quot;2026-07-28&quot;:23.99},{&quot;2026-07-29&quot;:23.59},{&quot;2026-07-30&quot;:23.4},{&quot;2026-07-31&quot;:24.97},{&quot;2026-08-01&quot;:25.93},{&quot;2026-08-02&quot;:26.11},{&quot;2026-08-03&quot;:26.27},{&quot;2026-08-04&quot;:25.88},{&quot;2026-08-05&quot;:26.05},{&quot;2026-08-07&quot;:24.31},{&quot;2026-08-08&quot;:23.39},{&quot;2026-08-09&quot;:21.57},{&quot;2026-08-10&quot;:21.52},{&quot;2026-08-11&quot;:22.29},{&quot;2026-08-12&quot;:22.23},{&quot;2026-08-13&quot;:22.22},{&quot;2026-08-14&quot;:22.16},{&quot;2026-08-15&quot;:22.0},{&quot;2026-08-16&quot;:22.19},{&quot;2026-08-17&quot;:23.07},{&quot;2026-08-18&quot;:24.78},{&quot;2026-08-19&quot;:24.22},{&quot;2026-08-20&quot;:23.77},{&quot;2026-08-21&quot;:24.37},{&quot;2026-08-22&quot;:23.92},{&quot;2026-08-23&quot;:23.89},{&quot;2026-08-24&quot;:24.69},{&quot;2026-08-25&quot;:24.67},{&quot;2026-08-26&quot;:23.1},{&quot;2026-08-27&quot;:23.0},{&quot;2026-08-28&quot;:23.01},{&quot;2026-08-29&quot;:23.01},{&quot;2026-08-30&quot;:23.83},{&quot;2026-08-31&quot;:24.4},{&quot;2026-09-01&quot;:24.65},{&quot;2026-09-02&quot;:25.2},{&quot;2026-09-03&quot;:24.52},{&quot;2026-09-04&quot;:25.11},{&quot;2026-09-05&quot;:25.1},{&quot;2026-09-06&quot;:25.11},{&quot;2026-09-07&quot;:25.41},{&quot;2026-09-08&quot;:28.33},{&quot;2026-09-09&quot;:28.4},{&quot;2026-09-10&quot;:28.55},{&quot;2026-09-11&quot;:29.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="19300"
  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">
            Worldly Tutor
        </span>


      </div>

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

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

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

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

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

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

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

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-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="Worldly Tutor" src="https://cards.scryfall.io/large/front/1/6/16b4d0a8-3270-4e53-9f1d-90f995c3b712.jpg?1783918322" />
    </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">
                $25.76
              </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">
                $42.57
              </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.50</span>
              <span class="text-xs text-grey-text">Credit: $25.35</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:41.11},{&quot;2026-06-14&quot;:41.11},{&quot;2026-06-15&quot;:41.11},{&quot;2026-06-16&quot;:41.27},{&quot;2026-06-17&quot;:41.44},{&quot;2026-06-18&quot;:41.62},{&quot;2026-06-19&quot;:41.62},{&quot;2026-06-20&quot;:41.62},{&quot;2026-06-21&quot;:41.91},{&quot;2026-06-22&quot;:42.54},{&quot;2026-06-23&quot;:42.54},{&quot;2026-06-24&quot;:42.54},{&quot;2026-06-25&quot;:42.54},{&quot;2026-06-26&quot;:42.79},{&quot;2026-06-27&quot;:42.79},{&quot;2026-06-28&quot;:43.03},{&quot;2026-06-29&quot;:43.03},{&quot;2026-06-30&quot;:43.37},{&quot;2026-07-01&quot;:43.37},{&quot;2026-07-02&quot;:43.37},{&quot;2026-07-03&quot;:43.37},{&quot;2026-07-04&quot;:43.37},{&quot;2026-07-05&quot;:43.37},{&quot;2026-07-06&quot;:43.49},{&quot;2026-07-07&quot;:43.49},{&quot;2026-07-08&quot;:43.49},{&quot;2026-07-09&quot;:43.49},{&quot;2026-07-10&quot;:43.49},{&quot;2026-07-11&quot;:43.49},{&quot;2026-07-12&quot;:43.93},{&quot;2026-07-13&quot;:43.93},{&quot;2026-07-14&quot;:44.13},{&quot;2026-07-15&quot;:44.13},{&quot;2026-07-16&quot;:44.11},{&quot;2026-07-17&quot;:44.11},{&quot;2026-07-18&quot;:44.11},{&quot;2026-07-19&quot;:44.11},{&quot;2026-07-20&quot;:44.03},{&quot;2026-07-21&quot;:44.03},{&quot;2026-07-22&quot;:44.03},{&quot;2026-07-23&quot;:44.03},{&quot;2026-07-24&quot;:43.87},{&quot;2026-07-25&quot;:43.21},{&quot;2026-07-26&quot;:43.81},{&quot;2026-07-27&quot;:43.17},{&quot;2026-07-28&quot;:43.37},{&quot;2026-07-29&quot;:43.37},{&quot;2026-07-30&quot;:43.32},{&quot;2026-07-31&quot;:43.32},{&quot;2026-08-01&quot;:43.32},{&quot;2026-08-02&quot;:43.32},{&quot;2026-08-03&quot;:43.32},{&quot;2026-08-04&quot;:43.32},{&quot;2026-08-05&quot;:43.32},{&quot;2026-08-07&quot;:42.8},{&quot;2026-08-08&quot;:42.8},{&quot;2026-08-09&quot;:42.73},{&quot;2026-08-10&quot;:42.73},{&quot;2026-08-11&quot;:42.73},{&quot;2026-08-12&quot;:42.73},{&quot;2026-08-13&quot;:42.73},{&quot;2026-08-14&quot;:42.73},{&quot;2026-08-15&quot;:42.73},{&quot;2026-08-16&quot;:42.56},{&quot;2026-08-17&quot;:42.64},{&quot;2026-08-18&quot;:42.7},{&quot;2026-08-19&quot;:42.65},{&quot;2026-08-20&quot;:42.65},{&quot;2026-08-21&quot;:42.56},{&quot;2026-08-22&quot;:42.56},{&quot;2026-08-23&quot;:42.57},{&quot;2026-08-24&quot;:42.57},{&quot;2026-08-25&quot;:42.53},{&quot;2026-08-26&quot;:42.53},{&quot;2026-08-27&quot;:42.42},{&quot;2026-08-28&quot;:42.42},{&quot;2026-08-29&quot;:42.42},{&quot;2026-08-30&quot;:42.42},{&quot;2026-08-31&quot;:42.52},{&quot;2026-09-01&quot;:42.61},{&quot;2026-09-02&quot;:42.61},{&quot;2026-09-03&quot;:42.61},{&quot;2026-09-04&quot;:42.61},{&quot;2026-09-05&quot;:42.61},{&quot;2026-09-06&quot;:42.61},{&quot;2026-09-07&quot;:42.61},{&quot;2026-09-08&quot;:42.57},{&quot;2026-09-09&quot;:42.57},{&quot;2026-09-10&quot;:42.57},{&quot;2026-09-11&quot;:42.57}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:26.45},{&quot;2026-06-14&quot;:26.94},{&quot;2026-06-15&quot;:27.02},{&quot;2026-06-16&quot;:26.3},{&quot;2026-06-17&quot;:26.26},{&quot;2026-06-18&quot;:26.34},{&quot;2026-06-19&quot;:26.24},{&quot;2026-06-20&quot;:26.5},{&quot;2026-06-21&quot;:26.43},{&quot;2026-06-22&quot;:26.43},{&quot;2026-06-23&quot;:26.43},{&quot;2026-06-24&quot;:26.19},{&quot;2026-06-25&quot;:25.99},{&quot;2026-06-26&quot;:26.13},{&quot;2026-06-27&quot;:26.0},{&quot;2026-06-28&quot;:26.2},{&quot;2026-06-29&quot;:26.6},{&quot;2026-06-30&quot;:26.6},{&quot;2026-07-01&quot;:26.58},{&quot;2026-07-02&quot;:26.46},{&quot;2026-07-03&quot;:26.18},{&quot;2026-07-04&quot;:26.18},{&quot;2026-07-05&quot;:26.09},{&quot;2026-07-06&quot;:26.1},{&quot;2026-07-07&quot;:26.1},{&quot;2026-07-08&quot;:26.1},{&quot;2026-07-09&quot;:25.63},{&quot;2026-07-10&quot;:25.58},{&quot;2026-07-11&quot;:25.14},{&quot;2026-07-12&quot;:24.92},{&quot;2026-07-13&quot;:24.9},{&quot;2026-07-14&quot;:25.64},{&quot;2026-07-15&quot;:26.05},{&quot;2026-07-16&quot;:26.3},{&quot;2026-07-17&quot;:26.09},{&quot;2026-07-18&quot;:26.4},{&quot;2026-07-19&quot;:26.99},{&quot;2026-07-20&quot;:27.33},{&quot;2026-07-21&quot;:27.19},{&quot;2026-07-22&quot;:27.51},{&quot;2026-07-23&quot;:27.2},{&quot;2026-07-24&quot;:27.6},{&quot;2026-07-25&quot;:28.79},{&quot;2026-07-26&quot;:28.75},{&quot;2026-07-27&quot;:28.75},{&quot;2026-07-28&quot;:28.75},{&quot;2026-07-29&quot;:28.9},{&quot;2026-07-30&quot;:28.9},{&quot;2026-07-31&quot;:28.71},{&quot;2026-08-01&quot;:28.18},{&quot;2026-08-02&quot;:28.26},{&quot;2026-08-03&quot;:27.97},{&quot;2026-08-04&quot;:28.14},{&quot;2026-08-05&quot;:27.88},{&quot;2026-08-07&quot;:27.57},{&quot;2026-08-08&quot;:27.41},{&quot;2026-08-09&quot;:27.43},{&quot;2026-08-10&quot;:27.69},{&quot;2026-08-11&quot;:27.83},{&quot;2026-08-12&quot;:27.99},{&quot;2026-08-13&quot;:28.11},{&quot;2026-08-14&quot;:28.26},{&quot;2026-08-15&quot;:28.35},{&quot;2026-08-16&quot;:28.17},{&quot;2026-08-17&quot;:28.17},{&quot;2026-08-18&quot;:27.76},{&quot;2026-08-19&quot;:27.56},{&quot;2026-08-20&quot;:27.56},{&quot;2026-08-21&quot;:27.85},{&quot;2026-08-22&quot;:27.23},{&quot;2026-08-23&quot;:26.68},{&quot;2026-08-24&quot;:26.69},{&quot;2026-08-25&quot;:26.49},{&quot;2026-08-26&quot;:26.25},{&quot;2026-08-27&quot;:25.93},{&quot;2026-08-28&quot;:26.07},{&quot;2026-08-29&quot;:26.07},{&quot;2026-08-30&quot;:26.02},{&quot;2026-08-31&quot;:26.47},{&quot;2026-09-01&quot;:26.35},{&quot;2026-09-02&quot;:26.28},{&quot;2026-09-03&quot;:26.24},{&quot;2026-09-04&quot;:26.01},{&quot;2026-09-05&quot;:25.83},{&quot;2026-09-06&quot;:25.74},{&quot;2026-09-07&quot;:25.34},{&quot;2026-09-08&quot;:25.33},{&quot;2026-09-09&quot;:25.66},{&quot;2026-09-10&quot;:25.82},{&quot;2026-09-11&quot;:25.76}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

          <span class="text-sm font-medium text-nine-white">
            $24.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="The Meathook Massacre" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/9/09dbe391-a817-4347-986f-13849746db56.jpg?1783908011" />

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="The Meathook Massacre" src="https://cards.scryfall.io/large/front/0/9/09dbe391-a817-4347-986f-13849746db56.jpg?1783908011" />
    </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">
                $24.22
              </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">
                $32.49
              </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">$16.00</span>
              <span class="text-xs text-grey-text">Credit: $20.80</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;:29.02},{&quot;2026-06-13&quot;:29.02},{&quot;2026-06-14&quot;:29.02},{&quot;2026-06-15&quot;:29.22},{&quot;2026-06-16&quot;:29.22},{&quot;2026-06-17&quot;:28.75},{&quot;2026-06-18&quot;:28.75},{&quot;2026-06-19&quot;:28.83},{&quot;2026-06-20&quot;:28.83},{&quot;2026-06-21&quot;:28.67},{&quot;2026-06-22&quot;:28.71},{&quot;2026-06-23&quot;:28.71},{&quot;2026-06-24&quot;:28.66},{&quot;2026-06-25&quot;:28.66},{&quot;2026-06-26&quot;:28.71},{&quot;2026-06-27&quot;:28.71},{&quot;2026-06-28&quot;:28.71},{&quot;2026-06-29&quot;:28.71},{&quot;2026-06-30&quot;:28.71},{&quot;2026-07-01&quot;:28.71},{&quot;2026-07-02&quot;:29.2},{&quot;2026-07-03&quot;:29.43},{&quot;2026-07-04&quot;:29.7},{&quot;2026-07-05&quot;:29.7},{&quot;2026-07-06&quot;:29.7},{&quot;2026-07-07&quot;:29.7},{&quot;2026-07-08&quot;:29.49},{&quot;2026-07-09&quot;:29.93},{&quot;2026-07-10&quot;:29.93},{&quot;2026-07-11&quot;:29.53},{&quot;2026-07-12&quot;:29.53},{&quot;2026-07-13&quot;:29.53},{&quot;2026-07-14&quot;:29.53},{&quot;2026-07-15&quot;:29.53},{&quot;2026-07-16&quot;:29.53},{&quot;2026-07-17&quot;:29.53},{&quot;2026-07-18&quot;:29.53},{&quot;2026-07-19&quot;:29.92},{&quot;2026-07-20&quot;:29.92},{&quot;2026-07-21&quot;:30.23},{&quot;2026-07-23&quot;:30.23},{&quot;2026-07-24&quot;:30.23},{&quot;2026-07-25&quot;:30.15},{&quot;2026-07-26&quot;:30.2},{&quot;2026-07-27&quot;:30.14},{&quot;2026-07-28&quot;:29.98},{&quot;2026-07-29&quot;:29.98},{&quot;2026-07-30&quot;:30.38},{&quot;2026-07-31&quot;:30.59},{&quot;2026-08-01&quot;:30.83},{&quot;2026-08-02&quot;:30.83},{&quot;2026-08-03&quot;:30.83},{&quot;2026-08-04&quot;:30.83},{&quot;2026-08-05&quot;:31.17},{&quot;2026-08-07&quot;:31.48},{&quot;2026-08-08&quot;:31.48},{&quot;2026-08-09&quot;:31.48},{&quot;2026-08-10&quot;:31.48},{&quot;2026-08-11&quot;:31.31},{&quot;2026-08-12&quot;:31.31},{&quot;2026-08-13&quot;:31.47},{&quot;2026-08-14&quot;:31.19},{&quot;2026-08-15&quot;:31.19},{&quot;2026-08-16&quot;:31.19},{&quot;2026-08-17&quot;:31.19},{&quot;2026-08-18&quot;:31.78},{&quot;2026-08-19&quot;:31.83},{&quot;2026-08-20&quot;:31.83},{&quot;2026-08-21&quot;:31.83},{&quot;2026-08-22&quot;:31.83},{&quot;2026-08-23&quot;:31.83},{&quot;2026-08-24&quot;:31.83},{&quot;2026-08-25&quot;:31.83},{&quot;2026-08-26&quot;:31.83},{&quot;2026-08-27&quot;:31.92},{&quot;2026-08-28&quot;:31.92},{&quot;2026-08-29&quot;:31.92},{&quot;2026-08-30&quot;:31.91},{&quot;2026-08-31&quot;:31.91},{&quot;2026-09-01&quot;:32.01},{&quot;2026-09-02&quot;:32.11},{&quot;2026-09-03&quot;:32.11},{&quot;2026-09-04&quot;:32.11},{&quot;2026-09-05&quot;:32.11},{&quot;2026-09-06&quot;:32.11},{&quot;2026-09-07&quot;:32.11},{&quot;2026-09-08&quot;:32.11},{&quot;2026-09-09&quot;:32.27},{&quot;2026-09-10&quot;:32.46},{&quot;2026-09-11&quot;:32.49}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:27.58},{&quot;2026-06-13&quot;:27.58},{&quot;2026-06-14&quot;:27.58},{&quot;2026-06-15&quot;:27.34},{&quot;2026-06-16&quot;:27.34},{&quot;2026-06-17&quot;:27.34},{&quot;2026-06-18&quot;:27.34},{&quot;2026-06-19&quot;:27.34},{&quot;2026-06-20&quot;:27.4},{&quot;2026-06-21&quot;:27.4},{&quot;2026-06-22&quot;:27.61},{&quot;2026-06-23&quot;:27.61},{&quot;2026-06-24&quot;:27.28},{&quot;2026-06-25&quot;:27.28},{&quot;2026-06-26&quot;:27.1},{&quot;2026-06-27&quot;:26.59},{&quot;2026-06-28&quot;:26.69},{&quot;2026-06-29&quot;:26.69},{&quot;2026-06-30&quot;:26.69},{&quot;2026-07-01&quot;:26.69},{&quot;2026-07-02&quot;:26.69},{&quot;2026-07-03&quot;:26.69},{&quot;2026-07-04&quot;:26.68},{&quot;2026-07-05&quot;:26.68},{&quot;2026-07-06&quot;:26.68},{&quot;2026-07-07&quot;:26.33},{&quot;2026-07-08&quot;:26.33},{&quot;2026-07-09&quot;:26.34},{&quot;2026-07-10&quot;:26.16},{&quot;2026-07-11&quot;:26.44},{&quot;2026-07-12&quot;:26.44},{&quot;2026-07-13&quot;:26.12},{&quot;2026-07-14&quot;:26.45},{&quot;2026-07-15&quot;:26.43},{&quot;2026-07-16&quot;:26.58},{&quot;2026-07-17&quot;:26.7},{&quot;2026-07-18&quot;:26.47},{&quot;2026-07-19&quot;:26.49},{&quot;2026-07-20&quot;:26.49},{&quot;2026-07-21&quot;:26.49},{&quot;2026-07-23&quot;:26.49},{&quot;2026-07-24&quot;:26.49},{&quot;2026-07-25&quot;:26.71},{&quot;2026-07-26&quot;:26.6},{&quot;2026-07-27&quot;:26.6},{&quot;2026-07-28&quot;:26.53},{&quot;2026-07-29&quot;:26.73},{&quot;2026-07-30&quot;:26.73},{&quot;2026-07-31&quot;:26.73},{&quot;2026-08-01&quot;:27.12},{&quot;2026-08-02&quot;:27.12},{&quot;2026-08-03&quot;:27.12},{&quot;2026-08-04&quot;:27.17},{&quot;2026-08-05&quot;:27.09},{&quot;2026-08-07&quot;:27.3},{&quot;2026-08-08&quot;:27.3},{&quot;2026-08-09&quot;:27.34},{&quot;2026-08-10&quot;:27.34},{&quot;2026-08-11&quot;:27.34},{&quot;2026-08-12&quot;:26.8},{&quot;2026-08-13&quot;:26.83},{&quot;2026-08-14&quot;:26.72},{&quot;2026-08-15&quot;:26.72},{&quot;2026-08-16&quot;:26.79},{&quot;2026-08-17&quot;:26.59},{&quot;2026-08-18&quot;:26.59},{&quot;2026-08-19&quot;:26.59},{&quot;2026-08-20&quot;:26.59},{&quot;2026-08-21&quot;:26.7},{&quot;2026-08-22&quot;:26.7},{&quot;2026-08-23&quot;:26.45},{&quot;2026-08-24&quot;:26.45},{&quot;2026-08-25&quot;:26.06},{&quot;2026-08-26&quot;:25.88},{&quot;2026-08-27&quot;:25.88},{&quot;2026-08-28&quot;:25.72},{&quot;2026-08-29&quot;:25.72},{&quot;2026-08-30&quot;:25.61},{&quot;2026-08-31&quot;:25.48},{&quot;2026-09-01&quot;:25.48},{&quot;2026-09-02&quot;:25.53},{&quot;2026-09-03&quot;:25.63},{&quot;2026-09-04&quot;:25.5},{&quot;2026-09-05&quot;:25.42},{&quot;2026-09-06&quot;:24.34},{&quot;2026-09-07&quot;:24.22},{&quot;2026-09-08&quot;:24.22},{&quot;2026-09-09&quot;:24.21},{&quot;2026-09-10&quot;:24.21},{&quot;2026-09-11&quot;:24.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="96614"
  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">
            Icetill Explorer
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $20.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="Icetill Explorer" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/9/d9482aab-6ddf-48e1-84fa-b13d5ff81e69.jpg?1783905935" />

        <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">
            Icetill Explorer
        </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 — Insect Scout</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i><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="Icetill Explorer" src="https://cards.scryfall.io/large/front/d/9/d9482aab-6ddf-48e1-84fa-b13d5ff81e69.jpg?1783905935" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-12&quot;:20.68},{&quot;2026-06-13&quot;:20.38},{&quot;2026-06-14&quot;:20.38},{&quot;2026-06-15&quot;:20.38},{&quot;2026-06-16&quot;:19.9},{&quot;2026-06-17&quot;:20.02},{&quot;2026-06-18&quot;:19.86},{&quot;2026-06-19&quot;:19.91},{&quot;2026-06-20&quot;:19.27},{&quot;2026-06-21&quot;:19.12},{&quot;2026-06-22&quot;:19.04},{&quot;2026-06-23&quot;:19.04},{&quot;2026-06-24&quot;:18.92},{&quot;2026-06-25&quot;:18.66},{&quot;2026-06-26&quot;:18.52},{&quot;2026-06-27&quot;:18.47},{&quot;2026-06-28&quot;:18.28},{&quot;2026-06-29&quot;:18.14},{&quot;2026-06-30&quot;:18.14},{&quot;2026-07-01&quot;:18.14},{&quot;2026-07-02&quot;:18.16},{&quot;2026-07-03&quot;:17.59},{&quot;2026-07-04&quot;:17.87},{&quot;2026-07-05&quot;:17.56},{&quot;2026-07-06&quot;:17.37},{&quot;2026-07-07&quot;:17.07},{&quot;2026-07-08&quot;:16.78},{&quot;2026-07-09&quot;:16.49},{&quot;2026-07-10&quot;:16.03},{&quot;2026-07-11&quot;:16.0},{&quot;2026-07-12&quot;:16.0},{&quot;2026-07-13&quot;:15.98},{&quot;2026-07-14&quot;:16.2},{&quot;2026-07-15&quot;:16.2},{&quot;2026-07-16&quot;:16.11},{&quot;2026-07-17&quot;:16.02},{&quot;2026-07-18&quot;:16.05},{&quot;2026-07-19&quot;:16.05},{&quot;2026-07-20&quot;:16.0},{&quot;2026-07-21&quot;:15.97},{&quot;2026-07-23&quot;:15.73},{&quot;2026-07-24&quot;:15.65},{&quot;2026-07-25&quot;:15.54},{&quot;2026-07-26&quot;:15.39},{&quot;2026-07-27&quot;:15.31},{&quot;2026-07-28&quot;:15.16},{&quot;2026-07-29&quot;:15.45},{&quot;2026-07-30&quot;:16.13},{&quot;2026-07-31&quot;:16.09},{&quot;2026-08-01&quot;:16.09},{&quot;2026-08-02&quot;:16.1},{&quot;2026-08-03&quot;:15.98},{&quot;2026-08-04&quot;:16.23},{&quot;2026-08-05&quot;:15.96},{&quot;2026-08-07&quot;:15.82},{&quot;2026-08-08&quot;:15.99},{&quot;2026-08-09&quot;:16.06},{&quot;2026-08-10&quot;:16.27},{&quot;2026-08-11&quot;:16.29},{&quot;2026-08-12&quot;:16.15},{&quot;2026-08-13&quot;:16.55},{&quot;2026-08-14&quot;:16.5},{&quot;2026-08-15&quot;:16.85},{&quot;2026-08-16&quot;:17.13},{&quot;2026-08-17&quot;:17.81},{&quot;2026-08-18&quot;:18.07},{&quot;2026-08-19&quot;:18.52},{&quot;2026-08-20&quot;:18.52},{&quot;2026-08-21&quot;:18.31},{&quot;2026-08-22&quot;:18.82},{&quot;2026-08-23&quot;:18.82},{&quot;2026-08-24&quot;:18.87},{&quot;2026-08-25&quot;:19.14},{&quot;2026-08-26&quot;:18.96},{&quot;2026-08-27&quot;:19.09},{&quot;2026-08-28&quot;:19.5},{&quot;2026-08-29&quot;:19.5},{&quot;2026-08-30&quot;:19.87},{&quot;2026-08-31&quot;:19.74},{&quot;2026-09-01&quot;:19.81},{&quot;2026-09-02&quot;:19.74},{&quot;2026-09-03&quot;:19.73},{&quot;2026-09-04&quot;:19.78},{&quot;2026-09-05&quot;:19.78},{&quot;2026-09-06&quot;:19.78},{&quot;2026-09-07&quot;:19.79},{&quot;2026-09-08&quot;:20.12},{&quot;2026-09-09&quot;:20.24},{&quot;2026-09-10&quot;:19.97},{&quot;2026-09-11&quot;:19.62}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:16.82},{&quot;2026-06-13&quot;:17.29},{&quot;2026-06-14&quot;:16.5},{&quot;2026-06-15&quot;:16.21},{&quot;2026-06-16&quot;:16.6},{&quot;2026-06-17&quot;:16.13},{&quot;2026-06-18&quot;:15.82},{&quot;2026-06-19&quot;:15.59},{&quot;2026-06-20&quot;:15.93},{&quot;2026-06-21&quot;:16.33},{&quot;2026-06-22&quot;:15.81},{&quot;2026-06-23&quot;:15.84},{&quot;2026-06-24&quot;:16.13},{&quot;2026-06-25&quot;:16.05},{&quot;2026-06-26&quot;:15.73},{&quot;2026-06-27&quot;:15.36},{&quot;2026-06-28&quot;:15.6},{&quot;2026-06-29&quot;:15.26},{&quot;2026-06-30&quot;:14.35},{&quot;2026-07-01&quot;:15.14},{&quot;2026-07-02&quot;:14.35},{&quot;2026-07-03&quot;:14.19},{&quot;2026-07-04&quot;:14.78},{&quot;2026-07-05&quot;:13.84},{&quot;2026-07-06&quot;:14.69},{&quot;2026-07-07&quot;:15.1},{&quot;2026-07-08&quot;:15.22},{&quot;2026-07-09&quot;:14.85},{&quot;2026-07-10&quot;:13.37},{&quot;2026-07-11&quot;:13.6},{&quot;2026-07-12&quot;:14.77},{&quot;2026-07-13&quot;:14.03},{&quot;2026-07-14&quot;:13.93},{&quot;2026-07-15&quot;:13.62},{&quot;2026-07-16&quot;:13.72},{&quot;2026-07-17&quot;:13.72},{&quot;2026-07-18&quot;:13.26},{&quot;2026-07-19&quot;:14.4},{&quot;2026-07-20&quot;:14.19},{&quot;2026-07-21&quot;:14.82},{&quot;2026-07-23&quot;:14.38},{&quot;2026-07-24&quot;:14.15},{&quot;2026-07-25&quot;:14.1},{&quot;2026-07-26&quot;:13.93},{&quot;2026-07-27&quot;:14.5},{&quot;2026-07-28&quot;:14.78},{&quot;2026-07-29&quot;:14.86},{&quot;2026-07-30&quot;:15.19},{&quot;2026-07-31&quot;:16.6},{&quot;2026-08-01&quot;:16.12},{&quot;2026-08-02&quot;:15.43},{&quot;2026-08-03&quot;:15.61},{&quot;2026-08-04&quot;:14.95},{&quot;2026-08-05&quot;:14.85},{&quot;2026-08-07&quot;:15.56},{&quot;2026-08-08&quot;:16.04},{&quot;2026-08-09&quot;:16.85},{&quot;2026-08-10&quot;:17.8},{&quot;2026-08-11&quot;:17.35},{&quot;2026-08-12&quot;:15.4},{&quot;2026-08-13&quot;:16.43},{&quot;2026-08-14&quot;:17.41},{&quot;2026-08-15&quot;:16.56},{&quot;2026-08-16&quot;:16.59},{&quot;2026-08-17&quot;:18.89},{&quot;2026-08-18&quot;:19.04},{&quot;2026-08-19&quot;:17.68},{&quot;2026-08-20&quot;:17.68},{&quot;2026-08-21&quot;:16.25},{&quot;2026-08-22&quot;:17.3},{&quot;2026-08-23&quot;:17.55},{&quot;2026-08-24&quot;:18.57},{&quot;2026-08-25&quot;:18.95},{&quot;2026-08-26&quot;:16.98},{&quot;2026-08-27&quot;:16.76},{&quot;2026-08-28&quot;:18.05},{&quot;2026-08-29&quot;:18.05},{&quot;2026-08-30&quot;:22.01},{&quot;2026-08-31&quot;:20.22},{&quot;2026-09-01&quot;:19.62},{&quot;2026-09-02&quot;:19.88},{&quot;2026-09-03&quot;:20.14},{&quot;2026-09-04&quot;:19.79},{&quot;2026-09-05&quot;:18.66},{&quot;2026-09-06&quot;:17.97},{&quot;2026-09-07&quot;:18.3},{&quot;2026-09-08&quot;:19.6},{&quot;2026-09-09&quot;:18.4},{&quot;2026-09-10&quot;:19.62},{&quot;2026-09-11&quot;:20.19}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="16182"
  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-m21 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">
            Heroic Intervention
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $16.69
          </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="Heroic Intervention" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/3/43c037e3-7d1a-48ca-8ecc-276696592f62.jpg?1783930674" />

        <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">
            Heroic Intervention
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Heroic Intervention" src="https://cards.scryfall.io/large/front/4/3/43c037e3-7d1a-48ca-8ecc-276696592f62.jpg?1783930674" />
    </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.69
              </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">
                $16.11
              </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">$11.00</span>
              <span class="text-xs text-grey-text">Credit: $14.30</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:14.42},{&quot;2026-06-14&quot;:14.42},{&quot;2026-06-15&quot;:14.42},{&quot;2026-06-16&quot;:14.36},{&quot;2026-06-17&quot;:14.36},{&quot;2026-06-18&quot;:14.36},{&quot;2026-06-19&quot;:14.36},{&quot;2026-06-20&quot;:14.36},{&quot;2026-06-21&quot;:14.36},{&quot;2026-06-22&quot;:14.52},{&quot;2026-06-23&quot;:14.52},{&quot;2026-06-24&quot;:14.52},{&quot;2026-06-25&quot;:14.7},{&quot;2026-06-26&quot;:14.7},{&quot;2026-06-27&quot;:14.7},{&quot;2026-06-28&quot;:14.59},{&quot;2026-06-29&quot;:14.67},{&quot;2026-06-30&quot;:14.67},{&quot;2026-07-01&quot;:14.82},{&quot;2026-07-02&quot;:14.79},{&quot;2026-07-03&quot;:14.79},{&quot;2026-07-04&quot;:14.79},{&quot;2026-07-05&quot;:14.89},{&quot;2026-07-06&quot;:14.91},{&quot;2026-07-07&quot;:14.79},{&quot;2026-07-08&quot;:14.8},{&quot;2026-07-09&quot;:15.12},{&quot;2026-07-10&quot;:15.12},{&quot;2026-07-11&quot;:15.12},{&quot;2026-07-12&quot;:15.11},{&quot;2026-07-13&quot;:15.2},{&quot;2026-07-14&quot;:15.03},{&quot;2026-07-15&quot;:15.06},{&quot;2026-07-16&quot;:14.97},{&quot;2026-07-17&quot;:14.97},{&quot;2026-07-18&quot;:14.97},{&quot;2026-07-19&quot;:14.97},{&quot;2026-07-20&quot;:14.97},{&quot;2026-07-21&quot;:14.88},{&quot;2026-07-22&quot;:14.88},{&quot;2026-07-23&quot;:14.88},{&quot;2026-07-24&quot;:14.95},{&quot;2026-07-25&quot;:14.95},{&quot;2026-07-26&quot;:15.0},{&quot;2026-07-27&quot;:15.05},{&quot;2026-07-28&quot;:15.05},{&quot;2026-07-29&quot;:15.05},{&quot;2026-07-30&quot;:15.05},{&quot;2026-07-31&quot;:15.16},{&quot;2026-08-01&quot;:15.16},{&quot;2026-08-02&quot;:15.24},{&quot;2026-08-03&quot;:15.24},{&quot;2026-08-04&quot;:15.24},{&quot;2026-08-05&quot;:15.09},{&quot;2026-08-07&quot;:15.19},{&quot;2026-08-08&quot;:15.19},{&quot;2026-08-09&quot;:15.58},{&quot;2026-08-10&quot;:15.58},{&quot;2026-08-11&quot;:15.63},{&quot;2026-08-12&quot;:16.08},{&quot;2026-08-13&quot;:16.07},{&quot;2026-08-14&quot;:15.88},{&quot;2026-08-15&quot;:15.88},{&quot;2026-08-16&quot;:16.01},{&quot;2026-08-17&quot;:15.75},{&quot;2026-08-18&quot;:15.8},{&quot;2026-08-19&quot;:15.8},{&quot;2026-08-20&quot;:15.8},{&quot;2026-08-21&quot;:15.8},{&quot;2026-08-22&quot;:16.06},{&quot;2026-08-23&quot;:16.1},{&quot;2026-08-24&quot;:16.1},{&quot;2026-08-25&quot;:16.1},{&quot;2026-08-26&quot;:16.1},{&quot;2026-08-27&quot;:16.05},{&quot;2026-08-28&quot;:16.02},{&quot;2026-08-29&quot;:16.02},{&quot;2026-08-30&quot;:15.97},{&quot;2026-08-31&quot;:15.89},{&quot;2026-09-01&quot;:15.89},{&quot;2026-09-02&quot;:15.89},{&quot;2026-09-03&quot;:15.89},{&quot;2026-09-04&quot;:15.89},{&quot;2026-09-05&quot;:15.89},{&quot;2026-09-06&quot;:16.11},{&quot;2026-09-07&quot;:16.11},{&quot;2026-09-08&quot;:16.11},{&quot;2026-09-09&quot;:16.11},{&quot;2026-09-10&quot;:16.11},{&quot;2026-09-11&quot;:16.11}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:14.58},{&quot;2026-06-14&quot;:15.09},{&quot;2026-06-15&quot;:15.01},{&quot;2026-06-16&quot;:15.29},{&quot;2026-06-17&quot;:15.22},{&quot;2026-06-18&quot;:15.26},{&quot;2026-06-19&quot;:15.1},{&quot;2026-06-20&quot;:15.41},{&quot;2026-06-21&quot;:15.46},{&quot;2026-06-22&quot;:15.01},{&quot;2026-06-23&quot;:14.94},{&quot;2026-06-24&quot;:15.03},{&quot;2026-06-25&quot;:15.02},{&quot;2026-06-26&quot;:15.36},{&quot;2026-06-27&quot;:15.08},{&quot;2026-06-28&quot;:15.28},{&quot;2026-06-29&quot;:15.01},{&quot;2026-06-30&quot;:15.27},{&quot;2026-07-01&quot;:15.13},{&quot;2026-07-02&quot;:15.05},{&quot;2026-07-03&quot;:15.15},{&quot;2026-07-04&quot;:14.87},{&quot;2026-07-05&quot;:15.09},{&quot;2026-07-06&quot;:15.12},{&quot;2026-07-07&quot;:15.12},{&quot;2026-07-08&quot;:15.1},{&quot;2026-07-09&quot;:15.3},{&quot;2026-07-10&quot;:15.4},{&quot;2026-07-11&quot;:15.7},{&quot;2026-07-12&quot;:15.7},{&quot;2026-07-13&quot;:15.76},{&quot;2026-07-14&quot;:15.74},{&quot;2026-07-15&quot;:15.28},{&quot;2026-07-16&quot;:15.32},{&quot;2026-07-17&quot;:15.54},{&quot;2026-07-18&quot;:15.77},{&quot;2026-07-19&quot;:15.75},{&quot;2026-07-20&quot;:15.76},{&quot;2026-07-21&quot;:15.79},{&quot;2026-07-22&quot;:15.89},{&quot;2026-07-23&quot;:15.69},{&quot;2026-07-24&quot;:15.57},{&quot;2026-07-25&quot;:16.19},{&quot;2026-07-26&quot;:16.13},{&quot;2026-07-27&quot;:16.16},{&quot;2026-07-28&quot;:16.16},{&quot;2026-07-29&quot;:16.16},{&quot;2026-07-30&quot;:16.04},{&quot;2026-07-31&quot;:16.48},{&quot;2026-08-01&quot;:16.48},{&quot;2026-08-02&quot;:16.51},{&quot;2026-08-03&quot;:16.37},{&quot;2026-08-04&quot;:16.24},{&quot;2026-08-05&quot;:16.16},{&quot;2026-08-07&quot;:16.1},{&quot;2026-08-08&quot;:16.09},{&quot;2026-08-09&quot;:15.93},{&quot;2026-08-10&quot;:15.79},{&quot;2026-08-11&quot;:15.67},{&quot;2026-08-12&quot;:15.89},{&quot;2026-08-13&quot;:15.75},{&quot;2026-08-14&quot;:15.72},{&quot;2026-08-15&quot;:15.76},{&quot;2026-08-16&quot;:16.12},{&quot;2026-08-17&quot;:16.12},{&quot;2026-08-18&quot;:16.12},{&quot;2026-08-19&quot;:16.54},{&quot;2026-08-20&quot;:16.24},{&quot;2026-08-21&quot;:15.95},{&quot;2026-08-22&quot;:15.95},{&quot;2026-08-23&quot;:15.84},{&quot;2026-08-24&quot;:15.58},{&quot;2026-08-25&quot;:15.26},{&quot;2026-08-26&quot;:15.26},{&quot;2026-08-27&quot;:15.34},{&quot;2026-08-28&quot;:15.46},{&quot;2026-08-29&quot;:15.46},{&quot;2026-08-30&quot;:16.32},{&quot;2026-08-31&quot;:16.36},{&quot;2026-09-01&quot;:16.3},{&quot;2026-09-02&quot;:16.49},{&quot;2026-09-03&quot;:16.76},{&quot;2026-09-04&quot;:16.78},{&quot;2026-09-05&quot;:16.87},{&quot;2026-09-06&quot;:16.91},{&quot;2026-09-07&quot;:16.59},{&quot;2026-09-08&quot;:16.88},{&quot;2026-09-09&quot;:16.93},{&quot;2026-09-10&quot;:16.58},{&quot;2026-09-11&quot;:16.69}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Lord Windgrace" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/1/213d6fb8-5624-4804-b263-51f339482754.jpg?1783934329" />

        <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">
            Lord Windgrace
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><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="Lord Windgrace" src="https://cards.scryfall.io/large/front/2/1/213d6fb8-5624-4804-b263-51f339482754.jpg?1783934329" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:13.73},{&quot;2026-06-14&quot;:13.73},{&quot;2026-06-15&quot;:13.52},{&quot;2026-06-16&quot;:13.22},{&quot;2026-06-17&quot;:13.22},{&quot;2026-06-18&quot;:13.22},{&quot;2026-06-19&quot;:13.03},{&quot;2026-06-20&quot;:13.09},{&quot;2026-06-21&quot;:13.09},{&quot;2026-06-22&quot;:13.09},{&quot;2026-06-23&quot;:13.09},{&quot;2026-06-24&quot;:13.09},{&quot;2026-06-25&quot;:13.32},{&quot;2026-06-26&quot;:13.32},{&quot;2026-06-27&quot;:13.32},{&quot;2026-06-28&quot;:13.32},{&quot;2026-06-29&quot;:13.34},{&quot;2026-06-30&quot;:13.34},{&quot;2026-07-01&quot;:13.34},{&quot;2026-07-02&quot;:13.34},{&quot;2026-07-03&quot;:12.85},{&quot;2026-07-04&quot;:13.25},{&quot;2026-07-05&quot;:13.25},{&quot;2026-07-06&quot;:11.57},{&quot;2026-07-07&quot;:11.57},{&quot;2026-07-08&quot;:11.57},{&quot;2026-07-09&quot;:11.57},{&quot;2026-07-10&quot;:11.48},{&quot;2026-07-11&quot;:11.35},{&quot;2026-07-12&quot;:11.35},{&quot;2026-07-13&quot;:11.35},{&quot;2026-07-14&quot;:11.35},{&quot;2026-07-15&quot;:11.51},{&quot;2026-07-16&quot;:11.73},{&quot;2026-07-17&quot;:11.73},{&quot;2026-07-18&quot;:11.73},{&quot;2026-07-19&quot;:11.49},{&quot;2026-07-20&quot;:11.49},{&quot;2026-07-21&quot;:11.48},{&quot;2026-07-22&quot;:11.37},{&quot;2026-07-23&quot;:11.32},{&quot;2026-07-24&quot;:11.32},{&quot;2026-07-25&quot;:11.43},{&quot;2026-07-26&quot;:11.58},{&quot;2026-07-27&quot;:11.64},{&quot;2026-07-28&quot;:11.75},{&quot;2026-07-29&quot;:11.56},{&quot;2026-07-30&quot;:12.15},{&quot;2026-07-31&quot;:12.21},{&quot;2026-08-01&quot;:12.31},{&quot;2026-08-02&quot;:12.31},{&quot;2026-08-03&quot;:13.27},{&quot;2026-08-04&quot;:13.31},{&quot;2026-08-05&quot;:13.31},{&quot;2026-08-07&quot;:13.1},{&quot;2026-08-08&quot;:13.81},{&quot;2026-08-09&quot;:13.84},{&quot;2026-08-10&quot;:14.16},{&quot;2026-08-11&quot;:14.16},{&quot;2026-08-12&quot;:14.16},{&quot;2026-08-13&quot;:14.14},{&quot;2026-08-14&quot;:14.14},{&quot;2026-08-15&quot;:15.17},{&quot;2026-08-16&quot;:15.21},{&quot;2026-08-17&quot;:15.25},{&quot;2026-08-18&quot;:15.19},{&quot;2026-08-19&quot;:15.02},{&quot;2026-08-20&quot;:15.08},{&quot;2026-08-21&quot;:15.08},{&quot;2026-08-22&quot;:15.08},{&quot;2026-08-23&quot;:15.08},{&quot;2026-08-24&quot;:15.26},{&quot;2026-08-25&quot;:15.26},{&quot;2026-08-26&quot;:15.26},{&quot;2026-08-27&quot;:15.48},{&quot;2026-08-28&quot;:15.34},{&quot;2026-08-29&quot;:15.34},{&quot;2026-08-30&quot;:15.41},{&quot;2026-08-31&quot;:15.5},{&quot;2026-09-01&quot;:15.36},{&quot;2026-09-02&quot;:15.6},{&quot;2026-09-03&quot;:15.6},{&quot;2026-09-04&quot;:15.6},{&quot;2026-09-05&quot;:15.6},{&quot;2026-09-06&quot;:15.72},{&quot;2026-09-07&quot;:15.72},{&quot;2026-09-08&quot;:16.28},{&quot;2026-09-09&quot;:16.28},{&quot;2026-09-10&quot;:16.28},{&quot;2026-09-11&quot;:15.39}],&quot;normal&quot;:[]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Azusa, Lost but Seeking" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/1/2184e61d-6f25-425a-b914-b7d6ecd002c2.jpg?1783915499" />

        <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">
            Azusa, Lost but Seeking
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Legendary Creature — Human Monk</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="Azusa, Lost but Seeking" src="https://cards.scryfall.io/large/front/2/1/2184e61d-6f25-425a-b914-b7d6ecd002c2.jpg?1783915499" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:14.19},{&quot;2026-06-14&quot;:14.19},{&quot;2026-06-15&quot;:14.19},{&quot;2026-06-16&quot;:14.23},{&quot;2026-06-17&quot;:14.19},{&quot;2026-06-18&quot;:14.3},{&quot;2026-06-19&quot;:14.3},{&quot;2026-06-20&quot;:14.3},{&quot;2026-06-21&quot;:14.3},{&quot;2026-06-22&quot;:14.3},{&quot;2026-06-23&quot;:14.05},{&quot;2026-06-24&quot;:14.05},{&quot;2026-06-25&quot;:14.05},{&quot;2026-06-26&quot;:14.05},{&quot;2026-06-27&quot;:14.05},{&quot;2026-06-28&quot;:14.05},{&quot;2026-06-29&quot;:14.15},{&quot;2026-06-30&quot;:14.15},{&quot;2026-07-01&quot;:14.15},{&quot;2026-07-02&quot;:14.15},{&quot;2026-07-03&quot;:14.27},{&quot;2026-07-04&quot;:14.5},{&quot;2026-07-05&quot;:14.27},{&quot;2026-07-06&quot;:14.23},{&quot;2026-07-07&quot;:14.23},{&quot;2026-07-08&quot;:14.23},{&quot;2026-07-09&quot;:14.23},{&quot;2026-07-10&quot;:14.01},{&quot;2026-07-11&quot;:14.01},{&quot;2026-07-12&quot;:13.88},{&quot;2026-07-13&quot;:13.88},{&quot;2026-07-14&quot;:13.88},{&quot;2026-07-15&quot;:13.82},{&quot;2026-07-16&quot;:13.9},{&quot;2026-07-17&quot;:14.44},{&quot;2026-07-18&quot;:14.4},{&quot;2026-07-19&quot;:14.4},{&quot;2026-07-20&quot;:14.44},{&quot;2026-07-21&quot;:14.44},{&quot;2026-07-22&quot;:14.44},{&quot;2026-07-23&quot;:14.5},{&quot;2026-07-24&quot;:14.36},{&quot;2026-07-25&quot;:14.4},{&quot;2026-07-26&quot;:14.4},{&quot;2026-07-27&quot;:14.38},{&quot;2026-07-28&quot;:14.46},{&quot;2026-07-29&quot;:14.46},{&quot;2026-07-30&quot;:14.41},{&quot;2026-07-31&quot;:14.48},{&quot;2026-08-01&quot;:14.48},{&quot;2026-08-02&quot;:14.48},{&quot;2026-08-03&quot;:14.48},{&quot;2026-08-04&quot;:14.48},{&quot;2026-08-05&quot;:14.48},{&quot;2026-08-07&quot;:14.68},{&quot;2026-08-08&quot;:14.68},{&quot;2026-08-09&quot;:14.68},{&quot;2026-08-10&quot;:14.94},{&quot;2026-08-11&quot;:14.99},{&quot;2026-08-12&quot;:15.19},{&quot;2026-08-13&quot;:15.19},{&quot;2026-08-14&quot;:15.19},{&quot;2026-08-15&quot;:15.19},{&quot;2026-08-16&quot;:15.19},{&quot;2026-08-17&quot;:14.56},{&quot;2026-08-18&quot;:14.57},{&quot;2026-08-19&quot;:14.57},{&quot;2026-08-20&quot;:14.57},{&quot;2026-08-21&quot;:14.61},{&quot;2026-08-22&quot;:14.64},{&quot;2026-08-23&quot;:14.63},{&quot;2026-08-24&quot;:14.63},{&quot;2026-08-25&quot;:14.63},{&quot;2026-08-26&quot;:14.8},{&quot;2026-08-27&quot;:14.8},{&quot;2026-08-28&quot;:14.8},{&quot;2026-08-29&quot;:14.8},{&quot;2026-08-30&quot;:14.8},{&quot;2026-08-31&quot;:14.8},{&quot;2026-09-01&quot;:14.8},{&quot;2026-09-02&quot;:14.79},{&quot;2026-09-03&quot;:14.75},{&quot;2026-09-04&quot;:14.75},{&quot;2026-09-05&quot;:14.78},{&quot;2026-09-06&quot;:14.72},{&quot;2026-09-07&quot;:14.72},{&quot;2026-09-08&quot;:14.74},{&quot;2026-09-09&quot;:14.74},{&quot;2026-09-10&quot;:14.74},{&quot;2026-09-11&quot;:14.7}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:14.19},{&quot;2026-06-14&quot;:14.19},{&quot;2026-06-15&quot;:14.19},{&quot;2026-06-16&quot;:14.14},{&quot;2026-06-17&quot;:14.22},{&quot;2026-06-18&quot;:14.22},{&quot;2026-06-19&quot;:14.17},{&quot;2026-06-20&quot;:14.17},{&quot;2026-06-21&quot;:14.06},{&quot;2026-06-22&quot;:13.82},{&quot;2026-06-23&quot;:13.8},{&quot;2026-06-24&quot;:13.8},{&quot;2026-06-25&quot;:13.8},{&quot;2026-06-26&quot;:13.91},{&quot;2026-06-27&quot;:14.02},{&quot;2026-06-28&quot;:14.1},{&quot;2026-06-29&quot;:14.1},{&quot;2026-06-30&quot;:14.1},{&quot;2026-07-01&quot;:14.11},{&quot;2026-07-02&quot;:14.19},{&quot;2026-07-03&quot;:14.19},{&quot;2026-07-04&quot;:14.06},{&quot;2026-07-05&quot;:14.0},{&quot;2026-07-06&quot;:14.0},{&quot;2026-07-07&quot;:14.0},{&quot;2026-07-08&quot;:13.9},{&quot;2026-07-09&quot;:13.78},{&quot;2026-07-10&quot;:13.66},{&quot;2026-07-11&quot;:13.66},{&quot;2026-07-12&quot;:13.66},{&quot;2026-07-13&quot;:13.66},{&quot;2026-07-14&quot;:13.66},{&quot;2026-07-15&quot;:13.66},{&quot;2026-07-16&quot;:13.72},{&quot;2026-07-17&quot;:13.72},{&quot;2026-07-18&quot;:13.98},{&quot;2026-07-19&quot;:13.99},{&quot;2026-07-20&quot;:14.06},{&quot;2026-07-21&quot;:14.06},{&quot;2026-07-22&quot;:13.97},{&quot;2026-07-23&quot;:13.97},{&quot;2026-07-24&quot;:13.99},{&quot;2026-07-25&quot;:13.97},{&quot;2026-07-26&quot;:13.79},{&quot;2026-07-27&quot;:13.71},{&quot;2026-07-28&quot;:13.65},{&quot;2026-07-29&quot;:13.65},{&quot;2026-07-30&quot;:13.65},{&quot;2026-07-31&quot;:13.84},{&quot;2026-08-01&quot;:13.84},{&quot;2026-08-02&quot;:13.68},{&quot;2026-08-03&quot;:13.58},{&quot;2026-08-04&quot;:13.58},{&quot;2026-08-05&quot;:13.58},{&quot;2026-08-07&quot;:13.58},{&quot;2026-08-08&quot;:13.52},{&quot;2026-08-09&quot;:13.28},{&quot;2026-08-10&quot;:13.28},{&quot;2026-08-11&quot;:13.19},{&quot;2026-08-12&quot;:12.93},{&quot;2026-08-13&quot;:12.81},{&quot;2026-08-14&quot;:12.81},{&quot;2026-08-15&quot;:12.81},{&quot;2026-08-16&quot;:12.66},{&quot;2026-08-17&quot;:12.52},{&quot;2026-08-18&quot;:12.66},{&quot;2026-08-19&quot;:12.6},{&quot;2026-08-20&quot;:12.52},{&quot;2026-08-21&quot;:12.3},{&quot;2026-08-22&quot;:12.38},{&quot;2026-08-23&quot;:12.36},{&quot;2026-08-24&quot;:12.58},{&quot;2026-08-25&quot;:12.41},{&quot;2026-08-26&quot;:12.41},{&quot;2026-08-27&quot;:12.52},{&quot;2026-08-28&quot;:12.52},{&quot;2026-08-29&quot;:12.52},{&quot;2026-08-30&quot;:12.43},{&quot;2026-08-31&quot;:12.47},{&quot;2026-09-01&quot;:12.56},{&quot;2026-09-02&quot;:12.56},{&quot;2026-09-03&quot;:12.5},{&quot;2026-09-04&quot;:12.35},{&quot;2026-09-05&quot;:12.54},{&quot;2026-09-06&quot;:12.6},{&quot;2026-09-07&quot;:12.77},{&quot;2026-09-08&quot;:12.78},{&quot;2026-09-09&quot;:12.77},{&quot;2026-09-10&quot;:12.73},{&quot;2026-09-11&quot;:12.81}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="21075"
  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-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">
            Wrenn and Six
        </span>


      </div>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Wrenn and Six" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/6/169fcff7-58f2-420b-a5f1-642ad38709b3.jpg?1783921778" />

        <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">
            Wrenn and Six
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Wrenn and Six" src="https://cards.scryfall.io/large/front/1/6/169fcff7-58f2-420b-a5f1-642ad38709b3.jpg?1783921778" />
    </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.03
              </span>

            </div>
          </div>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:17.12},{&quot;2026-06-14&quot;:17.12},{&quot;2026-06-15&quot;:17.12},{&quot;2026-06-16&quot;:17.18},{&quot;2026-06-17&quot;:17.18},{&quot;2026-06-18&quot;:16.87},{&quot;2026-06-19&quot;:16.87},{&quot;2026-06-20&quot;:16.87},{&quot;2026-06-21&quot;:16.87},{&quot;2026-06-22&quot;:16.87},{&quot;2026-06-23&quot;:16.75},{&quot;2026-06-24&quot;:16.75},{&quot;2026-06-25&quot;:16.75},{&quot;2026-06-26&quot;:16.75},{&quot;2026-06-27&quot;:16.46},{&quot;2026-06-28&quot;:16.28},{&quot;2026-06-29&quot;:16.28},{&quot;2026-06-30&quot;:16.28},{&quot;2026-07-01&quot;:16.28},{&quot;2026-07-02&quot;:16.28},{&quot;2026-07-03&quot;:16.28},{&quot;2026-07-04&quot;:16.28},{&quot;2026-07-05&quot;:16.13},{&quot;2026-07-06&quot;:16.13},{&quot;2026-07-07&quot;:16.13},{&quot;2026-07-08&quot;:16.13},{&quot;2026-07-09&quot;:16.13},{&quot;2026-07-10&quot;:16.13},{&quot;2026-07-11&quot;:16.24},{&quot;2026-07-12&quot;:16.24},{&quot;2026-07-13&quot;:16.24},{&quot;2026-07-14&quot;:16.24},{&quot;2026-07-15&quot;:16.13},{&quot;2026-07-16&quot;:16.13},{&quot;2026-07-17&quot;:16.13},{&quot;2026-07-18&quot;:16.13},{&quot;2026-07-19&quot;:16.13},{&quot;2026-07-20&quot;:16.03},{&quot;2026-07-21&quot;:15.87},{&quot;2026-07-22&quot;:15.87},{&quot;2026-07-23&quot;:15.87},{&quot;2026-07-24&quot;:15.87},{&quot;2026-07-25&quot;:15.87},{&quot;2026-07-26&quot;:15.85},{&quot;2026-07-27&quot;:15.85},{&quot;2026-07-28&quot;:15.85},{&quot;2026-07-29&quot;:15.85},{&quot;2026-07-30&quot;:15.85},{&quot;2026-07-31&quot;:15.85},{&quot;2026-08-01&quot;:15.85},{&quot;2026-08-02&quot;:15.92},{&quot;2026-08-03&quot;:15.99},{&quot;2026-08-04&quot;:15.99},{&quot;2026-08-05&quot;:15.99},{&quot;2026-08-07&quot;:15.99},{&quot;2026-08-08&quot;:15.99},{&quot;2026-08-09&quot;:15.99},{&quot;2026-08-10&quot;:15.84},{&quot;2026-08-11&quot;:15.84},{&quot;2026-08-12&quot;:15.84},{&quot;2026-08-13&quot;:15.72},{&quot;2026-08-14&quot;:15.72},{&quot;2026-08-15&quot;:15.72},{&quot;2026-08-16&quot;:15.72},{&quot;2026-08-17&quot;:15.72},{&quot;2026-08-18&quot;:15.6},{&quot;2026-08-19&quot;:15.6},{&quot;2026-08-20&quot;:15.55},{&quot;2026-08-21&quot;:15.55},{&quot;2026-08-22&quot;:15.55},{&quot;2026-08-23&quot;:15.55},{&quot;2026-08-24&quot;:15.55},{&quot;2026-08-25&quot;:15.55},{&quot;2026-08-26&quot;:15.55},{&quot;2026-08-27&quot;:15.55},{&quot;2026-08-28&quot;:15.55},{&quot;2026-08-29&quot;:15.55},{&quot;2026-08-30&quot;:15.48},{&quot;2026-08-31&quot;:15.48},{&quot;2026-09-01&quot;:15.35},{&quot;2026-09-02&quot;:15.19},{&quot;2026-09-03&quot;:15.19},{&quot;2026-09-04&quot;:15.19},{&quot;2026-09-05&quot;:15.05},{&quot;2026-09-06&quot;:15.05},{&quot;2026-09-07&quot;:15.05},{&quot;2026-09-08&quot;:14.93},{&quot;2026-09-09&quot;:14.93},{&quot;2026-09-10&quot;:14.93},{&quot;2026-09-11&quot;:14.93}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:12.2},{&quot;2026-06-14&quot;:12.22},{&quot;2026-06-15&quot;:12.22},{&quot;2026-06-16&quot;:12.22},{&quot;2026-06-17&quot;:12.15},{&quot;2026-06-18&quot;:12.15},{&quot;2026-06-19&quot;:12.05},{&quot;2026-06-20&quot;:12.05},{&quot;2026-06-21&quot;:12.05},{&quot;2026-06-22&quot;:12.05},{&quot;2026-06-23&quot;:12.05},{&quot;2026-06-24&quot;:12.05},{&quot;2026-06-25&quot;:12.18},{&quot;2026-06-26&quot;:12.11},{&quot;2026-06-27&quot;:12.11},{&quot;2026-06-28&quot;:12.11},{&quot;2026-06-29&quot;:12.03},{&quot;2026-06-30&quot;:12.12},{&quot;2026-07-01&quot;:12.12},{&quot;2026-07-02&quot;:12.12},{&quot;2026-07-03&quot;:12.12},{&quot;2026-07-04&quot;:12.12},{&quot;2026-07-05&quot;:12.12},{&quot;2026-07-06&quot;:12.12},{&quot;2026-07-07&quot;:12.12},{&quot;2026-07-08&quot;:12.27},{&quot;2026-07-09&quot;:12.28},{&quot;2026-07-10&quot;:12.28},{&quot;2026-07-11&quot;:12.28},{&quot;2026-07-12&quot;:12.25},{&quot;2026-07-13&quot;:12.25},{&quot;2026-07-14&quot;:12.25},{&quot;2026-07-15&quot;:12.2},{&quot;2026-07-16&quot;:12.2},{&quot;2026-07-17&quot;:12.2},{&quot;2026-07-18&quot;:12.2},{&quot;2026-07-19&quot;:12.2},{&quot;2026-07-20&quot;:12.2},{&quot;2026-07-21&quot;:12.13},{&quot;2026-07-22&quot;:12.13},{&quot;2026-07-23&quot;:12.13},{&quot;2026-07-24&quot;:12.13},{&quot;2026-07-25&quot;:12.13},{&quot;2026-07-26&quot;:12.19},{&quot;2026-07-27&quot;:12.19},{&quot;2026-07-28&quot;:12.19},{&quot;2026-07-29&quot;:12.19},{&quot;2026-07-30&quot;:12.19},{&quot;2026-07-31&quot;:12.19},{&quot;2026-08-01&quot;:12.19},{&quot;2026-08-02&quot;:12.19},{&quot;2026-08-03&quot;:12.19},{&quot;2026-08-04&quot;:12.19},{&quot;2026-08-05&quot;:12.22},{&quot;2026-08-07&quot;:12.28},{&quot;2026-08-08&quot;:12.28},{&quot;2026-08-09&quot;:12.28},{&quot;2026-08-10&quot;:12.27},{&quot;2026-08-11&quot;:12.27},{&quot;2026-08-12&quot;:12.22},{&quot;2026-08-13&quot;:12.15},{&quot;2026-08-14&quot;:12.07},{&quot;2026-08-15&quot;:12.11},{&quot;2026-08-16&quot;:12.11},{&quot;2026-08-17&quot;:12.11},{&quot;2026-08-18&quot;:12.11},{&quot;2026-08-19&quot;:12.11},{&quot;2026-08-20&quot;:12.11},{&quot;2026-08-21&quot;:12.11},{&quot;2026-08-22&quot;:12.11},{&quot;2026-08-23&quot;:11.99},{&quot;2026-08-24&quot;:11.99},{&quot;2026-08-25&quot;:11.99},{&quot;2026-08-26&quot;:11.99},{&quot;2026-08-27&quot;:12.03},{&quot;2026-08-28&quot;:12.01},{&quot;2026-08-29&quot;:12.01},{&quot;2026-08-30&quot;:12.01},{&quot;2026-08-31&quot;:12.01},{&quot;2026-09-01&quot;:12.01},{&quot;2026-09-02&quot;:12.01},{&quot;2026-09-03&quot;:12.01},{&quot;2026-09-04&quot;:12.01},{&quot;2026-09-05&quot;:12.01},{&quot;2026-09-06&quot;:12.01},{&quot;2026-09-07&quot;:12.01},{&quot;2026-09-08&quot;:12.01},{&quot;2026-09-09&quot;:12.01},{&quot;2026-09-10&quot;:12.01},{&quot;2026-09-11&quot;:12.03}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $9.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="Blood Crypt" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/6/d/6da63cc5-4624-4491-abd9-9b600c3fefe2.jpg?1782683915" />

        <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">
            Blood Crypt
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Land — Swamp 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="Blood Crypt" src="https://cards.scryfall.io/large/front/6/d/6da63cc5-4624-4491-abd9-9b600c3fefe2.jpg?1782683915" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-11&quot;:10.19},{&quot;2026-06-12&quot;:10.25},{&quot;2026-06-13&quot;:10.25},{&quot;2026-06-14&quot;:10.14},{&quot;2026-06-15&quot;:10.15},{&quot;2026-06-16&quot;:10.2},{&quot;2026-06-17&quot;:10.2},{&quot;2026-06-18&quot;:10.2},{&quot;2026-06-19&quot;:10.2},{&quot;2026-06-20&quot;:10.2},{&quot;2026-06-21&quot;:10.22},{&quot;2026-06-22&quot;:10.22},{&quot;2026-06-23&quot;:10.44},{&quot;2026-06-24&quot;:10.35},{&quot;2026-06-25&quot;:10.35},{&quot;2026-06-26&quot;:10.36},{&quot;2026-06-27&quot;:10.67},{&quot;2026-06-28&quot;:10.76},{&quot;2026-06-29&quot;:10.78},{&quot;2026-06-30&quot;:10.79},{&quot;2026-07-01&quot;:10.83},{&quot;2026-07-02&quot;:10.83},{&quot;2026-07-03&quot;:10.91},{&quot;2026-07-04&quot;:10.6},{&quot;2026-07-05&quot;:10.55},{&quot;2026-07-06&quot;:10.75},{&quot;2026-07-07&quot;:10.36},{&quot;2026-07-08&quot;:10.21},{&quot;2026-07-09&quot;:10.03},{&quot;2026-07-10&quot;:10.19},{&quot;2026-07-11&quot;:10.01},{&quot;2026-07-12&quot;:9.85},{&quot;2026-07-13&quot;:9.92},{&quot;2026-07-14&quot;:9.89},{&quot;2026-07-15&quot;:9.86},{&quot;2026-07-16&quot;:9.86},{&quot;2026-07-17&quot;:9.67},{&quot;2026-07-18&quot;:9.67},{&quot;2026-07-19&quot;:9.65},{&quot;2026-07-20&quot;:9.65},{&quot;2026-07-21&quot;:9.65},{&quot;2026-07-23&quot;:9.41},{&quot;2026-07-25&quot;:9.47},{&quot;2026-07-26&quot;:9.33},{&quot;2026-07-27&quot;:9.32},{&quot;2026-07-28&quot;:9.29},{&quot;2026-07-29&quot;:9.39},{&quot;2026-07-30&quot;:9.39},{&quot;2026-07-31&quot;:9.42},{&quot;2026-08-01&quot;:9.44},{&quot;2026-08-02&quot;:9.4},{&quot;2026-08-03&quot;:9.5},{&quot;2026-08-04&quot;:9.36},{&quot;2026-08-05&quot;:9.34},{&quot;2026-08-07&quot;:9.04},{&quot;2026-08-08&quot;:9.06},{&quot;2026-08-09&quot;:8.94},{&quot;2026-08-10&quot;:8.94},{&quot;2026-08-11&quot;:8.92},{&quot;2026-08-12&quot;:8.98},{&quot;2026-08-13&quot;:9.22},{&quot;2026-08-14&quot;:9.29},{&quot;2026-08-15&quot;:9.34},{&quot;2026-08-16&quot;:9.48},{&quot;2026-08-17&quot;:9.43},{&quot;2026-08-18&quot;:9.44},{&quot;2026-08-19&quot;:9.54},{&quot;2026-08-20&quot;:9.54},{&quot;2026-08-21&quot;:9.6},{&quot;2026-08-22&quot;:9.52},{&quot;2026-08-23&quot;:9.36},{&quot;2026-08-24&quot;:9.29},{&quot;2026-08-25&quot;:9.3},{&quot;2026-08-26&quot;:9.29},{&quot;2026-08-27&quot;:9.29},{&quot;2026-08-28&quot;:9.3},{&quot;2026-08-29&quot;:9.3},{&quot;2026-08-30&quot;:9.4},{&quot;2026-08-31&quot;:9.67},{&quot;2026-09-01&quot;:9.67},{&quot;2026-09-02&quot;:9.53},{&quot;2026-09-03&quot;:9.56},{&quot;2026-09-04&quot;:9.56},{&quot;2026-09-05&quot;:9.5},{&quot;2026-09-06&quot;:9.55},{&quot;2026-09-07&quot;:9.55},{&quot;2026-09-08&quot;:9.55},{&quot;2026-09-09&quot;:9.49},{&quot;2026-09-10&quot;:9.49},{&quot;2026-09-11&quot;:9.49}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:9.98},{&quot;2026-06-12&quot;:10.02},{&quot;2026-06-13&quot;:9.96},{&quot;2026-06-14&quot;:9.82},{&quot;2026-06-15&quot;:9.96},{&quot;2026-06-16&quot;:9.9},{&quot;2026-06-17&quot;:9.95},{&quot;2026-06-18&quot;:9.9},{&quot;2026-06-19&quot;:9.69},{&quot;2026-06-20&quot;:9.55},{&quot;2026-06-21&quot;:9.62},{&quot;2026-06-22&quot;:9.75},{&quot;2026-06-23&quot;:9.47},{&quot;2026-06-24&quot;:9.45},{&quot;2026-06-25&quot;:9.71},{&quot;2026-06-26&quot;:9.84},{&quot;2026-06-27&quot;:9.71},{&quot;2026-06-28&quot;:9.69},{&quot;2026-06-29&quot;:9.68},{&quot;2026-06-30&quot;:9.57},{&quot;2026-07-01&quot;:9.83},{&quot;2026-07-02&quot;:9.67},{&quot;2026-07-03&quot;:9.28},{&quot;2026-07-04&quot;:9.15},{&quot;2026-07-05&quot;:9.28},{&quot;2026-07-06&quot;:9.67},{&quot;2026-07-07&quot;:9.31},{&quot;2026-07-08&quot;:9.71},{&quot;2026-07-09&quot;:9.38},{&quot;2026-07-10&quot;:8.84},{&quot;2026-07-11&quot;:9.03},{&quot;2026-07-12&quot;:9.17},{&quot;2026-07-13&quot;:9.49},{&quot;2026-07-14&quot;:9.52},{&quot;2026-07-15&quot;:9.52},{&quot;2026-07-16&quot;:9.87},{&quot;2026-07-17&quot;:10.03},{&quot;2026-07-18&quot;:9.85},{&quot;2026-07-19&quot;:9.48},{&quot;2026-07-20&quot;:9.1},{&quot;2026-07-21&quot;:8.72},{&quot;2026-07-23&quot;:9.09},{&quot;2026-07-25&quot;:9.17},{&quot;2026-07-26&quot;:9.17},{&quot;2026-07-27&quot;:9.29},{&quot;2026-07-28&quot;:9.43},{&quot;2026-07-29&quot;:9.54},{&quot;2026-07-30&quot;:9.08},{&quot;2026-07-31&quot;:8.76},{&quot;2026-08-01&quot;:8.85},{&quot;2026-08-02&quot;:8.8},{&quot;2026-08-03&quot;:8.5},{&quot;2026-08-04&quot;:8.61},{&quot;2026-08-05&quot;:8.53},{&quot;2026-08-07&quot;:8.27},{&quot;2026-08-08&quot;:8.29},{&quot;2026-08-09&quot;:8.63},{&quot;2026-08-10&quot;:8.77},{&quot;2026-08-11&quot;:8.8},{&quot;2026-08-12&quot;:8.89},{&quot;2026-08-13&quot;:8.82},{&quot;2026-08-14&quot;:8.69},{&quot;2026-08-15&quot;:8.56},{&quot;2026-08-16&quot;:8.61},{&quot;2026-08-17&quot;:8.95},{&quot;2026-08-18&quot;:8.81},{&quot;2026-08-19&quot;:8.71},{&quot;2026-08-20&quot;:8.71},{&quot;2026-08-21&quot;:8.86},{&quot;2026-08-22&quot;:8.91},{&quot;2026-08-23&quot;:9.2},{&quot;2026-08-24&quot;:9.37},{&quot;2026-08-25&quot;:9.29},{&quot;2026-08-26&quot;:9.22},{&quot;2026-08-27&quot;:10.04},{&quot;2026-08-28&quot;:9.96},{&quot;2026-08-29&quot;:9.96},{&quot;2026-08-30&quot;:9.61},{&quot;2026-08-31&quot;:8.98},{&quot;2026-09-01&quot;:8.98},{&quot;2026-09-02&quot;:8.23},{&quot;2026-09-03&quot;:8.17},{&quot;2026-09-04&quot;:8.64},{&quot;2026-09-05&quot;:9.31},{&quot;2026-09-06&quot;:9.11},{&quot;2026-09-07&quot;:9.25},{&quot;2026-09-08&quot;:9.54},{&quot;2026-09-09&quot;:9.4},{&quot;2026-09-10&quot;:9.41},{&quot;2026-09-11&quot;:9.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="96264"
  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">
              ↓
              15%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $7.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="Stomping Ground" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/f/8/f802db1f-6533-4118-b677-562bfb135904.jpg?1782685389" />

        <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/f/8/f802db1f-6533-4118-b677-562bfb135904.jpg?1782685389" />
    </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.38
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-11&quot;:11.97},{&quot;2026-06-12&quot;:11.97},{&quot;2026-06-13&quot;:11.64},{&quot;2026-06-14&quot;:11.72},{&quot;2026-06-15&quot;:11.81},{&quot;2026-06-16&quot;:11.81},{&quot;2026-06-17&quot;:11.81},{&quot;2026-06-18&quot;:11.81},{&quot;2026-06-19&quot;:11.81},{&quot;2026-06-20&quot;:11.81},{&quot;2026-06-21&quot;:11.81},{&quot;2026-06-22&quot;:11.88},{&quot;2026-06-23&quot;:11.82},{&quot;2026-06-24&quot;:11.83},{&quot;2026-06-25&quot;:11.83},{&quot;2026-06-26&quot;:11.83},{&quot;2026-06-27&quot;:11.91},{&quot;2026-06-28&quot;:11.87},{&quot;2026-06-29&quot;:11.86},{&quot;2026-06-30&quot;:11.73},{&quot;2026-07-01&quot;:11.69},{&quot;2026-07-02&quot;:11.69},{&quot;2026-07-03&quot;:11.56},{&quot;2026-07-04&quot;:11.56},{&quot;2026-07-05&quot;:11.59},{&quot;2026-07-06&quot;:11.52},{&quot;2026-07-07&quot;:11.52},{&quot;2026-07-08&quot;:11.52},{&quot;2026-07-09&quot;:11.48},{&quot;2026-07-10&quot;:11.48},{&quot;2026-07-11&quot;:11.48},{&quot;2026-07-12&quot;:11.48},{&quot;2026-07-13&quot;:11.48},{&quot;2026-07-14&quot;:11.48},{&quot;2026-07-15&quot;:11.44},{&quot;2026-07-16&quot;:11.45},{&quot;2026-07-17&quot;:11.45},{&quot;2026-07-18&quot;:11.5},{&quot;2026-07-19&quot;:11.5},{&quot;2026-07-20&quot;:11.48},{&quot;2026-07-21&quot;:11.57},{&quot;2026-07-23&quot;:11.66},{&quot;2026-07-25&quot;:11.71},{&quot;2026-07-26&quot;:11.75},{&quot;2026-07-27&quot;:11.75},{&quot;2026-07-28&quot;:11.75},{&quot;2026-07-29&quot;:11.75},{&quot;2026-07-30&quot;:11.75},{&quot;2026-07-31&quot;:11.75},{&quot;2026-08-01&quot;:11.75},{&quot;2026-08-02&quot;:11.81},{&quot;2026-08-03&quot;:11.81},{&quot;2026-08-04&quot;:11.81},{&quot;2026-08-05&quot;:11.85},{&quot;2026-08-07&quot;:11.88},{&quot;2026-08-08&quot;:11.88},{&quot;2026-08-09&quot;:11.88},{&quot;2026-08-10&quot;:11.88},{&quot;2026-08-11&quot;:11.88},{&quot;2026-08-12&quot;:11.88},{&quot;2026-08-13&quot;:11.88},{&quot;2026-08-14&quot;:11.87},{&quot;2026-08-15&quot;:11.87},{&quot;2026-08-16&quot;:11.83},{&quot;2026-08-17&quot;:11.83},{&quot;2026-08-18&quot;:11.83},{&quot;2026-08-19&quot;:11.83},{&quot;2026-08-20&quot;:11.83},{&quot;2026-08-21&quot;:11.84},{&quot;2026-08-22&quot;:11.88},{&quot;2026-08-23&quot;:11.88},{&quot;2026-08-24&quot;:11.88},{&quot;2026-08-25&quot;:11.88},{&quot;2026-08-26&quot;:11.88},{&quot;2026-08-27&quot;:11.88},{&quot;2026-08-28&quot;:11.88},{&quot;2026-08-29&quot;:11.88},{&quot;2026-08-30&quot;:11.86},{&quot;2026-08-31&quot;:11.88},{&quot;2026-09-01&quot;:11.88},{&quot;2026-09-02&quot;:11.85},{&quot;2026-09-03&quot;:11.76},{&quot;2026-09-04&quot;:11.76},{&quot;2026-09-05&quot;:11.76},{&quot;2026-09-06&quot;:11.76},{&quot;2026-09-07&quot;:11.76},{&quot;2026-09-08&quot;:11.74},{&quot;2026-09-09&quot;:11.74},{&quot;2026-09-10&quot;:11.74},{&quot;2026-09-11&quot;:11.73}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:10.19},{&quot;2026-06-12&quot;:10.22},{&quot;2026-06-13&quot;:10.11},{&quot;2026-06-14&quot;:9.88},{&quot;2026-06-15&quot;:9.88},{&quot;2026-06-16&quot;:9.75},{&quot;2026-06-17&quot;:9.74},{&quot;2026-06-18&quot;:9.64},{&quot;2026-06-19&quot;:9.62},{&quot;2026-06-20&quot;:9.72},{&quot;2026-06-21&quot;:9.76},{&quot;2026-06-22&quot;:9.77},{&quot;2026-06-23&quot;:9.68},{&quot;2026-06-24&quot;:9.59},{&quot;2026-06-25&quot;:9.56},{&quot;2026-06-26&quot;:9.54},{&quot;2026-06-27&quot;:9.4},{&quot;2026-06-28&quot;:9.35},{&quot;2026-06-29&quot;:9.35},{&quot;2026-06-30&quot;:9.17},{&quot;2026-07-01&quot;:8.82},{&quot;2026-07-02&quot;:8.68},{&quot;2026-07-03&quot;:8.64},{&quot;2026-07-04&quot;:8.64},{&quot;2026-07-05&quot;:8.39},{&quot;2026-07-06&quot;:8.78},{&quot;2026-07-07&quot;:8.73},{&quot;2026-07-08&quot;:8.93},{&quot;2026-07-09&quot;:8.94},{&quot;2026-07-10&quot;:8.96},{&quot;2026-07-11&quot;:9.34},{&quot;2026-07-12&quot;:9.34},{&quot;2026-07-13&quot;:9.18},{&quot;2026-07-14&quot;:9.15},{&quot;2026-07-15&quot;:9.0},{&quot;2026-07-16&quot;:8.94},{&quot;2026-07-17&quot;:8.73},{&quot;2026-07-18&quot;:8.61},{&quot;2026-07-19&quot;:8.5},{&quot;2026-07-20&quot;:8.84},{&quot;2026-07-21&quot;:8.69},{&quot;2026-07-23&quot;:8.97},{&quot;2026-07-25&quot;:9.74},{&quot;2026-07-26&quot;:9.92},{&quot;2026-07-27&quot;:9.82},{&quot;2026-07-28&quot;:9.81},{&quot;2026-07-29&quot;:9.75},{&quot;2026-07-30&quot;:9.77},{&quot;2026-07-31&quot;:9.72},{&quot;2026-08-01&quot;:9.72},{&quot;2026-08-02&quot;:9.34},{&quot;2026-08-03&quot;:9.25},{&quot;2026-08-04&quot;:9.25},{&quot;2026-08-05&quot;:9.35},{&quot;2026-08-07&quot;:9.48},{&quot;2026-08-08&quot;:9.27},{&quot;2026-08-09&quot;:9.16},{&quot;2026-08-10&quot;:8.89},{&quot;2026-08-11&quot;:8.63},{&quot;2026-08-12&quot;:8.67},{&quot;2026-08-13&quot;:8.59},{&quot;2026-08-14&quot;:8.33},{&quot;2026-08-15&quot;:8.1},{&quot;2026-08-16&quot;:8.09},{&quot;2026-08-17&quot;:8.04},{&quot;2026-08-18&quot;:8.48},{&quot;2026-08-19&quot;:8.62},{&quot;2026-08-20&quot;:8.62},{&quot;2026-08-21&quot;:8.54},{&quot;2026-08-22&quot;:8.45},{&quot;2026-08-23&quot;:8.24},{&quot;2026-08-24&quot;:8.34},{&quot;2026-08-25&quot;:8.34},{&quot;2026-08-26&quot;:8.21},{&quot;2026-08-27&quot;:8.24},{&quot;2026-08-28&quot;:8.33},{&quot;2026-08-29&quot;:8.33},{&quot;2026-08-30&quot;:8.57},{&quot;2026-08-31&quot;:8.62},{&quot;2026-09-01&quot;:8.62},{&quot;2026-09-02&quot;:8.63},{&quot;2026-09-03&quot;:8.71},{&quot;2026-09-04&quot;:8.71},{&quot;2026-09-05&quot;:8.64},{&quot;2026-09-06&quot;:8.17},{&quot;2026-09-07&quot;:7.98},{&quot;2026-09-08&quot;:7.91},{&quot;2026-09-09&quot;:7.86},{&quot;2026-09-10&quot;:7.67},{&quot;2026-09-11&quot;:7.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="46648"
  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-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">
            Wrenn and Realmbreaker
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Legendary Planeswalker — Wrenn
      </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">
            $7.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="Wrenn and Realmbreaker" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/7/17269aae-10bc-49ef-b6a7-94e0dd6cf677.jpg?1783916906" />

        <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">
            Wrenn and Realmbreaker
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Legendary Planeswalker — Wrenn</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="Wrenn and Realmbreaker" src="https://cards.scryfall.io/large/front/1/7/17269aae-10bc-49ef-b6a7-94e0dd6cf677.jpg?1783916906" />
    </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.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">
                $7.87
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-08&quot;:9.04},{&quot;2026-06-10&quot;:9.07},{&quot;2026-06-11&quot;:9.07},{&quot;2026-06-12&quot;:9.07},{&quot;2026-06-13&quot;:9.07},{&quot;2026-06-14&quot;:9.04},{&quot;2026-06-15&quot;:9.04},{&quot;2026-06-16&quot;:9.04},{&quot;2026-06-17&quot;:9.04},{&quot;2026-06-18&quot;:9.02},{&quot;2026-06-19&quot;:9.02},{&quot;2026-06-20&quot;:9.02},{&quot;2026-06-21&quot;:9.02},{&quot;2026-06-22&quot;:9.02},{&quot;2026-06-24&quot;:9.02},{&quot;2026-06-25&quot;:9.02},{&quot;2026-06-26&quot;:9.02},{&quot;2026-06-27&quot;:9.02},{&quot;2026-06-28&quot;:9.02},{&quot;2026-06-29&quot;:9.02},{&quot;2026-06-30&quot;:8.93},{&quot;2026-07-01&quot;:8.93},{&quot;2026-07-02&quot;:8.93},{&quot;2026-07-03&quot;:8.93},{&quot;2026-07-04&quot;:8.93},{&quot;2026-07-05&quot;:8.86},{&quot;2026-07-06&quot;:8.86},{&quot;2026-07-07&quot;:8.86},{&quot;2026-07-08&quot;:8.84},{&quot;2026-07-09&quot;:8.89},{&quot;2026-07-10&quot;:8.89},{&quot;2026-07-11&quot;:8.89},{&quot;2026-07-12&quot;:8.89},{&quot;2026-07-13&quot;:8.89},{&quot;2026-07-14&quot;:8.89},{&quot;2026-07-15&quot;:8.89},{&quot;2026-07-16&quot;:8.89},{&quot;2026-07-17&quot;:8.89},{&quot;2026-07-18&quot;:8.88},{&quot;2026-07-19&quot;:8.88},{&quot;2026-07-20&quot;:8.88},{&quot;2026-07-21&quot;:8.88},{&quot;2026-07-23&quot;:8.88},{&quot;2026-07-25&quot;:8.88},{&quot;2026-07-26&quot;:8.88},{&quot;2026-07-27&quot;:8.88},{&quot;2026-07-29&quot;:8.79},{&quot;2026-07-30&quot;:8.74},{&quot;2026-07-31&quot;:8.82},{&quot;2026-08-01&quot;:8.82},{&quot;2026-08-02&quot;:8.81},{&quot;2026-08-03&quot;:8.81},{&quot;2026-08-04&quot;:8.81},{&quot;2026-08-05&quot;:8.81},{&quot;2026-08-07&quot;:8.81},{&quot;2026-08-08&quot;:8.65},{&quot;2026-08-09&quot;:8.65},{&quot;2026-08-10&quot;:8.56},{&quot;2026-08-11&quot;:8.56},{&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.56},{&quot;2026-08-17&quot;:8.56},{&quot;2026-08-18&quot;:8.56},{&quot;2026-08-19&quot;:8.52},{&quot;2026-08-20&quot;:8.52},{&quot;2026-08-21&quot;:8.4},{&quot;2026-08-22&quot;:8.54},{&quot;2026-08-23&quot;:8.54},{&quot;2026-08-24&quot;:8.54},{&quot;2026-08-25&quot;:8.54},{&quot;2026-08-26&quot;:8.54},{&quot;2026-08-27&quot;:8.4},{&quot;2026-08-28&quot;:8.11},{&quot;2026-08-29&quot;:8.11},{&quot;2026-08-30&quot;:8.01},{&quot;2026-08-31&quot;:8.01},{&quot;2026-09-01&quot;:8.01},{&quot;2026-09-02&quot;:7.93},{&quot;2026-09-03&quot;:7.93},{&quot;2026-09-04&quot;:7.93},{&quot;2026-09-05&quot;:7.93},{&quot;2026-09-06&quot;:7.93},{&quot;2026-09-07&quot;:7.87},{&quot;2026-09-08&quot;:7.86},{&quot;2026-09-09&quot;:7.86},{&quot;2026-09-10&quot;:7.87},{&quot;2026-09-11&quot;:7.87}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:6.29},{&quot;2026-06-10&quot;:6.37},{&quot;2026-06-11&quot;:6.41},{&quot;2026-06-12&quot;:6.57},{&quot;2026-06-13&quot;:6.57},{&quot;2026-06-14&quot;:6.57},{&quot;2026-06-15&quot;:6.57},{&quot;2026-06-16&quot;:6.56},{&quot;2026-06-17&quot;:6.56},{&quot;2026-06-18&quot;:6.61},{&quot;2026-06-19&quot;:6.61},{&quot;2026-06-20&quot;:6.61},{&quot;2026-06-21&quot;:6.61},{&quot;2026-06-22&quot;:6.72},{&quot;2026-06-24&quot;:6.79},{&quot;2026-06-25&quot;:6.87},{&quot;2026-06-26&quot;:6.99},{&quot;2026-06-27&quot;:7.0},{&quot;2026-06-28&quot;:7.0},{&quot;2026-06-29&quot;:7.0},{&quot;2026-06-30&quot;:7.0},{&quot;2026-07-01&quot;:6.98},{&quot;2026-07-02&quot;:6.98},{&quot;2026-07-03&quot;:7.11},{&quot;2026-07-04&quot;:7.0},{&quot;2026-07-05&quot;:6.95},{&quot;2026-07-06&quot;:6.95},{&quot;2026-07-07&quot;:6.87},{&quot;2026-07-08&quot;:6.81},{&quot;2026-07-09&quot;:6.71},{&quot;2026-07-10&quot;:6.64},{&quot;2026-07-11&quot;:6.64},{&quot;2026-07-12&quot;:6.64},{&quot;2026-07-13&quot;:6.64},{&quot;2026-07-14&quot;:6.71},{&quot;2026-07-15&quot;:6.72},{&quot;2026-07-16&quot;:6.72},{&quot;2026-07-17&quot;:6.67},{&quot;2026-07-18&quot;:6.61},{&quot;2026-07-19&quot;:6.68},{&quot;2026-07-20&quot;:6.78},{&quot;2026-07-21&quot;:6.72},{&quot;2026-07-23&quot;:6.72},{&quot;2026-07-25&quot;:6.82},{&quot;2026-07-26&quot;:6.84},{&quot;2026-07-27&quot;:6.84},{&quot;2026-07-29&quot;:6.97},{&quot;2026-07-30&quot;:6.97},{&quot;2026-07-31&quot;:7.14},{&quot;2026-08-01&quot;:7.14},{&quot;2026-08-02&quot;:7.14},{&quot;2026-08-03&quot;:7.14},{&quot;2026-08-04&quot;:7.14},{&quot;2026-08-05&quot;:7.14},{&quot;2026-08-07&quot;:7.31},{&quot;2026-08-08&quot;:7.31},{&quot;2026-08-09&quot;:7.31},{&quot;2026-08-10&quot;:7.31},{&quot;2026-08-11&quot;:7.31},{&quot;2026-08-12&quot;:7.24},{&quot;2026-08-13&quot;:7.38},{&quot;2026-08-14&quot;:7.45},{&quot;2026-08-15&quot;:7.45},{&quot;2026-08-16&quot;:7.54},{&quot;2026-08-17&quot;:7.54},{&quot;2026-08-18&quot;:7.54},{&quot;2026-08-19&quot;:7.54},{&quot;2026-08-20&quot;:7.54},{&quot;2026-08-21&quot;:7.54},{&quot;2026-08-22&quot;:7.48},{&quot;2026-08-23&quot;:7.62},{&quot;2026-08-24&quot;:7.62},{&quot;2026-08-25&quot;:7.62},{&quot;2026-08-26&quot;:7.5},{&quot;2026-08-27&quot;:7.5},{&quot;2026-08-28&quot;:7.37},{&quot;2026-08-29&quot;:7.37},{&quot;2026-08-30&quot;:7.37},{&quot;2026-08-31&quot;:7.37},{&quot;2026-09-01&quot;:7.37},{&quot;2026-09-02&quot;:7.31},{&quot;2026-09-03&quot;:7.31},{&quot;2026-09-04&quot;:7.21},{&quot;2026-09-05&quot;:7.16},{&quot;2026-09-06&quot;:7.16},{&quot;2026-09-07&quot;:7.16},{&quot;2026-09-08&quot;:7.16},{&quot;2026-09-09&quot;:7.16},{&quot;2026-09-10&quot;:7.16},{&quot;2026-09-11&quot;:7.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="49415"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mh1 ss-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">
            Nurturing Peatland
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Nurturing Peatland" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/7/2744ac83-a79f-4042-8720-688b5adda382.jpg?1783933066" />

        <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">
            Nurturing Peatland
        </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="Nurturing Peatland" src="https://cards.scryfall.io/large/front/2/7/2744ac83-a79f-4042-8720-688b5adda382.jpg?1783933066" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:11.61},{&quot;2026-06-14&quot;:11.61},{&quot;2026-06-15&quot;:11.61},{&quot;2026-06-16&quot;:11.61},{&quot;2026-06-17&quot;:11.61},{&quot;2026-06-18&quot;:11.61},{&quot;2026-06-19&quot;:11.61},{&quot;2026-06-20&quot;:11.61},{&quot;2026-06-21&quot;:11.61},{&quot;2026-06-22&quot;:11.61},{&quot;2026-06-23&quot;:11.61},{&quot;2026-06-24&quot;:11.61},{&quot;2026-06-25&quot;:11.61},{&quot;2026-06-26&quot;:12.26},{&quot;2026-06-27&quot;:12.26},{&quot;2026-06-28&quot;:12.26},{&quot;2026-06-29&quot;:12.26},{&quot;2026-06-30&quot;:12.26},{&quot;2026-07-01&quot;:12.26},{&quot;2026-07-02&quot;:12.26},{&quot;2026-07-03&quot;:12.26},{&quot;2026-07-04&quot;:12.26},{&quot;2026-07-05&quot;:12.26},{&quot;2026-07-06&quot;:12.26},{&quot;2026-07-07&quot;:12.26},{&quot;2026-07-08&quot;:12.26},{&quot;2026-07-09&quot;:12.26},{&quot;2026-07-10&quot;:12.26},{&quot;2026-07-11&quot;:12.26},{&quot;2026-07-12&quot;:12.26},{&quot;2026-07-13&quot;:12.26},{&quot;2026-07-14&quot;:12.26},{&quot;2026-07-15&quot;:12.26},{&quot;2026-07-16&quot;:12.26},{&quot;2026-07-17&quot;:12.26},{&quot;2026-07-18&quot;:12.26},{&quot;2026-07-19&quot;:12.56},{&quot;2026-07-20&quot;:12.56},{&quot;2026-07-21&quot;:12.56},{&quot;2026-07-22&quot;:12.59},{&quot;2026-07-23&quot;:12.59},{&quot;2026-07-24&quot;:12.59},{&quot;2026-07-25&quot;:12.59},{&quot;2026-07-26&quot;:12.59},{&quot;2026-07-27&quot;:12.59},{&quot;2026-07-28&quot;:12.59},{&quot;2026-07-29&quot;:12.59},{&quot;2026-07-30&quot;:12.76},{&quot;2026-07-31&quot;:12.76},{&quot;2026-08-01&quot;:12.76},{&quot;2026-08-02&quot;:12.76},{&quot;2026-08-03&quot;:12.45},{&quot;2026-08-04&quot;:12.45},{&quot;2026-08-05&quot;:12.45},{&quot;2026-08-07&quot;:12.77},{&quot;2026-08-08&quot;:12.77},{&quot;2026-08-09&quot;:12.77},{&quot;2026-08-10&quot;:12.77},{&quot;2026-08-11&quot;:12.79},{&quot;2026-08-12&quot;:12.79},{&quot;2026-08-13&quot;:12.79},{&quot;2026-08-14&quot;:12.79},{&quot;2026-08-15&quot;:12.93},{&quot;2026-08-16&quot;:12.93},{&quot;2026-08-17&quot;:12.93},{&quot;2026-08-18&quot;:12.93},{&quot;2026-08-19&quot;:12.93},{&quot;2026-08-20&quot;:12.93},{&quot;2026-08-21&quot;:12.93},{&quot;2026-08-22&quot;:12.93},{&quot;2026-08-23&quot;:12.93},{&quot;2026-08-24&quot;:12.93},{&quot;2026-08-25&quot;:12.79},{&quot;2026-08-26&quot;:13.05},{&quot;2026-08-27&quot;:13.05},{&quot;2026-08-28&quot;:13.05},{&quot;2026-08-29&quot;:13.05},{&quot;2026-08-30&quot;:13.05},{&quot;2026-08-31&quot;:13.05},{&quot;2026-09-01&quot;:13.05},{&quot;2026-09-02&quot;:13.05},{&quot;2026-09-03&quot;:13.08},{&quot;2026-09-04&quot;:13.08},{&quot;2026-09-05&quot;:13.08},{&quot;2026-09-06&quot;:13.08},{&quot;2026-09-07&quot;:13.08},{&quot;2026-09-08&quot;:13.08},{&quot;2026-09-09&quot;:13.08},{&quot;2026-09-10&quot;:13.08},{&quot;2026-09-11&quot;:13.08}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:7.21},{&quot;2026-06-14&quot;:7.29},{&quot;2026-06-15&quot;:7.34},{&quot;2026-06-16&quot;:7.38},{&quot;2026-06-17&quot;:7.49},{&quot;2026-06-18&quot;:7.27},{&quot;2026-06-19&quot;:7.1},{&quot;2026-06-20&quot;:7.15},{&quot;2026-06-21&quot;:7.19},{&quot;2026-06-22&quot;:7.01},{&quot;2026-06-23&quot;:6.97},{&quot;2026-06-24&quot;:6.98},{&quot;2026-06-25&quot;:7.05},{&quot;2026-06-26&quot;:7.05},{&quot;2026-06-27&quot;:6.93},{&quot;2026-06-28&quot;:6.97},{&quot;2026-06-29&quot;:6.97},{&quot;2026-06-30&quot;:6.88},{&quot;2026-07-01&quot;:6.95},{&quot;2026-07-02&quot;:7.07},{&quot;2026-07-03&quot;:6.98},{&quot;2026-07-04&quot;:6.83},{&quot;2026-07-05&quot;:6.87},{&quot;2026-07-06&quot;:6.89},{&quot;2026-07-07&quot;:6.88},{&quot;2026-07-08&quot;:6.6},{&quot;2026-07-09&quot;:6.54},{&quot;2026-07-10&quot;:6.5},{&quot;2026-07-11&quot;:6.56},{&quot;2026-07-12&quot;:6.56},{&quot;2026-07-13&quot;:6.62},{&quot;2026-07-14&quot;:6.65},{&quot;2026-07-15&quot;:6.68},{&quot;2026-07-16&quot;:6.64},{&quot;2026-07-17&quot;:6.56},{&quot;2026-07-18&quot;:6.56},{&quot;2026-07-19&quot;:6.49},{&quot;2026-07-20&quot;:6.5},{&quot;2026-07-21&quot;:6.42},{&quot;2026-07-22&quot;:6.36},{&quot;2026-07-23&quot;:6.26},{&quot;2026-07-24&quot;:6.29},{&quot;2026-07-25&quot;:6.3},{&quot;2026-07-26&quot;:6.22},{&quot;2026-07-27&quot;:6.22},{&quot;2026-07-28&quot;:6.27},{&quot;2026-07-29&quot;:6.13},{&quot;2026-07-30&quot;:6.2},{&quot;2026-07-31&quot;:6.59},{&quot;2026-08-01&quot;:6.62},{&quot;2026-08-02&quot;:6.63},{&quot;2026-08-03&quot;:6.62},{&quot;2026-08-04&quot;:6.62},{&quot;2026-08-05&quot;:6.62},{&quot;2026-08-07&quot;:6.7},{&quot;2026-08-08&quot;:6.7},{&quot;2026-08-09&quot;:6.75},{&quot;2026-08-10&quot;:6.62},{&quot;2026-08-11&quot;:6.54},{&quot;2026-08-12&quot;:6.63},{&quot;2026-08-13&quot;:6.74},{&quot;2026-08-14&quot;:6.66},{&quot;2026-08-15&quot;:6.72},{&quot;2026-08-16&quot;:6.45},{&quot;2026-08-17&quot;:6.64},{&quot;2026-08-18&quot;:6.54},{&quot;2026-08-19&quot;:6.52},{&quot;2026-08-20&quot;:6.48},{&quot;2026-08-21&quot;:6.45},{&quot;2026-08-22&quot;:6.79},{&quot;2026-08-23&quot;:6.87},{&quot;2026-08-24&quot;:6.8},{&quot;2026-08-25&quot;:6.8},{&quot;2026-08-26&quot;:6.82},{&quot;2026-08-27&quot;:6.76},{&quot;2026-08-28&quot;:6.75},{&quot;2026-08-29&quot;:6.75},{&quot;2026-08-30&quot;:6.63},{&quot;2026-08-31&quot;:6.6},{&quot;2026-09-01&quot;:6.69},{&quot;2026-09-02&quot;:6.66},{&quot;2026-09-03&quot;:6.59},{&quot;2026-09-04&quot;:6.81},{&quot;2026-09-05&quot;:6.81},{&quot;2026-09-06&quot;:6.89},{&quot;2026-09-07&quot;:6.9},{&quot;2026-09-08&quot;:6.95},{&quot;2026-09-09&quot;:7.04},{&quot;2026-09-10&quot;:6.9},{&quot;2026-09-11&quot;:6.84}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $2.12
          </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/1/4/146b803f-0455-497b-8362-03da2547070d.jpg?1783930059" />

        <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/1/4/146b803f-0455-497b-8362-03da2547070d.jpg?1783930059" />
    </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">
                $2.12
              </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">
                $6.00
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:5.96},{&quot;2026-06-11&quot;:5.96},{&quot;2026-06-12&quot;:5.96},{&quot;2026-06-13&quot;:5.96},{&quot;2026-06-14&quot;:5.96},{&quot;2026-06-15&quot;:5.96},{&quot;2026-06-16&quot;:6.06},{&quot;2026-06-17&quot;:6.06},{&quot;2026-06-18&quot;:6.06},{&quot;2026-06-19&quot;:6.06},{&quot;2026-06-20&quot;:6.06},{&quot;2026-06-21&quot;:5.99},{&quot;2026-06-22&quot;:6.18},{&quot;2026-06-23&quot;:6.36},{&quot;2026-06-24&quot;:6.36},{&quot;2026-06-25&quot;:6.3},{&quot;2026-06-26&quot;:6.3},{&quot;2026-06-27&quot;:6.3},{&quot;2026-06-28&quot;:6.3},{&quot;2026-06-29&quot;:6.3},{&quot;2026-06-30&quot;:6.3},{&quot;2026-07-01&quot;:6.3},{&quot;2026-07-02&quot;:6.3},{&quot;2026-07-03&quot;:6.3},{&quot;2026-07-04&quot;:6.3},{&quot;2026-07-05&quot;:6.3},{&quot;2026-07-06&quot;:6.3},{&quot;2026-07-07&quot;:6.3},{&quot;2026-07-08&quot;:6.3},{&quot;2026-07-09&quot;:6.3},{&quot;2026-07-10&quot;:6.3},{&quot;2026-07-11&quot;:6.3},{&quot;2026-07-12&quot;:6.3},{&quot;2026-07-13&quot;:6.3},{&quot;2026-07-14&quot;:6.3},{&quot;2026-07-15&quot;:6.3},{&quot;2026-07-16&quot;:6.3},{&quot;2026-07-17&quot;:6.3},{&quot;2026-07-18&quot;:6.3},{&quot;2026-07-19&quot;:6.3},{&quot;2026-07-20&quot;:6.27},{&quot;2026-07-21&quot;:6.27},{&quot;2026-07-23&quot;:6.27},{&quot;2026-07-25&quot;:6.29},{&quot;2026-07-26&quot;:6.29},{&quot;2026-07-27&quot;:6.29},{&quot;2026-07-29&quot;:6.31},{&quot;2026-07-30&quot;:6.31},{&quot;2026-07-31&quot;:6.29},{&quot;2026-08-01&quot;:6.29},{&quot;2026-08-02&quot;:6.29},{&quot;2026-08-03&quot;:6.29},{&quot;2026-08-04&quot;:6.29},{&quot;2026-08-05&quot;:6.22},{&quot;2026-08-07&quot;:6.22},{&quot;2026-08-08&quot;:6.17},{&quot;2026-08-09&quot;:6.17},{&quot;2026-08-10&quot;:6.12},{&quot;2026-08-11&quot;:6.12},{&quot;2026-08-12&quot;:6.12},{&quot;2026-08-13&quot;:6.12},{&quot;2026-08-14&quot;:6.12},{&quot;2026-08-15&quot;:6.12},{&quot;2026-08-16&quot;:6.12},{&quot;2026-08-17&quot;:6.12},{&quot;2026-08-18&quot;:6.12},{&quot;2026-08-19&quot;:6.12},{&quot;2026-08-20&quot;:6.12},{&quot;2026-08-21&quot;:6.15},{&quot;2026-08-22&quot;:6.16},{&quot;2026-08-23&quot;:6.16},{&quot;2026-08-24&quot;:6.16},{&quot;2026-08-25&quot;:6.16},{&quot;2026-08-26&quot;:6.16},{&quot;2026-08-27&quot;:6.16},{&quot;2026-08-28&quot;:6.16},{&quot;2026-08-29&quot;:6.16},{&quot;2026-08-30&quot;:6.16},{&quot;2026-08-31&quot;:6.16},{&quot;2026-09-01&quot;:6.16},{&quot;2026-09-02&quot;:6.16},{&quot;2026-09-03&quot;:6.16},{&quot;2026-09-04&quot;:6.16},{&quot;2026-09-05&quot;:6.21},{&quot;2026-09-06&quot;:6.0},{&quot;2026-09-07&quot;:6.0},{&quot;2026-09-08&quot;:6.0},{&quot;2026-09-09&quot;:6.0},{&quot;2026-09-10&quot;:6.0},{&quot;2026-09-11&quot;:6.0}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:2.46},{&quot;2026-06-11&quot;:2.46},{&quot;2026-06-12&quot;:2.46},{&quot;2026-06-13&quot;:2.46},{&quot;2026-06-14&quot;:2.46},{&quot;2026-06-15&quot;:2.46},{&quot;2026-06-16&quot;:2.43},{&quot;2026-06-17&quot;:2.43},{&quot;2026-06-18&quot;:2.43},{&quot;2026-06-19&quot;:2.43},{&quot;2026-06-20&quot;:2.38},{&quot;2026-06-21&quot;:2.35},{&quot;2026-06-22&quot;:2.35},{&quot;2026-06-23&quot;:2.35},{&quot;2026-06-24&quot;:2.35},{&quot;2026-06-25&quot;:2.35},{&quot;2026-06-26&quot;:2.35},{&quot;2026-06-27&quot;:2.35},{&quot;2026-06-28&quot;:2.35},{&quot;2026-06-29&quot;:2.32},{&quot;2026-06-30&quot;:2.3},{&quot;2026-07-01&quot;:2.3},{&quot;2026-07-02&quot;:2.28},{&quot;2026-07-03&quot;:2.29},{&quot;2026-07-04&quot;:2.29},{&quot;2026-07-05&quot;:2.29},{&quot;2026-07-06&quot;:2.34},{&quot;2026-07-07&quot;:2.24},{&quot;2026-07-08&quot;:2.25},{&quot;2026-07-09&quot;:2.28},{&quot;2026-07-10&quot;:2.29},{&quot;2026-07-11&quot;:2.26},{&quot;2026-07-12&quot;:2.25},{&quot;2026-07-13&quot;:2.21},{&quot;2026-07-14&quot;:2.21},{&quot;2026-07-15&quot;:2.21},{&quot;2026-07-16&quot;:2.15},{&quot;2026-07-17&quot;:2.15},{&quot;2026-07-18&quot;:2.17},{&quot;2026-07-19&quot;:2.13},{&quot;2026-07-20&quot;:2.07},{&quot;2026-07-21&quot;:2.07},{&quot;2026-07-23&quot;:2.07},{&quot;2026-07-25&quot;:2.07},{&quot;2026-07-26&quot;:2.05},{&quot;2026-07-27&quot;:2.07},{&quot;2026-07-29&quot;:2.14},{&quot;2026-07-30&quot;:2.11},{&quot;2026-07-31&quot;:2.15},{&quot;2026-08-01&quot;:2.16},{&quot;2026-08-02&quot;:2.12},{&quot;2026-08-03&quot;:2.12},{&quot;2026-08-04&quot;:2.06},{&quot;2026-08-05&quot;:2.02},{&quot;2026-08-07&quot;:1.99},{&quot;2026-08-08&quot;:1.99},{&quot;2026-08-09&quot;:1.97},{&quot;2026-08-10&quot;:1.97},{&quot;2026-08-11&quot;:1.98},{&quot;2026-08-12&quot;:1.98},{&quot;2026-08-13&quot;:2.04},{&quot;2026-08-14&quot;:1.99},{&quot;2026-08-15&quot;:1.99},{&quot;2026-08-16&quot;:1.97},{&quot;2026-08-17&quot;:1.98},{&quot;2026-08-18&quot;:1.98},{&quot;2026-08-19&quot;:1.9},{&quot;2026-08-20&quot;:1.9},{&quot;2026-08-21&quot;:1.9},{&quot;2026-08-22&quot;:1.9},{&quot;2026-08-23&quot;:1.88},{&quot;2026-08-24&quot;:1.92},{&quot;2026-08-25&quot;:1.92},{&quot;2026-08-26&quot;:1.92},{&quot;2026-08-27&quot;:1.94},{&quot;2026-08-28&quot;:2.05},{&quot;2026-08-29&quot;:2.05},{&quot;2026-08-30&quot;:2.11},{&quot;2026-08-31&quot;:2.08},{&quot;2026-09-01&quot;:2.08},{&quot;2026-09-02&quot;:2.13},{&quot;2026-09-03&quot;:2.12},{&quot;2026-09-04&quot;:2.12},{&quot;2026-09-05&quot;:2.08},{&quot;2026-09-06&quot;:2.1},{&quot;2026-09-07&quot;:2.04},{&quot;2026-09-08&quot;:2.08},{&quot;2026-09-09&quot;:2.16},{&quot;2026-09-10&quot;:2.12},{&quot;2026-09-11&quot;:2.12}]}"
        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="79896"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tsr ss-special 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">
            Bojuka Bog
        </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">
            $5.80
          </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="Bojuka Bog" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/4/d46ca7cb-4a04-4081-8834-6bc29e0762d2.jpg?1783927701" />

        <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">
            Bojuka Bog
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            special
          </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="Bojuka Bog" src="https://cards.scryfall.io/large/front/d/4/d46ca7cb-4a04-4081-8834-6bc29e0762d2.jpg?1783927701" />
    </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.80
              </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">
                $120.23
              </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">$4.40</span>
              <span class="text-xs text-grey-text">Credit: $5.72</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:112.56},{&quot;2026-06-14&quot;:112.73},{&quot;2026-06-15&quot;:112.73},{&quot;2026-06-16&quot;:112.92},{&quot;2026-06-17&quot;:112.92},{&quot;2026-06-18&quot;:112.92},{&quot;2026-06-19&quot;:112.92},{&quot;2026-06-20&quot;:112.92},{&quot;2026-06-21&quot;:113.19},{&quot;2026-06-22&quot;:113.19},{&quot;2026-06-23&quot;:113.19},{&quot;2026-06-24&quot;:113.19},{&quot;2026-06-25&quot;:113.19},{&quot;2026-06-26&quot;:113.41},{&quot;2026-06-27&quot;:113.41},{&quot;2026-06-28&quot;:113.41},{&quot;2026-06-29&quot;:113.41},{&quot;2026-06-30&quot;:113.41},{&quot;2026-07-01&quot;:113.41},{&quot;2026-07-02&quot;:113.41},{&quot;2026-07-03&quot;:113.41},{&quot;2026-07-04&quot;:113.41},{&quot;2026-07-05&quot;:113.41},{&quot;2026-07-06&quot;:113.41},{&quot;2026-07-07&quot;:113.41},{&quot;2026-07-08&quot;:113.41},{&quot;2026-07-09&quot;:113.41},{&quot;2026-07-10&quot;:113.41},{&quot;2026-07-11&quot;:113.41},{&quot;2026-07-12&quot;:113.41},{&quot;2026-07-13&quot;:113.41},{&quot;2026-07-14&quot;:113.41},{&quot;2026-07-15&quot;:113.41},{&quot;2026-07-16&quot;:113.41},{&quot;2026-07-17&quot;:113.23},{&quot;2026-07-18&quot;:113.23},{&quot;2026-07-19&quot;:113.23},{&quot;2026-07-20&quot;:113.23},{&quot;2026-07-21&quot;:113.23},{&quot;2026-07-22&quot;:113.23},{&quot;2026-07-23&quot;:113.23},{&quot;2026-07-24&quot;:113.23},{&quot;2026-07-25&quot;:113.23},{&quot;2026-07-26&quot;:113.23},{&quot;2026-07-27&quot;:113.23},{&quot;2026-07-28&quot;:113.23},{&quot;2026-07-29&quot;:113.23},{&quot;2026-07-30&quot;:113.23},{&quot;2026-07-31&quot;:113.23},{&quot;2026-08-01&quot;:113.23},{&quot;2026-08-02&quot;:113.23},{&quot;2026-08-03&quot;:113.23},{&quot;2026-08-04&quot;:113.23},{&quot;2026-08-05&quot;:113.23},{&quot;2026-08-07&quot;:113.23},{&quot;2026-08-08&quot;:113.23},{&quot;2026-08-09&quot;:113.23},{&quot;2026-08-10&quot;:113.23},{&quot;2026-08-11&quot;:113.23},{&quot;2026-08-12&quot;:113.23},{&quot;2026-08-13&quot;:113.23},{&quot;2026-08-14&quot;:113.23},{&quot;2026-08-15&quot;:114.7},{&quot;2026-08-16&quot;:114.7},{&quot;2026-08-17&quot;:114.7},{&quot;2026-08-18&quot;:114.7},{&quot;2026-08-19&quot;:114.7},{&quot;2026-08-20&quot;:114.7},{&quot;2026-08-21&quot;:114.7},{&quot;2026-08-22&quot;:114.7},{&quot;2026-08-23&quot;:114.7},{&quot;2026-08-24&quot;:114.7},{&quot;2026-08-25&quot;:114.7},{&quot;2026-08-26&quot;:114.7},{&quot;2026-08-27&quot;:114.7},{&quot;2026-08-28&quot;:114.7},{&quot;2026-08-29&quot;:114.7},{&quot;2026-08-30&quot;:114.7},{&quot;2026-08-31&quot;:114.7},{&quot;2026-09-01&quot;:114.7},{&quot;2026-09-02&quot;:114.7},{&quot;2026-09-03&quot;:114.7},{&quot;2026-09-04&quot;:114.7},{&quot;2026-09-05&quot;:114.7},{&quot;2026-09-06&quot;:114.7},{&quot;2026-09-07&quot;:114.7},{&quot;2026-09-08&quot;:114.7},{&quot;2026-09-09&quot;:114.7},{&quot;2026-09-10&quot;:114.7},{&quot;2026-09-11&quot;:120.23}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:5.79},{&quot;2026-06-14&quot;:5.79},{&quot;2026-06-15&quot;:5.79},{&quot;2026-06-16&quot;:5.79},{&quot;2026-06-17&quot;:5.8},{&quot;2026-06-18&quot;:5.8},{&quot;2026-06-19&quot;:5.8},{&quot;2026-06-20&quot;:5.8},{&quot;2026-06-21&quot;:5.8},{&quot;2026-06-22&quot;:5.8},{&quot;2026-06-23&quot;:5.8},{&quot;2026-06-24&quot;:5.8},{&quot;2026-06-25&quot;:5.82},{&quot;2026-06-26&quot;:5.82},{&quot;2026-06-27&quot;:5.8},{&quot;2026-06-28&quot;:5.85},{&quot;2026-06-29&quot;:5.85},{&quot;2026-06-30&quot;:5.85},{&quot;2026-07-01&quot;:5.85},{&quot;2026-07-02&quot;:5.85},{&quot;2026-07-03&quot;:5.78},{&quot;2026-07-04&quot;:5.78},{&quot;2026-07-05&quot;:5.79},{&quot;2026-07-06&quot;:5.79},{&quot;2026-07-07&quot;:5.83},{&quot;2026-07-08&quot;:5.83},{&quot;2026-07-09&quot;:5.83},{&quot;2026-07-10&quot;:5.83},{&quot;2026-07-11&quot;:5.83},{&quot;2026-07-12&quot;:5.84},{&quot;2026-07-13&quot;:5.84},{&quot;2026-07-14&quot;:5.85},{&quot;2026-07-15&quot;:5.86},{&quot;2026-07-16&quot;:5.86},{&quot;2026-07-17&quot;:5.87},{&quot;2026-07-18&quot;:5.87},{&quot;2026-07-19&quot;:5.86},{&quot;2026-07-20&quot;:5.86},{&quot;2026-07-21&quot;:5.73},{&quot;2026-07-22&quot;:5.74},{&quot;2026-07-23&quot;:5.74},{&quot;2026-07-24&quot;:5.74},{&quot;2026-07-25&quot;:5.74},{&quot;2026-07-26&quot;:5.71},{&quot;2026-07-27&quot;:5.71},{&quot;2026-07-28&quot;:5.71},{&quot;2026-07-29&quot;:5.71},{&quot;2026-07-30&quot;:5.71},{&quot;2026-07-31&quot;:5.67},{&quot;2026-08-01&quot;:5.67},{&quot;2026-08-02&quot;:5.67},{&quot;2026-08-03&quot;:5.66},{&quot;2026-08-04&quot;:5.66},{&quot;2026-08-05&quot;:5.61},{&quot;2026-08-07&quot;:5.63},{&quot;2026-08-08&quot;:5.63},{&quot;2026-08-09&quot;:5.69},{&quot;2026-08-10&quot;:5.69},{&quot;2026-08-11&quot;:5.69},{&quot;2026-08-12&quot;:5.71},{&quot;2026-08-13&quot;:5.71},{&quot;2026-08-14&quot;:5.72},{&quot;2026-08-15&quot;:5.74},{&quot;2026-08-16&quot;:5.74},{&quot;2026-08-17&quot;:5.77},{&quot;2026-08-18&quot;:5.73},{&quot;2026-08-19&quot;:5.73},{&quot;2026-08-20&quot;:5.73},{&quot;2026-08-21&quot;:5.73},{&quot;2026-08-22&quot;:5.72},{&quot;2026-08-23&quot;:5.7},{&quot;2026-08-24&quot;:5.54},{&quot;2026-08-25&quot;:5.38},{&quot;2026-08-26&quot;:5.4},{&quot;2026-08-27&quot;:5.4},{&quot;2026-08-28&quot;:5.4},{&quot;2026-08-29&quot;:5.4},{&quot;2026-08-30&quot;:5.58},{&quot;2026-08-31&quot;:5.59},{&quot;2026-09-01&quot;:5.59},{&quot;2026-09-02&quot;:5.62},{&quot;2026-09-03&quot;:5.62},{&quot;2026-09-04&quot;:5.6},{&quot;2026-09-05&quot;:5.63},{&quot;2026-09-06&quot;:5.67},{&quot;2026-09-07&quot;:5.67},{&quot;2026-09-08&quot;:5.67},{&quot;2026-09-09&quot;:5.68},{&quot;2026-09-10&quot;:5.68},{&quot;2026-09-11&quot;:5.8}]}"
        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="49576"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mh2 ss-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">
            Titania, Protector of Argoth
        </span>

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

      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $4.07
          </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="Titania, Protector of Argoth" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/1/21f6d49f-1577-4d17-a633-0c282769728a.jpg?1783926781" />

        <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">
            Titania, Protector of Argoth
        </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 — Elemental</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="Titania, Protector of Argoth" src="https://cards.scryfall.io/large/front/2/1/21f6d49f-1577-4d17-a633-0c282769728a.jpg?1783926781" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:4.03},{&quot;2026-06-14&quot;:4.03},{&quot;2026-06-15&quot;:4.03},{&quot;2026-06-16&quot;:4.03},{&quot;2026-06-17&quot;:4.03},{&quot;2026-06-18&quot;:4.03},{&quot;2026-06-19&quot;:4.03},{&quot;2026-06-20&quot;:4.03},{&quot;2026-06-21&quot;:4.03},{&quot;2026-06-22&quot;:4.03},{&quot;2026-06-23&quot;:4.03},{&quot;2026-06-24&quot;:4.03},{&quot;2026-06-25&quot;:4.03},{&quot;2026-06-26&quot;:4.03},{&quot;2026-06-27&quot;:4.03},{&quot;2026-06-28&quot;:4.03},{&quot;2026-06-29&quot;:4.03},{&quot;2026-06-30&quot;:4.03},{&quot;2026-07-01&quot;:4.03},{&quot;2026-07-02&quot;:4.03},{&quot;2026-07-03&quot;:4.03},{&quot;2026-07-04&quot;:4.03},{&quot;2026-07-05&quot;:4.03},{&quot;2026-07-06&quot;:4.04},{&quot;2026-07-07&quot;:4.04},{&quot;2026-07-08&quot;:4.04},{&quot;2026-07-09&quot;:4.04},{&quot;2026-07-10&quot;:4.05},{&quot;2026-07-11&quot;:4.05},{&quot;2026-07-12&quot;:4.05},{&quot;2026-07-13&quot;:4.05},{&quot;2026-07-14&quot;:4.05},{&quot;2026-07-15&quot;:4.05},{&quot;2026-07-16&quot;:4.05},{&quot;2026-07-17&quot;:4.05},{&quot;2026-07-18&quot;:4.05},{&quot;2026-07-19&quot;:4.05},{&quot;2026-07-20&quot;:4.05},{&quot;2026-07-21&quot;:4.05},{&quot;2026-07-22&quot;:4.05},{&quot;2026-07-23&quot;:4.05},{&quot;2026-07-24&quot;:4.05},{&quot;2026-07-25&quot;:4.05},{&quot;2026-07-26&quot;:4.05},{&quot;2026-07-27&quot;:4.05},{&quot;2026-07-28&quot;:4.05},{&quot;2026-07-29&quot;:4.05},{&quot;2026-07-30&quot;:4.05},{&quot;2026-07-31&quot;:4.06},{&quot;2026-08-01&quot;:4.06},{&quot;2026-08-02&quot;:4.06},{&quot;2026-08-03&quot;:4.06},{&quot;2026-08-04&quot;:4.06},{&quot;2026-08-05&quot;:4.06},{&quot;2026-08-07&quot;:4.07},{&quot;2026-08-08&quot;:4.1},{&quot;2026-08-09&quot;:4.1},{&quot;2026-08-10&quot;:4.1},{&quot;2026-08-11&quot;:4.1},{&quot;2026-08-12&quot;:4.1},{&quot;2026-08-13&quot;:4.1},{&quot;2026-08-14&quot;:4.1},{&quot;2026-08-15&quot;:4.1},{&quot;2026-08-16&quot;:4.1},{&quot;2026-08-17&quot;:4.12},{&quot;2026-08-18&quot;:4.12},{&quot;2026-08-19&quot;:4.12},{&quot;2026-08-20&quot;:4.12},{&quot;2026-08-21&quot;:4.12},{&quot;2026-08-22&quot;:4.11},{&quot;2026-08-23&quot;:4.11},{&quot;2026-08-24&quot;:4.11},{&quot;2026-08-25&quot;:4.13},{&quot;2026-08-26&quot;:4.13},{&quot;2026-08-27&quot;:4.13},{&quot;2026-08-28&quot;:4.13},{&quot;2026-08-29&quot;:4.13},{&quot;2026-08-30&quot;:4.13},{&quot;2026-08-31&quot;:4.13},{&quot;2026-09-01&quot;:4.13},{&quot;2026-09-02&quot;:4.13},{&quot;2026-09-03&quot;:4.13},{&quot;2026-09-04&quot;:4.13},{&quot;2026-09-05&quot;:4.13},{&quot;2026-09-06&quot;:4.13},{&quot;2026-09-07&quot;:4.13},{&quot;2026-09-08&quot;:4.13},{&quot;2026-09-09&quot;:4.13},{&quot;2026-09-10&quot;:4.07},{&quot;2026-09-11&quot;:4.07}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.32},{&quot;2026-06-14&quot;:1.31},{&quot;2026-06-15&quot;:1.26},{&quot;2026-06-16&quot;:1.31},{&quot;2026-06-17&quot;:1.32},{&quot;2026-06-18&quot;:1.27},{&quot;2026-06-19&quot;:1.28},{&quot;2026-06-20&quot;:1.26},{&quot;2026-06-21&quot;:1.26},{&quot;2026-06-22&quot;:1.26},{&quot;2026-06-23&quot;:1.29},{&quot;2026-06-24&quot;:1.29},{&quot;2026-06-25&quot;:1.26},{&quot;2026-06-26&quot;:1.26},{&quot;2026-06-27&quot;:1.24},{&quot;2026-06-28&quot;:1.3},{&quot;2026-06-29&quot;:1.34},{&quot;2026-06-30&quot;:1.34},{&quot;2026-07-01&quot;:1.35},{&quot;2026-07-02&quot;:1.39},{&quot;2026-07-03&quot;:1.43},{&quot;2026-07-04&quot;:1.48},{&quot;2026-07-05&quot;:1.54},{&quot;2026-07-06&quot;:1.56},{&quot;2026-07-07&quot;:1.47},{&quot;2026-07-08&quot;:1.49},{&quot;2026-07-09&quot;:1.46},{&quot;2026-07-10&quot;:1.46},{&quot;2026-07-11&quot;:1.43},{&quot;2026-07-12&quot;:1.36},{&quot;2026-07-13&quot;:1.34},{&quot;2026-07-14&quot;:1.34},{&quot;2026-07-15&quot;:1.34},{&quot;2026-07-16&quot;:1.32},{&quot;2026-07-17&quot;:1.32},{&quot;2026-07-18&quot;:1.36},{&quot;2026-07-19&quot;:1.36},{&quot;2026-07-20&quot;:1.36},{&quot;2026-07-21&quot;:1.36},{&quot;2026-07-22&quot;:1.33},{&quot;2026-07-23&quot;:1.33},{&quot;2026-07-24&quot;:1.31},{&quot;2026-07-25&quot;:1.26},{&quot;2026-07-26&quot;:1.23},{&quot;2026-07-27&quot;:1.26},{&quot;2026-07-28&quot;:1.17},{&quot;2026-07-29&quot;:1.17},{&quot;2026-07-30&quot;:1.17},{&quot;2026-07-31&quot;:1.11},{&quot;2026-08-01&quot;:1.04},{&quot;2026-08-02&quot;:1.04},{&quot;2026-08-03&quot;:1.04},{&quot;2026-08-04&quot;:1.04},{&quot;2026-08-05&quot;:1.08},{&quot;2026-08-07&quot;:1.04},{&quot;2026-08-08&quot;:1.04},{&quot;2026-08-09&quot;:1.04},{&quot;2026-08-10&quot;:1.06},{&quot;2026-08-11&quot;:1.08},{&quot;2026-08-12&quot;:1.08},{&quot;2026-08-13&quot;:1.08},{&quot;2026-08-14&quot;:1.08},{&quot;2026-08-15&quot;:1.08},{&quot;2026-08-16&quot;:0.98},{&quot;2026-08-17&quot;:0.96},{&quot;2026-08-18&quot;:0.96},{&quot;2026-08-19&quot;:0.99},{&quot;2026-08-20&quot;:1.01},{&quot;2026-08-21&quot;:0.98},{&quot;2026-08-22&quot;:0.94},{&quot;2026-08-23&quot;:0.94},{&quot;2026-08-24&quot;:0.94},{&quot;2026-08-25&quot;:0.91},{&quot;2026-08-26&quot;:0.87},{&quot;2026-08-27&quot;:0.88},{&quot;2026-08-28&quot;:0.87},{&quot;2026-08-29&quot;:0.87},{&quot;2026-08-30&quot;:0.89},{&quot;2026-08-31&quot;:0.85},{&quot;2026-09-01&quot;:0.9},{&quot;2026-09-02&quot;:0.9},{&quot;2026-09-03&quot;:0.9},{&quot;2026-09-04&quot;:0.91},{&quot;2026-09-05&quot;:0.88},{&quot;2026-09-06&quot;:0.88},{&quot;2026-09-07&quot;:0.85},{&quot;2026-09-08&quot;:0.85},{&quot;2026-09-09&quot;:0.85},{&quot;2026-09-10&quot;:0.85},{&quot;2026-09-11&quot;:0.85}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Crop Rotation" src="https://cards.scryfall.io/large/front/4/2/4249cc64-f75b-4c76-a41a-5b25873c74bc.jpg?1783930149" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $3.55
          </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="Deathcap Glade" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/f/2f20e738-bab6-4000-afca-9fc9e4261c34.jpg?1783908067" />

        <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">
            Deathcap 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</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="Deathcap Glade" src="https://cards.scryfall.io/large/front/2/f/2f20e738-bab6-4000-afca-9fc9e4261c34.jpg?1783908067" />
    </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.55
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:10.85},{&quot;2026-06-14&quot;:10.85},{&quot;2026-06-15&quot;:10.85},{&quot;2026-06-16&quot;:10.85},{&quot;2026-06-17&quot;:10.85},{&quot;2026-06-18&quot;:10.85},{&quot;2026-06-19&quot;:10.85},{&quot;2026-06-20&quot;:10.85},{&quot;2026-06-21&quot;:10.72},{&quot;2026-06-22&quot;:10.72},{&quot;2026-06-23&quot;:10.72},{&quot;2026-06-24&quot;:10.72},{&quot;2026-06-25&quot;:10.72},{&quot;2026-06-26&quot;:10.72},{&quot;2026-06-27&quot;:10.72},{&quot;2026-06-28&quot;:10.72},{&quot;2026-06-29&quot;:10.72},{&quot;2026-06-30&quot;:10.72},{&quot;2026-07-01&quot;:10.72},{&quot;2026-07-02&quot;:10.85},{&quot;2026-07-03&quot;:10.85},{&quot;2026-07-04&quot;:10.85},{&quot;2026-07-05&quot;:10.85},{&quot;2026-07-06&quot;:10.85},{&quot;2026-07-07&quot;:10.91},{&quot;2026-07-08&quot;:10.91},{&quot;2026-07-09&quot;:10.91},{&quot;2026-07-10&quot;:10.91},{&quot;2026-07-11&quot;:10.91},{&quot;2026-07-12&quot;:10.91},{&quot;2026-07-13&quot;:10.78},{&quot;2026-07-14&quot;:10.78},{&quot;2026-07-15&quot;:10.78},{&quot;2026-07-16&quot;:10.78},{&quot;2026-07-17&quot;:10.72},{&quot;2026-07-18&quot;:10.72},{&quot;2026-07-19&quot;:10.72},{&quot;2026-07-20&quot;:10.72},{&quot;2026-07-21&quot;:10.72},{&quot;2026-07-22&quot;:10.72},{&quot;2026-07-23&quot;:10.51},{&quot;2026-07-24&quot;:10.51},{&quot;2026-07-25&quot;:10.51},{&quot;2026-07-26&quot;:10.51},{&quot;2026-07-27&quot;:9.77},{&quot;2026-07-28&quot;:9.77},{&quot;2026-07-29&quot;:9.77},{&quot;2026-07-30&quot;:9.46},{&quot;2026-07-31&quot;:9.46},{&quot;2026-08-01&quot;:9.46},{&quot;2026-08-02&quot;:9.46},{&quot;2026-08-03&quot;:9.46},{&quot;2026-08-04&quot;:9.46},{&quot;2026-08-05&quot;:9.46},{&quot;2026-08-07&quot;:9.46},{&quot;2026-08-08&quot;:9.46},{&quot;2026-08-09&quot;:9.46},{&quot;2026-08-10&quot;:9.46},{&quot;2026-08-11&quot;:9.46},{&quot;2026-08-12&quot;:9.46},{&quot;2026-08-13&quot;:9.46},{&quot;2026-08-14&quot;:9.46},{&quot;2026-08-15&quot;:9.46},{&quot;2026-08-16&quot;:9.46},{&quot;2026-08-17&quot;:9.46},{&quot;2026-08-18&quot;:9.46},{&quot;2026-08-19&quot;:9.46},{&quot;2026-08-20&quot;:9.46},{&quot;2026-08-21&quot;:9.46},{&quot;2026-08-22&quot;:9.46},{&quot;2026-08-23&quot;:9.46},{&quot;2026-08-24&quot;:9.46},{&quot;2026-08-25&quot;:9.36},{&quot;2026-08-26&quot;:8.97},{&quot;2026-08-27&quot;:8.97},{&quot;2026-08-28&quot;:8.97},{&quot;2026-08-29&quot;:8.97},{&quot;2026-08-30&quot;:8.97},{&quot;2026-08-31&quot;:8.97},{&quot;2026-09-01&quot;:8.97},{&quot;2026-09-02&quot;:8.97},{&quot;2026-09-03&quot;:8.97},{&quot;2026-09-04&quot;:8.97},{&quot;2026-09-05&quot;:8.97},{&quot;2026-09-06&quot;:8.97},{&quot;2026-09-07&quot;:8.97},{&quot;2026-09-08&quot;:8.97},{&quot;2026-09-09&quot;:8.97},{&quot;2026-09-10&quot;:8.97},{&quot;2026-09-11&quot;:8.44}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:8.57},{&quot;2026-06-14&quot;:8.57},{&quot;2026-06-15&quot;:8.57},{&quot;2026-06-16&quot;:8.57},{&quot;2026-06-17&quot;:8.57},{&quot;2026-06-18&quot;:8.57},{&quot;2026-06-19&quot;:8.39},{&quot;2026-06-20&quot;:8.39},{&quot;2026-06-21&quot;:8.39},{&quot;2026-06-22&quot;:8.39},{&quot;2026-06-23&quot;:8.39},{&quot;2026-06-24&quot;:8.03},{&quot;2026-06-25&quot;:8.03},{&quot;2026-06-26&quot;:8.03},{&quot;2026-06-27&quot;:8.03},{&quot;2026-06-28&quot;:8.03},{&quot;2026-06-29&quot;:8.03},{&quot;2026-06-30&quot;:8.03},{&quot;2026-07-01&quot;:8.03},{&quot;2026-07-02&quot;:7.52},{&quot;2026-07-03&quot;:7.24},{&quot;2026-07-04&quot;:7.24},{&quot;2026-07-05&quot;:6.82},{&quot;2026-07-06&quot;:6.66},{&quot;2026-07-07&quot;:6.66},{&quot;2026-07-08&quot;:6.66},{&quot;2026-07-09&quot;:6.66},{&quot;2026-07-10&quot;:6.66},{&quot;2026-07-11&quot;:6.33},{&quot;2026-07-12&quot;:6.33},{&quot;2026-07-13&quot;:6.52},{&quot;2026-07-14&quot;:6.52},{&quot;2026-07-15&quot;:6.52},{&quot;2026-07-16&quot;:6.52},{&quot;2026-07-17&quot;:6.52},{&quot;2026-07-18&quot;:6.52},{&quot;2026-07-19&quot;:6.32},{&quot;2026-07-20&quot;:6.2},{&quot;2026-07-21&quot;:6.2},{&quot;2026-07-22&quot;:6.2},{&quot;2026-07-23&quot;:6.2},{&quot;2026-07-24&quot;:5.93},{&quot;2026-07-25&quot;:5.93},{&quot;2026-07-26&quot;:5.93},{&quot;2026-07-27&quot;:5.9},{&quot;2026-07-28&quot;:5.9},{&quot;2026-07-29&quot;:5.9},{&quot;2026-07-30&quot;:5.9},{&quot;2026-07-31&quot;:5.54},{&quot;2026-08-01&quot;:5.48},{&quot;2026-08-02&quot;:5.46},{&quot;2026-08-03&quot;:5.46},{&quot;2026-08-04&quot;:5.46},{&quot;2026-08-05&quot;:5.46},{&quot;2026-08-07&quot;:5.41},{&quot;2026-08-08&quot;:5.41},{&quot;2026-08-09&quot;:5.41},{&quot;2026-08-10&quot;:5.14},{&quot;2026-08-11&quot;:5.08},{&quot;2026-08-12&quot;:5.08},{&quot;2026-08-13&quot;:5.08},{&quot;2026-08-14&quot;:5.08},{&quot;2026-08-15&quot;:5.06},{&quot;2026-08-16&quot;:5.01},{&quot;2026-08-17&quot;:4.73},{&quot;2026-08-18&quot;:4.62},{&quot;2026-08-19&quot;:4.62},{&quot;2026-08-20&quot;:4.62},{&quot;2026-08-21&quot;:4.58},{&quot;2026-08-22&quot;:4.49},{&quot;2026-08-23&quot;:4.39},{&quot;2026-08-24&quot;:4.37},{&quot;2026-08-25&quot;:4.38},{&quot;2026-08-26&quot;:4.25},{&quot;2026-08-27&quot;:4.44},{&quot;2026-08-28&quot;:4.51},{&quot;2026-08-29&quot;:4.51},{&quot;2026-08-30&quot;:4.53},{&quot;2026-08-31&quot;:4.53},{&quot;2026-09-01&quot;:4.36},{&quot;2026-09-02&quot;:4.28},{&quot;2026-09-03&quot;:4.18},{&quot;2026-09-04&quot;:4.18},{&quot;2026-09-05&quot;:4.08},{&quot;2026-09-06&quot;:3.88},{&quot;2026-09-07&quot;:3.82},{&quot;2026-09-08&quot;:3.67},{&quot;2026-09-09&quot;:3.67},{&quot;2026-09-10&quot;:3.55},{&quot;2026-09-11&quot;:3.55}]}"
        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="57447"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-one ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Conduit of Worlds" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/6/3/635146da-d415-4107-a7f9-2c46189e5c52.jpg?1783918018" />

        <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">
            Conduit of Worlds
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Conduit of Worlds" src="https://cards.scryfall.io/large/front/6/3/635146da-d415-4107-a7f9-2c46189e5c52.jpg?1783918018" />
    </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.34
              </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.63
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-12&quot;:4.48},{&quot;2026-06-13&quot;:4.48},{&quot;2026-06-14&quot;:4.48},{&quot;2026-06-15&quot;:4.42},{&quot;2026-06-16&quot;:4.52},{&quot;2026-06-17&quot;:4.52},{&quot;2026-06-18&quot;:4.59},{&quot;2026-06-19&quot;:4.79},{&quot;2026-06-20&quot;:4.9},{&quot;2026-06-21&quot;:5.02},{&quot;2026-06-22&quot;:5.03},{&quot;2026-06-23&quot;:5.04},{&quot;2026-06-24&quot;:5.04},{&quot;2026-06-25&quot;:5.14},{&quot;2026-06-26&quot;:5.14},{&quot;2026-06-27&quot;:5.18},{&quot;2026-06-28&quot;:5.18},{&quot;2026-06-29&quot;:5.18},{&quot;2026-06-30&quot;:5.18},{&quot;2026-07-01&quot;:5.15},{&quot;2026-07-02&quot;:5.15},{&quot;2026-07-03&quot;:5.07},{&quot;2026-07-04&quot;:5.07},{&quot;2026-07-05&quot;:5.07},{&quot;2026-07-06&quot;:5.07},{&quot;2026-07-07&quot;:5.13},{&quot;2026-07-08&quot;:5.13},{&quot;2026-07-09&quot;:5.13},{&quot;2026-07-10&quot;:5.13},{&quot;2026-07-11&quot;:5.15},{&quot;2026-07-12&quot;:5.15},{&quot;2026-07-13&quot;:5.15},{&quot;2026-07-14&quot;:5.21},{&quot;2026-07-15&quot;:5.28},{&quot;2026-07-16&quot;:5.25},{&quot;2026-07-17&quot;:5.37},{&quot;2026-07-18&quot;:5.38},{&quot;2026-07-19&quot;:5.38},{&quot;2026-07-20&quot;:5.38},{&quot;2026-07-21&quot;:5.3},{&quot;2026-07-23&quot;:5.3},{&quot;2026-07-24&quot;:5.3},{&quot;2026-07-25&quot;:5.12},{&quot;2026-07-26&quot;:4.95},{&quot;2026-07-27&quot;:4.85},{&quot;2026-07-28&quot;:4.77},{&quot;2026-07-29&quot;:4.77},{&quot;2026-07-30&quot;:4.74},{&quot;2026-07-31&quot;:4.76},{&quot;2026-08-01&quot;:4.76},{&quot;2026-08-02&quot;:4.75},{&quot;2026-08-03&quot;:4.75},{&quot;2026-08-04&quot;:4.75},{&quot;2026-08-05&quot;:4.75},{&quot;2026-08-07&quot;:4.75},{&quot;2026-08-08&quot;:4.75},{&quot;2026-08-09&quot;:4.75},{&quot;2026-08-10&quot;:4.75},{&quot;2026-08-11&quot;:4.75},{&quot;2026-08-12&quot;:4.75},{&quot;2026-08-13&quot;:4.75},{&quot;2026-08-14&quot;:4.75},{&quot;2026-08-15&quot;:4.78},{&quot;2026-08-16&quot;:4.78},{&quot;2026-08-17&quot;:4.78},{&quot;2026-08-18&quot;:4.78},{&quot;2026-08-19&quot;:4.78},{&quot;2026-08-20&quot;:4.78},{&quot;2026-08-21&quot;:4.78},{&quot;2026-08-22&quot;:4.81},{&quot;2026-08-23&quot;:4.81},{&quot;2026-08-24&quot;:4.81},{&quot;2026-08-25&quot;:4.73},{&quot;2026-08-26&quot;:4.53},{&quot;2026-08-27&quot;:4.61},{&quot;2026-08-28&quot;:4.83},{&quot;2026-08-29&quot;:4.83},{&quot;2026-08-30&quot;:4.75},{&quot;2026-08-31&quot;:4.72},{&quot;2026-09-01&quot;:4.72},{&quot;2026-09-02&quot;:4.72},{&quot;2026-09-03&quot;:4.72},{&quot;2026-09-04&quot;:4.72},{&quot;2026-09-05&quot;:4.72},{&quot;2026-09-06&quot;:4.72},{&quot;2026-09-07&quot;:4.72},{&quot;2026-09-08&quot;:4.7},{&quot;2026-09-09&quot;:4.76},{&quot;2026-09-10&quot;:4.74},{&quot;2026-09-11&quot;:4.63}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:4.41},{&quot;2026-06-13&quot;:4.35},{&quot;2026-06-14&quot;:4.37},{&quot;2026-06-15&quot;:4.36},{&quot;2026-06-16&quot;:4.11},{&quot;2026-06-17&quot;:4.07},{&quot;2026-06-18&quot;:4.43},{&quot;2026-06-19&quot;:4.68},{&quot;2026-06-20&quot;:4.62},{&quot;2026-06-21&quot;:4.73},{&quot;2026-06-22&quot;:5.16},{&quot;2026-06-23&quot;:5.03},{&quot;2026-06-24&quot;:4.86},{&quot;2026-06-25&quot;:4.55},{&quot;2026-06-26&quot;:4.55},{&quot;2026-06-27&quot;:4.17},{&quot;2026-06-28&quot;:4.1},{&quot;2026-06-29&quot;:3.95},{&quot;2026-06-30&quot;:4.06},{&quot;2026-07-01&quot;:3.89},{&quot;2026-07-02&quot;:3.9},{&quot;2026-07-03&quot;:3.93},{&quot;2026-07-04&quot;:3.91},{&quot;2026-07-05&quot;:3.97},{&quot;2026-07-06&quot;:4.05},{&quot;2026-07-07&quot;:4.05},{&quot;2026-07-08&quot;:4.17},{&quot;2026-07-09&quot;:4.06},{&quot;2026-07-10&quot;:4.09},{&quot;2026-07-11&quot;:4.02},{&quot;2026-07-12&quot;:3.97},{&quot;2026-07-13&quot;:3.98},{&quot;2026-07-14&quot;:4.0},{&quot;2026-07-15&quot;:3.81},{&quot;2026-07-16&quot;:3.61},{&quot;2026-07-17&quot;:3.54},{&quot;2026-07-18&quot;:3.54},{&quot;2026-07-19&quot;:3.49},{&quot;2026-07-20&quot;:3.5},{&quot;2026-07-21&quot;:3.46},{&quot;2026-07-23&quot;:3.42},{&quot;2026-07-24&quot;:3.29},{&quot;2026-07-25&quot;:3.14},{&quot;2026-07-26&quot;:3.14},{&quot;2026-07-27&quot;:3.0},{&quot;2026-07-28&quot;:3.17},{&quot;2026-07-29&quot;:3.27},{&quot;2026-07-30&quot;:3.04},{&quot;2026-07-31&quot;:2.95},{&quot;2026-08-01&quot;:3.0},{&quot;2026-08-02&quot;:2.89},{&quot;2026-08-03&quot;:2.99},{&quot;2026-08-04&quot;:2.84},{&quot;2026-08-05&quot;:2.96},{&quot;2026-08-07&quot;:2.87},{&quot;2026-08-08&quot;:2.78},{&quot;2026-08-09&quot;:2.91},{&quot;2026-08-10&quot;:2.86},{&quot;2026-08-11&quot;:2.85},{&quot;2026-08-12&quot;:2.86},{&quot;2026-08-13&quot;:2.81},{&quot;2026-08-14&quot;:2.96},{&quot;2026-08-15&quot;:2.89},{&quot;2026-08-16&quot;:2.77},{&quot;2026-08-17&quot;:2.92},{&quot;2026-08-18&quot;:2.91},{&quot;2026-08-19&quot;:2.85},{&quot;2026-08-20&quot;:2.85},{&quot;2026-08-21&quot;:2.86},{&quot;2026-08-22&quot;:3.01},{&quot;2026-08-23&quot;:3.08},{&quot;2026-08-24&quot;:3.39},{&quot;2026-08-25&quot;:3.54},{&quot;2026-08-26&quot;:3.68},{&quot;2026-08-27&quot;:3.79},{&quot;2026-08-28&quot;:3.61},{&quot;2026-08-29&quot;:3.61},{&quot;2026-08-30&quot;:3.39},{&quot;2026-08-31&quot;:3.19},{&quot;2026-09-01&quot;:2.85},{&quot;2026-09-02&quot;:2.82},{&quot;2026-09-03&quot;:2.9},{&quot;2026-09-04&quot;:2.85},{&quot;2026-09-05&quot;:2.88},{&quot;2026-09-06&quot;:2.98},{&quot;2026-09-07&quot;:2.97},{&quot;2026-09-08&quot;:3.04},{&quot;2026-09-09&quot;:3.04},{&quot;2026-09-10&quot;:3.06},{&quot;2026-09-11&quot;:3.34}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

        <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">
            Splendid Reclamation
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Splendid Reclamation" src="https://cards.scryfall.io/large/front/f/a/fad4ca85-4d2d-4d1e-86ca-aa25edfcda61.jpg?1783924801" />
    </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.37
              </span>

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $3.13
              </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.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;:2.31},{&quot;2026-06-14&quot;:2.31},{&quot;2026-06-15&quot;:2.36},{&quot;2026-06-16&quot;:2.5},{&quot;2026-06-17&quot;:2.5},{&quot;2026-06-18&quot;:2.5},{&quot;2026-06-19&quot;:2.5},{&quot;2026-06-20&quot;:2.5},{&quot;2026-06-21&quot;:2.5},{&quot;2026-06-22&quot;:2.5},{&quot;2026-06-23&quot;:2.5},{&quot;2026-06-24&quot;:2.5},{&quot;2026-06-25&quot;:2.5},{&quot;2026-06-26&quot;:2.62},{&quot;2026-06-27&quot;:2.62},{&quot;2026-06-28&quot;:2.62},{&quot;2026-06-29&quot;:2.62},{&quot;2026-06-30&quot;:2.62},{&quot;2026-07-01&quot;:2.62},{&quot;2026-07-02&quot;:2.62},{&quot;2026-07-03&quot;:2.62},{&quot;2026-07-04&quot;:2.62},{&quot;2026-07-05&quot;:2.65},{&quot;2026-07-06&quot;:2.65},{&quot;2026-07-07&quot;:2.65},{&quot;2026-07-08&quot;:2.67},{&quot;2026-07-09&quot;:2.67},{&quot;2026-07-10&quot;:2.67},{&quot;2026-07-11&quot;:2.67},{&quot;2026-07-12&quot;:2.67},{&quot;2026-07-13&quot;:2.67},{&quot;2026-07-14&quot;:2.67},{&quot;2026-07-15&quot;:2.76},{&quot;2026-07-16&quot;:2.76},{&quot;2026-07-17&quot;:2.75},{&quot;2026-07-18&quot;:2.87},{&quot;2026-07-19&quot;:2.87},{&quot;2026-07-20&quot;:2.87},{&quot;2026-07-21&quot;:2.89},{&quot;2026-07-22&quot;:2.89},{&quot;2026-07-23&quot;:2.89},{&quot;2026-07-24&quot;:2.89},{&quot;2026-07-25&quot;:2.92},{&quot;2026-07-26&quot;:2.92},{&quot;2026-07-27&quot;:2.93},{&quot;2026-07-28&quot;:2.93},{&quot;2026-07-29&quot;:2.93},{&quot;2026-07-30&quot;:2.93},{&quot;2026-07-31&quot;:2.95},{&quot;2026-08-01&quot;:2.95},{&quot;2026-08-02&quot;:2.95},{&quot;2026-08-03&quot;:2.95},{&quot;2026-08-04&quot;:2.95},{&quot;2026-08-05&quot;:2.95},{&quot;2026-08-07&quot;:2.95},{&quot;2026-08-08&quot;:2.95},{&quot;2026-08-09&quot;:2.95},{&quot;2026-08-10&quot;:2.95},{&quot;2026-08-11&quot;:2.9},{&quot;2026-08-12&quot;:2.9},{&quot;2026-08-13&quot;:2.9},{&quot;2026-08-14&quot;:2.9},{&quot;2026-08-15&quot;:2.9},{&quot;2026-08-16&quot;:2.9},{&quot;2026-08-17&quot;:2.9},{&quot;2026-08-18&quot;:2.9},{&quot;2026-08-19&quot;:2.9},{&quot;2026-08-20&quot;:2.98},{&quot;2026-08-21&quot;:2.97},{&quot;2026-08-22&quot;:2.97},{&quot;2026-08-23&quot;:2.97},{&quot;2026-08-24&quot;:2.94},{&quot;2026-08-25&quot;:2.94},{&quot;2026-08-26&quot;:2.94},{&quot;2026-08-27&quot;:2.94},{&quot;2026-08-28&quot;:2.94},{&quot;2026-08-29&quot;:2.94},{&quot;2026-08-30&quot;:3.08},{&quot;2026-08-31&quot;:3.08},{&quot;2026-09-01&quot;:3.08},{&quot;2026-09-02&quot;:3.08},{&quot;2026-09-03&quot;:3.08},{&quot;2026-09-04&quot;:3.08},{&quot;2026-09-05&quot;:3.08},{&quot;2026-09-06&quot;:3.07},{&quot;2026-09-07&quot;:3.07},{&quot;2026-09-08&quot;:3.07},{&quot;2026-09-09&quot;:3.07},{&quot;2026-09-10&quot;:3.0},{&quot;2026-09-11&quot;:3.13}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.97},{&quot;2026-06-14&quot;:1.95},{&quot;2026-06-15&quot;:1.99},{&quot;2026-06-16&quot;:2.07},{&quot;2026-06-17&quot;:2.07},{&quot;2026-06-18&quot;:2.35},{&quot;2026-06-19&quot;:2.49},{&quot;2026-06-20&quot;:2.46},{&quot;2026-06-21&quot;:2.44},{&quot;2026-06-22&quot;:2.38},{&quot;2026-06-23&quot;:2.38},{&quot;2026-06-24&quot;:2.35},{&quot;2026-06-25&quot;:2.35},{&quot;2026-06-26&quot;:2.33},{&quot;2026-06-27&quot;:2.35},{&quot;2026-06-28&quot;:2.35},{&quot;2026-06-29&quot;:2.35},{&quot;2026-06-30&quot;:2.27},{&quot;2026-07-01&quot;:2.2},{&quot;2026-07-02&quot;:1.88},{&quot;2026-07-03&quot;:1.86},{&quot;2026-07-04&quot;:1.89},{&quot;2026-07-05&quot;:1.97},{&quot;2026-07-06&quot;:2.05},{&quot;2026-07-07&quot;:2.18},{&quot;2026-07-08&quot;:2.22},{&quot;2026-07-09&quot;:2.28},{&quot;2026-07-10&quot;:2.28},{&quot;2026-07-11&quot;:2.35},{&quot;2026-07-12&quot;:2.36},{&quot;2026-07-13&quot;:2.36},{&quot;2026-07-14&quot;:2.44},{&quot;2026-07-15&quot;:2.44},{&quot;2026-07-16&quot;:2.3},{&quot;2026-07-17&quot;:2.3},{&quot;2026-07-18&quot;:2.3},{&quot;2026-07-19&quot;:2.3},{&quot;2026-07-20&quot;:2.22},{&quot;2026-07-21&quot;:2.22},{&quot;2026-07-22&quot;:2.22},{&quot;2026-07-23&quot;:2.31},{&quot;2026-07-24&quot;:2.24},{&quot;2026-07-25&quot;:2.31},{&quot;2026-07-26&quot;:2.42},{&quot;2026-07-27&quot;:2.46},{&quot;2026-07-28&quot;:2.46},{&quot;2026-07-29&quot;:2.45},{&quot;2026-07-30&quot;:2.37},{&quot;2026-07-31&quot;:2.26},{&quot;2026-08-01&quot;:2.37},{&quot;2026-08-02&quot;:2.33},{&quot;2026-08-03&quot;:2.22},{&quot;2026-08-04&quot;:2.25},{&quot;2026-08-05&quot;:2.59},{&quot;2026-08-07&quot;:2.7},{&quot;2026-08-08&quot;:2.83},{&quot;2026-08-09&quot;:2.69},{&quot;2026-08-10&quot;:2.99},{&quot;2026-08-11&quot;:3.07},{&quot;2026-08-12&quot;:3.09},{&quot;2026-08-13&quot;:3.09},{&quot;2026-08-14&quot;:3.09},{&quot;2026-08-15&quot;:3.09},{&quot;2026-08-16&quot;:3.09},{&quot;2026-08-17&quot;:3.09},{&quot;2026-08-18&quot;:2.95},{&quot;2026-08-19&quot;:2.88},{&quot;2026-08-20&quot;:2.79},{&quot;2026-08-21&quot;:2.77},{&quot;2026-08-22&quot;:2.77},{&quot;2026-08-23&quot;:2.62},{&quot;2026-08-24&quot;:2.61},{&quot;2026-08-25&quot;:2.59},{&quot;2026-08-26&quot;:2.71},{&quot;2026-08-27&quot;:2.73},{&quot;2026-08-28&quot;:2.93},{&quot;2026-08-29&quot;:2.93},{&quot;2026-08-30&quot;:2.83},{&quot;2026-08-31&quot;:2.66},{&quot;2026-09-01&quot;:2.7},{&quot;2026-09-02&quot;:2.62},{&quot;2026-09-03&quot;:2.58},{&quot;2026-09-04&quot;:2.49},{&quot;2026-09-05&quot;:2.49},{&quot;2026-09-06&quot;:2.48},{&quot;2026-09-07&quot;:2.55},{&quot;2026-09-08&quot;:2.47},{&quot;2026-09-09&quot;:2.46},{&quot;2026-09-10&quot;:2.41},{&quot;2026-09-11&quot;:2.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="34286"
  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-iko 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">
            Migration Path
        </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">
              ↑
              7%
            </span>

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

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

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

        <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">
            Migration Path
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Migration Path" src="https://cards.scryfall.io/large/front/d/3/d345ca63-16a3-4988-93f5-d0e00e8d6ab0.jpg?1783931035" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="5125"
  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">
            Iridescent Vinelasher
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Lizard Assassin
      </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">
            $2.05
          </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="Iridescent Vinelasher" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/2/b2bc854c-4e72-48e0-a098-e3451d6e511d.jpg?1783910833" />

        <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">
            Iridescent Vinelasher
        </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 — Lizard Assassin</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Iridescent Vinelasher" src="https://cards.scryfall.io/large/front/b/2/b2bc854c-4e72-48e0-a098-e3451d6e511d.jpg?1783910833" />
    </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.05
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-11&quot;:1.2},{&quot;2026-06-12&quot;:1.21},{&quot;2026-06-13&quot;:1.19},{&quot;2026-06-14&quot;:1.19},{&quot;2026-06-15&quot;:1.19},{&quot;2026-06-16&quot;:1.19},{&quot;2026-06-17&quot;:1.19},{&quot;2026-06-18&quot;:1.19},{&quot;2026-06-19&quot;:1.19},{&quot;2026-06-20&quot;:1.19},{&quot;2026-06-21&quot;:1.19},{&quot;2026-06-22&quot;:1.19},{&quot;2026-06-23&quot;:1.19},{&quot;2026-06-24&quot;:1.2},{&quot;2026-06-25&quot;:1.2},{&quot;2026-06-26&quot;:1.2},{&quot;2026-06-27&quot;:1.19},{&quot;2026-06-28&quot;:1.2},{&quot;2026-06-29&quot;:1.2},{&quot;2026-06-30&quot;:1.2},{&quot;2026-07-01&quot;:1.18},{&quot;2026-07-02&quot;:1.2},{&quot;2026-07-03&quot;:1.2},{&quot;2026-07-04&quot;:1.2},{&quot;2026-07-05&quot;:1.2},{&quot;2026-07-06&quot;:1.2},{&quot;2026-07-07&quot;:1.2},{&quot;2026-07-08&quot;:1.21},{&quot;2026-07-09&quot;:1.21},{&quot;2026-07-10&quot;:1.22},{&quot;2026-07-11&quot;:1.22},{&quot;2026-07-12&quot;:1.22},{&quot;2026-07-13&quot;:1.22},{&quot;2026-07-14&quot;:1.21},{&quot;2026-07-15&quot;:1.21},{&quot;2026-07-16&quot;:1.21},{&quot;2026-07-17&quot;:1.21},{&quot;2026-07-18&quot;:1.21},{&quot;2026-07-19&quot;:1.21},{&quot;2026-07-20&quot;:1.22},{&quot;2026-07-21&quot;:1.22},{&quot;2026-07-23&quot;:1.22},{&quot;2026-07-25&quot;:1.25},{&quot;2026-07-26&quot;:1.37},{&quot;2026-07-27&quot;:1.42},{&quot;2026-07-28&quot;:1.42},{&quot;2026-07-29&quot;:1.41},{&quot;2026-07-30&quot;:1.43},{&quot;2026-07-31&quot;:1.42},{&quot;2026-08-01&quot;:1.43},{&quot;2026-08-02&quot;:1.43},{&quot;2026-08-03&quot;:1.41},{&quot;2026-08-04&quot;:1.44},{&quot;2026-08-05&quot;:1.5},{&quot;2026-08-07&quot;:1.66},{&quot;2026-08-08&quot;:1.66},{&quot;2026-08-09&quot;:1.7},{&quot;2026-08-10&quot;:1.7},{&quot;2026-08-11&quot;:1.7},{&quot;2026-08-12&quot;:1.75},{&quot;2026-08-13&quot;:1.79},{&quot;2026-08-14&quot;:1.79},{&quot;2026-08-15&quot;:1.79},{&quot;2026-08-16&quot;:1.79},{&quot;2026-08-17&quot;:1.8},{&quot;2026-08-18&quot;:1.8},{&quot;2026-08-19&quot;:1.8},{&quot;2026-08-20&quot;:1.8},{&quot;2026-08-21&quot;:1.79},{&quot;2026-08-22&quot;:1.79},{&quot;2026-08-23&quot;:1.86},{&quot;2026-08-24&quot;:1.84},{&quot;2026-08-25&quot;:1.84},{&quot;2026-08-26&quot;:1.89},{&quot;2026-08-27&quot;:1.96},{&quot;2026-08-28&quot;:1.96},{&quot;2026-08-29&quot;:1.96},{&quot;2026-08-30&quot;:2.04},{&quot;2026-08-31&quot;:2.26},{&quot;2026-09-01&quot;:2.26},{&quot;2026-09-02&quot;:2.22},{&quot;2026-09-03&quot;:2.18},{&quot;2026-09-04&quot;:2.23},{&quot;2026-09-05&quot;:2.33},{&quot;2026-09-06&quot;:2.38},{&quot;2026-09-07&quot;:2.36},{&quot;2026-09-08&quot;:2.48},{&quot;2026-09-09&quot;:2.48},{&quot;2026-09-10&quot;:2.48},{&quot;2026-09-11&quot;:2.71}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:0.84},{&quot;2026-06-12&quot;:0.82},{&quot;2026-06-13&quot;:0.82},{&quot;2026-06-14&quot;:0.8},{&quot;2026-06-15&quot;:0.77},{&quot;2026-06-16&quot;:0.81},{&quot;2026-06-17&quot;:0.83},{&quot;2026-06-18&quot;:0.8},{&quot;2026-06-19&quot;:0.73},{&quot;2026-06-20&quot;:0.79},{&quot;2026-06-21&quot;:0.73},{&quot;2026-06-22&quot;:0.84},{&quot;2026-06-23&quot;:0.71},{&quot;2026-06-24&quot;:0.76},{&quot;2026-06-25&quot;:0.82},{&quot;2026-06-26&quot;:0.83},{&quot;2026-06-27&quot;:0.79},{&quot;2026-06-28&quot;:0.79},{&quot;2026-06-29&quot;:0.89},{&quot;2026-06-30&quot;:0.88},{&quot;2026-07-01&quot;:0.88},{&quot;2026-07-02&quot;:0.81},{&quot;2026-07-03&quot;:0.87},{&quot;2026-07-04&quot;:0.85},{&quot;2026-07-05&quot;:0.86},{&quot;2026-07-06&quot;:0.76},{&quot;2026-07-07&quot;:0.78},{&quot;2026-07-08&quot;:0.82},{&quot;2026-07-09&quot;:0.82},{&quot;2026-07-10&quot;:0.87},{&quot;2026-07-11&quot;:0.9},{&quot;2026-07-12&quot;:0.9},{&quot;2026-07-13&quot;:0.88},{&quot;2026-07-14&quot;:0.91},{&quot;2026-07-15&quot;:0.88},{&quot;2026-07-16&quot;:0.88},{&quot;2026-07-17&quot;:0.86},{&quot;2026-07-18&quot;:0.89},{&quot;2026-07-19&quot;:1.01},{&quot;2026-07-20&quot;:1.08},{&quot;2026-07-21&quot;:1.12},{&quot;2026-07-23&quot;:1.12},{&quot;2026-07-25&quot;:1.16},{&quot;2026-07-26&quot;:1.19},{&quot;2026-07-27&quot;:1.14},{&quot;2026-07-28&quot;:1.08},{&quot;2026-07-29&quot;:1.04},{&quot;2026-07-30&quot;:1.11},{&quot;2026-07-31&quot;:1.21},{&quot;2026-08-01&quot;:1.21},{&quot;2026-08-02&quot;:1.23},{&quot;2026-08-03&quot;:1.23},{&quot;2026-08-04&quot;:1.28},{&quot;2026-08-05&quot;:1.33},{&quot;2026-08-07&quot;:1.45},{&quot;2026-08-08&quot;:1.38},{&quot;2026-08-09&quot;:1.46},{&quot;2026-08-10&quot;:1.49},{&quot;2026-08-11&quot;:1.52},{&quot;2026-08-12&quot;:1.57},{&quot;2026-08-13&quot;:1.54},{&quot;2026-08-14&quot;:1.39},{&quot;2026-08-15&quot;:1.44},{&quot;2026-08-16&quot;:1.26},{&quot;2026-08-17&quot;:1.32},{&quot;2026-08-18&quot;:1.26},{&quot;2026-08-19&quot;:1.14},{&quot;2026-08-20&quot;:1.14},{&quot;2026-08-21&quot;:1.2},{&quot;2026-08-22&quot;:1.11},{&quot;2026-08-23&quot;:1.21},{&quot;2026-08-24&quot;:1.17},{&quot;2026-08-25&quot;:1.17},{&quot;2026-08-26&quot;:1.31},{&quot;2026-08-27&quot;:1.72},{&quot;2026-08-28&quot;:1.73},{&quot;2026-08-29&quot;:1.73},{&quot;2026-08-30&quot;:1.74},{&quot;2026-08-31&quot;:1.9},{&quot;2026-09-01&quot;:1.9},{&quot;2026-09-02&quot;:2.03},{&quot;2026-09-03&quot;:2.1},{&quot;2026-09-04&quot;:2.05},{&quot;2026-09-05&quot;:1.86},{&quot;2026-09-06&quot;:1.88},{&quot;2026-09-07&quot;:1.67},{&quot;2026-09-08&quot;:1.66},{&quot;2026-09-09&quot;:1.81},{&quot;2026-09-10&quot;:1.95},{&quot;2026-09-11&quot;:2.05}]}"
        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="18433"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-dmu ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Cut Down" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/5/753db072-5d6a-4f37-8f7d-255572ecd3bd.jpg?1783921335" />

        <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">
            Cut Down
        </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-b'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Cut Down" src="https://cards.scryfall.io/large/front/7/5/753db072-5d6a-4f37-8f7d-255572ecd3bd.jpg?1783921335" />
    </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.23
              </span>

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

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

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

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

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

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Stitch Together" src="https://cards.scryfall.io/large/front/8/4/8423c98d-4cb6-4a70-8bf2-3ac24c025c4e.jpg?1783934297" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Geode Rager" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/c/1c5974dd-78fc-4bfb-8678-72041c797584.jpg?1783922423" />

        <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">
            Geode Rager
        </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 — Elemental</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="Geode Rager" src="https://cards.scryfall.io/large/front/1/c/1c5974dd-78fc-4bfb-8678-72041c797584.jpg?1783922423" />
    </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.43
              </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.80</span>
              <span class="text-xs text-grey-text">Credit: $1.04</span>
            </div>
        </div>

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

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

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-100 text-badge-text">
              ↓
              8%
            </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="Snow-Covered Forest" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/c/1c59fc48-704b-4187-b9d3-2a2cff6dd54b.jpg?1783933062" />

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

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Snow-Covered 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 Snow 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="Snow-Covered Forest" src="https://cards.scryfall.io/large/front/1/c/1c59fc48-704b-4187-b9d3-2a2cff6dd54b.jpg?1783933062" />
    </div>

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:7.14},{&quot;2026-06-14&quot;:7.46},{&quot;2026-06-15&quot;:7.46},{&quot;2026-06-16&quot;:7.46},{&quot;2026-06-17&quot;:7.46},{&quot;2026-06-18&quot;:7.46},{&quot;2026-06-19&quot;:7.46},{&quot;2026-06-20&quot;:7.46},{&quot;2026-06-21&quot;:7.46},{&quot;2026-06-22&quot;:7.46},{&quot;2026-06-23&quot;:7.46},{&quot;2026-06-24&quot;:7.46},{&quot;2026-06-25&quot;:7.46},{&quot;2026-06-26&quot;:7.46},{&quot;2026-06-27&quot;:7.46},{&quot;2026-06-28&quot;:7.46},{&quot;2026-06-29&quot;:7.46},{&quot;2026-06-30&quot;:7.46},{&quot;2026-07-01&quot;:7.46},{&quot;2026-07-02&quot;:7.46},{&quot;2026-07-03&quot;:7.46},{&quot;2026-07-04&quot;:7.46},{&quot;2026-07-05&quot;:7.46},{&quot;2026-07-06&quot;:7.46},{&quot;2026-07-07&quot;:7.46},{&quot;2026-07-08&quot;:7.46},{&quot;2026-07-09&quot;:7.46},{&quot;2026-07-10&quot;:7.46},{&quot;2026-07-11&quot;:7.46},{&quot;2026-07-12&quot;:7.46},{&quot;2026-07-13&quot;:7.46},{&quot;2026-07-14&quot;:7.46},{&quot;2026-07-15&quot;:7.46},{&quot;2026-07-16&quot;:7.46},{&quot;2026-07-17&quot;:7.46},{&quot;2026-07-18&quot;:7.46},{&quot;2026-07-19&quot;:7.46},{&quot;2026-07-20&quot;:7.46},{&quot;2026-07-21&quot;:7.46},{&quot;2026-07-22&quot;:7.46},{&quot;2026-07-23&quot;:7.46},{&quot;2026-07-24&quot;:7.46},{&quot;2026-07-25&quot;:7.46},{&quot;2026-07-26&quot;:7.46},{&quot;2026-07-27&quot;:7.54},{&quot;2026-07-28&quot;:7.54},{&quot;2026-07-29&quot;:7.54},{&quot;2026-07-30&quot;:7.54},{&quot;2026-07-31&quot;:7.54},{&quot;2026-08-01&quot;:7.54},{&quot;2026-08-02&quot;:7.54},{&quot;2026-08-03&quot;:7.54},{&quot;2026-08-04&quot;:7.54},{&quot;2026-08-05&quot;:7.54},{&quot;2026-08-07&quot;:7.54},{&quot;2026-08-08&quot;:7.54},{&quot;2026-08-09&quot;:7.54},{&quot;2026-08-10&quot;:7.54},{&quot;2026-08-11&quot;:7.54},{&quot;2026-08-12&quot;:7.64},{&quot;2026-08-13&quot;:7.64},{&quot;2026-08-14&quot;:7.64},{&quot;2026-08-15&quot;:7.64},{&quot;2026-08-16&quot;:7.64},{&quot;2026-08-17&quot;:7.64},{&quot;2026-08-18&quot;:7.64},{&quot;2026-08-19&quot;:7.64},{&quot;2026-08-20&quot;:7.64},{&quot;2026-08-21&quot;:7.64},{&quot;2026-08-22&quot;:7.64},{&quot;2026-08-23&quot;:7.64},{&quot;2026-08-24&quot;:7.72},{&quot;2026-08-25&quot;:7.72},{&quot;2026-08-26&quot;:7.72},{&quot;2026-08-27&quot;:7.72},{&quot;2026-08-28&quot;:7.72},{&quot;2026-08-29&quot;:7.72},{&quot;2026-08-30&quot;:7.72},{&quot;2026-08-31&quot;:7.72},{&quot;2026-09-01&quot;:7.72},{&quot;2026-09-02&quot;:7.72},{&quot;2026-09-03&quot;:7.72},{&quot;2026-09-04&quot;:7.72},{&quot;2026-09-05&quot;:7.72},{&quot;2026-09-06&quot;:7.72},{&quot;2026-09-07&quot;:7.72},{&quot;2026-09-08&quot;:7.72},{&quot;2026-09-09&quot;:7.72},{&quot;2026-09-10&quot;:7.72},{&quot;2026-09-11&quot;:7.7}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.18},{&quot;2026-06-14&quot;:1.13},{&quot;2026-06-15&quot;:1.15},{&quot;2026-06-16&quot;:1.15},{&quot;2026-06-17&quot;:1.17},{&quot;2026-06-18&quot;:1.13},{&quot;2026-06-19&quot;:1.09},{&quot;2026-06-20&quot;:1.07},{&quot;2026-06-21&quot;:1.05},{&quot;2026-06-22&quot;:0.99},{&quot;2026-06-23&quot;:0.99},{&quot;2026-06-24&quot;:0.97},{&quot;2026-06-25&quot;:1.0},{&quot;2026-06-26&quot;:1.01},{&quot;2026-06-27&quot;:1.02},{&quot;2026-06-28&quot;:1.01},{&quot;2026-06-29&quot;:1.0},{&quot;2026-06-30&quot;:1.0},{&quot;2026-07-01&quot;:1.0},{&quot;2026-07-02&quot;:1.02},{&quot;2026-07-03&quot;:0.99},{&quot;2026-07-04&quot;:0.96},{&quot;2026-07-05&quot;:0.93},{&quot;2026-07-06&quot;:0.93},{&quot;2026-07-07&quot;:0.92},{&quot;2026-07-08&quot;:0.94},{&quot;2026-07-09&quot;:0.91},{&quot;2026-07-10&quot;:0.94},{&quot;2026-07-11&quot;:0.96},{&quot;2026-07-12&quot;:0.98},{&quot;2026-07-13&quot;:0.97},{&quot;2026-07-14&quot;:0.97},{&quot;2026-07-15&quot;:1.0},{&quot;2026-07-16&quot;:0.98},{&quot;2026-07-17&quot;:0.98},{&quot;2026-07-18&quot;:0.98},{&quot;2026-07-19&quot;:0.99},{&quot;2026-07-20&quot;:1.08},{&quot;2026-07-21&quot;:1.13},{&quot;2026-07-22&quot;:1.12},{&quot;2026-07-23&quot;:1.19},{&quot;2026-07-24&quot;:1.24},{&quot;2026-07-25&quot;:1.26},{&quot;2026-07-26&quot;:1.27},{&quot;2026-07-27&quot;:1.27},{&quot;2026-07-28&quot;:1.27},{&quot;2026-07-29&quot;:1.26},{&quot;2026-07-30&quot;:1.26},{&quot;2026-07-31&quot;:1.23},{&quot;2026-08-01&quot;:1.23},{&quot;2026-08-02&quot;:1.21},{&quot;2026-08-03&quot;:1.21},{&quot;2026-08-04&quot;:1.35},{&quot;2026-08-05&quot;:1.31},{&quot;2026-08-07&quot;:1.25},{&quot;2026-08-08&quot;:1.19},{&quot;2026-08-09&quot;:1.21},{&quot;2026-08-10&quot;:1.15},{&quot;2026-08-11&quot;:1.08},{&quot;2026-08-12&quot;:1.14},{&quot;2026-08-13&quot;:1.21},{&quot;2026-08-14&quot;:1.13},{&quot;2026-08-15&quot;:1.14},{&quot;2026-08-16&quot;:1.16},{&quot;2026-08-17&quot;:0.96},{&quot;2026-08-18&quot;:0.97},{&quot;2026-08-19&quot;:0.99},{&quot;2026-08-20&quot;:1.12},{&quot;2026-08-21&quot;:1.13},{&quot;2026-08-22&quot;:1.09},{&quot;2026-08-23&quot;:1.18},{&quot;2026-08-24&quot;:1.13},{&quot;2026-08-25&quot;:1.12},{&quot;2026-08-26&quot;:1.11},{&quot;2026-08-27&quot;:1.14},{&quot;2026-08-28&quot;:1.14},{&quot;2026-08-29&quot;:1.14},{&quot;2026-08-30&quot;:1.11},{&quot;2026-08-31&quot;:1.18},{&quot;2026-09-01&quot;:1.27},{&quot;2026-09-02&quot;:1.48},{&quot;2026-09-03&quot;:1.54},{&quot;2026-09-04&quot;:1.53},{&quot;2026-09-05&quot;:1.52},{&quot;2026-09-06&quot;:1.53},{&quot;2026-09-07&quot;:1.59},{&quot;2026-09-08&quot;:1.64},{&quot;2026-09-09&quot;:1.47},{&quot;2026-09-10&quot;:1.49},{&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="86745"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-woe ss-common ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Swamp" src="https://cards.scryfall.io/large/front/e/e/ee68f2cb-851b-4196-ac58-844d72628e6a.jpg?1783915052" />
    </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.82
              </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">
                $1.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 class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Foil</span>
              <span class="text-lg font-medium text-nine-white">$0.50</span>
              <span class="text-xs text-grey-text">Credit: $0.65</span>
            </div>
        </div>

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

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Snow-Covered Mountain" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/2/d2209e6f-1d9d-43bb-a314-a8fefc509e78.jpg?1783933063" />

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

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Snow-Covered 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 Snow 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="Snow-Covered Mountain" src="https://cards.scryfall.io/large/front/d/2/d2209e6f-1d9d-43bb-a314-a8fefc509e78.jpg?1783933063" />
    </div>

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

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

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

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

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

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

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

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

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.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-13&quot;:4.06},{&quot;2026-06-14&quot;:4.11},{&quot;2026-06-15&quot;:4.11},{&quot;2026-06-16&quot;:4.41},{&quot;2026-06-17&quot;:4.41},{&quot;2026-06-18&quot;:4.41},{&quot;2026-06-19&quot;:4.38},{&quot;2026-06-20&quot;:4.38},{&quot;2026-06-21&quot;:4.38},{&quot;2026-06-22&quot;:4.38},{&quot;2026-06-23&quot;:4.38},{&quot;2026-06-24&quot;:4.38},{&quot;2026-06-25&quot;:4.38},{&quot;2026-06-26&quot;:4.38},{&quot;2026-06-27&quot;:4.38},{&quot;2026-06-28&quot;:4.38},{&quot;2026-06-29&quot;:4.42},{&quot;2026-06-30&quot;:4.42},{&quot;2026-07-01&quot;:4.42},{&quot;2026-07-02&quot;:4.58},{&quot;2026-07-03&quot;:4.58},{&quot;2026-07-04&quot;:4.58},{&quot;2026-07-05&quot;:4.62},{&quot;2026-07-06&quot;:4.77},{&quot;2026-07-07&quot;:4.74},{&quot;2026-07-08&quot;:4.74},{&quot;2026-07-09&quot;:4.74},{&quot;2026-07-10&quot;:4.74},{&quot;2026-07-11&quot;:4.74},{&quot;2026-07-12&quot;:4.74},{&quot;2026-07-13&quot;:4.74},{&quot;2026-07-14&quot;:4.74},{&quot;2026-07-15&quot;:4.74},{&quot;2026-07-16&quot;:4.74},{&quot;2026-07-17&quot;:4.74},{&quot;2026-07-18&quot;:4.74},{&quot;2026-07-19&quot;:4.74},{&quot;2026-07-20&quot;:4.74},{&quot;2026-07-21&quot;:4.74},{&quot;2026-07-22&quot;:4.74},{&quot;2026-07-23&quot;:4.74},{&quot;2026-07-24&quot;:4.74},{&quot;2026-07-25&quot;:4.74},{&quot;2026-07-26&quot;:4.74},{&quot;2026-07-27&quot;:4.74},{&quot;2026-07-28&quot;:4.74},{&quot;2026-07-29&quot;:4.74},{&quot;2026-07-30&quot;:4.74},{&quot;2026-07-31&quot;:4.74},{&quot;2026-08-01&quot;:4.74},{&quot;2026-08-02&quot;:4.74},{&quot;2026-08-03&quot;:4.74},{&quot;2026-08-04&quot;:4.74},{&quot;2026-08-05&quot;:4.74},{&quot;2026-08-07&quot;:4.74},{&quot;2026-08-08&quot;:4.74},{&quot;2026-08-09&quot;:4.74},{&quot;2026-08-10&quot;:4.74},{&quot;2026-08-11&quot;:4.74},{&quot;2026-08-12&quot;:4.74},{&quot;2026-08-13&quot;:4.74},{&quot;2026-08-14&quot;:4.8},{&quot;2026-08-15&quot;:4.8},{&quot;2026-08-16&quot;:4.8},{&quot;2026-08-17&quot;:4.92},{&quot;2026-08-18&quot;:4.92},{&quot;2026-08-19&quot;:4.92},{&quot;2026-08-20&quot;:4.92},{&quot;2026-08-21&quot;:4.82},{&quot;2026-08-22&quot;:4.82},{&quot;2026-08-23&quot;:4.82},{&quot;2026-08-24&quot;:4.88},{&quot;2026-08-25&quot;:4.88},{&quot;2026-08-26&quot;:4.9},{&quot;2026-08-27&quot;:4.9},{&quot;2026-08-28&quot;:4.9},{&quot;2026-08-29&quot;:4.9},{&quot;2026-08-30&quot;:4.9},{&quot;2026-08-31&quot;:4.9},{&quot;2026-09-01&quot;:4.9},{&quot;2026-09-02&quot;:4.9},{&quot;2026-09-03&quot;:4.9},{&quot;2026-09-04&quot;:4.9},{&quot;2026-09-05&quot;:4.9},{&quot;2026-09-06&quot;:4.9},{&quot;2026-09-07&quot;:4.9},{&quot;2026-09-08&quot;:4.9},{&quot;2026-09-09&quot;:4.9},{&quot;2026-09-10&quot;:4.9},{&quot;2026-09-11&quot;:4.85}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.91},{&quot;2026-06-14&quot;:0.89},{&quot;2026-06-15&quot;:0.89},{&quot;2026-06-16&quot;:0.88},{&quot;2026-06-17&quot;:0.87},{&quot;2026-06-18&quot;:0.82},{&quot;2026-06-19&quot;:1.09},{&quot;2026-06-20&quot;:1.08},{&quot;2026-06-21&quot;:1.07},{&quot;2026-06-22&quot;:1.05},{&quot;2026-06-23&quot;:1.09},{&quot;2026-06-24&quot;:1.1},{&quot;2026-06-25&quot;:1.1},{&quot;2026-06-26&quot;:1.1},{&quot;2026-06-27&quot;:1.09},{&quot;2026-06-28&quot;:0.84},{&quot;2026-06-29&quot;:0.84},{&quot;2026-06-30&quot;:0.86},{&quot;2026-07-01&quot;:0.84},{&quot;2026-07-02&quot;:0.83},{&quot;2026-07-03&quot;:0.84},{&quot;2026-07-04&quot;:0.83},{&quot;2026-07-05&quot;:0.84},{&quot;2026-07-06&quot;:0.83},{&quot;2026-07-07&quot;:0.84},{&quot;2026-07-08&quot;:0.84},{&quot;2026-07-09&quot;:0.84},{&quot;2026-07-10&quot;:0.85},{&quot;2026-07-11&quot;:0.85},{&quot;2026-07-12&quot;:0.85},{&quot;2026-07-13&quot;:0.81},{&quot;2026-07-14&quot;:0.81},{&quot;2026-07-15&quot;:0.79},{&quot;2026-07-16&quot;:0.79},{&quot;2026-07-17&quot;:0.8},{&quot;2026-07-18&quot;:0.8},{&quot;2026-07-19&quot;:0.8},{&quot;2026-07-20&quot;:0.81},{&quot;2026-07-21&quot;:0.8},{&quot;2026-07-22&quot;:0.85},{&quot;2026-07-23&quot;:0.87},{&quot;2026-07-24&quot;:0.87},{&quot;2026-07-25&quot;:0.91},{&quot;2026-07-26&quot;:0.93},{&quot;2026-07-27&quot;:0.96},{&quot;2026-07-28&quot;:0.96},{&quot;2026-07-29&quot;:0.97},{&quot;2026-07-30&quot;:0.96},{&quot;2026-07-31&quot;:0.96},{&quot;2026-08-01&quot;:0.96},{&quot;2026-08-02&quot;:0.94},{&quot;2026-08-03&quot;:0.94},{&quot;2026-08-04&quot;:0.96},{&quot;2026-08-05&quot;:0.98},{&quot;2026-08-07&quot;:0.94},{&quot;2026-08-08&quot;:0.93},{&quot;2026-08-09&quot;:0.86},{&quot;2026-08-10&quot;:0.84},{&quot;2026-08-11&quot;:0.83},{&quot;2026-08-12&quot;:0.83},{&quot;2026-08-13&quot;:0.85},{&quot;2026-08-14&quot;:0.8},{&quot;2026-08-15&quot;:0.83},{&quot;2026-08-16&quot;:0.83},{&quot;2026-08-17&quot;:0.81},{&quot;2026-08-18&quot;:0.84},{&quot;2026-08-19&quot;:0.84},{&quot;2026-08-20&quot;:0.84},{&quot;2026-08-21&quot;:0.82},{&quot;2026-08-22&quot;:0.82},{&quot;2026-08-23&quot;:0.82},{&quot;2026-08-24&quot;:0.82},{&quot;2026-08-25&quot;:0.83},{&quot;2026-08-26&quot;:0.84},{&quot;2026-08-27&quot;:0.9},{&quot;2026-08-28&quot;:0.9},{&quot;2026-08-29&quot;:0.9},{&quot;2026-08-30&quot;:0.9},{&quot;2026-08-31&quot;:0.9},{&quot;2026-09-01&quot;:0.88},{&quot;2026-09-02&quot;:0.88},{&quot;2026-09-03&quot;:0.89},{&quot;2026-09-04&quot;:0.91},{&quot;2026-09-05&quot;:0.94},{&quot;2026-09-06&quot;:0.96},{&quot;2026-09-07&quot;:0.94},{&quot;2026-09-08&quot;:0.94},{&quot;2026-09-09&quot;:0.94},{&quot;2026-09-10&quot;:0.99},{&quot;2026-09-11&quot;:1.03}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.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="Snow-Covered Swamp" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/8/c835f235-4196-4281-9788-13e5d54a92d0.jpg?1783933062" />

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Snow-Covered Swamp" src="https://cards.scryfall.io/large/front/c/8/c835f235-4196-4281-9788-13e5d54a92d0.jpg?1783933062" />
    </div>

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:5.43},{&quot;2026-06-14&quot;:5.5},{&quot;2026-06-15&quot;:5.5},{&quot;2026-06-16&quot;:5.53},{&quot;2026-06-17&quot;:5.53},{&quot;2026-06-18&quot;:5.53},{&quot;2026-06-19&quot;:5.53},{&quot;2026-06-20&quot;:5.53},{&quot;2026-06-21&quot;:5.53},{&quot;2026-06-22&quot;:5.53},{&quot;2026-06-23&quot;:5.53},{&quot;2026-06-24&quot;:5.53},{&quot;2026-06-25&quot;:5.53},{&quot;2026-06-26&quot;:5.53},{&quot;2026-06-27&quot;:5.53},{&quot;2026-06-28&quot;:5.51},{&quot;2026-06-29&quot;:5.51},{&quot;2026-06-30&quot;:5.51},{&quot;2026-07-01&quot;:5.51},{&quot;2026-07-02&quot;:5.51},{&quot;2026-07-03&quot;:5.57},{&quot;2026-07-04&quot;:5.57},{&quot;2026-07-05&quot;:5.57},{&quot;2026-07-06&quot;:5.57},{&quot;2026-07-07&quot;:5.57},{&quot;2026-07-08&quot;:5.57},{&quot;2026-07-09&quot;:5.57},{&quot;2026-07-10&quot;:5.57},{&quot;2026-07-11&quot;:5.57},{&quot;2026-07-12&quot;:5.57},{&quot;2026-07-13&quot;:5.57},{&quot;2026-07-14&quot;:5.57},{&quot;2026-07-15&quot;:5.57},{&quot;2026-07-16&quot;:5.57},{&quot;2026-07-17&quot;:5.57},{&quot;2026-07-18&quot;:5.57},{&quot;2026-07-19&quot;:5.61},{&quot;2026-07-20&quot;:5.61},{&quot;2026-07-21&quot;:5.61},{&quot;2026-07-22&quot;:5.61},{&quot;2026-07-23&quot;:5.61},{&quot;2026-07-24&quot;:5.61},{&quot;2026-07-25&quot;:5.61},{&quot;2026-07-26&quot;:5.64},{&quot;2026-07-27&quot;:5.61},{&quot;2026-07-28&quot;:5.61},{&quot;2026-07-29&quot;:5.61},{&quot;2026-07-30&quot;:5.61},{&quot;2026-07-31&quot;:5.61},{&quot;2026-08-01&quot;:5.61},{&quot;2026-08-02&quot;:5.61},{&quot;2026-08-03&quot;:5.61},{&quot;2026-08-04&quot;:5.61},{&quot;2026-08-05&quot;:5.61},{&quot;2026-08-07&quot;:5.61},{&quot;2026-08-08&quot;:5.69},{&quot;2026-08-09&quot;:5.69},{&quot;2026-08-10&quot;:5.69},{&quot;2026-08-11&quot;:5.69},{&quot;2026-08-12&quot;:5.69},{&quot;2026-08-13&quot;:5.69},{&quot;2026-08-14&quot;:5.69},{&quot;2026-08-15&quot;:5.69},{&quot;2026-08-16&quot;:5.78},{&quot;2026-08-17&quot;:6.12},{&quot;2026-08-18&quot;:6.12},{&quot;2026-08-19&quot;:6.19},{&quot;2026-08-20&quot;:6.19},{&quot;2026-08-21&quot;:6.19},{&quot;2026-08-22&quot;:6.19},{&quot;2026-08-23&quot;:6.19},{&quot;2026-08-24&quot;:6.19},{&quot;2026-08-25&quot;:6.19},{&quot;2026-08-26&quot;:6.19},{&quot;2026-08-27&quot;:6.22},{&quot;2026-08-28&quot;:6.28},{&quot;2026-08-29&quot;:6.28},{&quot;2026-08-30&quot;:6.28},{&quot;2026-08-31&quot;:6.28},{&quot;2026-09-01&quot;:6.28},{&quot;2026-09-02&quot;:6.45},{&quot;2026-09-03&quot;:6.45},{&quot;2026-09-04&quot;:6.45},{&quot;2026-09-05&quot;:6.45},{&quot;2026-09-06&quot;:6.45},{&quot;2026-09-07&quot;:6.58},{&quot;2026-09-08&quot;:6.58},{&quot;2026-09-09&quot;:6.58},{&quot;2026-09-10&quot;:6.6},{&quot;2026-09-11&quot;:6.68}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.08},{&quot;2026-06-14&quot;:1.03},{&quot;2026-06-15&quot;:1.05},{&quot;2026-06-16&quot;:0.93},{&quot;2026-06-17&quot;:0.91},{&quot;2026-06-18&quot;:0.88},{&quot;2026-06-19&quot;:0.89},{&quot;2026-06-20&quot;:0.84},{&quot;2026-06-21&quot;:0.85},{&quot;2026-06-22&quot;:0.84},{&quot;2026-06-23&quot;:0.86},{&quot;2026-06-24&quot;:0.86},{&quot;2026-06-25&quot;:0.93},{&quot;2026-06-26&quot;:0.95},{&quot;2026-06-27&quot;:0.93},{&quot;2026-06-28&quot;:0.86},{&quot;2026-06-29&quot;:0.92},{&quot;2026-06-30&quot;:0.89},{&quot;2026-07-01&quot;:0.89},{&quot;2026-07-02&quot;:0.83},{&quot;2026-07-03&quot;:0.91},{&quot;2026-07-04&quot;:0.95},{&quot;2026-07-05&quot;:0.96},{&quot;2026-07-06&quot;:0.92},{&quot;2026-07-07&quot;:0.96},{&quot;2026-07-08&quot;:0.94},{&quot;2026-07-09&quot;:0.98},{&quot;2026-07-10&quot;:0.97},{&quot;2026-07-11&quot;:0.98},{&quot;2026-07-12&quot;:0.99},{&quot;2026-07-13&quot;:1.04},{&quot;2026-07-14&quot;:1.04},{&quot;2026-07-15&quot;:1.04},{&quot;2026-07-16&quot;:1.05},{&quot;2026-07-17&quot;:1.05},{&quot;2026-07-18&quot;:1.02},{&quot;2026-07-19&quot;:1.03},{&quot;2026-07-20&quot;:1.04},{&quot;2026-07-21&quot;:1.02},{&quot;2026-07-22&quot;:1.08},{&quot;2026-07-23&quot;:1.05},{&quot;2026-07-24&quot;:1.01},{&quot;2026-07-25&quot;:1.0},{&quot;2026-07-26&quot;:0.95},{&quot;2026-07-27&quot;:0.97},{&quot;2026-07-28&quot;:0.94},{&quot;2026-07-29&quot;:0.96},{&quot;2026-07-30&quot;:0.97},{&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.09},{&quot;2026-08-04&quot;:1.14},{&quot;2026-08-05&quot;:1.14},{&quot;2026-08-07&quot;:1.05},{&quot;2026-08-08&quot;:0.94},{&quot;2026-08-09&quot;:0.93},{&quot;2026-08-10&quot;:0.92},{&quot;2026-08-11&quot;:0.92},{&quot;2026-08-12&quot;:0.85},{&quot;2026-08-13&quot;:0.87},{&quot;2026-08-14&quot;:0.81},{&quot;2026-08-15&quot;:0.83},{&quot;2026-08-16&quot;:0.84},{&quot;2026-08-17&quot;:0.86},{&quot;2026-08-18&quot;:0.8},{&quot;2026-08-19&quot;:0.81},{&quot;2026-08-20&quot;:0.87},{&quot;2026-08-21&quot;:0.87},{&quot;2026-08-22&quot;:0.88},{&quot;2026-08-23&quot;:0.88},{&quot;2026-08-24&quot;:0.87},{&quot;2026-08-25&quot;:0.91},{&quot;2026-08-26&quot;:0.9},{&quot;2026-08-27&quot;:0.85},{&quot;2026-08-28&quot;:0.83},{&quot;2026-08-29&quot;:0.83},{&quot;2026-08-30&quot;:0.79},{&quot;2026-08-31&quot;:0.83},{&quot;2026-09-01&quot;:0.83},{&quot;2026-09-02&quot;:0.9},{&quot;2026-09-03&quot;:0.91},{&quot;2026-09-04&quot;:0.95},{&quot;2026-09-05&quot;:1.0},{&quot;2026-09-06&quot;:1.01},{&quot;2026-09-07&quot;:0.99},{&quot;2026-09-08&quot;:0.92},{&quot;2026-09-09&quot;:0.91},{&quot;2026-09-10&quot;:0.92},{&quot;2026-09-11&quot;:0.9}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Insect
      </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.71
          </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="Scute Mob" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/8/28d10cf2-c40d-4748-add0-f9cdd606030c.jpg?1783934282" />

        <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">
            Scute Mob
        </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 — Insect</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="Scute Mob" src="https://cards.scryfall.io/large/front/2/8/28d10cf2-c40d-4748-add0-f9cdd606030c.jpg?1783934282" />
    </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.71
              </span>

            </div>
          </div>

      </div>

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

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.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="Cultivate" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/6/d6a8f239-0e6c-4454-a2f7-f1a8351864d5.jpg?1783934290" />

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

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            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/d/6/d6a8f239-0e6c-4454-a2f7-f1a8351864d5.jpg?1783934290" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

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


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Legendary Creature — Kavu Pilot
      </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">
              ↑
              23%
            </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="Tannuk, Memorial Ensign" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/5/2/52498b7b-0389-4e7b-b29f-7ac86aab9229.jpg?1752947510" />

        <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">
            Tannuk, Memorial Ensign
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Tannuk, Memorial Ensign" src="https://cards.scryfall.io/large/front/5/2/52498b7b-0389-4e7b-b29f-7ac86aab9229.jpg?1752947510" />
    </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-50">
                  ↑
                  23%
                </span>
            </div>
          </div>

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

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

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

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

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Savage Lands" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/2/c281afba-c239-46e7-b8ba-04a01d24ca04.jpg?1783934237" />

        <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">
            Savage Lands
        </h3>

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Savage Lands" src="https://cards.scryfall.io/large/front/c/2/c281afba-c239-46e7-b8ba-04a01d24ca04.jpg?1783934237" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Arch of Orazca" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/f/2/f2216c70-91c2-43d5-9156-9b4f7828c821.jpg?1783927702" />

        <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">
            Arch of Orazca
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            special
          </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="Arch of Orazca" src="https://cards.scryfall.io/large/front/f/2/f2216c70-91c2-43d5-9156-9b4f7828c821.jpg?1783927702" />
    </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.48
              </span>

            </div>
          </div>

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

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

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.04</span>
              <span class="text-xs text-grey-text">Credit: $0.05</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;:6.25},{&quot;2026-06-12&quot;:6.25},{&quot;2026-06-13&quot;:6.25},{&quot;2026-06-14&quot;:6.48},{&quot;2026-06-15&quot;:6.48},{&quot;2026-06-16&quot;:6.48},{&quot;2026-06-17&quot;:6.48},{&quot;2026-06-18&quot;:6.48},{&quot;2026-06-19&quot;:6.48},{&quot;2026-06-20&quot;:6.48},{&quot;2026-06-21&quot;:6.48},{&quot;2026-06-22&quot;:6.48},{&quot;2026-06-23&quot;:6.48},{&quot;2026-06-24&quot;:6.48},{&quot;2026-06-25&quot;:6.48},{&quot;2026-06-26&quot;:6.48},{&quot;2026-06-27&quot;:6.48},{&quot;2026-06-28&quot;:6.48},{&quot;2026-06-29&quot;:6.48},{&quot;2026-06-30&quot;:6.11},{&quot;2026-07-01&quot;:6.11},{&quot;2026-07-02&quot;:6.11},{&quot;2026-07-03&quot;:6.11},{&quot;2026-07-04&quot;:6.11},{&quot;2026-07-05&quot;:6.11},{&quot;2026-07-06&quot;:6.11},{&quot;2026-07-07&quot;:6.11},{&quot;2026-07-08&quot;:6.11},{&quot;2026-07-09&quot;:6.11},{&quot;2026-07-10&quot;:6.11},{&quot;2026-07-11&quot;:6.11},{&quot;2026-07-12&quot;:6.11},{&quot;2026-07-13&quot;:6.11},{&quot;2026-07-14&quot;:6.11},{&quot;2026-07-15&quot;:6.11},{&quot;2026-07-16&quot;:6.11},{&quot;2026-07-17&quot;:6.11},{&quot;2026-07-18&quot;:6.11},{&quot;2026-07-19&quot;:6.11},{&quot;2026-07-20&quot;:6.11},{&quot;2026-07-21&quot;:6.11},{&quot;2026-07-23&quot;:5.85},{&quot;2026-07-25&quot;:5.85},{&quot;2026-07-26&quot;:5.85},{&quot;2026-07-27&quot;:5.85},{&quot;2026-07-28&quot;:5.85},{&quot;2026-07-29&quot;:5.85},{&quot;2026-07-30&quot;:5.85},{&quot;2026-07-31&quot;:5.85},{&quot;2026-08-01&quot;:5.85},{&quot;2026-08-02&quot;:5.85},{&quot;2026-08-03&quot;:5.85},{&quot;2026-08-04&quot;:5.85},{&quot;2026-08-05&quot;:5.85},{&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.85},{&quot;2026-08-12&quot;:5.85},{&quot;2026-08-13&quot;:5.85},{&quot;2026-08-14&quot;:5.85},{&quot;2026-08-15&quot;:5.85},{&quot;2026-08-16&quot;:5.85},{&quot;2026-08-17&quot;:5.85},{&quot;2026-08-18&quot;:5.85},{&quot;2026-08-19&quot;:5.85},{&quot;2026-08-20&quot;:5.85},{&quot;2026-08-21&quot;:5.85},{&quot;2026-08-22&quot;:5.85},{&quot;2026-08-23&quot;:5.85},{&quot;2026-08-24&quot;:5.85},{&quot;2026-08-25&quot;:5.85},{&quot;2026-08-26&quot;:5.85},{&quot;2026-08-27&quot;:5.85},{&quot;2026-08-28&quot;:5.85},{&quot;2026-08-29&quot;:5.85},{&quot;2026-08-30&quot;:5.85},{&quot;2026-08-31&quot;:5.85},{&quot;2026-09-01&quot;:5.85},{&quot;2026-09-02&quot;:6.2},{&quot;2026-09-03&quot;:6.2},{&quot;2026-09-04&quot;:6.2},{&quot;2026-09-05&quot;:6.2},{&quot;2026-09-06&quot;:6.2},{&quot;2026-09-07&quot;:6.2},{&quot;2026-09-08&quot;:6.2},{&quot;2026-09-09&quot;:6.2},{&quot;2026-09-10&quot;:6.2},{&quot;2026-09-11&quot;:6.2}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:0.41},{&quot;2026-06-12&quot;:0.41},{&quot;2026-06-13&quot;:0.41},{&quot;2026-06-14&quot;:0.41},{&quot;2026-06-15&quot;:0.42},{&quot;2026-06-16&quot;:0.42},{&quot;2026-06-17&quot;:0.42},{&quot;2026-06-18&quot;:0.42},{&quot;2026-06-19&quot;:0.42},{&quot;2026-06-20&quot;:0.43},{&quot;2026-06-21&quot;:0.43},{&quot;2026-06-22&quot;:0.43},{&quot;2026-06-23&quot;:0.44},{&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.43},{&quot;2026-06-29&quot;:0.43},{&quot;2026-06-30&quot;:0.43},{&quot;2026-07-01&quot;:0.43},{&quot;2026-07-02&quot;:0.43},{&quot;2026-07-03&quot;:0.43},{&quot;2026-07-04&quot;:0.44},{&quot;2026-07-05&quot;:0.44},{&quot;2026-07-06&quot;:0.44},{&quot;2026-07-07&quot;:0.44},{&quot;2026-07-08&quot;:0.44},{&quot;2026-07-09&quot;:0.44},{&quot;2026-07-10&quot;:0.44},{&quot;2026-07-11&quot;:0.44},{&quot;2026-07-12&quot;:0.44},{&quot;2026-07-13&quot;:0.44},{&quot;2026-07-14&quot;:0.44},{&quot;2026-07-15&quot;:0.44},{&quot;2026-07-16&quot;:0.44},{&quot;2026-07-17&quot;:0.44},{&quot;2026-07-18&quot;:0.44},{&quot;2026-07-19&quot;:0.44},{&quot;2026-07-20&quot;:0.44},{&quot;2026-07-21&quot;:0.44},{&quot;2026-07-23&quot;:0.44},{&quot;2026-07-25&quot;:0.45},{&quot;2026-07-26&quot;:0.45},{&quot;2026-07-27&quot;:0.45},{&quot;2026-07-28&quot;:0.45},{&quot;2026-07-29&quot;:0.45},{&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.45},{&quot;2026-08-03&quot;:0.45},{&quot;2026-08-04&quot;:0.45},{&quot;2026-08-05&quot;:0.45},{&quot;2026-08-07&quot;:0.45},{&quot;2026-08-08&quot;:0.45},{&quot;2026-08-09&quot;:0.45},{&quot;2026-08-10&quot;:0.45},{&quot;2026-08-11&quot;:0.45},{&quot;2026-08-12&quot;:0.45},{&quot;2026-08-13&quot;:0.45},{&quot;2026-08-14&quot;:0.46},{&quot;2026-08-15&quot;:0.46},{&quot;2026-08-16&quot;:0.46},{&quot;2026-08-17&quot;:0.46},{&quot;2026-08-18&quot;:0.46},{&quot;2026-08-19&quot;:0.46},{&quot;2026-08-20&quot;:0.46},{&quot;2026-08-21&quot;:0.46},{&quot;2026-08-22&quot;:0.46},{&quot;2026-08-23&quot;:0.46},{&quot;2026-08-24&quot;:0.46},{&quot;2026-08-25&quot;:0.46},{&quot;2026-08-26&quot;:0.49},{&quot;2026-08-27&quot;:0.49},{&quot;2026-08-28&quot;:0.49},{&quot;2026-08-29&quot;:0.49},{&quot;2026-08-30&quot;:0.49},{&quot;2026-08-31&quot;:0.49},{&quot;2026-09-01&quot;:0.49},{&quot;2026-09-02&quot;:0.48},{&quot;2026-09-03&quot;:0.48},{&quot;2026-09-04&quot;:0.48},{&quot;2026-09-05&quot;:0.48},{&quot;2026-09-06&quot;:0.48},{&quot;2026-09-07&quot;:0.46},{&quot;2026-09-08&quot;:0.46},{&quot;2026-09-09&quot;:0.48},{&quot;2026-09-10&quot;:0.48},{&quot;2026-09-11&quot;:0.48}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Omnath, Locus of Rage" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/8/08c14bb4-c9d9-41ce-a075-a441522a52c6.jpg?1783929455" />

        <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">
            Omnath, Locus of Rage
        </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 — Elemental</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><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="Omnath, Locus of Rage" src="https://cards.scryfall.io/large/front/0/8/08c14bb4-c9d9-41ce-a075-a441522a52c6.jpg?1783929455" />
    </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.48
              </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.10</span>
              <span class="text-xs text-grey-text">Credit: $0.13</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-12&quot;:1.11},{&quot;2026-06-13&quot;:1.11},{&quot;2026-06-14&quot;:1.11},{&quot;2026-06-15&quot;:1.14},{&quot;2026-06-16&quot;:1.14},{&quot;2026-06-17&quot;:1.15},{&quot;2026-06-18&quot;:1.16},{&quot;2026-06-19&quot;:1.16},{&quot;2026-06-20&quot;:1.16},{&quot;2026-06-21&quot;:1.16},{&quot;2026-06-22&quot;:1.16},{&quot;2026-06-23&quot;:1.16},{&quot;2026-06-24&quot;:1.16},{&quot;2026-06-25&quot;:1.13},{&quot;2026-06-26&quot;:1.13},{&quot;2026-06-27&quot;:1.08},{&quot;2026-06-28&quot;:1.08},{&quot;2026-06-29&quot;:1.06},{&quot;2026-06-30&quot;:1.06},{&quot;2026-07-01&quot;:1.06},{&quot;2026-07-02&quot;:1.06},{&quot;2026-07-03&quot;:1.06},{&quot;2026-07-04&quot;:1.06},{&quot;2026-07-05&quot;:1.06},{&quot;2026-07-06&quot;:1.06},{&quot;2026-07-07&quot;:1.04},{&quot;2026-07-08&quot;:1.04},{&quot;2026-07-09&quot;:1.04},{&quot;2026-07-10&quot;:1.04},{&quot;2026-07-11&quot;:1.04},{&quot;2026-07-12&quot;:1.04},{&quot;2026-07-13&quot;:1.04},{&quot;2026-07-14&quot;:1.04},{&quot;2026-07-15&quot;:1.04},{&quot;2026-07-16&quot;:1.04},{&quot;2026-07-17&quot;:1.04},{&quot;2026-07-18&quot;:1.04},{&quot;2026-07-19&quot;:1.04},{&quot;2026-07-20&quot;:1.04},{&quot;2026-07-21&quot;:1.01},{&quot;2026-07-23&quot;:1.01},{&quot;2026-07-24&quot;:1.01},{&quot;2026-07-25&quot;:0.99},{&quot;2026-07-26&quot;:0.99},{&quot;2026-07-27&quot;:0.99},{&quot;2026-07-28&quot;:0.98},{&quot;2026-07-29&quot;:0.98},{&quot;2026-07-30&quot;:0.98},{&quot;2026-07-31&quot;:0.98},{&quot;2026-08-01&quot;:0.98},{&quot;2026-08-02&quot;:0.98},{&quot;2026-08-03&quot;:0.98},{&quot;2026-08-04&quot;:0.98},{&quot;2026-08-05&quot;:0.98},{&quot;2026-08-07&quot;:0.98},{&quot;2026-08-08&quot;:0.98},{&quot;2026-08-09&quot;:0.98},{&quot;2026-08-10&quot;:0.98},{&quot;2026-08-11&quot;:0.98},{&quot;2026-08-12&quot;:0.98},{&quot;2026-08-13&quot;:0.98},{&quot;2026-08-14&quot;:0.98},{&quot;2026-08-15&quot;:0.98},{&quot;2026-08-16&quot;:0.98},{&quot;2026-08-17&quot;:0.93},{&quot;2026-08-18&quot;:0.92},{&quot;2026-08-19&quot;:0.92},{&quot;2026-08-20&quot;:0.92},{&quot;2026-08-21&quot;:0.88},{&quot;2026-08-22&quot;:0.88},{&quot;2026-08-23&quot;:0.88},{&quot;2026-08-24&quot;:0.81},{&quot;2026-08-25&quot;:0.78},{&quot;2026-08-26&quot;:0.74},{&quot;2026-08-27&quot;:0.74},{&quot;2026-08-28&quot;:0.75},{&quot;2026-08-29&quot;:0.75},{&quot;2026-08-30&quot;:0.7},{&quot;2026-08-31&quot;:0.7},{&quot;2026-09-01&quot;:0.7},{&quot;2026-09-02&quot;:0.7},{&quot;2026-09-03&quot;:0.7},{&quot;2026-09-04&quot;:0.66},{&quot;2026-09-05&quot;:0.54},{&quot;2026-09-06&quot;:0.54},{&quot;2026-09-07&quot;:0.53},{&quot;2026-09-08&quot;:0.53},{&quot;2026-09-09&quot;:0.53},{&quot;2026-09-10&quot;:0.48},{&quot;2026-09-11&quot;:0.48}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.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="Rampaging Baloths" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/3/23086ce9-b1f6-4642-9146-45d40ad8c74f.jpg?1783934281" />

        <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">
            Rampaging Baloths
        </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 — Beast</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="Rampaging Baloths" src="https://cards.scryfall.io/large/front/2/3/23086ce9-b1f6-4642-9146-45d40ad8c74f.jpg?1783934281" />
    </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.44
              </span>

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

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.32</span>
              <span class="text-xs text-grey-text">Credit: $0.42</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.44},{&quot;2026-06-14&quot;:0.44},{&quot;2026-06-15&quot;:0.44},{&quot;2026-06-16&quot;:0.44},{&quot;2026-06-17&quot;:0.44},{&quot;2026-06-18&quot;:0.44},{&quot;2026-06-19&quot;:0.44},{&quot;2026-06-20&quot;:0.44},{&quot;2026-06-21&quot;:0.44},{&quot;2026-06-22&quot;:0.44},{&quot;2026-06-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.44},{&quot;2026-07-04&quot;:0.44},{&quot;2026-07-05&quot;:0.44},{&quot;2026-07-06&quot;:0.44},{&quot;2026-07-07&quot;:0.44},{&quot;2026-07-08&quot;:0.44},{&quot;2026-07-09&quot;:0.44},{&quot;2026-07-10&quot;:0.44},{&quot;2026-07-11&quot;:0.44},{&quot;2026-07-12&quot;:0.44},{&quot;2026-07-13&quot;:0.44},{&quot;2026-07-14&quot;:0.44},{&quot;2026-07-15&quot;:0.44},{&quot;2026-07-16&quot;:0.45},{&quot;2026-07-17&quot;:0.46},{&quot;2026-07-18&quot;:0.46},{&quot;2026-07-19&quot;:0.46},{&quot;2026-07-20&quot;:0.46},{&quot;2026-07-21&quot;:0.46},{&quot;2026-07-22&quot;:0.46},{&quot;2026-07-23&quot;:0.46},{&quot;2026-07-24&quot;:0.46},{&quot;2026-07-25&quot;:0.46},{&quot;2026-07-26&quot;:0.46},{&quot;2026-07-27&quot;:0.46},{&quot;2026-07-28&quot;:0.46},{&quot;2026-07-29&quot;:0.46},{&quot;2026-07-30&quot;:0.46},{&quot;2026-07-31&quot;:0.46},{&quot;2026-08-01&quot;:0.46},{&quot;2026-08-02&quot;:0.46},{&quot;2026-08-03&quot;:0.46},{&quot;2026-08-04&quot;:0.46},{&quot;2026-08-05&quot;:0.46},{&quot;2026-08-07&quot;:0.46},{&quot;2026-08-08&quot;:0.46},{&quot;2026-08-09&quot;:0.46},{&quot;2026-08-10&quot;:0.46},{&quot;2026-08-11&quot;:0.46},{&quot;2026-08-12&quot;:0.46},{&quot;2026-08-13&quot;:0.46},{&quot;2026-08-14&quot;:0.46},{&quot;2026-08-15&quot;:0.43},{&quot;2026-08-16&quot;:0.43},{&quot;2026-08-17&quot;:0.43},{&quot;2026-08-18&quot;:0.43},{&quot;2026-08-19&quot;:0.43},{&quot;2026-08-20&quot;:0.43},{&quot;2026-08-21&quot;:0.43},{&quot;2026-08-22&quot;:0.43},{&quot;2026-08-23&quot;:0.43},{&quot;2026-08-24&quot;:0.43},{&quot;2026-08-25&quot;:0.43},{&quot;2026-08-26&quot;:0.43},{&quot;2026-08-27&quot;:0.43},{&quot;2026-08-28&quot;:0.43},{&quot;2026-08-29&quot;:0.43},{&quot;2026-08-30&quot;:0.43},{&quot;2026-08-31&quot;:0.43},{&quot;2026-09-01&quot;:0.43},{&quot;2026-09-02&quot;:0.43},{&quot;2026-09-03&quot;:0.43},{&quot;2026-09-04&quot;:0.43},{&quot;2026-09-05&quot;:0.43},{&quot;2026-09-06&quot;:0.43},{&quot;2026-09-07&quot;:0.44},{&quot;2026-09-08&quot;:0.44},{&quot;2026-09-09&quot;:0.44},{&quot;2026-09-10&quot;:0.44},{&quot;2026-09-11&quot;:0.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="9907"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c18 ss-common ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Command Tower" src="https://cards.scryfall.io/large/front/6/d/6d28946e-a478-4e0b-b39b-ec0236ddc9a5.jpg?1783934250" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Harrow" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/5/7/57f5bd8a-338f-48eb-857f-25f644ff84af.jpg?1783934285" />

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

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-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="Harrow" src="https://cards.scryfall.io/large/front/5/7/57f5bd8a-338f-48eb-857f-25f644ff84af.jpg?1783934285" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

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

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

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

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

        <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/8/0/801b5a17-491e-416f-990d-187fce6c4ce4.jpg?1783922378" />
    </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.36
              </span>

            </div>
          </div>

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

        <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">
            Lavalanche
        </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-x'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><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="Lavalanche" src="https://cards.scryfall.io/large/front/b/a/bae0c85b-c597-4502-971c-186a78b47673.jpg?1783934273" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

      </div>


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

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

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

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

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

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

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

        <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">
            Gruul Turf
        </h3>

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Gruul Turf" src="https://cards.scryfall.io/large/front/e/3/e35f6346-2871-49fb-af42-6f9f20727626.jpg?1783934246" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

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

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


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Insect
      </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.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="Crash of Rhino Beetles" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/8/c87715d6-4ce1-43d8-9909-e1d80c2d099f.jpg?1783934334" />

        <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">
            Crash of Rhino Beetles
        </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 — Insect</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Crash of Rhino Beetles" src="https://cards.scryfall.io/large/front/c/8/c87715d6-4ce1-43d8-9909-e1d80c2d099f.jpg?1783934334" />
    </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">
                  ↓
                  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.04</span>
              <span class="text-xs text-grey-text">Credit: $0.05</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.34},{&quot;2026-06-12&quot;:0.34},{&quot;2026-06-13&quot;:0.36},{&quot;2026-06-14&quot;:0.36},{&quot;2026-06-15&quot;:0.35},{&quot;2026-06-16&quot;:0.35},{&quot;2026-06-17&quot;:0.34},{&quot;2026-06-18&quot;:0.34},{&quot;2026-06-19&quot;:0.34},{&quot;2026-06-20&quot;:0.34},{&quot;2026-06-21&quot;:0.34},{&quot;2026-06-22&quot;:0.34},{&quot;2026-06-23&quot;:0.34},{&quot;2026-06-24&quot;:0.34},{&quot;2026-06-25&quot;:0.34},{&quot;2026-06-26&quot;:0.34},{&quot;2026-06-27&quot;:0.34},{&quot;2026-06-28&quot;:0.34},{&quot;2026-06-29&quot;:0.34},{&quot;2026-06-30&quot;:0.34},{&quot;2026-07-01&quot;:0.34},{&quot;2026-07-02&quot;:0.34},{&quot;2026-07-03&quot;:0.34},{&quot;2026-07-04&quot;:0.34},{&quot;2026-07-05&quot;:0.34},{&quot;2026-07-06&quot;:0.34},{&quot;2026-07-07&quot;:0.34},{&quot;2026-07-08&quot;:0.34},{&quot;2026-07-09&quot;:0.34},{&quot;2026-07-10&quot;:0.34},{&quot;2026-07-11&quot;:0.34},{&quot;2026-07-12&quot;:0.34},{&quot;2026-07-13&quot;:0.34},{&quot;2026-07-14&quot;:0.34},{&quot;2026-07-15&quot;:0.34},{&quot;2026-07-16&quot;:0.32},{&quot;2026-07-17&quot;:0.32},{&quot;2026-07-18&quot;:0.32},{&quot;2026-07-19&quot;:0.32},{&quot;2026-07-20&quot;:0.32},{&quot;2026-07-21&quot;:0.32},{&quot;2026-07-23&quot;:0.32},{&quot;2026-07-25&quot;:0.32},{&quot;2026-07-26&quot;:0.32},{&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.31},{&quot;2026-07-31&quot;:0.31},{&quot;2026-08-01&quot;:0.31},{&quot;2026-08-02&quot;:0.31},{&quot;2026-08-03&quot;:0.31},{&quot;2026-08-04&quot;:0.32},{&quot;2026-08-05&quot;:0.32},{&quot;2026-08-07&quot;:0.32},{&quot;2026-08-08&quot;:0.32},{&quot;2026-08-09&quot;:0.32},{&quot;2026-08-10&quot;:0.32},{&quot;2026-08-11&quot;:0.32},{&quot;2026-08-12&quot;:0.32},{&quot;2026-08-13&quot;:0.32},{&quot;2026-08-14&quot;:0.32},{&quot;2026-08-15&quot;:0.32},{&quot;2026-08-16&quot;:0.32},{&quot;2026-08-17&quot;:0.32},{&quot;2026-08-18&quot;:0.32},{&quot;2026-08-19&quot;:0.32},{&quot;2026-08-20&quot;:0.32},{&quot;2026-08-21&quot;:0.32},{&quot;2026-08-22&quot;:0.32},{&quot;2026-08-23&quot;:0.32},{&quot;2026-08-24&quot;:0.32},{&quot;2026-08-25&quot;:0.32},{&quot;2026-08-26&quot;:0.32},{&quot;2026-08-27&quot;:0.32},{&quot;2026-08-28&quot;:0.32},{&quot;2026-08-29&quot;:0.32},{&quot;2026-08-30&quot;:0.32},{&quot;2026-08-31&quot;:0.33},{&quot;2026-09-01&quot;:0.33},{&quot;2026-09-02&quot;:0.33},{&quot;2026-09-03&quot;:0.33},{&quot;2026-09-04&quot;:0.33},{&quot;2026-09-05&quot;:0.33},{&quot;2026-09-06&quot;:0.33},{&quot;2026-09-07&quot;:0.33},{&quot;2026-09-08&quot;:0.33},{&quot;2026-09-09&quot;:0.33},{&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="9895"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c18 ss-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">
            Blighted Woodland
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.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="Blighted Woodland" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/6/c/6cab6ff3-d561-4ba6-96a4-304dd1ee53b7.jpg?1783934252" />

        <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">
            Blighted Woodland
        </h3>

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Blighted Woodland" src="https://cards.scryfall.io/large/front/6/c/6cab6ff3-d561-4ba6-96a4-304dd1ee53b7.jpg?1783934252" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

      </div>

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.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="Rakdos Carnarium" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/8/b892b2d1-9d9b-46ac-bad6-490de5b32fb8.jpg?1783934237" />

        <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">
            Rakdos Carnarium
        </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="Rakdos Carnarium" src="https://cards.scryfall.io/large/front/b/8/b892b2d1-9d9b-46ac-bad6-490de5b32fb8.jpg?1783934237" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.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.33},{&quot;2026-06-14&quot;:0.33},{&quot;2026-06-15&quot;:0.33},{&quot;2026-06-16&quot;:0.33},{&quot;2026-06-17&quot;:0.33},{&quot;2026-06-18&quot;:0.33},{&quot;2026-06-19&quot;:0.33},{&quot;2026-06-20&quot;:0.33},{&quot;2026-06-21&quot;:0.33},{&quot;2026-06-22&quot;:0.33},{&quot;2026-06-23&quot;:0.33},{&quot;2026-06-24&quot;:0.33},{&quot;2026-06-25&quot;:0.33},{&quot;2026-06-26&quot;:0.33},{&quot;2026-06-27&quot;:0.33},{&quot;2026-06-28&quot;:0.33},{&quot;2026-06-29&quot;:0.33},{&quot;2026-06-30&quot;:0.33},{&quot;2026-07-01&quot;:0.33},{&quot;2026-07-02&quot;:0.33},{&quot;2026-07-03&quot;:0.33},{&quot;2026-07-04&quot;:0.33},{&quot;2026-07-05&quot;:0.33},{&quot;2026-07-06&quot;:0.33},{&quot;2026-07-07&quot;:0.33},{&quot;2026-07-08&quot;:0.33},{&quot;2026-07-09&quot;:0.33},{&quot;2026-07-10&quot;:0.33},{&quot;2026-07-11&quot;:0.33},{&quot;2026-07-12&quot;:0.33},{&quot;2026-07-13&quot;:0.33},{&quot;2026-07-14&quot;:0.33},{&quot;2026-07-15&quot;:0.33},{&quot;2026-07-16&quot;:0.33},{&quot;2026-07-17&quot;:0.33},{&quot;2026-07-18&quot;:0.33},{&quot;2026-07-19&quot;:0.33},{&quot;2026-07-20&quot;:0.33},{&quot;2026-07-21&quot;:0.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.33},{&quot;2026-07-28&quot;:0.33},{&quot;2026-07-29&quot;:0.33},{&quot;2026-07-30&quot;:0.33},{&quot;2026-07-31&quot;:0.33},{&quot;2026-08-01&quot;:0.33},{&quot;2026-08-02&quot;:0.33},{&quot;2026-08-03&quot;:0.33},{&quot;2026-08-04&quot;:0.33},{&quot;2026-08-05&quot;:0.33},{&quot;2026-08-07&quot;:0.33},{&quot;2026-08-08&quot;:0.33},{&quot;2026-08-09&quot;:0.33},{&quot;2026-08-10&quot;:0.33},{&quot;2026-08-11&quot;:0.33},{&quot;2026-08-12&quot;:0.33},{&quot;2026-08-13&quot;:0.33},{&quot;2026-08-14&quot;:0.33},{&quot;2026-08-15&quot;:0.33},{&quot;2026-08-16&quot;:0.32},{&quot;2026-08-17&quot;:0.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.33},{&quot;2026-08-26&quot;:0.33},{&quot;2026-08-27&quot;:0.33},{&quot;2026-08-28&quot;:0.33},{&quot;2026-08-29&quot;:0.33},{&quot;2026-08-30&quot;:0.33},{&quot;2026-08-31&quot;:0.33},{&quot;2026-09-01&quot;:0.33},{&quot;2026-09-02&quot;:0.33},{&quot;2026-09-03&quot;:0.32},{&quot;2026-09-04&quot;:0.32},{&quot;2026-09-05&quot;:0.32},{&quot;2026-09-06&quot;:0.32},{&quot;2026-09-07&quot;:0.32},{&quot;2026-09-08&quot;:0.32},{&quot;2026-09-09&quot;:0.32},{&quot;2026-09-10&quot;:0.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="18817"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-dmu ss-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">
            Soul of Windgrace
        </span>


      </div>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Soul of Windgrace" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/e/7/e775a2e6-e701-4cb8-8c0b-718d3508f6b6.jpg?1783921275" />

        <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">
            Soul of Windgrace
        </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 — Cat Avatar</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><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="Soul of Windgrace" src="https://cards.scryfall.io/large/front/e/7/e775a2e6-e701-4cb8-8c0b-718d3508f6b6.jpg?1783921275" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

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

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

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

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.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="Golgari Rot Farm" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/9/a96c8d2b-c91b-475d-b929-461adda983a9.jpg?1783934249" />

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Golgari Rot Farm" src="https://cards.scryfall.io/large/front/a/9/a96c8d2b-c91b-475d-b929-461adda983a9.jpg?1783934249" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

      </div>

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="9760"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c18 ss-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">
            Savage Twister
        </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">
            $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="Savage Twister" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/6/06ec1b2d-06dd-4364-a913-c34889b70fa1.jpg?1783934269" />

        <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">
            Savage Twister
        </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-x'></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="Savage Twister" src="https://cards.scryfall.io/large/front/0/6/06ec1b2d-06dd-4364-a913-c34889b70fa1.jpg?1783934269" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>


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

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

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

        <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/8/8/8822db23-34dc-452a-92bc-a3ceee4db375.jpg?1783915052" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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


    <div
      class="
        flex flex-col gap-2 w-full px-4 py-3 mt-2 bg-foreground text-sm
        rounded-xl
      "
    >
      <div class="text-grey-text"><span class="pagy info">Displaying items 1-50 of 59 in total</span></div>

      <div class="overflow-x-auto">
        <nav class="pagy series-nav" aria-label="Pages"><a role="link" aria-disabled="true" aria-label="Previous">&lt;</a><a role="link" aria-disabled="true" aria-current="page">1</a><a href="/load_collection?collection_id=11&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next">2</a><a href="/load_collection?collection_id=11&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next" aria-label="Next">&gt;</a></nav>
      </div>
    </div>
</div>

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-ltc ss-mythic ss-fw ss-2x mr-4"></i>
              Urborg, Tomb of Yawgmoth


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

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

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-neo ss-rare ss-fw ss-2x mr-4"></i>
              Boseiju, Who Endures


            </td>

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

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

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

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

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

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


            </td>

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

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

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

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

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="93146"
          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">
              138
            </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-mythic ss-fw ss-2x mr-4"></i>
              Craterhoof Behemoth


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Beast
            </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><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">
                  $29.64

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="19300"
          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">
              442
            </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>
              Worldly Tutor


            </td>

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

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

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

                </div>
            </td>

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

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

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

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

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

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

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


            </td>

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="96614"
          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">
              192
            </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>
              Icetill Explorer


            </td>

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

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

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="16182"
          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">
              188
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-m21 ss-rare ss-fw ss-2x mr-4"></i>
              Heroic Intervention


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $16.69

                    <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">
                $11.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.90
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="16182"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_16182" src="/boxset_card/16182?collection_id=11&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="9313"
          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">
              43
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c18 ss-mythic ss-fw ss-2x mr-4"></i>
              Lord Windgrace


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Planeswalker — Windgrace
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><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">
                  $15.39

                    <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.00
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.71
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="9313"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_9313" src="/boxset_card/9313?collection_id=11&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="14053"
          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">
              679
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmm ss-rare ss-fw ss-2x mr-4"></i>
              Azusa, Lost but Seeking


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Human Monk
            </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">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $14.70

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $10.00
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.91
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="14053"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_14053" src="/boxset_card/14053?collection_id=11&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="21075"
          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">
              334
            </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-mythic ss-fw ss-2x mr-4"></i>
              Wrenn and Six


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Planeswalker — Wrenn
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $12.03

                </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">
                1.13
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="21075"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_21075" src="/boxset_card/21075?collection_id=11&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="97978"
          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-ecl ss-rare ss-fw ss-2x mr-4"></i>
              Blood Crypt


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land — Swamp 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">
                  $9.02

                    <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">
                $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.22
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="97978"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_97978" src="/boxset_card/97978?collection_id=11&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="96264"
          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">
              283
            </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.38

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      15%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $3.70
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.19
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="96264"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_96264" src="/boxset_card/96264?collection_id=11&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="46648"
          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">
              322
            </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-mythic ss-fw ss-2x mr-4"></i>
              Wrenn and Realmbreaker


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Planeswalker — Wrenn
            </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">
                  $7.16

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $3.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.38
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="46648"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_46648" src="/boxset_card/46648?collection_id=11&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="49415"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              243
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mh1 ss-rare ss-fw ss-2x mr-4"></i>
              Nurturing Peatland


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $6.84

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $4.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.14
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="49415"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_49415" src="/boxset_card/49415?collection_id=11&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="21087"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              381
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2xm 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">
                  $2.12

                    <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">
                <div class="flex items-center gap-2">
                  $6.00

                    <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">
                $1.60
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $2.40
            </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="21087"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_21087" src="/boxset_card/21087?collection_id=11&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="79896"
          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">
              406
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tsr ss-special ss-fw ss-2x mr-4"></i>
              Bojuka Bog


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $5.80

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $4.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.45
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="79896"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_79896" src="/boxset_card/79896?collection_id=11&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="49576"
          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-mh2 ss-mythic ss-fw ss-2x mr-4"></i>
              Titania, Protector of Argoth

                <span
                  class="
                    ml-2 px-1.5 py-0.5 text-xs rounded bg-purple-900/30
                    text-purple-400 border border-purple-500/30
                  "
                  title="Etched finish"
                >
                  E
                </span>

            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Elemental
            </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">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $4.07

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $3.85
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.34
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="49576"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_49576" src="/boxset_card/49576?collection_id=11&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="20447"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              161
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2xm ss-uncommon ss-fw ss-2x mr-4"></i>
              Crop Rotation


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.72

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      4%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $2.75
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.92
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="20447"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_20447" src="/boxset_card/20447?collection_id=11&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="91079"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              275
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-inr ss-rare ss-fw ss-2x mr-4"></i>
              Deathcap Glade


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.55

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      13%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.85
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.11
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="91079"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_91079" src="/boxset_card/91079?collection_id=11&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="57447"
          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-one ss-rare ss-fw ss-2x mr-4"></i>
              Conduit of Worlds


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.34

                    <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">
                $0.60
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.40
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="57447"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_57447" src="/boxset_card/57447?collection_id=11&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="35512"
          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">
              221
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-vow ss-rare ss-fw ss-2x mr-4"></i>
              Splendid Reclamation


            </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">
                  $2.37

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      5%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.61
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="35512"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_35512" src="/boxset_card/35512?collection_id=11&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="34286"
          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">
              164
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-iko ss-uncommon ss-fw ss-2x mr-4"></i>
              Migration Path


            </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">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.28

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      7%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.45
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.15
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="34286"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_34286" src="/boxset_card/34286?collection_id=11&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="5125"
          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">
              99
            </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>
              Iridescent Vinelasher


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Lizard Assassin
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.05

                    <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">
                $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.17
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="5125"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_5125" src="/boxset_card/5125?collection_id=11&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="18433"
          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">
              89
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-dmu ss-uncommon ss-fw ss-2x mr-4"></i>
              Cut Down


            </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-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.88

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      147%
                    </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.25
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="18433"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_18433" src="/boxset_card/18433?collection_id=11&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="9543"
          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">
              119
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c18 ss-uncommon ss-fw ss-2x mr-4"></i>
              Stitch Together


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.44

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      5%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.80
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.25
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="9543"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_9543" src="/boxset_card/9543?collection_id=11&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="14209"
          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">
              794
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-clb ss-rare ss-fw ss-2x mr-4"></i>
              Geode Rager


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Elemental
            </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">
                  $1.43

                    <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.80
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.42
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="14209"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_14209" src="/boxset_card/14209?collection_id=11&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="49449"
          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">
              254
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mh1 ss-common ss-fw ss-2x mr-4"></i>
              Snow-Covered Forest


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Basic Snow 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">
                      ↓
                      8%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.15
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="49449"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_49449" src="/boxset_card/49449?collection_id=11&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="86745"
          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">
              264
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-woe ss-common ss-fw ss-2x mr-4"></i>
              Swamp


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Basic Land — Swamp
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.82

                    <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">
                <div class="flex items-center gap-2">
                  $1.10

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.40
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.50
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.33
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="86745"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_86745" src="/boxset_card/86745?collection_id=11&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="49446"
          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">
              253
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mh1 ss-common ss-fw ss-2x mr-4"></i>
              Snow-Covered Mountain


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Basic Snow 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">
                  $1.03

                    <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.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.05
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="49446"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_49446" src="/boxset_card/49446?collection_id=11&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="49443"
          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-mh1 ss-common ss-fw ss-2x mr-4"></i>
              Snow-Covered Swamp


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Basic Snow Land — Swamp
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.90

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      10%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.26
            </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.05
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="49443"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_49443" src="/boxset_card/49443?collection_id=11&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="9674"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              161
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c18 ss-rare ss-fw ss-2x mr-4"></i>
              Scute Mob


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Insect
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.71

                </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.30
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="9674"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_9674" src="/boxset_card/9674?collection_id=11&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="9602"
          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">
              138
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c18 ss-common ss-fw ss-2x mr-4"></i>
              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.61

                    <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.10
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.20
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="9602"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_9602" src="/boxset_card/9602?collection_id=11&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="95829"
          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">
              233
            </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-uncommon ss-fw ss-2x mr-4"></i>
              Tannuk, Memorial Ensign


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Kavu Pilot
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-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-50 text-badge-text">
                      ↑
                      23%
                    </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.26
            </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="95829"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_95829" src="/boxset_card/95829?collection_id=11&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="10007"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              275
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c18 ss-uncommon ss-fw ss-2x mr-4"></i>
              Savage Lands


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.49

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-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.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.11
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="10007"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_10007" src="/boxset_card/10007?collection_id=11&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="79892"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              404
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tsr ss-special ss-fw ss-2x mr-4"></i>
              Arch of Orazca


            </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.48

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.04
            </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="79892"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_79892" src="/boxset_card/79892?collection_id=11&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="89624"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              97
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-znc ss-mythic ss-fw ss-2x mr-4"></i>
              Omnath, Locus of Rage


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Elemental
            </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><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.48

                    <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.10
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.57
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="89624"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_89624" src="/boxset_card/89624?collection_id=11&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="9665"
          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">
              158
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c18 ss-rare ss-fw ss-2x mr-4"></i>
              Rampaging Baloths


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Beast
            </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.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">
                $0.32
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.44
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="9665"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_9665" src="/boxset_card/9665?collection_id=11&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="9907"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              240
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c18 ss-common ss-fw ss-2x mr-4"></i>
              Command Tower


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.38

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.06
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.38
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="9907"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_9907" src="/boxset_card/9907?collection_id=11&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="9642"
          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">
              150
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c18 ss-common ss-fw ss-2x mr-4"></i>
              Harrow


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.37

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $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.18
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="9642"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_9642" src="/boxset_card/9642?collection_id=11&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="14493"
          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">
              887
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-clb ss-rare ss-fw ss-2x mr-4"></i>
              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.36

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.18
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.10
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="14493"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_14493" src="/boxset_card/14493?collection_id=11&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="9741"
          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">
              184
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c18 ss-rare ss-fw ss-2x mr-4"></i>
              Lavalanche


            </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-x'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><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.34

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.06
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="9741"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_9741" src="/boxset_card/9741?collection_id=11&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="9941"
          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-c18 ss-uncommon ss-fw ss-2x mr-4"></i>
              Gruul Turf


            </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.34

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.05
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.12
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="9941"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_9941" src="/boxset_card/9941?collection_id=11&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="9271"
          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">
              29
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c18 ss-rare ss-fw ss-2x mr-4"></i>
              Crash of Rhino Beetles


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Insect
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-4'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.32

                    <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.04
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.13
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="9271"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_9271" src="/boxset_card/9271?collection_id=11&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="9895"
          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-c18 ss-uncommon ss-fw ss-2x mr-4"></i>
              Blighted Woodland


            </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.32

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.12
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="9895"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_9895" src="/boxset_card/9895?collection_id=11&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="10001"
          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">
              273
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c18 ss-common ss-fw ss-2x mr-4"></i>
              Rakdos Carnarium


            </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.32

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.04
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="10001"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_10001" src="/boxset_card/10001?collection_id=11&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="18817"
          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-dmu ss-mythic ss-fw ss-2x mr-4"></i>
              Soul of Windgrace


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Cat 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-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.31

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.10
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.32
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="18817"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_18817" src="/boxset_card/18817?collection_id=11&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="9932"
          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">
              249
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c18 ss-uncommon ss-fw ss-2x mr-4"></i>
              Golgari Rot Farm


            </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

                </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.07
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="9932"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_9932" src="/boxset_card/9932?collection_id=11&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="9760"
          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">
              190
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c18 ss-uncommon ss-fw ss-2x mr-4"></i>
              Savage Twister


            </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-x'></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">
                  $0.29

                    <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">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.29
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="9760"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_9760" src="/boxset_card/9760?collection_id=11&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="86749"
          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">
              265
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-woe ss-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.29

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.04
            </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="86749"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_86749" src="/boxset_card/86749?collection_id=11&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>
    </tbody>
  </table>

    <div class="flex flex-row items-center justify-between w-full p-6 space-x-4">
      <span class="pagy info">Displaying items 1-50 of 59 in total</span>
      <nav class="pagy series-nav" aria-label="Pages"><a role="link" aria-disabled="true" aria-label="Previous">&lt;</a><a role="link" aria-disabled="true" aria-current="page">1</a><a href="/load_collection?collection_id=11&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next">2</a><a href="/load_collection?collection_id=11&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next" aria-label="Next">&gt;</a></nav>
    </div>
</div>

</template></turbo-stream>