<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="6" 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="83586"
  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-usg ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Drake
      </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">
            $208.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="Gilded Drake" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/d/8de3fdae-cc2c-4a14-b15b-4fe1a983dfbf.jpg?1783946361" />

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Gilded Drake" src="https://cards.scryfall.io/large/front/8/d/8de3fdae-cc2c-4a14-b15b-4fe1a983dfbf.jpg?1783946361" />
    </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">
                $208.84
              </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">$160.00</span>
              <span class="text-xs text-grey-text">Credit: $208.00</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-11&quot;:189.24},{&quot;2026-06-12&quot;:189.24},{&quot;2026-06-13&quot;:189.24},{&quot;2026-06-14&quot;:189.24},{&quot;2026-06-15&quot;:189.24},{&quot;2026-06-16&quot;:189.24},{&quot;2026-06-17&quot;:189.24},{&quot;2026-06-18&quot;:189.24},{&quot;2026-06-19&quot;:189.64},{&quot;2026-06-20&quot;:189.64},{&quot;2026-06-21&quot;:190.37},{&quot;2026-06-22&quot;:190.37},{&quot;2026-06-23&quot;:190.37},{&quot;2026-06-24&quot;:190.37},{&quot;2026-06-25&quot;:190.37},{&quot;2026-06-26&quot;:190.37},{&quot;2026-06-27&quot;:190.37},{&quot;2026-06-28&quot;:190.37},{&quot;2026-06-29&quot;:195.44},{&quot;2026-06-30&quot;:195.44},{&quot;2026-07-01&quot;:195.25},{&quot;2026-07-02&quot;:195.25},{&quot;2026-07-03&quot;:195.25},{&quot;2026-07-04&quot;:196.2},{&quot;2026-07-05&quot;:196.2},{&quot;2026-07-06&quot;:196.2},{&quot;2026-07-07&quot;:196.2},{&quot;2026-07-08&quot;:196.2},{&quot;2026-07-09&quot;:196.2},{&quot;2026-07-10&quot;:196.36},{&quot;2026-07-11&quot;:196.36},{&quot;2026-07-12&quot;:196.36},{&quot;2026-07-13&quot;:195.77},{&quot;2026-07-14&quot;:195.28},{&quot;2026-07-15&quot;:195.28},{&quot;2026-07-16&quot;:195.59},{&quot;2026-07-17&quot;:195.59},{&quot;2026-07-18&quot;:196.06},{&quot;2026-07-19&quot;:196.06},{&quot;2026-07-20&quot;:196.06},{&quot;2026-07-21&quot;:196.06},{&quot;2026-07-23&quot;:196.06},{&quot;2026-07-25&quot;:196.39},{&quot;2026-07-26&quot;:196.39},{&quot;2026-07-27&quot;:199.68},{&quot;2026-07-28&quot;:198.32},{&quot;2026-07-29&quot;:198.32},{&quot;2026-07-30&quot;:201.19},{&quot;2026-07-31&quot;:201.5},{&quot;2026-08-01&quot;:201.5},{&quot;2026-08-02&quot;:201.5},{&quot;2026-08-03&quot;:201.5},{&quot;2026-08-04&quot;:201.5},{&quot;2026-08-05&quot;:201.5},{&quot;2026-08-07&quot;:201.93},{&quot;2026-08-08&quot;:202.1},{&quot;2026-08-09&quot;:202.1},{&quot;2026-08-10&quot;:202.1},{&quot;2026-08-11&quot;:202.1},{&quot;2026-08-12&quot;:202.1},{&quot;2026-08-13&quot;:202.1},{&quot;2026-08-14&quot;:202.1},{&quot;2026-08-15&quot;:203.76},{&quot;2026-08-16&quot;:206.1},{&quot;2026-08-17&quot;:206.1},{&quot;2026-08-18&quot;:206.1},{&quot;2026-08-19&quot;:206.1},{&quot;2026-08-20&quot;:206.1},{&quot;2026-08-21&quot;:206.48},{&quot;2026-08-22&quot;:206.48},{&quot;2026-08-23&quot;:206.48},{&quot;2026-08-24&quot;:206.48},{&quot;2026-08-25&quot;:206.48},{&quot;2026-08-26&quot;:207.59},{&quot;2026-08-27&quot;:207.59},{&quot;2026-08-28&quot;:207.59},{&quot;2026-08-29&quot;:207.59},{&quot;2026-08-30&quot;:207.59},{&quot;2026-08-31&quot;:207.59},{&quot;2026-09-01&quot;:207.59},{&quot;2026-09-02&quot;:208.84},{&quot;2026-09-03&quot;:208.84},{&quot;2026-09-04&quot;:208.84},{&quot;2026-09-05&quot;:208.84},{&quot;2026-09-06&quot;:208.84},{&quot;2026-09-07&quot;:208.84},{&quot;2026-09-08&quot;:208.84},{&quot;2026-09-09&quot;:208.84},{&quot;2026-09-10&quot;:208.84},{&quot;2026-09-11&quot;:208.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="53222"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb2 ss-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">
            Demonic Consultation
        </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">
            $149.52
          </span>
        </div>
      </div>
    </div>

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

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

        <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">
            Demonic Consultation
        </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="Demonic Consultation" src="https://cards.scryfall.io/large/front/8/d/8dd7eac8-d6df-48b2-8e64-bdf198c53264.jpg?1783910565" />
    </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">
                $8.88
              </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">
                $149.52
              </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">$112.00</span>
              <span class="text-xs text-grey-text">Credit: $145.60</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:145.19},{&quot;2026-06-14&quot;:145.19},{&quot;2026-06-15&quot;:144.11},{&quot;2026-06-16&quot;:144.11},{&quot;2026-06-17&quot;:144.03},{&quot;2026-06-18&quot;:144.03},{&quot;2026-06-19&quot;:144.03},{&quot;2026-06-20&quot;:144.03},{&quot;2026-06-21&quot;:144.03},{&quot;2026-06-22&quot;:144.03},{&quot;2026-06-23&quot;:144.03},{&quot;2026-06-24&quot;:144.03},{&quot;2026-06-25&quot;:144.83},{&quot;2026-06-26&quot;:144.83},{&quot;2026-06-27&quot;:144.83},{&quot;2026-06-28&quot;:144.83},{&quot;2026-06-29&quot;:145.55},{&quot;2026-06-30&quot;:145.55},{&quot;2026-07-01&quot;:144.89},{&quot;2026-07-02&quot;:144.89},{&quot;2026-07-03&quot;:144.89},{&quot;2026-07-04&quot;:144.89},{&quot;2026-07-05&quot;:144.89},{&quot;2026-07-06&quot;:144.89},{&quot;2026-07-07&quot;:144.89},{&quot;2026-07-08&quot;:144.89},{&quot;2026-07-09&quot;:144.89},{&quot;2026-07-10&quot;:144.89},{&quot;2026-07-11&quot;:144.89},{&quot;2026-07-12&quot;:144.89},{&quot;2026-07-13&quot;:144.89},{&quot;2026-07-14&quot;:146.25},{&quot;2026-07-15&quot;:146.25},{&quot;2026-07-16&quot;:146.25},{&quot;2026-07-17&quot;:146.25},{&quot;2026-07-18&quot;:146.25},{&quot;2026-07-19&quot;:146.25},{&quot;2026-07-20&quot;:146.25},{&quot;2026-07-21&quot;:146.25},{&quot;2026-07-22&quot;:146.25},{&quot;2026-07-23&quot;:147.71},{&quot;2026-07-24&quot;:147.71},{&quot;2026-07-25&quot;:149.61},{&quot;2026-07-26&quot;:149.61},{&quot;2026-07-27&quot;:150.45},{&quot;2026-07-28&quot;:150.45},{&quot;2026-07-29&quot;:150.45},{&quot;2026-07-30&quot;:150.72},{&quot;2026-07-31&quot;:150.72},{&quot;2026-08-01&quot;:150.72},{&quot;2026-08-02&quot;:150.72},{&quot;2026-08-03&quot;:150.72},{&quot;2026-08-04&quot;:150.72},{&quot;2026-08-05&quot;:150.72},{&quot;2026-08-07&quot;:150.72},{&quot;2026-08-08&quot;:150.72},{&quot;2026-08-09&quot;:150.72},{&quot;2026-08-10&quot;:150.72},{&quot;2026-08-11&quot;:150.72},{&quot;2026-08-12&quot;:150.72},{&quot;2026-08-13&quot;:150.72},{&quot;2026-08-14&quot;:150.72},{&quot;2026-08-15&quot;:150.72},{&quot;2026-08-16&quot;:150.72},{&quot;2026-08-17&quot;:150.72},{&quot;2026-08-18&quot;:150.72},{&quot;2026-08-19&quot;:150.67},{&quot;2026-08-20&quot;:150.67},{&quot;2026-08-21&quot;:150.67},{&quot;2026-08-22&quot;:150.67},{&quot;2026-08-23&quot;:150.67},{&quot;2026-08-24&quot;:150.67},{&quot;2026-08-25&quot;:150.67},{&quot;2026-08-26&quot;:150.67},{&quot;2026-08-27&quot;:150.08},{&quot;2026-08-28&quot;:150.08},{&quot;2026-08-29&quot;:150.08},{&quot;2026-08-30&quot;:150.77},{&quot;2026-08-31&quot;:150.77},{&quot;2026-09-01&quot;:150.77},{&quot;2026-09-02&quot;:150.77},{&quot;2026-09-03&quot;:150.77},{&quot;2026-09-04&quot;:149.52},{&quot;2026-09-05&quot;:149.52},{&quot;2026-09-06&quot;:149.52},{&quot;2026-09-07&quot;:149.52},{&quot;2026-09-08&quot;:149.52},{&quot;2026-09-09&quot;:149.52},{&quot;2026-09-10&quot;:149.52},{&quot;2026-09-11&quot;:149.52}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:7.06},{&quot;2026-06-14&quot;:7.26},{&quot;2026-06-15&quot;:7.85},{&quot;2026-06-16&quot;:7.86},{&quot;2026-06-17&quot;:7.88},{&quot;2026-06-18&quot;:7.82},{&quot;2026-06-19&quot;:7.85},{&quot;2026-06-20&quot;:7.85},{&quot;2026-06-21&quot;:7.67},{&quot;2026-06-22&quot;:7.83},{&quot;2026-06-23&quot;:8.06},{&quot;2026-06-24&quot;:8.33},{&quot;2026-06-25&quot;:8.13},{&quot;2026-06-26&quot;:8.04},{&quot;2026-06-27&quot;:8.08},{&quot;2026-06-28&quot;:8.08},{&quot;2026-06-29&quot;:8.12},{&quot;2026-06-30&quot;:8.18},{&quot;2026-07-01&quot;:8.18},{&quot;2026-07-02&quot;:8.0},{&quot;2026-07-03&quot;:8.09},{&quot;2026-07-04&quot;:8.21},{&quot;2026-07-05&quot;:7.79},{&quot;2026-07-06&quot;:7.79},{&quot;2026-07-07&quot;:7.8},{&quot;2026-07-08&quot;:7.57},{&quot;2026-07-09&quot;:7.58},{&quot;2026-07-10&quot;:7.54},{&quot;2026-07-11&quot;:7.57},{&quot;2026-07-12&quot;:7.57},{&quot;2026-07-13&quot;:7.6},{&quot;2026-07-14&quot;:7.6},{&quot;2026-07-15&quot;:7.71},{&quot;2026-07-16&quot;:7.6},{&quot;2026-07-17&quot;:7.37},{&quot;2026-07-18&quot;:7.35},{&quot;2026-07-19&quot;:7.38},{&quot;2026-07-20&quot;:7.51},{&quot;2026-07-21&quot;:7.51},{&quot;2026-07-22&quot;:7.45},{&quot;2026-07-23&quot;:7.44},{&quot;2026-07-24&quot;:7.34},{&quot;2026-07-25&quot;:7.49},{&quot;2026-07-26&quot;:7.49},{&quot;2026-07-27&quot;:7.47},{&quot;2026-07-28&quot;:7.47},{&quot;2026-07-29&quot;:7.57},{&quot;2026-07-30&quot;:7.54},{&quot;2026-07-31&quot;:7.28},{&quot;2026-08-01&quot;:7.31},{&quot;2026-08-02&quot;:7.37},{&quot;2026-08-03&quot;:6.93},{&quot;2026-08-04&quot;:6.95},{&quot;2026-08-05&quot;:6.91},{&quot;2026-08-07&quot;:7.25},{&quot;2026-08-08&quot;:7.51},{&quot;2026-08-09&quot;:7.12},{&quot;2026-08-10&quot;:7.18},{&quot;2026-08-11&quot;:7.41},{&quot;2026-08-12&quot;:7.25},{&quot;2026-08-13&quot;:7.81},{&quot;2026-08-14&quot;:7.81},{&quot;2026-08-15&quot;:7.58},{&quot;2026-08-16&quot;:7.34},{&quot;2026-08-17&quot;:6.97},{&quot;2026-08-18&quot;:6.86},{&quot;2026-08-19&quot;:7.05},{&quot;2026-08-20&quot;:7.12},{&quot;2026-08-21&quot;:7.19},{&quot;2026-08-22&quot;:7.13},{&quot;2026-08-23&quot;:7.36},{&quot;2026-08-24&quot;:7.6},{&quot;2026-08-25&quot;:7.61},{&quot;2026-08-26&quot;:7.87},{&quot;2026-08-27&quot;:7.87},{&quot;2026-08-28&quot;:7.68},{&quot;2026-08-29&quot;:7.68},{&quot;2026-08-30&quot;:8.13},{&quot;2026-08-31&quot;:8.42},{&quot;2026-09-01&quot;:8.61},{&quot;2026-09-02&quot;:8.62},{&quot;2026-09-03&quot;:8.71},{&quot;2026-09-04&quot;:8.76},{&quot;2026-09-05&quot;:8.88},{&quot;2026-09-06&quot;:8.9},{&quot;2026-09-07&quot;:8.47},{&quot;2026-09-08&quot;:8.43},{&quot;2026-09-09&quot;:8.43},{&quot;2026-09-10&quot;:8.8},{&quot;2026-09-11&quot;:8.88}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="97215"
  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-spm 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 Soul Stone
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Legendary Artifact — Infinity Stone
      </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">
            $98.21
          </span>
        </div>
      </div>
    </div>

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="The Soul Stone" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/9/1982f910-a9bd-4e94-a187-84381b22aacc.jpg?1783905342" />

        <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 Soul Stone
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Legendary Artifact — Infinity Stone</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>
          </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 Soul Stone" src="https://cards.scryfall.io/large/front/1/9/1982f910-a9bd-4e94-a187-84381b22aacc.jpg?1783905342" />
    </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">
                $98.21
              </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">
                $129.01
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-12&quot;:102.39},{&quot;2026-06-13&quot;:102.79},{&quot;2026-06-14&quot;:102.56},{&quot;2026-06-15&quot;:102.5},{&quot;2026-06-16&quot;:102.5},{&quot;2026-06-17&quot;:103.23},{&quot;2026-06-18&quot;:104.61},{&quot;2026-06-19&quot;:105.78},{&quot;2026-06-20&quot;:106.23},{&quot;2026-06-21&quot;:106.83},{&quot;2026-06-22&quot;:108.65},{&quot;2026-06-23&quot;:109.37},{&quot;2026-06-24&quot;:109.35},{&quot;2026-06-25&quot;:111.15},{&quot;2026-06-26&quot;:113.54},{&quot;2026-06-27&quot;:112.13},{&quot;2026-06-28&quot;:113.16},{&quot;2026-06-29&quot;:117.2},{&quot;2026-06-30&quot;:117.85},{&quot;2026-07-01&quot;:124.18},{&quot;2026-07-02&quot;:125.85},{&quot;2026-07-03&quot;:128.96},{&quot;2026-07-04&quot;:132.82},{&quot;2026-07-05&quot;:137.07},{&quot;2026-07-06&quot;:143.77},{&quot;2026-07-07&quot;:143.77},{&quot;2026-07-08&quot;:144.32},{&quot;2026-07-09&quot;:144.8},{&quot;2026-07-10&quot;:153.79},{&quot;2026-07-11&quot;:163.9},{&quot;2026-07-12&quot;:165.03},{&quot;2026-07-13&quot;:166.7},{&quot;2026-07-14&quot;:165.97},{&quot;2026-07-15&quot;:165.81},{&quot;2026-07-16&quot;:164.4},{&quot;2026-07-17&quot;:164.81},{&quot;2026-07-18&quot;:163.05},{&quot;2026-07-19&quot;:163.05},{&quot;2026-07-20&quot;:162.15},{&quot;2026-07-21&quot;:160.8},{&quot;2026-07-23&quot;:158.29},{&quot;2026-07-24&quot;:159.37},{&quot;2026-07-25&quot;:159.32},{&quot;2026-07-26&quot;:160.79},{&quot;2026-07-27&quot;:161.32},{&quot;2026-07-28&quot;:160.68},{&quot;2026-07-29&quot;:160.3},{&quot;2026-07-30&quot;:160.3},{&quot;2026-07-31&quot;:158.88},{&quot;2026-08-01&quot;:158.88},{&quot;2026-08-02&quot;:158.48},{&quot;2026-08-03&quot;:158.51},{&quot;2026-08-04&quot;:158.13},{&quot;2026-08-05&quot;:157.69},{&quot;2026-08-07&quot;:157.55},{&quot;2026-08-08&quot;:157.19},{&quot;2026-08-09&quot;:157.19},{&quot;2026-08-10&quot;:157.19},{&quot;2026-08-11&quot;:156.75},{&quot;2026-08-12&quot;:156.16},{&quot;2026-08-13&quot;:152.4},{&quot;2026-08-14&quot;:150.43},{&quot;2026-08-15&quot;:149.78},{&quot;2026-08-16&quot;:149.58},{&quot;2026-08-17&quot;:148.28},{&quot;2026-08-18&quot;:147.56},{&quot;2026-08-19&quot;:146.8},{&quot;2026-08-20&quot;:146.8},{&quot;2026-08-21&quot;:146.23},{&quot;2026-08-22&quot;:145.67},{&quot;2026-08-23&quot;:145.47},{&quot;2026-08-24&quot;:143.73},{&quot;2026-08-25&quot;:141.39},{&quot;2026-08-26&quot;:138.36},{&quot;2026-08-27&quot;:140.18},{&quot;2026-08-28&quot;:139.86},{&quot;2026-08-29&quot;:139.86},{&quot;2026-08-30&quot;:137.82},{&quot;2026-08-31&quot;:137.31},{&quot;2026-09-01&quot;:136.01},{&quot;2026-09-02&quot;:136.01},{&quot;2026-09-03&quot;:134.69},{&quot;2026-09-04&quot;:134.69},{&quot;2026-09-05&quot;:134.69},{&quot;2026-09-06&quot;:134.69},{&quot;2026-09-07&quot;:133.69},{&quot;2026-09-08&quot;:130.73},{&quot;2026-09-09&quot;:129.89},{&quot;2026-09-10&quot;:129.36},{&quot;2026-09-11&quot;:129.01}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:85.56},{&quot;2026-06-13&quot;:85.27},{&quot;2026-06-14&quot;:85.15},{&quot;2026-06-15&quot;:86.21},{&quot;2026-06-16&quot;:88.72},{&quot;2026-06-17&quot;:87.77},{&quot;2026-06-18&quot;:87.39},{&quot;2026-06-19&quot;:86.58},{&quot;2026-06-20&quot;:86.46},{&quot;2026-06-21&quot;:87.55},{&quot;2026-06-22&quot;:89.31},{&quot;2026-06-23&quot;:89.61},{&quot;2026-06-24&quot;:88.12},{&quot;2026-06-25&quot;:88.46},{&quot;2026-06-26&quot;:88.58},{&quot;2026-06-27&quot;:92.7},{&quot;2026-06-28&quot;:94.57},{&quot;2026-06-29&quot;:93.5},{&quot;2026-06-30&quot;:93.96},{&quot;2026-07-01&quot;:99.45},{&quot;2026-07-02&quot;:94.3},{&quot;2026-07-03&quot;:95.93},{&quot;2026-07-04&quot;:97.75},{&quot;2026-07-05&quot;:98.77},{&quot;2026-07-06&quot;:102.85},{&quot;2026-07-07&quot;:104.12},{&quot;2026-07-08&quot;:103.46},{&quot;2026-07-09&quot;:108.92},{&quot;2026-07-10&quot;:108.67},{&quot;2026-07-11&quot;:113.39},{&quot;2026-07-12&quot;:115.62},{&quot;2026-07-13&quot;:118.04},{&quot;2026-07-14&quot;:118.13},{&quot;2026-07-15&quot;:117.46},{&quot;2026-07-16&quot;:117.54},{&quot;2026-07-17&quot;:113.9},{&quot;2026-07-18&quot;:113.19},{&quot;2026-07-19&quot;:115.56},{&quot;2026-07-20&quot;:116.05},{&quot;2026-07-21&quot;:120.32},{&quot;2026-07-23&quot;:121.3},{&quot;2026-07-24&quot;:121.57},{&quot;2026-07-25&quot;:122.94},{&quot;2026-07-26&quot;:122.06},{&quot;2026-07-27&quot;:123.97},{&quot;2026-07-28&quot;:120.5},{&quot;2026-07-29&quot;:121.14},{&quot;2026-07-30&quot;:118.63},{&quot;2026-07-31&quot;:116.38},{&quot;2026-08-01&quot;:114.71},{&quot;2026-08-02&quot;:114.07},{&quot;2026-08-03&quot;:116.82},{&quot;2026-08-04&quot;:116.69},{&quot;2026-08-05&quot;:118.92},{&quot;2026-08-07&quot;:115.87},{&quot;2026-08-08&quot;:109.78},{&quot;2026-08-09&quot;:108.64},{&quot;2026-08-10&quot;:105.56},{&quot;2026-08-11&quot;:103.63},{&quot;2026-08-12&quot;:103.81},{&quot;2026-08-13&quot;:103.72},{&quot;2026-08-14&quot;:103.09},{&quot;2026-08-15&quot;:101.86},{&quot;2026-08-16&quot;:100.28},{&quot;2026-08-17&quot;:100.23},{&quot;2026-08-18&quot;:99.94},{&quot;2026-08-19&quot;:100.58},{&quot;2026-08-20&quot;:100.58},{&quot;2026-08-21&quot;:100.8},{&quot;2026-08-22&quot;:101.48},{&quot;2026-08-23&quot;:100.9},{&quot;2026-08-24&quot;:102.68},{&quot;2026-08-25&quot;:101.99},{&quot;2026-08-26&quot;:101.97},{&quot;2026-08-27&quot;:102.2},{&quot;2026-08-28&quot;:100.05},{&quot;2026-08-29&quot;:100.05},{&quot;2026-08-30&quot;:99.84},{&quot;2026-08-31&quot;:101.29},{&quot;2026-09-01&quot;:99.7},{&quot;2026-09-02&quot;:99.65},{&quot;2026-09-03&quot;:100.3},{&quot;2026-09-04&quot;:99.53},{&quot;2026-09-05&quot;:100.92},{&quot;2026-09-06&quot;:101.54},{&quot;2026-09-07&quot;:102.03},{&quot;2026-09-08&quot;:99.81},{&quot;2026-09-09&quot;:99.39},{&quot;2026-09-10&quot;:99.83},{&quot;2026-09-11&quot;:98.21}]}"
        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="19260"
  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">
            Sheoldred, the Apocalypse
        </span>


      </div>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Sheoldred, the Apocalypse" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/5/95ebbb6d-04f8-42ec-a1b7-6ca67994b8d3.jpg?1783921206" />

        <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">
            Sheoldred, the Apocalypse
        </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 — Phyrexian Praetor</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-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="Sheoldred, the Apocalypse" src="https://cards.scryfall.io/large/front/9/5/95ebbb6d-04f8-42ec-a1b7-6ca67994b8d3.jpg?1783921206" />
    </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">
                $77.68
              </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">
                $95.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 Foil</span>
              <span class="text-lg font-medium text-nine-white">$70.00</span>
              <span class="text-xs text-grey-text">Credit: $91.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-10&quot;:82.71},{&quot;2026-06-11&quot;:82.71},{&quot;2026-06-12&quot;:82.71},{&quot;2026-06-13&quot;:82.71},{&quot;2026-06-14&quot;:82.71},{&quot;2026-06-15&quot;:82.71},{&quot;2026-06-16&quot;:82.71},{&quot;2026-06-17&quot;:82.71},{&quot;2026-06-18&quot;:82.71},{&quot;2026-06-19&quot;:82.71},{&quot;2026-06-20&quot;:82.71},{&quot;2026-06-21&quot;:82.71},{&quot;2026-06-22&quot;:82.71},{&quot;2026-06-23&quot;:82.71},{&quot;2026-06-24&quot;:82.71},{&quot;2026-06-25&quot;:82.71},{&quot;2026-06-26&quot;:82.71},{&quot;2026-06-27&quot;:82.71},{&quot;2026-06-28&quot;:82.71},{&quot;2026-06-29&quot;:82.71},{&quot;2026-06-30&quot;:82.71},{&quot;2026-07-01&quot;:83.39},{&quot;2026-07-02&quot;:84.62},{&quot;2026-07-03&quot;:85.25},{&quot;2026-07-04&quot;:85.25},{&quot;2026-07-05&quot;:85.25},{&quot;2026-07-06&quot;:85.25},{&quot;2026-07-07&quot;:85.25},{&quot;2026-07-08&quot;:85.25},{&quot;2026-07-09&quot;:85.25},{&quot;2026-07-10&quot;:85.97},{&quot;2026-07-11&quot;:85.97},{&quot;2026-07-12&quot;:85.97},{&quot;2026-07-13&quot;:86.8},{&quot;2026-07-14&quot;:87.8},{&quot;2026-07-15&quot;:88.14},{&quot;2026-07-16&quot;:89.66},{&quot;2026-07-17&quot;:89.66},{&quot;2026-07-18&quot;:89.66},{&quot;2026-07-19&quot;:89.66},{&quot;2026-07-20&quot;:90.91},{&quot;2026-07-21&quot;:90.91},{&quot;2026-07-23&quot;:90.91},{&quot;2026-07-25&quot;:90.91},{&quot;2026-07-26&quot;:90.91},{&quot;2026-07-27&quot;:90.91},{&quot;2026-07-29&quot;:90.91},{&quot;2026-07-30&quot;:90.91},{&quot;2026-07-31&quot;:91.39},{&quot;2026-08-01&quot;:91.39},{&quot;2026-08-02&quot;:92.04},{&quot;2026-08-03&quot;:92.68},{&quot;2026-08-04&quot;:92.68},{&quot;2026-08-05&quot;:92.68},{&quot;2026-08-07&quot;:92.68},{&quot;2026-08-08&quot;:91.72},{&quot;2026-08-09&quot;:91.72},{&quot;2026-08-10&quot;:91.72},{&quot;2026-08-11&quot;:92.76},{&quot;2026-08-12&quot;:92.76},{&quot;2026-08-13&quot;:92.76},{&quot;2026-08-14&quot;:92.76},{&quot;2026-08-15&quot;:93.29},{&quot;2026-08-16&quot;:93.29},{&quot;2026-08-17&quot;:93.29},{&quot;2026-08-18&quot;:93.29},{&quot;2026-08-19&quot;:93.29},{&quot;2026-08-20&quot;:93.29},{&quot;2026-08-21&quot;:93.29},{&quot;2026-08-22&quot;:93.29},{&quot;2026-08-23&quot;:93.29},{&quot;2026-08-24&quot;:93.29},{&quot;2026-08-25&quot;:93.29},{&quot;2026-08-26&quot;:93.29},{&quot;2026-08-27&quot;:93.29},{&quot;2026-08-28&quot;:93.29},{&quot;2026-08-29&quot;:93.29},{&quot;2026-08-30&quot;:93.29},{&quot;2026-08-31&quot;:93.29},{&quot;2026-09-01&quot;:93.29},{&quot;2026-09-02&quot;:93.29},{&quot;2026-09-03&quot;:93.96},{&quot;2026-09-04&quot;:95.08},{&quot;2026-09-05&quot;:95.08},{&quot;2026-09-06&quot;:95.08},{&quot;2026-09-07&quot;:95.08},{&quot;2026-09-08&quot;:95.08},{&quot;2026-09-09&quot;:95.08},{&quot;2026-09-10&quot;:95.08},{&quot;2026-09-11&quot;:95.08}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:78.85},{&quot;2026-06-11&quot;:78.85},{&quot;2026-06-12&quot;:78.86},{&quot;2026-06-13&quot;:78.68},{&quot;2026-06-14&quot;:78.68},{&quot;2026-06-15&quot;:78.98},{&quot;2026-06-16&quot;:78.98},{&quot;2026-06-17&quot;:78.7},{&quot;2026-06-18&quot;:79.12},{&quot;2026-06-19&quot;:79.03},{&quot;2026-06-20&quot;:79.11},{&quot;2026-06-21&quot;:79.11},{&quot;2026-06-22&quot;:79.11},{&quot;2026-06-23&quot;:79.11},{&quot;2026-06-24&quot;:79.0},{&quot;2026-06-25&quot;:79.13},{&quot;2026-06-26&quot;:79.13},{&quot;2026-06-27&quot;:79.13},{&quot;2026-06-28&quot;:79.13},{&quot;2026-06-29&quot;:79.13},{&quot;2026-06-30&quot;:79.13},{&quot;2026-07-01&quot;:79.13},{&quot;2026-07-02&quot;:79.13},{&quot;2026-07-03&quot;:79.13},{&quot;2026-07-04&quot;:79.33},{&quot;2026-07-05&quot;:79.31},{&quot;2026-07-06&quot;:79.31},{&quot;2026-07-07&quot;:79.31},{&quot;2026-07-08&quot;:79.31},{&quot;2026-07-09&quot;:79.35},{&quot;2026-07-10&quot;:79.45},{&quot;2026-07-11&quot;:79.45},{&quot;2026-07-12&quot;:79.45},{&quot;2026-07-13&quot;:80.38},{&quot;2026-07-14&quot;:80.38},{&quot;2026-07-15&quot;:80.27},{&quot;2026-07-16&quot;:81.04},{&quot;2026-07-17&quot;:81.04},{&quot;2026-07-18&quot;:81.24},{&quot;2026-07-19&quot;:81.71},{&quot;2026-07-20&quot;:81.79},{&quot;2026-07-21&quot;:81.79},{&quot;2026-07-23&quot;:78.32},{&quot;2026-07-25&quot;:75.48},{&quot;2026-07-26&quot;:75.54},{&quot;2026-07-27&quot;:73.78},{&quot;2026-07-29&quot;:73.49},{&quot;2026-07-30&quot;:73.08},{&quot;2026-07-31&quot;:73.13},{&quot;2026-08-01&quot;:73.13},{&quot;2026-08-02&quot;:73.15},{&quot;2026-08-03&quot;:74.62},{&quot;2026-08-04&quot;:74.35},{&quot;2026-08-05&quot;:74.35},{&quot;2026-08-07&quot;:75.78},{&quot;2026-08-08&quot;:76.84},{&quot;2026-08-09&quot;:76.84},{&quot;2026-08-10&quot;:78.14},{&quot;2026-08-11&quot;:78.14},{&quot;2026-08-12&quot;:79.2},{&quot;2026-08-13&quot;:78.92},{&quot;2026-08-14&quot;:79.01},{&quot;2026-08-15&quot;:79.01},{&quot;2026-08-16&quot;:79.13},{&quot;2026-08-17&quot;:79.07},{&quot;2026-08-18&quot;:79.33},{&quot;2026-08-19&quot;:79.55},{&quot;2026-08-20&quot;:79.55},{&quot;2026-08-21&quot;:79.17},{&quot;2026-08-22&quot;:79.17},{&quot;2026-08-23&quot;:79.17},{&quot;2026-08-24&quot;:79.17},{&quot;2026-08-25&quot;:79.17},{&quot;2026-08-26&quot;:79.42},{&quot;2026-08-27&quot;:80.04},{&quot;2026-08-28&quot;:79.39},{&quot;2026-08-29&quot;:79.39},{&quot;2026-08-30&quot;:79.46},{&quot;2026-08-31&quot;:79.46},{&quot;2026-09-01&quot;:79.46},{&quot;2026-09-02&quot;:78.75},{&quot;2026-09-03&quot;:78.75},{&quot;2026-09-04&quot;:78.75},{&quot;2026-09-05&quot;:77.91},{&quot;2026-09-06&quot;:77.21},{&quot;2026-09-07&quot;:77.21},{&quot;2026-09-08&quot;:77.37},{&quot;2026-09-09&quot;:77.34},{&quot;2026-09-10&quot;:77.34},{&quot;2026-09-11&quot;:77.68}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Kefka, Court Mage // Kefka, Ruler of Ruin" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/c/0cadfe0e-9cdf-4e64-b143-f996c76bf93b.jpg?1783906537" />

        <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">
            Kefka, Court Mage 
        </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 — Human Wizard</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <div data-controller="card-flip" class="flex flex-col items-center">
          <div
            data-action="click->card-flip#flip"
            class="flip-container cursor-pointer w-full max-w-xs mx-auto"
          >
            <div data-card-flip-target="card" class="flip-card">
              <div class="flip-card-front">
                <img class="w-full h-auto rounded-2xl" alt="Kefka, Court Mage // Kefka, Ruler of Ruin" src="https://cards.scryfall.io/large/front/0/c/0cadfe0e-9cdf-4e64-b143-f996c76bf93b.jpg?1783906537" />
              </div>

              <div class="flip-card-back">
                <img class="w-full h-auto rounded-2xl" alt="Kefka, Court Mage // Kefka, Ruler of Ruin" src="https://cards.scryfall.io/large/back/0/c/0cadfe0e-9cdf-4e64-b143-f996c76bf93b.jpg?1783906537" />
              </div>
            </div>
          </div>

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

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $37.51
              </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">
                $91.51
              </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">$60.00</span>
              <span class="text-xs text-grey-text">Credit: $78.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;:86.59},{&quot;2026-06-14&quot;:86.85},{&quot;2026-06-15&quot;:87.25},{&quot;2026-06-16&quot;:87.57},{&quot;2026-06-17&quot;:88.01},{&quot;2026-06-18&quot;:88.01},{&quot;2026-06-19&quot;:88.79},{&quot;2026-06-20&quot;:88.79},{&quot;2026-06-21&quot;:88.79},{&quot;2026-06-22&quot;:89.74},{&quot;2026-06-23&quot;:89.74},{&quot;2026-06-24&quot;:89.74},{&quot;2026-06-25&quot;:89.74},{&quot;2026-06-26&quot;:89.61},{&quot;2026-06-27&quot;:89.41},{&quot;2026-06-28&quot;:89.74},{&quot;2026-06-29&quot;:89.74},{&quot;2026-06-30&quot;:89.74},{&quot;2026-07-01&quot;:90.35},{&quot;2026-07-02&quot;:90.35},{&quot;2026-07-03&quot;:90.35},{&quot;2026-07-04&quot;:90.62},{&quot;2026-07-05&quot;:91.41},{&quot;2026-07-06&quot;:91.41},{&quot;2026-07-07&quot;:91.8},{&quot;2026-07-08&quot;:91.93},{&quot;2026-07-09&quot;:92.06},{&quot;2026-07-10&quot;:92.06},{&quot;2026-07-11&quot;:92.06},{&quot;2026-07-12&quot;:92.45},{&quot;2026-07-13&quot;:92.45},{&quot;2026-07-14&quot;:92.45},{&quot;2026-07-15&quot;:91.78},{&quot;2026-07-16&quot;:92.72},{&quot;2026-07-17&quot;:92.72},{&quot;2026-07-18&quot;:92.8},{&quot;2026-07-19&quot;:93.23},{&quot;2026-07-20&quot;:93.23},{&quot;2026-07-21&quot;:93.23},{&quot;2026-07-22&quot;:93.42},{&quot;2026-07-23&quot;:93.42},{&quot;2026-07-24&quot;:93.48},{&quot;2026-07-25&quot;:93.42},{&quot;2026-07-26&quot;:93.57},{&quot;2026-07-27&quot;:93.69},{&quot;2026-07-28&quot;:93.92},{&quot;2026-07-29&quot;:93.92},{&quot;2026-07-30&quot;:93.92},{&quot;2026-07-31&quot;:93.9},{&quot;2026-08-01&quot;:93.9},{&quot;2026-08-02&quot;:93.9},{&quot;2026-08-03&quot;:93.96},{&quot;2026-08-04&quot;:93.96},{&quot;2026-08-05&quot;:93.96},{&quot;2026-08-07&quot;:93.33},{&quot;2026-08-08&quot;:93.46},{&quot;2026-08-09&quot;:93.46},{&quot;2026-08-10&quot;:93.46},{&quot;2026-08-11&quot;:94.1},{&quot;2026-08-12&quot;:93.9},{&quot;2026-08-13&quot;:93.9},{&quot;2026-08-14&quot;:93.9},{&quot;2026-08-15&quot;:93.9},{&quot;2026-08-16&quot;:93.5},{&quot;2026-08-17&quot;:93.33},{&quot;2026-08-18&quot;:92.75},{&quot;2026-08-19&quot;:92.75},{&quot;2026-08-20&quot;:92.75},{&quot;2026-08-21&quot;:93.07},{&quot;2026-08-22&quot;:92.78},{&quot;2026-08-23&quot;:92.78},{&quot;2026-08-24&quot;:92.75},{&quot;2026-08-25&quot;:92.75},{&quot;2026-08-26&quot;:92.75},{&quot;2026-08-27&quot;:92.78},{&quot;2026-08-28&quot;:92.78},{&quot;2026-08-29&quot;:92.78},{&quot;2026-08-30&quot;:92.78},{&quot;2026-08-31&quot;:92.78},{&quot;2026-09-01&quot;:92.78},{&quot;2026-09-02&quot;:92.78},{&quot;2026-09-03&quot;:92.57},{&quot;2026-09-04&quot;:92.57},{&quot;2026-09-05&quot;:92.57},{&quot;2026-09-06&quot;:92.57},{&quot;2026-09-07&quot;:92.29},{&quot;2026-09-08&quot;:92.17},{&quot;2026-09-09&quot;:91.51},{&quot;2026-09-10&quot;:91.51},{&quot;2026-09-11&quot;:91.51}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:30.59},{&quot;2026-06-14&quot;:30.75},{&quot;2026-06-15&quot;:31.61},{&quot;2026-06-16&quot;:31.61},{&quot;2026-06-17&quot;:32.25},{&quot;2026-06-18&quot;:31.9},{&quot;2026-06-19&quot;:32.28},{&quot;2026-06-20&quot;:32.36},{&quot;2026-06-21&quot;:32.82},{&quot;2026-06-22&quot;:33.39},{&quot;2026-06-23&quot;:33.9},{&quot;2026-06-24&quot;:33.9},{&quot;2026-06-25&quot;:33.04},{&quot;2026-06-26&quot;:32.92},{&quot;2026-06-27&quot;:32.74},{&quot;2026-06-28&quot;:32.13},{&quot;2026-06-29&quot;:31.55},{&quot;2026-06-30&quot;:31.39},{&quot;2026-07-01&quot;:30.81},{&quot;2026-07-02&quot;:30.69},{&quot;2026-07-03&quot;:30.81},{&quot;2026-07-04&quot;:30.07},{&quot;2026-07-05&quot;:30.16},{&quot;2026-07-06&quot;:30.21},{&quot;2026-07-07&quot;:30.41},{&quot;2026-07-08&quot;:30.41},{&quot;2026-07-09&quot;:31.63},{&quot;2026-07-10&quot;:31.63},{&quot;2026-07-11&quot;:32.1},{&quot;2026-07-12&quot;:32.22},{&quot;2026-07-13&quot;:32.33},{&quot;2026-07-14&quot;:32.53},{&quot;2026-07-15&quot;:32.58},{&quot;2026-07-16&quot;:32.48},{&quot;2026-07-17&quot;:32.55},{&quot;2026-07-18&quot;:32.91},{&quot;2026-07-19&quot;:32.9},{&quot;2026-07-20&quot;:32.9},{&quot;2026-07-21&quot;:32.86},{&quot;2026-07-22&quot;:33.58},{&quot;2026-07-23&quot;:33.58},{&quot;2026-07-24&quot;:33.36},{&quot;2026-07-25&quot;:34.09},{&quot;2026-07-26&quot;:34.51},{&quot;2026-07-27&quot;:35.4},{&quot;2026-07-28&quot;:35.44},{&quot;2026-07-29&quot;:35.44},{&quot;2026-07-30&quot;:35.34},{&quot;2026-07-31&quot;:35.42},{&quot;2026-08-01&quot;:35.52},{&quot;2026-08-02&quot;:35.45},{&quot;2026-08-03&quot;:35.79},{&quot;2026-08-04&quot;:35.58},{&quot;2026-08-05&quot;:35.65},{&quot;2026-08-07&quot;:35.04},{&quot;2026-08-08&quot;:35.1},{&quot;2026-08-09&quot;:33.87},{&quot;2026-08-10&quot;:33.85},{&quot;2026-08-11&quot;:33.71},{&quot;2026-08-12&quot;:33.43},{&quot;2026-08-13&quot;:33.49},{&quot;2026-08-14&quot;:34.0},{&quot;2026-08-15&quot;:34.11},{&quot;2026-08-16&quot;:33.94},{&quot;2026-08-17&quot;:33.72},{&quot;2026-08-18&quot;:33.72},{&quot;2026-08-19&quot;:33.68},{&quot;2026-08-20&quot;:33.9},{&quot;2026-08-21&quot;:34.2},{&quot;2026-08-22&quot;:34.29},{&quot;2026-08-23&quot;:34.96},{&quot;2026-08-24&quot;:34.84},{&quot;2026-08-25&quot;:35.69},{&quot;2026-08-26&quot;:36.39},{&quot;2026-08-27&quot;:36.74},{&quot;2026-08-28&quot;:36.94},{&quot;2026-08-29&quot;:36.94},{&quot;2026-08-30&quot;:36.89},{&quot;2026-08-31&quot;:37.07},{&quot;2026-09-01&quot;:37.16},{&quot;2026-09-02&quot;:37.0},{&quot;2026-09-03&quot;:36.95},{&quot;2026-09-04&quot;:36.95},{&quot;2026-09-05&quot;:37.15},{&quot;2026-09-06&quot;:37.38},{&quot;2026-09-07&quot;:37.34},{&quot;2026-09-08&quot;:37.51},{&quot;2026-09-09&quot;:37.51},{&quot;2026-09-10&quot;:37.51},{&quot;2026-09-11&quot;:37.51}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="108812"
  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-soa 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">
            Force of Will
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $65.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="Force of Will" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/a/7a87f8bc-1b3e-4cb2-9343-5f008e942411.jpg?1782683428" />

        <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">
            Force of Will
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Force of Will" src="https://cards.scryfall.io/large/front/7/a/7a87f8bc-1b3e-4cb2-9343-5f008e942411.jpg?1782683428" />
    </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">
                $65.39
              </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">
                $82.92
              </span>

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$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-13&quot;:103.41},{&quot;2026-06-14&quot;:101.76},{&quot;2026-06-15&quot;:102.08},{&quot;2026-06-16&quot;:102.08},{&quot;2026-06-17&quot;:102.02},{&quot;2026-06-18&quot;:102.09},{&quot;2026-06-19&quot;:102.09},{&quot;2026-06-20&quot;:101.15},{&quot;2026-06-21&quot;:100.46},{&quot;2026-06-22&quot;:100.46},{&quot;2026-06-23&quot;:99.51},{&quot;2026-06-24&quot;:99.51},{&quot;2026-06-25&quot;:99.22},{&quot;2026-06-26&quot;:99.22},{&quot;2026-06-27&quot;:98.76},{&quot;2026-06-28&quot;:98.76},{&quot;2026-06-29&quot;:98.4},{&quot;2026-06-30&quot;:98.4},{&quot;2026-07-01&quot;:97.04},{&quot;2026-07-02&quot;:96.5},{&quot;2026-07-03&quot;:96.5},{&quot;2026-07-04&quot;:96.5},{&quot;2026-07-05&quot;:92.36},{&quot;2026-07-06&quot;:90.34},{&quot;2026-07-07&quot;:90.2},{&quot;2026-07-08&quot;:89.23},{&quot;2026-07-09&quot;:89.11},{&quot;2026-07-10&quot;:88.15},{&quot;2026-07-11&quot;:86.46},{&quot;2026-07-12&quot;:86.06},{&quot;2026-07-13&quot;:86.33},{&quot;2026-07-14&quot;:87.02},{&quot;2026-07-15&quot;:86.95},{&quot;2026-07-16&quot;:87.19},{&quot;2026-07-17&quot;:87.16},{&quot;2026-07-18&quot;:87.16},{&quot;2026-07-19&quot;:86.01},{&quot;2026-07-20&quot;:86.58},{&quot;2026-07-21&quot;:86.58},{&quot;2026-07-22&quot;:86.58},{&quot;2026-07-23&quot;:86.58},{&quot;2026-07-24&quot;:87.17},{&quot;2026-07-25&quot;:87.17},{&quot;2026-07-26&quot;:87.17},{&quot;2026-07-27&quot;:87.17},{&quot;2026-07-28&quot;:87.17},{&quot;2026-07-29&quot;:86.65},{&quot;2026-07-30&quot;:86.88},{&quot;2026-07-31&quot;:86.71},{&quot;2026-08-01&quot;:86.49},{&quot;2026-08-02&quot;:86.89},{&quot;2026-08-03&quot;:86.74},{&quot;2026-08-04&quot;:87.11},{&quot;2026-08-05&quot;:86.74},{&quot;2026-08-07&quot;:86.57},{&quot;2026-08-08&quot;:86.19},{&quot;2026-08-09&quot;:86.19},{&quot;2026-08-10&quot;:85.57},{&quot;2026-08-11&quot;:85.57},{&quot;2026-08-12&quot;:84.87},{&quot;2026-08-13&quot;:85.6},{&quot;2026-08-14&quot;:86.43},{&quot;2026-08-15&quot;:86.23},{&quot;2026-08-16&quot;:84.56},{&quot;2026-08-17&quot;:83.8},{&quot;2026-08-18&quot;:84.17},{&quot;2026-08-19&quot;:83.86},{&quot;2026-08-20&quot;:83.86},{&quot;2026-08-21&quot;:82.36},{&quot;2026-08-22&quot;:82.61},{&quot;2026-08-23&quot;:82.61},{&quot;2026-08-24&quot;:82.58},{&quot;2026-08-25&quot;:82.49},{&quot;2026-08-26&quot;:82.69},{&quot;2026-08-27&quot;:82.84},{&quot;2026-08-28&quot;:82.99},{&quot;2026-08-29&quot;:82.99},{&quot;2026-08-30&quot;:82.83},{&quot;2026-08-31&quot;:82.79},{&quot;2026-09-01&quot;:82.72},{&quot;2026-09-02&quot;:82.79},{&quot;2026-09-03&quot;:82.62},{&quot;2026-09-04&quot;:82.62},{&quot;2026-09-05&quot;:82.52},{&quot;2026-09-06&quot;:82.49},{&quot;2026-09-07&quot;:82.32},{&quot;2026-09-08&quot;:82.43},{&quot;2026-09-09&quot;:82.92},{&quot;2026-09-10&quot;:82.92},{&quot;2026-09-11&quot;:82.92}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:66.99},{&quot;2026-06-14&quot;:67.8},{&quot;2026-06-15&quot;:67.26},{&quot;2026-06-16&quot;:66.94},{&quot;2026-06-17&quot;:65.52},{&quot;2026-06-18&quot;:64.51},{&quot;2026-06-19&quot;:65.65},{&quot;2026-06-20&quot;:66.18},{&quot;2026-06-21&quot;:66.18},{&quot;2026-06-22&quot;:66.92},{&quot;2026-06-23&quot;:67.36},{&quot;2026-06-24&quot;:66.79},{&quot;2026-06-25&quot;:66.47},{&quot;2026-06-26&quot;:66.09},{&quot;2026-06-27&quot;:66.01},{&quot;2026-06-28&quot;:65.84},{&quot;2026-06-29&quot;:65.49},{&quot;2026-06-30&quot;:64.73},{&quot;2026-07-01&quot;:64.23},{&quot;2026-07-02&quot;:63.73},{&quot;2026-07-03&quot;:64.54},{&quot;2026-07-04&quot;:63.22},{&quot;2026-07-05&quot;:63.0},{&quot;2026-07-06&quot;:63.64},{&quot;2026-07-07&quot;:63.56},{&quot;2026-07-08&quot;:63.01},{&quot;2026-07-09&quot;:62.77},{&quot;2026-07-10&quot;:62.35},{&quot;2026-07-11&quot;:62.3},{&quot;2026-07-12&quot;:63.27},{&quot;2026-07-13&quot;:62.43},{&quot;2026-07-14&quot;:62.44},{&quot;2026-07-15&quot;:62.82},{&quot;2026-07-16&quot;:63.26},{&quot;2026-07-17&quot;:63.84},{&quot;2026-07-18&quot;:63.4},{&quot;2026-07-19&quot;:63.81},{&quot;2026-07-20&quot;:64.29},{&quot;2026-07-21&quot;:64.45},{&quot;2026-07-22&quot;:64.39},{&quot;2026-07-23&quot;:64.72},{&quot;2026-07-24&quot;:64.8},{&quot;2026-07-25&quot;:64.88},{&quot;2026-07-26&quot;:64.63},{&quot;2026-07-27&quot;:63.84},{&quot;2026-07-28&quot;:63.41},{&quot;2026-07-29&quot;:63.5},{&quot;2026-07-30&quot;:64.76},{&quot;2026-07-31&quot;:63.24},{&quot;2026-08-01&quot;:62.55},{&quot;2026-08-02&quot;:62.41},{&quot;2026-08-03&quot;:62.34},{&quot;2026-08-04&quot;:61.43},{&quot;2026-08-05&quot;:61.47},{&quot;2026-08-07&quot;:61.5},{&quot;2026-08-08&quot;:61.42},{&quot;2026-08-09&quot;:61.95},{&quot;2026-08-10&quot;:62.21},{&quot;2026-08-11&quot;:61.54},{&quot;2026-08-12&quot;:61.72},{&quot;2026-08-13&quot;:61.38},{&quot;2026-08-14&quot;:62.07},{&quot;2026-08-15&quot;:62.39},{&quot;2026-08-16&quot;:61.31},{&quot;2026-08-17&quot;:59.68},{&quot;2026-08-18&quot;:60.11},{&quot;2026-08-19&quot;:59.9},{&quot;2026-08-20&quot;:60.26},{&quot;2026-08-21&quot;:60.92},{&quot;2026-08-22&quot;:61.59},{&quot;2026-08-23&quot;:62.01},{&quot;2026-08-24&quot;:62.32},{&quot;2026-08-25&quot;:62.91},{&quot;2026-08-26&quot;:62.74},{&quot;2026-08-27&quot;:63.58},{&quot;2026-08-28&quot;:64.01},{&quot;2026-08-29&quot;:64.01},{&quot;2026-08-30&quot;:64.02},{&quot;2026-08-31&quot;:64.47},{&quot;2026-09-01&quot;:64.89},{&quot;2026-09-02&quot;:64.8},{&quot;2026-09-03&quot;:63.7},{&quot;2026-09-04&quot;:63.64},{&quot;2026-09-05&quot;:63.66},{&quot;2026-09-06&quot;:63.95},{&quot;2026-09-07&quot;:64.7},{&quot;2026-09-08&quot;:64.88},{&quot;2026-09-09&quot;:64.15},{&quot;2026-09-10&quot;:64.96},{&quot;2026-09-11&quot;:65.39}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="109756"
  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-soa 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">
            Triumph of the Hordes
        </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">
            $62.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="Triumph of the Hordes" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/2/c236853f-62fa-4bac-bdc0-295c8337fc2d.jpg?1783903870" />

        <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">
            Triumph of the Hordes
        </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">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><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="Triumph of the Hordes" src="https://cards.scryfall.io/large/front/c/2/c236853f-62fa-4bac-bdc0-295c8337fc2d.jpg?1783903870" />
    </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">
                $62.12
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:77.29},{&quot;2026-06-14&quot;:76.71},{&quot;2026-06-15&quot;:75.58},{&quot;2026-06-16&quot;:75.58},{&quot;2026-06-17&quot;:75.58},{&quot;2026-06-18&quot;:75.58},{&quot;2026-06-19&quot;:75.4},{&quot;2026-06-20&quot;:75.22},{&quot;2026-06-21&quot;:75.35},{&quot;2026-06-22&quot;:75.35},{&quot;2026-06-23&quot;:75.35},{&quot;2026-06-24&quot;:75.35},{&quot;2026-06-25&quot;:75.35},{&quot;2026-06-26&quot;:74.98},{&quot;2026-06-27&quot;:74.71},{&quot;2026-06-28&quot;:74.71},{&quot;2026-06-29&quot;:74.71},{&quot;2026-06-30&quot;:74.38},{&quot;2026-07-01&quot;:73.54},{&quot;2026-07-02&quot;:73.54},{&quot;2026-07-03&quot;:73.54},{&quot;2026-07-04&quot;:73.54},{&quot;2026-07-05&quot;:73.54},{&quot;2026-07-06&quot;:73.88},{&quot;2026-07-07&quot;:73.88},{&quot;2026-07-08&quot;:74.49},{&quot;2026-07-09&quot;:74.14},{&quot;2026-07-10&quot;:74.14},{&quot;2026-07-11&quot;:74.14},{&quot;2026-07-12&quot;:74.14},{&quot;2026-07-13&quot;:74.14},{&quot;2026-07-14&quot;:74.14},{&quot;2026-07-15&quot;:74.14},{&quot;2026-07-16&quot;:73.65},{&quot;2026-07-17&quot;:74.15},{&quot;2026-07-18&quot;:74.15},{&quot;2026-07-19&quot;:73.72},{&quot;2026-07-20&quot;:73.59},{&quot;2026-07-21&quot;:73.95},{&quot;2026-07-22&quot;:73.95},{&quot;2026-07-23&quot;:73.95},{&quot;2026-07-24&quot;:73.1},{&quot;2026-07-25&quot;:71.49},{&quot;2026-07-26&quot;:71.05},{&quot;2026-07-27&quot;:71.05},{&quot;2026-07-28&quot;:70.55},{&quot;2026-07-29&quot;:70.55},{&quot;2026-07-30&quot;:70.55},{&quot;2026-07-31&quot;:70.55},{&quot;2026-08-01&quot;:70.55},{&quot;2026-08-02&quot;:70.62},{&quot;2026-08-03&quot;:70.25},{&quot;2026-08-04&quot;:69.49},{&quot;2026-08-05&quot;:69.49},{&quot;2026-08-07&quot;:69.49},{&quot;2026-08-08&quot;:69.49},{&quot;2026-08-09&quot;:69.49},{&quot;2026-08-10&quot;:69.49},{&quot;2026-08-11&quot;:69.49},{&quot;2026-08-12&quot;:69.16},{&quot;2026-08-13&quot;:68.26},{&quot;2026-08-14&quot;:68.11},{&quot;2026-08-15&quot;:68.11},{&quot;2026-08-16&quot;:67.45},{&quot;2026-08-17&quot;:67.13},{&quot;2026-08-18&quot;:66.23},{&quot;2026-08-19&quot;:65.68},{&quot;2026-08-20&quot;:65.68},{&quot;2026-08-21&quot;:65.68},{&quot;2026-08-22&quot;:65.68},{&quot;2026-08-23&quot;:65.68},{&quot;2026-08-24&quot;:65.39},{&quot;2026-08-25&quot;:65.15},{&quot;2026-08-26&quot;:65.33},{&quot;2026-08-27&quot;:63.92},{&quot;2026-08-28&quot;:63.68},{&quot;2026-08-29&quot;:63.68},{&quot;2026-08-30&quot;:63.52},{&quot;2026-08-31&quot;:62.45},{&quot;2026-09-01&quot;:62.29},{&quot;2026-09-02&quot;:62.29},{&quot;2026-09-03&quot;:62.29},{&quot;2026-09-04&quot;:62.12},{&quot;2026-09-05&quot;:62.12},{&quot;2026-09-06&quot;:62.12},{&quot;2026-09-07&quot;:62.12},{&quot;2026-09-08&quot;:62.12},{&quot;2026-09-09&quot;:62.12},{&quot;2026-09-10&quot;:62.12},{&quot;2026-09-11&quot;:62.12}],&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="79460"
  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-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">
            Sliver Legion
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Legendary Creature — Sliver
      </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">
            $62.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="Sliver Legion" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/7/87545415-2e27-4841-a3af-7653af2ba6d3.jpg?1783927759" />

        <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">
            Sliver Legion
        </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 — Sliver</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></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="Sliver Legion" src="https://cards.scryfall.io/large/front/8/7/87545415-2e27-4841-a3af-7653af2ba6d3.jpg?1783927759" />
    </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">
                $41.72
              </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">
                $62.05
              </span>

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Foil</span>
              <span class="text-lg font-medium text-nine-white">$30.00</span>
              <span class="text-xs text-grey-text">Credit: $39.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-11&quot;:66.36},{&quot;2026-06-12&quot;:66.36},{&quot;2026-06-13&quot;:66.36},{&quot;2026-06-14&quot;:66.36},{&quot;2026-06-15&quot;:66.05},{&quot;2026-06-16&quot;:66.05},{&quot;2026-06-17&quot;:66.05},{&quot;2026-06-18&quot;:66.05},{&quot;2026-06-19&quot;:66.05},{&quot;2026-06-20&quot;:66.05},{&quot;2026-06-21&quot;:66.05},{&quot;2026-06-22&quot;:66.05},{&quot;2026-06-23&quot;:66.05},{&quot;2026-06-24&quot;:66.05},{&quot;2026-06-25&quot;:66.05},{&quot;2026-06-26&quot;:66.05},{&quot;2026-06-27&quot;:66.05},{&quot;2026-06-28&quot;:66.05},{&quot;2026-06-29&quot;:66.05},{&quot;2026-06-30&quot;:66.05},{&quot;2026-07-01&quot;:66.05},{&quot;2026-07-02&quot;:66.05},{&quot;2026-07-03&quot;:66.05},{&quot;2026-07-04&quot;:66.05},{&quot;2026-07-05&quot;:66.05},{&quot;2026-07-06&quot;:66.05},{&quot;2026-07-07&quot;:66.05},{&quot;2026-07-08&quot;:65.73},{&quot;2026-07-09&quot;:65.73},{&quot;2026-07-10&quot;:65.73},{&quot;2026-07-11&quot;:65.73},{&quot;2026-07-12&quot;:65.73},{&quot;2026-07-13&quot;:65.73},{&quot;2026-07-14&quot;:65.73},{&quot;2026-07-15&quot;:65.73},{&quot;2026-07-16&quot;:65.73},{&quot;2026-07-17&quot;:65.73},{&quot;2026-07-18&quot;:65.05},{&quot;2026-07-19&quot;:65.05},{&quot;2026-07-20&quot;:65.05},{&quot;2026-07-21&quot;:65.05},{&quot;2026-07-23&quot;:65.05},{&quot;2026-07-25&quot;:65.05},{&quot;2026-07-26&quot;:65.05},{&quot;2026-07-27&quot;:65.05},{&quot;2026-07-28&quot;:65.05},{&quot;2026-07-29&quot;:65.05},{&quot;2026-07-30&quot;:65.05},{&quot;2026-07-31&quot;:65.05},{&quot;2026-08-01&quot;:65.05},{&quot;2026-08-02&quot;:65.05},{&quot;2026-08-03&quot;:65.05},{&quot;2026-08-04&quot;:65.05},{&quot;2026-08-05&quot;:65.05},{&quot;2026-08-07&quot;:65.05},{&quot;2026-08-08&quot;:65.05},{&quot;2026-08-09&quot;:65.05},{&quot;2026-08-10&quot;:65.05},{&quot;2026-08-11&quot;:65.05},{&quot;2026-08-12&quot;:65.05},{&quot;2026-08-13&quot;:64.56},{&quot;2026-08-14&quot;:64.56},{&quot;2026-08-15&quot;:64.56},{&quot;2026-08-16&quot;:64.56},{&quot;2026-08-17&quot;:63.68},{&quot;2026-08-18&quot;:63.68},{&quot;2026-08-19&quot;:63.68},{&quot;2026-08-20&quot;:63.68},{&quot;2026-08-21&quot;:63.68},{&quot;2026-08-22&quot;:63.68},{&quot;2026-08-23&quot;:63.68},{&quot;2026-08-24&quot;:63.68},{&quot;2026-08-25&quot;:63.68},{&quot;2026-08-26&quot;:63.68},{&quot;2026-08-27&quot;:63.68},{&quot;2026-08-28&quot;:63.68},{&quot;2026-08-29&quot;:63.68},{&quot;2026-08-30&quot;:63.68},{&quot;2026-08-31&quot;:63.68},{&quot;2026-09-01&quot;:63.68},{&quot;2026-09-02&quot;:63.68},{&quot;2026-09-03&quot;:62.05},{&quot;2026-09-04&quot;:62.05},{&quot;2026-09-05&quot;:62.05},{&quot;2026-09-06&quot;:62.05},{&quot;2026-09-07&quot;:62.05},{&quot;2026-09-08&quot;:62.05},{&quot;2026-09-09&quot;:62.05},{&quot;2026-09-10&quot;:62.05},{&quot;2026-09-11&quot;:62.05}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:39.84},{&quot;2026-06-12&quot;:39.74},{&quot;2026-06-13&quot;:40.25},{&quot;2026-06-14&quot;:40.18},{&quot;2026-06-15&quot;:40.78},{&quot;2026-06-16&quot;:40.62},{&quot;2026-06-17&quot;:41.07},{&quot;2026-06-18&quot;:40.91},{&quot;2026-06-19&quot;:40.91},{&quot;2026-06-20&quot;:40.91},{&quot;2026-06-21&quot;:40.84},{&quot;2026-06-22&quot;:40.87},{&quot;2026-06-23&quot;:41.59},{&quot;2026-06-24&quot;:41.71},{&quot;2026-06-25&quot;:41.99},{&quot;2026-06-26&quot;:42.37},{&quot;2026-06-27&quot;:42.84},{&quot;2026-06-28&quot;:42.35},{&quot;2026-06-29&quot;:42.35},{&quot;2026-06-30&quot;:42.03},{&quot;2026-07-01&quot;:41.93},{&quot;2026-07-02&quot;:41.93},{&quot;2026-07-03&quot;:42.32},{&quot;2026-07-04&quot;:42.56},{&quot;2026-07-05&quot;:42.56},{&quot;2026-07-06&quot;:42.6},{&quot;2026-07-07&quot;:43.14},{&quot;2026-07-08&quot;:43.14},{&quot;2026-07-09&quot;:43.17},{&quot;2026-07-10&quot;:43.13},{&quot;2026-07-11&quot;:43.3},{&quot;2026-07-12&quot;:43.3},{&quot;2026-07-13&quot;:43.37},{&quot;2026-07-14&quot;:43.45},{&quot;2026-07-15&quot;:43.45},{&quot;2026-07-16&quot;:43.35},{&quot;2026-07-17&quot;:43.14},{&quot;2026-07-18&quot;:42.6},{&quot;2026-07-19&quot;:42.6},{&quot;2026-07-20&quot;:42.6},{&quot;2026-07-21&quot;:41.82},{&quot;2026-07-23&quot;:41.82},{&quot;2026-07-25&quot;:41.75},{&quot;2026-07-26&quot;:41.71},{&quot;2026-07-27&quot;:41.49},{&quot;2026-07-28&quot;:41.42},{&quot;2026-07-29&quot;:41.74},{&quot;2026-07-30&quot;:41.12},{&quot;2026-07-31&quot;:41.12},{&quot;2026-08-01&quot;:41.16},{&quot;2026-08-02&quot;:41.07},{&quot;2026-08-03&quot;:41.07},{&quot;2026-08-04&quot;:40.63},{&quot;2026-08-05&quot;:39.8},{&quot;2026-08-07&quot;:38.93},{&quot;2026-08-08&quot;:39.11},{&quot;2026-08-09&quot;:39.11},{&quot;2026-08-10&quot;:38.94},{&quot;2026-08-11&quot;:38.88},{&quot;2026-08-12&quot;:40.29},{&quot;2026-08-13&quot;:40.53},{&quot;2026-08-14&quot;:40.86},{&quot;2026-08-15&quot;:41.45},{&quot;2026-08-16&quot;:41.11},{&quot;2026-08-17&quot;:41.11},{&quot;2026-08-18&quot;:41.11},{&quot;2026-08-19&quot;:40.63},{&quot;2026-08-20&quot;:40.63},{&quot;2026-08-21&quot;:40.63},{&quot;2026-08-22&quot;:40.85},{&quot;2026-08-23&quot;:40.85},{&quot;2026-08-24&quot;:40.57},{&quot;2026-08-25&quot;:40.57},{&quot;2026-08-26&quot;:40.68},{&quot;2026-08-27&quot;:41.16},{&quot;2026-08-28&quot;:41.16},{&quot;2026-08-29&quot;:41.16},{&quot;2026-08-30&quot;:41.24},{&quot;2026-08-31&quot;:41.31},{&quot;2026-09-01&quot;:41.31},{&quot;2026-09-02&quot;:41.4},{&quot;2026-09-03&quot;:41.32},{&quot;2026-09-04&quot;:41.66},{&quot;2026-09-05&quot;:41.66},{&quot;2026-09-06&quot;:41.66},{&quot;2026-09-07&quot;:41.85},{&quot;2026-09-08&quot;:41.85},{&quot;2026-09-09&quot;:41.72},{&quot;2026-09-10&quot;:41.72},{&quot;2026-09-11&quot;:41.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="95816"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fic ss-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">
            Y&#39;shtola, Night&#39;s Blessed
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $50.87
          </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="Y&#39;shtola, Night&#39;s Blessed" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/b/0bda4de9-d0ec-4d27-b92b-8a76779747cf.jpg?1748704892" />

        <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">
            Y&#39;shtola, Night&#39;s Blessed
        </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 Warlock</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></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="Y&#39;shtola, Night&#39;s Blessed" src="https://cards.scryfall.io/large/front/0/b/0bda4de9-d0ec-4d27-b92b-8a76779747cf.jpg?1748704892" />
    </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">
                $18.26
              </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">
                $50.87
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:27.67},{&quot;2026-06-14&quot;:28.05},{&quot;2026-06-15&quot;:28.88},{&quot;2026-06-16&quot;:29.05},{&quot;2026-06-17&quot;:29.05},{&quot;2026-06-18&quot;:29.05},{&quot;2026-06-19&quot;:29.12},{&quot;2026-06-20&quot;:29.12},{&quot;2026-06-21&quot;:29.12},{&quot;2026-06-22&quot;:29.12},{&quot;2026-06-23&quot;:29.12},{&quot;2026-06-24&quot;:29.37},{&quot;2026-06-25&quot;:29.37},{&quot;2026-06-26&quot;:29.38},{&quot;2026-06-27&quot;:29.52},{&quot;2026-06-28&quot;:29.52},{&quot;2026-06-29&quot;:29.52},{&quot;2026-06-30&quot;:29.52},{&quot;2026-07-01&quot;:29.52},{&quot;2026-07-02&quot;:29.52},{&quot;2026-07-03&quot;:29.54},{&quot;2026-07-04&quot;:29.38},{&quot;2026-07-05&quot;:29.38},{&quot;2026-07-06&quot;:29.4},{&quot;2026-07-07&quot;:29.4},{&quot;2026-07-08&quot;:29.4},{&quot;2026-07-09&quot;:29.69},{&quot;2026-07-10&quot;:29.69},{&quot;2026-07-11&quot;:29.72},{&quot;2026-07-12&quot;:29.72},{&quot;2026-07-13&quot;:29.72},{&quot;2026-07-14&quot;:29.72},{&quot;2026-07-15&quot;:29.92},{&quot;2026-07-16&quot;:30.21},{&quot;2026-07-17&quot;:30.86},{&quot;2026-07-18&quot;:30.86},{&quot;2026-07-19&quot;:30.57},{&quot;2026-07-20&quot;:30.57},{&quot;2026-07-21&quot;:30.72},{&quot;2026-07-22&quot;:30.72},{&quot;2026-07-23&quot;:30.23},{&quot;2026-07-24&quot;:30.37},{&quot;2026-07-25&quot;:30.37},{&quot;2026-07-26&quot;:30.5},{&quot;2026-07-27&quot;:30.5},{&quot;2026-07-28&quot;:30.72},{&quot;2026-07-29&quot;:30.72},{&quot;2026-07-30&quot;:30.59},{&quot;2026-07-31&quot;:30.91},{&quot;2026-08-01&quot;:31.27},{&quot;2026-08-02&quot;:31.27},{&quot;2026-08-03&quot;:31.27},{&quot;2026-08-04&quot;:31.27},{&quot;2026-08-05&quot;:31.27},{&quot;2026-08-07&quot;:31.27},{&quot;2026-08-08&quot;:31.8},{&quot;2026-08-09&quot;:31.8},{&quot;2026-08-10&quot;:32.37},{&quot;2026-08-11&quot;:31.8},{&quot;2026-08-12&quot;:32.7},{&quot;2026-08-13&quot;:32.7},{&quot;2026-08-14&quot;:32.7},{&quot;2026-08-15&quot;:32.7},{&quot;2026-08-16&quot;:32.7},{&quot;2026-08-17&quot;:33.31},{&quot;2026-08-18&quot;:33.99},{&quot;2026-08-19&quot;:33.99},{&quot;2026-08-20&quot;:34.39},{&quot;2026-08-21&quot;:35.44},{&quot;2026-08-22&quot;:39.7},{&quot;2026-08-23&quot;:39.7},{&quot;2026-08-24&quot;:39.7},{&quot;2026-08-25&quot;:39.7},{&quot;2026-08-26&quot;:41.72},{&quot;2026-08-27&quot;:42.2},{&quot;2026-08-28&quot;:43.25},{&quot;2026-08-29&quot;:43.25},{&quot;2026-08-30&quot;:44.24},{&quot;2026-08-31&quot;:44.24},{&quot;2026-09-01&quot;:45.58},{&quot;2026-09-02&quot;:45.58},{&quot;2026-09-03&quot;:46.54},{&quot;2026-09-04&quot;:46.92},{&quot;2026-09-05&quot;:45.61},{&quot;2026-09-06&quot;:47.31},{&quot;2026-09-07&quot;:49.32},{&quot;2026-09-08&quot;:50.87},{&quot;2026-09-09&quot;:50.87},{&quot;2026-09-10&quot;:50.87},{&quot;2026-09-11&quot;:50.87}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:10.43},{&quot;2026-06-14&quot;:10.32},{&quot;2026-06-15&quot;:10.41},{&quot;2026-06-16&quot;:10.62},{&quot;2026-06-17&quot;:10.57},{&quot;2026-06-18&quot;:10.55},{&quot;2026-06-19&quot;:10.58},{&quot;2026-06-20&quot;:10.57},{&quot;2026-06-21&quot;:10.57},{&quot;2026-06-22&quot;:10.53},{&quot;2026-06-23&quot;:10.56},{&quot;2026-06-24&quot;:10.54},{&quot;2026-06-25&quot;:10.6},{&quot;2026-06-26&quot;:10.77},{&quot;2026-06-27&quot;:10.93},{&quot;2026-06-28&quot;:11.06},{&quot;2026-06-29&quot;:11.25},{&quot;2026-06-30&quot;:11.16},{&quot;2026-07-01&quot;:11.61},{&quot;2026-07-02&quot;:11.61},{&quot;2026-07-03&quot;:11.98},{&quot;2026-07-04&quot;:12.28},{&quot;2026-07-05&quot;:12.63},{&quot;2026-07-06&quot;:12.68},{&quot;2026-07-07&quot;:13.22},{&quot;2026-07-08&quot;:12.99},{&quot;2026-07-09&quot;:12.99},{&quot;2026-07-10&quot;:12.97},{&quot;2026-07-11&quot;:12.97},{&quot;2026-07-12&quot;:13.05},{&quot;2026-07-13&quot;:13.05},{&quot;2026-07-14&quot;:13.05},{&quot;2026-07-15&quot;:12.92},{&quot;2026-07-16&quot;:12.92},{&quot;2026-07-17&quot;:12.92},{&quot;2026-07-18&quot;:12.98},{&quot;2026-07-19&quot;:12.99},{&quot;2026-07-20&quot;:12.71},{&quot;2026-07-21&quot;:12.71},{&quot;2026-07-22&quot;:12.41},{&quot;2026-07-23&quot;:12.33},{&quot;2026-07-24&quot;:12.09},{&quot;2026-07-25&quot;:11.99},{&quot;2026-07-26&quot;:12.03},{&quot;2026-07-27&quot;:11.75},{&quot;2026-07-28&quot;:11.87},{&quot;2026-07-29&quot;:11.91},{&quot;2026-07-30&quot;:11.91},{&quot;2026-07-31&quot;:11.65},{&quot;2026-08-01&quot;:11.56},{&quot;2026-08-02&quot;:11.63},{&quot;2026-08-03&quot;:11.69},{&quot;2026-08-04&quot;:11.56},{&quot;2026-08-05&quot;:11.62},{&quot;2026-08-07&quot;:11.79},{&quot;2026-08-08&quot;:11.79},{&quot;2026-08-09&quot;:11.76},{&quot;2026-08-10&quot;:11.82},{&quot;2026-08-11&quot;:12.5},{&quot;2026-08-12&quot;:12.46},{&quot;2026-08-13&quot;:13.94},{&quot;2026-08-14&quot;:14.85},{&quot;2026-08-15&quot;:14.99},{&quot;2026-08-16&quot;:15.73},{&quot;2026-08-17&quot;:15.81},{&quot;2026-08-18&quot;:15.88},{&quot;2026-08-19&quot;:16.31},{&quot;2026-08-20&quot;:15.56},{&quot;2026-08-21&quot;:15.75},{&quot;2026-08-22&quot;:16.62},{&quot;2026-08-23&quot;:17.55},{&quot;2026-08-24&quot;:17.55},{&quot;2026-08-25&quot;:17.6},{&quot;2026-08-26&quot;:17.57},{&quot;2026-08-27&quot;:17.57},{&quot;2026-08-28&quot;:17.22},{&quot;2026-08-29&quot;:17.22},{&quot;2026-08-30&quot;:18.26},{&quot;2026-08-31&quot;:18.31},{&quot;2026-09-01&quot;:18.31},{&quot;2026-09-02&quot;:18.19},{&quot;2026-09-03&quot;:19.02},{&quot;2026-09-04&quot;:19.02},{&quot;2026-09-05&quot;:19.14},{&quot;2026-09-06&quot;:19.37},{&quot;2026-09-07&quot;:19.37},{&quot;2026-09-08&quot;:18.08},{&quot;2026-09-09&quot;:18.26},{&quot;2026-09-10&quot;:18.26},{&quot;2026-09-11&quot;:18.26}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="20844"
  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-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">
            Sword of Fire and Ice
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $48.75
          </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="Sword of Fire and Ice" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/6/2626d4c9-fcef-4057-a154-7d987a4a4b84.jpg?1783930092" />

        <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">
            Sword of Fire and Ice
        </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">Artifact — Equipment</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-3'></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="Sword of Fire and Ice" src="https://cards.scryfall.io/large/front/2/6/2626d4c9-fcef-4057-a154-7d987a4a4b84.jpg?1783930092" />
    </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">
                $48.75
              </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">
                $57.99
              </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">$25.00</span>
              <span class="text-xs text-grey-text">Credit: $32.50</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:53.89},{&quot;2026-06-14&quot;:53.89},{&quot;2026-06-15&quot;:53.89},{&quot;2026-06-16&quot;:54.16},{&quot;2026-06-17&quot;:54.16},{&quot;2026-06-18&quot;:54.16},{&quot;2026-06-19&quot;:54.16},{&quot;2026-06-20&quot;:54.16},{&quot;2026-06-21&quot;:54.16},{&quot;2026-06-22&quot;:54.47},{&quot;2026-06-23&quot;:54.75},{&quot;2026-06-24&quot;:54.75},{&quot;2026-06-25&quot;:54.75},{&quot;2026-06-26&quot;:54.75},{&quot;2026-06-27&quot;:54.75},{&quot;2026-06-28&quot;:54.75},{&quot;2026-06-29&quot;:54.75},{&quot;2026-06-30&quot;:54.75},{&quot;2026-07-01&quot;:54.75},{&quot;2026-07-02&quot;:54.75},{&quot;2026-07-03&quot;:54.75},{&quot;2026-07-04&quot;:54.75},{&quot;2026-07-05&quot;:54.75},{&quot;2026-07-06&quot;:55.23},{&quot;2026-07-07&quot;:55.23},{&quot;2026-07-08&quot;:55.23},{&quot;2026-07-09&quot;:55.23},{&quot;2026-07-10&quot;:55.23},{&quot;2026-07-11&quot;:55.23},{&quot;2026-07-12&quot;:55.23},{&quot;2026-07-13&quot;:55.23},{&quot;2026-07-14&quot;:55.23},{&quot;2026-07-15&quot;:55.83},{&quot;2026-07-16&quot;:55.83},{&quot;2026-07-17&quot;:55.83},{&quot;2026-07-18&quot;:55.83},{&quot;2026-07-19&quot;:55.83},{&quot;2026-07-20&quot;:55.83},{&quot;2026-07-21&quot;:55.83},{&quot;2026-07-22&quot;:55.83},{&quot;2026-07-23&quot;:55.83},{&quot;2026-07-24&quot;:55.83},{&quot;2026-07-25&quot;:55.83},{&quot;2026-07-26&quot;:55.83},{&quot;2026-07-27&quot;:55.83},{&quot;2026-07-28&quot;:55.83},{&quot;2026-07-29&quot;:55.83},{&quot;2026-07-30&quot;:55.83},{&quot;2026-07-31&quot;:55.83},{&quot;2026-08-01&quot;:55.83},{&quot;2026-08-02&quot;:55.83},{&quot;2026-08-03&quot;:55.83},{&quot;2026-08-04&quot;:55.83},{&quot;2026-08-05&quot;:55.83},{&quot;2026-08-07&quot;:56.45},{&quot;2026-08-08&quot;:56.45},{&quot;2026-08-09&quot;:57.04},{&quot;2026-08-10&quot;:57.04},{&quot;2026-08-11&quot;:57.04},{&quot;2026-08-12&quot;:57.12},{&quot;2026-08-13&quot;:57.12},{&quot;2026-08-14&quot;:57.29},{&quot;2026-08-15&quot;:57.29},{&quot;2026-08-16&quot;:57.29},{&quot;2026-08-17&quot;:57.29},{&quot;2026-08-18&quot;:57.29},{&quot;2026-08-19&quot;:57.29},{&quot;2026-08-20&quot;:57.29},{&quot;2026-08-21&quot;:57.29},{&quot;2026-08-22&quot;:57.29},{&quot;2026-08-23&quot;:57.29},{&quot;2026-08-24&quot;:57.29},{&quot;2026-08-25&quot;:57.29},{&quot;2026-08-26&quot;:57.29},{&quot;2026-08-27&quot;:57.24},{&quot;2026-08-28&quot;:57.24},{&quot;2026-08-29&quot;:57.24},{&quot;2026-08-30&quot;:57.24},{&quot;2026-08-31&quot;:57.24},{&quot;2026-09-01&quot;:57.24},{&quot;2026-09-02&quot;:57.18},{&quot;2026-09-03&quot;:57.18},{&quot;2026-09-04&quot;:57.18},{&quot;2026-09-05&quot;:57.18},{&quot;2026-09-06&quot;:57.91},{&quot;2026-09-07&quot;:57.91},{&quot;2026-09-08&quot;:57.91},{&quot;2026-09-09&quot;:57.91},{&quot;2026-09-10&quot;:57.91},{&quot;2026-09-11&quot;:57.99}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:46.53},{&quot;2026-06-14&quot;:46.53},{&quot;2026-06-15&quot;:46.47},{&quot;2026-06-16&quot;:46.47},{&quot;2026-06-17&quot;:46.31},{&quot;2026-06-18&quot;:46.31},{&quot;2026-06-19&quot;:46.8},{&quot;2026-06-20&quot;:46.5},{&quot;2026-06-21&quot;:46.65},{&quot;2026-06-22&quot;:46.64},{&quot;2026-06-23&quot;:46.58},{&quot;2026-06-24&quot;:46.58},{&quot;2026-06-25&quot;:46.58},{&quot;2026-06-26&quot;:46.58},{&quot;2026-06-27&quot;:46.58},{&quot;2026-06-28&quot;:46.58},{&quot;2026-06-29&quot;:46.58},{&quot;2026-06-30&quot;:47.45},{&quot;2026-07-01&quot;:48.28},{&quot;2026-07-02&quot;:48.28},{&quot;2026-07-03&quot;:48.28},{&quot;2026-07-04&quot;:48.2},{&quot;2026-07-05&quot;:48.2},{&quot;2026-07-06&quot;:48.63},{&quot;2026-07-07&quot;:48.63},{&quot;2026-07-08&quot;:48.63},{&quot;2026-07-09&quot;:48.63},{&quot;2026-07-10&quot;:49.3},{&quot;2026-07-11&quot;:49.07},{&quot;2026-07-12&quot;:49.07},{&quot;2026-07-13&quot;:49.11},{&quot;2026-07-14&quot;:49.11},{&quot;2026-07-15&quot;:49.29},{&quot;2026-07-16&quot;:49.29},{&quot;2026-07-17&quot;:49.29},{&quot;2026-07-18&quot;:49.29},{&quot;2026-07-19&quot;:49.29},{&quot;2026-07-20&quot;:49.19},{&quot;2026-07-21&quot;:49.19},{&quot;2026-07-22&quot;:49.19},{&quot;2026-07-23&quot;:49.17},{&quot;2026-07-24&quot;:49.19},{&quot;2026-07-25&quot;:49.49},{&quot;2026-07-26&quot;:49.49},{&quot;2026-07-27&quot;:48.98},{&quot;2026-07-28&quot;:48.89},{&quot;2026-07-29&quot;:48.89},{&quot;2026-07-30&quot;:49.37},{&quot;2026-07-31&quot;:49.37},{&quot;2026-08-01&quot;:49.36},{&quot;2026-08-02&quot;:49.4},{&quot;2026-08-03&quot;:49.94},{&quot;2026-08-04&quot;:50.2},{&quot;2026-08-05&quot;:50.2},{&quot;2026-08-07&quot;:50.2},{&quot;2026-08-08&quot;:50.2},{&quot;2026-08-09&quot;:50.2},{&quot;2026-08-10&quot;:49.91},{&quot;2026-08-11&quot;:49.91},{&quot;2026-08-12&quot;:49.91},{&quot;2026-08-13&quot;:49.91},{&quot;2026-08-14&quot;:49.91},{&quot;2026-08-15&quot;:49.58},{&quot;2026-08-16&quot;:49.2},{&quot;2026-08-17&quot;:49.2},{&quot;2026-08-18&quot;:49.05},{&quot;2026-08-19&quot;:49.05},{&quot;2026-08-20&quot;:49.05},{&quot;2026-08-21&quot;:49.47},{&quot;2026-08-22&quot;:48.52},{&quot;2026-08-23&quot;:48.74},{&quot;2026-08-24&quot;:48.66},{&quot;2026-08-25&quot;:48.66},{&quot;2026-08-26&quot;:48.9},{&quot;2026-08-27&quot;:48.9},{&quot;2026-08-28&quot;:48.9},{&quot;2026-08-29&quot;:48.9},{&quot;2026-08-30&quot;:48.9},{&quot;2026-08-31&quot;:48.9},{&quot;2026-09-01&quot;:48.82},{&quot;2026-09-02&quot;:48.82},{&quot;2026-09-03&quot;:48.98},{&quot;2026-09-04&quot;:48.98},{&quot;2026-09-05&quot;:48.65},{&quot;2026-09-06&quot;:48.51},{&quot;2026-09-07&quot;:48.72},{&quot;2026-09-08&quot;:48.72},{&quot;2026-09-09&quot;:48.75},{&quot;2026-09-10&quot;:48.75},{&quot;2026-09-11&quot;:48.75}]}"
        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="98353"
  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-tla 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">
            Badgermole Cub
        </span>


      </div>

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

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

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

        <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">
            Badgermole Cub
        </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 — Badger Mole</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="Badgermole Cub" src="https://cards.scryfall.io/large/front/3/4/340c5799-4964-44dd-8c48-8f3f3aba5211.jpg?1783904948" />
    </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">
                $46.65
              </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">
                $50.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">$46.00</span>
              <span class="text-xs text-grey-text">Credit: $59.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;:62.09},{&quot;2026-06-13&quot;:62.09},{&quot;2026-06-14&quot;:62.09},{&quot;2026-06-15&quot;:62.11},{&quot;2026-06-16&quot;:62.07},{&quot;2026-06-17&quot;:61.65},{&quot;2026-06-18&quot;:61.13},{&quot;2026-06-19&quot;:60.09},{&quot;2026-06-20&quot;:60.09},{&quot;2026-06-21&quot;:59.59},{&quot;2026-06-22&quot;:58.99},{&quot;2026-06-23&quot;:58.93},{&quot;2026-06-24&quot;:58.93},{&quot;2026-06-25&quot;:58.45},{&quot;2026-06-26&quot;:58.53},{&quot;2026-06-27&quot;:57.92},{&quot;2026-06-28&quot;:58.1},{&quot;2026-06-29&quot;:58.4},{&quot;2026-06-30&quot;:58.1},{&quot;2026-07-01&quot;:57.7},{&quot;2026-07-02&quot;:56.85},{&quot;2026-07-03&quot;:56.59},{&quot;2026-07-04&quot;:56.87},{&quot;2026-07-05&quot;:56.87},{&quot;2026-07-06&quot;:57.41},{&quot;2026-07-07&quot;:57.23},{&quot;2026-07-08&quot;:57.0},{&quot;2026-07-09&quot;:56.85},{&quot;2026-07-10&quot;:56.85},{&quot;2026-07-11&quot;:56.91},{&quot;2026-07-12&quot;:56.83},{&quot;2026-07-13&quot;:57.01},{&quot;2026-07-14&quot;:57.01},{&quot;2026-07-15&quot;:57.01},{&quot;2026-07-16&quot;:56.72},{&quot;2026-07-17&quot;:56.62},{&quot;2026-07-18&quot;:56.69},{&quot;2026-07-19&quot;:56.42},{&quot;2026-07-20&quot;:56.42},{&quot;2026-07-21&quot;:55.83},{&quot;2026-07-23&quot;:55.28},{&quot;2026-07-24&quot;:54.7},{&quot;2026-07-25&quot;:54.65},{&quot;2026-07-26&quot;:54.86},{&quot;2026-07-27&quot;:55.18},{&quot;2026-07-28&quot;:55.48},{&quot;2026-07-29&quot;:55.58},{&quot;2026-07-30&quot;:56.34},{&quot;2026-07-31&quot;:57.2},{&quot;2026-08-01&quot;:56.99},{&quot;2026-08-02&quot;:56.99},{&quot;2026-08-03&quot;:56.91},{&quot;2026-08-04&quot;:56.88},{&quot;2026-08-05&quot;:56.86},{&quot;2026-08-07&quot;:57.09},{&quot;2026-08-08&quot;:57.85},{&quot;2026-08-09&quot;:57.78},{&quot;2026-08-10&quot;:57.53},{&quot;2026-08-11&quot;:54.55},{&quot;2026-08-12&quot;:52.64},{&quot;2026-08-13&quot;:52.2},{&quot;2026-08-14&quot;:52.03},{&quot;2026-08-15&quot;:52.31},{&quot;2026-08-16&quot;:51.79},{&quot;2026-08-17&quot;:50.59},{&quot;2026-08-18&quot;:49.88},{&quot;2026-08-19&quot;:50.17},{&quot;2026-08-20&quot;:50.17},{&quot;2026-08-21&quot;:50.43},{&quot;2026-08-22&quot;:50.43},{&quot;2026-08-23&quot;:49.17},{&quot;2026-08-24&quot;:49.1},{&quot;2026-08-25&quot;:49.14},{&quot;2026-08-26&quot;:49.03},{&quot;2026-08-27&quot;:48.86},{&quot;2026-08-28&quot;:48.84},{&quot;2026-08-29&quot;:48.84},{&quot;2026-08-30&quot;:48.61},{&quot;2026-08-31&quot;:48.65},{&quot;2026-09-01&quot;:48.62},{&quot;2026-09-02&quot;:48.47},{&quot;2026-09-03&quot;:48.58},{&quot;2026-09-04&quot;:48.41},{&quot;2026-09-05&quot;:49.31},{&quot;2026-09-06&quot;:49.44},{&quot;2026-09-07&quot;:49.34},{&quot;2026-09-08&quot;:49.45},{&quot;2026-09-09&quot;:49.85},{&quot;2026-09-10&quot;:49.85},{&quot;2026-09-11&quot;:50.13}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:52.73},{&quot;2026-06-13&quot;:51.7},{&quot;2026-06-14&quot;:50.07},{&quot;2026-06-15&quot;:48.29},{&quot;2026-06-16&quot;:49.26},{&quot;2026-06-17&quot;:50.55},{&quot;2026-06-18&quot;:50.65},{&quot;2026-06-19&quot;:50.7},{&quot;2026-06-20&quot;:49.83},{&quot;2026-06-21&quot;:49.64},{&quot;2026-06-22&quot;:49.94},{&quot;2026-06-23&quot;:49.59},{&quot;2026-06-24&quot;:49.17},{&quot;2026-06-25&quot;:47.33},{&quot;2026-06-26&quot;:43.8},{&quot;2026-06-27&quot;:46.3},{&quot;2026-06-28&quot;:45.95},{&quot;2026-06-29&quot;:47.86},{&quot;2026-06-30&quot;:49.09},{&quot;2026-07-01&quot;:47.99},{&quot;2026-07-02&quot;:46.67},{&quot;2026-07-03&quot;:48.21},{&quot;2026-07-04&quot;:48.62},{&quot;2026-07-05&quot;:48.0},{&quot;2026-07-06&quot;:49.99},{&quot;2026-07-07&quot;:49.33},{&quot;2026-07-08&quot;:49.9},{&quot;2026-07-09&quot;:51.14},{&quot;2026-07-10&quot;:51.39},{&quot;2026-07-11&quot;:51.5},{&quot;2026-07-12&quot;:51.75},{&quot;2026-07-13&quot;:51.73},{&quot;2026-07-14&quot;:51.33},{&quot;2026-07-15&quot;:51.75},{&quot;2026-07-16&quot;:50.49},{&quot;2026-07-17&quot;:49.11},{&quot;2026-07-18&quot;:49.15},{&quot;2026-07-19&quot;:49.68},{&quot;2026-07-20&quot;:49.32},{&quot;2026-07-21&quot;:49.09},{&quot;2026-07-23&quot;:47.03},{&quot;2026-07-24&quot;:47.03},{&quot;2026-07-25&quot;:46.19},{&quot;2026-07-26&quot;:47.18},{&quot;2026-07-27&quot;:49.87},{&quot;2026-07-28&quot;:50.34},{&quot;2026-07-29&quot;:50.44},{&quot;2026-07-30&quot;:49.39},{&quot;2026-07-31&quot;:51.0},{&quot;2026-08-01&quot;:51.08},{&quot;2026-08-02&quot;:51.0},{&quot;2026-08-03&quot;:52.35},{&quot;2026-08-04&quot;:52.54},{&quot;2026-08-05&quot;:53.38},{&quot;2026-08-07&quot;:53.06},{&quot;2026-08-08&quot;:53.23},{&quot;2026-08-09&quot;:53.53},{&quot;2026-08-10&quot;:51.9},{&quot;2026-08-11&quot;:37.3},{&quot;2026-08-12&quot;:42.62},{&quot;2026-08-13&quot;:43.94},{&quot;2026-08-14&quot;:45.0},{&quot;2026-08-15&quot;:45.2},{&quot;2026-08-16&quot;:45.4},{&quot;2026-08-17&quot;:45.31},{&quot;2026-08-18&quot;:44.94},{&quot;2026-08-19&quot;:43.21},{&quot;2026-08-20&quot;:43.21},{&quot;2026-08-21&quot;:45.04},{&quot;2026-08-22&quot;:45.69},{&quot;2026-08-23&quot;:45.93},{&quot;2026-08-24&quot;:46.92},{&quot;2026-08-25&quot;:46.96},{&quot;2026-08-26&quot;:46.54},{&quot;2026-08-27&quot;:46.53},{&quot;2026-08-28&quot;:45.34},{&quot;2026-08-29&quot;:45.34},{&quot;2026-08-30&quot;:45.89},{&quot;2026-08-31&quot;:45.81},{&quot;2026-09-01&quot;:46.03},{&quot;2026-09-02&quot;:47.69},{&quot;2026-09-03&quot;:46.66},{&quot;2026-09-04&quot;:47.13},{&quot;2026-09-05&quot;:46.99},{&quot;2026-09-06&quot;:47.13},{&quot;2026-09-07&quot;:46.99},{&quot;2026-09-08&quot;:47.38},{&quot;2026-09-09&quot;:47.45},{&quot;2026-09-10&quot;:47.63},{&quot;2026-09-11&quot;:46.65}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="57048"
  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-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">
            Mondrak, Glory Dominus
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Legendary Creature — Phyrexian Horror
      </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">
            $45.00
          </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="Mondrak, Glory Dominus" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/2/8296a455-21d5-498e-9029-2bdf0da855a8.jpg?1783918077" />

        <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">
            Mondrak, Glory Dominus
        </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 — Phyrexian Horror</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Mondrak, Glory Dominus" src="https://cards.scryfall.io/large/front/8/2/8296a455-21d5-498e-9029-2bdf0da855a8.jpg?1783918077" />
    </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">
                $45.00
              </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">
                $46.98
              </span>

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$39.00</span>
              <span class="text-xs text-grey-text">Credit: $50.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-11&quot;:47.38},{&quot;2026-06-12&quot;:47.38},{&quot;2026-06-13&quot;:47.38},{&quot;2026-06-14&quot;:47.38},{&quot;2026-06-15&quot;:47.52},{&quot;2026-06-16&quot;:47.52},{&quot;2026-06-17&quot;:47.52},{&quot;2026-06-18&quot;:47.52},{&quot;2026-06-19&quot;:47.52},{&quot;2026-06-20&quot;:47.52},{&quot;2026-06-21&quot;:47.52},{&quot;2026-06-22&quot;:47.52},{&quot;2026-06-23&quot;:47.52},{&quot;2026-06-24&quot;:47.66},{&quot;2026-06-25&quot;:47.66},{&quot;2026-06-26&quot;:47.41},{&quot;2026-06-27&quot;:46.84},{&quot;2026-06-28&quot;:46.75},{&quot;2026-06-29&quot;:46.75},{&quot;2026-06-30&quot;:46.66},{&quot;2026-07-01&quot;:46.47},{&quot;2026-07-02&quot;:46.33},{&quot;2026-07-03&quot;:46.27},{&quot;2026-07-04&quot;:46.27},{&quot;2026-07-05&quot;:45.8},{&quot;2026-07-06&quot;:45.53},{&quot;2026-07-07&quot;:45.78},{&quot;2026-07-08&quot;:45.78},{&quot;2026-07-09&quot;:45.78},{&quot;2026-07-10&quot;:45.78},{&quot;2026-07-11&quot;:45.78},{&quot;2026-07-12&quot;:45.5},{&quot;2026-07-13&quot;:45.5},{&quot;2026-07-14&quot;:45.5},{&quot;2026-07-15&quot;:45.5},{&quot;2026-07-16&quot;:45.5},{&quot;2026-07-17&quot;:45.5},{&quot;2026-07-18&quot;:45.6},{&quot;2026-07-19&quot;:45.6},{&quot;2026-07-20&quot;:45.54},{&quot;2026-07-21&quot;:45.86},{&quot;2026-07-23&quot;:45.85},{&quot;2026-07-25&quot;:45.85},{&quot;2026-07-26&quot;:46.41},{&quot;2026-07-27&quot;:46.41},{&quot;2026-07-28&quot;:46.41},{&quot;2026-07-29&quot;:46.41},{&quot;2026-07-30&quot;:46.1},{&quot;2026-07-31&quot;:45.34},{&quot;2026-08-01&quot;:45.06},{&quot;2026-08-02&quot;:45.06},{&quot;2026-08-03&quot;:45.06},{&quot;2026-08-04&quot;:45.6},{&quot;2026-08-05&quot;:45.6},{&quot;2026-08-07&quot;:45.6},{&quot;2026-08-08&quot;:45.71},{&quot;2026-08-09&quot;:45.48},{&quot;2026-08-10&quot;:45.4},{&quot;2026-08-11&quot;:45.64},{&quot;2026-08-12&quot;:45.64},{&quot;2026-08-13&quot;:45.59},{&quot;2026-08-14&quot;:45.49},{&quot;2026-08-15&quot;:45.38},{&quot;2026-08-16&quot;:45.38},{&quot;2026-08-17&quot;:45.38},{&quot;2026-08-18&quot;:45.29},{&quot;2026-08-19&quot;:45.29},{&quot;2026-08-20&quot;:45.29},{&quot;2026-08-21&quot;:45.23},{&quot;2026-08-22&quot;:45.23},{&quot;2026-08-23&quot;:45.23},{&quot;2026-08-24&quot;:45.11},{&quot;2026-08-25&quot;:45.44},{&quot;2026-08-26&quot;:45.44},{&quot;2026-08-27&quot;:44.85},{&quot;2026-08-28&quot;:44.85},{&quot;2026-08-29&quot;:44.85},{&quot;2026-08-30&quot;:44.85},{&quot;2026-08-31&quot;:45.08},{&quot;2026-09-01&quot;:45.08},{&quot;2026-09-02&quot;:45.45},{&quot;2026-09-03&quot;:45.45},{&quot;2026-09-04&quot;:45.45},{&quot;2026-09-05&quot;:45.45},{&quot;2026-09-06&quot;:45.45},{&quot;2026-09-07&quot;:45.45},{&quot;2026-09-08&quot;:45.45},{&quot;2026-09-09&quot;:45.99},{&quot;2026-09-10&quot;:46.76},{&quot;2026-09-11&quot;:46.98}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:44.83},{&quot;2026-06-12&quot;:44.62},{&quot;2026-06-13&quot;:44.5},{&quot;2026-06-14&quot;:44.49},{&quot;2026-06-15&quot;:44.63},{&quot;2026-06-16&quot;:44.63},{&quot;2026-06-17&quot;:45.13},{&quot;2026-06-18&quot;:42.88},{&quot;2026-06-19&quot;:42.66},{&quot;2026-06-20&quot;:42.3},{&quot;2026-06-21&quot;:41.98},{&quot;2026-06-22&quot;:42.25},{&quot;2026-06-23&quot;:42.62},{&quot;2026-06-24&quot;:41.86},{&quot;2026-06-25&quot;:42.81},{&quot;2026-06-26&quot;:42.77},{&quot;2026-06-27&quot;:42.7},{&quot;2026-06-28&quot;:39.19},{&quot;2026-06-29&quot;:42.2},{&quot;2026-06-30&quot;:41.66},{&quot;2026-07-01&quot;:41.61},{&quot;2026-07-02&quot;:41.88},{&quot;2026-07-03&quot;:41.21},{&quot;2026-07-04&quot;:41.19},{&quot;2026-07-05&quot;:41.17},{&quot;2026-07-06&quot;:40.96},{&quot;2026-07-07&quot;:41.67},{&quot;2026-07-08&quot;:41.12},{&quot;2026-07-09&quot;:41.71},{&quot;2026-07-10&quot;:41.77},{&quot;2026-07-11&quot;:41.43},{&quot;2026-07-12&quot;:41.72},{&quot;2026-07-13&quot;:41.91},{&quot;2026-07-14&quot;:41.73},{&quot;2026-07-15&quot;:42.63},{&quot;2026-07-16&quot;:42.71},{&quot;2026-07-17&quot;:43.09},{&quot;2026-07-18&quot;:43.67},{&quot;2026-07-19&quot;:44.22},{&quot;2026-07-20&quot;:44.65},{&quot;2026-07-21&quot;:44.82},{&quot;2026-07-23&quot;:44.08},{&quot;2026-07-25&quot;:42.58},{&quot;2026-07-26&quot;:41.68},{&quot;2026-07-27&quot;:41.98},{&quot;2026-07-28&quot;:41.76},{&quot;2026-07-29&quot;:41.69},{&quot;2026-07-30&quot;:42.24},{&quot;2026-07-31&quot;:42.01},{&quot;2026-08-01&quot;:42.43},{&quot;2026-08-02&quot;:41.44},{&quot;2026-08-03&quot;:41.1},{&quot;2026-08-04&quot;:41.1},{&quot;2026-08-05&quot;:40.67},{&quot;2026-08-07&quot;:40.93},{&quot;2026-08-08&quot;:40.27},{&quot;2026-08-09&quot;:40.65},{&quot;2026-08-10&quot;:41.57},{&quot;2026-08-11&quot;:41.77},{&quot;2026-08-12&quot;:42.08},{&quot;2026-08-13&quot;:42.1},{&quot;2026-08-14&quot;:42.32},{&quot;2026-08-15&quot;:42.31},{&quot;2026-08-16&quot;:42.7},{&quot;2026-08-17&quot;:42.47},{&quot;2026-08-18&quot;:41.86},{&quot;2026-08-19&quot;:41.76},{&quot;2026-08-20&quot;:41.76},{&quot;2026-08-21&quot;:41.51},{&quot;2026-08-22&quot;:41.23},{&quot;2026-08-23&quot;:41.45},{&quot;2026-08-24&quot;:41.09},{&quot;2026-08-25&quot;:40.85},{&quot;2026-08-26&quot;:40.71},{&quot;2026-08-27&quot;:40.9},{&quot;2026-08-28&quot;:40.52},{&quot;2026-08-29&quot;:40.52},{&quot;2026-08-30&quot;:42.45},{&quot;2026-08-31&quot;:43.01},{&quot;2026-09-01&quot;:42.82},{&quot;2026-09-02&quot;:43.51},{&quot;2026-09-03&quot;:43.63},{&quot;2026-09-04&quot;:44.26},{&quot;2026-09-05&quot;:44.87},{&quot;2026-09-06&quot;:44.13},{&quot;2026-09-07&quot;:44.0},{&quot;2026-09-08&quot;:44.18},{&quot;2026-09-09&quot;:45.54},{&quot;2026-09-10&quot;:45.3},{&quot;2026-09-11&quot;:45.0}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $42.20
          </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="Sensei&#39;s Divining Top" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/e/5/e5142b7a-e580-4737-a4aa-2590f6610ceb.jpg?1783921788" />

        <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">
            Sensei&#39;s Divining Top
        </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-1'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Sensei&#39;s Divining Top" src="https://cards.scryfall.io/large/front/e/5/e5142b7a-e580-4737-a4aa-2590f6610ceb.jpg?1783921788" />
    </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">
                $42.20
              </span>

            </div>
          </div>

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $50.67
              </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">$21.00</span>
              <span class="text-xs text-grey-text">Credit: $27.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;:49.44},{&quot;2026-06-14&quot;:49.81},{&quot;2026-06-15&quot;:49.81},{&quot;2026-06-16&quot;:49.81},{&quot;2026-06-17&quot;:49.81},{&quot;2026-06-18&quot;:50.02},{&quot;2026-06-19&quot;:50.37},{&quot;2026-06-20&quot;:50.37},{&quot;2026-06-21&quot;:50.37},{&quot;2026-06-22&quot;:50.46},{&quot;2026-06-23&quot;:50.46},{&quot;2026-06-24&quot;:48.57},{&quot;2026-06-25&quot;:48.57},{&quot;2026-06-26&quot;:48.57},{&quot;2026-06-27&quot;:48.57},{&quot;2026-06-28&quot;:48.57},{&quot;2026-06-29&quot;:48.57},{&quot;2026-06-30&quot;:48.57},{&quot;2026-07-01&quot;:48.57},{&quot;2026-07-02&quot;:48.57},{&quot;2026-07-03&quot;:48.57},{&quot;2026-07-04&quot;:46.45},{&quot;2026-07-05&quot;:46.45},{&quot;2026-07-06&quot;:46.45},{&quot;2026-07-07&quot;:46.45},{&quot;2026-07-08&quot;:46.22},{&quot;2026-07-09&quot;:46.55},{&quot;2026-07-10&quot;:46.92},{&quot;2026-07-11&quot;:46.92},{&quot;2026-07-12&quot;:46.92},{&quot;2026-07-13&quot;:46.92},{&quot;2026-07-14&quot;:47.41},{&quot;2026-07-15&quot;:47.67},{&quot;2026-07-16&quot;:47.67},{&quot;2026-07-17&quot;:47.67},{&quot;2026-07-18&quot;:47.8},{&quot;2026-07-19&quot;:47.8},{&quot;2026-07-20&quot;:47.8},{&quot;2026-07-21&quot;:47.8},{&quot;2026-07-22&quot;:47.8},{&quot;2026-07-23&quot;:47.8},{&quot;2026-07-24&quot;:47.8},{&quot;2026-07-25&quot;:47.93},{&quot;2026-07-26&quot;:48.65},{&quot;2026-07-27&quot;:48.65},{&quot;2026-07-28&quot;:48.65},{&quot;2026-07-29&quot;:48.65},{&quot;2026-07-30&quot;:48.65},{&quot;2026-07-31&quot;:48.65},{&quot;2026-08-01&quot;:48.65},{&quot;2026-08-02&quot;:48.65},{&quot;2026-08-03&quot;:48.65},{&quot;2026-08-04&quot;:48.65},{&quot;2026-08-05&quot;:49.2},{&quot;2026-08-07&quot;:49.2},{&quot;2026-08-08&quot;:49.2},{&quot;2026-08-09&quot;:49.2},{&quot;2026-08-10&quot;:49.2},{&quot;2026-08-11&quot;:49.29},{&quot;2026-08-12&quot;:49.29},{&quot;2026-08-13&quot;:49.29},{&quot;2026-08-14&quot;:49.29},{&quot;2026-08-15&quot;:49.29},{&quot;2026-08-16&quot;:49.29},{&quot;2026-08-17&quot;:49.29},{&quot;2026-08-18&quot;:50.01},{&quot;2026-08-19&quot;:50.01},{&quot;2026-08-20&quot;:50.01},{&quot;2026-08-21&quot;:50.01},{&quot;2026-08-22&quot;:50.01},{&quot;2026-08-23&quot;:50.01},{&quot;2026-08-24&quot;:50.01},{&quot;2026-08-25&quot;:50.01},{&quot;2026-08-26&quot;:50.01},{&quot;2026-08-27&quot;:50.01},{&quot;2026-08-28&quot;:50.01},{&quot;2026-08-29&quot;:50.01},{&quot;2026-08-30&quot;:50.01},{&quot;2026-08-31&quot;:50.01},{&quot;2026-09-01&quot;:50.01},{&quot;2026-09-02&quot;:50.01},{&quot;2026-09-03&quot;:50.01},{&quot;2026-09-04&quot;:50.01},{&quot;2026-09-05&quot;:50.43},{&quot;2026-09-06&quot;:50.67},{&quot;2026-09-07&quot;:50.67},{&quot;2026-09-08&quot;:50.67},{&quot;2026-09-09&quot;:50.67},{&quot;2026-09-10&quot;:50.67},{&quot;2026-09-11&quot;:50.67}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:47.98},{&quot;2026-06-14&quot;:47.72},{&quot;2026-06-15&quot;:47.41},{&quot;2026-06-16&quot;:47.41},{&quot;2026-06-17&quot;:47.41},{&quot;2026-06-18&quot;:47.41},{&quot;2026-06-19&quot;:47.6},{&quot;2026-06-20&quot;:47.39},{&quot;2026-06-21&quot;:47.39},{&quot;2026-06-22&quot;:46.9},{&quot;2026-06-23&quot;:46.59},{&quot;2026-06-24&quot;:46.59},{&quot;2026-06-25&quot;:46.79},{&quot;2026-06-26&quot;:46.79},{&quot;2026-06-27&quot;:46.79},{&quot;2026-06-28&quot;:46.92},{&quot;2026-06-29&quot;:47.38},{&quot;2026-06-30&quot;:47.91},{&quot;2026-07-01&quot;:47.91},{&quot;2026-07-02&quot;:48.06},{&quot;2026-07-03&quot;:47.86},{&quot;2026-07-04&quot;:47.86},{&quot;2026-07-05&quot;:47.68},{&quot;2026-07-06&quot;:47.85},{&quot;2026-07-07&quot;:47.85},{&quot;2026-07-08&quot;:47.85},{&quot;2026-07-09&quot;:47.81},{&quot;2026-07-10&quot;:47.69},{&quot;2026-07-11&quot;:46.93},{&quot;2026-07-12&quot;:46.79},{&quot;2026-07-13&quot;:46.4},{&quot;2026-07-14&quot;:46.0},{&quot;2026-07-15&quot;:45.68},{&quot;2026-07-16&quot;:45.8},{&quot;2026-07-17&quot;:45.63},{&quot;2026-07-18&quot;:45.11},{&quot;2026-07-19&quot;:44.75},{&quot;2026-07-20&quot;:44.19},{&quot;2026-07-21&quot;:41.9},{&quot;2026-07-22&quot;:41.35},{&quot;2026-07-23&quot;:41.45},{&quot;2026-07-24&quot;:41.53},{&quot;2026-07-25&quot;:41.53},{&quot;2026-07-26&quot;:41.53},{&quot;2026-07-27&quot;:41.68},{&quot;2026-07-28&quot;:41.73},{&quot;2026-07-29&quot;:41.46},{&quot;2026-07-30&quot;:41.44},{&quot;2026-07-31&quot;:41.04},{&quot;2026-08-01&quot;:41.73},{&quot;2026-08-02&quot;:42.02},{&quot;2026-08-03&quot;:42.02},{&quot;2026-08-04&quot;:42.06},{&quot;2026-08-05&quot;:42.22},{&quot;2026-08-07&quot;:42.31},{&quot;2026-08-08&quot;:42.49},{&quot;2026-08-09&quot;:42.45},{&quot;2026-08-10&quot;:42.45},{&quot;2026-08-11&quot;:42.45},{&quot;2026-08-12&quot;:42.59},{&quot;2026-08-13&quot;:42.59},{&quot;2026-08-14&quot;:42.62},{&quot;2026-08-15&quot;:43.06},{&quot;2026-08-16&quot;:42.34},{&quot;2026-08-17&quot;:41.72},{&quot;2026-08-18&quot;:42.15},{&quot;2026-08-19&quot;:42.47},{&quot;2026-08-20&quot;:42.58},{&quot;2026-08-21&quot;:42.47},{&quot;2026-08-22&quot;:42.37},{&quot;2026-08-23&quot;:42.21},{&quot;2026-08-24&quot;:42.43},{&quot;2026-08-25&quot;:42.88},{&quot;2026-08-26&quot;:42.88},{&quot;2026-08-27&quot;:42.77},{&quot;2026-08-28&quot;:42.72},{&quot;2026-08-29&quot;:42.72},{&quot;2026-08-30&quot;:42.67},{&quot;2026-08-31&quot;:42.71},{&quot;2026-09-01&quot;:42.71},{&quot;2026-09-02&quot;:42.26},{&quot;2026-09-03&quot;:42.26},{&quot;2026-09-04&quot;:42.25},{&quot;2026-09-05&quot;:42.25},{&quot;2026-09-06&quot;:42.25},{&quot;2026-09-07&quot;:42.25},{&quot;2026-09-08&quot;:42.25},{&quot;2026-09-09&quot;:42.25},{&quot;2026-09-10&quot;:42.25},{&quot;2026-09-11&quot;:42.2}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="49157"
  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">
            Ragavan, Nimble Pilferer
        </span>


      </div>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Ragavan, Nimble Pilferer" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/9/a9738cda-adb1-47fb-9f4c-ecd930228c4d.jpg?1783926839" />

        <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">
            Ragavan, Nimble Pilferer
        </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 — Monkey Pirate</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>
          </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="Ragavan, Nimble Pilferer" src="https://cards.scryfall.io/large/front/a/9/a9738cda-adb1-47fb-9f4c-ecd930228c4d.jpg?1783926839" />
    </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">
                $41.86
              </span>

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:53.57},{&quot;2026-06-14&quot;:53.57},{&quot;2026-06-15&quot;:53.57},{&quot;2026-06-16&quot;:53.57},{&quot;2026-06-17&quot;:54.12},{&quot;2026-06-18&quot;:54.12},{&quot;2026-06-19&quot;:54.12},{&quot;2026-06-20&quot;:54.56},{&quot;2026-06-21&quot;:54.56},{&quot;2026-06-22&quot;:54.56},{&quot;2026-06-23&quot;:54.56},{&quot;2026-06-24&quot;:54.56},{&quot;2026-06-25&quot;:54.56},{&quot;2026-06-26&quot;:54.56},{&quot;2026-06-27&quot;:54.56},{&quot;2026-06-28&quot;:54.56},{&quot;2026-06-29&quot;:54.56},{&quot;2026-06-30&quot;:54.56},{&quot;2026-07-01&quot;:54.56},{&quot;2026-07-02&quot;:54.56},{&quot;2026-07-03&quot;:54.79},{&quot;2026-07-04&quot;:54.83},{&quot;2026-07-05&quot;:54.83},{&quot;2026-07-06&quot;:55.45},{&quot;2026-07-07&quot;:55.45},{&quot;2026-07-08&quot;:55.49},{&quot;2026-07-09&quot;:55.49},{&quot;2026-07-10&quot;:55.74},{&quot;2026-07-11&quot;:55.74},{&quot;2026-07-12&quot;:55.66},{&quot;2026-07-13&quot;:55.55},{&quot;2026-07-14&quot;:55.55},{&quot;2026-07-15&quot;:55.55},{&quot;2026-07-16&quot;:55.55},{&quot;2026-07-17&quot;:55.55},{&quot;2026-07-18&quot;:55.55},{&quot;2026-07-19&quot;:55.55},{&quot;2026-07-20&quot;:55.55},{&quot;2026-07-21&quot;:55.55},{&quot;2026-07-22&quot;:55.55},{&quot;2026-07-23&quot;:55.55},{&quot;2026-07-24&quot;:55.55},{&quot;2026-07-25&quot;:55.79},{&quot;2026-07-26&quot;:55.79},{&quot;2026-07-27&quot;:55.79},{&quot;2026-07-28&quot;:55.79},{&quot;2026-07-29&quot;:55.68},{&quot;2026-07-30&quot;:55.85},{&quot;2026-07-31&quot;:56.48},{&quot;2026-08-01&quot;:56.68},{&quot;2026-08-02&quot;:56.68},{&quot;2026-08-03&quot;:56.68},{&quot;2026-08-04&quot;:56.68},{&quot;2026-08-05&quot;:56.68},{&quot;2026-08-07&quot;:57.08},{&quot;2026-08-08&quot;:57.08},{&quot;2026-08-09&quot;:57.08},{&quot;2026-08-10&quot;:57.08},{&quot;2026-08-11&quot;:57.08},{&quot;2026-08-12&quot;:57.08},{&quot;2026-08-13&quot;:57.08},{&quot;2026-08-14&quot;:57.08},{&quot;2026-08-15&quot;:57.08},{&quot;2026-08-16&quot;:57.46},{&quot;2026-08-17&quot;:57.8},{&quot;2026-08-18&quot;:57.26},{&quot;2026-08-19&quot;:57.26},{&quot;2026-08-20&quot;:57.26},{&quot;2026-08-21&quot;:57.26},{&quot;2026-08-22&quot;:57.26},{&quot;2026-08-23&quot;:57.26},{&quot;2026-08-24&quot;:57.26},{&quot;2026-08-25&quot;:57.26},{&quot;2026-08-26&quot;:57.26},{&quot;2026-08-27&quot;:57.26},{&quot;2026-08-28&quot;:57.26},{&quot;2026-08-29&quot;:57.26},{&quot;2026-08-30&quot;:58.3},{&quot;2026-08-31&quot;:58.3},{&quot;2026-09-01&quot;:58.3},{&quot;2026-09-02&quot;:58.79},{&quot;2026-09-03&quot;:58.79},{&quot;2026-09-04&quot;:58.79},{&quot;2026-09-05&quot;:58.79},{&quot;2026-09-06&quot;:58.79},{&quot;2026-09-07&quot;:58.79},{&quot;2026-09-08&quot;:58.79},{&quot;2026-09-09&quot;:58.79},{&quot;2026-09-10&quot;:59.12},{&quot;2026-09-11&quot;:59.12}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:47.17},{&quot;2026-06-14&quot;:47.34},{&quot;2026-06-15&quot;:47.7},{&quot;2026-06-16&quot;:48.0},{&quot;2026-06-17&quot;:47.77},{&quot;2026-06-18&quot;:47.68},{&quot;2026-06-19&quot;:48.02},{&quot;2026-06-20&quot;:48.25},{&quot;2026-06-21&quot;:48.18},{&quot;2026-06-22&quot;:48.05},{&quot;2026-06-23&quot;:47.88},{&quot;2026-06-24&quot;:47.67},{&quot;2026-06-25&quot;:47.36},{&quot;2026-06-26&quot;:46.67},{&quot;2026-06-27&quot;:46.67},{&quot;2026-06-28&quot;:46.67},{&quot;2026-06-29&quot;:46.56},{&quot;2026-06-30&quot;:46.24},{&quot;2026-07-01&quot;:46.16},{&quot;2026-07-02&quot;:45.91},{&quot;2026-07-03&quot;:45.06},{&quot;2026-07-04&quot;:44.35},{&quot;2026-07-05&quot;:44.44},{&quot;2026-07-06&quot;:44.33},{&quot;2026-07-07&quot;:44.17},{&quot;2026-07-08&quot;:44.17},{&quot;2026-07-09&quot;:43.92},{&quot;2026-07-10&quot;:43.84},{&quot;2026-07-11&quot;:43.71},{&quot;2026-07-12&quot;:43.61},{&quot;2026-07-13&quot;:43.61},{&quot;2026-07-14&quot;:43.57},{&quot;2026-07-15&quot;:43.37},{&quot;2026-07-16&quot;:43.39},{&quot;2026-07-17&quot;:43.59},{&quot;2026-07-18&quot;:43.48},{&quot;2026-07-19&quot;:43.38},{&quot;2026-07-20&quot;:43.41},{&quot;2026-07-21&quot;:43.43},{&quot;2026-07-22&quot;:43.47},{&quot;2026-07-23&quot;:43.51},{&quot;2026-07-24&quot;:43.44},{&quot;2026-07-25&quot;:43.44},{&quot;2026-07-26&quot;:43.24},{&quot;2026-07-27&quot;:43.08},{&quot;2026-07-28&quot;:43.02},{&quot;2026-07-29&quot;:42.69},{&quot;2026-07-30&quot;:42.91},{&quot;2026-07-31&quot;:42.85},{&quot;2026-08-01&quot;:42.82},{&quot;2026-08-02&quot;:42.63},{&quot;2026-08-03&quot;:42.43},{&quot;2026-08-04&quot;:42.29},{&quot;2026-08-05&quot;:42.28},{&quot;2026-08-07&quot;:42.26},{&quot;2026-08-08&quot;:42.19},{&quot;2026-08-09&quot;:42.25},{&quot;2026-08-10&quot;:42.38},{&quot;2026-08-11&quot;:42.33},{&quot;2026-08-12&quot;:42.44},{&quot;2026-08-13&quot;:42.53},{&quot;2026-08-14&quot;:42.55},{&quot;2026-08-15&quot;:42.36},{&quot;2026-08-16&quot;:42.28},{&quot;2026-08-17&quot;:42.29},{&quot;2026-08-18&quot;:42.33},{&quot;2026-08-19&quot;:42.2},{&quot;2026-08-20&quot;:42.07},{&quot;2026-08-21&quot;:42.2},{&quot;2026-08-22&quot;:42.33},{&quot;2026-08-23&quot;:42.36},{&quot;2026-08-24&quot;:42.04},{&quot;2026-08-25&quot;:42.04},{&quot;2026-08-26&quot;:42.16},{&quot;2026-08-27&quot;:42.27},{&quot;2026-08-28&quot;:42.33},{&quot;2026-08-29&quot;:42.33},{&quot;2026-08-30&quot;:42.97},{&quot;2026-08-31&quot;:43.08},{&quot;2026-09-01&quot;:43.05},{&quot;2026-09-02&quot;:42.97},{&quot;2026-09-03&quot;:42.56},{&quot;2026-09-04&quot;:42.08},{&quot;2026-09-05&quot;:41.02},{&quot;2026-09-06&quot;:41.21},{&quot;2026-09-07&quot;:40.91},{&quot;2026-09-08&quot;:41.04},{&quot;2026-09-09&quot;:41.27},{&quot;2026-09-10&quot;:41.79},{&quot;2026-09-11&quot;:41.86}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="34725"
  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-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">
            Savai Triome
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Savai Triome
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Land — Mountain Plains 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="Savai Triome" src="https://cards.scryfall.io/large/front/d/2/d21ef9e6-e2dd-4e0a-a36c-e07034ac4ba3.jpg?1783930978" />
    </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">
                $19.09
              </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">
                $40.33
              </span>

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Foil</span>
              <span class="text-lg font-medium text-nine-white">$27.50</span>
              <span class="text-xs text-grey-text">Credit: $35.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-08&quot;:40.39},{&quot;2026-06-10&quot;:40.39},{&quot;2026-06-11&quot;:40.39},{&quot;2026-06-12&quot;:40.51},{&quot;2026-06-13&quot;:40.51},{&quot;2026-06-14&quot;:40.51},{&quot;2026-06-15&quot;:40.51},{&quot;2026-06-16&quot;:40.51},{&quot;2026-06-17&quot;:40.62},{&quot;2026-06-18&quot;:40.67},{&quot;2026-06-19&quot;:40.67},{&quot;2026-06-20&quot;:40.78},{&quot;2026-06-21&quot;:40.78},{&quot;2026-06-22&quot;:40.89},{&quot;2026-06-24&quot;:40.89},{&quot;2026-06-25&quot;:40.89},{&quot;2026-06-26&quot;:40.89},{&quot;2026-06-27&quot;:40.82},{&quot;2026-06-28&quot;:40.82},{&quot;2026-06-29&quot;:40.88},{&quot;2026-06-30&quot;:40.88},{&quot;2026-07-01&quot;:40.88},{&quot;2026-07-02&quot;:40.88},{&quot;2026-07-03&quot;:40.88},{&quot;2026-07-04&quot;:40.95},{&quot;2026-07-05&quot;:40.95},{&quot;2026-07-06&quot;:40.95},{&quot;2026-07-07&quot;:40.95},{&quot;2026-07-08&quot;:40.95},{&quot;2026-07-09&quot;:40.84},{&quot;2026-07-10&quot;:40.84},{&quot;2026-07-11&quot;:40.84},{&quot;2026-07-12&quot;:40.65},{&quot;2026-07-13&quot;:40.65},{&quot;2026-07-14&quot;:40.65},{&quot;2026-07-15&quot;:40.65},{&quot;2026-07-16&quot;:40.65},{&quot;2026-07-17&quot;:40.22},{&quot;2026-07-18&quot;:40.22},{&quot;2026-07-19&quot;:40.22},{&quot;2026-07-20&quot;:40.22},{&quot;2026-07-21&quot;:40.22},{&quot;2026-07-23&quot;:40.22},{&quot;2026-07-25&quot;:40.34},{&quot;2026-07-26&quot;:40.34},{&quot;2026-07-27&quot;:40.34},{&quot;2026-07-29&quot;:40.34},{&quot;2026-07-30&quot;:40.34},{&quot;2026-07-31&quot;:40.34},{&quot;2026-08-01&quot;:40.34},{&quot;2026-08-02&quot;:40.38},{&quot;2026-08-03&quot;:40.48},{&quot;2026-08-04&quot;:40.52},{&quot;2026-08-05&quot;:40.6},{&quot;2026-08-07&quot;:40.6},{&quot;2026-08-08&quot;:40.67},{&quot;2026-08-09&quot;:40.67},{&quot;2026-08-10&quot;:40.62},{&quot;2026-08-11&quot;:40.62},{&quot;2026-08-12&quot;:40.62},{&quot;2026-08-13&quot;:40.62},{&quot;2026-08-14&quot;:40.62},{&quot;2026-08-15&quot;:40.37},{&quot;2026-08-16&quot;:40.37},{&quot;2026-08-17&quot;:40.37},{&quot;2026-08-18&quot;:40.27},{&quot;2026-08-19&quot;:40.39},{&quot;2026-08-20&quot;:40.39},{&quot;2026-08-21&quot;:40.38},{&quot;2026-08-22&quot;:40.38},{&quot;2026-08-23&quot;:40.38},{&quot;2026-08-24&quot;:40.31},{&quot;2026-08-25&quot;:40.31},{&quot;2026-08-26&quot;:40.31},{&quot;2026-08-27&quot;:40.24},{&quot;2026-08-28&quot;:40.24},{&quot;2026-08-29&quot;:40.24},{&quot;2026-08-30&quot;:40.24},{&quot;2026-08-31&quot;:40.31},{&quot;2026-09-01&quot;:40.31},{&quot;2026-09-02&quot;:40.28},{&quot;2026-09-03&quot;:40.28},{&quot;2026-09-04&quot;:40.28},{&quot;2026-09-05&quot;:40.28},{&quot;2026-09-06&quot;:40.28},{&quot;2026-09-07&quot;:40.26},{&quot;2026-09-08&quot;:40.3},{&quot;2026-09-09&quot;:40.33},{&quot;2026-09-10&quot;:40.33},{&quot;2026-09-11&quot;:40.33}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:20.27},{&quot;2026-06-10&quot;:20.12},{&quot;2026-06-11&quot;:20.22},{&quot;2026-06-12&quot;:19.99},{&quot;2026-06-13&quot;:19.99},{&quot;2026-06-14&quot;:19.99},{&quot;2026-06-15&quot;:19.91},{&quot;2026-06-16&quot;:19.91},{&quot;2026-06-17&quot;:19.84},{&quot;2026-06-18&quot;:19.55},{&quot;2026-06-19&quot;:19.67},{&quot;2026-06-20&quot;:19.76},{&quot;2026-06-21&quot;:19.89},{&quot;2026-06-22&quot;:19.82},{&quot;2026-06-24&quot;:19.96},{&quot;2026-06-25&quot;:20.05},{&quot;2026-06-26&quot;:20.05},{&quot;2026-06-27&quot;:20.1},{&quot;2026-06-28&quot;:20.2},{&quot;2026-06-29&quot;:20.28},{&quot;2026-06-30&quot;:20.32},{&quot;2026-07-01&quot;:20.46},{&quot;2026-07-02&quot;:20.34},{&quot;2026-07-03&quot;:20.55},{&quot;2026-07-04&quot;:20.59},{&quot;2026-07-05&quot;:20.59},{&quot;2026-07-06&quot;:20.67},{&quot;2026-07-07&quot;:20.7},{&quot;2026-07-08&quot;:20.49},{&quot;2026-07-09&quot;:20.46},{&quot;2026-07-10&quot;:20.45},{&quot;2026-07-11&quot;:20.65},{&quot;2026-07-12&quot;:20.65},{&quot;2026-07-13&quot;:20.49},{&quot;2026-07-14&quot;:20.84},{&quot;2026-07-15&quot;:20.8},{&quot;2026-07-16&quot;:20.8},{&quot;2026-07-17&quot;:20.84},{&quot;2026-07-18&quot;:20.67},{&quot;2026-07-19&quot;:20.67},{&quot;2026-07-20&quot;:20.67},{&quot;2026-07-21&quot;:20.72},{&quot;2026-07-23&quot;:19.97},{&quot;2026-07-25&quot;:19.67},{&quot;2026-07-26&quot;:19.14},{&quot;2026-07-27&quot;:18.81},{&quot;2026-07-29&quot;:18.54},{&quot;2026-07-30&quot;:18.69},{&quot;2026-07-31&quot;:18.85},{&quot;2026-08-01&quot;:19.01},{&quot;2026-08-02&quot;:19.19},{&quot;2026-08-03&quot;:19.08},{&quot;2026-08-04&quot;:19.29},{&quot;2026-08-05&quot;:19.27},{&quot;2026-08-07&quot;:19.36},{&quot;2026-08-08&quot;:19.42},{&quot;2026-08-09&quot;:19.42},{&quot;2026-08-10&quot;:19.42},{&quot;2026-08-11&quot;:19.39},{&quot;2026-08-12&quot;:19.45},{&quot;2026-08-13&quot;:19.45},{&quot;2026-08-14&quot;:19.57},{&quot;2026-08-15&quot;:19.79},{&quot;2026-08-16&quot;:19.7},{&quot;2026-08-17&quot;:19.71},{&quot;2026-08-18&quot;:19.61},{&quot;2026-08-19&quot;:19.5},{&quot;2026-08-20&quot;:19.5},{&quot;2026-08-21&quot;:19.28},{&quot;2026-08-22&quot;:19.08},{&quot;2026-08-23&quot;:18.96},{&quot;2026-08-24&quot;:18.96},{&quot;2026-08-25&quot;:18.96},{&quot;2026-08-26&quot;:18.67},{&quot;2026-08-27&quot;:18.67},{&quot;2026-08-28&quot;:18.53},{&quot;2026-08-29&quot;:18.53},{&quot;2026-08-30&quot;:18.72},{&quot;2026-08-31&quot;:18.78},{&quot;2026-09-01&quot;:18.78},{&quot;2026-09-02&quot;:18.85},{&quot;2026-09-03&quot;:18.9},{&quot;2026-09-04&quot;:18.85},{&quot;2026-09-05&quot;:18.85},{&quot;2026-09-06&quot;:19.11},{&quot;2026-09-07&quot;:18.95},{&quot;2026-09-08&quot;:19.16},{&quot;2026-09-09&quot;:19.37},{&quot;2026-09-10&quot;:19.22},{&quot;2026-09-11&quot;:19.09}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="48753"
  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-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">
            Ranger-Captain of Eos
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Human Soldier Ranger
      </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">
            $40.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="Ranger-Captain of Eos" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/f/af3928b4-813a-4120-8799-de34235d60ac.jpg?1783933158" />

        <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">
            Ranger-Captain of Eos
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Ranger-Captain of Eos" src="https://cards.scryfall.io/large/front/a/f/af3928b4-813a-4120-8799-de34235d60ac.jpg?1783933158" />
    </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">
                $40.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">
                $62.52
              </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">$27.00</span>
              <span class="text-xs text-grey-text">Credit: $35.10</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:56.83},{&quot;2026-06-14&quot;:56.83},{&quot;2026-06-15&quot;:56.83},{&quot;2026-06-16&quot;:56.83},{&quot;2026-06-17&quot;:56.69},{&quot;2026-06-18&quot;:56.69},{&quot;2026-06-19&quot;:56.69},{&quot;2026-06-20&quot;:56.69},{&quot;2026-06-21&quot;:56.91},{&quot;2026-06-22&quot;:57.04},{&quot;2026-06-23&quot;:57.04},{&quot;2026-06-24&quot;:56.91},{&quot;2026-06-25&quot;:56.91},{&quot;2026-06-26&quot;:56.91},{&quot;2026-06-27&quot;:56.91},{&quot;2026-06-28&quot;:56.91},{&quot;2026-06-29&quot;:56.91},{&quot;2026-06-30&quot;:56.91},{&quot;2026-07-01&quot;:56.91},{&quot;2026-07-02&quot;:56.91},{&quot;2026-07-03&quot;:56.91},{&quot;2026-07-04&quot;:56.79},{&quot;2026-07-05&quot;:56.79},{&quot;2026-07-06&quot;:56.79},{&quot;2026-07-07&quot;:56.79},{&quot;2026-07-08&quot;:56.79},{&quot;2026-07-09&quot;:56.79},{&quot;2026-07-10&quot;:56.79},{&quot;2026-07-11&quot;:56.79},{&quot;2026-07-12&quot;:56.79},{&quot;2026-07-13&quot;:56.79},{&quot;2026-07-14&quot;:56.79},{&quot;2026-07-15&quot;:56.79},{&quot;2026-07-16&quot;:56.79},{&quot;2026-07-17&quot;:56.79},{&quot;2026-07-18&quot;:56.79},{&quot;2026-07-19&quot;:56.79},{&quot;2026-07-20&quot;:56.79},{&quot;2026-07-21&quot;:56.79},{&quot;2026-07-22&quot;:56.79},{&quot;2026-07-23&quot;:56.79},{&quot;2026-07-24&quot;:56.79},{&quot;2026-07-25&quot;:56.79},{&quot;2026-07-26&quot;:56.79},{&quot;2026-07-27&quot;:56.79},{&quot;2026-07-28&quot;:56.79},{&quot;2026-07-29&quot;:56.79},{&quot;2026-07-30&quot;:56.79},{&quot;2026-07-31&quot;:56.79},{&quot;2026-08-01&quot;:56.79},{&quot;2026-08-02&quot;:56.79},{&quot;2026-08-03&quot;:56.79},{&quot;2026-08-04&quot;:56.79},{&quot;2026-08-05&quot;:56.79},{&quot;2026-08-07&quot;:58.08},{&quot;2026-08-08&quot;:58.08},{&quot;2026-08-09&quot;:58.08},{&quot;2026-08-10&quot;:58.08},{&quot;2026-08-11&quot;:58.08},{&quot;2026-08-12&quot;:58.08},{&quot;2026-08-13&quot;:58.08},{&quot;2026-08-14&quot;:58.08},{&quot;2026-08-15&quot;:58.08},{&quot;2026-08-16&quot;:58.08},{&quot;2026-08-17&quot;:58.08},{&quot;2026-08-18&quot;:58.08},{&quot;2026-08-19&quot;:58.08},{&quot;2026-08-20&quot;:58.08},{&quot;2026-08-21&quot;:58.08},{&quot;2026-08-22&quot;:58.08},{&quot;2026-08-23&quot;:58.08},{&quot;2026-08-24&quot;:58.08},{&quot;2026-08-25&quot;:58.08},{&quot;2026-08-26&quot;:59.49},{&quot;2026-08-27&quot;:59.49},{&quot;2026-08-28&quot;:59.7},{&quot;2026-08-29&quot;:59.7},{&quot;2026-08-30&quot;:59.94},{&quot;2026-08-31&quot;:59.94},{&quot;2026-09-01&quot;:59.94},{&quot;2026-09-02&quot;:59.94},{&quot;2026-09-03&quot;:59.94},{&quot;2026-09-04&quot;:59.94},{&quot;2026-09-05&quot;:60.31},{&quot;2026-09-06&quot;:60.31},{&quot;2026-09-07&quot;:60.31},{&quot;2026-09-08&quot;:60.31},{&quot;2026-09-09&quot;:60.31},{&quot;2026-09-10&quot;:60.31},{&quot;2026-09-11&quot;:62.52}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:35.66},{&quot;2026-06-14&quot;:36.01},{&quot;2026-06-15&quot;:36.46},{&quot;2026-06-16&quot;:36.58},{&quot;2026-06-17&quot;:36.73},{&quot;2026-06-18&quot;:37.0},{&quot;2026-06-19&quot;:37.1},{&quot;2026-06-20&quot;:37.57},{&quot;2026-06-21&quot;:38.09},{&quot;2026-06-22&quot;:38.19},{&quot;2026-06-23&quot;:38.27},{&quot;2026-06-24&quot;:38.53},{&quot;2026-06-25&quot;:38.58},{&quot;2026-06-26&quot;:38.58},{&quot;2026-06-27&quot;:38.52},{&quot;2026-06-28&quot;:38.52},{&quot;2026-06-29&quot;:38.66},{&quot;2026-06-30&quot;:38.66},{&quot;2026-07-01&quot;:38.66},{&quot;2026-07-02&quot;:38.66},{&quot;2026-07-03&quot;:38.81},{&quot;2026-07-04&quot;:38.3},{&quot;2026-07-05&quot;:38.35},{&quot;2026-07-06&quot;:37.91},{&quot;2026-07-07&quot;:37.98},{&quot;2026-07-08&quot;:37.82},{&quot;2026-07-09&quot;:37.69},{&quot;2026-07-10&quot;:37.66},{&quot;2026-07-11&quot;:37.66},{&quot;2026-07-12&quot;:37.58},{&quot;2026-07-13&quot;:37.3},{&quot;2026-07-14&quot;:37.39},{&quot;2026-07-15&quot;:37.5},{&quot;2026-07-16&quot;:37.47},{&quot;2026-07-17&quot;:37.76},{&quot;2026-07-18&quot;:37.76},{&quot;2026-07-19&quot;:37.83},{&quot;2026-07-20&quot;:37.83},{&quot;2026-07-21&quot;:38.11},{&quot;2026-07-22&quot;:38.08},{&quot;2026-07-23&quot;:38.08},{&quot;2026-07-24&quot;:38.08},{&quot;2026-07-25&quot;:38.08},{&quot;2026-07-26&quot;:38.47},{&quot;2026-07-27&quot;:38.25},{&quot;2026-07-28&quot;:38.34},{&quot;2026-07-29&quot;:38.54},{&quot;2026-07-30&quot;:38.58},{&quot;2026-07-31&quot;:38.66},{&quot;2026-08-01&quot;:38.68},{&quot;2026-08-02&quot;:38.68},{&quot;2026-08-03&quot;:38.69},{&quot;2026-08-04&quot;:38.71},{&quot;2026-08-05&quot;:38.62},{&quot;2026-08-07&quot;:38.87},{&quot;2026-08-08&quot;:38.87},{&quot;2026-08-09&quot;:38.87},{&quot;2026-08-10&quot;:39.5},{&quot;2026-08-11&quot;:40.81},{&quot;2026-08-12&quot;:41.19},{&quot;2026-08-13&quot;:41.19},{&quot;2026-08-14&quot;:41.23},{&quot;2026-08-15&quot;:41.21},{&quot;2026-08-16&quot;:41.16},{&quot;2026-08-17&quot;:41.19},{&quot;2026-08-18&quot;:40.77},{&quot;2026-08-19&quot;:40.82},{&quot;2026-08-20&quot;:40.62},{&quot;2026-08-21&quot;:40.62},{&quot;2026-08-22&quot;:40.42},{&quot;2026-08-23&quot;:40.23},{&quot;2026-08-24&quot;:40.01},{&quot;2026-08-25&quot;:38.92},{&quot;2026-08-26&quot;:38.61},{&quot;2026-08-27&quot;:38.79},{&quot;2026-08-28&quot;:38.84},{&quot;2026-08-29&quot;:38.84},{&quot;2026-08-30&quot;:39.36},{&quot;2026-08-31&quot;:40.17},{&quot;2026-09-01&quot;:40.17},{&quot;2026-09-02&quot;:40.3},{&quot;2026-09-03&quot;:40.24},{&quot;2026-09-04&quot;:40.24},{&quot;2026-09-05&quot;:40.35},{&quot;2026-09-06&quot;:39.57},{&quot;2026-09-07&quot;:39.57},{&quot;2026-09-08&quot;:40.08},{&quot;2026-09-09&quot;:40.46},{&quot;2026-09-10&quot;:40.31},{&quot;2026-09-11&quot;:40.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="5690"
  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-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">
            Lumra, Bellow of the Woods
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $40.15
          </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="Lumra, Bellow of the Woods" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/3/d/3d99587a-7fb1-41fc-b7ea-1178f9625081.jpg?1783910772" />

        <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">
            Lumra, Bellow of the Woods
        </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 Bear</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Lumra, Bellow of the Woods" src="https://cards.scryfall.io/large/front/3/d/3d99587a-7fb1-41fc-b7ea-1178f9625081.jpg?1783910772" />
    </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">
                $40.15
              </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">
                $67.42
              </span>

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$33.00</span>
              <span class="text-xs text-grey-text">Credit: $42.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;:74.87},{&quot;2026-06-10&quot;:74.87},{&quot;2026-06-11&quot;:74.87},{&quot;2026-06-12&quot;:74.87},{&quot;2026-06-13&quot;:74.87},{&quot;2026-06-14&quot;:74.87},{&quot;2026-06-15&quot;:74.87},{&quot;2026-06-16&quot;:74.41},{&quot;2026-06-17&quot;:74.41},{&quot;2026-06-18&quot;:74.41},{&quot;2026-06-19&quot;:74.41},{&quot;2026-06-20&quot;:74.41},{&quot;2026-06-21&quot;:74.41},{&quot;2026-06-22&quot;:73.95},{&quot;2026-06-24&quot;:72.6},{&quot;2026-06-25&quot;:72.6},{&quot;2026-06-26&quot;:72.6},{&quot;2026-06-27&quot;:72.6},{&quot;2026-06-28&quot;:72.48},{&quot;2026-06-29&quot;:72.48},{&quot;2026-06-30&quot;:72.48},{&quot;2026-07-01&quot;:71.68},{&quot;2026-07-02&quot;:71.68},{&quot;2026-07-03&quot;:71.68},{&quot;2026-07-04&quot;:71.63},{&quot;2026-07-05&quot;:71.63},{&quot;2026-07-06&quot;:71.63},{&quot;2026-07-07&quot;:71.75},{&quot;2026-07-08&quot;:71.75},{&quot;2026-07-09&quot;:71.75},{&quot;2026-07-10&quot;:71.75},{&quot;2026-07-11&quot;:71.75},{&quot;2026-07-12&quot;:71.51},{&quot;2026-07-13&quot;:71.51},{&quot;2026-07-14&quot;:71.51},{&quot;2026-07-15&quot;:71.21},{&quot;2026-07-16&quot;:70.86},{&quot;2026-07-17&quot;:70.86},{&quot;2026-07-18&quot;:70.86},{&quot;2026-07-19&quot;:70.86},{&quot;2026-07-20&quot;:70.86},{&quot;2026-07-21&quot;:70.44},{&quot;2026-07-23&quot;:70.44},{&quot;2026-07-25&quot;:68.32},{&quot;2026-07-26&quot;:68.32},{&quot;2026-07-27&quot;:68.32},{&quot;2026-07-29&quot;:68.32},{&quot;2026-07-30&quot;:68.32},{&quot;2026-07-31&quot;:69.09},{&quot;2026-08-01&quot;:69.09},{&quot;2026-08-02&quot;:68.93},{&quot;2026-08-03&quot;:68.93},{&quot;2026-08-04&quot;:69.03},{&quot;2026-08-05&quot;:69.03},{&quot;2026-08-07&quot;:68.85},{&quot;2026-08-08&quot;:68.85},{&quot;2026-08-09&quot;:68.85},{&quot;2026-08-10&quot;:68.85},{&quot;2026-08-11&quot;:68.85},{&quot;2026-08-12&quot;:68.85},{&quot;2026-08-13&quot;:68.85},{&quot;2026-08-14&quot;:68.85},{&quot;2026-08-15&quot;:68.85},{&quot;2026-08-16&quot;:68.85},{&quot;2026-08-17&quot;:68.85},{&quot;2026-08-18&quot;:68.85},{&quot;2026-08-19&quot;:68.34},{&quot;2026-08-20&quot;:68.34},{&quot;2026-08-21&quot;:68.34},{&quot;2026-08-22&quot;:68.34},{&quot;2026-08-23&quot;:68.34},{&quot;2026-08-24&quot;:68.34},{&quot;2026-08-25&quot;:68.34},{&quot;2026-08-26&quot;:68.34},{&quot;2026-08-27&quot;:68.34},{&quot;2026-08-28&quot;:68.34},{&quot;2026-08-29&quot;:68.34},{&quot;2026-08-30&quot;:68.34},{&quot;2026-08-31&quot;:68.34},{&quot;2026-09-01&quot;:68.34},{&quot;2026-09-02&quot;:68.34},{&quot;2026-09-03&quot;:68.34},{&quot;2026-09-04&quot;:67.86},{&quot;2026-09-05&quot;:67.23},{&quot;2026-09-06&quot;:67.23},{&quot;2026-09-07&quot;:67.23},{&quot;2026-09-08&quot;:67.23},{&quot;2026-09-09&quot;:67.33},{&quot;2026-09-10&quot;:67.33},{&quot;2026-09-11&quot;:67.42}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:37.47},{&quot;2026-06-10&quot;:37.47},{&quot;2026-06-11&quot;:37.47},{&quot;2026-06-12&quot;:37.68},{&quot;2026-06-13&quot;:37.68},{&quot;2026-06-14&quot;:37.68},{&quot;2026-06-15&quot;:37.95},{&quot;2026-06-16&quot;:37.95},{&quot;2026-06-17&quot;:37.95},{&quot;2026-06-18&quot;:37.98},{&quot;2026-06-19&quot;:38.4},{&quot;2026-06-20&quot;:38.4},{&quot;2026-06-21&quot;:38.42},{&quot;2026-06-22&quot;:38.43},{&quot;2026-06-24&quot;:38.43},{&quot;2026-06-25&quot;:38.91},{&quot;2026-06-26&quot;:39.37},{&quot;2026-06-27&quot;:39.37},{&quot;2026-06-28&quot;:39.35},{&quot;2026-06-29&quot;:39.35},{&quot;2026-06-30&quot;:39.35},{&quot;2026-07-01&quot;:39.35},{&quot;2026-07-02&quot;:39.35},{&quot;2026-07-03&quot;:39.35},{&quot;2026-07-04&quot;:39.35},{&quot;2026-07-05&quot;:39.35},{&quot;2026-07-06&quot;:39.35},{&quot;2026-07-07&quot;:39.35},{&quot;2026-07-08&quot;:39.35},{&quot;2026-07-09&quot;:39.1},{&quot;2026-07-10&quot;:39.15},{&quot;2026-07-11&quot;:38.82},{&quot;2026-07-12&quot;:38.82},{&quot;2026-07-13&quot;:38.85},{&quot;2026-07-14&quot;:38.87},{&quot;2026-07-15&quot;:38.87},{&quot;2026-07-16&quot;:38.87},{&quot;2026-07-17&quot;:38.85},{&quot;2026-07-18&quot;:38.85},{&quot;2026-07-19&quot;:38.85},{&quot;2026-07-20&quot;:39.18},{&quot;2026-07-21&quot;:39.18},{&quot;2026-07-23&quot;:38.52},{&quot;2026-07-25&quot;:38.52},{&quot;2026-07-26&quot;:38.52},{&quot;2026-07-27&quot;:38.52},{&quot;2026-07-29&quot;:38.01},{&quot;2026-07-30&quot;:38.01},{&quot;2026-07-31&quot;:38.01},{&quot;2026-08-01&quot;:37.96},{&quot;2026-08-02&quot;:37.87},{&quot;2026-08-03&quot;:38.17},{&quot;2026-08-04&quot;:38.61},{&quot;2026-08-05&quot;:38.61},{&quot;2026-08-07&quot;:38.58},{&quot;2026-08-08&quot;:38.58},{&quot;2026-08-09&quot;:38.87},{&quot;2026-08-10&quot;:39.12},{&quot;2026-08-11&quot;:39.12},{&quot;2026-08-12&quot;:39.12},{&quot;2026-08-13&quot;:39.12},{&quot;2026-08-14&quot;:39.12},{&quot;2026-08-15&quot;:38.72},{&quot;2026-08-16&quot;:38.75},{&quot;2026-08-17&quot;:38.75},{&quot;2026-08-18&quot;:39.22},{&quot;2026-08-19&quot;:39.36},{&quot;2026-08-20&quot;:39.36},{&quot;2026-08-21&quot;:40.0},{&quot;2026-08-22&quot;:40.0},{&quot;2026-08-23&quot;:40.51},{&quot;2026-08-24&quot;:40.14},{&quot;2026-08-25&quot;:40.14},{&quot;2026-08-26&quot;:40.46},{&quot;2026-08-27&quot;:40.43},{&quot;2026-08-28&quot;:40.39},{&quot;2026-08-29&quot;:40.39},{&quot;2026-08-30&quot;:38.87},{&quot;2026-08-31&quot;:38.52},{&quot;2026-09-01&quot;:38.52},{&quot;2026-09-02&quot;:38.45},{&quot;2026-09-03&quot;:38.45},{&quot;2026-09-04&quot;:39.67},{&quot;2026-09-05&quot;:39.67},{&quot;2026-09-06&quot;:39.67},{&quot;2026-09-07&quot;:40.16},{&quot;2026-09-08&quot;:40.16},{&quot;2026-09-09&quot;:40.15},{&quot;2026-09-10&quot;:40.15},{&quot;2026-09-11&quot;:40.15}]}"
        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="34721"
  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">
            Edgar Markov
        </span>


      </div>

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

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

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

        <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">
            Edgar Markov
        </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 — Vampire Knight</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-w'></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="Edgar Markov" src="https://cards.scryfall.io/large/front/a/5/a577ba08-0aa8-45be-aa83-d5078770127c.jpg?1783908078" />
    </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">
                $39.83
              </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">
                $43.98
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:49.48},{&quot;2026-06-11&quot;:50.67},{&quot;2026-06-12&quot;:50.67},{&quot;2026-06-13&quot;:50.67},{&quot;2026-06-14&quot;:50.67},{&quot;2026-06-15&quot;:50.67},{&quot;2026-06-16&quot;:50.67},{&quot;2026-06-17&quot;:50.67},{&quot;2026-06-18&quot;:50.67},{&quot;2026-06-19&quot;:50.67},{&quot;2026-06-20&quot;:50.67},{&quot;2026-06-21&quot;:50.67},{&quot;2026-06-22&quot;:50.67},{&quot;2026-06-23&quot;:51.06},{&quot;2026-06-24&quot;:51.33},{&quot;2026-06-25&quot;:51.33},{&quot;2026-06-26&quot;:51.33},{&quot;2026-06-27&quot;:51.4},{&quot;2026-06-28&quot;:51.4},{&quot;2026-06-29&quot;:51.47},{&quot;2026-06-30&quot;:51.5},{&quot;2026-07-01&quot;:51.5},{&quot;2026-07-02&quot;:52.07},{&quot;2026-07-03&quot;:51.51},{&quot;2026-07-04&quot;:51.51},{&quot;2026-07-05&quot;:51.51},{&quot;2026-07-06&quot;:51.51},{&quot;2026-07-07&quot;:51.45},{&quot;2026-07-08&quot;:51.45},{&quot;2026-07-09&quot;:51.49},{&quot;2026-07-10&quot;:51.49},{&quot;2026-07-11&quot;:51.49},{&quot;2026-07-12&quot;:51.49},{&quot;2026-07-13&quot;:51.49},{&quot;2026-07-14&quot;:51.49},{&quot;2026-07-15&quot;:51.83},{&quot;2026-07-16&quot;:51.83},{&quot;2026-07-17&quot;:51.91},{&quot;2026-07-18&quot;:51.91},{&quot;2026-07-19&quot;:51.91},{&quot;2026-07-20&quot;:51.91},{&quot;2026-07-21&quot;:52.07},{&quot;2026-07-23&quot;:52.07},{&quot;2026-07-25&quot;:52.07},{&quot;2026-07-26&quot;:51.35},{&quot;2026-07-27&quot;:50.79},{&quot;2026-07-29&quot;:51.35},{&quot;2026-07-30&quot;:51.35},{&quot;2026-07-31&quot;:50.23},{&quot;2026-08-01&quot;:50.23},{&quot;2026-08-02&quot;:50.23},{&quot;2026-08-03&quot;:49.71},{&quot;2026-08-04&quot;:49.71},{&quot;2026-08-05&quot;:49.82},{&quot;2026-08-07&quot;:49.05},{&quot;2026-08-08&quot;:48.44},{&quot;2026-08-09&quot;:48.06},{&quot;2026-08-10&quot;:47.93},{&quot;2026-08-11&quot;:47.29},{&quot;2026-08-12&quot;:47.29},{&quot;2026-08-13&quot;:47.29},{&quot;2026-08-14&quot;:47.29},{&quot;2026-08-15&quot;:47.29},{&quot;2026-08-16&quot;:46.63},{&quot;2026-08-17&quot;:46.2},{&quot;2026-08-18&quot;:45.83},{&quot;2026-08-19&quot;:45.7},{&quot;2026-08-20&quot;:45.7},{&quot;2026-08-21&quot;:44.59},{&quot;2026-08-22&quot;:44.68},{&quot;2026-08-23&quot;:44.72},{&quot;2026-08-24&quot;:44.72},{&quot;2026-08-25&quot;:44.72},{&quot;2026-08-26&quot;:44.72},{&quot;2026-08-27&quot;:44.72},{&quot;2026-08-28&quot;:44.72},{&quot;2026-08-29&quot;:44.72},{&quot;2026-08-30&quot;:44.81},{&quot;2026-08-31&quot;:44.81},{&quot;2026-09-01&quot;:44.81},{&quot;2026-09-02&quot;:44.18},{&quot;2026-09-03&quot;:44.18},{&quot;2026-09-04&quot;:43.9},{&quot;2026-09-05&quot;:43.81},{&quot;2026-09-06&quot;:43.81},{&quot;2026-09-07&quot;:43.81},{&quot;2026-09-08&quot;:43.81},{&quot;2026-09-09&quot;:43.81},{&quot;2026-09-10&quot;:43.83},{&quot;2026-09-11&quot;:43.98}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:46.2},{&quot;2026-06-11&quot;:46.2},{&quot;2026-06-12&quot;:46.2},{&quot;2026-06-13&quot;:46.2},{&quot;2026-06-14&quot;:46.27},{&quot;2026-06-15&quot;:46.54},{&quot;2026-06-16&quot;:46.54},{&quot;2026-06-17&quot;:46.72},{&quot;2026-06-18&quot;:46.68},{&quot;2026-06-19&quot;:45.98},{&quot;2026-06-20&quot;:46.58},{&quot;2026-06-21&quot;:46.58},{&quot;2026-06-22&quot;:45.45},{&quot;2026-06-23&quot;:45.35},{&quot;2026-06-24&quot;:45.01},{&quot;2026-06-25&quot;:45.06},{&quot;2026-06-26&quot;:45.01},{&quot;2026-06-27&quot;:45.04},{&quot;2026-06-28&quot;:45.09},{&quot;2026-06-29&quot;:45.09},{&quot;2026-06-30&quot;:45.09},{&quot;2026-07-01&quot;:45.19},{&quot;2026-07-02&quot;:45.19},{&quot;2026-07-03&quot;:45.19},{&quot;2026-07-04&quot;:45.19},{&quot;2026-07-05&quot;:45.19},{&quot;2026-07-06&quot;:45.73},{&quot;2026-07-07&quot;:45.48},{&quot;2026-07-08&quot;:45.48},{&quot;2026-07-09&quot;:45.29},{&quot;2026-07-10&quot;:45.29},{&quot;2026-07-11&quot;:45.8},{&quot;2026-07-12&quot;:45.8},{&quot;2026-07-13&quot;:46.26},{&quot;2026-07-14&quot;:46.75},{&quot;2026-07-15&quot;:46.75},{&quot;2026-07-16&quot;:46.75},{&quot;2026-07-17&quot;:46.58},{&quot;2026-07-18&quot;:46.58},{&quot;2026-07-19&quot;:46.58},{&quot;2026-07-20&quot;:45.84},{&quot;2026-07-21&quot;:45.91},{&quot;2026-07-23&quot;:44.71},{&quot;2026-07-25&quot;:45.06},{&quot;2026-07-26&quot;:45.06},{&quot;2026-07-27&quot;:44.16},{&quot;2026-07-29&quot;:42.88},{&quot;2026-07-30&quot;:43.06},{&quot;2026-07-31&quot;:43.05},{&quot;2026-08-01&quot;:42.64},{&quot;2026-08-02&quot;:42.64},{&quot;2026-08-03&quot;:42.64},{&quot;2026-08-04&quot;:42.72},{&quot;2026-08-05&quot;:42.81},{&quot;2026-08-07&quot;:42.81},{&quot;2026-08-08&quot;:42.81},{&quot;2026-08-09&quot;:42.81},{&quot;2026-08-10&quot;:42.81},{&quot;2026-08-11&quot;:43.57},{&quot;2026-08-12&quot;:43.57},{&quot;2026-08-13&quot;:44.05},{&quot;2026-08-14&quot;:43.89},{&quot;2026-08-15&quot;:43.89},{&quot;2026-08-16&quot;:43.58},{&quot;2026-08-17&quot;:43.63},{&quot;2026-08-18&quot;:43.63},{&quot;2026-08-19&quot;:43.63},{&quot;2026-08-20&quot;:43.63},{&quot;2026-08-21&quot;:43.44},{&quot;2026-08-22&quot;:43.35},{&quot;2026-08-23&quot;:42.88},{&quot;2026-08-24&quot;:43.26},{&quot;2026-08-25&quot;:43.26},{&quot;2026-08-26&quot;:41.69},{&quot;2026-08-27&quot;:41.86},{&quot;2026-08-28&quot;:42.09},{&quot;2026-08-29&quot;:42.09},{&quot;2026-08-30&quot;:42.07},{&quot;2026-08-31&quot;:42.28},{&quot;2026-09-01&quot;:42.28},{&quot;2026-09-02&quot;:42.28},{&quot;2026-09-03&quot;:41.87},{&quot;2026-09-04&quot;:41.16},{&quot;2026-09-05&quot;:41.06},{&quot;2026-09-06&quot;:40.27},{&quot;2026-09-07&quot;:40.34},{&quot;2026-09-08&quot;:39.9},{&quot;2026-09-09&quot;:39.9},{&quot;2026-09-10&quot;:39.78},{&quot;2026-09-11&quot;:39.83}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

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

        <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">
            Bloodthirsty Conqueror
        </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 — Vampire Knight</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-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="Bloodthirsty Conqueror" src="https://cards.scryfall.io/large/front/c/e/ce860ed4-a5bd-4347-9eab-dd716ea84db1.jpg?1783909112" />
    </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">
                $36.85
              </span>

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:37.54},{&quot;2026-06-14&quot;:37.51},{&quot;2026-06-15&quot;:38.44},{&quot;2026-06-16&quot;:38.7},{&quot;2026-06-17&quot;:38.26},{&quot;2026-06-18&quot;:38.54},{&quot;2026-06-19&quot;:38.54},{&quot;2026-06-20&quot;:38.54},{&quot;2026-06-21&quot;:38.79},{&quot;2026-06-22&quot;:38.48},{&quot;2026-06-23&quot;:38.48},{&quot;2026-06-24&quot;:38.34},{&quot;2026-06-25&quot;:38.34},{&quot;2026-06-26&quot;:38.63},{&quot;2026-06-27&quot;:38.63},{&quot;2026-06-28&quot;:38.67},{&quot;2026-06-29&quot;:38.67},{&quot;2026-06-30&quot;:38.63},{&quot;2026-07-01&quot;:38.75},{&quot;2026-07-02&quot;:37.93},{&quot;2026-07-03&quot;:37.85},{&quot;2026-07-04&quot;:37.85},{&quot;2026-07-05&quot;:37.45},{&quot;2026-07-06&quot;:37.57},{&quot;2026-07-07&quot;:37.57},{&quot;2026-07-08&quot;:37.57},{&quot;2026-07-09&quot;:37.57},{&quot;2026-07-10&quot;:37.88},{&quot;2026-07-11&quot;:37.47},{&quot;2026-07-12&quot;:37.47},{&quot;2026-07-13&quot;:37.47},{&quot;2026-07-14&quot;:37.47},{&quot;2026-07-15&quot;:37.55},{&quot;2026-07-16&quot;:37.55},{&quot;2026-07-17&quot;:37.55},{&quot;2026-07-18&quot;:37.55},{&quot;2026-07-19&quot;:37.55},{&quot;2026-07-20&quot;:37.01},{&quot;2026-07-21&quot;:37.01},{&quot;2026-07-22&quot;:37.27},{&quot;2026-07-23&quot;:38.39},{&quot;2026-07-24&quot;:38.39},{&quot;2026-07-25&quot;:38.34},{&quot;2026-07-26&quot;:38.34},{&quot;2026-07-27&quot;:38.22},{&quot;2026-07-28&quot;:38.22},{&quot;2026-07-29&quot;:38.3},{&quot;2026-07-30&quot;:38.3},{&quot;2026-07-31&quot;:38.7},{&quot;2026-08-01&quot;:38.7},{&quot;2026-08-02&quot;:38.48},{&quot;2026-08-03&quot;:38.48},{&quot;2026-08-04&quot;:38.48},{&quot;2026-08-05&quot;:38.32},{&quot;2026-08-07&quot;:39.17},{&quot;2026-08-08&quot;:40.01},{&quot;2026-08-09&quot;:39.94},{&quot;2026-08-10&quot;:39.52},{&quot;2026-08-11&quot;:39.52},{&quot;2026-08-12&quot;:40.04},{&quot;2026-08-13&quot;:39.28},{&quot;2026-08-14&quot;:39.06},{&quot;2026-08-15&quot;:39.06},{&quot;2026-08-16&quot;:39.06},{&quot;2026-08-17&quot;:39.06},{&quot;2026-08-18&quot;:39.06},{&quot;2026-08-19&quot;:39.6},{&quot;2026-08-20&quot;:39.5},{&quot;2026-08-21&quot;:39.44},{&quot;2026-08-22&quot;:39.96},{&quot;2026-08-23&quot;:39.96},{&quot;2026-08-24&quot;:39.96},{&quot;2026-08-25&quot;:39.37},{&quot;2026-08-26&quot;:39.35},{&quot;2026-08-27&quot;:38.78},{&quot;2026-08-28&quot;:39.16},{&quot;2026-08-29&quot;:39.16},{&quot;2026-08-30&quot;:39.93},{&quot;2026-08-31&quot;:39.1},{&quot;2026-09-01&quot;:39.16},{&quot;2026-09-02&quot;:39.16},{&quot;2026-09-03&quot;:39.09},{&quot;2026-09-04&quot;:38.59},{&quot;2026-09-05&quot;:38.33},{&quot;2026-09-06&quot;:38.46},{&quot;2026-09-07&quot;:39.0},{&quot;2026-09-08&quot;:39.0},{&quot;2026-09-09&quot;:39.06},{&quot;2026-09-10&quot;:39.06},{&quot;2026-09-11&quot;:38.59}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:37.27},{&quot;2026-06-14&quot;:38.35},{&quot;2026-06-15&quot;:39.22},{&quot;2026-06-16&quot;:39.22},{&quot;2026-06-17&quot;:37.43},{&quot;2026-06-18&quot;:37.87},{&quot;2026-06-19&quot;:36.98},{&quot;2026-06-20&quot;:36.45},{&quot;2026-06-21&quot;:36.42},{&quot;2026-06-22&quot;:36.18},{&quot;2026-06-23&quot;:35.73},{&quot;2026-06-24&quot;:35.65},{&quot;2026-06-25&quot;:35.83},{&quot;2026-06-26&quot;:35.59},{&quot;2026-06-27&quot;:34.71},{&quot;2026-06-28&quot;:34.24},{&quot;2026-06-29&quot;:34.61},{&quot;2026-06-30&quot;:34.08},{&quot;2026-07-01&quot;:34.1},{&quot;2026-07-02&quot;:34.05},{&quot;2026-07-03&quot;:34.07},{&quot;2026-07-04&quot;:35.28},{&quot;2026-07-05&quot;:35.65},{&quot;2026-07-06&quot;:35.39},{&quot;2026-07-07&quot;:34.92},{&quot;2026-07-08&quot;:34.85},{&quot;2026-07-09&quot;:34.58},{&quot;2026-07-10&quot;:34.64},{&quot;2026-07-11&quot;:34.64},{&quot;2026-07-12&quot;:34.68},{&quot;2026-07-13&quot;:34.96},{&quot;2026-07-14&quot;:35.51},{&quot;2026-07-15&quot;:34.43},{&quot;2026-07-16&quot;:35.75},{&quot;2026-07-17&quot;:35.36},{&quot;2026-07-18&quot;:35.65},{&quot;2026-07-19&quot;:35.35},{&quot;2026-07-20&quot;:35.1},{&quot;2026-07-21&quot;:37.1},{&quot;2026-07-22&quot;:37.71},{&quot;2026-07-23&quot;:37.99},{&quot;2026-07-24&quot;:38.53},{&quot;2026-07-25&quot;:37.66},{&quot;2026-07-26&quot;:37.31},{&quot;2026-07-27&quot;:37.89},{&quot;2026-07-28&quot;:39.76},{&quot;2026-07-29&quot;:39.96},{&quot;2026-07-30&quot;:39.86},{&quot;2026-07-31&quot;:38.81},{&quot;2026-08-01&quot;:38.81},{&quot;2026-08-02&quot;:36.58},{&quot;2026-08-03&quot;:36.65},{&quot;2026-08-04&quot;:36.65},{&quot;2026-08-05&quot;:36.29},{&quot;2026-08-07&quot;:36.64},{&quot;2026-08-08&quot;:35.27},{&quot;2026-08-09&quot;:35.0},{&quot;2026-08-10&quot;:36.13},{&quot;2026-08-11&quot;:35.61},{&quot;2026-08-12&quot;:35.15},{&quot;2026-08-13&quot;:35.15},{&quot;2026-08-14&quot;:35.89},{&quot;2026-08-15&quot;:35.38},{&quot;2026-08-16&quot;:34.97},{&quot;2026-08-17&quot;:35.56},{&quot;2026-08-18&quot;:35.5},{&quot;2026-08-19&quot;:35.76},{&quot;2026-08-20&quot;:35.76},{&quot;2026-08-21&quot;:35.05},{&quot;2026-08-22&quot;:34.43},{&quot;2026-08-23&quot;:34.41},{&quot;2026-08-24&quot;:35.4},{&quot;2026-08-25&quot;:35.38},{&quot;2026-08-26&quot;:36.63},{&quot;2026-08-27&quot;:36.42},{&quot;2026-08-28&quot;:37.18},{&quot;2026-08-29&quot;:37.18},{&quot;2026-08-30&quot;:38.34},{&quot;2026-08-31&quot;:38.09},{&quot;2026-09-01&quot;:38.39},{&quot;2026-09-02&quot;:38.79},{&quot;2026-09-03&quot;:38.79},{&quot;2026-09-04&quot;:38.48},{&quot;2026-09-05&quot;:37.63},{&quot;2026-09-06&quot;:36.23},{&quot;2026-09-07&quot;:34.83},{&quot;2026-09-08&quot;:36.42},{&quot;2026-09-09&quot;:36.82},{&quot;2026-09-10&quot;:36.8},{&quot;2026-09-11&quot;:36.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="20861"
  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-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">
            Trinisphere
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Trinisphere
        </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">Artifact</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>
          </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="Trinisphere" src="https://cards.scryfall.io/large/front/3/1/316caa4e-a53a-460b-978c-5f0fba7bc549.jpg?1783930090" />
    </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">
                $37.89
              </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">
                $34.34
              </span>

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$39.00</span>
              <span class="text-xs text-grey-text">Credit: $50.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-11&quot;:28.12},{&quot;2026-06-12&quot;:27.72},{&quot;2026-06-13&quot;:27.72},{&quot;2026-06-14&quot;:27.9},{&quot;2026-06-15&quot;:27.9},{&quot;2026-06-16&quot;:27.9},{&quot;2026-06-17&quot;:27.9},{&quot;2026-06-18&quot;:27.9},{&quot;2026-06-19&quot;:27.9},{&quot;2026-06-20&quot;:27.9},{&quot;2026-06-21&quot;:27.9},{&quot;2026-06-22&quot;:27.9},{&quot;2026-06-23&quot;:27.9},{&quot;2026-06-24&quot;:27.9},{&quot;2026-06-25&quot;:27.9},{&quot;2026-06-26&quot;:27.9},{&quot;2026-06-27&quot;:27.9},{&quot;2026-06-28&quot;:28.47},{&quot;2026-06-29&quot;:28.73},{&quot;2026-06-30&quot;:28.73},{&quot;2026-07-01&quot;:28.73},{&quot;2026-07-02&quot;:28.93},{&quot;2026-07-03&quot;:30.12},{&quot;2026-07-04&quot;:30.12},{&quot;2026-07-05&quot;:30.12},{&quot;2026-07-06&quot;:30.12},{&quot;2026-07-07&quot;:30.12},{&quot;2026-07-08&quot;:30.12},{&quot;2026-07-09&quot;:30.12},{&quot;2026-07-10&quot;:30.12},{&quot;2026-07-11&quot;:30.53},{&quot;2026-07-12&quot;:30.53},{&quot;2026-07-13&quot;:31.01},{&quot;2026-07-14&quot;:31.01},{&quot;2026-07-15&quot;:31.35},{&quot;2026-07-16&quot;:31.35},{&quot;2026-07-17&quot;:31.35},{&quot;2026-07-18&quot;:31.73},{&quot;2026-07-19&quot;:31.73},{&quot;2026-07-20&quot;:31.73},{&quot;2026-07-21&quot;:31.73},{&quot;2026-07-23&quot;:31.73},{&quot;2026-07-25&quot;:31.75},{&quot;2026-07-26&quot;:31.75},{&quot;2026-07-27&quot;:31.75},{&quot;2026-07-28&quot;:31.97},{&quot;2026-07-29&quot;:31.97},{&quot;2026-07-30&quot;:31.97},{&quot;2026-07-31&quot;:31.97},{&quot;2026-08-01&quot;:31.97},{&quot;2026-08-02&quot;:31.97},{&quot;2026-08-03&quot;:31.97},{&quot;2026-08-04&quot;:32.13},{&quot;2026-08-05&quot;:32.48},{&quot;2026-08-07&quot;:32.82},{&quot;2026-08-08&quot;:32.82},{&quot;2026-08-09&quot;:33.04},{&quot;2026-08-10&quot;:33.04},{&quot;2026-08-11&quot;:33.26},{&quot;2026-08-12&quot;:33.33},{&quot;2026-08-13&quot;:33.33},{&quot;2026-08-14&quot;:33.33},{&quot;2026-08-15&quot;:33.33},{&quot;2026-08-16&quot;:33.33},{&quot;2026-08-17&quot;:33.33},{&quot;2026-08-18&quot;:33.33},{&quot;2026-08-19&quot;:33.85},{&quot;2026-08-20&quot;:33.85},{&quot;2026-08-21&quot;:33.85},{&quot;2026-08-22&quot;:34.0},{&quot;2026-08-23&quot;:34.25},{&quot;2026-08-24&quot;:34.25},{&quot;2026-08-25&quot;:34.25},{&quot;2026-08-26&quot;:34.55},{&quot;2026-08-27&quot;:34.55},{&quot;2026-08-28&quot;:34.55},{&quot;2026-08-29&quot;:34.55},{&quot;2026-08-30&quot;:34.55},{&quot;2026-08-31&quot;:34.55},{&quot;2026-09-01&quot;:34.55},{&quot;2026-09-02&quot;:34.55},{&quot;2026-09-03&quot;:34.34},{&quot;2026-09-04&quot;:34.34},{&quot;2026-09-05&quot;:34.34},{&quot;2026-09-06&quot;:34.34},{&quot;2026-09-07&quot;:34.34},{&quot;2026-09-08&quot;:34.34},{&quot;2026-09-09&quot;:34.34},{&quot;2026-09-10&quot;:34.34},{&quot;2026-09-11&quot;:34.34}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:30.18},{&quot;2026-06-12&quot;:30.18},{&quot;2026-06-13&quot;:30.7},{&quot;2026-06-14&quot;:32.38},{&quot;2026-06-15&quot;:32.38},{&quot;2026-06-16&quot;:32.88},{&quot;2026-06-17&quot;:33.22},{&quot;2026-06-18&quot;:33.22},{&quot;2026-06-19&quot;:33.22},{&quot;2026-06-20&quot;:33.22},{&quot;2026-06-21&quot;:33.39},{&quot;2026-06-22&quot;:33.39},{&quot;2026-06-23&quot;:33.39},{&quot;2026-06-24&quot;:33.71},{&quot;2026-06-25&quot;:33.71},{&quot;2026-06-26&quot;:33.94},{&quot;2026-06-27&quot;:33.74},{&quot;2026-06-28&quot;:34.23},{&quot;2026-06-29&quot;:34.4},{&quot;2026-06-30&quot;:34.64},{&quot;2026-07-01&quot;:34.64},{&quot;2026-07-02&quot;:34.64},{&quot;2026-07-03&quot;:35.06},{&quot;2026-07-04&quot;:35.1},{&quot;2026-07-05&quot;:35.27},{&quot;2026-07-06&quot;:35.27},{&quot;2026-07-07&quot;:35.27},{&quot;2026-07-08&quot;:34.98},{&quot;2026-07-09&quot;:33.38},{&quot;2026-07-10&quot;:33.38},{&quot;2026-07-11&quot;:33.38},{&quot;2026-07-12&quot;:33.72},{&quot;2026-07-13&quot;:33.52},{&quot;2026-07-14&quot;:33.52},{&quot;2026-07-15&quot;:33.44},{&quot;2026-07-16&quot;:33.09},{&quot;2026-07-17&quot;:33.38},{&quot;2026-07-18&quot;:33.61},{&quot;2026-07-19&quot;:33.61},{&quot;2026-07-20&quot;:33.61},{&quot;2026-07-21&quot;:33.57},{&quot;2026-07-23&quot;:33.52},{&quot;2026-07-25&quot;:33.28},{&quot;2026-07-26&quot;:33.36},{&quot;2026-07-27&quot;:33.36},{&quot;2026-07-28&quot;:33.36},{&quot;2026-07-29&quot;:33.6},{&quot;2026-07-30&quot;:34.29},{&quot;2026-07-31&quot;:35.36},{&quot;2026-08-01&quot;:35.36},{&quot;2026-08-02&quot;:35.72},{&quot;2026-08-03&quot;:35.75},{&quot;2026-08-04&quot;:35.75},{&quot;2026-08-05&quot;:35.63},{&quot;2026-08-07&quot;:35.89},{&quot;2026-08-08&quot;:36.0},{&quot;2026-08-09&quot;:36.0},{&quot;2026-08-10&quot;:36.0},{&quot;2026-08-11&quot;:36.0},{&quot;2026-08-12&quot;:36.18},{&quot;2026-08-13&quot;:36.18},{&quot;2026-08-14&quot;:36.18},{&quot;2026-08-15&quot;:36.45},{&quot;2026-08-16&quot;:35.99},{&quot;2026-08-17&quot;:35.86},{&quot;2026-08-18&quot;:35.86},{&quot;2026-08-19&quot;:35.86},{&quot;2026-08-20&quot;:35.86},{&quot;2026-08-21&quot;:35.86},{&quot;2026-08-22&quot;:35.64},{&quot;2026-08-23&quot;:35.64},{&quot;2026-08-24&quot;:36.07},{&quot;2026-08-25&quot;:36.07},{&quot;2026-08-26&quot;:35.89},{&quot;2026-08-27&quot;:35.89},{&quot;2026-08-28&quot;:35.83},{&quot;2026-08-29&quot;:35.83},{&quot;2026-08-30&quot;:36.44},{&quot;2026-08-31&quot;:36.17},{&quot;2026-09-01&quot;:36.17},{&quot;2026-09-02&quot;:36.61},{&quot;2026-09-03&quot;:36.61},{&quot;2026-09-04&quot;:37.89},{&quot;2026-09-05&quot;:37.89},{&quot;2026-09-06&quot;:37.89},{&quot;2026-09-07&quot;:37.89},{&quot;2026-09-08&quot;:37.89},{&quot;2026-09-09&quot;:37.89},{&quot;2026-09-10&quot;:37.89},{&quot;2026-09-11&quot;:37.89}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="112884"
  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-hob 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">
            Gleaming Splendor
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Gleaming Splendor
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Gleaming Splendor" src="https://cards.scryfall.io/large/front/3/b/3b087bd4-bbb7-4963-bdb6-0a700ff19a04.jpg?1785496942" />
    </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">
                $37.62
              </span>

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $45.94
              </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">$33.00</span>
              <span class="text-xs text-grey-text">Credit: $42.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-08-07&quot;:63.75},{&quot;2026-08-08&quot;:49.09},{&quot;2026-08-09&quot;:43.9},{&quot;2026-08-10&quot;:43.49},{&quot;2026-08-11&quot;:43.79},{&quot;2026-08-12&quot;:43.34},{&quot;2026-08-13&quot;:42.62},{&quot;2026-08-14&quot;:43.13},{&quot;2026-08-15&quot;:35.5},{&quot;2026-08-16&quot;:37.98},{&quot;2026-08-17&quot;:38.73},{&quot;2026-08-18&quot;:44.72},{&quot;2026-08-19&quot;:51.92},{&quot;2026-08-20&quot;:62.01},{&quot;2026-08-21&quot;:67.92},{&quot;2026-08-22&quot;:62.82},{&quot;2026-08-23&quot;:64.31},{&quot;2026-08-24&quot;:65.59},{&quot;2026-08-25&quot;:62.41},{&quot;2026-08-26&quot;:59.35},{&quot;2026-08-27&quot;:58.83},{&quot;2026-08-28&quot;:59.98},{&quot;2026-08-29&quot;:59.98},{&quot;2026-08-30&quot;:59.91},{&quot;2026-08-31&quot;:59.62},{&quot;2026-09-01&quot;:59.2},{&quot;2026-09-02&quot;:58.48},{&quot;2026-09-03&quot;:54.86},{&quot;2026-09-04&quot;:50.61},{&quot;2026-09-05&quot;:49.03},{&quot;2026-09-06&quot;:46.36},{&quot;2026-09-07&quot;:47.09},{&quot;2026-09-08&quot;:46.09},{&quot;2026-09-09&quot;:47.13},{&quot;2026-09-10&quot;:46.72},{&quot;2026-09-11&quot;:45.94}],&quot;normal&quot;:[{&quot;2026-08-07&quot;:47.73},{&quot;2026-08-08&quot;:36.63},{&quot;2026-08-09&quot;:35.71},{&quot;2026-08-10&quot;:37.94},{&quot;2026-08-11&quot;:40.45},{&quot;2026-08-12&quot;:40.95},{&quot;2026-08-13&quot;:43.1},{&quot;2026-08-14&quot;:40.19},{&quot;2026-08-15&quot;:35.36},{&quot;2026-08-16&quot;:35.03},{&quot;2026-08-17&quot;:35.17},{&quot;2026-08-18&quot;:41.99},{&quot;2026-08-19&quot;:44.8},{&quot;2026-08-20&quot;:50.65},{&quot;2026-08-21&quot;:56.55},{&quot;2026-08-22&quot;:59.01},{&quot;2026-08-23&quot;:57.05},{&quot;2026-08-24&quot;:53.8},{&quot;2026-08-25&quot;:53.57},{&quot;2026-08-26&quot;:51.66},{&quot;2026-08-27&quot;:52.85},{&quot;2026-08-28&quot;:54.02},{&quot;2026-08-29&quot;:54.02},{&quot;2026-08-30&quot;:52.87},{&quot;2026-08-31&quot;:53.02},{&quot;2026-09-01&quot;:49.17},{&quot;2026-09-02&quot;:49.29},{&quot;2026-09-03&quot;:45.69},{&quot;2026-09-04&quot;:44.95},{&quot;2026-09-05&quot;:42.94},{&quot;2026-09-06&quot;:39.95},{&quot;2026-09-07&quot;:37.69},{&quot;2026-09-08&quot;:36.98},{&quot;2026-09-09&quot;:37.6},{&quot;2026-09-10&quot;:36.94},{&quot;2026-09-11&quot;:37.62}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

          <span class="text-sm font-medium text-nine-white">
            $36.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="Sensei&#39;s Divining Top" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/f/4/f421a21a-763f-479b-bcc3-2abae29098d7.jpg?1783910550" />

        <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">
            Sensei&#39;s Divining Top
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Sensei&#39;s Divining Top" src="https://cards.scryfall.io/large/front/f/4/f421a21a-763f-479b-bcc3-2abae29098d7.jpg?1783910550" />
    </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">
                $36.61
              </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">
                $83.40
              </span>

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$20.00</span>
              <span class="text-xs text-grey-text">Credit: $26.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-08&quot;:81.71},{&quot;2026-06-10&quot;:81.71},{&quot;2026-06-11&quot;:81.71},{&quot;2026-06-12&quot;:81.71},{&quot;2026-06-13&quot;:81.71},{&quot;2026-06-14&quot;:81.71},{&quot;2026-06-15&quot;:81.71},{&quot;2026-06-16&quot;:81.71},{&quot;2026-06-17&quot;:81.71},{&quot;2026-06-18&quot;:81.71},{&quot;2026-06-19&quot;:81.6},{&quot;2026-06-20&quot;:81.58},{&quot;2026-06-21&quot;:81.58},{&quot;2026-06-22&quot;:81.58},{&quot;2026-06-24&quot;:81.58},{&quot;2026-06-25&quot;:81.58},{&quot;2026-06-26&quot;:81.58},{&quot;2026-06-27&quot;:81.58},{&quot;2026-06-28&quot;:81.58},{&quot;2026-06-29&quot;:81.55},{&quot;2026-06-30&quot;:81.55},{&quot;2026-07-01&quot;:81.88},{&quot;2026-07-02&quot;:81.88},{&quot;2026-07-03&quot;:81.88},{&quot;2026-07-04&quot;:81.88},{&quot;2026-07-05&quot;:81.88},{&quot;2026-07-06&quot;:81.88},{&quot;2026-07-07&quot;:81.88},{&quot;2026-07-08&quot;:81.88},{&quot;2026-07-09&quot;:81.88},{&quot;2026-07-10&quot;:81.88},{&quot;2026-07-11&quot;:81.88},{&quot;2026-07-12&quot;:82.22},{&quot;2026-07-13&quot;:82.22},{&quot;2026-07-14&quot;:82.22},{&quot;2026-07-15&quot;:82.22},{&quot;2026-07-16&quot;:82.22},{&quot;2026-07-17&quot;:82.22},{&quot;2026-07-18&quot;:83.09},{&quot;2026-07-19&quot;:83.09},{&quot;2026-07-20&quot;:83.09},{&quot;2026-07-21&quot;:83.09},{&quot;2026-07-23&quot;:83.09},{&quot;2026-07-25&quot;:83.09},{&quot;2026-07-26&quot;:83.09},{&quot;2026-07-27&quot;:83.09},{&quot;2026-07-29&quot;:83.45},{&quot;2026-07-30&quot;:83.45},{&quot;2026-07-31&quot;:83.45},{&quot;2026-08-01&quot;:83.45},{&quot;2026-08-02&quot;:83.45},{&quot;2026-08-03&quot;:83.45},{&quot;2026-08-04&quot;:83.45},{&quot;2026-08-05&quot;:83.45},{&quot;2026-08-07&quot;:83.45},{&quot;2026-08-08&quot;:83.45},{&quot;2026-08-09&quot;:83.45},{&quot;2026-08-10&quot;:83.45},{&quot;2026-08-11&quot;:83.45},{&quot;2026-08-12&quot;:83.45},{&quot;2026-08-13&quot;:83.45},{&quot;2026-08-14&quot;:83.51},{&quot;2026-08-15&quot;:83.2},{&quot;2026-08-16&quot;:83.36},{&quot;2026-08-17&quot;:83.36},{&quot;2026-08-18&quot;:83.36},{&quot;2026-08-19&quot;:83.36},{&quot;2026-08-20&quot;:83.36},{&quot;2026-08-21&quot;:83.36},{&quot;2026-08-22&quot;:83.4},{&quot;2026-08-23&quot;:83.4},{&quot;2026-08-24&quot;:83.4},{&quot;2026-08-25&quot;:83.4},{&quot;2026-08-26&quot;:83.4},{&quot;2026-08-27&quot;:83.4},{&quot;2026-08-28&quot;:83.4},{&quot;2026-08-29&quot;:83.4},{&quot;2026-08-30&quot;:83.36},{&quot;2026-08-31&quot;:83.36},{&quot;2026-09-01&quot;:83.36},{&quot;2026-09-02&quot;:83.36},{&quot;2026-09-03&quot;:83.36},{&quot;2026-09-04&quot;:83.36},{&quot;2026-09-05&quot;:83.36},{&quot;2026-09-06&quot;:83.36},{&quot;2026-09-07&quot;:83.36},{&quot;2026-09-08&quot;:83.36},{&quot;2026-09-09&quot;:83.36},{&quot;2026-09-10&quot;:83.4},{&quot;2026-09-11&quot;:83.4}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:37.94},{&quot;2026-06-10&quot;:38.44},{&quot;2026-06-11&quot;:38.67},{&quot;2026-06-12&quot;:39.52},{&quot;2026-06-13&quot;:39.89},{&quot;2026-06-14&quot;:39.89},{&quot;2026-06-15&quot;:39.97},{&quot;2026-06-16&quot;:40.16},{&quot;2026-06-17&quot;:40.16},{&quot;2026-06-18&quot;:40.09},{&quot;2026-06-19&quot;:40.16},{&quot;2026-06-20&quot;:40.11},{&quot;2026-06-21&quot;:40.16},{&quot;2026-06-22&quot;:39.94},{&quot;2026-06-24&quot;:39.46},{&quot;2026-06-25&quot;:39.33},{&quot;2026-06-26&quot;:39.0},{&quot;2026-06-27&quot;:38.14},{&quot;2026-06-28&quot;:37.39},{&quot;2026-06-29&quot;:37.12},{&quot;2026-06-30&quot;:36.87},{&quot;2026-07-01&quot;:36.83},{&quot;2026-07-02&quot;:37.02},{&quot;2026-07-03&quot;:37.48},{&quot;2026-07-04&quot;:38.05},{&quot;2026-07-05&quot;:38.59},{&quot;2026-07-06&quot;:38.65},{&quot;2026-07-07&quot;:38.5},{&quot;2026-07-08&quot;:38.72},{&quot;2026-07-09&quot;:39.04},{&quot;2026-07-10&quot;:39.31},{&quot;2026-07-11&quot;:39.58},{&quot;2026-07-12&quot;:39.61},{&quot;2026-07-13&quot;:39.59},{&quot;2026-07-14&quot;:39.59},{&quot;2026-07-15&quot;:39.59},{&quot;2026-07-16&quot;:39.66},{&quot;2026-07-17&quot;:39.7},{&quot;2026-07-18&quot;:39.57},{&quot;2026-07-19&quot;:39.68},{&quot;2026-07-20&quot;:39.62},{&quot;2026-07-21&quot;:39.65},{&quot;2026-07-23&quot;:39.59},{&quot;2026-07-25&quot;:39.59},{&quot;2026-07-26&quot;:39.4},{&quot;2026-07-27&quot;:39.48},{&quot;2026-07-29&quot;:39.25},{&quot;2026-07-30&quot;:39.2},{&quot;2026-07-31&quot;:39.15},{&quot;2026-08-01&quot;:39.15},{&quot;2026-08-02&quot;:39.02},{&quot;2026-08-03&quot;:38.76},{&quot;2026-08-04&quot;:38.68},{&quot;2026-08-05&quot;:38.92},{&quot;2026-08-07&quot;:37.89},{&quot;2026-08-08&quot;:37.64},{&quot;2026-08-09&quot;:37.43},{&quot;2026-08-10&quot;:36.78},{&quot;2026-08-11&quot;:36.61},{&quot;2026-08-12&quot;:36.35},{&quot;2026-08-13&quot;:36.22},{&quot;2026-08-14&quot;:35.61},{&quot;2026-08-15&quot;:35.94},{&quot;2026-08-16&quot;:36.29},{&quot;2026-08-17&quot;:35.47},{&quot;2026-08-18&quot;:34.93},{&quot;2026-08-19&quot;:35.25},{&quot;2026-08-20&quot;:35.25},{&quot;2026-08-21&quot;:35.78},{&quot;2026-08-22&quot;:35.38},{&quot;2026-08-23&quot;:35.85},{&quot;2026-08-24&quot;:35.91},{&quot;2026-08-25&quot;:35.91},{&quot;2026-08-26&quot;:35.97},{&quot;2026-08-27&quot;:35.17},{&quot;2026-08-28&quot;:35.15},{&quot;2026-08-29&quot;:35.15},{&quot;2026-08-30&quot;:35.27},{&quot;2026-08-31&quot;:35.32},{&quot;2026-09-01&quot;:35.32},{&quot;2026-09-02&quot;:35.07},{&quot;2026-09-03&quot;:35.66},{&quot;2026-09-04&quot;:36.25},{&quot;2026-09-05&quot;:36.25},{&quot;2026-09-06&quot;:36.62},{&quot;2026-09-07&quot;:36.65},{&quot;2026-09-08&quot;:36.65},{&quot;2026-09-09&quot;:36.61},{&quot;2026-09-10&quot;:36.59},{&quot;2026-09-11&quot;:36.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="84498"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-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">
            Mycosynth Lattice
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $36.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="Mycosynth Lattice" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/8/188dfd03-010b-48ca-b0a3-dd9d77947215.jpg?1783917874" />

        <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">
            Mycosynth Lattice
        </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">Artifact</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Mycosynth Lattice" src="https://cards.scryfall.io/large/front/1/8/188dfd03-010b-48ca-b0a3-dd9d77947215.jpg?1783917874" />
    </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">
                $36.22
              </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">$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;normal&quot;:[{&quot;2026-06-10&quot;:38.07},{&quot;2026-06-11&quot;:38.07},{&quot;2026-06-12&quot;:37.81},{&quot;2026-06-13&quot;:37.81},{&quot;2026-06-14&quot;:37.57},{&quot;2026-06-15&quot;:37.39},{&quot;2026-06-16&quot;:37.39},{&quot;2026-06-17&quot;:37.39},{&quot;2026-06-18&quot;:37.35},{&quot;2026-06-19&quot;:37.35},{&quot;2026-06-20&quot;:37.42},{&quot;2026-06-21&quot;:37.42},{&quot;2026-06-22&quot;:37.42},{&quot;2026-06-23&quot;:37.38},{&quot;2026-06-24&quot;:37.38},{&quot;2026-06-25&quot;:36.84},{&quot;2026-06-26&quot;:36.99},{&quot;2026-06-27&quot;:36.97},{&quot;2026-06-28&quot;:36.97},{&quot;2026-06-29&quot;:36.97},{&quot;2026-06-30&quot;:36.77},{&quot;2026-07-01&quot;:36.77},{&quot;2026-07-02&quot;:37.01},{&quot;2026-07-03&quot;:37.02},{&quot;2026-07-04&quot;:37.76},{&quot;2026-07-05&quot;:37.67},{&quot;2026-07-06&quot;:37.89},{&quot;2026-07-07&quot;:37.89},{&quot;2026-07-08&quot;:37.66},{&quot;2026-07-09&quot;:37.66},{&quot;2026-07-10&quot;:37.66},{&quot;2026-07-11&quot;:37.6},{&quot;2026-07-12&quot;:37.64},{&quot;2026-07-13&quot;:37.64},{&quot;2026-07-14&quot;:37.29},{&quot;2026-07-15&quot;:37.29},{&quot;2026-07-16&quot;:37.29},{&quot;2026-07-17&quot;:37.08},{&quot;2026-07-18&quot;:37.08},{&quot;2026-07-19&quot;:37.46},{&quot;2026-07-20&quot;:37.25},{&quot;2026-07-21&quot;:37.72},{&quot;2026-07-23&quot;:37.76},{&quot;2026-07-25&quot;:38.05},{&quot;2026-07-26&quot;:38.15},{&quot;2026-07-27&quot;:37.97},{&quot;2026-07-29&quot;:37.79},{&quot;2026-07-30&quot;:37.79},{&quot;2026-07-31&quot;:37.79},{&quot;2026-08-01&quot;:37.79},{&quot;2026-08-02&quot;:36.94},{&quot;2026-08-03&quot;:36.72},{&quot;2026-08-04&quot;:36.06},{&quot;2026-08-05&quot;:34.88},{&quot;2026-08-07&quot;:35.28},{&quot;2026-08-08&quot;:35.28},{&quot;2026-08-09&quot;:35.28},{&quot;2026-08-10&quot;:34.97},{&quot;2026-08-11&quot;:34.46},{&quot;2026-08-12&quot;:34.46},{&quot;2026-08-13&quot;:33.72},{&quot;2026-08-14&quot;:33.29},{&quot;2026-08-15&quot;:34.0},{&quot;2026-08-16&quot;:34.72},{&quot;2026-08-17&quot;:34.72},{&quot;2026-08-18&quot;:34.72},{&quot;2026-08-19&quot;:34.64},{&quot;2026-08-20&quot;:34.64},{&quot;2026-08-21&quot;:34.95},{&quot;2026-08-22&quot;:35.18},{&quot;2026-08-23&quot;:34.81},{&quot;2026-08-24&quot;:34.63},{&quot;2026-08-25&quot;:34.63},{&quot;2026-08-26&quot;:34.36},{&quot;2026-08-27&quot;:34.36},{&quot;2026-08-28&quot;:34.43},{&quot;2026-08-29&quot;:34.43},{&quot;2026-08-30&quot;:35.02},{&quot;2026-08-31&quot;:35.22},{&quot;2026-09-01&quot;:35.22},{&quot;2026-09-02&quot;:34.9},{&quot;2026-09-03&quot;:35.05},{&quot;2026-09-04&quot;:35.5},{&quot;2026-09-05&quot;:35.62},{&quot;2026-09-06&quot;:35.96},{&quot;2026-09-07&quot;:36.24},{&quot;2026-09-08&quot;:36.22},{&quot;2026-09-09&quot;:36.22},{&quot;2026-09-10&quot;:36.22},{&quot;2026-09-11&quot;:36.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="87681"
  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-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">
            Agatha&#39;s Soul Cauldron
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Agatha&#39;s Soul Cauldron" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/b/cb1bbd0b-a05a-4a6e-83d3-4bd067b7ef3a.jpg?1783914821" />

        <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">
            Agatha&#39;s Soul Cauldron
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Agatha&#39;s Soul Cauldron" src="https://cards.scryfall.io/large/front/c/b/cb1bbd0b-a05a-4a6e-83d3-4bd067b7ef3a.jpg?1783914821" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$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-08&quot;:37.73},{&quot;2026-06-10&quot;:37.91},{&quot;2026-06-11&quot;:37.91},{&quot;2026-06-12&quot;:37.91},{&quot;2026-06-13&quot;:37.91},{&quot;2026-06-14&quot;:37.91},{&quot;2026-06-15&quot;:37.91},{&quot;2026-06-16&quot;:37.91},{&quot;2026-06-17&quot;:38.12},{&quot;2026-06-18&quot;:38.12},{&quot;2026-06-19&quot;:38.18},{&quot;2026-06-20&quot;:38.18},{&quot;2026-06-21&quot;:38.18},{&quot;2026-06-22&quot;:38.18},{&quot;2026-06-24&quot;:38.64},{&quot;2026-06-25&quot;:39.02},{&quot;2026-06-26&quot;:39.1},{&quot;2026-06-27&quot;:39.1},{&quot;2026-06-28&quot;:39.29},{&quot;2026-06-29&quot;:39.29},{&quot;2026-06-30&quot;:39.29},{&quot;2026-07-01&quot;:39.2},{&quot;2026-07-02&quot;:39.2},{&quot;2026-07-03&quot;:39.2},{&quot;2026-07-04&quot;:39.2},{&quot;2026-07-05&quot;:39.2},{&quot;2026-07-06&quot;:39.2},{&quot;2026-07-07&quot;:39.35},{&quot;2026-07-08&quot;:39.35},{&quot;2026-07-09&quot;:39.35},{&quot;2026-07-10&quot;:39.35},{&quot;2026-07-11&quot;:39.35},{&quot;2026-07-12&quot;:39.35},{&quot;2026-07-13&quot;:39.35},{&quot;2026-07-14&quot;:39.51},{&quot;2026-07-15&quot;:39.51},{&quot;2026-07-16&quot;:39.52},{&quot;2026-07-17&quot;:39.52},{&quot;2026-07-18&quot;:39.52},{&quot;2026-07-19&quot;:39.49},{&quot;2026-07-20&quot;:39.49},{&quot;2026-07-21&quot;:39.61},{&quot;2026-07-23&quot;:40.09},{&quot;2026-07-25&quot;:40.09},{&quot;2026-07-26&quot;:40.09},{&quot;2026-07-27&quot;:40.09},{&quot;2026-07-29&quot;:40.09},{&quot;2026-07-30&quot;:40.09},{&quot;2026-07-31&quot;:40.09},{&quot;2026-08-01&quot;:40.09},{&quot;2026-08-02&quot;:40.29},{&quot;2026-08-03&quot;:40.29},{&quot;2026-08-04&quot;:40.34},{&quot;2026-08-05&quot;:40.34},{&quot;2026-08-07&quot;:40.34},{&quot;2026-08-08&quot;:40.08},{&quot;2026-08-09&quot;:40.08},{&quot;2026-08-10&quot;:40.15},{&quot;2026-08-11&quot;:40.15},{&quot;2026-08-12&quot;:40.15},{&quot;2026-08-13&quot;:40.15},{&quot;2026-08-14&quot;:40.15},{&quot;2026-08-15&quot;:40.18},{&quot;2026-08-16&quot;:39.86},{&quot;2026-08-17&quot;:39.86},{&quot;2026-08-18&quot;:39.86},{&quot;2026-08-19&quot;:39.86},{&quot;2026-08-20&quot;:39.86},{&quot;2026-08-21&quot;:39.86},{&quot;2026-08-22&quot;:39.86},{&quot;2026-08-23&quot;:39.86},{&quot;2026-08-24&quot;:39.86},{&quot;2026-08-25&quot;:39.86},{&quot;2026-08-26&quot;:39.86},{&quot;2026-08-27&quot;:39.86},{&quot;2026-08-28&quot;:39.86},{&quot;2026-08-29&quot;:39.86},{&quot;2026-08-30&quot;:40.31},{&quot;2026-08-31&quot;:40.31},{&quot;2026-09-01&quot;:40.31},{&quot;2026-09-02&quot;:40.31},{&quot;2026-09-03&quot;:40.31},{&quot;2026-09-04&quot;:40.31},{&quot;2026-09-05&quot;:40.31},{&quot;2026-09-06&quot;:40.31},{&quot;2026-09-07&quot;:40.31},{&quot;2026-09-08&quot;:40.31},{&quot;2026-09-09&quot;:40.31},{&quot;2026-09-10&quot;:40.31},{&quot;2026-09-11&quot;:40.37}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:34.7},{&quot;2026-06-10&quot;:34.6},{&quot;2026-06-11&quot;:34.61},{&quot;2026-06-12&quot;:34.71},{&quot;2026-06-13&quot;:34.84},{&quot;2026-06-14&quot;:34.8},{&quot;2026-06-15&quot;:34.84},{&quot;2026-06-16&quot;:34.95},{&quot;2026-06-17&quot;:35.13},{&quot;2026-06-18&quot;:35.13},{&quot;2026-06-19&quot;:35.13},{&quot;2026-06-20&quot;:35.09},{&quot;2026-06-21&quot;:35.09},{&quot;2026-06-22&quot;:35.53},{&quot;2026-06-24&quot;:35.38},{&quot;2026-06-25&quot;:35.47},{&quot;2026-06-26&quot;:35.47},{&quot;2026-06-27&quot;:35.47},{&quot;2026-06-28&quot;:35.51},{&quot;2026-06-29&quot;:35.51},{&quot;2026-06-30&quot;:35.47},{&quot;2026-07-01&quot;:35.4},{&quot;2026-07-02&quot;:35.59},{&quot;2026-07-03&quot;:35.59},{&quot;2026-07-04&quot;:35.59},{&quot;2026-07-05&quot;:35.59},{&quot;2026-07-06&quot;:35.57},{&quot;2026-07-07&quot;:35.59},{&quot;2026-07-08&quot;:35.63},{&quot;2026-07-09&quot;:35.68},{&quot;2026-07-10&quot;:35.71},{&quot;2026-07-11&quot;:35.71},{&quot;2026-07-12&quot;:35.81},{&quot;2026-07-13&quot;:35.81},{&quot;2026-07-14&quot;:35.81},{&quot;2026-07-15&quot;:35.92},{&quot;2026-07-16&quot;:35.92},{&quot;2026-07-17&quot;:35.97},{&quot;2026-07-18&quot;:35.97},{&quot;2026-07-19&quot;:35.97},{&quot;2026-07-20&quot;:36.08},{&quot;2026-07-21&quot;:36.08},{&quot;2026-07-23&quot;:36.08},{&quot;2026-07-25&quot;:35.79},{&quot;2026-07-26&quot;:35.82},{&quot;2026-07-27&quot;:35.58},{&quot;2026-07-29&quot;:35.58},{&quot;2026-07-30&quot;:35.61},{&quot;2026-07-31&quot;:35.65},{&quot;2026-08-01&quot;:35.65},{&quot;2026-08-02&quot;:35.65},{&quot;2026-08-03&quot;:35.65},{&quot;2026-08-04&quot;:35.65},{&quot;2026-08-05&quot;:35.65},{&quot;2026-08-07&quot;:35.63},{&quot;2026-08-08&quot;:35.65},{&quot;2026-08-09&quot;:35.8},{&quot;2026-08-10&quot;:35.8},{&quot;2026-08-11&quot;:35.8},{&quot;2026-08-12&quot;:35.75},{&quot;2026-08-13&quot;:35.71},{&quot;2026-08-14&quot;:35.71},{&quot;2026-08-15&quot;:35.23},{&quot;2026-08-16&quot;:35.23},{&quot;2026-08-17&quot;:35.17},{&quot;2026-08-18&quot;:35.13},{&quot;2026-08-19&quot;:35.19},{&quot;2026-08-20&quot;:35.19},{&quot;2026-08-21&quot;:35.43},{&quot;2026-08-22&quot;:35.43},{&quot;2026-08-23&quot;:35.43},{&quot;2026-08-24&quot;:35.43},{&quot;2026-08-25&quot;:35.43},{&quot;2026-08-26&quot;:35.51},{&quot;2026-08-27&quot;:35.51},{&quot;2026-08-28&quot;:35.57},{&quot;2026-08-29&quot;:35.57},{&quot;2026-08-30&quot;:35.62},{&quot;2026-08-31&quot;:35.62},{&quot;2026-09-01&quot;:35.62},{&quot;2026-09-02&quot;:35.77},{&quot;2026-09-03&quot;:35.77},{&quot;2026-09-04&quot;:35.79},{&quot;2026-09-05&quot;:35.79},{&quot;2026-09-06&quot;:35.79},{&quot;2026-09-07&quot;:35.79},{&quot;2026-09-08&quot;:35.98},{&quot;2026-09-09&quot;:35.98},{&quot;2026-09-10&quot;:35.93},{&quot;2026-09-11&quot;:35.93}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="71358"
  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">
            Rings of Brighthearth
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Rings of Brighthearth" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/5/851f0e08-2c39-4ce9-a181-e106ca9e5fc1.jpg?1783915822" />

        <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">
            Rings of Brighthearth
        </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">Artifact</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>
          </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="Rings of Brighthearth" src="https://cards.scryfall.io/large/front/8/5/851f0e08-2c39-4ce9-a181-e106ca9e5fc1.jpg?1783915822" />
    </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">
                $35.91
              </span>

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Foil</span>
              <span class="text-lg font-medium text-nine-white">$18.00</span>
              <span class="text-xs text-grey-text">Credit: $23.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-08&quot;:35.56},{&quot;2026-06-10&quot;:35.92},{&quot;2026-06-11&quot;:35.92},{&quot;2026-06-12&quot;:36.39},{&quot;2026-06-13&quot;:36.39},{&quot;2026-06-14&quot;:36.59},{&quot;2026-06-15&quot;:36.59},{&quot;2026-06-16&quot;:36.59},{&quot;2026-06-17&quot;:36.5},{&quot;2026-06-18&quot;:36.5},{&quot;2026-06-19&quot;:36.5},{&quot;2026-06-20&quot;:36.5},{&quot;2026-06-21&quot;:36.5},{&quot;2026-06-22&quot;:36.5},{&quot;2026-06-24&quot;:36.5},{&quot;2026-06-25&quot;:36.07},{&quot;2026-06-26&quot;:36.07},{&quot;2026-06-27&quot;:36.07},{&quot;2026-06-28&quot;:36.07},{&quot;2026-06-29&quot;:36.07},{&quot;2026-06-30&quot;:36.13},{&quot;2026-07-01&quot;:36.13},{&quot;2026-07-02&quot;:36.13},{&quot;2026-07-03&quot;:36.13},{&quot;2026-07-04&quot;:36.13},{&quot;2026-07-05&quot;:36.13},{&quot;2026-07-06&quot;:36.18},{&quot;2026-07-07&quot;:36.18},{&quot;2026-07-08&quot;:36.18},{&quot;2026-07-09&quot;:36.18},{&quot;2026-07-10&quot;:36.18},{&quot;2026-07-11&quot;:36.18},{&quot;2026-07-12&quot;:36.18},{&quot;2026-07-13&quot;:36.18},{&quot;2026-07-14&quot;:36.18},{&quot;2026-07-15&quot;:36.18},{&quot;2026-07-16&quot;:36.18},{&quot;2026-07-17&quot;:36.18},{&quot;2026-07-18&quot;:36.18},{&quot;2026-07-19&quot;:36.18},{&quot;2026-07-20&quot;:36.18},{&quot;2026-07-21&quot;:36.18},{&quot;2026-07-23&quot;:36.18},{&quot;2026-07-25&quot;:36.18},{&quot;2026-07-26&quot;:36.18},{&quot;2026-07-27&quot;:36.18},{&quot;2026-07-29&quot;:36.26},{&quot;2026-07-30&quot;:36.26},{&quot;2026-07-31&quot;:36.26},{&quot;2026-08-01&quot;:36.26},{&quot;2026-08-02&quot;:36.26},{&quot;2026-08-03&quot;:36.26},{&quot;2026-08-04&quot;:36.26},{&quot;2026-08-05&quot;:35.54},{&quot;2026-08-07&quot;:35.42},{&quot;2026-08-08&quot;:35.42},{&quot;2026-08-09&quot;:35.42},{&quot;2026-08-10&quot;:35.42},{&quot;2026-08-11&quot;:35.42},{&quot;2026-08-12&quot;:35.42},{&quot;2026-08-13&quot;:35.42},{&quot;2026-08-14&quot;:35.42},{&quot;2026-08-15&quot;:35.42},{&quot;2026-08-16&quot;:35.42},{&quot;2026-08-17&quot;:35.42},{&quot;2026-08-18&quot;:35.42},{&quot;2026-08-19&quot;:35.42},{&quot;2026-08-20&quot;:35.42},{&quot;2026-08-21&quot;:35.42},{&quot;2026-08-22&quot;:35.42},{&quot;2026-08-23&quot;:35.42},{&quot;2026-08-24&quot;:35.46},{&quot;2026-08-25&quot;:35.46},{&quot;2026-08-26&quot;:35.46},{&quot;2026-08-27&quot;:35.7},{&quot;2026-08-28&quot;:35.7},{&quot;2026-08-29&quot;:35.7},{&quot;2026-08-30&quot;:35.7},{&quot;2026-08-31&quot;:35.7},{&quot;2026-09-01&quot;:35.7},{&quot;2026-09-02&quot;:35.7},{&quot;2026-09-03&quot;:35.83},{&quot;2026-09-04&quot;:35.83},{&quot;2026-09-05&quot;:35.83},{&quot;2026-09-06&quot;:35.83},{&quot;2026-09-07&quot;:35.91},{&quot;2026-09-08&quot;:35.91},{&quot;2026-09-09&quot;:35.91},{&quot;2026-09-10&quot;:35.91},{&quot;2026-09-11&quot;:35.91}],&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="92384"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-pmei ss-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">
            Animar, Soul of Elements
        </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-50 text-badge-text">
              ↑
              2%
            </span>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Animar, Soul of Elements" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/6/a6e4c340-afd1-4405-b58e-8d7438ce9b55.jpg?1783913096" />

        <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">
            Animar, Soul of Elements
        </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-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></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="Animar, Soul of Elements" src="https://cards.scryfall.io/large/front/a/6/a6e4c340-afd1-4405-b58e-8d7438ce9b55.jpg?1783913096" />
    </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">
                $35.51
              </span>

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Foil</span>
              <span class="text-lg font-medium text-nine-white">$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;:44.07},{&quot;2026-06-14&quot;:44.24},{&quot;2026-06-15&quot;:44.24},{&quot;2026-06-16&quot;:44.52},{&quot;2026-06-17&quot;:44.64},{&quot;2026-06-18&quot;:44.64},{&quot;2026-06-19&quot;:44.64},{&quot;2026-06-20&quot;:44.72},{&quot;2026-06-21&quot;:44.72},{&quot;2026-06-22&quot;:44.7},{&quot;2026-06-23&quot;:44.36},{&quot;2026-06-24&quot;:44.36},{&quot;2026-06-25&quot;:44.36},{&quot;2026-06-26&quot;:44.36},{&quot;2026-06-27&quot;:44.36},{&quot;2026-06-28&quot;:42.77},{&quot;2026-06-29&quot;:44.67},{&quot;2026-06-30&quot;:44.67},{&quot;2026-07-01&quot;:44.72},{&quot;2026-07-02&quot;:44.72},{&quot;2026-07-03&quot;:43.93},{&quot;2026-07-04&quot;:43.93},{&quot;2026-07-05&quot;:42.92},{&quot;2026-07-06&quot;:42.92},{&quot;2026-07-07&quot;:42.92},{&quot;2026-07-08&quot;:42.86},{&quot;2026-07-09&quot;:42.86},{&quot;2026-07-10&quot;:42.86},{&quot;2026-07-11&quot;:42.83},{&quot;2026-07-12&quot;:42.32},{&quot;2026-07-13&quot;:42.32},{&quot;2026-07-14&quot;:42.05},{&quot;2026-07-15&quot;:41.33},{&quot;2026-07-16&quot;:40.44},{&quot;2026-07-17&quot;:40.01},{&quot;2026-07-18&quot;:40.01},{&quot;2026-07-19&quot;:40.01},{&quot;2026-07-20&quot;:39.51},{&quot;2026-07-21&quot;:39.51},{&quot;2026-07-22&quot;:38.96},{&quot;2026-07-23&quot;:38.83},{&quot;2026-07-24&quot;:38.83},{&quot;2026-07-25&quot;:38.95},{&quot;2026-07-26&quot;:39.33},{&quot;2026-07-27&quot;:39.35},{&quot;2026-07-28&quot;:39.35},{&quot;2026-07-29&quot;:39.24},{&quot;2026-07-30&quot;:39.24},{&quot;2026-07-31&quot;:39.24},{&quot;2026-08-01&quot;:38.99},{&quot;2026-08-02&quot;:38.34},{&quot;2026-08-03&quot;:38.34},{&quot;2026-08-04&quot;:38.34},{&quot;2026-08-05&quot;:38.18},{&quot;2026-08-07&quot;:38.39},{&quot;2026-08-08&quot;:38.39},{&quot;2026-08-09&quot;:38.39},{&quot;2026-08-10&quot;:38.34},{&quot;2026-08-11&quot;:38.34},{&quot;2026-08-12&quot;:38.48},{&quot;2026-08-13&quot;:38.48},{&quot;2026-08-14&quot;:38.49},{&quot;2026-08-15&quot;:38.49},{&quot;2026-08-16&quot;:38.18},{&quot;2026-08-17&quot;:38.09},{&quot;2026-08-18&quot;:37.92},{&quot;2026-08-19&quot;:37.63},{&quot;2026-08-20&quot;:36.89},{&quot;2026-08-21&quot;:36.49},{&quot;2026-08-22&quot;:36.32},{&quot;2026-08-23&quot;:34.79},{&quot;2026-08-24&quot;:34.95},{&quot;2026-08-25&quot;:34.95},{&quot;2026-08-26&quot;:34.97},{&quot;2026-08-27&quot;:34.97},{&quot;2026-08-28&quot;:34.7},{&quot;2026-08-29&quot;:34.7},{&quot;2026-08-30&quot;:34.5},{&quot;2026-08-31&quot;:34.23},{&quot;2026-09-01&quot;:34.53},{&quot;2026-09-02&quot;:34.48},{&quot;2026-09-03&quot;:34.37},{&quot;2026-09-04&quot;:34.56},{&quot;2026-09-05&quot;:34.96},{&quot;2026-09-06&quot;:35.64},{&quot;2026-09-07&quot;:35.54},{&quot;2026-09-08&quot;:35.51},{&quot;2026-09-09&quot;:35.51},{&quot;2026-09-10&quot;:35.51},{&quot;2026-09-11&quot;:35.51}],&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="53356"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb2 ss-common ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:129.5},{&quot;2026-06-11&quot;:129.5},{&quot;2026-06-12&quot;:129.5},{&quot;2026-06-13&quot;:129.5},{&quot;2026-06-14&quot;:129.5},{&quot;2026-06-15&quot;:129.5},{&quot;2026-06-16&quot;:129.5},{&quot;2026-06-17&quot;:129.5},{&quot;2026-06-18&quot;:129.5},{&quot;2026-06-19&quot;:129.5},{&quot;2026-06-20&quot;:129.5},{&quot;2026-06-21&quot;:129.5},{&quot;2026-06-22&quot;:129.5},{&quot;2026-06-23&quot;:132.01},{&quot;2026-06-24&quot;:132.01},{&quot;2026-06-25&quot;:132.01},{&quot;2026-06-26&quot;:132.01},{&quot;2026-06-27&quot;:132.01},{&quot;2026-06-28&quot;:132.73},{&quot;2026-06-29&quot;:132.73},{&quot;2026-06-30&quot;:132.73},{&quot;2026-07-01&quot;:133.92},{&quot;2026-07-02&quot;:133.92},{&quot;2026-07-03&quot;:133.92},{&quot;2026-07-04&quot;:133.92},{&quot;2026-07-05&quot;:133.92},{&quot;2026-07-06&quot;:133.92},{&quot;2026-07-07&quot;:133.92},{&quot;2026-07-08&quot;:133.92},{&quot;2026-07-09&quot;:135.12},{&quot;2026-07-10&quot;:135.12},{&quot;2026-07-11&quot;:136.31},{&quot;2026-07-12&quot;:136.31},{&quot;2026-07-13&quot;:136.31},{&quot;2026-07-14&quot;:136.31},{&quot;2026-07-15&quot;:136.31},{&quot;2026-07-16&quot;:136.31},{&quot;2026-07-17&quot;:136.31},{&quot;2026-07-18&quot;:137.45},{&quot;2026-07-19&quot;:137.45},{&quot;2026-07-20&quot;:139.22},{&quot;2026-07-21&quot;:139.22},{&quot;2026-07-23&quot;:139.22},{&quot;2026-07-25&quot;:139.22},{&quot;2026-07-26&quot;:139.22},{&quot;2026-07-27&quot;:139.22},{&quot;2026-07-29&quot;:139.22},{&quot;2026-07-30&quot;:139.22},{&quot;2026-07-31&quot;:139.22},{&quot;2026-08-01&quot;:139.22},{&quot;2026-08-02&quot;:139.22},{&quot;2026-08-03&quot;:139.22},{&quot;2026-08-04&quot;:139.22},{&quot;2026-08-05&quot;:139.22},{&quot;2026-08-07&quot;:139.22},{&quot;2026-08-08&quot;:141.02},{&quot;2026-08-09&quot;:141.02},{&quot;2026-08-10&quot;:141.02},{&quot;2026-08-11&quot;:141.02},{&quot;2026-08-12&quot;:141.02},{&quot;2026-08-13&quot;:143.37},{&quot;2026-08-14&quot;:143.37},{&quot;2026-08-15&quot;:143.37},{&quot;2026-08-16&quot;:143.37},{&quot;2026-08-17&quot;:143.37},{&quot;2026-08-18&quot;:143.37},{&quot;2026-08-19&quot;:143.37},{&quot;2026-08-20&quot;:143.37},{&quot;2026-08-21&quot;:143.37},{&quot;2026-08-22&quot;:143.37},{&quot;2026-08-23&quot;:143.37},{&quot;2026-08-24&quot;:143.37},{&quot;2026-08-25&quot;:143.37},{&quot;2026-08-26&quot;:143.37},{&quot;2026-08-27&quot;:143.37},{&quot;2026-08-28&quot;:143.37},{&quot;2026-08-29&quot;:143.37},{&quot;2026-08-30&quot;:143.37},{&quot;2026-08-31&quot;:143.37},{&quot;2026-09-01&quot;:143.37},{&quot;2026-09-02&quot;:143.37},{&quot;2026-09-03&quot;:143.37},{&quot;2026-09-04&quot;:143.37},{&quot;2026-09-05&quot;:143.37},{&quot;2026-09-06&quot;:143.37},{&quot;2026-09-07&quot;:143.37},{&quot;2026-09-08&quot;:143.37},{&quot;2026-09-09&quot;:143.37},{&quot;2026-09-10&quot;:144.05},{&quot;2026-09-11&quot;:144.05}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:34.19},{&quot;2026-06-11&quot;:34.37},{&quot;2026-06-12&quot;:34.86},{&quot;2026-06-13&quot;:34.97},{&quot;2026-06-14&quot;:35.0},{&quot;2026-06-15&quot;:35.26},{&quot;2026-06-16&quot;:35.61},{&quot;2026-06-17&quot;:35.54},{&quot;2026-06-18&quot;:35.67},{&quot;2026-06-19&quot;:35.83},{&quot;2026-06-20&quot;:36.11},{&quot;2026-06-21&quot;:36.11},{&quot;2026-06-22&quot;:36.45},{&quot;2026-06-23&quot;:37.33},{&quot;2026-06-24&quot;:37.74},{&quot;2026-06-25&quot;:37.74},{&quot;2026-06-26&quot;:37.65},{&quot;2026-06-27&quot;:37.88},{&quot;2026-06-28&quot;:38.24},{&quot;2026-06-29&quot;:38.24},{&quot;2026-06-30&quot;:38.24},{&quot;2026-07-01&quot;:38.15},{&quot;2026-07-02&quot;:38.07},{&quot;2026-07-03&quot;:37.89},{&quot;2026-07-04&quot;:37.89},{&quot;2026-07-05&quot;:38.04},{&quot;2026-07-06&quot;:38.41},{&quot;2026-07-07&quot;:38.41},{&quot;2026-07-08&quot;:38.41},{&quot;2026-07-09&quot;:38.29},{&quot;2026-07-10&quot;:38.29},{&quot;2026-07-11&quot;:38.65},{&quot;2026-07-12&quot;:38.65},{&quot;2026-07-13&quot;:38.65},{&quot;2026-07-14&quot;:38.78},{&quot;2026-07-15&quot;:38.78},{&quot;2026-07-16&quot;:38.76},{&quot;2026-07-17&quot;:38.58},{&quot;2026-07-18&quot;:38.26},{&quot;2026-07-19&quot;:38.26},{&quot;2026-07-20&quot;:37.69},{&quot;2026-07-21&quot;:37.69},{&quot;2026-07-23&quot;:37.64},{&quot;2026-07-25&quot;:37.64},{&quot;2026-07-26&quot;:37.78},{&quot;2026-07-27&quot;:37.76},{&quot;2026-07-29&quot;:37.33},{&quot;2026-07-30&quot;:37.12},{&quot;2026-07-31&quot;:36.96},{&quot;2026-08-01&quot;:36.88},{&quot;2026-08-02&quot;:36.99},{&quot;2026-08-03&quot;:36.71},{&quot;2026-08-04&quot;:36.24},{&quot;2026-08-05&quot;:36.24},{&quot;2026-08-07&quot;:35.91},{&quot;2026-08-08&quot;:35.92},{&quot;2026-08-09&quot;:35.17},{&quot;2026-08-10&quot;:34.26},{&quot;2026-08-11&quot;:33.93},{&quot;2026-08-12&quot;:33.55},{&quot;2026-08-13&quot;:32.81},{&quot;2026-08-14&quot;:32.82},{&quot;2026-08-15&quot;:32.34},{&quot;2026-08-16&quot;:31.9},{&quot;2026-08-17&quot;:32.42},{&quot;2026-08-18&quot;:31.13},{&quot;2026-08-19&quot;:30.93},{&quot;2026-08-20&quot;:30.93},{&quot;2026-08-21&quot;:31.32},{&quot;2026-08-22&quot;:31.52},{&quot;2026-08-23&quot;:32.32},{&quot;2026-08-24&quot;:32.73},{&quot;2026-08-25&quot;:32.73},{&quot;2026-08-26&quot;:33.17},{&quot;2026-08-27&quot;:33.98},{&quot;2026-08-28&quot;:34.23},{&quot;2026-08-29&quot;:34.23},{&quot;2026-08-30&quot;:34.36},{&quot;2026-08-31&quot;:34.59},{&quot;2026-09-01&quot;:34.59},{&quot;2026-09-02&quot;:34.11},{&quot;2026-09-03&quot;:33.76},{&quot;2026-09-04&quot;:33.8},{&quot;2026-09-05&quot;:33.65},{&quot;2026-09-06&quot;:33.5},{&quot;2026-09-07&quot;:33.46},{&quot;2026-09-08&quot;:33.84},{&quot;2026-09-09&quot;:33.91},{&quot;2026-09-10&quot;:33.95},{&quot;2026-09-11&quot;:35.37}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="20085"
  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">
            Ulamog, the Infinite Gyre
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Legendary Creature — Eldrazi
      </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">
            $34.75
          </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="Ulamog, the Infinite Gyre" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/4/9464a820-65de-44f2-9895-46a35e8621a0.jpg?1783921939" />

        <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">
            Ulamog, the Infinite Gyre
        </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 — Eldrazi</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-11'></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="Ulamog, the Infinite Gyre" src="https://cards.scryfall.io/large/front/9/4/9464a820-65de-44f2-9895-46a35e8621a0.jpg?1783921939" />
    </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">
                $34.75
              </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">
                $39.23
              </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">$21.00</span>
              <span class="text-xs text-grey-text">Credit: $27.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;:38.81},{&quot;2026-06-14&quot;:38.81},{&quot;2026-06-15&quot;:38.7},{&quot;2026-06-16&quot;:38.7},{&quot;2026-06-17&quot;:38.7},{&quot;2026-06-18&quot;:38.7},{&quot;2026-06-19&quot;:38.7},{&quot;2026-06-20&quot;:38.7},{&quot;2026-06-21&quot;:38.83},{&quot;2026-06-22&quot;:38.83},{&quot;2026-06-23&quot;:38.83},{&quot;2026-06-24&quot;:38.83},{&quot;2026-06-25&quot;:38.83},{&quot;2026-06-26&quot;:38.83},{&quot;2026-06-27&quot;:38.83},{&quot;2026-06-28&quot;:38.83},{&quot;2026-06-29&quot;:38.83},{&quot;2026-06-30&quot;:38.83},{&quot;2026-07-01&quot;:38.83},{&quot;2026-07-02&quot;:38.83},{&quot;2026-07-03&quot;:39.48},{&quot;2026-07-04&quot;:39.48},{&quot;2026-07-05&quot;:39.48},{&quot;2026-07-06&quot;:39.48},{&quot;2026-07-07&quot;:39.54},{&quot;2026-07-08&quot;:39.7},{&quot;2026-07-09&quot;:39.68},{&quot;2026-07-10&quot;:39.47},{&quot;2026-07-11&quot;:39.24},{&quot;2026-07-12&quot;:39.44},{&quot;2026-07-13&quot;:39.44},{&quot;2026-07-14&quot;:39.44},{&quot;2026-07-15&quot;:39.38},{&quot;2026-07-16&quot;:39.38},{&quot;2026-07-17&quot;:39.38},{&quot;2026-07-18&quot;:39.5},{&quot;2026-07-19&quot;:39.5},{&quot;2026-07-20&quot;:39.5},{&quot;2026-07-21&quot;:39.5},{&quot;2026-07-22&quot;:39.5},{&quot;2026-07-23&quot;:39.5},{&quot;2026-07-24&quot;:39.5},{&quot;2026-07-25&quot;:39.5},{&quot;2026-07-26&quot;:39.62},{&quot;2026-07-27&quot;:39.62},{&quot;2026-07-28&quot;:39.62},{&quot;2026-07-29&quot;:39.62},{&quot;2026-07-30&quot;:39.62},{&quot;2026-07-31&quot;:39.21},{&quot;2026-08-01&quot;:39.21},{&quot;2026-08-02&quot;:39.21},{&quot;2026-08-03&quot;:39.21},{&quot;2026-08-04&quot;:39.21},{&quot;2026-08-05&quot;:39.21},{&quot;2026-08-07&quot;:39.21},{&quot;2026-08-08&quot;:39.21},{&quot;2026-08-09&quot;:39.21},{&quot;2026-08-10&quot;:39.21},{&quot;2026-08-11&quot;:39.21},{&quot;2026-08-12&quot;:39.21},{&quot;2026-08-13&quot;:39.21},{&quot;2026-08-14&quot;:39.21},{&quot;2026-08-15&quot;:39.21},{&quot;2026-08-16&quot;:39.21},{&quot;2026-08-17&quot;:39.21},{&quot;2026-08-18&quot;:39.21},{&quot;2026-08-19&quot;:39.21},{&quot;2026-08-20&quot;:39.21},{&quot;2026-08-21&quot;:39.21},{&quot;2026-08-22&quot;:39.21},{&quot;2026-08-23&quot;:39.21},{&quot;2026-08-24&quot;:39.23},{&quot;2026-08-25&quot;:39.23},{&quot;2026-08-26&quot;:39.23},{&quot;2026-08-27&quot;:39.23},{&quot;2026-08-28&quot;:39.23},{&quot;2026-08-29&quot;:39.23},{&quot;2026-08-30&quot;:39.23},{&quot;2026-08-31&quot;:39.23},{&quot;2026-09-01&quot;:39.23},{&quot;2026-09-02&quot;:39.23},{&quot;2026-09-03&quot;:39.23},{&quot;2026-09-04&quot;:39.23},{&quot;2026-09-05&quot;:39.23},{&quot;2026-09-06&quot;:39.23},{&quot;2026-09-07&quot;:39.23},{&quot;2026-09-08&quot;:39.23},{&quot;2026-09-09&quot;:39.23},{&quot;2026-09-10&quot;:39.23},{&quot;2026-09-11&quot;:39.23}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:36.36},{&quot;2026-06-14&quot;:36.12},{&quot;2026-06-15&quot;:36.12},{&quot;2026-06-16&quot;:36.12},{&quot;2026-06-17&quot;:36.12},{&quot;2026-06-18&quot;:36.12},{&quot;2026-06-19&quot;:35.96},{&quot;2026-06-20&quot;:35.96},{&quot;2026-06-21&quot;:35.86},{&quot;2026-06-22&quot;:35.86},{&quot;2026-06-23&quot;:36.07},{&quot;2026-06-24&quot;:36.19},{&quot;2026-06-25&quot;:36.19},{&quot;2026-06-26&quot;:36.19},{&quot;2026-06-27&quot;:36.19},{&quot;2026-06-28&quot;:36.19},{&quot;2026-06-29&quot;:36.19},{&quot;2026-06-30&quot;:36.43},{&quot;2026-07-01&quot;:36.43},{&quot;2026-07-02&quot;:36.44},{&quot;2026-07-03&quot;:36.44},{&quot;2026-07-04&quot;:36.44},{&quot;2026-07-05&quot;:36.44},{&quot;2026-07-06&quot;:36.44},{&quot;2026-07-07&quot;:36.44},{&quot;2026-07-08&quot;:36.44},{&quot;2026-07-09&quot;:36.44},{&quot;2026-07-10&quot;:36.4},{&quot;2026-07-11&quot;:36.4},{&quot;2026-07-12&quot;:36.73},{&quot;2026-07-13&quot;:36.73},{&quot;2026-07-14&quot;:36.68},{&quot;2026-07-15&quot;:36.88},{&quot;2026-07-16&quot;:37.01},{&quot;2026-07-17&quot;:37.01},{&quot;2026-07-18&quot;:36.92},{&quot;2026-07-19&quot;:37.47},{&quot;2026-07-20&quot;:37.47},{&quot;2026-07-21&quot;:37.47},{&quot;2026-07-22&quot;:37.51},{&quot;2026-07-23&quot;:37.43},{&quot;2026-07-24&quot;:37.43},{&quot;2026-07-25&quot;:37.43},{&quot;2026-07-26&quot;:37.98},{&quot;2026-07-27&quot;:37.98},{&quot;2026-07-28&quot;:37.9},{&quot;2026-07-29&quot;:38.22},{&quot;2026-07-30&quot;:37.93},{&quot;2026-07-31&quot;:38.16},{&quot;2026-08-01&quot;:38.16},{&quot;2026-08-02&quot;:38.16},{&quot;2026-08-03&quot;:38.16},{&quot;2026-08-04&quot;:38.09},{&quot;2026-08-05&quot;:38.09},{&quot;2026-08-07&quot;:37.52},{&quot;2026-08-08&quot;:37.52},{&quot;2026-08-09&quot;:37.4},{&quot;2026-08-10&quot;:37.12},{&quot;2026-08-11&quot;:37.12},{&quot;2026-08-12&quot;:37.12},{&quot;2026-08-13&quot;:37.12},{&quot;2026-08-14&quot;:37.28},{&quot;2026-08-15&quot;:36.8},{&quot;2026-08-16&quot;:36.8},{&quot;2026-08-17&quot;:36.72},{&quot;2026-08-18&quot;:36.72},{&quot;2026-08-19&quot;:36.72},{&quot;2026-08-20&quot;:36.72},{&quot;2026-08-21&quot;:36.76},{&quot;2026-08-22&quot;:36.76},{&quot;2026-08-23&quot;:36.42},{&quot;2026-08-24&quot;:36.21},{&quot;2026-08-25&quot;:36.17},{&quot;2026-08-26&quot;:36.21},{&quot;2026-08-27&quot;:36.17},{&quot;2026-08-28&quot;:36.18},{&quot;2026-08-29&quot;:36.18},{&quot;2026-08-30&quot;:35.65},{&quot;2026-08-31&quot;:35.62},{&quot;2026-09-01&quot;:35.62},{&quot;2026-09-02&quot;:35.62},{&quot;2026-09-03&quot;:35.62},{&quot;2026-09-04&quot;:35.62},{&quot;2026-09-05&quot;:35.25},{&quot;2026-09-06&quot;:35.25},{&quot;2026-09-07&quot;:35.25},{&quot;2026-09-08&quot;:35.35},{&quot;2026-09-09&quot;:35.35},{&quot;2026-09-10&quot;:34.75},{&quot;2026-09-11&quot;:34.75}]}"
        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="11651"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-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">
            Sakashima of a Thousand Faces
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Sakashima of a Thousand Faces" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/1/714c3a1f-7b30-4ed8-8f38-6176758741fb.jpg?1783928853" />

        <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">
            Sakashima of a Thousand Faces
        </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 — Human Rogue</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Sakashima of a Thousand Faces" src="https://cards.scryfall.io/large/front/7/1/714c3a1f-7b30-4ed8-8f38-6176758741fb.jpg?1783928853" />
    </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">
                $34.41
              </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">
                $41.12
              </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">$23.00</span>
              <span class="text-xs text-grey-text">Credit: $29.90</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:40.99},{&quot;2026-06-14&quot;:40.73},{&quot;2026-06-15&quot;:40.73},{&quot;2026-06-16&quot;:40.73},{&quot;2026-06-17&quot;:40.73},{&quot;2026-06-18&quot;:40.73},{&quot;2026-06-19&quot;:40.73},{&quot;2026-06-20&quot;:40.73},{&quot;2026-06-21&quot;:40.73},{&quot;2026-06-22&quot;:40.73},{&quot;2026-06-23&quot;:40.65},{&quot;2026-06-24&quot;:40.65},{&quot;2026-06-25&quot;:40.65},{&quot;2026-06-26&quot;:40.65},{&quot;2026-06-27&quot;:40.65},{&quot;2026-06-28&quot;:40.65},{&quot;2026-06-29&quot;:40.65},{&quot;2026-06-30&quot;:40.65},{&quot;2026-07-01&quot;:40.65},{&quot;2026-07-02&quot;:40.65},{&quot;2026-07-03&quot;:40.65},{&quot;2026-07-04&quot;:40.81},{&quot;2026-07-05&quot;:40.81},{&quot;2026-07-06&quot;:40.81},{&quot;2026-07-07&quot;:40.81},{&quot;2026-07-08&quot;:40.81},{&quot;2026-07-09&quot;:40.81},{&quot;2026-07-10&quot;:40.81},{&quot;2026-07-11&quot;:40.81},{&quot;2026-07-12&quot;:40.81},{&quot;2026-07-13&quot;:40.81},{&quot;2026-07-14&quot;:40.81},{&quot;2026-07-15&quot;:40.81},{&quot;2026-07-16&quot;:40.81},{&quot;2026-07-17&quot;:40.81},{&quot;2026-07-18&quot;:40.81},{&quot;2026-07-19&quot;:40.81},{&quot;2026-07-20&quot;:41.0},{&quot;2026-07-21&quot;:41.0},{&quot;2026-07-22&quot;:41.0},{&quot;2026-07-23&quot;:41.0},{&quot;2026-07-24&quot;:41.0},{&quot;2026-07-25&quot;:41.0},{&quot;2026-07-26&quot;:41.0},{&quot;2026-07-27&quot;:40.81},{&quot;2026-07-28&quot;:40.81},{&quot;2026-07-29&quot;:40.81},{&quot;2026-07-30&quot;:40.92},{&quot;2026-07-31&quot;:40.92},{&quot;2026-08-01&quot;:40.92},{&quot;2026-08-02&quot;:40.63},{&quot;2026-08-03&quot;:40.63},{&quot;2026-08-04&quot;:40.63},{&quot;2026-08-05&quot;:41.18},{&quot;2026-08-07&quot;:41.07},{&quot;2026-08-08&quot;:41.07},{&quot;2026-08-09&quot;:41.07},{&quot;2026-08-10&quot;:41.07},{&quot;2026-08-11&quot;:40.72},{&quot;2026-08-12&quot;:40.72},{&quot;2026-08-13&quot;:40.35},{&quot;2026-08-14&quot;:40.35},{&quot;2026-08-15&quot;:40.35},{&quot;2026-08-16&quot;:40.35},{&quot;2026-08-17&quot;:40.36},{&quot;2026-08-18&quot;:40.63},{&quot;2026-08-19&quot;:40.71},{&quot;2026-08-20&quot;:40.71},{&quot;2026-08-21&quot;:40.71},{&quot;2026-08-22&quot;:40.71},{&quot;2026-08-23&quot;:40.71},{&quot;2026-08-24&quot;:40.71},{&quot;2026-08-25&quot;:40.71},{&quot;2026-08-26&quot;:40.71},{&quot;2026-08-27&quot;:40.71},{&quot;2026-08-28&quot;:40.63},{&quot;2026-08-29&quot;:40.63},{&quot;2026-08-30&quot;:40.63},{&quot;2026-08-31&quot;:40.63},{&quot;2026-09-01&quot;:40.63},{&quot;2026-09-02&quot;:40.68},{&quot;2026-09-03&quot;:40.68},{&quot;2026-09-04&quot;:40.68},{&quot;2026-09-05&quot;:40.68},{&quot;2026-09-06&quot;:40.68},{&quot;2026-09-07&quot;:40.68},{&quot;2026-09-08&quot;:40.68},{&quot;2026-09-09&quot;:40.68},{&quot;2026-09-10&quot;:40.68},{&quot;2026-09-11&quot;:41.12}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:32.9},{&quot;2026-06-14&quot;:33.18},{&quot;2026-06-15&quot;:33.18},{&quot;2026-06-16&quot;:33.52},{&quot;2026-06-17&quot;:33.79},{&quot;2026-06-18&quot;:33.75},{&quot;2026-06-19&quot;:33.63},{&quot;2026-06-20&quot;:33.9},{&quot;2026-06-21&quot;:34.55},{&quot;2026-06-22&quot;:34.5},{&quot;2026-06-23&quot;:34.24},{&quot;2026-06-24&quot;:34.45},{&quot;2026-06-25&quot;:35.13},{&quot;2026-06-26&quot;:35.58},{&quot;2026-06-27&quot;:36.11},{&quot;2026-06-28&quot;:36.11},{&quot;2026-06-29&quot;:36.61},{&quot;2026-06-30&quot;:36.26},{&quot;2026-07-01&quot;:35.59},{&quot;2026-07-02&quot;:35.16},{&quot;2026-07-03&quot;:35.72},{&quot;2026-07-04&quot;:35.72},{&quot;2026-07-05&quot;:35.64},{&quot;2026-07-06&quot;:35.31},{&quot;2026-07-07&quot;:34.62},{&quot;2026-07-08&quot;:34.2},{&quot;2026-07-09&quot;:34.52},{&quot;2026-07-10&quot;:34.52},{&quot;2026-07-11&quot;:33.61},{&quot;2026-07-12&quot;:33.96},{&quot;2026-07-13&quot;:34.0},{&quot;2026-07-14&quot;:34.23},{&quot;2026-07-15&quot;:35.01},{&quot;2026-07-16&quot;:34.6},{&quot;2026-07-17&quot;:34.39},{&quot;2026-07-18&quot;:33.7},{&quot;2026-07-19&quot;:34.01},{&quot;2026-07-20&quot;:34.07},{&quot;2026-07-21&quot;:34.43},{&quot;2026-07-22&quot;:33.95},{&quot;2026-07-23&quot;:34.0},{&quot;2026-07-24&quot;:33.99},{&quot;2026-07-25&quot;:33.99},{&quot;2026-07-26&quot;:33.92},{&quot;2026-07-27&quot;:33.87},{&quot;2026-07-28&quot;:34.33},{&quot;2026-07-29&quot;:34.54},{&quot;2026-07-30&quot;:35.07},{&quot;2026-07-31&quot;:34.76},{&quot;2026-08-01&quot;:35.04},{&quot;2026-08-02&quot;:35.37},{&quot;2026-08-03&quot;:35.31},{&quot;2026-08-04&quot;:35.31},{&quot;2026-08-05&quot;:35.31},{&quot;2026-08-07&quot;:34.92},{&quot;2026-08-08&quot;:34.18},{&quot;2026-08-09&quot;:33.95},{&quot;2026-08-10&quot;:34.35},{&quot;2026-08-11&quot;:33.57},{&quot;2026-08-12&quot;:33.65},{&quot;2026-08-13&quot;:33.14},{&quot;2026-08-14&quot;:32.89},{&quot;2026-08-15&quot;:32.29},{&quot;2026-08-16&quot;:32.39},{&quot;2026-08-17&quot;:32.39},{&quot;2026-08-18&quot;:33.24},{&quot;2026-08-19&quot;:33.36},{&quot;2026-08-20&quot;:32.88},{&quot;2026-08-21&quot;:32.79},{&quot;2026-08-22&quot;:32.8},{&quot;2026-08-23&quot;:32.73},{&quot;2026-08-24&quot;:33.13},{&quot;2026-08-25&quot;:33.38},{&quot;2026-08-26&quot;:33.6},{&quot;2026-08-27&quot;:33.48},{&quot;2026-08-28&quot;:33.53},{&quot;2026-08-29&quot;:33.53},{&quot;2026-08-30&quot;:34.08},{&quot;2026-08-31&quot;:34.22},{&quot;2026-09-01&quot;:34.88},{&quot;2026-09-02&quot;:34.99},{&quot;2026-09-03&quot;:35.16},{&quot;2026-09-04&quot;:35.14},{&quot;2026-09-05&quot;:34.9},{&quot;2026-09-06&quot;:34.52},{&quot;2026-09-07&quot;:34.8},{&quot;2026-09-08&quot;:34.31},{&quot;2026-09-09&quot;:34.82},{&quot;2026-09-10&quot;:34.8},{&quot;2026-09-11&quot;:34.41}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $33.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="Doubling Season" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/f/2/f2c4f80e-84a0-463b-82c3-5c6503809351.jpg?1783909062" />

        <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">
            Doubling Season
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-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="Doubling Season" src="https://cards.scryfall.io/large/front/f/2/f2c4f80e-84a0-463b-82c3-5c6503809351.jpg?1783909062" />
    </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">
                $33.49
              </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">
                $35.20
              </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">$20.00</span>
              <span class="text-xs text-grey-text">Credit: $26.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;:36.08},{&quot;2026-06-14&quot;:36.5},{&quot;2026-06-15&quot;:36.1},{&quot;2026-06-16&quot;:35.84},{&quot;2026-06-17&quot;:35.84},{&quot;2026-06-18&quot;:35.84},{&quot;2026-06-19&quot;:35.46},{&quot;2026-06-20&quot;:35.54},{&quot;2026-06-21&quot;:35.8},{&quot;2026-06-22&quot;:35.8},{&quot;2026-06-23&quot;:35.5},{&quot;2026-06-24&quot;:35.5},{&quot;2026-06-25&quot;:36.0},{&quot;2026-06-26&quot;:36.0},{&quot;2026-06-27&quot;:36.0},{&quot;2026-06-28&quot;:36.0},{&quot;2026-06-29&quot;:35.93},{&quot;2026-06-30&quot;:35.75},{&quot;2026-07-01&quot;:36.04},{&quot;2026-07-02&quot;:36.04},{&quot;2026-07-03&quot;:35.98},{&quot;2026-07-04&quot;:35.98},{&quot;2026-07-05&quot;:35.98},{&quot;2026-07-06&quot;:35.98},{&quot;2026-07-07&quot;:35.98},{&quot;2026-07-08&quot;:35.98},{&quot;2026-07-09&quot;:35.98},{&quot;2026-07-10&quot;:35.97},{&quot;2026-07-11&quot;:35.23},{&quot;2026-07-12&quot;:35.27},{&quot;2026-07-13&quot;:35.27},{&quot;2026-07-14&quot;:35.27},{&quot;2026-07-15&quot;:35.27},{&quot;2026-07-16&quot;:34.92},{&quot;2026-07-17&quot;:34.92},{&quot;2026-07-18&quot;:34.57},{&quot;2026-07-19&quot;:34.31},{&quot;2026-07-20&quot;:34.47},{&quot;2026-07-21&quot;:34.2},{&quot;2026-07-22&quot;:34.72},{&quot;2026-07-23&quot;:34.72},{&quot;2026-07-24&quot;:34.75},{&quot;2026-07-25&quot;:34.77},{&quot;2026-07-26&quot;:34.77},{&quot;2026-07-27&quot;:34.77},{&quot;2026-07-28&quot;:34.77},{&quot;2026-07-29&quot;:34.55},{&quot;2026-07-30&quot;:34.55},{&quot;2026-07-31&quot;:34.42},{&quot;2026-08-01&quot;:34.55},{&quot;2026-08-02&quot;:34.24},{&quot;2026-08-03&quot;:34.4},{&quot;2026-08-04&quot;:34.4},{&quot;2026-08-05&quot;:33.94},{&quot;2026-08-07&quot;:33.7},{&quot;2026-08-08&quot;:33.61},{&quot;2026-08-09&quot;:33.55},{&quot;2026-08-10&quot;:33.55},{&quot;2026-08-11&quot;:33.71},{&quot;2026-08-12&quot;:33.93},{&quot;2026-08-13&quot;:33.93},{&quot;2026-08-14&quot;:34.33},{&quot;2026-08-15&quot;:34.33},{&quot;2026-08-16&quot;:34.3},{&quot;2026-08-17&quot;:34.37},{&quot;2026-08-18&quot;:34.37},{&quot;2026-08-19&quot;:34.37},{&quot;2026-08-20&quot;:34.37},{&quot;2026-08-21&quot;:34.37},{&quot;2026-08-22&quot;:34.38},{&quot;2026-08-23&quot;:34.64},{&quot;2026-08-24&quot;:34.87},{&quot;2026-08-25&quot;:34.35},{&quot;2026-08-26&quot;:34.63},{&quot;2026-08-27&quot;:35.04},{&quot;2026-08-28&quot;:35.27},{&quot;2026-08-29&quot;:35.27},{&quot;2026-08-30&quot;:35.27},{&quot;2026-08-31&quot;:35.34},{&quot;2026-09-01&quot;:35.34},{&quot;2026-09-02&quot;:35.34},{&quot;2026-09-03&quot;:35.34},{&quot;2026-09-04&quot;:35.38},{&quot;2026-09-05&quot;:35.49},{&quot;2026-09-06&quot;:35.43},{&quot;2026-09-07&quot;:35.44},{&quot;2026-09-08&quot;:35.04},{&quot;2026-09-09&quot;:34.85},{&quot;2026-09-10&quot;:35.57},{&quot;2026-09-11&quot;:35.2}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:31.09},{&quot;2026-06-14&quot;:31.34},{&quot;2026-06-15&quot;:32.07},{&quot;2026-06-16&quot;:32.45},{&quot;2026-06-17&quot;:32.92},{&quot;2026-06-18&quot;:32.87},{&quot;2026-06-19&quot;:32.46},{&quot;2026-06-20&quot;:32.99},{&quot;2026-06-21&quot;:32.48},{&quot;2026-06-22&quot;:33.15},{&quot;2026-06-23&quot;:32.77},{&quot;2026-06-24&quot;:34.13},{&quot;2026-06-25&quot;:33.89},{&quot;2026-06-26&quot;:32.96},{&quot;2026-06-27&quot;:31.42},{&quot;2026-06-28&quot;:32.02},{&quot;2026-06-29&quot;:31.22},{&quot;2026-06-30&quot;:30.1},{&quot;2026-07-01&quot;:29.7},{&quot;2026-07-02&quot;:29.97},{&quot;2026-07-03&quot;:30.55},{&quot;2026-07-04&quot;:31.48},{&quot;2026-07-05&quot;:32.01},{&quot;2026-07-06&quot;:32.44},{&quot;2026-07-07&quot;:31.41},{&quot;2026-07-08&quot;:31.33},{&quot;2026-07-09&quot;:30.87},{&quot;2026-07-10&quot;:32.27},{&quot;2026-07-11&quot;:32.44},{&quot;2026-07-12&quot;:33.8},{&quot;2026-07-13&quot;:34.67},{&quot;2026-07-14&quot;:34.48},{&quot;2026-07-15&quot;:33.74},{&quot;2026-07-16&quot;:32.78},{&quot;2026-07-17&quot;:32.65},{&quot;2026-07-18&quot;:34.31},{&quot;2026-07-19&quot;:34.53},{&quot;2026-07-20&quot;:35.16},{&quot;2026-07-21&quot;:35.12},{&quot;2026-07-22&quot;:35.06},{&quot;2026-07-23&quot;:34.71},{&quot;2026-07-24&quot;:33.69},{&quot;2026-07-25&quot;:33.2},{&quot;2026-07-26&quot;:33.87},{&quot;2026-07-27&quot;:33.35},{&quot;2026-07-28&quot;:33.13},{&quot;2026-07-29&quot;:33.93},{&quot;2026-07-30&quot;:34.67},{&quot;2026-07-31&quot;:34.25},{&quot;2026-08-01&quot;:34.16},{&quot;2026-08-02&quot;:33.96},{&quot;2026-08-03&quot;:32.78},{&quot;2026-08-04&quot;:32.93},{&quot;2026-08-05&quot;:32.82},{&quot;2026-08-07&quot;:32.73},{&quot;2026-08-08&quot;:32.75},{&quot;2026-08-09&quot;:32.84},{&quot;2026-08-10&quot;:32.53},{&quot;2026-08-11&quot;:33.17},{&quot;2026-08-12&quot;:33.01},{&quot;2026-08-13&quot;:33.03},{&quot;2026-08-14&quot;:32.93},{&quot;2026-08-15&quot;:32.91},{&quot;2026-08-16&quot;:32.78},{&quot;2026-08-17&quot;:33.52},{&quot;2026-08-18&quot;:33.33},{&quot;2026-08-19&quot;:33.77},{&quot;2026-08-20&quot;:33.67},{&quot;2026-08-21&quot;:34.12},{&quot;2026-08-22&quot;:35.01},{&quot;2026-08-23&quot;:35.1},{&quot;2026-08-24&quot;:34.81},{&quot;2026-08-25&quot;:34.53},{&quot;2026-08-26&quot;:33.77},{&quot;2026-08-27&quot;:33.84},{&quot;2026-08-28&quot;:33.3},{&quot;2026-08-29&quot;:33.3},{&quot;2026-08-30&quot;:33.79},{&quot;2026-08-31&quot;:33.92},{&quot;2026-09-01&quot;:33.16},{&quot;2026-09-02&quot;:33.62},{&quot;2026-09-03&quot;:33.8},{&quot;2026-09-04&quot;:34.13},{&quot;2026-09-05&quot;:34.58},{&quot;2026-09-06&quot;:34.35},{&quot;2026-09-07&quot;:34.41},{&quot;2026-09-08&quot;:34.75},{&quot;2026-09-09&quot;:34.53},{&quot;2026-09-10&quot;:33.47},{&quot;2026-09-11&quot;:33.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="57890"
  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-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">
            Atraxa, Grand Unifier
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Atraxa, Grand Unifier" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/e/5/e51e5d02-d3d0-45e5-a589-1fe25ff5082b.jpg?1783917956" />

        <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">
            Atraxa, Grand Unifier
        </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 — Phyrexian Angel</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-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></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="Atraxa, Grand Unifier" src="https://cards.scryfall.io/large/front/e/5/e51e5d02-d3d0-45e5-a589-1fe25ff5082b.jpg?1783917956" />
    </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">
            2
          </span>
        </div>

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $21.92
              </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">
                $32.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">$22.00</span>
              <span class="text-xs text-grey-text">Credit: $28.60</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">$25.00</span>
              <span class="text-xs text-grey-text">Credit: $32.50</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-12&quot;:28.8},{&quot;2026-06-13&quot;:28.8},{&quot;2026-06-14&quot;:28.8},{&quot;2026-06-15&quot;:28.8},{&quot;2026-06-16&quot;:28.8},{&quot;2026-06-17&quot;:28.26},{&quot;2026-06-18&quot;:28.26},{&quot;2026-06-19&quot;:28.26},{&quot;2026-06-20&quot;:29.04},{&quot;2026-06-21&quot;:29.04},{&quot;2026-06-22&quot;:29.04},{&quot;2026-06-23&quot;:29.04},{&quot;2026-06-24&quot;:28.97},{&quot;2026-06-25&quot;:28.97},{&quot;2026-06-26&quot;:28.97},{&quot;2026-06-27&quot;:28.97},{&quot;2026-06-28&quot;:28.97},{&quot;2026-06-29&quot;:28.97},{&quot;2026-06-30&quot;:28.97},{&quot;2026-07-01&quot;:28.97},{&quot;2026-07-02&quot;:28.97},{&quot;2026-07-03&quot;:29.49},{&quot;2026-07-04&quot;:29.49},{&quot;2026-07-05&quot;:29.85},{&quot;2026-07-06&quot;:29.85},{&quot;2026-07-07&quot;:29.85},{&quot;2026-07-08&quot;:30.37},{&quot;2026-07-09&quot;:30.37},{&quot;2026-07-10&quot;:31.16},{&quot;2026-07-11&quot;:31.16},{&quot;2026-07-12&quot;:31.36},{&quot;2026-07-13&quot;:31.36},{&quot;2026-07-14&quot;:31.36},{&quot;2026-07-15&quot;:31.36},{&quot;2026-07-16&quot;:31.36},{&quot;2026-07-17&quot;:31.59},{&quot;2026-07-18&quot;:31.59},{&quot;2026-07-19&quot;:31.59},{&quot;2026-07-20&quot;:31.59},{&quot;2026-07-21&quot;:31.59},{&quot;2026-07-23&quot;:31.59},{&quot;2026-07-24&quot;:31.59},{&quot;2026-07-25&quot;:31.59},{&quot;2026-07-26&quot;:31.59},{&quot;2026-07-27&quot;:31.59},{&quot;2026-07-28&quot;:31.81},{&quot;2026-07-29&quot;:31.81},{&quot;2026-07-30&quot;:31.81},{&quot;2026-07-31&quot;:32.32},{&quot;2026-08-01&quot;:32.58},{&quot;2026-08-02&quot;:32.58},{&quot;2026-08-03&quot;:32.58},{&quot;2026-08-04&quot;:32.76},{&quot;2026-08-05&quot;:32.57},{&quot;2026-08-07&quot;:32.63},{&quot;2026-08-08&quot;:32.63},{&quot;2026-08-09&quot;:32.64},{&quot;2026-08-10&quot;:32.64},{&quot;2026-08-11&quot;:32.31},{&quot;2026-08-12&quot;:32.51},{&quot;2026-08-13&quot;:32.51},{&quot;2026-08-14&quot;:32.51},{&quot;2026-08-15&quot;:32.51},{&quot;2026-08-16&quot;:32.51},{&quot;2026-08-17&quot;:32.25},{&quot;2026-08-18&quot;:32.25},{&quot;2026-08-19&quot;:32.25},{&quot;2026-08-20&quot;:32.25},{&quot;2026-08-21&quot;:32.25},{&quot;2026-08-22&quot;:32.25},{&quot;2026-08-23&quot;:32.25},{&quot;2026-08-24&quot;:32.25},{&quot;2026-08-25&quot;:32.25},{&quot;2026-08-26&quot;:32.25},{&quot;2026-08-27&quot;:32.41},{&quot;2026-08-28&quot;:32.41},{&quot;2026-08-29&quot;:32.41},{&quot;2026-08-30&quot;:32.33},{&quot;2026-08-31&quot;:32.45},{&quot;2026-09-01&quot;:32.45},{&quot;2026-09-02&quot;:32.51},{&quot;2026-09-03&quot;:32.55},{&quot;2026-09-04&quot;:32.55},{&quot;2026-09-05&quot;:32.64},{&quot;2026-09-06&quot;:32.64},{&quot;2026-09-07&quot;:32.64},{&quot;2026-09-08&quot;:32.64},{&quot;2026-09-09&quot;:32.64},{&quot;2026-09-10&quot;:32.54},{&quot;2026-09-11&quot;:32.57}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:15.75},{&quot;2026-06-13&quot;:15.91},{&quot;2026-06-14&quot;:15.98},{&quot;2026-06-15&quot;:16.21},{&quot;2026-06-16&quot;:16.36},{&quot;2026-06-17&quot;:16.79},{&quot;2026-06-18&quot;:16.79},{&quot;2026-06-19&quot;:16.75},{&quot;2026-06-20&quot;:16.86},{&quot;2026-06-21&quot;:16.86},{&quot;2026-06-22&quot;:16.72},{&quot;2026-06-23&quot;:16.95},{&quot;2026-06-24&quot;:16.95},{&quot;2026-06-25&quot;:16.95},{&quot;2026-06-26&quot;:16.95},{&quot;2026-06-27&quot;:17.66},{&quot;2026-06-28&quot;:18.02},{&quot;2026-06-29&quot;:18.02},{&quot;2026-06-30&quot;:18.13},{&quot;2026-07-01&quot;:18.28},{&quot;2026-07-02&quot;:18.15},{&quot;2026-07-03&quot;:18.15},{&quot;2026-07-04&quot;:19.71},{&quot;2026-07-05&quot;:19.71},{&quot;2026-07-06&quot;:19.72},{&quot;2026-07-07&quot;:20.03},{&quot;2026-07-08&quot;:20.03},{&quot;2026-07-09&quot;:19.53},{&quot;2026-07-10&quot;:19.53},{&quot;2026-07-11&quot;:19.53},{&quot;2026-07-12&quot;:19.48},{&quot;2026-07-13&quot;:19.43},{&quot;2026-07-14&quot;:19.41},{&quot;2026-07-15&quot;:19.41},{&quot;2026-07-16&quot;:19.5},{&quot;2026-07-17&quot;:19.25},{&quot;2026-07-18&quot;:19.25},{&quot;2026-07-19&quot;:19.02},{&quot;2026-07-20&quot;:19.02},{&quot;2026-07-21&quot;:18.9},{&quot;2026-07-23&quot;:18.81},{&quot;2026-07-24&quot;:18.77},{&quot;2026-07-25&quot;:18.93},{&quot;2026-07-26&quot;:18.93},{&quot;2026-07-27&quot;:19.17},{&quot;2026-07-28&quot;:19.3},{&quot;2026-07-29&quot;:19.1},{&quot;2026-07-30&quot;:19.14},{&quot;2026-07-31&quot;:19.29},{&quot;2026-08-01&quot;:19.29},{&quot;2026-08-02&quot;:19.29},{&quot;2026-08-03&quot;:19.29},{&quot;2026-08-04&quot;:19.26},{&quot;2026-08-05&quot;:19.76},{&quot;2026-08-07&quot;:19.8},{&quot;2026-08-08&quot;:19.8},{&quot;2026-08-09&quot;:19.86},{&quot;2026-08-10&quot;:19.92},{&quot;2026-08-11&quot;:20.01},{&quot;2026-08-12&quot;:20.14},{&quot;2026-08-13&quot;:20.18},{&quot;2026-08-14&quot;:20.22},{&quot;2026-08-15&quot;:20.22},{&quot;2026-08-16&quot;:20.22},{&quot;2026-08-17&quot;:20.46},{&quot;2026-08-18&quot;:20.64},{&quot;2026-08-19&quot;:20.8},{&quot;2026-08-20&quot;:20.8},{&quot;2026-08-21&quot;:20.48},{&quot;2026-08-22&quot;:20.48},{&quot;2026-08-23&quot;:20.52},{&quot;2026-08-24&quot;:20.52},{&quot;2026-08-25&quot;:20.71},{&quot;2026-08-26&quot;:20.71},{&quot;2026-08-27&quot;:20.71},{&quot;2026-08-28&quot;:20.62},{&quot;2026-08-29&quot;:20.62},{&quot;2026-08-30&quot;:20.3},{&quot;2026-08-31&quot;:20.42},{&quot;2026-09-01&quot;:20.44},{&quot;2026-09-02&quot;:20.62},{&quot;2026-09-03&quot;:20.65},{&quot;2026-09-04&quot;:20.85},{&quot;2026-09-05&quot;:21.05},{&quot;2026-09-06&quot;:21.44},{&quot;2026-09-07&quot;:21.55},{&quot;2026-09-08&quot;:21.55},{&quot;2026-09-09&quot;:21.55},{&quot;2026-09-10&quot;:21.86},{&quot;2026-09-11&quot;:21.92}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Legendary Creature — Phyrexian Angel
      </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">
            $32.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="Atraxa, Grand Unifier" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/e/be326fe9-4ed8-4f64-934c-9955edea5fdb.jpg?1783906381" />

        <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">
            Atraxa, Grand Unifier
        </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 — Phyrexian Angel</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-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></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="Atraxa, Grand Unifier" src="https://cards.scryfall.io/large/front/b/e/be326fe9-4ed8-4f64-934c-9955edea5fdb.jpg?1783906381" />
    </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.03
              </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">
                $329.25
              </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">$30.00</span>
              <span class="text-xs text-grey-text">Credit: $39.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-11&quot;:198.83},{&quot;2026-06-12&quot;:199.07},{&quot;2026-06-13&quot;:193.02},{&quot;2026-06-14&quot;:193.02},{&quot;2026-06-15&quot;:199.59},{&quot;2026-06-16&quot;:199.59},{&quot;2026-06-17&quot;:199.59},{&quot;2026-06-18&quot;:199.52},{&quot;2026-06-19&quot;:201.62},{&quot;2026-06-20&quot;:201.62},{&quot;2026-06-21&quot;:204.7},{&quot;2026-06-22&quot;:204.7},{&quot;2026-06-23&quot;:203.93},{&quot;2026-06-24&quot;:203.93},{&quot;2026-06-25&quot;:204.83},{&quot;2026-06-26&quot;:204.83},{&quot;2026-06-27&quot;:204.83},{&quot;2026-06-28&quot;:204.83},{&quot;2026-06-29&quot;:204.83},{&quot;2026-06-30&quot;:204.83},{&quot;2026-07-01&quot;:204.83},{&quot;2026-07-02&quot;:210.51},{&quot;2026-07-03&quot;:215.14},{&quot;2026-07-04&quot;:215.14},{&quot;2026-07-05&quot;:215.14},{&quot;2026-07-06&quot;:219.96},{&quot;2026-07-07&quot;:219.96},{&quot;2026-07-08&quot;:219.96},{&quot;2026-07-09&quot;:219.96},{&quot;2026-07-10&quot;:219.96},{&quot;2026-07-11&quot;:219.96},{&quot;2026-07-12&quot;:217.41},{&quot;2026-07-13&quot;:221.26},{&quot;2026-07-14&quot;:219.5},{&quot;2026-07-15&quot;:219.5},{&quot;2026-07-16&quot;:219.26},{&quot;2026-07-17&quot;:223.3},{&quot;2026-07-18&quot;:223.3},{&quot;2026-07-19&quot;:226.66},{&quot;2026-07-20&quot;:230.3},{&quot;2026-07-21&quot;:230.3},{&quot;2026-07-23&quot;:241.63},{&quot;2026-07-25&quot;:238.93},{&quot;2026-07-26&quot;:238.93},{&quot;2026-07-27&quot;:238.93},{&quot;2026-07-28&quot;:238.93},{&quot;2026-07-29&quot;:238.93},{&quot;2026-07-30&quot;:238.93},{&quot;2026-07-31&quot;:243.25},{&quot;2026-08-01&quot;:243.25},{&quot;2026-08-02&quot;:254.93},{&quot;2026-08-03&quot;:254.93},{&quot;2026-08-04&quot;:258.86},{&quot;2026-08-05&quot;:258.86},{&quot;2026-08-07&quot;:270.45},{&quot;2026-08-08&quot;:270.45},{&quot;2026-08-09&quot;:270.45},{&quot;2026-08-10&quot;:270.45},{&quot;2026-08-11&quot;:275.04},{&quot;2026-08-12&quot;:283.57},{&quot;2026-08-13&quot;:294.97},{&quot;2026-08-14&quot;:294.97},{&quot;2026-08-15&quot;:294.97},{&quot;2026-08-16&quot;:294.97},{&quot;2026-08-17&quot;:294.97},{&quot;2026-08-18&quot;:294.97},{&quot;2026-08-19&quot;:294.97},{&quot;2026-08-20&quot;:294.97},{&quot;2026-08-21&quot;:294.97},{&quot;2026-08-22&quot;:294.97},{&quot;2026-08-23&quot;:294.97},{&quot;2026-08-24&quot;:294.97},{&quot;2026-08-25&quot;:294.97},{&quot;2026-08-26&quot;:314.92},{&quot;2026-08-27&quot;:319.52},{&quot;2026-08-28&quot;:328.68},{&quot;2026-08-29&quot;:328.68},{&quot;2026-08-30&quot;:328.68},{&quot;2026-08-31&quot;:328.68},{&quot;2026-09-01&quot;:328.68},{&quot;2026-09-02&quot;:328.68},{&quot;2026-09-03&quot;:329.25},{&quot;2026-09-04&quot;:333.45},{&quot;2026-09-05&quot;:333.45},{&quot;2026-09-06&quot;:333.45},{&quot;2026-09-07&quot;:333.45},{&quot;2026-09-08&quot;:333.45},{&quot;2026-09-09&quot;:329.25},{&quot;2026-09-10&quot;:329.25},{&quot;2026-09-11&quot;:329.25}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:27.2},{&quot;2026-06-12&quot;:27.16},{&quot;2026-06-13&quot;:27.57},{&quot;2026-06-14&quot;:27.65},{&quot;2026-06-15&quot;:27.27},{&quot;2026-06-16&quot;:26.62},{&quot;2026-06-17&quot;:26.72},{&quot;2026-06-18&quot;:26.24},{&quot;2026-06-19&quot;:26.25},{&quot;2026-06-20&quot;:26.07},{&quot;2026-06-21&quot;:25.98},{&quot;2026-06-22&quot;:26.54},{&quot;2026-06-23&quot;:26.67},{&quot;2026-06-24&quot;:26.99},{&quot;2026-06-25&quot;:26.85},{&quot;2026-06-26&quot;:26.54},{&quot;2026-06-27&quot;:27.92},{&quot;2026-06-28&quot;:28.05},{&quot;2026-06-29&quot;:27.9},{&quot;2026-06-30&quot;:27.9},{&quot;2026-07-01&quot;:27.91},{&quot;2026-07-02&quot;:27.93},{&quot;2026-07-03&quot;:27.73},{&quot;2026-07-04&quot;:27.05},{&quot;2026-07-05&quot;:27.14},{&quot;2026-07-06&quot;:27.22},{&quot;2026-07-07&quot;:27.22},{&quot;2026-07-08&quot;:27.33},{&quot;2026-07-09&quot;:27.32},{&quot;2026-07-10&quot;:27.45},{&quot;2026-07-11&quot;:27.42},{&quot;2026-07-12&quot;:27.57},{&quot;2026-07-13&quot;:27.54},{&quot;2026-07-14&quot;:27.08},{&quot;2026-07-15&quot;:26.87},{&quot;2026-07-16&quot;:26.75},{&quot;2026-07-17&quot;:26.84},{&quot;2026-07-18&quot;:26.8},{&quot;2026-07-19&quot;:26.8},{&quot;2026-07-20&quot;:27.1},{&quot;2026-07-21&quot;:27.1},{&quot;2026-07-23&quot;:27.71},{&quot;2026-07-25&quot;:27.33},{&quot;2026-07-26&quot;:27.46},{&quot;2026-07-27&quot;:27.58},{&quot;2026-07-28&quot;:27.01},{&quot;2026-07-29&quot;:28.23},{&quot;2026-07-30&quot;:28.09},{&quot;2026-07-31&quot;:28.53},{&quot;2026-08-01&quot;:28.9},{&quot;2026-08-02&quot;:29.0},{&quot;2026-08-03&quot;:29.32},{&quot;2026-08-04&quot;:29.72},{&quot;2026-08-05&quot;:29.46},{&quot;2026-08-07&quot;:29.96},{&quot;2026-08-08&quot;:30.42},{&quot;2026-08-09&quot;:30.59},{&quot;2026-08-10&quot;:30.46},{&quot;2026-08-11&quot;:31.08},{&quot;2026-08-12&quot;:31.69},{&quot;2026-08-13&quot;:31.85},{&quot;2026-08-14&quot;:31.7},{&quot;2026-08-15&quot;:32.05},{&quot;2026-08-16&quot;:32.05},{&quot;2026-08-17&quot;:31.32},{&quot;2026-08-18&quot;:30.72},{&quot;2026-08-19&quot;:30.41},{&quot;2026-08-20&quot;:30.41},{&quot;2026-08-21&quot;:30.53},{&quot;2026-08-22&quot;:31.1},{&quot;2026-08-23&quot;:30.78},{&quot;2026-08-24&quot;:30.78},{&quot;2026-08-25&quot;:30.78},{&quot;2026-08-26&quot;:29.97},{&quot;2026-08-27&quot;:29.81},{&quot;2026-08-28&quot;:30.21},{&quot;2026-08-29&quot;:30.21},{&quot;2026-08-30&quot;:30.6},{&quot;2026-08-31&quot;:30.53},{&quot;2026-09-01&quot;:30.53},{&quot;2026-09-02&quot;:31.16},{&quot;2026-09-03&quot;:31.16},{&quot;2026-09-04&quot;:31.36},{&quot;2026-09-05&quot;:31.31},{&quot;2026-09-06&quot;:31.27},{&quot;2026-09-07&quot;:31.27},{&quot;2026-09-08&quot;:31.46},{&quot;2026-09-09&quot;:31.41},{&quot;2026-09-10&quot;:31.62},{&quot;2026-09-11&quot;:32.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="112556"
  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-hoc 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">
            Delighted Halfling
        </span>


      </div>

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

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

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

        <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">
            Delighted Halfling
        </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 — Halfling Citizen</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="Delighted Halfling" src="https://cards.scryfall.io/large/front/a/a/aad18e0d-ccf9-4d86-945b-36991558fd3e.jpg?1784632206" />
    </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">
                $27.70
              </span>

            </div>
          </div>

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

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

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Foil</span>
              <span class="text-lg font-medium text-nine-white">$21.00</span>
              <span class="text-xs text-grey-text">Credit: $27.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-08-07&quot;:38.71},{&quot;2026-08-08&quot;:28.09},{&quot;2026-08-09&quot;:23.11},{&quot;2026-08-10&quot;:24.14},{&quot;2026-08-11&quot;:24.81},{&quot;2026-08-12&quot;:24.9},{&quot;2026-08-13&quot;:25.87},{&quot;2026-08-14&quot;:25.81},{&quot;2026-08-15&quot;:25.45},{&quot;2026-08-16&quot;:26.07},{&quot;2026-08-17&quot;:26.81},{&quot;2026-08-18&quot;:27.64},{&quot;2026-08-19&quot;:28.47},{&quot;2026-08-20&quot;:29.53},{&quot;2026-08-21&quot;:29.93},{&quot;2026-08-22&quot;:30.1},{&quot;2026-08-23&quot;:30.26},{&quot;2026-08-24&quot;:30.26},{&quot;2026-08-25&quot;:30.55},{&quot;2026-08-26&quot;:30.59},{&quot;2026-08-27&quot;:30.48},{&quot;2026-08-28&quot;:29.85},{&quot;2026-08-29&quot;:29.85},{&quot;2026-08-30&quot;:30.09},{&quot;2026-08-31&quot;:30.09},{&quot;2026-09-01&quot;:30.0},{&quot;2026-09-02&quot;:30.34},{&quot;2026-09-03&quot;:30.44},{&quot;2026-09-04&quot;:30.67},{&quot;2026-09-05&quot;:30.79},{&quot;2026-09-06&quot;:30.92},{&quot;2026-09-07&quot;:31.12},{&quot;2026-09-08&quot;:30.82},{&quot;2026-09-09&quot;:31.06},{&quot;2026-09-10&quot;:31.02},{&quot;2026-09-11&quot;:31.41}],&quot;normal&quot;:[{&quot;2026-08-07&quot;:31.24},{&quot;2026-08-08&quot;:30.49},{&quot;2026-08-09&quot;:29.93},{&quot;2026-08-10&quot;:29.93},{&quot;2026-08-11&quot;:29.93},{&quot;2026-08-12&quot;:29.55},{&quot;2026-08-13&quot;:28.53},{&quot;2026-08-14&quot;:27.61},{&quot;2026-08-15&quot;:25.11},{&quot;2026-08-16&quot;:24.79},{&quot;2026-08-17&quot;:25.17},{&quot;2026-08-18&quot;:26.55},{&quot;2026-08-19&quot;:26.77},{&quot;2026-08-20&quot;:27.34},{&quot;2026-08-21&quot;:27.76},{&quot;2026-08-22&quot;:28.27},{&quot;2026-08-23&quot;:29.23},{&quot;2026-08-24&quot;:29.37},{&quot;2026-08-25&quot;:29.2},{&quot;2026-08-26&quot;:28.93},{&quot;2026-08-27&quot;:28.7},{&quot;2026-08-28&quot;:28.59},{&quot;2026-08-29&quot;:28.59},{&quot;2026-08-30&quot;:27.73},{&quot;2026-08-31&quot;:27.67},{&quot;2026-09-01&quot;:27.22},{&quot;2026-09-02&quot;:27.2},{&quot;2026-09-03&quot;:26.96},{&quot;2026-09-04&quot;:27.3},{&quot;2026-09-05&quot;:27.63},{&quot;2026-09-06&quot;:28.2},{&quot;2026-09-07&quot;:28.46},{&quot;2026-09-08&quot;:28.67},{&quot;2026-09-09&quot;:28.48},{&quot;2026-09-10&quot;:27.92},{&quot;2026-09-11&quot;:27.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="98216"
  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-pza 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">
            Doubling Season
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $30.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="Doubling Season" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/c/8c2d6fde-5c3b-48c3-828c-832f00570824.jpg?1783904178" />

        <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">
            Doubling Season
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-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="Doubling Season" src="https://cards.scryfall.io/large/front/8/c/8c2d6fde-5c3b-48c3-828c-832f00570824.jpg?1783904178" />
    </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">
                $30.78
              </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">
                $32.00
              </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">$22.00</span>
              <span class="text-xs text-grey-text">Credit: $28.60</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-11&quot;:33.21},{&quot;2026-06-12&quot;:32.98},{&quot;2026-06-13&quot;:32.67},{&quot;2026-06-14&quot;:32.62},{&quot;2026-06-15&quot;:32.54},{&quot;2026-06-16&quot;:31.69},{&quot;2026-06-17&quot;:31.69},{&quot;2026-06-18&quot;:31.77},{&quot;2026-06-19&quot;:31.57},{&quot;2026-06-20&quot;:31.57},{&quot;2026-06-21&quot;:31.55},{&quot;2026-06-22&quot;:30.8},{&quot;2026-06-23&quot;:30.43},{&quot;2026-06-24&quot;:30.48},{&quot;2026-06-25&quot;:30.4},{&quot;2026-06-26&quot;:30.55},{&quot;2026-06-27&quot;:30.54},{&quot;2026-06-28&quot;:30.38},{&quot;2026-06-29&quot;:30.36},{&quot;2026-06-30&quot;:30.37},{&quot;2026-07-01&quot;:29.99},{&quot;2026-07-02&quot;:29.83},{&quot;2026-07-03&quot;:29.83},{&quot;2026-07-04&quot;:29.81},{&quot;2026-07-05&quot;:30.06},{&quot;2026-07-06&quot;:30.0},{&quot;2026-07-07&quot;:29.92},{&quot;2026-07-08&quot;:30.2},{&quot;2026-07-09&quot;:30.08},{&quot;2026-07-10&quot;:29.74},{&quot;2026-07-11&quot;:30.12},{&quot;2026-07-12&quot;:30.31},{&quot;2026-07-13&quot;:30.31},{&quot;2026-07-14&quot;:30.41},{&quot;2026-07-15&quot;:30.46},{&quot;2026-07-16&quot;:30.46},{&quot;2026-07-17&quot;:30.64},{&quot;2026-07-18&quot;:30.46},{&quot;2026-07-19&quot;:30.41},{&quot;2026-07-20&quot;:30.51},{&quot;2026-07-21&quot;:31.02},{&quot;2026-07-23&quot;:30.94},{&quot;2026-07-25&quot;:30.93},{&quot;2026-07-26&quot;:30.96},{&quot;2026-07-27&quot;:31.3},{&quot;2026-07-28&quot;:31.51},{&quot;2026-07-29&quot;:31.51},{&quot;2026-07-30&quot;:31.46},{&quot;2026-07-31&quot;:31.78},{&quot;2026-08-01&quot;:31.78},{&quot;2026-08-02&quot;:32.08},{&quot;2026-08-03&quot;:31.8},{&quot;2026-08-04&quot;:31.77},{&quot;2026-08-05&quot;:31.77},{&quot;2026-08-07&quot;:31.89},{&quot;2026-08-08&quot;:32.29},{&quot;2026-08-09&quot;:32.18},{&quot;2026-08-10&quot;:32.09},{&quot;2026-08-11&quot;:32.09},{&quot;2026-08-12&quot;:31.9},{&quot;2026-08-13&quot;:31.9},{&quot;2026-08-14&quot;:32.05},{&quot;2026-08-15&quot;:32.02},{&quot;2026-08-16&quot;:32.27},{&quot;2026-08-17&quot;:32.06},{&quot;2026-08-18&quot;:32.1},{&quot;2026-08-19&quot;:31.82},{&quot;2026-08-20&quot;:31.82},{&quot;2026-08-21&quot;:31.84},{&quot;2026-08-22&quot;:31.84},{&quot;2026-08-23&quot;:31.68},{&quot;2026-08-24&quot;:31.23},{&quot;2026-08-25&quot;:31.23},{&quot;2026-08-26&quot;:31.55},{&quot;2026-08-27&quot;:31.64},{&quot;2026-08-28&quot;:31.42},{&quot;2026-08-29&quot;:31.42},{&quot;2026-08-30&quot;:31.57},{&quot;2026-08-31&quot;:31.57},{&quot;2026-09-01&quot;:31.57},{&quot;2026-09-02&quot;:31.72},{&quot;2026-09-03&quot;:31.72},{&quot;2026-09-04&quot;:31.54},{&quot;2026-09-05&quot;:31.98},{&quot;2026-09-06&quot;:31.82},{&quot;2026-09-07&quot;:32.0},{&quot;2026-09-08&quot;:31.92},{&quot;2026-09-09&quot;:31.92},{&quot;2026-09-10&quot;:31.95},{&quot;2026-09-11&quot;:32.0}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:28.27},{&quot;2026-06-12&quot;:27.4},{&quot;2026-06-13&quot;:26.97},{&quot;2026-06-14&quot;:26.47},{&quot;2026-06-15&quot;:26.33},{&quot;2026-06-16&quot;:26.59},{&quot;2026-06-17&quot;:27.3},{&quot;2026-06-18&quot;:27.8},{&quot;2026-06-19&quot;:28.18},{&quot;2026-06-20&quot;:27.63},{&quot;2026-06-21&quot;:27.31},{&quot;2026-06-22&quot;:28.34},{&quot;2026-06-23&quot;:28.03},{&quot;2026-06-24&quot;:28.38},{&quot;2026-06-25&quot;:27.4},{&quot;2026-06-26&quot;:27.66},{&quot;2026-06-27&quot;:27.17},{&quot;2026-06-28&quot;:27.27},{&quot;2026-06-29&quot;:27.12},{&quot;2026-06-30&quot;:27.97},{&quot;2026-07-01&quot;:27.85},{&quot;2026-07-02&quot;:27.44},{&quot;2026-07-03&quot;:26.39},{&quot;2026-07-04&quot;:27.14},{&quot;2026-07-05&quot;:26.98},{&quot;2026-07-06&quot;:27.21},{&quot;2026-07-07&quot;:27.46},{&quot;2026-07-08&quot;:28.32},{&quot;2026-07-09&quot;:27.96},{&quot;2026-07-10&quot;:27.53},{&quot;2026-07-11&quot;:28.06},{&quot;2026-07-12&quot;:28.15},{&quot;2026-07-13&quot;:28.0},{&quot;2026-07-14&quot;:28.34},{&quot;2026-07-15&quot;:28.61},{&quot;2026-07-16&quot;:28.66},{&quot;2026-07-17&quot;:29.04},{&quot;2026-07-18&quot;:30.15},{&quot;2026-07-19&quot;:30.11},{&quot;2026-07-20&quot;:30.82},{&quot;2026-07-21&quot;:29.1},{&quot;2026-07-23&quot;:28.79},{&quot;2026-07-25&quot;:28.7},{&quot;2026-07-26&quot;:29.14},{&quot;2026-07-27&quot;:30.55},{&quot;2026-07-28&quot;:30.24},{&quot;2026-07-29&quot;:29.75},{&quot;2026-07-30&quot;:29.95},{&quot;2026-07-31&quot;:30.01},{&quot;2026-08-01&quot;:29.57},{&quot;2026-08-02&quot;:29.6},{&quot;2026-08-03&quot;:29.45},{&quot;2026-08-04&quot;:29.16},{&quot;2026-08-05&quot;:29.54},{&quot;2026-08-07&quot;:31.11},{&quot;2026-08-08&quot;:31.13},{&quot;2026-08-09&quot;:31.29},{&quot;2026-08-10&quot;:31.18},{&quot;2026-08-11&quot;:30.82},{&quot;2026-08-12&quot;:31.03},{&quot;2026-08-13&quot;:29.87},{&quot;2026-08-14&quot;:29.0},{&quot;2026-08-15&quot;:28.95},{&quot;2026-08-16&quot;:29.25},{&quot;2026-08-17&quot;:29.81},{&quot;2026-08-18&quot;:29.78},{&quot;2026-08-19&quot;:30.09},{&quot;2026-08-20&quot;:30.09},{&quot;2026-08-21&quot;:30.29},{&quot;2026-08-22&quot;:30.27},{&quot;2026-08-23&quot;:29.83},{&quot;2026-08-24&quot;:29.52},{&quot;2026-08-25&quot;:29.52},{&quot;2026-08-26&quot;:28.96},{&quot;2026-08-27&quot;:28.69},{&quot;2026-08-28&quot;:28.52},{&quot;2026-08-29&quot;:28.52},{&quot;2026-08-30&quot;:28.78},{&quot;2026-08-31&quot;:29.02},{&quot;2026-09-01&quot;:29.02},{&quot;2026-09-02&quot;:29.8},{&quot;2026-09-03&quot;:29.63},{&quot;2026-09-04&quot;:30.08},{&quot;2026-09-05&quot;:30.4},{&quot;2026-09-06&quot;:30.51},{&quot;2026-09-07&quot;:30.41},{&quot;2026-09-08&quot;:30.69},{&quot;2026-09-09&quot;:30.58},{&quot;2026-09-10&quot;:30.58},{&quot;2026-09-11&quot;:30.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="53309"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb2 ss-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">
            Natural Order
        </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">
            2 owned
          </div>

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

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

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

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

        <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">
            Natural Order
        </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">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><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="Natural Order" src="https://cards.scryfall.io/large/front/b/c/bce00c15-6f06-42c0-b72c-5d94e35a6f57.jpg?1783910556" />
    </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">
                $14.52
              </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">
                $30.40
              </span>

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$11.50</span>
              <span class="text-xs text-grey-text">Credit: $14.95</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">$37.50</span>
              <span class="text-xs text-grey-text">Credit: $48.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-11&quot;:29.91},{&quot;2026-06-12&quot;:29.91},{&quot;2026-06-13&quot;:29.91},{&quot;2026-06-14&quot;:29.91},{&quot;2026-06-15&quot;:29.91},{&quot;2026-06-16&quot;:29.91},{&quot;2026-06-17&quot;:29.91},{&quot;2026-06-18&quot;:29.91},{&quot;2026-06-19&quot;:29.91},{&quot;2026-06-20&quot;:29.91},{&quot;2026-06-21&quot;:29.91},{&quot;2026-06-22&quot;:29.91},{&quot;2026-06-23&quot;:29.91},{&quot;2026-06-24&quot;:29.91},{&quot;2026-06-25&quot;:29.91},{&quot;2026-06-26&quot;:29.91},{&quot;2026-06-27&quot;:29.91},{&quot;2026-06-28&quot;:29.91},{&quot;2026-06-29&quot;:29.91},{&quot;2026-06-30&quot;:29.91},{&quot;2026-07-01&quot;:29.91},{&quot;2026-07-02&quot;:29.91},{&quot;2026-07-03&quot;:29.91},{&quot;2026-07-04&quot;:29.91},{&quot;2026-07-05&quot;:29.91},{&quot;2026-07-06&quot;:29.91},{&quot;2026-07-07&quot;:29.91},{&quot;2026-07-08&quot;:29.91},{&quot;2026-07-09&quot;:29.91},{&quot;2026-07-10&quot;:29.91},{&quot;2026-07-11&quot;:29.91},{&quot;2026-07-12&quot;:30.17},{&quot;2026-07-13&quot;:30.17},{&quot;2026-07-14&quot;:30.23},{&quot;2026-07-15&quot;:30.23},{&quot;2026-07-16&quot;:30.28},{&quot;2026-07-17&quot;:30.34},{&quot;2026-07-18&quot;:30.54},{&quot;2026-07-19&quot;:30.54},{&quot;2026-07-20&quot;:30.54},{&quot;2026-07-21&quot;:30.54},{&quot;2026-07-23&quot;:30.71},{&quot;2026-07-25&quot;:30.71},{&quot;2026-07-26&quot;:30.71},{&quot;2026-07-27&quot;:30.71},{&quot;2026-07-28&quot;:30.71},{&quot;2026-07-29&quot;:30.71},{&quot;2026-07-30&quot;:30.71},{&quot;2026-07-31&quot;:31.03},{&quot;2026-08-01&quot;:31.03},{&quot;2026-08-02&quot;:31.03},{&quot;2026-08-03&quot;:30.84},{&quot;2026-08-04&quot;:30.84},{&quot;2026-08-05&quot;:30.84},{&quot;2026-08-07&quot;:30.84},{&quot;2026-08-08&quot;:30.84},{&quot;2026-08-09&quot;:30.84},{&quot;2026-08-10&quot;:30.84},{&quot;2026-08-11&quot;:30.84},{&quot;2026-08-12&quot;:30.84},{&quot;2026-08-13&quot;:30.84},{&quot;2026-08-14&quot;:30.84},{&quot;2026-08-15&quot;:30.84},{&quot;2026-08-16&quot;:30.84},{&quot;2026-08-17&quot;:30.84},{&quot;2026-08-18&quot;:30.84},{&quot;2026-08-19&quot;:30.84},{&quot;2026-08-20&quot;:30.84},{&quot;2026-08-21&quot;:30.84},{&quot;2026-08-22&quot;:30.84},{&quot;2026-08-23&quot;:30.84},{&quot;2026-08-24&quot;:30.84},{&quot;2026-08-25&quot;:30.84},{&quot;2026-08-26&quot;:30.24},{&quot;2026-08-27&quot;:30.24},{&quot;2026-08-28&quot;:30.24},{&quot;2026-08-29&quot;:30.24},{&quot;2026-08-30&quot;:30.24},{&quot;2026-08-31&quot;:30.4},{&quot;2026-09-01&quot;:30.4},{&quot;2026-09-02&quot;:30.4},{&quot;2026-09-03&quot;:30.4},{&quot;2026-09-04&quot;:30.4},{&quot;2026-09-05&quot;:30.4},{&quot;2026-09-06&quot;:30.4},{&quot;2026-09-07&quot;:30.4},{&quot;2026-09-08&quot;:30.4},{&quot;2026-09-09&quot;:30.4},{&quot;2026-09-10&quot;:30.4},{&quot;2026-09-11&quot;:30.4}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:14.81},{&quot;2026-06-12&quot;:14.81},{&quot;2026-06-13&quot;:14.81},{&quot;2026-06-14&quot;:14.81},{&quot;2026-06-15&quot;:13.85},{&quot;2026-06-16&quot;:13.98},{&quot;2026-06-17&quot;:13.95},{&quot;2026-06-18&quot;:13.97},{&quot;2026-06-19&quot;:14.1},{&quot;2026-06-20&quot;:14.17},{&quot;2026-06-21&quot;:14.17},{&quot;2026-06-22&quot;:14.07},{&quot;2026-06-23&quot;:14.07},{&quot;2026-06-24&quot;:14.07},{&quot;2026-06-25&quot;:13.89},{&quot;2026-06-26&quot;:13.85},{&quot;2026-06-27&quot;:13.85},{&quot;2026-06-28&quot;:13.97},{&quot;2026-06-29&quot;:14.13},{&quot;2026-06-30&quot;:14.12},{&quot;2026-07-01&quot;:14.21},{&quot;2026-07-02&quot;:14.23},{&quot;2026-07-03&quot;:13.93},{&quot;2026-07-04&quot;:14.03},{&quot;2026-07-05&quot;:14.2},{&quot;2026-07-06&quot;:14.2},{&quot;2026-07-07&quot;:14.39},{&quot;2026-07-08&quot;:14.43},{&quot;2026-07-09&quot;:14.54},{&quot;2026-07-10&quot;:14.69},{&quot;2026-07-11&quot;:14.7},{&quot;2026-07-12&quot;:14.9},{&quot;2026-07-13&quot;:14.89},{&quot;2026-07-14&quot;:14.66},{&quot;2026-07-15&quot;:14.6},{&quot;2026-07-16&quot;:14.67},{&quot;2026-07-17&quot;:14.93},{&quot;2026-07-18&quot;:15.0},{&quot;2026-07-19&quot;:15.0},{&quot;2026-07-20&quot;:14.94},{&quot;2026-07-21&quot;:14.96},{&quot;2026-07-23&quot;:15.55},{&quot;2026-07-25&quot;:15.67},{&quot;2026-07-26&quot;:15.75},{&quot;2026-07-27&quot;:15.81},{&quot;2026-07-28&quot;:15.81},{&quot;2026-07-29&quot;:15.78},{&quot;2026-07-30&quot;:15.79},{&quot;2026-07-31&quot;:15.57},{&quot;2026-08-01&quot;:15.37},{&quot;2026-08-02&quot;:15.27},{&quot;2026-08-03&quot;:15.14},{&quot;2026-08-04&quot;:15.07},{&quot;2026-08-05&quot;:14.59},{&quot;2026-08-07&quot;:14.68},{&quot;2026-08-08&quot;:14.64},{&quot;2026-08-09&quot;:14.81},{&quot;2026-08-10&quot;:14.68},{&quot;2026-08-11&quot;:14.67},{&quot;2026-08-12&quot;:14.6},{&quot;2026-08-13&quot;:14.62},{&quot;2026-08-14&quot;:14.42},{&quot;2026-08-15&quot;:14.42},{&quot;2026-08-16&quot;:14.58},{&quot;2026-08-17&quot;:14.34},{&quot;2026-08-18&quot;:14.47},{&quot;2026-08-19&quot;:14.48},{&quot;2026-08-20&quot;:14.48},{&quot;2026-08-21&quot;:14.24},{&quot;2026-08-22&quot;:14.12},{&quot;2026-08-23&quot;:13.96},{&quot;2026-08-24&quot;:13.31},{&quot;2026-08-25&quot;:13.41},{&quot;2026-08-26&quot;:13.44},{&quot;2026-08-27&quot;:13.42},{&quot;2026-08-28&quot;:13.47},{&quot;2026-08-29&quot;:13.47},{&quot;2026-08-30&quot;:13.95},{&quot;2026-08-31&quot;:14.1},{&quot;2026-09-01&quot;:14.29},{&quot;2026-09-02&quot;:14.17},{&quot;2026-09-03&quot;:14.21},{&quot;2026-09-04&quot;:14.44},{&quot;2026-09-05&quot;:14.47},{&quot;2026-09-06&quot;:14.58},{&quot;2026-09-07&quot;:14.52},{&quot;2026-09-08&quot;:14.53},{&quot;2026-09-09&quot;:14.37},{&quot;2026-09-10&quot;:14.48},{&quot;2026-09-11&quot;:14.52}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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

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

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

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

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Mystic Forge
        </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">Artifact</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Mystic Forge" src="https://cards.scryfall.io/large/front/b/b/bbbfadff-43a1-4c46-9426-d3417715baae.jpg?1783919746" />
    </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">
                $8.58
              </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">
                $30.35
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:25.53},{&quot;2026-06-11&quot;:25.53},{&quot;2026-06-12&quot;:25.53},{&quot;2026-06-13&quot;:25.53},{&quot;2026-06-14&quot;:25.53},{&quot;2026-06-15&quot;:25.53},{&quot;2026-06-16&quot;:23.36},{&quot;2026-06-17&quot;:23.36},{&quot;2026-06-18&quot;:23.36},{&quot;2026-06-19&quot;:23.76},{&quot;2026-06-20&quot;:23.93},{&quot;2026-06-21&quot;:23.93},{&quot;2026-06-22&quot;:23.93},{&quot;2026-06-23&quot;:23.93},{&quot;2026-06-24&quot;:24.09},{&quot;2026-06-25&quot;:23.96},{&quot;2026-06-26&quot;:24.05},{&quot;2026-06-27&quot;:24.05},{&quot;2026-06-28&quot;:24.18},{&quot;2026-06-29&quot;:24.52},{&quot;2026-06-30&quot;:24.48},{&quot;2026-07-01&quot;:24.48},{&quot;2026-07-02&quot;:24.51},{&quot;2026-07-03&quot;:24.51},{&quot;2026-07-04&quot;:24.51},{&quot;2026-07-05&quot;:24.51},{&quot;2026-07-06&quot;:24.51},{&quot;2026-07-07&quot;:24.51},{&quot;2026-07-08&quot;:24.51},{&quot;2026-07-09&quot;:24.51},{&quot;2026-07-10&quot;:24.51},{&quot;2026-07-11&quot;:24.51},{&quot;2026-07-12&quot;:24.65},{&quot;2026-07-13&quot;:24.65},{&quot;2026-07-14&quot;:24.65},{&quot;2026-07-15&quot;:24.65},{&quot;2026-07-16&quot;:24.65},{&quot;2026-07-17&quot;:24.65},{&quot;2026-07-18&quot;:24.65},{&quot;2026-07-19&quot;:24.65},{&quot;2026-07-20&quot;:24.65},{&quot;2026-07-21&quot;:24.65},{&quot;2026-07-23&quot;:24.65},{&quot;2026-07-25&quot;:24.65},{&quot;2026-07-26&quot;:24.65},{&quot;2026-07-27&quot;:24.65},{&quot;2026-07-29&quot;:24.65},{&quot;2026-07-30&quot;:24.65},{&quot;2026-07-31&quot;:25.03},{&quot;2026-08-01&quot;:25.03},{&quot;2026-08-02&quot;:25.33},{&quot;2026-08-03&quot;:25.33},{&quot;2026-08-04&quot;:25.64},{&quot;2026-08-05&quot;:25.64},{&quot;2026-08-07&quot;:26.6},{&quot;2026-08-08&quot;:26.6},{&quot;2026-08-09&quot;:26.6},{&quot;2026-08-10&quot;:26.6},{&quot;2026-08-11&quot;:26.6},{&quot;2026-08-12&quot;:26.6},{&quot;2026-08-13&quot;:26.6},{&quot;2026-08-14&quot;:26.6},{&quot;2026-08-15&quot;:26.6},{&quot;2026-08-16&quot;:26.6},{&quot;2026-08-17&quot;:26.6},{&quot;2026-08-18&quot;:26.6},{&quot;2026-08-19&quot;:26.6},{&quot;2026-08-20&quot;:26.6},{&quot;2026-08-21&quot;:26.6},{&quot;2026-08-22&quot;:26.6},{&quot;2026-08-23&quot;:27.5},{&quot;2026-08-24&quot;:27.59},{&quot;2026-08-25&quot;:27.59},{&quot;2026-08-26&quot;:27.59},{&quot;2026-08-27&quot;:27.59},{&quot;2026-08-28&quot;:27.59},{&quot;2026-08-29&quot;:27.59},{&quot;2026-08-30&quot;:27.59},{&quot;2026-08-31&quot;:28.89},{&quot;2026-09-01&quot;:28.89},{&quot;2026-09-02&quot;:30.35},{&quot;2026-09-03&quot;:30.35},{&quot;2026-09-04&quot;:30.35},{&quot;2026-09-05&quot;:30.35},{&quot;2026-09-06&quot;:30.35},{&quot;2026-09-07&quot;:30.35},{&quot;2026-09-08&quot;:30.35},{&quot;2026-09-09&quot;:30.35},{&quot;2026-09-10&quot;:30.35},{&quot;2026-09-11&quot;:30.35}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:9.09},{&quot;2026-06-11&quot;:9.09},{&quot;2026-06-12&quot;:8.98},{&quot;2026-06-13&quot;:8.98},{&quot;2026-06-14&quot;:8.98},{&quot;2026-06-15&quot;:8.82},{&quot;2026-06-16&quot;:8.89},{&quot;2026-06-17&quot;:8.8},{&quot;2026-06-18&quot;:8.9},{&quot;2026-06-19&quot;:8.8},{&quot;2026-06-20&quot;:8.8},{&quot;2026-06-21&quot;:8.88},{&quot;2026-06-22&quot;:8.97},{&quot;2026-06-23&quot;:8.97},{&quot;2026-06-24&quot;:8.97},{&quot;2026-06-25&quot;:8.97},{&quot;2026-06-26&quot;:8.97},{&quot;2026-06-27&quot;:8.97},{&quot;2026-06-28&quot;:8.82},{&quot;2026-06-29&quot;:8.82},{&quot;2026-06-30&quot;:8.81},{&quot;2026-07-01&quot;:8.88},{&quot;2026-07-02&quot;:8.9},{&quot;2026-07-03&quot;:8.89},{&quot;2026-07-04&quot;:8.89},{&quot;2026-07-05&quot;:8.97},{&quot;2026-07-06&quot;:8.98},{&quot;2026-07-07&quot;:8.98},{&quot;2026-07-08&quot;:8.98},{&quot;2026-07-09&quot;:8.98},{&quot;2026-07-10&quot;:9.06},{&quot;2026-07-11&quot;:9.06},{&quot;2026-07-12&quot;:9.03},{&quot;2026-07-13&quot;:9.03},{&quot;2026-07-14&quot;:9.03},{&quot;2026-07-15&quot;:9.03},{&quot;2026-07-16&quot;:9.04},{&quot;2026-07-17&quot;:8.92},{&quot;2026-07-18&quot;:8.92},{&quot;2026-07-19&quot;:8.56},{&quot;2026-07-20&quot;:8.56},{&quot;2026-07-21&quot;:8.52},{&quot;2026-07-23&quot;:8.48},{&quot;2026-07-25&quot;:8.61},{&quot;2026-07-26&quot;:8.61},{&quot;2026-07-27&quot;:8.6},{&quot;2026-07-29&quot;:8.6},{&quot;2026-07-30&quot;:8.59},{&quot;2026-07-31&quot;:8.59},{&quot;2026-08-01&quot;:8.59},{&quot;2026-08-02&quot;:8.59},{&quot;2026-08-03&quot;:8.59},{&quot;2026-08-04&quot;:8.59},{&quot;2026-08-05&quot;:8.59},{&quot;2026-08-07&quot;:8.59},{&quot;2026-08-08&quot;:8.65},{&quot;2026-08-09&quot;:8.65},{&quot;2026-08-10&quot;:8.65},{&quot;2026-08-11&quot;:8.65},{&quot;2026-08-12&quot;:8.65},{&quot;2026-08-13&quot;:8.59},{&quot;2026-08-14&quot;:8.6},{&quot;2026-08-15&quot;:8.56},{&quot;2026-08-16&quot;:8.6},{&quot;2026-08-17&quot;:8.55},{&quot;2026-08-18&quot;:8.54},{&quot;2026-08-19&quot;:8.54},{&quot;2026-08-20&quot;:8.54},{&quot;2026-08-21&quot;:8.51},{&quot;2026-08-22&quot;:8.49},{&quot;2026-08-23&quot;:8.49},{&quot;2026-08-24&quot;:8.51},{&quot;2026-08-25&quot;:8.51},{&quot;2026-08-26&quot;:8.52},{&quot;2026-08-27&quot;:8.52},{&quot;2026-08-28&quot;:8.51},{&quot;2026-08-29&quot;:8.51},{&quot;2026-08-30&quot;:8.6},{&quot;2026-08-31&quot;:8.6},{&quot;2026-09-01&quot;:8.6},{&quot;2026-09-02&quot;:8.6},{&quot;2026-09-03&quot;:8.6},{&quot;2026-09-04&quot;:8.6},{&quot;2026-09-05&quot;:8.64},{&quot;2026-09-06&quot;:8.64},{&quot;2026-09-07&quot;:8.64},{&quot;2026-09-08&quot;:8.58},{&quot;2026-09-09&quot;:8.58},{&quot;2026-09-10&quot;:8.58},{&quot;2026-09-11&quot;:8.58}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Scroll Rack" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/f/dfaaa58d-89bb-4cb3-96a6-b480e6f6954e.jpg?1783928747" />

        <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">
            Scroll Rack
        </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">Artifact</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Scroll Rack" src="https://cards.scryfall.io/large/front/d/f/dfaaa58d-89bb-4cb3-96a6-b480e6f6954e.jpg?1783928747" />
    </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">
                $30.11
              </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.81
              </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">$22.00</span>
              <span class="text-xs text-grey-text">Credit: $28.60</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:32.05},{&quot;2026-06-14&quot;:32.31},{&quot;2026-06-15&quot;:32.6},{&quot;2026-06-16&quot;:32.6},{&quot;2026-06-17&quot;:32.9},{&quot;2026-06-18&quot;:32.9},{&quot;2026-06-19&quot;:32.75},{&quot;2026-06-20&quot;:32.75},{&quot;2026-06-21&quot;:33.06},{&quot;2026-06-22&quot;:33.06},{&quot;2026-06-23&quot;:33.06},{&quot;2026-06-24&quot;:33.06},{&quot;2026-06-25&quot;:33.06},{&quot;2026-06-26&quot;:33.06},{&quot;2026-06-27&quot;:33.06},{&quot;2026-06-28&quot;:33.06},{&quot;2026-06-29&quot;:33.06},{&quot;2026-06-30&quot;:33.06},{&quot;2026-07-01&quot;:33.06},{&quot;2026-07-02&quot;:33.06},{&quot;2026-07-03&quot;:33.06},{&quot;2026-07-04&quot;:33.67},{&quot;2026-07-05&quot;:33.67},{&quot;2026-07-06&quot;:33.67},{&quot;2026-07-07&quot;:34.06},{&quot;2026-07-08&quot;:34.0},{&quot;2026-07-09&quot;:34.0},{&quot;2026-07-10&quot;:34.0},{&quot;2026-07-11&quot;:34.0},{&quot;2026-07-12&quot;:34.0},{&quot;2026-07-13&quot;:34.28},{&quot;2026-07-14&quot;:34.11},{&quot;2026-07-15&quot;:34.11},{&quot;2026-07-16&quot;:34.11},{&quot;2026-07-17&quot;:34.11},{&quot;2026-07-18&quot;:34.11},{&quot;2026-07-19&quot;:34.11},{&quot;2026-07-20&quot;:34.11},{&quot;2026-07-21&quot;:34.11},{&quot;2026-07-22&quot;:34.11},{&quot;2026-07-23&quot;:34.11},{&quot;2026-07-24&quot;:34.11},{&quot;2026-07-25&quot;:34.11},{&quot;2026-07-26&quot;:34.11},{&quot;2026-07-27&quot;:34.11},{&quot;2026-07-28&quot;:34.11},{&quot;2026-07-29&quot;:34.11},{&quot;2026-07-30&quot;:34.11},{&quot;2026-07-31&quot;:34.11},{&quot;2026-08-01&quot;:33.94},{&quot;2026-08-02&quot;:33.94},{&quot;2026-08-03&quot;:33.94},{&quot;2026-08-04&quot;:33.94},{&quot;2026-08-05&quot;:33.94},{&quot;2026-08-07&quot;:33.94},{&quot;2026-08-08&quot;:33.57},{&quot;2026-08-09&quot;:33.57},{&quot;2026-08-10&quot;:33.57},{&quot;2026-08-11&quot;:33.57},{&quot;2026-08-12&quot;:33.57},{&quot;2026-08-13&quot;:33.57},{&quot;2026-08-14&quot;:33.57},{&quot;2026-08-15&quot;:33.57},{&quot;2026-08-16&quot;:33.57},{&quot;2026-08-17&quot;:33.61},{&quot;2026-08-18&quot;:33.61},{&quot;2026-08-19&quot;:33.26},{&quot;2026-08-20&quot;:33.26},{&quot;2026-08-21&quot;:33.26},{&quot;2026-08-22&quot;:33.26},{&quot;2026-08-23&quot;:33.26},{&quot;2026-08-24&quot;:33.26},{&quot;2026-08-25&quot;:33.26},{&quot;2026-08-26&quot;:33.26},{&quot;2026-08-27&quot;:33.26},{&quot;2026-08-28&quot;:33.55},{&quot;2026-08-29&quot;:33.55},{&quot;2026-08-30&quot;:33.57},{&quot;2026-08-31&quot;:33.57},{&quot;2026-09-01&quot;:33.57},{&quot;2026-09-02&quot;:33.57},{&quot;2026-09-03&quot;:33.64},{&quot;2026-09-04&quot;:33.64},{&quot;2026-09-05&quot;:33.64},{&quot;2026-09-06&quot;:33.64},{&quot;2026-09-07&quot;:33.64},{&quot;2026-09-08&quot;:33.64},{&quot;2026-09-09&quot;:33.64},{&quot;2026-09-10&quot;:33.64},{&quot;2026-09-11&quot;:33.81}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:32.75},{&quot;2026-06-14&quot;:33.22},{&quot;2026-06-15&quot;:33.3},{&quot;2026-06-16&quot;:33.61},{&quot;2026-06-17&quot;:34.0},{&quot;2026-06-18&quot;:34.55},{&quot;2026-06-19&quot;:34.17},{&quot;2026-06-20&quot;:33.79},{&quot;2026-06-21&quot;:34.15},{&quot;2026-06-22&quot;:35.54},{&quot;2026-06-23&quot;:35.68},{&quot;2026-06-24&quot;:35.44},{&quot;2026-06-25&quot;:35.18},{&quot;2026-06-26&quot;:34.47},{&quot;2026-06-27&quot;:34.47},{&quot;2026-06-28&quot;:34.31},{&quot;2026-06-29&quot;:33.97},{&quot;2026-06-30&quot;:34.19},{&quot;2026-07-01&quot;:33.98},{&quot;2026-07-02&quot;:33.98},{&quot;2026-07-03&quot;:33.51},{&quot;2026-07-04&quot;:32.87},{&quot;2026-07-05&quot;:32.9},{&quot;2026-07-06&quot;:32.56},{&quot;2026-07-07&quot;:32.44},{&quot;2026-07-08&quot;:33.35},{&quot;2026-07-09&quot;:33.29},{&quot;2026-07-10&quot;:33.6},{&quot;2026-07-11&quot;:33.92},{&quot;2026-07-12&quot;:33.84},{&quot;2026-07-13&quot;:33.45},{&quot;2026-07-14&quot;:33.26},{&quot;2026-07-15&quot;:33.26},{&quot;2026-07-16&quot;:33.21},{&quot;2026-07-17&quot;:33.21},{&quot;2026-07-18&quot;:32.87},{&quot;2026-07-19&quot;:32.05},{&quot;2026-07-20&quot;:32.45},{&quot;2026-07-21&quot;:33.48},{&quot;2026-07-22&quot;:33.44},{&quot;2026-07-23&quot;:33.45},{&quot;2026-07-24&quot;:33.42},{&quot;2026-07-25&quot;:33.15},{&quot;2026-07-26&quot;:33.46},{&quot;2026-07-27&quot;:33.44},{&quot;2026-07-28&quot;:34.05},{&quot;2026-07-29&quot;:34.8},{&quot;2026-07-30&quot;:34.44},{&quot;2026-07-31&quot;:34.11},{&quot;2026-08-01&quot;:34.11},{&quot;2026-08-02&quot;:34.63},{&quot;2026-08-03&quot;:34.32},{&quot;2026-08-04&quot;:34.78},{&quot;2026-08-05&quot;:34.75},{&quot;2026-08-07&quot;:34.43},{&quot;2026-08-08&quot;:34.33},{&quot;2026-08-09&quot;:34.54},{&quot;2026-08-10&quot;:34.54},{&quot;2026-08-11&quot;:34.57},{&quot;2026-08-12&quot;:34.49},{&quot;2026-08-13&quot;:34.5},{&quot;2026-08-14&quot;:35.06},{&quot;2026-08-15&quot;:34.84},{&quot;2026-08-16&quot;:34.11},{&quot;2026-08-17&quot;:33.96},{&quot;2026-08-18&quot;:33.29},{&quot;2026-08-19&quot;:32.77},{&quot;2026-08-20&quot;:32.6},{&quot;2026-08-21&quot;:32.09},{&quot;2026-08-22&quot;:31.56},{&quot;2026-08-23&quot;:31.08},{&quot;2026-08-24&quot;:30.86},{&quot;2026-08-25&quot;:30.69},{&quot;2026-08-26&quot;:31.15},{&quot;2026-08-27&quot;:31.15},{&quot;2026-08-28&quot;:30.9},{&quot;2026-08-29&quot;:30.9},{&quot;2026-08-30&quot;:30.88},{&quot;2026-08-31&quot;:30.64},{&quot;2026-09-01&quot;:30.64},{&quot;2026-09-02&quot;:31.19},{&quot;2026-09-03&quot;:31.04},{&quot;2026-09-04&quot;:31.36},{&quot;2026-09-05&quot;:31.22},{&quot;2026-09-06&quot;:31.22},{&quot;2026-09-07&quot;:31.16},{&quot;2026-09-08&quot;:30.95},{&quot;2026-09-09&quot;:30.4},{&quot;2026-09-10&quot;:30.43},{&quot;2026-09-11&quot;:30.11}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Purphoros, God of the Forge" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/f/b/fbd25e79-d29b-4b51-9653-3932c980b931.jpg?1783906391" />

        <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">
            Purphoros, God of the Forge
        </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 Creature — God</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Purphoros, God of the Forge" src="https://cards.scryfall.io/large/front/f/b/fbd25e79-d29b-4b51-9653-3932c980b931.jpg?1783906391" />
    </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.98
              </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">
                $156.91
              </span>

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$21.00</span>
              <span class="text-xs text-grey-text">Credit: $27.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;:105.91},{&quot;2026-06-14&quot;:107.17},{&quot;2026-06-15&quot;:107.17},{&quot;2026-06-16&quot;:108.06},{&quot;2026-06-17&quot;:109.31},{&quot;2026-06-18&quot;:109.31},{&quot;2026-06-19&quot;:110.32},{&quot;2026-06-20&quot;:110.32},{&quot;2026-06-21&quot;:110.32},{&quot;2026-06-22&quot;:112.23},{&quot;2026-06-23&quot;:112.23},{&quot;2026-06-24&quot;:112.23},{&quot;2026-06-25&quot;:114.55},{&quot;2026-06-26&quot;:114.72},{&quot;2026-06-27&quot;:114.72},{&quot;2026-06-28&quot;:114.72},{&quot;2026-06-29&quot;:114.72},{&quot;2026-06-30&quot;:114.72},{&quot;2026-07-01&quot;:114.72},{&quot;2026-07-02&quot;:117.94},{&quot;2026-07-03&quot;:114.45},{&quot;2026-07-04&quot;:114.45},{&quot;2026-07-05&quot;:114.45},{&quot;2026-07-06&quot;:115.74},{&quot;2026-07-07&quot;:115.56},{&quot;2026-07-08&quot;:115.56},{&quot;2026-07-09&quot;:115.56},{&quot;2026-07-10&quot;:116.8},{&quot;2026-07-11&quot;:116.8},{&quot;2026-07-12&quot;:116.8},{&quot;2026-07-13&quot;:118.39},{&quot;2026-07-14&quot;:120.28},{&quot;2026-07-15&quot;:120.28},{&quot;2026-07-16&quot;:120.28},{&quot;2026-07-17&quot;:120.28},{&quot;2026-07-18&quot;:122.32},{&quot;2026-07-19&quot;:122.32},{&quot;2026-07-20&quot;:122.32},{&quot;2026-07-21&quot;:122.32},{&quot;2026-07-22&quot;:121.88},{&quot;2026-07-23&quot;:121.88},{&quot;2026-07-24&quot;:121.88},{&quot;2026-07-25&quot;:121.88},{&quot;2026-07-26&quot;:121.88},{&quot;2026-07-27&quot;:123.83},{&quot;2026-07-28&quot;:123.83},{&quot;2026-07-29&quot;:125.82},{&quot;2026-07-30&quot;:125.82},{&quot;2026-07-31&quot;:125.82},{&quot;2026-08-01&quot;:125.82},{&quot;2026-08-02&quot;:129.41},{&quot;2026-08-03&quot;:129.41},{&quot;2026-08-04&quot;:131.88},{&quot;2026-08-05&quot;:133.94},{&quot;2026-08-07&quot;:138.31},{&quot;2026-08-08&quot;:138.31},{&quot;2026-08-09&quot;:138.31},{&quot;2026-08-10&quot;:138.31},{&quot;2026-08-11&quot;:140.82},{&quot;2026-08-12&quot;:140.82},{&quot;2026-08-13&quot;:140.82},{&quot;2026-08-14&quot;:142.59},{&quot;2026-08-15&quot;:142.59},{&quot;2026-08-16&quot;:144.35},{&quot;2026-08-17&quot;:144.35},{&quot;2026-08-18&quot;:144.35},{&quot;2026-08-19&quot;:144.35},{&quot;2026-08-20&quot;:144.35},{&quot;2026-08-21&quot;:144.35},{&quot;2026-08-22&quot;:145.94},{&quot;2026-08-23&quot;:145.94},{&quot;2026-08-24&quot;:145.94},{&quot;2026-08-25&quot;:145.94},{&quot;2026-08-26&quot;:148.14},{&quot;2026-08-27&quot;:149.15},{&quot;2026-08-28&quot;:149.15},{&quot;2026-08-29&quot;:149.15},{&quot;2026-08-30&quot;:153.07},{&quot;2026-08-31&quot;:153.07},{&quot;2026-09-01&quot;:153.07},{&quot;2026-09-02&quot;:153.07},{&quot;2026-09-03&quot;:155.67},{&quot;2026-09-04&quot;:155.67},{&quot;2026-09-05&quot;:154.42},{&quot;2026-09-06&quot;:154.42},{&quot;2026-09-07&quot;:156.91},{&quot;2026-09-08&quot;:156.91},{&quot;2026-09-09&quot;:156.91},{&quot;2026-09-10&quot;:156.91},{&quot;2026-09-11&quot;:156.91}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:30.27},{&quot;2026-06-14&quot;:29.74},{&quot;2026-06-15&quot;:29.68},{&quot;2026-06-16&quot;:29.91},{&quot;2026-06-17&quot;:29.54},{&quot;2026-06-18&quot;:29.67},{&quot;2026-06-19&quot;:29.56},{&quot;2026-06-20&quot;:29.15},{&quot;2026-06-21&quot;:29.08},{&quot;2026-06-22&quot;:29.15},{&quot;2026-06-23&quot;:30.14},{&quot;2026-06-24&quot;:30.67},{&quot;2026-06-25&quot;:30.15},{&quot;2026-06-26&quot;:30.48},{&quot;2026-06-27&quot;:30.17},{&quot;2026-06-28&quot;:30.67},{&quot;2026-06-29&quot;:30.81},{&quot;2026-06-30&quot;:30.81},{&quot;2026-07-01&quot;:31.27},{&quot;2026-07-02&quot;:31.01},{&quot;2026-07-03&quot;:29.75},{&quot;2026-07-04&quot;:29.08},{&quot;2026-07-05&quot;:27.49},{&quot;2026-07-06&quot;:27.22},{&quot;2026-07-07&quot;:26.95},{&quot;2026-07-08&quot;:27.11},{&quot;2026-07-09&quot;:26.7},{&quot;2026-07-10&quot;:26.92},{&quot;2026-07-11&quot;:26.84},{&quot;2026-07-12&quot;:26.83},{&quot;2026-07-13&quot;:27.11},{&quot;2026-07-14&quot;:27.65},{&quot;2026-07-15&quot;:28.22},{&quot;2026-07-16&quot;:28.87},{&quot;2026-07-17&quot;:29.36},{&quot;2026-07-18&quot;:29.88},{&quot;2026-07-19&quot;:29.7},{&quot;2026-07-20&quot;:29.38},{&quot;2026-07-21&quot;:29.45},{&quot;2026-07-22&quot;:29.62},{&quot;2026-07-23&quot;:29.62},{&quot;2026-07-24&quot;:29.16},{&quot;2026-07-25&quot;:29.11},{&quot;2026-07-26&quot;:29.91},{&quot;2026-07-27&quot;:29.89},{&quot;2026-07-28&quot;:29.89},{&quot;2026-07-29&quot;:30.29},{&quot;2026-07-30&quot;:30.45},{&quot;2026-07-31&quot;:30.68},{&quot;2026-08-01&quot;:30.64},{&quot;2026-08-02&quot;:31.08},{&quot;2026-08-03&quot;:31.06},{&quot;2026-08-04&quot;:30.94},{&quot;2026-08-05&quot;:31.25},{&quot;2026-08-07&quot;:31.64},{&quot;2026-08-08&quot;:31.64},{&quot;2026-08-09&quot;:31.64},{&quot;2026-08-10&quot;:31.43},{&quot;2026-08-11&quot;:31.45},{&quot;2026-08-12&quot;:31.46},{&quot;2026-08-13&quot;:31.51},{&quot;2026-08-14&quot;:31.34},{&quot;2026-08-15&quot;:31.35},{&quot;2026-08-16&quot;:31.22},{&quot;2026-08-17&quot;:31.25},{&quot;2026-08-18&quot;:31.28},{&quot;2026-08-19&quot;:30.89},{&quot;2026-08-20&quot;:30.89},{&quot;2026-08-21&quot;:30.61},{&quot;2026-08-22&quot;:30.52},{&quot;2026-08-23&quot;:30.23},{&quot;2026-08-24&quot;:30.23},{&quot;2026-08-25&quot;:29.78},{&quot;2026-08-26&quot;:30.19},{&quot;2026-08-27&quot;:30.19},{&quot;2026-08-28&quot;:30.33},{&quot;2026-08-29&quot;:30.33},{&quot;2026-08-30&quot;:29.76},{&quot;2026-08-31&quot;:29.76},{&quot;2026-09-01&quot;:29.86},{&quot;2026-09-02&quot;:29.86},{&quot;2026-09-03&quot;:29.65},{&quot;2026-09-04&quot;:29.93},{&quot;2026-09-05&quot;:30.0},{&quot;2026-09-06&quot;:30.03},{&quot;2026-09-07&quot;:30.03},{&quot;2026-09-08&quot;:30.03},{&quot;2026-09-09&quot;:30.02},{&quot;2026-09-10&quot;:30.06},{&quot;2026-09-11&quot;:29.98}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="41923"
  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">
            Otawara, Soaring City
        </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">
            2 owned
          </div>

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

          <span class="text-sm font-medium text-nine-white">
            $29.67
          </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="Otawara, Soaring City" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/8/486d7edc-d983-41f0-8b78-c99aecd72996.jpg?1783923816" />

        <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">
            Otawara, Soaring City
        </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="Otawara, Soaring City" src="https://cards.scryfall.io/large/front/4/8/486d7edc-d983-41f0-8b78-c99aecd72996.jpg?1783923816" />
    </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">
                $29.67
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-08&quot;:31.41},{&quot;2026-06-10&quot;:31.67},{&quot;2026-06-11&quot;:31.67},{&quot;2026-06-12&quot;:31.67},{&quot;2026-06-13&quot;:31.63},{&quot;2026-06-14&quot;:32.44},{&quot;2026-06-15&quot;:32.46},{&quot;2026-06-16&quot;:32.46},{&quot;2026-06-17&quot;:32.96},{&quot;2026-06-18&quot;:32.96},{&quot;2026-06-19&quot;:32.96},{&quot;2026-06-20&quot;:32.91},{&quot;2026-06-21&quot;:33.05},{&quot;2026-06-22&quot;:33.06},{&quot;2026-06-24&quot;:33.06},{&quot;2026-06-25&quot;:32.96},{&quot;2026-06-26&quot;:32.96},{&quot;2026-06-27&quot;:32.96},{&quot;2026-06-28&quot;:32.87},{&quot;2026-06-29&quot;:32.87},{&quot;2026-06-30&quot;:32.87},{&quot;2026-07-01&quot;:32.84},{&quot;2026-07-02&quot;:32.84},{&quot;2026-07-03&quot;:32.54},{&quot;2026-07-04&quot;:32.54},{&quot;2026-07-05&quot;:32.54},{&quot;2026-07-06&quot;:32.54},{&quot;2026-07-07&quot;:32.06},{&quot;2026-07-08&quot;:31.91},{&quot;2026-07-09&quot;:31.87},{&quot;2026-07-10&quot;:31.87},{&quot;2026-07-11&quot;:31.87},{&quot;2026-07-12&quot;:31.87},{&quot;2026-07-13&quot;:31.71},{&quot;2026-07-14&quot;:31.71},{&quot;2026-07-15&quot;:31.44},{&quot;2026-07-16&quot;:31.24},{&quot;2026-07-17&quot;:31.24},{&quot;2026-07-18&quot;:31.14},{&quot;2026-07-19&quot;:30.89},{&quot;2026-07-20&quot;:30.89},{&quot;2026-07-21&quot;:30.92},{&quot;2026-07-23&quot;:30.89},{&quot;2026-07-25&quot;:30.89},{&quot;2026-07-26&quot;:30.89},{&quot;2026-07-27&quot;:30.84},{&quot;2026-07-29&quot;:30.81},{&quot;2026-07-30&quot;:30.22},{&quot;2026-07-31&quot;:30.23},{&quot;2026-08-01&quot;:30.23},{&quot;2026-08-02&quot;:30.23},{&quot;2026-08-03&quot;:30.15},{&quot;2026-08-04&quot;:30.15},{&quot;2026-08-05&quot;:30.15},{&quot;2026-08-07&quot;:30.02},{&quot;2026-08-08&quot;:30.02},{&quot;2026-08-09&quot;:30.02},{&quot;2026-08-10&quot;:29.99},{&quot;2026-08-11&quot;:29.95},{&quot;2026-08-12&quot;:29.95},{&quot;2026-08-13&quot;:29.83},{&quot;2026-08-14&quot;:30.44},{&quot;2026-08-15&quot;:30.44},{&quot;2026-08-16&quot;:30.54},{&quot;2026-08-17&quot;:30.54},{&quot;2026-08-18&quot;:30.55},{&quot;2026-08-19&quot;:30.6},{&quot;2026-08-20&quot;:30.6},{&quot;2026-08-21&quot;:30.96},{&quot;2026-08-22&quot;:30.96},{&quot;2026-08-23&quot;:30.96},{&quot;2026-08-24&quot;:31.01},{&quot;2026-08-25&quot;:31.01},{&quot;2026-08-26&quot;:31.11},{&quot;2026-08-27&quot;:31.13},{&quot;2026-08-28&quot;:31.08},{&quot;2026-08-29&quot;:31.08},{&quot;2026-08-30&quot;:31.0},{&quot;2026-08-31&quot;:31.01},{&quot;2026-09-01&quot;:31.01},{&quot;2026-09-02&quot;:31.02},{&quot;2026-09-03&quot;:31.02},{&quot;2026-09-04&quot;:31.02},{&quot;2026-09-05&quot;:31.11},{&quot;2026-09-06&quot;:31.05},{&quot;2026-09-07&quot;:30.93},{&quot;2026-09-08&quot;:30.96},{&quot;2026-09-09&quot;:30.96},{&quot;2026-09-10&quot;:30.96},{&quot;2026-09-11&quot;:30.96}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:32.74},{&quot;2026-06-10&quot;:32.12},{&quot;2026-06-11&quot;:31.87},{&quot;2026-06-12&quot;:31.51},{&quot;2026-06-13&quot;:31.77},{&quot;2026-06-14&quot;:30.83},{&quot;2026-06-15&quot;:30.88},{&quot;2026-06-16&quot;:30.88},{&quot;2026-06-17&quot;:30.65},{&quot;2026-06-18&quot;:30.53},{&quot;2026-06-19&quot;:30.21},{&quot;2026-06-20&quot;:30.1},{&quot;2026-06-21&quot;:29.49},{&quot;2026-06-22&quot;:28.67},{&quot;2026-06-24&quot;:28.46},{&quot;2026-06-25&quot;:28.25},{&quot;2026-06-26&quot;:27.84},{&quot;2026-06-27&quot;:27.6},{&quot;2026-06-28&quot;:27.49},{&quot;2026-06-29&quot;:27.45},{&quot;2026-06-30&quot;:27.6},{&quot;2026-07-01&quot;:27.62},{&quot;2026-07-02&quot;:27.55},{&quot;2026-07-03&quot;:27.6},{&quot;2026-07-04&quot;:27.79},{&quot;2026-07-05&quot;:27.87},{&quot;2026-07-06&quot;:27.8},{&quot;2026-07-07&quot;:27.49},{&quot;2026-07-08&quot;:27.31},{&quot;2026-07-09&quot;:27.5},{&quot;2026-07-10&quot;:27.39},{&quot;2026-07-11&quot;:27.56},{&quot;2026-07-12&quot;:27.66},{&quot;2026-07-13&quot;:27.73},{&quot;2026-07-14&quot;:27.13},{&quot;2026-07-15&quot;:26.94},{&quot;2026-07-16&quot;:26.89},{&quot;2026-07-17&quot;:26.84},{&quot;2026-07-18&quot;:26.6},{&quot;2026-07-19&quot;:26.78},{&quot;2026-07-20&quot;:27.18},{&quot;2026-07-21&quot;:27.31},{&quot;2026-07-23&quot;:27.36},{&quot;2026-07-25&quot;:27.49},{&quot;2026-07-26&quot;:27.47},{&quot;2026-07-27&quot;:27.45},{&quot;2026-07-29&quot;:28.04},{&quot;2026-07-30&quot;:28.23},{&quot;2026-07-31&quot;:28.77},{&quot;2026-08-01&quot;:28.89},{&quot;2026-08-02&quot;:28.63},{&quot;2026-08-03&quot;:28.56},{&quot;2026-08-04&quot;:28.45},{&quot;2026-08-05&quot;:28.43},{&quot;2026-08-07&quot;:28.09},{&quot;2026-08-08&quot;:28.27},{&quot;2026-08-09&quot;:28.46},{&quot;2026-08-10&quot;:28.56},{&quot;2026-08-11&quot;:28.84},{&quot;2026-08-12&quot;:29.1},{&quot;2026-08-13&quot;:28.92},{&quot;2026-08-14&quot;:28.78},{&quot;2026-08-15&quot;:28.77},{&quot;2026-08-16&quot;:28.83},{&quot;2026-08-17&quot;:29.05},{&quot;2026-08-18&quot;:28.74},{&quot;2026-08-19&quot;:28.78},{&quot;2026-08-20&quot;:28.78},{&quot;2026-08-21&quot;:28.37},{&quot;2026-08-22&quot;:28.11},{&quot;2026-08-23&quot;:28.12},{&quot;2026-08-24&quot;:28.3},{&quot;2026-08-25&quot;:28.3},{&quot;2026-08-26&quot;:28.21},{&quot;2026-08-27&quot;:28.21},{&quot;2026-08-28&quot;:28.53},{&quot;2026-08-29&quot;:28.53},{&quot;2026-08-30&quot;:28.62},{&quot;2026-08-31&quot;:28.9},{&quot;2026-09-01&quot;:28.9},{&quot;2026-09-02&quot;:28.62},{&quot;2026-09-03&quot;:28.44},{&quot;2026-09-04&quot;:28.56},{&quot;2026-09-05&quot;:28.33},{&quot;2026-09-06&quot;:28.13},{&quot;2026-09-07&quot;:28.33},{&quot;2026-09-08&quot;:29.05},{&quot;2026-09-09&quot;:29.13},{&quot;2026-09-10&quot;:29.59},{&quot;2026-09-11&quot;:29.67}]}"
        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="92364"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-pmei ss-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 First Sliver
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Legendary Creature — Sliver
      </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">
            $29.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="The First Sliver" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/4/24b23aef-6aca-4316-b904-76d4d1070e95.jpg?1783907947" />

        <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 First Sliver
        </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 — Sliver</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></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="The First Sliver" src="https://cards.scryfall.io/large/front/2/4/24b23aef-6aca-4316-b904-76d4d1070e95.jpg?1783907947" />
    </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">
                $29.54
              </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">$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-08&quot;:28.62},{&quot;2026-06-10&quot;:29.09},{&quot;2026-06-11&quot;:29.0},{&quot;2026-06-12&quot;:29.06},{&quot;2026-06-13&quot;:28.57},{&quot;2026-06-14&quot;:28.86},{&quot;2026-06-15&quot;:28.86},{&quot;2026-06-16&quot;:29.23},{&quot;2026-06-17&quot;:29.23},{&quot;2026-06-18&quot;:29.23},{&quot;2026-06-19&quot;:29.41},{&quot;2026-06-20&quot;:29.39},{&quot;2026-06-21&quot;:29.5},{&quot;2026-06-22&quot;:29.5},{&quot;2026-06-24&quot;:29.5},{&quot;2026-06-25&quot;:29.5},{&quot;2026-06-26&quot;:29.5},{&quot;2026-06-27&quot;:29.78},{&quot;2026-06-28&quot;:30.07},{&quot;2026-06-29&quot;:30.09},{&quot;2026-06-30&quot;:30.65},{&quot;2026-07-01&quot;:30.65},{&quot;2026-07-02&quot;:31.09},{&quot;2026-07-03&quot;:31.09},{&quot;2026-07-04&quot;:31.09},{&quot;2026-07-05&quot;:31.41},{&quot;2026-07-06&quot;:31.41},{&quot;2026-07-07&quot;:31.41},{&quot;2026-07-08&quot;:31.41},{&quot;2026-07-09&quot;:30.84},{&quot;2026-07-10&quot;:30.18},{&quot;2026-07-11&quot;:29.46},{&quot;2026-07-12&quot;:29.46},{&quot;2026-07-13&quot;:29.47},{&quot;2026-07-14&quot;:29.43},{&quot;2026-07-15&quot;:29.43},{&quot;2026-07-16&quot;:29.43},{&quot;2026-07-17&quot;:29.39},{&quot;2026-07-18&quot;:29.34},{&quot;2026-07-19&quot;:28.85},{&quot;2026-07-20&quot;:28.85},{&quot;2026-07-21&quot;:28.82},{&quot;2026-07-23&quot;:28.31},{&quot;2026-07-25&quot;:27.98},{&quot;2026-07-26&quot;:27.72},{&quot;2026-07-27&quot;:28.18},{&quot;2026-07-29&quot;:27.92},{&quot;2026-07-30&quot;:28.33},{&quot;2026-07-31&quot;:28.33},{&quot;2026-08-01&quot;:28.33},{&quot;2026-08-02&quot;:28.73},{&quot;2026-08-03&quot;:28.86},{&quot;2026-08-04&quot;:28.97},{&quot;2026-08-05&quot;:28.97},{&quot;2026-08-07&quot;:28.97},{&quot;2026-08-08&quot;:28.97},{&quot;2026-08-09&quot;:28.97},{&quot;2026-08-10&quot;:28.97},{&quot;2026-08-11&quot;:28.97},{&quot;2026-08-12&quot;:28.97},{&quot;2026-08-13&quot;:28.97},{&quot;2026-08-14&quot;:28.97},{&quot;2026-08-15&quot;:28.96},{&quot;2026-08-16&quot;:28.96},{&quot;2026-08-17&quot;:28.96},{&quot;2026-08-18&quot;:28.96},{&quot;2026-08-19&quot;:28.96},{&quot;2026-08-20&quot;:28.96},{&quot;2026-08-21&quot;:28.62},{&quot;2026-08-22&quot;:28.43},{&quot;2026-08-23&quot;:28.43},{&quot;2026-08-24&quot;:28.43},{&quot;2026-08-25&quot;:28.43},{&quot;2026-08-26&quot;:29.02},{&quot;2026-08-27&quot;:29.26},{&quot;2026-08-28&quot;:29.26},{&quot;2026-08-29&quot;:29.26},{&quot;2026-08-30&quot;:29.53},{&quot;2026-08-31&quot;:29.53},{&quot;2026-09-01&quot;:29.53},{&quot;2026-09-02&quot;:29.48},{&quot;2026-09-03&quot;:29.48},{&quot;2026-09-04&quot;:29.55},{&quot;2026-09-05&quot;:29.55},{&quot;2026-09-06&quot;:29.55},{&quot;2026-09-07&quot;:29.55},{&quot;2026-09-08&quot;:29.55},{&quot;2026-09-09&quot;:29.55},{&quot;2026-09-10&quot;:29.55},{&quot;2026-09-11&quot;:29.54}],&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="20577"
  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">
            Animar, Soul of Elements
        </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">
              ↓
              2%
            </span>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Animar, Soul of Elements" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/3/a3da57d0-1ae3-4f05-a52d-eb76ad56cae7.jpg?1783921859" />

        <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">
            Animar, Soul of Elements
        </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-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></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="Animar, Soul of Elements" src="https://cards.scryfall.io/large/front/a/3/a3da57d0-1ae3-4f05-a52d-eb76ad56cae7.jpg?1783921859" />
    </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.35
              </span>

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-11&quot;:56.23},{&quot;2026-06-12&quot;:56.23},{&quot;2026-06-13&quot;:56.23},{&quot;2026-06-14&quot;:56.23},{&quot;2026-06-15&quot;:56.23},{&quot;2026-06-16&quot;:56.23},{&quot;2026-06-17&quot;:56.23},{&quot;2026-06-18&quot;:56.23},{&quot;2026-06-19&quot;:56.23},{&quot;2026-06-20&quot;:56.23},{&quot;2026-06-21&quot;:56.23},{&quot;2026-06-22&quot;:56.23},{&quot;2026-06-23&quot;:56.23},{&quot;2026-06-24&quot;:56.23},{&quot;2026-06-25&quot;:56.23},{&quot;2026-06-26&quot;:56.23},{&quot;2026-06-27&quot;:56.23},{&quot;2026-06-28&quot;:56.23},{&quot;2026-06-29&quot;:56.23},{&quot;2026-06-30&quot;:56.23},{&quot;2026-07-01&quot;:56.23},{&quot;2026-07-02&quot;:56.23},{&quot;2026-07-03&quot;:56.23},{&quot;2026-07-04&quot;:56.23},{&quot;2026-07-05&quot;:56.23},{&quot;2026-07-06&quot;:56.23},{&quot;2026-07-07&quot;:56.23},{&quot;2026-07-08&quot;:56.23},{&quot;2026-07-09&quot;:57.58},{&quot;2026-07-10&quot;:58.7},{&quot;2026-07-11&quot;:58.7},{&quot;2026-07-12&quot;:58.7},{&quot;2026-07-13&quot;:58.7},{&quot;2026-07-14&quot;:58.7},{&quot;2026-07-15&quot;:58.7},{&quot;2026-07-16&quot;:58.7},{&quot;2026-07-17&quot;:58.7},{&quot;2026-07-18&quot;:58.7},{&quot;2026-07-19&quot;:58.7},{&quot;2026-07-20&quot;:58.7},{&quot;2026-07-21&quot;:58.7},{&quot;2026-07-23&quot;:58.7},{&quot;2026-07-25&quot;:57.78},{&quot;2026-07-26&quot;:57.78},{&quot;2026-07-27&quot;:57.78},{&quot;2026-07-28&quot;:57.78},{&quot;2026-07-29&quot;:57.78},{&quot;2026-07-30&quot;:57.78},{&quot;2026-07-31&quot;:57.15},{&quot;2026-08-01&quot;:57.15},{&quot;2026-08-02&quot;:57.15},{&quot;2026-08-03&quot;:57.15},{&quot;2026-08-04&quot;:56.46},{&quot;2026-08-05&quot;:56.51},{&quot;2026-08-07&quot;:56.51},{&quot;2026-08-08&quot;:56.51},{&quot;2026-08-09&quot;:56.66},{&quot;2026-08-10&quot;:56.66},{&quot;2026-08-11&quot;:56.96},{&quot;2026-08-12&quot;:56.96},{&quot;2026-08-13&quot;:57.23},{&quot;2026-08-14&quot;:57.23},{&quot;2026-08-15&quot;:57.23},{&quot;2026-08-16&quot;:57.23},{&quot;2026-08-17&quot;:57.6},{&quot;2026-08-18&quot;:57.6},{&quot;2026-08-19&quot;:56.94},{&quot;2026-08-20&quot;:56.94},{&quot;2026-08-21&quot;:56.1},{&quot;2026-08-22&quot;:56.1},{&quot;2026-08-23&quot;:56.1},{&quot;2026-08-24&quot;:53.55},{&quot;2026-08-25&quot;:53.55},{&quot;2026-08-26&quot;:52.46},{&quot;2026-08-27&quot;:52.46},{&quot;2026-08-28&quot;:52.46},{&quot;2026-08-29&quot;:52.46},{&quot;2026-08-30&quot;:52.46},{&quot;2026-08-31&quot;:52.46},{&quot;2026-09-01&quot;:52.46},{&quot;2026-09-02&quot;:52.46},{&quot;2026-09-03&quot;:52.46},{&quot;2026-09-04&quot;:52.46},{&quot;2026-09-05&quot;:52.46},{&quot;2026-09-06&quot;:52.63},{&quot;2026-09-07&quot;:52.63},{&quot;2026-09-08&quot;:52.63},{&quot;2026-09-09&quot;:52.63},{&quot;2026-09-10&quot;:52.63},{&quot;2026-09-11&quot;:52.63}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:36.9},{&quot;2026-06-12&quot;:35.74},{&quot;2026-06-13&quot;:36.53},{&quot;2026-06-14&quot;:36.34},{&quot;2026-06-15&quot;:36.46},{&quot;2026-06-16&quot;:36.43},{&quot;2026-06-17&quot;:35.7},{&quot;2026-06-18&quot;:35.7},{&quot;2026-06-19&quot;:35.7},{&quot;2026-06-20&quot;:36.13},{&quot;2026-06-21&quot;:36.13},{&quot;2026-06-22&quot;:36.05},{&quot;2026-06-23&quot;:35.5},{&quot;2026-06-24&quot;:35.15},{&quot;2026-06-25&quot;:34.22},{&quot;2026-06-26&quot;:34.13},{&quot;2026-06-27&quot;:34.13},{&quot;2026-06-28&quot;:34.13},{&quot;2026-06-29&quot;:33.81},{&quot;2026-06-30&quot;:33.47},{&quot;2026-07-01&quot;:33.64},{&quot;2026-07-02&quot;:33.76},{&quot;2026-07-03&quot;:33.69},{&quot;2026-07-04&quot;:33.69},{&quot;2026-07-05&quot;:33.91},{&quot;2026-07-06&quot;:33.91},{&quot;2026-07-07&quot;:33.6},{&quot;2026-07-08&quot;:33.6},{&quot;2026-07-09&quot;:33.6},{&quot;2026-07-10&quot;:33.6},{&quot;2026-07-11&quot;:33.44},{&quot;2026-07-12&quot;:33.44},{&quot;2026-07-13&quot;:32.97},{&quot;2026-07-14&quot;:32.32},{&quot;2026-07-15&quot;:31.27},{&quot;2026-07-16&quot;:30.94},{&quot;2026-07-17&quot;:30.94},{&quot;2026-07-18&quot;:30.94},{&quot;2026-07-19&quot;:30.94},{&quot;2026-07-20&quot;:31.22},{&quot;2026-07-21&quot;:31.15},{&quot;2026-07-23&quot;:30.54},{&quot;2026-07-25&quot;:30.67},{&quot;2026-07-26&quot;:30.46},{&quot;2026-07-27&quot;:29.81},{&quot;2026-07-28&quot;:29.81},{&quot;2026-07-29&quot;:29.81},{&quot;2026-07-30&quot;:29.7},{&quot;2026-07-31&quot;:29.52},{&quot;2026-08-01&quot;:29.94},{&quot;2026-08-02&quot;:30.18},{&quot;2026-08-03&quot;:30.18},{&quot;2026-08-04&quot;:30.18},{&quot;2026-08-05&quot;:30.06},{&quot;2026-08-07&quot;:30.36},{&quot;2026-08-08&quot;:30.61},{&quot;2026-08-09&quot;:30.29},{&quot;2026-08-10&quot;:30.42},{&quot;2026-08-11&quot;:30.42},{&quot;2026-08-12&quot;:30.42},{&quot;2026-08-13&quot;:30.42},{&quot;2026-08-14&quot;:30.32},{&quot;2026-08-15&quot;:30.35},{&quot;2026-08-16&quot;:30.19},{&quot;2026-08-17&quot;:29.91},{&quot;2026-08-18&quot;:29.88},{&quot;2026-08-19&quot;:30.11},{&quot;2026-08-20&quot;:30.11},{&quot;2026-08-21&quot;:30.11},{&quot;2026-08-22&quot;:30.08},{&quot;2026-08-23&quot;:30.08},{&quot;2026-08-24&quot;:30.48},{&quot;2026-08-25&quot;:30.48},{&quot;2026-08-26&quot;:30.77},{&quot;2026-08-27&quot;:30.77},{&quot;2026-08-28&quot;:30.77},{&quot;2026-08-29&quot;:30.77},{&quot;2026-08-30&quot;:30.43},{&quot;2026-08-31&quot;:30.43},{&quot;2026-09-01&quot;:30.43},{&quot;2026-09-02&quot;:30.05},{&quot;2026-09-03&quot;:29.96},{&quot;2026-09-04&quot;:29.96},{&quot;2026-09-05&quot;:29.89},{&quot;2026-09-06&quot;:29.95},{&quot;2026-09-07&quot;:29.52},{&quot;2026-09-08&quot;:29.49},{&quot;2026-09-09&quot;:29.41},{&quot;2026-09-10&quot;:29.41},{&quot;2026-09-11&quot;:29.35}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="5592"
  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">
            Three Tree City
        </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">
              ↑
              2%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $29.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="Three Tree City" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/5/6/56f88a48-cced-4a9d-8c19-e4f105f0d8a2.jpg?1783910782" />

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

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Three Tree City
        </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="Three Tree City" src="https://cards.scryfall.io/large/front/5/6/56f88a48-cced-4a9d-8c19-e4f105f0d8a2.jpg?1783910782" />
    </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.19
              </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">
                $30.31
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-08&quot;:25.29},{&quot;2026-06-10&quot;:25.53},{&quot;2026-06-11&quot;:25.54},{&quot;2026-06-12&quot;:25.48},{&quot;2026-06-13&quot;:25.27},{&quot;2026-06-14&quot;:24.99},{&quot;2026-06-15&quot;:25.25},{&quot;2026-06-16&quot;:25.08},{&quot;2026-06-17&quot;:25.51},{&quot;2026-06-18&quot;:25.51},{&quot;2026-06-19&quot;:25.55},{&quot;2026-06-20&quot;:25.5},{&quot;2026-06-21&quot;:25.24},{&quot;2026-06-22&quot;:25.24},{&quot;2026-06-24&quot;:25.35},{&quot;2026-06-25&quot;:25.35},{&quot;2026-06-26&quot;:25.54},{&quot;2026-06-27&quot;:25.37},{&quot;2026-06-28&quot;:25.37},{&quot;2026-06-29&quot;:25.26},{&quot;2026-06-30&quot;:25.45},{&quot;2026-07-01&quot;:25.11},{&quot;2026-07-02&quot;:25.45},{&quot;2026-07-03&quot;:26.46},{&quot;2026-07-04&quot;:26.72},{&quot;2026-07-05&quot;:26.72},{&quot;2026-07-06&quot;:26.93},{&quot;2026-07-07&quot;:27.1},{&quot;2026-07-08&quot;:27.8},{&quot;2026-07-09&quot;:27.8},{&quot;2026-07-10&quot;:28.16},{&quot;2026-07-11&quot;:28.29},{&quot;2026-07-12&quot;:27.98},{&quot;2026-07-13&quot;:27.98},{&quot;2026-07-14&quot;:28.09},{&quot;2026-07-15&quot;:27.79},{&quot;2026-07-16&quot;:27.79},{&quot;2026-07-17&quot;:27.78},{&quot;2026-07-18&quot;:27.78},{&quot;2026-07-19&quot;:28.15},{&quot;2026-07-20&quot;:27.71},{&quot;2026-07-21&quot;:27.84},{&quot;2026-07-23&quot;:26.79},{&quot;2026-07-25&quot;:26.9},{&quot;2026-07-26&quot;:26.98},{&quot;2026-07-27&quot;:27.19},{&quot;2026-07-29&quot;:27.17},{&quot;2026-07-30&quot;:27.23},{&quot;2026-07-31&quot;:27.9},{&quot;2026-08-01&quot;:27.81},{&quot;2026-08-02&quot;:27.47},{&quot;2026-08-03&quot;:27.64},{&quot;2026-08-04&quot;:27.73},{&quot;2026-08-05&quot;:27.44},{&quot;2026-08-07&quot;:27.57},{&quot;2026-08-08&quot;:27.57},{&quot;2026-08-09&quot;:27.61},{&quot;2026-08-10&quot;:27.61},{&quot;2026-08-11&quot;:28.33},{&quot;2026-08-12&quot;:28.33},{&quot;2026-08-13&quot;:28.29},{&quot;2026-08-14&quot;:28.52},{&quot;2026-08-15&quot;:28.88},{&quot;2026-08-16&quot;:28.92},{&quot;2026-08-17&quot;:28.14},{&quot;2026-08-18&quot;:28.14},{&quot;2026-08-19&quot;:28.64},{&quot;2026-08-20&quot;:28.64},{&quot;2026-08-21&quot;:28.93},{&quot;2026-08-22&quot;:28.63},{&quot;2026-08-23&quot;:29.39},{&quot;2026-08-24&quot;:29.94},{&quot;2026-08-25&quot;:29.94},{&quot;2026-08-26&quot;:30.03},{&quot;2026-08-27&quot;:29.74},{&quot;2026-08-28&quot;:29.74},{&quot;2026-08-29&quot;:29.74},{&quot;2026-08-30&quot;:29.8},{&quot;2026-08-31&quot;:29.69},{&quot;2026-09-01&quot;:29.69},{&quot;2026-09-02&quot;:29.5},{&quot;2026-09-03&quot;:29.5},{&quot;2026-09-04&quot;:29.52},{&quot;2026-09-05&quot;:29.52},{&quot;2026-09-06&quot;:29.52},{&quot;2026-09-07&quot;:29.86},{&quot;2026-09-08&quot;:30.59},{&quot;2026-09-09&quot;:30.94},{&quot;2026-09-10&quot;:30.92},{&quot;2026-09-11&quot;:30.31}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:23.25},{&quot;2026-06-10&quot;:23.23},{&quot;2026-06-11&quot;:23.21},{&quot;2026-06-12&quot;:23.33},{&quot;2026-06-13&quot;:24.34},{&quot;2026-06-14&quot;:24.72},{&quot;2026-06-15&quot;:24.17},{&quot;2026-06-16&quot;:24.12},{&quot;2026-06-17&quot;:24.35},{&quot;2026-06-18&quot;:24.36},{&quot;2026-06-19&quot;:23.92},{&quot;2026-06-20&quot;:23.81},{&quot;2026-06-21&quot;:23.39},{&quot;2026-06-22&quot;:24.27},{&quot;2026-06-24&quot;:24.32},{&quot;2026-06-25&quot;:24.16},{&quot;2026-06-26&quot;:23.65},{&quot;2026-06-27&quot;:23.54},{&quot;2026-06-28&quot;:24.86},{&quot;2026-06-29&quot;:25.25},{&quot;2026-06-30&quot;:25.92},{&quot;2026-07-01&quot;:25.23},{&quot;2026-07-02&quot;:25.09},{&quot;2026-07-03&quot;:24.78},{&quot;2026-07-04&quot;:23.63},{&quot;2026-07-05&quot;:24.06},{&quot;2026-07-06&quot;:25.28},{&quot;2026-07-07&quot;:24.63},{&quot;2026-07-08&quot;:24.37},{&quot;2026-07-09&quot;:26.33},{&quot;2026-07-10&quot;:27.48},{&quot;2026-07-11&quot;:25.94},{&quot;2026-07-12&quot;:25.43},{&quot;2026-07-13&quot;:25.12},{&quot;2026-07-14&quot;:25.39},{&quot;2026-07-15&quot;:26.82},{&quot;2026-07-16&quot;:28.32},{&quot;2026-07-17&quot;:27.18},{&quot;2026-07-18&quot;:26.16},{&quot;2026-07-19&quot;:26.49},{&quot;2026-07-20&quot;:27.65},{&quot;2026-07-21&quot;:27.77},{&quot;2026-07-23&quot;:26.65},{&quot;2026-07-25&quot;:26.75},{&quot;2026-07-26&quot;:26.37},{&quot;2026-07-27&quot;:26.07},{&quot;2026-07-29&quot;:27.28},{&quot;2026-07-30&quot;:26.27},{&quot;2026-07-31&quot;:26.67},{&quot;2026-08-01&quot;:27.12},{&quot;2026-08-02&quot;:28.04},{&quot;2026-08-03&quot;:27.93},{&quot;2026-08-04&quot;:28.02},{&quot;2026-08-05&quot;:27.69},{&quot;2026-08-07&quot;:26.7},{&quot;2026-08-08&quot;:26.64},{&quot;2026-08-09&quot;:26.3},{&quot;2026-08-10&quot;:27.3},{&quot;2026-08-11&quot;:27.64},{&quot;2026-08-12&quot;:28.79},{&quot;2026-08-13&quot;:28.65},{&quot;2026-08-14&quot;:28.82},{&quot;2026-08-15&quot;:28.68},{&quot;2026-08-16&quot;:29.55},{&quot;2026-08-17&quot;:30.22},{&quot;2026-08-18&quot;:29.52},{&quot;2026-08-19&quot;:28.96},{&quot;2026-08-20&quot;:28.96},{&quot;2026-08-21&quot;:28.07},{&quot;2026-08-22&quot;:27.7},{&quot;2026-08-23&quot;:28.26},{&quot;2026-08-24&quot;:27.95},{&quot;2026-08-25&quot;:27.95},{&quot;2026-08-26&quot;:29.54},{&quot;2026-08-27&quot;:29.82},{&quot;2026-08-28&quot;:29.53},{&quot;2026-08-29&quot;:29.53},{&quot;2026-08-30&quot;:28.09},{&quot;2026-08-31&quot;:29.08},{&quot;2026-09-01&quot;:29.08},{&quot;2026-09-02&quot;:28.08},{&quot;2026-09-03&quot;:28.27},{&quot;2026-09-04&quot;:28.87},{&quot;2026-09-05&quot;:28.74},{&quot;2026-09-06&quot;:29.23},{&quot;2026-09-07&quot;:29.99},{&quot;2026-09-08&quot;:30.34},{&quot;2026-09-09&quot;:30.55},{&quot;2026-09-10&quot;:29.95},{&quot;2026-09-11&quot;:29.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="94803"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fin ss-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">
            Sephiroth, Fabled SOLDIER 
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Sephiroth, Fabled SOLDIER // Sephiroth, One-Winged Angel" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/5/85eaf5e7-77dc-4842-a70c-ce4ac7f724df.jpg?1783906617" />

        <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">
            Sephiroth, Fabled SOLDIER 
        </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 — Human Avatar Soldier</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-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"
    >
        <div data-controller="card-flip" class="flex flex-col items-center">
          <div
            data-action="click->card-flip#flip"
            class="flip-container cursor-pointer w-full max-w-xs mx-auto"
          >
            <div data-card-flip-target="card" class="flip-card">
              <div class="flip-card-front">
                <img class="w-full h-auto rounded-2xl" alt="Sephiroth, Fabled SOLDIER // Sephiroth, One-Winged Angel" src="https://cards.scryfall.io/large/front/8/5/85eaf5e7-77dc-4842-a70c-ce4ac7f724df.jpg?1783906617" />
              </div>

              <div class="flip-card-back">
                <img class="w-full h-auto rounded-2xl" alt="Sephiroth, Fabled SOLDIER // Sephiroth, One-Winged Angel" src="https://cards.scryfall.io/large/back/8/5/85eaf5e7-77dc-4842-a70c-ce4ac7f724df.jpg?1783906617" />
              </div>
            </div>
          </div>

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

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

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

          <span class="text-lg font-medium text-nine-white">
            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">
                $29.04
              </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">
                $34.18
              </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">$22.00</span>
              <span class="text-xs text-grey-text">Credit: $28.60</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:37.59},{&quot;2026-06-11&quot;:37.42},{&quot;2026-06-12&quot;:38.45},{&quot;2026-06-13&quot;:38.45},{&quot;2026-06-14&quot;:38.55},{&quot;2026-06-15&quot;:38.39},{&quot;2026-06-16&quot;:38.39},{&quot;2026-06-17&quot;:38.39},{&quot;2026-06-18&quot;:38.39},{&quot;2026-06-19&quot;:38.39},{&quot;2026-06-20&quot;:38.03},{&quot;2026-06-21&quot;:38.36},{&quot;2026-06-22&quot;:38.36},{&quot;2026-06-23&quot;:38.36},{&quot;2026-06-24&quot;:38.36},{&quot;2026-06-25&quot;:38.42},{&quot;2026-06-26&quot;:38.42},{&quot;2026-06-27&quot;:38.42},{&quot;2026-06-28&quot;:38.54},{&quot;2026-06-29&quot;:38.5},{&quot;2026-06-30&quot;:38.5},{&quot;2026-07-01&quot;:38.52},{&quot;2026-07-02&quot;:38.79},{&quot;2026-07-03&quot;:38.79},{&quot;2026-07-04&quot;:38.86},{&quot;2026-07-05&quot;:38.86},{&quot;2026-07-06&quot;:38.86},{&quot;2026-07-07&quot;:38.93},{&quot;2026-07-08&quot;:38.93},{&quot;2026-07-09&quot;:38.94},{&quot;2026-07-10&quot;:39.2},{&quot;2026-07-11&quot;:39.03},{&quot;2026-07-12&quot;:39.03},{&quot;2026-07-13&quot;:39.03},{&quot;2026-07-14&quot;:39.03},{&quot;2026-07-15&quot;:39.31},{&quot;2026-07-16&quot;:39.3},{&quot;2026-07-17&quot;:39.28},{&quot;2026-07-18&quot;:39.28},{&quot;2026-07-19&quot;:39.36},{&quot;2026-07-20&quot;:39.36},{&quot;2026-07-21&quot;:39.36},{&quot;2026-07-23&quot;:39.45},{&quot;2026-07-25&quot;:39.39},{&quot;2026-07-26&quot;:39.39},{&quot;2026-07-27&quot;:39.39},{&quot;2026-07-29&quot;:39.72},{&quot;2026-07-30&quot;:39.72},{&quot;2026-07-31&quot;:39.72},{&quot;2026-08-01&quot;:39.72},{&quot;2026-08-02&quot;:39.43},{&quot;2026-08-03&quot;:39.43},{&quot;2026-08-04&quot;:39.42},{&quot;2026-08-05&quot;:39.22},{&quot;2026-08-07&quot;:37.67},{&quot;2026-08-08&quot;:37.67},{&quot;2026-08-09&quot;:37.67},{&quot;2026-08-10&quot;:37.67},{&quot;2026-08-11&quot;:37.67},{&quot;2026-08-12&quot;:37.94},{&quot;2026-08-13&quot;:37.94},{&quot;2026-08-14&quot;:37.3},{&quot;2026-08-15&quot;:37.55},{&quot;2026-08-16&quot;:37.55},{&quot;2026-08-17&quot;:37.5},{&quot;2026-08-18&quot;:37.82},{&quot;2026-08-19&quot;:37.07},{&quot;2026-08-20&quot;:37.07},{&quot;2026-08-21&quot;:36.43},{&quot;2026-08-22&quot;:36.43},{&quot;2026-08-23&quot;:36.43},{&quot;2026-08-24&quot;:36.99},{&quot;2026-08-25&quot;:36.99},{&quot;2026-08-26&quot;:37.03},{&quot;2026-08-27&quot;:37.2},{&quot;2026-08-28&quot;:37.15},{&quot;2026-08-29&quot;:37.15},{&quot;2026-08-30&quot;:37.01},{&quot;2026-08-31&quot;:36.88},{&quot;2026-09-01&quot;:36.88},{&quot;2026-09-02&quot;:36.88},{&quot;2026-09-03&quot;:36.88},{&quot;2026-09-04&quot;:36.38},{&quot;2026-09-05&quot;:35.84},{&quot;2026-09-06&quot;:35.66},{&quot;2026-09-07&quot;:34.97},{&quot;2026-09-08&quot;:34.97},{&quot;2026-09-09&quot;:34.13},{&quot;2026-09-10&quot;:34.19},{&quot;2026-09-11&quot;:34.18}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:32.23},{&quot;2026-06-11&quot;:32.68},{&quot;2026-06-12&quot;:32.6},{&quot;2026-06-13&quot;:33.18},{&quot;2026-06-14&quot;:32.51},{&quot;2026-06-15&quot;:31.59},{&quot;2026-06-16&quot;:32.27},{&quot;2026-06-17&quot;:32.21},{&quot;2026-06-18&quot;:32.9},{&quot;2026-06-19&quot;:32.72},{&quot;2026-06-20&quot;:31.92},{&quot;2026-06-21&quot;:31.35},{&quot;2026-06-22&quot;:30.59},{&quot;2026-06-23&quot;:30.18},{&quot;2026-06-24&quot;:31.69},{&quot;2026-06-25&quot;:32.3},{&quot;2026-06-26&quot;:31.7},{&quot;2026-06-27&quot;:30.97},{&quot;2026-06-28&quot;:30.29},{&quot;2026-06-29&quot;:30.8},{&quot;2026-06-30&quot;:31.2},{&quot;2026-07-01&quot;:31.18},{&quot;2026-07-02&quot;:31.25},{&quot;2026-07-03&quot;:31.41},{&quot;2026-07-04&quot;:30.91},{&quot;2026-07-05&quot;:31.48},{&quot;2026-07-06&quot;:31.79},{&quot;2026-07-07&quot;:31.46},{&quot;2026-07-08&quot;:31.6},{&quot;2026-07-09&quot;:31.01},{&quot;2026-07-10&quot;:30.87},{&quot;2026-07-11&quot;:30.73},{&quot;2026-07-12&quot;:30.72},{&quot;2026-07-13&quot;:30.91},{&quot;2026-07-14&quot;:30.58},{&quot;2026-07-15&quot;:30.23},{&quot;2026-07-16&quot;:30.81},{&quot;2026-07-17&quot;:31.56},{&quot;2026-07-18&quot;:32.47},{&quot;2026-07-19&quot;:32.05},{&quot;2026-07-20&quot;:32.99},{&quot;2026-07-21&quot;:33.14},{&quot;2026-07-23&quot;:33.78},{&quot;2026-07-25&quot;:32.99},{&quot;2026-07-26&quot;:31.72},{&quot;2026-07-27&quot;:31.78},{&quot;2026-07-29&quot;:32.06},{&quot;2026-07-30&quot;:32.3},{&quot;2026-07-31&quot;:32.09},{&quot;2026-08-01&quot;:32.2},{&quot;2026-08-02&quot;:32.2},{&quot;2026-08-03&quot;:31.42},{&quot;2026-08-04&quot;:31.31},{&quot;2026-08-05&quot;:31.0},{&quot;2026-08-07&quot;:31.21},{&quot;2026-08-08&quot;:31.34},{&quot;2026-08-09&quot;:31.92},{&quot;2026-08-10&quot;:32.37},{&quot;2026-08-11&quot;:32.54},{&quot;2026-08-12&quot;:33.16},{&quot;2026-08-13&quot;:33.69},{&quot;2026-08-14&quot;:33.58},{&quot;2026-08-15&quot;:31.84},{&quot;2026-08-16&quot;:30.53},{&quot;2026-08-17&quot;:30.88},{&quot;2026-08-18&quot;:29.8},{&quot;2026-08-19&quot;:30.14},{&quot;2026-08-20&quot;:30.14},{&quot;2026-08-21&quot;:31.75},{&quot;2026-08-22&quot;:31.86},{&quot;2026-08-23&quot;:31.86},{&quot;2026-08-24&quot;:31.75},{&quot;2026-08-25&quot;:31.75},{&quot;2026-08-26&quot;:30.58},{&quot;2026-08-27&quot;:29.5},{&quot;2026-08-28&quot;:29.04},{&quot;2026-08-29&quot;:29.04},{&quot;2026-08-30&quot;:29.13},{&quot;2026-08-31&quot;:29.01},{&quot;2026-09-01&quot;:29.01},{&quot;2026-09-02&quot;:30.01},{&quot;2026-09-03&quot;:30.59},{&quot;2026-09-04&quot;:29.33},{&quot;2026-09-05&quot;:29.15},{&quot;2026-09-06&quot;:28.92},{&quot;2026-09-07&quot;:30.17},{&quot;2026-09-08&quot;:31.14},{&quot;2026-09-09&quot;:30.32},{&quot;2026-09-10&quot;:30.26},{&quot;2026-09-11&quot;:29.04}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $28.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="Sylvan Library" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/6/26a7c62c-12ed-493c-ba95-0f55fec83686.jpg?1782682722" />

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Sylvan Library" src="https://cards.scryfall.io/large/front/2/6/26a7c62c-12ed-493c-ba95-0f55fec83686.jpg?1782682722" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $28.71
              </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">
                $37.95
              </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">$21.00</span>
              <span class="text-xs text-grey-text">Credit: $27.30</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:32.68},{&quot;2026-06-11&quot;:32.69},{&quot;2026-06-12&quot;:32.71},{&quot;2026-06-13&quot;:32.71},{&quot;2026-06-14&quot;:32.71},{&quot;2026-06-15&quot;:32.98},{&quot;2026-06-16&quot;:33.06},{&quot;2026-06-17&quot;:32.72},{&quot;2026-06-18&quot;:32.72},{&quot;2026-06-19&quot;:32.76},{&quot;2026-06-20&quot;:32.71},{&quot;2026-06-21&quot;:32.76},{&quot;2026-06-22&quot;:32.86},{&quot;2026-06-23&quot;:33.08},{&quot;2026-06-24&quot;:33.08},{&quot;2026-06-25&quot;:33.08},{&quot;2026-06-26&quot;:33.14},{&quot;2026-06-27&quot;:33.26},{&quot;2026-06-28&quot;:33.37},{&quot;2026-06-29&quot;:33.17},{&quot;2026-06-30&quot;:33.17},{&quot;2026-07-01&quot;:33.17},{&quot;2026-07-02&quot;:32.94},{&quot;2026-07-03&quot;:32.94},{&quot;2026-07-04&quot;:32.94},{&quot;2026-07-05&quot;:32.74},{&quot;2026-07-06&quot;:32.73},{&quot;2026-07-07&quot;:32.97},{&quot;2026-07-08&quot;:32.97},{&quot;2026-07-09&quot;:32.96},{&quot;2026-07-10&quot;:32.78},{&quot;2026-07-11&quot;:32.76},{&quot;2026-07-12&quot;:32.58},{&quot;2026-07-13&quot;:32.58},{&quot;2026-07-14&quot;:32.6},{&quot;2026-07-15&quot;:32.59},{&quot;2026-07-16&quot;:33.19},{&quot;2026-07-17&quot;:33.19},{&quot;2026-07-18&quot;:33.19},{&quot;2026-07-19&quot;:33.05},{&quot;2026-07-20&quot;:33.97},{&quot;2026-07-21&quot;:33.93},{&quot;2026-07-23&quot;:34.08},{&quot;2026-07-25&quot;:33.85},{&quot;2026-07-26&quot;:33.93},{&quot;2026-07-27&quot;:33.93},{&quot;2026-07-29&quot;:34.57},{&quot;2026-07-30&quot;:34.55},{&quot;2026-07-31&quot;:34.55},{&quot;2026-08-01&quot;:34.96},{&quot;2026-08-02&quot;:34.84},{&quot;2026-08-03&quot;:34.71},{&quot;2026-08-04&quot;:34.71},{&quot;2026-08-05&quot;:34.01},{&quot;2026-08-07&quot;:34.42},{&quot;2026-08-08&quot;:34.83},{&quot;2026-08-09&quot;:34.93},{&quot;2026-08-10&quot;:35.45},{&quot;2026-08-11&quot;:35.52},{&quot;2026-08-12&quot;:35.52},{&quot;2026-08-13&quot;:35.52},{&quot;2026-08-14&quot;:35.75},{&quot;2026-08-15&quot;:35.75},{&quot;2026-08-16&quot;:36.83},{&quot;2026-08-17&quot;:36.83},{&quot;2026-08-18&quot;:37.03},{&quot;2026-08-19&quot;:37.03},{&quot;2026-08-20&quot;:37.03},{&quot;2026-08-21&quot;:36.84},{&quot;2026-08-22&quot;:36.84},{&quot;2026-08-23&quot;:36.91},{&quot;2026-08-24&quot;:36.88},{&quot;2026-08-25&quot;:36.88},{&quot;2026-08-26&quot;:37.21},{&quot;2026-08-27&quot;:36.97},{&quot;2026-08-28&quot;:36.97},{&quot;2026-08-29&quot;:36.97},{&quot;2026-08-30&quot;:37.09},{&quot;2026-08-31&quot;:37.16},{&quot;2026-09-01&quot;:37.16},{&quot;2026-09-02&quot;:37.16},{&quot;2026-09-03&quot;:37.16},{&quot;2026-09-04&quot;:37.27},{&quot;2026-09-05&quot;:37.46},{&quot;2026-09-06&quot;:37.62},{&quot;2026-09-07&quot;:37.62},{&quot;2026-09-08&quot;:37.62},{&quot;2026-09-09&quot;:37.7},{&quot;2026-09-10&quot;:37.8},{&quot;2026-09-11&quot;:37.95}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:25.48},{&quot;2026-06-11&quot;:26.29},{&quot;2026-06-12&quot;:26.28},{&quot;2026-06-13&quot;:26.35},{&quot;2026-06-14&quot;:26.14},{&quot;2026-06-15&quot;:26.4},{&quot;2026-06-16&quot;:26.35},{&quot;2026-06-17&quot;:26.9},{&quot;2026-06-18&quot;:26.88},{&quot;2026-06-19&quot;:26.96},{&quot;2026-06-20&quot;:26.2},{&quot;2026-06-21&quot;:26.32},{&quot;2026-06-22&quot;:25.92},{&quot;2026-06-23&quot;:26.0},{&quot;2026-06-24&quot;:25.7},{&quot;2026-06-25&quot;:25.81},{&quot;2026-06-26&quot;:25.92},{&quot;2026-06-27&quot;:26.74},{&quot;2026-06-28&quot;:26.66},{&quot;2026-06-29&quot;:26.96},{&quot;2026-06-30&quot;:26.71},{&quot;2026-07-01&quot;:27.17},{&quot;2026-07-02&quot;:27.41},{&quot;2026-07-03&quot;:26.56},{&quot;2026-07-04&quot;:26.57},{&quot;2026-07-05&quot;:26.7},{&quot;2026-07-06&quot;:26.57},{&quot;2026-07-07&quot;:26.57},{&quot;2026-07-08&quot;:26.27},{&quot;2026-07-09&quot;:26.27},{&quot;2026-07-10&quot;:26.06},{&quot;2026-07-11&quot;:26.41},{&quot;2026-07-12&quot;:26.7},{&quot;2026-07-13&quot;:27.17},{&quot;2026-07-14&quot;:26.96},{&quot;2026-07-15&quot;:27.04},{&quot;2026-07-16&quot;:27.09},{&quot;2026-07-17&quot;:27.36},{&quot;2026-07-18&quot;:27.47},{&quot;2026-07-19&quot;:27.43},{&quot;2026-07-20&quot;:27.43},{&quot;2026-07-21&quot;:27.43},{&quot;2026-07-23&quot;:27.48},{&quot;2026-07-25&quot;:27.94},{&quot;2026-07-26&quot;:27.95},{&quot;2026-07-27&quot;:27.91},{&quot;2026-07-29&quot;:28.5},{&quot;2026-07-30&quot;:28.42},{&quot;2026-07-31&quot;:28.58},{&quot;2026-08-01&quot;:28.78},{&quot;2026-08-02&quot;:28.78},{&quot;2026-08-03&quot;:29.06},{&quot;2026-08-04&quot;:29.13},{&quot;2026-08-05&quot;:28.65},{&quot;2026-08-07&quot;:28.81},{&quot;2026-08-08&quot;:28.18},{&quot;2026-08-09&quot;:28.62},{&quot;2026-08-10&quot;:28.43},{&quot;2026-08-11&quot;:27.56},{&quot;2026-08-12&quot;:27.5},{&quot;2026-08-13&quot;:27.65},{&quot;2026-08-14&quot;:27.79},{&quot;2026-08-15&quot;:27.4},{&quot;2026-08-16&quot;:27.4},{&quot;2026-08-17&quot;:27.16},{&quot;2026-08-18&quot;:26.72},{&quot;2026-08-19&quot;:26.71},{&quot;2026-08-20&quot;:26.71},{&quot;2026-08-21&quot;:27.24},{&quot;2026-08-22&quot;:27.33},{&quot;2026-08-23&quot;:27.3},{&quot;2026-08-24&quot;:27.2},{&quot;2026-08-25&quot;:27.2},{&quot;2026-08-26&quot;:27.32},{&quot;2026-08-27&quot;:27.36},{&quot;2026-08-28&quot;:27.32},{&quot;2026-08-29&quot;:27.32},{&quot;2026-08-30&quot;:27.45},{&quot;2026-08-31&quot;:27.69},{&quot;2026-09-01&quot;:27.69},{&quot;2026-09-02&quot;:27.68},{&quot;2026-09-03&quot;:27.9},{&quot;2026-09-04&quot;:28.45},{&quot;2026-09-05&quot;:28.49},{&quot;2026-09-06&quot;:28.49},{&quot;2026-09-07&quot;:28.49},{&quot;2026-09-08&quot;:28.76},{&quot;2026-09-09&quot;:28.75},{&quot;2026-09-10&quot;:28.71},{&quot;2026-09-11&quot;:28.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="49035"
  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-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">
            Yawgmoth, Thran Physician
        </span>


      </div>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Yawgmoth, Thran Physician" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/6/8690cbcc-f8fd-41f7-9e28-e61c12b04014.jpg?1783933118" />

        <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">
            Yawgmoth, Thran Physician
        </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 — Human Cleric</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-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="Yawgmoth, Thran Physician" src="https://cards.scryfall.io/large/front/8/6/8690cbcc-f8fd-41f7-9e28-e61c12b04014.jpg?1783933118" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$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-11&quot;:32.51},{&quot;2026-06-12&quot;:32.51},{&quot;2026-06-13&quot;:32.51},{&quot;2026-06-14&quot;:32.51},{&quot;2026-06-15&quot;:32.51},{&quot;2026-06-16&quot;:32.51},{&quot;2026-06-17&quot;:32.51},{&quot;2026-06-18&quot;:32.51},{&quot;2026-06-19&quot;:32.51},{&quot;2026-06-20&quot;:33.17},{&quot;2026-06-21&quot;:33.17},{&quot;2026-06-22&quot;:33.17},{&quot;2026-06-23&quot;:33.17},{&quot;2026-06-24&quot;:33.17},{&quot;2026-06-25&quot;:33.17},{&quot;2026-06-26&quot;:33.17},{&quot;2026-06-27&quot;:33.17},{&quot;2026-06-28&quot;:33.17},{&quot;2026-06-29&quot;:34.03},{&quot;2026-06-30&quot;:33.85},{&quot;2026-07-01&quot;:33.85},{&quot;2026-07-02&quot;:33.85},{&quot;2026-07-03&quot;:33.85},{&quot;2026-07-04&quot;:34.72},{&quot;2026-07-05&quot;:34.72},{&quot;2026-07-06&quot;:34.72},{&quot;2026-07-07&quot;:34.72},{&quot;2026-07-08&quot;:34.72},{&quot;2026-07-09&quot;:34.72},{&quot;2026-07-10&quot;:35.73},{&quot;2026-07-11&quot;:35.73},{&quot;2026-07-12&quot;:35.73},{&quot;2026-07-13&quot;:35.73},{&quot;2026-07-14&quot;:35.73},{&quot;2026-07-15&quot;:35.73},{&quot;2026-07-16&quot;:35.73},{&quot;2026-07-17&quot;:36.82},{&quot;2026-07-18&quot;:39.05},{&quot;2026-07-19&quot;:40.66},{&quot;2026-07-20&quot;:40.66},{&quot;2026-07-21&quot;:40.66},{&quot;2026-07-23&quot;:40.66},{&quot;2026-07-25&quot;:40.66},{&quot;2026-07-26&quot;:40.66},{&quot;2026-07-27&quot;:41.79},{&quot;2026-07-28&quot;:41.79},{&quot;2026-07-29&quot;:41.79},{&quot;2026-07-30&quot;:41.4},{&quot;2026-07-31&quot;:40.84},{&quot;2026-08-01&quot;:40.84},{&quot;2026-08-02&quot;:40.84},{&quot;2026-08-03&quot;:40.84},{&quot;2026-08-04&quot;:43.49},{&quot;2026-08-05&quot;:43.49},{&quot;2026-08-07&quot;:43.49},{&quot;2026-08-08&quot;:43.49},{&quot;2026-08-09&quot;:43.49},{&quot;2026-08-10&quot;:43.49},{&quot;2026-08-11&quot;:43.49},{&quot;2026-08-12&quot;:43.49},{&quot;2026-08-13&quot;:43.49},{&quot;2026-08-14&quot;:43.49},{&quot;2026-08-15&quot;:43.49},{&quot;2026-08-16&quot;:43.49},{&quot;2026-08-17&quot;:43.49},{&quot;2026-08-18&quot;:43.49},{&quot;2026-08-19&quot;:43.49},{&quot;2026-08-20&quot;:43.49},{&quot;2026-08-21&quot;:43.49},{&quot;2026-08-22&quot;:43.49},{&quot;2026-08-23&quot;:43.49},{&quot;2026-08-24&quot;:43.49},{&quot;2026-08-25&quot;:43.49},{&quot;2026-08-26&quot;:43.87},{&quot;2026-08-27&quot;:43.87},{&quot;2026-08-28&quot;:43.87},{&quot;2026-08-29&quot;:43.87},{&quot;2026-08-30&quot;:43.87},{&quot;2026-08-31&quot;:43.87},{&quot;2026-09-01&quot;:43.87},{&quot;2026-09-02&quot;:44.65},{&quot;2026-09-03&quot;:44.65},{&quot;2026-09-04&quot;:44.65},{&quot;2026-09-05&quot;:44.65},{&quot;2026-09-06&quot;:44.65},{&quot;2026-09-07&quot;:44.65},{&quot;2026-09-08&quot;:44.65},{&quot;2026-09-09&quot;:44.65},{&quot;2026-09-10&quot;:44.65},{&quot;2026-09-11&quot;:44.65}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:36.33},{&quot;2026-06-12&quot;:36.33},{&quot;2026-06-13&quot;:36.53},{&quot;2026-06-14&quot;:36.53},{&quot;2026-06-15&quot;:36.53},{&quot;2026-06-16&quot;:36.53},{&quot;2026-06-17&quot;:35.93},{&quot;2026-06-18&quot;:35.89},{&quot;2026-06-19&quot;:35.49},{&quot;2026-06-20&quot;:35.49},{&quot;2026-06-21&quot;:34.85},{&quot;2026-06-22&quot;:34.85},{&quot;2026-06-23&quot;:34.26},{&quot;2026-06-24&quot;:34.26},{&quot;2026-06-25&quot;:34.26},{&quot;2026-06-26&quot;:34.08},{&quot;2026-06-27&quot;:33.72},{&quot;2026-06-28&quot;:33.72},{&quot;2026-06-29&quot;:33.33},{&quot;2026-06-30&quot;:33.15},{&quot;2026-07-01&quot;:33.2},{&quot;2026-07-02&quot;:33.2},{&quot;2026-07-03&quot;:33.2},{&quot;2026-07-04&quot;:32.67},{&quot;2026-07-05&quot;:32.47},{&quot;2026-07-06&quot;:32.47},{&quot;2026-07-07&quot;:32.69},{&quot;2026-07-08&quot;:32.69},{&quot;2026-07-09&quot;:32.71},{&quot;2026-07-10&quot;:32.61},{&quot;2026-07-11&quot;:32.26},{&quot;2026-07-12&quot;:32.26},{&quot;2026-07-13&quot;:32.26},{&quot;2026-07-14&quot;:31.81},{&quot;2026-07-15&quot;:31.77},{&quot;2026-07-16&quot;:31.77},{&quot;2026-07-17&quot;:31.95},{&quot;2026-07-18&quot;:31.76},{&quot;2026-07-19&quot;:31.74},{&quot;2026-07-20&quot;:31.72},{&quot;2026-07-21&quot;:31.72},{&quot;2026-07-23&quot;:31.76},{&quot;2026-07-25&quot;:31.34},{&quot;2026-07-26&quot;:31.32},{&quot;2026-07-27&quot;:31.32},{&quot;2026-07-28&quot;:31.32},{&quot;2026-07-29&quot;:31.32},{&quot;2026-07-30&quot;:31.32},{&quot;2026-07-31&quot;:31.11},{&quot;2026-08-01&quot;:30.73},{&quot;2026-08-02&quot;:30.51},{&quot;2026-08-03&quot;:30.58},{&quot;2026-08-04&quot;:30.12},{&quot;2026-08-05&quot;:30.44},{&quot;2026-08-07&quot;:30.01},{&quot;2026-08-08&quot;:29.78},{&quot;2026-08-09&quot;:29.59},{&quot;2026-08-10&quot;:29.61},{&quot;2026-08-11&quot;:29.61},{&quot;2026-08-12&quot;:29.54},{&quot;2026-08-13&quot;:29.55},{&quot;2026-08-14&quot;:29.45},{&quot;2026-08-15&quot;:28.89},{&quot;2026-08-16&quot;:28.72},{&quot;2026-08-17&quot;:28.45},{&quot;2026-08-18&quot;:28.29},{&quot;2026-08-19&quot;:28.06},{&quot;2026-08-20&quot;:28.06},{&quot;2026-08-21&quot;:28.1},{&quot;2026-08-22&quot;:28.1},{&quot;2026-08-23&quot;:28.29},{&quot;2026-08-24&quot;:27.98},{&quot;2026-08-25&quot;:27.98},{&quot;2026-08-26&quot;:27.84},{&quot;2026-08-27&quot;:27.73},{&quot;2026-08-28&quot;:27.61},{&quot;2026-08-29&quot;:27.61},{&quot;2026-08-30&quot;:27.68},{&quot;2026-08-31&quot;:27.67},{&quot;2026-09-01&quot;:27.67},{&quot;2026-09-02&quot;:27.73},{&quot;2026-09-03&quot;:27.36},{&quot;2026-09-04&quot;:27.57},{&quot;2026-09-05&quot;:27.45},{&quot;2026-09-06&quot;:27.61},{&quot;2026-09-07&quot;:27.44},{&quot;2026-09-08&quot;:27.17},{&quot;2026-09-09&quot;:27.57},{&quot;2026-09-10&quot;:27.57},{&quot;2026-09-11&quot;:27.57}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Atraxa, Praetors&#39; Voice" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/7/974900db-87c4-4d39-8687-90ca7a8b6dda.jpg?1782736104" />

        <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">
            Atraxa, Praetors&#39; Voice
        </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 — Phyrexian Angel Horror</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><i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></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="Atraxa, Praetors&#39; Voice" src="https://cards.scryfall.io/large/front/9/7/974900db-87c4-4d39-8687-90ca7a8b6dda.jpg?1782736104" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Foil</span>
              <span class="text-lg font-medium text-nine-white">$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-07-31&quot;:27.72},{&quot;2026-08-01&quot;:27.4},{&quot;2026-08-02&quot;:26.41},{&quot;2026-08-03&quot;:25.94},{&quot;2026-08-04&quot;:25.66},{&quot;2026-08-05&quot;:26.08},{&quot;2026-08-07&quot;:26.39},{&quot;2026-08-08&quot;:26.82},{&quot;2026-08-09&quot;:26.71},{&quot;2026-08-10&quot;:26.77},{&quot;2026-08-11&quot;:26.77},{&quot;2026-08-12&quot;:26.43},{&quot;2026-08-13&quot;:26.61},{&quot;2026-08-14&quot;:26.92},{&quot;2026-08-15&quot;:26.8},{&quot;2026-08-16&quot;:27.18},{&quot;2026-08-17&quot;:27.4},{&quot;2026-08-18&quot;:26.9},{&quot;2026-08-19&quot;:26.77},{&quot;2026-08-20&quot;:26.77},{&quot;2026-08-21&quot;:25.89},{&quot;2026-08-22&quot;:25.97},{&quot;2026-08-23&quot;:26.3},{&quot;2026-08-24&quot;:26.4},{&quot;2026-08-25&quot;:26.28},{&quot;2026-08-26&quot;:25.97},{&quot;2026-08-27&quot;:25.28},{&quot;2026-08-28&quot;:25.56},{&quot;2026-08-29&quot;:25.56},{&quot;2026-08-30&quot;:26.32},{&quot;2026-08-31&quot;:25.68},{&quot;2026-09-01&quot;:25.88},{&quot;2026-09-02&quot;:26.49},{&quot;2026-09-03&quot;:26.67},{&quot;2026-09-04&quot;:26.61},{&quot;2026-09-05&quot;:26.84},{&quot;2026-09-06&quot;:27.09},{&quot;2026-09-07&quot;:27.25},{&quot;2026-09-08&quot;:27.4},{&quot;2026-09-09&quot;:27.46},{&quot;2026-09-10&quot;:27.47},{&quot;2026-09-11&quot;:27.47}],&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="84831"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-rare ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Dolmen Gate
        </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">
            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">
            $27.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="Dolmen Gate" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/a/8a44fcd0-9c12-4cd7-9eff-b58294891fdc.jpg?1783916113" />

        <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">
            Dolmen Gate
        </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>
          </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="Dolmen Gate" src="https://cards.scryfall.io/large/front/8/a/8a44fcd0-9c12-4cd7-9eff-b58294891fdc.jpg?1783916113" />
    </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">
                $27.16
              </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">$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;normal&quot;:[{&quot;2026-06-13&quot;:28.18},{&quot;2026-06-14&quot;:28.42},{&quot;2026-06-15&quot;:28.52},{&quot;2026-06-16&quot;:28.5},{&quot;2026-06-17&quot;:28.5},{&quot;2026-06-18&quot;:28.5},{&quot;2026-06-19&quot;:28.62},{&quot;2026-06-20&quot;:28.79},{&quot;2026-06-21&quot;:28.88},{&quot;2026-06-22&quot;:28.7},{&quot;2026-06-23&quot;:28.49},{&quot;2026-06-24&quot;:28.28},{&quot;2026-06-25&quot;:28.28},{&quot;2026-06-26&quot;:28.26},{&quot;2026-06-27&quot;:28.35},{&quot;2026-06-28&quot;:28.35},{&quot;2026-06-29&quot;:28.13},{&quot;2026-06-30&quot;:28.13},{&quot;2026-07-01&quot;:28.53},{&quot;2026-07-02&quot;:28.4},{&quot;2026-07-03&quot;:28.25},{&quot;2026-07-04&quot;:28.29},{&quot;2026-07-05&quot;:28.12},{&quot;2026-07-06&quot;:28.4},{&quot;2026-07-07&quot;:28.48},{&quot;2026-07-08&quot;:28.46},{&quot;2026-07-09&quot;:28.44},{&quot;2026-07-10&quot;:28.64},{&quot;2026-07-11&quot;:28.64},{&quot;2026-07-12&quot;:28.75},{&quot;2026-07-13&quot;:28.75},{&quot;2026-07-14&quot;:28.75},{&quot;2026-07-15&quot;:28.75},{&quot;2026-07-16&quot;:28.67},{&quot;2026-07-17&quot;:28.67},{&quot;2026-07-18&quot;:28.67},{&quot;2026-07-19&quot;:28.66},{&quot;2026-07-20&quot;:28.66},{&quot;2026-07-21&quot;:28.66},{&quot;2026-07-22&quot;:28.66},{&quot;2026-07-23&quot;:28.82},{&quot;2026-07-24&quot;:28.91},{&quot;2026-07-25&quot;:28.91},{&quot;2026-07-26&quot;:29.06},{&quot;2026-07-27&quot;:28.98},{&quot;2026-07-28&quot;:29.11},{&quot;2026-07-29&quot;:29.11},{&quot;2026-07-30&quot;:29.11},{&quot;2026-07-31&quot;:29.33},{&quot;2026-08-01&quot;:29.34},{&quot;2026-08-02&quot;:29.34},{&quot;2026-08-03&quot;:29.02},{&quot;2026-08-04&quot;:28.98},{&quot;2026-08-05&quot;:28.78},{&quot;2026-08-07&quot;:28.53},{&quot;2026-08-08&quot;:28.2},{&quot;2026-08-09&quot;:28.01},{&quot;2026-08-10&quot;:27.35},{&quot;2026-08-11&quot;:27.06},{&quot;2026-08-12&quot;:26.86},{&quot;2026-08-13&quot;:26.72},{&quot;2026-08-14&quot;:26.05},{&quot;2026-08-15&quot;:25.97},{&quot;2026-08-16&quot;:25.87},{&quot;2026-08-17&quot;:25.68},{&quot;2026-08-18&quot;:25.94},{&quot;2026-08-19&quot;:26.1},{&quot;2026-08-20&quot;:26.62},{&quot;2026-08-21&quot;:26.62},{&quot;2026-08-22&quot;:27.01},{&quot;2026-08-23&quot;:27.15},{&quot;2026-08-24&quot;:27.15},{&quot;2026-08-25&quot;:27.15},{&quot;2026-08-26&quot;:27.15},{&quot;2026-08-27&quot;:27.38},{&quot;2026-08-28&quot;:27.38},{&quot;2026-08-29&quot;:27.38},{&quot;2026-08-30&quot;:27.74},{&quot;2026-08-31&quot;:27.74},{&quot;2026-09-01&quot;:27.46},{&quot;2026-09-02&quot;:27.28},{&quot;2026-09-03&quot;:27.49},{&quot;2026-09-04&quot;:27.49},{&quot;2026-09-05&quot;:27.86},{&quot;2026-09-06&quot;:27.42},{&quot;2026-09-07&quot;:27.42},{&quot;2026-09-08&quot;:27.16},{&quot;2026-09-09&quot;:27.16},{&quot;2026-09-10&quot;:27.16},{&quot;2026-09-11&quot;:27.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="112596"
  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-hob 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 Queen of Dale
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $27.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="The Queen of Dale" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/d/7d635dfb-0a48-4965-82d1-d98f943bb28d.jpg?1784377077" />

        <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 Queen of Dale
        </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 — Human Noble</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="The Queen of Dale" src="https://cards.scryfall.io/large/front/7/d/7d635dfb-0a48-4965-82d1-d98f943bb28d.jpg?1784377077" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$26.00</span>
              <span class="text-xs text-grey-text">Credit: $33.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-08-07&quot;:52.97},{&quot;2026-08-08&quot;:40.67},{&quot;2026-08-09&quot;:36.6},{&quot;2026-08-10&quot;:35.43},{&quot;2026-08-11&quot;:36.4},{&quot;2026-08-12&quot;:37.55},{&quot;2026-08-13&quot;:38.44},{&quot;2026-08-14&quot;:39.41},{&quot;2026-08-15&quot;:37.84},{&quot;2026-08-16&quot;:35.67},{&quot;2026-08-17&quot;:37.91},{&quot;2026-08-18&quot;:39.63},{&quot;2026-08-19&quot;:41.34},{&quot;2026-08-20&quot;:41.31},{&quot;2026-08-21&quot;:41.52},{&quot;2026-08-22&quot;:45.39},{&quot;2026-08-23&quot;:49.76},{&quot;2026-08-24&quot;:53.32},{&quot;2026-08-25&quot;:53.81},{&quot;2026-08-26&quot;:53.27},{&quot;2026-08-27&quot;:52.45},{&quot;2026-08-28&quot;:53.8},{&quot;2026-08-29&quot;:53.8},{&quot;2026-08-30&quot;:53.17},{&quot;2026-08-31&quot;:52.89},{&quot;2026-09-01&quot;:51.62},{&quot;2026-09-02&quot;:51.16},{&quot;2026-09-03&quot;:49.23},{&quot;2026-09-04&quot;:48.85},{&quot;2026-09-05&quot;:49.79},{&quot;2026-09-06&quot;:49.55},{&quot;2026-09-07&quot;:49.48},{&quot;2026-09-08&quot;:48.88},{&quot;2026-09-09&quot;:47.71},{&quot;2026-09-10&quot;:46.22},{&quot;2026-09-11&quot;:44.98}],&quot;normal&quot;:[{&quot;2026-08-02&quot;:52.98},{&quot;2026-08-03&quot;:52.98},{&quot;2026-08-04&quot;:52.98},{&quot;2026-08-05&quot;:36.98},{&quot;2026-08-07&quot;:27.49},{&quot;2026-08-08&quot;:24.21},{&quot;2026-08-09&quot;:25.79},{&quot;2026-08-10&quot;:26.49},{&quot;2026-08-11&quot;:26.66},{&quot;2026-08-12&quot;:26.67},{&quot;2026-08-13&quot;:26.56},{&quot;2026-08-14&quot;:26.3},{&quot;2026-08-15&quot;:22.35},{&quot;2026-08-16&quot;:22.75},{&quot;2026-08-17&quot;:25.03},{&quot;2026-08-18&quot;:25.18},{&quot;2026-08-19&quot;:26.4},{&quot;2026-08-20&quot;:28.88},{&quot;2026-08-21&quot;:27.51},{&quot;2026-08-22&quot;:29.71},{&quot;2026-08-23&quot;:31.69},{&quot;2026-08-24&quot;:31.79},{&quot;2026-08-25&quot;:31.88},{&quot;2026-08-26&quot;:31.9},{&quot;2026-08-27&quot;:31.71},{&quot;2026-08-28&quot;:31.97},{&quot;2026-08-29&quot;:31.97},{&quot;2026-08-30&quot;:30.72},{&quot;2026-08-31&quot;:28.99},{&quot;2026-09-01&quot;:28.2},{&quot;2026-09-02&quot;:28.31},{&quot;2026-09-03&quot;:28.17},{&quot;2026-09-04&quot;:28.75},{&quot;2026-09-05&quot;:28.82},{&quot;2026-09-06&quot;:27.66},{&quot;2026-09-07&quot;:26.47},{&quot;2026-09-08&quot;:26.62},{&quot;2026-09-09&quot;:27.07},{&quot;2026-09-10&quot;:27.41},{&quot;2026-09-11&quot;:27.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="72911"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-brr ss-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">
            Aetherflux Reservoir
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $27.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="Aetherflux Reservoir" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/f/7f5342d5-b8a6-46ee-afd7-b333bb836a7c.jpg?1783919800" />

        <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">
            Aetherflux Reservoir
        </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">Artifact</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Aetherflux Reservoir" src="https://cards.scryfall.io/large/front/7/f/7f5342d5-b8a6-46ee-afd7-b333bb836a7c.jpg?1783919800" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:32.85},{&quot;2026-06-14&quot;:32.85},{&quot;2026-06-15&quot;:32.71},{&quot;2026-06-16&quot;:32.71},{&quot;2026-06-17&quot;:32.55},{&quot;2026-06-18&quot;:32.79},{&quot;2026-06-19&quot;:32.79},{&quot;2026-06-20&quot;:32.79},{&quot;2026-06-21&quot;:32.79},{&quot;2026-06-22&quot;:32.79},{&quot;2026-06-23&quot;:32.79},{&quot;2026-06-24&quot;:32.87},{&quot;2026-06-25&quot;:32.87},{&quot;2026-06-26&quot;:32.87},{&quot;2026-06-27&quot;:32.87},{&quot;2026-06-28&quot;:32.82},{&quot;2026-06-29&quot;:32.83},{&quot;2026-06-30&quot;:32.83},{&quot;2026-07-01&quot;:32.83},{&quot;2026-07-02&quot;:32.83},{&quot;2026-07-03&quot;:32.8},{&quot;2026-07-04&quot;:32.8},{&quot;2026-07-05&quot;:32.82},{&quot;2026-07-06&quot;:32.82},{&quot;2026-07-07&quot;:32.82},{&quot;2026-07-08&quot;:32.82},{&quot;2026-07-09&quot;:32.82},{&quot;2026-07-10&quot;:32.82},{&quot;2026-07-11&quot;:32.82},{&quot;2026-07-12&quot;:32.82},{&quot;2026-07-13&quot;:32.83},{&quot;2026-07-14&quot;:32.83},{&quot;2026-07-15&quot;:32.83},{&quot;2026-07-16&quot;:32.78},{&quot;2026-07-17&quot;:32.78},{&quot;2026-07-18&quot;:32.78},{&quot;2026-07-19&quot;:32.78},{&quot;2026-07-20&quot;:32.78},{&quot;2026-07-21&quot;:32.78},{&quot;2026-07-22&quot;:32.78},{&quot;2026-07-23&quot;:32.78},{&quot;2026-07-24&quot;:32.78},{&quot;2026-07-25&quot;:32.78},{&quot;2026-07-26&quot;:32.83},{&quot;2026-07-27&quot;:32.83},{&quot;2026-07-28&quot;:32.99},{&quot;2026-07-29&quot;:32.99},{&quot;2026-07-30&quot;:32.99},{&quot;2026-07-31&quot;:32.89},{&quot;2026-08-01&quot;:32.89},{&quot;2026-08-02&quot;:33.02},{&quot;2026-08-03&quot;:32.98},{&quot;2026-08-04&quot;:32.98},{&quot;2026-08-05&quot;:33.01},{&quot;2026-08-07&quot;:33.01},{&quot;2026-08-08&quot;:33.14},{&quot;2026-08-09&quot;:33.14},{&quot;2026-08-10&quot;:34.37},{&quot;2026-08-11&quot;:34.58},{&quot;2026-08-12&quot;:34.58},{&quot;2026-08-13&quot;:34.58},{&quot;2026-08-14&quot;:34.58},{&quot;2026-08-15&quot;:34.58},{&quot;2026-08-16&quot;:34.58},{&quot;2026-08-17&quot;:34.63},{&quot;2026-08-18&quot;:35.57},{&quot;2026-08-19&quot;:35.71},{&quot;2026-08-20&quot;:35.71},{&quot;2026-08-21&quot;:35.71},{&quot;2026-08-22&quot;:35.71},{&quot;2026-08-23&quot;:35.71},{&quot;2026-08-24&quot;:35.71},{&quot;2026-08-25&quot;:35.69},{&quot;2026-08-26&quot;:35.69},{&quot;2026-08-27&quot;:35.69},{&quot;2026-08-28&quot;:35.69},{&quot;2026-08-29&quot;:35.69},{&quot;2026-08-30&quot;:35.69},{&quot;2026-08-31&quot;:35.69},{&quot;2026-09-01&quot;:35.69},{&quot;2026-09-02&quot;:36.3},{&quot;2026-09-03&quot;:36.3},{&quot;2026-09-04&quot;:36.52},{&quot;2026-09-05&quot;:36.52},{&quot;2026-09-06&quot;:36.65},{&quot;2026-09-07&quot;:36.65},{&quot;2026-09-08&quot;:36.65},{&quot;2026-09-09&quot;:36.65},{&quot;2026-09-10&quot;:36.65},{&quot;2026-09-11&quot;:36.65}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:26.68},{&quot;2026-06-14&quot;:26.49},{&quot;2026-06-15&quot;:26.49},{&quot;2026-06-16&quot;:26.56},{&quot;2026-06-17&quot;:26.56},{&quot;2026-06-18&quot;:26.66},{&quot;2026-06-19&quot;:26.68},{&quot;2026-06-20&quot;:26.48},{&quot;2026-06-21&quot;:26.48},{&quot;2026-06-22&quot;:26.46},{&quot;2026-06-23&quot;:26.46},{&quot;2026-06-24&quot;:26.23},{&quot;2026-06-25&quot;:26.23},{&quot;2026-06-26&quot;:26.62},{&quot;2026-06-27&quot;:26.63},{&quot;2026-06-28&quot;:25.06},{&quot;2026-06-29&quot;:26.06},{&quot;2026-06-30&quot;:26.06},{&quot;2026-07-01&quot;:25.58},{&quot;2026-07-02&quot;:25.58},{&quot;2026-07-03&quot;:25.8},{&quot;2026-07-04&quot;:27.75},{&quot;2026-07-05&quot;:27.75},{&quot;2026-07-06&quot;:27.75},{&quot;2026-07-07&quot;:27.79},{&quot;2026-07-08&quot;:28.07},{&quot;2026-07-09&quot;:28.3},{&quot;2026-07-10&quot;:28.3},{&quot;2026-07-11&quot;:28.29},{&quot;2026-07-12&quot;:28.89},{&quot;2026-07-13&quot;:28.05},{&quot;2026-07-14&quot;:28.25},{&quot;2026-07-15&quot;:29.27},{&quot;2026-07-16&quot;:28.52},{&quot;2026-07-17&quot;:28.99},{&quot;2026-07-18&quot;:27.76},{&quot;2026-07-19&quot;:28.84},{&quot;2026-07-20&quot;:28.84},{&quot;2026-07-21&quot;:29.11},{&quot;2026-07-22&quot;:29.11},{&quot;2026-07-23&quot;:29.52},{&quot;2026-07-24&quot;:29.63},{&quot;2026-07-25&quot;:30.47},{&quot;2026-07-26&quot;:30.43},{&quot;2026-07-27&quot;:31.35},{&quot;2026-07-28&quot;:31.06},{&quot;2026-07-29&quot;:31.06},{&quot;2026-07-30&quot;:31.09},{&quot;2026-07-31&quot;:30.59},{&quot;2026-08-01&quot;:30.91},{&quot;2026-08-02&quot;:31.35},{&quot;2026-08-03&quot;:30.85},{&quot;2026-08-04&quot;:30.85},{&quot;2026-08-05&quot;:30.49},{&quot;2026-08-07&quot;:30.41},{&quot;2026-08-08&quot;:29.86},{&quot;2026-08-09&quot;:30.2},{&quot;2026-08-10&quot;:30.21},{&quot;2026-08-11&quot;:30.21},{&quot;2026-08-12&quot;:29.45},{&quot;2026-08-13&quot;:29.37},{&quot;2026-08-14&quot;:29.37},{&quot;2026-08-15&quot;:28.74},{&quot;2026-08-16&quot;:28.74},{&quot;2026-08-17&quot;:28.18},{&quot;2026-08-18&quot;:27.93},{&quot;2026-08-19&quot;:28.55},{&quot;2026-08-20&quot;:28.55},{&quot;2026-08-21&quot;:28.55},{&quot;2026-08-22&quot;:28.54},{&quot;2026-08-23&quot;:29.1},{&quot;2026-08-24&quot;:29.52},{&quot;2026-08-25&quot;:29.25},{&quot;2026-08-26&quot;:29.25},{&quot;2026-08-27&quot;:29.25},{&quot;2026-08-28&quot;:29.25},{&quot;2026-08-29&quot;:29.25},{&quot;2026-08-30&quot;:28.6},{&quot;2026-08-31&quot;:28.81},{&quot;2026-09-01&quot;:28.81},{&quot;2026-09-02&quot;:28.39},{&quot;2026-09-03&quot;:27.17},{&quot;2026-09-04&quot;:27.17},{&quot;2026-09-05&quot;:27.17},{&quot;2026-09-06&quot;:27.17},{&quot;2026-09-07&quot;:26.53},{&quot;2026-09-08&quot;:26.67},{&quot;2026-09-09&quot;:27.07},{&quot;2026-09-10&quot;:27.07},{&quot;2026-09-11&quot;:27.07}]}"
        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 2000 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=6&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next">2</a><a href="/load_collection?collection_id=6&amp;direction=asc&amp;username=denvermullets&amp;page=3">3</a><a href="/load_collection?collection_id=6&amp;direction=asc&amp;username=denvermullets&amp;page=4">4</a><a href="/load_collection?collection_id=6&amp;direction=asc&amp;username=denvermullets&amp;page=5">5</a><a role="separator" aria-disabled="true">&hellip;</a><a href="/load_collection?collection_id=6&amp;direction=asc&amp;username=denvermullets&amp;page=40">40</a><a href="/load_collection?collection_id=6&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=6&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=6&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=6&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=6&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=6&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=6&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=6&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=6&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=6&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="83586"
          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">
              76
            </td>

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


            </td>

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

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

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

                </div>
            </td>

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

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

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

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

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


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

                </div>
            </td>

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

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

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-spm ss-mythic ss-fw ss-2x mr-4"></i>
              The Soul Stone


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Artifact — Infinity Stone
            </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>
              </div>
            </td>

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="19260"
          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">
              369
            </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>
              Sheoldred, the Apocalypse


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Phyrexian Praetor
            </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-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">
                  $95.08

                </div>
            </td>

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="95296"
          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-fin ss-mythic ss-fw ss-2x mr-4"></i>
              Kefka, Court Mage // Kefka, Ruler of Ruin


            </td>

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

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

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

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soa ss-mythic ss-fw ss-2x mr-4"></i>
              Force of Will


            </td>

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

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

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

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soa ss-mythic ss-fw ss-2x mr-4"></i>
              Triumph of the Hordes


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

                </div>
            </td>

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

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

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tsr ss-mythic ss-fw ss-2x mr-4"></i>
              Sliver Legion


            </td>

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></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">
                  $62.05

                </div>
            </td>

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $30.00
            </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="79460"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_79460" src="/boxset_card/79460?collection_id=6&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fic ss-mythic ss-fw ss-2x mr-4"></i>
              Y&#39;shtola, Night&#39;s Blessed


            </td>

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

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

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $35.00
            </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="95816"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_95816" src="/boxset_card/95816?collection_id=6&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2xm ss-mythic ss-fw ss-2x mr-4"></i>
              Sword of Fire and Ice


            </td>

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

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

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

                </div>
            </td>

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

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tla ss-mythic ss-fw ss-2x mr-4"></i>
              Badgermole Cub


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Badger Mole
            </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">
                  $46.65

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-one ss-mythic ss-fw ss-2x mr-4"></i>
              Mondrak, Glory Dominus


            </td>

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

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

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

                </div>
            </td>

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

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

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

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

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


            </td>

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

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

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

                </div>
            </td>

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="49157"
          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-mh2 ss-mythic ss-fw ss-2x mr-4"></i>
              Ragavan, Nimble Pilferer


            </td>

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

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="34725"
          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">
              312
            </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-rare ss-fw ss-2x mr-4"></i>
              Savai Triome


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land — Mountain Plains Swamp
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

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

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

                </div>
            </td>

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="48753"
          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">
              21
            </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-mythic ss-fw ss-2x mr-4"></i>
              Ranger-Captain of Eos


            </td>

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

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

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

                </div>
            </td>

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="5690"
          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">
              293
            </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-mythic ss-fw ss-2x mr-4"></i>
              Lumra, Bellow of the Woods


            </td>

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

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

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

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

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

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

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


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Vampire Knight
            </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-w'></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">
                  $39.83

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

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

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fdn ss-mythic ss-fw ss-2x mr-4"></i>
              Bloodthirsty Conqueror


            </td>

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

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

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

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

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

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

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


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

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

                </div>
            </td>

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

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

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

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-hob ss-mythic ss-fw ss-2x mr-4"></i>
              Gleaming Splendor


            </td>

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

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

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

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

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

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb2 ss-uncommon ss-fw ss-2x mr-4"></i>
              Sensei&#39;s Divining Top


            </td>

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

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

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

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

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

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

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


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

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="87681"
          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">
              242p
            </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-mythic ss-fw ss-2x mr-4"></i>
              Agatha&#39;s Soul Cauldron


            </td>

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

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

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

                </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">
                1.18
            </td>
        </tr>

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="71358"
          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">
              382
            </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>
              Rings of Brighthearth


            </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-3'></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">
                  $35.91

                </div>
            </td>

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

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

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-pmei ss-mythic ss-fw ss-2x mr-4"></i>
              Animar, Soul of Elements


            </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-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></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">
            </td>

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

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

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb2 ss-common ss-fw ss-2x mr-4"></i>
              Lotus Petal


            </td>

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

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

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

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

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="20085"
          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">
              3
            </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>
              Ulamog, the Infinite Gyre


            </td>

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="11651"
          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-cmr ss-mythic ss-fw ss-2x mr-4"></i>
              Sakashima of a Thousand Faces


            </td>

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

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

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

                    <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">
                $23.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="11651"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_11651" src="/boxset_card/11651?collection_id=6&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fdn ss-mythic ss-fw ss-2x mr-4"></i>
              Doubling Season


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

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-one ss-mythic ss-fw ss-2x mr-4"></i>
              Atraxa, Grand Unifier


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Phyrexian Angel
            </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-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></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">
                  $21.92

                    <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">
                <div class="flex items-center gap-2">
                  $32.57

                </div>
            </td>

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

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

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fca ss-mythic ss-fw ss-2x mr-4"></i>
              Atraxa, Grand Unifier


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Phyrexian Angel
            </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-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></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">
                  $32.03

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

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

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-hoc ss-mythic ss-fw ss-2x mr-4"></i>
              Delighted Halfling


            </td>

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

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

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

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-pza ss-mythic ss-fw ss-2x mr-4"></i>
              Doubling Season


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

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

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

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb2 ss-mythic ss-fw ss-2x mr-4"></i>
              Natural Order


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

                </div>
            </td>

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

                </div>
            </td>

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="73292"
          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-brr ss-mythic ss-fw ss-2x mr-4"></i>
              Mystic Forge


            </td>

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

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

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

                    <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">
                <div class="flex items-center gap-2">
                  $30.35

                </div>
            </td>

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $24.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="73292"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_73292" src="/boxset_card/73292?collection_id=6&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-mythic ss-fw ss-2x mr-4"></i>
              Scroll Rack


            </td>

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

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

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

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fca ss-mythic ss-fw ss-2x mr-4"></i>
              Purphoros, God of the Forge


            </td>

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

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

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

                </div>
            </td>

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="41923"
          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">
              271
            </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>
              Otawara, Soaring City


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

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

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

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

        <tr
          data-expandable-row-target="content"
          data-card-id="41923"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_41923" src="/boxset_card/41923?collection_id=6&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=6&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-pmei ss-mythic ss-fw ss-2x mr-4"></i>
              The First Sliver


            </td>

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-w'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></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">
                  $29.54

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2x2 ss-mythic ss-fw ss-2x mr-4"></i>
              Animar, Soul of Elements


            </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-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></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">
                  $29.35

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="5592"
          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">
              260
            </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>
              Three Tree City


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

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fin ss-mythic ss-fw ss-2x mr-4"></i>
              Sephiroth, Fabled SOLDIER // Sephiroth, One-Winged Angel


            </td>

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

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

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

                </div>
            </td>

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

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-spg ss-mythic ss-fw ss-2x mr-4"></i>
              Sylvan Library


            </td>

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

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

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="49035"
          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">
              116
            </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-mythic ss-fw ss-2x mr-4"></i>
              Yawgmoth, Thran Physician


            </td>

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

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

                </div>
            </td>

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

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

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

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-pmei ss-mythic ss-fw ss-2x mr-4"></i>
              Atraxa, Praetors&#39; Voice


            </td>

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

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

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

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

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

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

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


            </td>

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

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

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

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-hob ss-mythic ss-fw ss-2x mr-4"></i>
              The Queen of Dale


            </td>

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

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

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

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

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

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-brr ss-mythic ss-fw ss-2x mr-4"></i>
              Aetherflux Reservoir


            </td>

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

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

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

                </div>
            </td>

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

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

        <tr
          data-expandable-row-target="content"
          data-card-id="72911"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_72911" src="/boxset_card/72911?collection_id=6&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 2000 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=6&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next">2</a><a href="/load_collection?collection_id=6&amp;direction=asc&amp;username=denvermullets&amp;page=3">3</a><a href="/load_collection?collection_id=6&amp;direction=asc&amp;username=denvermullets&amp;page=4">4</a><a href="/load_collection?collection_id=6&amp;direction=asc&amp;username=denvermullets&amp;page=5">5</a><a role="separator" aria-disabled="true">&hellip;</a><a href="/load_collection?collection_id=6&amp;direction=asc&amp;username=denvermullets&amp;page=40">40</a><a href="/load_collection?collection_id=6&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next" aria-label="Next">&gt;</a></nav>
    </div>
</div>

</template></turbo-stream>