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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $59.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="Ancient Silver Dragon" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/e/ced18935-4ce9-466e-a88d-2b14ff8f989f.jpg?1783922795" />

        <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">
            Ancient Silver Dragon
        </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 — Elder Dragon</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-6'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Ancient Silver Dragon" src="https://cards.scryfall.io/large/front/c/e/ced18935-4ce9-466e-a88d-2b14ff8f989f.jpg?1783922795" />
    </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">
                $54.92
              </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">
                $59.57
              </span>

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell 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-13&quot;:62.52},{&quot;2026-06-14&quot;:62.52},{&quot;2026-06-15&quot;:62.52},{&quot;2026-06-16&quot;:62.52},{&quot;2026-06-17&quot;:62.52},{&quot;2026-06-18&quot;:62.52},{&quot;2026-06-19&quot;:62.52},{&quot;2026-06-20&quot;:62.52},{&quot;2026-06-21&quot;:62.7},{&quot;2026-06-22&quot;:62.7},{&quot;2026-06-23&quot;:62.7},{&quot;2026-06-24&quot;:62.7},{&quot;2026-06-25&quot;:62.7},{&quot;2026-06-26&quot;:62.7},{&quot;2026-06-27&quot;:62.7},{&quot;2026-06-28&quot;:62.7},{&quot;2026-06-29&quot;:62.7},{&quot;2026-06-30&quot;:62.7},{&quot;2026-07-01&quot;:61.63},{&quot;2026-07-02&quot;:61.63},{&quot;2026-07-03&quot;:61.63},{&quot;2026-07-04&quot;:61.63},{&quot;2026-07-05&quot;:61.63},{&quot;2026-07-06&quot;:61.63},{&quot;2026-07-07&quot;:61.63},{&quot;2026-07-08&quot;:61.63},{&quot;2026-07-09&quot;:61.63},{&quot;2026-07-10&quot;:61.63},{&quot;2026-07-11&quot;:61.63},{&quot;2026-07-12&quot;:61.63},{&quot;2026-07-13&quot;:61.63},{&quot;2026-07-14&quot;:62.01},{&quot;2026-07-15&quot;:62.01},{&quot;2026-07-16&quot;:62.01},{&quot;2026-07-17&quot;:62.01},{&quot;2026-07-18&quot;:62.01},{&quot;2026-07-19&quot;:62.01},{&quot;2026-07-20&quot;:62.01},{&quot;2026-07-21&quot;:62.01},{&quot;2026-07-22&quot;:62.01},{&quot;2026-07-23&quot;:62.01},{&quot;2026-07-24&quot;:62.01},{&quot;2026-07-25&quot;:62.01},{&quot;2026-07-26&quot;:62.81},{&quot;2026-07-27&quot;:62.81},{&quot;2026-07-28&quot;:62.81},{&quot;2026-07-29&quot;:62.5},{&quot;2026-07-30&quot;:62.5},{&quot;2026-07-31&quot;:62.54},{&quot;2026-08-01&quot;:62.54},{&quot;2026-08-02&quot;:62.16},{&quot;2026-08-03&quot;:62.16},{&quot;2026-08-04&quot;:62.16},{&quot;2026-08-05&quot;:62.16},{&quot;2026-08-07&quot;:62.16},{&quot;2026-08-08&quot;:62.16},{&quot;2026-08-09&quot;:62.16},{&quot;2026-08-10&quot;:62.16},{&quot;2026-08-11&quot;:62.16},{&quot;2026-08-12&quot;:62.16},{&quot;2026-08-13&quot;:62.16},{&quot;2026-08-14&quot;:61.8},{&quot;2026-08-15&quot;:61.8},{&quot;2026-08-16&quot;:61.8},{&quot;2026-08-17&quot;:61.8},{&quot;2026-08-18&quot;:61.33},{&quot;2026-08-19&quot;:60.89},{&quot;2026-08-20&quot;:60.89},{&quot;2026-08-21&quot;:60.89},{&quot;2026-08-22&quot;:60.89},{&quot;2026-08-23&quot;:60.89},{&quot;2026-08-24&quot;:60.89},{&quot;2026-08-25&quot;:60.93},{&quot;2026-08-26&quot;:60.93},{&quot;2026-08-27&quot;:60.84},{&quot;2026-08-28&quot;:60.84},{&quot;2026-08-29&quot;:60.84},{&quot;2026-08-30&quot;:60.84},{&quot;2026-08-31&quot;:60.17},{&quot;2026-09-01&quot;:60.1},{&quot;2026-09-02&quot;:60.1},{&quot;2026-09-03&quot;:60.59},{&quot;2026-09-04&quot;:61.11},{&quot;2026-09-05&quot;:61.11},{&quot;2026-09-06&quot;:61.11},{&quot;2026-09-07&quot;:61.09},{&quot;2026-09-08&quot;:61.09},{&quot;2026-09-09&quot;:60.55},{&quot;2026-09-10&quot;:59.57},{&quot;2026-09-11&quot;:59.57}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:54.49},{&quot;2026-06-14&quot;:54.69},{&quot;2026-06-15&quot;:54.66},{&quot;2026-06-16&quot;:54.97},{&quot;2026-06-17&quot;:55.22},{&quot;2026-06-18&quot;:55.29},{&quot;2026-06-19&quot;:55.63},{&quot;2026-06-20&quot;:55.84},{&quot;2026-06-21&quot;:55.84},{&quot;2026-06-22&quot;:56.05},{&quot;2026-06-23&quot;:56.05},{&quot;2026-06-24&quot;:56.05},{&quot;2026-06-25&quot;:56.13},{&quot;2026-06-26&quot;:55.93},{&quot;2026-06-27&quot;:55.81},{&quot;2026-06-28&quot;:55.83},{&quot;2026-06-29&quot;:55.83},{&quot;2026-06-30&quot;:55.83},{&quot;2026-07-01&quot;:56.37},{&quot;2026-07-02&quot;:56.37},{&quot;2026-07-03&quot;:56.51},{&quot;2026-07-04&quot;:56.66},{&quot;2026-07-05&quot;:56.64},{&quot;2026-07-06&quot;:57.0},{&quot;2026-07-07&quot;:57.3},{&quot;2026-07-08&quot;:57.29},{&quot;2026-07-09&quot;:57.29},{&quot;2026-07-10&quot;:57.29},{&quot;2026-07-11&quot;:57.31},{&quot;2026-07-12&quot;:57.08},{&quot;2026-07-13&quot;:56.58},{&quot;2026-07-14&quot;:56.58},{&quot;2026-07-15&quot;:56.58},{&quot;2026-07-16&quot;:56.58},{&quot;2026-07-17&quot;:56.4},{&quot;2026-07-18&quot;:56.48},{&quot;2026-07-19&quot;:56.85},{&quot;2026-07-20&quot;:57.23},{&quot;2026-07-21&quot;:57.51},{&quot;2026-07-22&quot;:56.65},{&quot;2026-07-23&quot;:56.65},{&quot;2026-07-24&quot;:56.77},{&quot;2026-07-25&quot;:56.77},{&quot;2026-07-26&quot;:56.77},{&quot;2026-07-27&quot;:56.74},{&quot;2026-07-28&quot;:56.78},{&quot;2026-07-29&quot;:57.14},{&quot;2026-07-30&quot;:57.11},{&quot;2026-07-31&quot;:56.7},{&quot;2026-08-01&quot;:55.64},{&quot;2026-08-02&quot;:55.47},{&quot;2026-08-03&quot;:55.41},{&quot;2026-08-04&quot;:54.99},{&quot;2026-08-05&quot;:55.31},{&quot;2026-08-07&quot;:55.31},{&quot;2026-08-08&quot;:55.31},{&quot;2026-08-09&quot;:55.16},{&quot;2026-08-10&quot;:54.81},{&quot;2026-08-11&quot;:54.81},{&quot;2026-08-12&quot;:54.81},{&quot;2026-08-13&quot;:54.56},{&quot;2026-08-14&quot;:55.03},{&quot;2026-08-15&quot;:54.59},{&quot;2026-08-16&quot;:55.31},{&quot;2026-08-17&quot;:56.31},{&quot;2026-08-18&quot;:56.97},{&quot;2026-08-19&quot;:57.09},{&quot;2026-08-20&quot;:57.62},{&quot;2026-08-21&quot;:58.38},{&quot;2026-08-22&quot;:58.38},{&quot;2026-08-23&quot;:57.91},{&quot;2026-08-24&quot;:57.91},{&quot;2026-08-25&quot;:57.81},{&quot;2026-08-26&quot;:57.19},{&quot;2026-08-27&quot;:57.19},{&quot;2026-08-28&quot;:57.19},{&quot;2026-08-29&quot;:57.19},{&quot;2026-08-30&quot;:56.69},{&quot;2026-08-31&quot;:56.61},{&quot;2026-09-01&quot;:56.32},{&quot;2026-09-02&quot;:56.6},{&quot;2026-09-03&quot;:56.66},{&quot;2026-09-04&quot;:56.18},{&quot;2026-09-05&quot;:56.18},{&quot;2026-09-06&quot;:56.18},{&quot;2026-09-07&quot;:56.0},{&quot;2026-09-08&quot;:55.5},{&quot;2026-09-09&quot;:55.5},{&quot;2026-09-10&quot;:54.92},{&quot;2026-09-11&quot;:54.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="11938"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

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

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">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-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="Jeska&#39;s Will" src="https://cards.scryfall.io/large/front/4/e/4e91d96d-cc69-439b-b876-a7d57039022c.jpg?1783928812" />
    </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.70
              </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">
                $42.15
              </span>

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$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-13&quot;:46.73},{&quot;2026-06-14&quot;:46.73},{&quot;2026-06-15&quot;:46.73},{&quot;2026-06-16&quot;:46.73},{&quot;2026-06-17&quot;:46.67},{&quot;2026-06-18&quot;:46.67},{&quot;2026-06-19&quot;:46.67},{&quot;2026-06-20&quot;:46.67},{&quot;2026-06-21&quot;:46.67},{&quot;2026-06-22&quot;:46.67},{&quot;2026-06-23&quot;:46.67},{&quot;2026-06-24&quot;:46.67},{&quot;2026-06-25&quot;:46.67},{&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.87},{&quot;2026-06-30&quot;:46.87},{&quot;2026-07-01&quot;:46.84},{&quot;2026-07-02&quot;:46.8},{&quot;2026-07-03&quot;:46.8},{&quot;2026-07-04&quot;:46.8},{&quot;2026-07-05&quot;:46.8},{&quot;2026-07-06&quot;:46.56},{&quot;2026-07-07&quot;:46.56},{&quot;2026-07-08&quot;:46.56},{&quot;2026-07-09&quot;:47.06},{&quot;2026-07-10&quot;:47.06},{&quot;2026-07-11&quot;:47.06},{&quot;2026-07-12&quot;:47.06},{&quot;2026-07-13&quot;:47.06},{&quot;2026-07-14&quot;:46.92},{&quot;2026-07-15&quot;:46.92},{&quot;2026-07-16&quot;:46.92},{&quot;2026-07-17&quot;:46.92},{&quot;2026-07-18&quot;:46.92},{&quot;2026-07-19&quot;:46.92},{&quot;2026-07-20&quot;:46.87},{&quot;2026-07-21&quot;:46.7},{&quot;2026-07-22&quot;:46.49},{&quot;2026-07-23&quot;:46.49},{&quot;2026-07-24&quot;:46.49},{&quot;2026-07-25&quot;:45.87},{&quot;2026-07-26&quot;:45.87},{&quot;2026-07-27&quot;:45.87},{&quot;2026-07-28&quot;:45.43},{&quot;2026-07-29&quot;:45.43},{&quot;2026-07-30&quot;:45.43},{&quot;2026-07-31&quot;:45.31},{&quot;2026-08-01&quot;:45.1},{&quot;2026-08-02&quot;:45.1},{&quot;2026-08-03&quot;:45.1},{&quot;2026-08-04&quot;:44.79},{&quot;2026-08-05&quot;:44.56},{&quot;2026-08-07&quot;:44.45},{&quot;2026-08-08&quot;:44.45},{&quot;2026-08-09&quot;:44.45},{&quot;2026-08-10&quot;:44.45},{&quot;2026-08-11&quot;:44.71},{&quot;2026-08-12&quot;:44.38},{&quot;2026-08-13&quot;:44.38},{&quot;2026-08-14&quot;:44.38},{&quot;2026-08-15&quot;:44.38},{&quot;2026-08-16&quot;:44.38},{&quot;2026-08-17&quot;:43.89},{&quot;2026-08-18&quot;:43.89},{&quot;2026-08-19&quot;:43.89},{&quot;2026-08-20&quot;:43.89},{&quot;2026-08-21&quot;:43.89},{&quot;2026-08-22&quot;:43.29},{&quot;2026-08-23&quot;:43.29},{&quot;2026-08-24&quot;:43.29},{&quot;2026-08-25&quot;:43.29},{&quot;2026-08-26&quot;:42.76},{&quot;2026-08-27&quot;:42.4},{&quot;2026-08-28&quot;:41.68},{&quot;2026-08-29&quot;:41.68},{&quot;2026-08-30&quot;:41.68},{&quot;2026-08-31&quot;:41.68},{&quot;2026-09-01&quot;:41.59},{&quot;2026-09-02&quot;:41.67},{&quot;2026-09-03&quot;:41.76},{&quot;2026-09-04&quot;:41.68},{&quot;2026-09-05&quot;:42.0},{&quot;2026-09-06&quot;:42.0},{&quot;2026-09-07&quot;:42.0},{&quot;2026-09-08&quot;:42.0},{&quot;2026-09-09&quot;:42.15},{&quot;2026-09-10&quot;:42.15},{&quot;2026-09-11&quot;:42.15}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:41.02},{&quot;2026-06-14&quot;:41.29},{&quot;2026-06-15&quot;:42.01},{&quot;2026-06-16&quot;:42.17},{&quot;2026-06-17&quot;:41.56},{&quot;2026-06-18&quot;:42.0},{&quot;2026-06-19&quot;:41.5},{&quot;2026-06-20&quot;:41.92},{&quot;2026-06-21&quot;:42.17},{&quot;2026-06-22&quot;:41.82},{&quot;2026-06-23&quot;:42.07},{&quot;2026-06-24&quot;:41.76},{&quot;2026-06-25&quot;:40.34},{&quot;2026-06-26&quot;:40.25},{&quot;2026-06-27&quot;:39.65},{&quot;2026-06-28&quot;:38.93},{&quot;2026-06-29&quot;:38.14},{&quot;2026-06-30&quot;:38.4},{&quot;2026-07-01&quot;:38.34},{&quot;2026-07-02&quot;:38.06},{&quot;2026-07-03&quot;:38.86},{&quot;2026-07-04&quot;:39.06},{&quot;2026-07-05&quot;:38.7},{&quot;2026-07-06&quot;:38.6},{&quot;2026-07-07&quot;:38.66},{&quot;2026-07-08&quot;:38.59},{&quot;2026-07-09&quot;:38.42},{&quot;2026-07-10&quot;:38.43},{&quot;2026-07-11&quot;:38.39},{&quot;2026-07-12&quot;:38.71},{&quot;2026-07-13&quot;:39.13},{&quot;2026-07-14&quot;:39.3},{&quot;2026-07-15&quot;:39.39},{&quot;2026-07-16&quot;:40.3},{&quot;2026-07-17&quot;:40.3},{&quot;2026-07-18&quot;:40.55},{&quot;2026-07-19&quot;:40.39},{&quot;2026-07-20&quot;:40.61},{&quot;2026-07-21&quot;:40.25},{&quot;2026-07-22&quot;:40.04},{&quot;2026-07-23&quot;:39.47},{&quot;2026-07-24&quot;:39.46},{&quot;2026-07-25&quot;:39.23},{&quot;2026-07-26&quot;:39.25},{&quot;2026-07-27&quot;:39.22},{&quot;2026-07-28&quot;:39.0},{&quot;2026-07-29&quot;:39.01},{&quot;2026-07-30&quot;:38.78},{&quot;2026-07-31&quot;:39.3},{&quot;2026-08-01&quot;:39.25},{&quot;2026-08-02&quot;:39.44},{&quot;2026-08-03&quot;:39.46},{&quot;2026-08-04&quot;:39.43},{&quot;2026-08-05&quot;:39.17},{&quot;2026-08-07&quot;:39.49},{&quot;2026-08-08&quot;:39.94},{&quot;2026-08-09&quot;:39.85},{&quot;2026-08-10&quot;:39.87},{&quot;2026-08-11&quot;:40.35},{&quot;2026-08-12&quot;:40.85},{&quot;2026-08-13&quot;:41.11},{&quot;2026-08-14&quot;:41.37},{&quot;2026-08-15&quot;:41.37},{&quot;2026-08-16&quot;:41.19},{&quot;2026-08-17&quot;:40.32},{&quot;2026-08-18&quot;:40.85},{&quot;2026-08-19&quot;:40.72},{&quot;2026-08-20&quot;:40.82},{&quot;2026-08-21&quot;:40.16},{&quot;2026-08-22&quot;:40.16},{&quot;2026-08-23&quot;:39.76},{&quot;2026-08-24&quot;:39.11},{&quot;2026-08-25&quot;:38.77},{&quot;2026-08-26&quot;:38.47},{&quot;2026-08-27&quot;:38.25},{&quot;2026-08-28&quot;:37.86},{&quot;2026-08-29&quot;:37.86},{&quot;2026-08-30&quot;:37.98},{&quot;2026-08-31&quot;:38.18},{&quot;2026-09-01&quot;:38.44},{&quot;2026-09-02&quot;:39.32},{&quot;2026-09-03&quot;:39.1},{&quot;2026-09-04&quot;:39.72},{&quot;2026-09-05&quot;:40.34},{&quot;2026-09-06&quot;:40.45},{&quot;2026-09-07&quot;:40.43},{&quot;2026-09-08&quot;:40.04},{&quot;2026-09-09&quot;:40.04},{&quot;2026-09-10&quot;:39.74},{&quot;2026-09-11&quot;:39.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="28688"
  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">
            Twinflame Tyrant
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $26.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="Twinflame Tyrant" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/e/1eb34f51-0bd2-43c3-af95-2ce8dabcc7bb.jpg?1783909099" />

        <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">
            Twinflame Tyrant
        </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 — Dragon</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Twinflame Tyrant" src="https://cards.scryfall.io/large/front/1/e/1eb34f51-0bd2-43c3-af95-2ce8dabcc7bb.jpg?1783909099" />
    </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">
                $26.03
              </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">
                $26.84
              </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">$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;:26.68},{&quot;2026-06-14&quot;:26.68},{&quot;2026-06-15&quot;:26.61},{&quot;2026-06-16&quot;:26.84},{&quot;2026-06-17&quot;:26.77},{&quot;2026-06-18&quot;:27.05},{&quot;2026-06-19&quot;:27.08},{&quot;2026-06-20&quot;:26.89},{&quot;2026-06-21&quot;:26.93},{&quot;2026-06-22&quot;:26.93},{&quot;2026-06-23&quot;:27.0},{&quot;2026-06-24&quot;:26.96},{&quot;2026-06-25&quot;:26.96},{&quot;2026-06-26&quot;:26.96},{&quot;2026-06-27&quot;:26.96},{&quot;2026-06-28&quot;:26.96},{&quot;2026-06-29&quot;:27.07},{&quot;2026-06-30&quot;:27.07},{&quot;2026-07-01&quot;:26.2},{&quot;2026-07-02&quot;:26.01},{&quot;2026-07-03&quot;:25.75},{&quot;2026-07-04&quot;:25.75},{&quot;2026-07-05&quot;:25.74},{&quot;2026-07-06&quot;:25.98},{&quot;2026-07-07&quot;:26.12},{&quot;2026-07-08&quot;:26.12},{&quot;2026-07-09&quot;:26.1},{&quot;2026-07-10&quot;:26.15},{&quot;2026-07-11&quot;:26.15},{&quot;2026-07-12&quot;:26.15},{&quot;2026-07-13&quot;:26.24},{&quot;2026-07-14&quot;:26.45},{&quot;2026-07-15&quot;:26.66},{&quot;2026-07-16&quot;:26.66},{&quot;2026-07-17&quot;:26.87},{&quot;2026-07-18&quot;:27.38},{&quot;2026-07-19&quot;:27.38},{&quot;2026-07-20&quot;:27.58},{&quot;2026-07-21&quot;:27.68},{&quot;2026-07-22&quot;:28.11},{&quot;2026-07-23&quot;:28.11},{&quot;2026-07-24&quot;:28.51},{&quot;2026-07-25&quot;:28.56},{&quot;2026-07-26&quot;:28.74},{&quot;2026-07-27&quot;:28.25},{&quot;2026-07-28&quot;:27.97},{&quot;2026-07-29&quot;:27.97},{&quot;2026-07-30&quot;:27.97},{&quot;2026-07-31&quot;:27.82},{&quot;2026-08-01&quot;:27.82},{&quot;2026-08-02&quot;:27.7},{&quot;2026-08-03&quot;:27.7},{&quot;2026-08-04&quot;:27.7},{&quot;2026-08-05&quot;:27.26},{&quot;2026-08-07&quot;:26.23},{&quot;2026-08-08&quot;:26.63},{&quot;2026-08-09&quot;:26.64},{&quot;2026-08-10&quot;:26.59},{&quot;2026-08-11&quot;:26.58},{&quot;2026-08-12&quot;:26.53},{&quot;2026-08-13&quot;:26.63},{&quot;2026-08-14&quot;:26.66},{&quot;2026-08-15&quot;:26.95},{&quot;2026-08-16&quot;:27.0},{&quot;2026-08-17&quot;:27.54},{&quot;2026-08-18&quot;:27.92},{&quot;2026-08-19&quot;:28.08},{&quot;2026-08-20&quot;:27.8},{&quot;2026-08-21&quot;:27.77},{&quot;2026-08-22&quot;:27.71},{&quot;2026-08-23&quot;:27.29},{&quot;2026-08-24&quot;:27.29},{&quot;2026-08-25&quot;:27.25},{&quot;2026-08-26&quot;:27.25},{&quot;2026-08-27&quot;:27.25},{&quot;2026-08-28&quot;:27.32},{&quot;2026-08-29&quot;:27.32},{&quot;2026-08-30&quot;:27.39},{&quot;2026-08-31&quot;:27.04},{&quot;2026-09-01&quot;:27.04},{&quot;2026-09-02&quot;:27.04},{&quot;2026-09-03&quot;:27.04},{&quot;2026-09-04&quot;:27.04},{&quot;2026-09-05&quot;:27.04},{&quot;2026-09-06&quot;:26.71},{&quot;2026-09-07&quot;:26.84},{&quot;2026-09-08&quot;:26.84},{&quot;2026-09-09&quot;:26.84},{&quot;2026-09-10&quot;:26.84},{&quot;2026-09-11&quot;:26.84}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:25.35},{&quot;2026-06-14&quot;:24.95},{&quot;2026-06-15&quot;:25.78},{&quot;2026-06-16&quot;:26.48},{&quot;2026-06-17&quot;:26.14},{&quot;2026-06-18&quot;:26.82},{&quot;2026-06-19&quot;:27.03},{&quot;2026-06-20&quot;:26.44},{&quot;2026-06-21&quot;:26.51},{&quot;2026-06-22&quot;:26.29},{&quot;2026-06-23&quot;:26.35},{&quot;2026-06-24&quot;:26.59},{&quot;2026-06-25&quot;:25.75},{&quot;2026-06-26&quot;:25.4},{&quot;2026-06-27&quot;:25.13},{&quot;2026-06-28&quot;:24.54},{&quot;2026-06-29&quot;:24.77},{&quot;2026-06-30&quot;:25.0},{&quot;2026-07-01&quot;:25.17},{&quot;2026-07-02&quot;:25.09},{&quot;2026-07-03&quot;:25.47},{&quot;2026-07-04&quot;:25.64},{&quot;2026-07-05&quot;:25.79},{&quot;2026-07-06&quot;:25.93},{&quot;2026-07-07&quot;:26.05},{&quot;2026-07-08&quot;:25.47},{&quot;2026-07-09&quot;:25.55},{&quot;2026-07-10&quot;:25.18},{&quot;2026-07-11&quot;:25.51},{&quot;2026-07-12&quot;:25.42},{&quot;2026-07-13&quot;:25.31},{&quot;2026-07-14&quot;:26.02},{&quot;2026-07-15&quot;:26.41},{&quot;2026-07-16&quot;:27.07},{&quot;2026-07-17&quot;:27.16},{&quot;2026-07-18&quot;:27.14},{&quot;2026-07-19&quot;:27.5},{&quot;2026-07-20&quot;:27.45},{&quot;2026-07-21&quot;:27.06},{&quot;2026-07-22&quot;:27.25},{&quot;2026-07-23&quot;:26.62},{&quot;2026-07-24&quot;:25.6},{&quot;2026-07-25&quot;:25.34},{&quot;2026-07-26&quot;:24.76},{&quot;2026-07-27&quot;:24.76},{&quot;2026-07-28&quot;:24.51},{&quot;2026-07-29&quot;:24.63},{&quot;2026-07-30&quot;:24.37},{&quot;2026-07-31&quot;:24.4},{&quot;2026-08-01&quot;:24.93},{&quot;2026-08-02&quot;:25.17},{&quot;2026-08-03&quot;:25.19},{&quot;2026-08-04&quot;:26.74},{&quot;2026-08-05&quot;:27.54},{&quot;2026-08-07&quot;:27.62},{&quot;2026-08-08&quot;:27.34},{&quot;2026-08-09&quot;:27.39},{&quot;2026-08-10&quot;:27.4},{&quot;2026-08-11&quot;:27.23},{&quot;2026-08-12&quot;:25.48},{&quot;2026-08-13&quot;:25.62},{&quot;2026-08-14&quot;:25.85},{&quot;2026-08-15&quot;:26.05},{&quot;2026-08-16&quot;:25.94},{&quot;2026-08-17&quot;:26.43},{&quot;2026-08-18&quot;:26.96},{&quot;2026-08-19&quot;:26.67},{&quot;2026-08-20&quot;:26.47},{&quot;2026-08-21&quot;:26.27},{&quot;2026-08-22&quot;:26.48},{&quot;2026-08-23&quot;:26.13},{&quot;2026-08-24&quot;:25.75},{&quot;2026-08-25&quot;:25.96},{&quot;2026-08-26&quot;:25.72},{&quot;2026-08-27&quot;:25.78},{&quot;2026-08-28&quot;:26.08},{&quot;2026-08-29&quot;:26.08},{&quot;2026-08-30&quot;:26.56},{&quot;2026-08-31&quot;:26.23},{&quot;2026-09-01&quot;:26.24},{&quot;2026-09-02&quot;:25.96},{&quot;2026-09-03&quot;:25.81},{&quot;2026-09-04&quot;:25.22},{&quot;2026-09-05&quot;:24.81},{&quot;2026-09-06&quot;:24.79},{&quot;2026-09-07&quot;:25.19},{&quot;2026-09-08&quot;:25.56},{&quot;2026-09-09&quot;:25.85},{&quot;2026-09-10&quot;:25.57},{&quot;2026-09-11&quot;:26.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="80399"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-uma ss-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">
            Balefire Dragon
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Balefire Dragon
        </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 — Dragon</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Balefire Dragon" src="https://cards.scryfall.io/large/front/4/6/468d5308-2a6c-440e-a8d0-1c5e084afb82.jpg?1783933811" />
    </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">
                $19.25
              </span>

            </div>
          </div>

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

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

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$13.00</span>
              <span class="text-xs text-grey-text">Credit: $16.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-10&quot;:18.05},{&quot;2026-06-11&quot;:18.05},{&quot;2026-06-12&quot;:18.05},{&quot;2026-06-13&quot;:18.05},{&quot;2026-06-14&quot;:18.05},{&quot;2026-06-15&quot;:18.05},{&quot;2026-06-16&quot;:18.05},{&quot;2026-06-17&quot;:18.05},{&quot;2026-06-18&quot;:18.05},{&quot;2026-06-19&quot;:18.05},{&quot;2026-06-20&quot;:18.05},{&quot;2026-06-21&quot;:18.05},{&quot;2026-06-22&quot;:18.05},{&quot;2026-06-23&quot;:18.05},{&quot;2026-06-24&quot;:18.05},{&quot;2026-06-25&quot;:18.05},{&quot;2026-06-26&quot;:18.05},{&quot;2026-06-27&quot;:18.05},{&quot;2026-06-28&quot;:18.05},{&quot;2026-06-29&quot;:18.05},{&quot;2026-06-30&quot;:18.05},{&quot;2026-07-01&quot;:18.05},{&quot;2026-07-02&quot;:18.05},{&quot;2026-07-03&quot;:18.05},{&quot;2026-07-04&quot;:18.05},{&quot;2026-07-05&quot;:18.05},{&quot;2026-07-06&quot;:18.05},{&quot;2026-07-07&quot;:18.05},{&quot;2026-07-08&quot;:18.05},{&quot;2026-07-09&quot;:18.05},{&quot;2026-07-10&quot;:18.05},{&quot;2026-07-11&quot;:18.05},{&quot;2026-07-12&quot;:18.05},{&quot;2026-07-13&quot;:18.05},{&quot;2026-07-14&quot;:18.05},{&quot;2026-07-15&quot;:18.05},{&quot;2026-07-16&quot;:18.05},{&quot;2026-07-17&quot;:18.05},{&quot;2026-07-18&quot;:18.05},{&quot;2026-07-19&quot;:18.05},{&quot;2026-07-20&quot;:18.05},{&quot;2026-07-21&quot;:18.05},{&quot;2026-07-23&quot;:18.05},{&quot;2026-07-25&quot;:18.05},{&quot;2026-07-26&quot;:19.04},{&quot;2026-07-27&quot;:19.04},{&quot;2026-07-29&quot;:19.04},{&quot;2026-07-30&quot;:19.04},{&quot;2026-07-31&quot;:19.04},{&quot;2026-08-01&quot;:19.04},{&quot;2026-08-02&quot;:19.04},{&quot;2026-08-03&quot;:19.04},{&quot;2026-08-04&quot;:19.04},{&quot;2026-08-05&quot;:19.04},{&quot;2026-08-07&quot;:19.04},{&quot;2026-08-08&quot;:19.04},{&quot;2026-08-09&quot;:19.04},{&quot;2026-08-10&quot;:19.04},{&quot;2026-08-11&quot;:19.04},{&quot;2026-08-12&quot;:19.04},{&quot;2026-08-13&quot;:19.04},{&quot;2026-08-14&quot;:19.04},{&quot;2026-08-15&quot;:19.04},{&quot;2026-08-16&quot;:19.04},{&quot;2026-08-17&quot;:19.04},{&quot;2026-08-18&quot;:19.04},{&quot;2026-08-19&quot;:19.04},{&quot;2026-08-20&quot;:19.04},{&quot;2026-08-21&quot;:19.04},{&quot;2026-08-22&quot;:19.04},{&quot;2026-08-23&quot;:19.04},{&quot;2026-08-24&quot;:19.04},{&quot;2026-08-25&quot;:19.04},{&quot;2026-08-26&quot;:19.03},{&quot;2026-08-27&quot;:19.03},{&quot;2026-08-28&quot;:19.03},{&quot;2026-08-29&quot;:19.03},{&quot;2026-08-30&quot;:18.87},{&quot;2026-08-31&quot;:18.87},{&quot;2026-09-01&quot;:18.87},{&quot;2026-09-02&quot;:18.87},{&quot;2026-09-03&quot;:18.87},{&quot;2026-09-04&quot;:18.87},{&quot;2026-09-05&quot;:18.87},{&quot;2026-09-06&quot;:18.87},{&quot;2026-09-07&quot;:18.87},{&quot;2026-09-08&quot;:18.87},{&quot;2026-09-09&quot;:18.87},{&quot;2026-09-10&quot;:18.87},{&quot;2026-09-11&quot;:18.87}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:17.84},{&quot;2026-06-11&quot;:17.84},{&quot;2026-06-12&quot;:17.73},{&quot;2026-06-13&quot;:17.73},{&quot;2026-06-14&quot;:17.73},{&quot;2026-06-15&quot;:17.73},{&quot;2026-06-16&quot;:17.73},{&quot;2026-06-17&quot;:17.77},{&quot;2026-06-18&quot;:17.77},{&quot;2026-06-19&quot;:17.77},{&quot;2026-06-20&quot;:17.77},{&quot;2026-06-21&quot;:17.59},{&quot;2026-06-22&quot;:17.59},{&quot;2026-06-23&quot;:17.47},{&quot;2026-06-24&quot;:17.47},{&quot;2026-06-25&quot;:17.77},{&quot;2026-06-26&quot;:17.66},{&quot;2026-06-27&quot;:17.68},{&quot;2026-06-28&quot;:17.56},{&quot;2026-06-29&quot;:17.64},{&quot;2026-06-30&quot;:17.86},{&quot;2026-07-01&quot;:17.83},{&quot;2026-07-02&quot;:18.24},{&quot;2026-07-03&quot;:18.24},{&quot;2026-07-04&quot;:18.15},{&quot;2026-07-05&quot;:18.08},{&quot;2026-07-06&quot;:18.08},{&quot;2026-07-07&quot;:18.08},{&quot;2026-07-08&quot;:18.52},{&quot;2026-07-09&quot;:18.52},{&quot;2026-07-10&quot;:18.52},{&quot;2026-07-11&quot;:18.29},{&quot;2026-07-12&quot;:18.29},{&quot;2026-07-13&quot;:18.29},{&quot;2026-07-14&quot;:18.29},{&quot;2026-07-15&quot;:18.29},{&quot;2026-07-16&quot;:18.29},{&quot;2026-07-17&quot;:18.29},{&quot;2026-07-18&quot;:18.29},{&quot;2026-07-19&quot;:18.29},{&quot;2026-07-20&quot;:18.4},{&quot;2026-07-21&quot;:18.4},{&quot;2026-07-23&quot;:18.4},{&quot;2026-07-25&quot;:18.46},{&quot;2026-07-26&quot;:18.46},{&quot;2026-07-27&quot;:18.42},{&quot;2026-07-29&quot;:18.89},{&quot;2026-07-30&quot;:18.89},{&quot;2026-07-31&quot;:18.89},{&quot;2026-08-01&quot;:18.89},{&quot;2026-08-02&quot;:19.16},{&quot;2026-08-03&quot;:19.16},{&quot;2026-08-04&quot;:19.16},{&quot;2026-08-05&quot;:19.16},{&quot;2026-08-07&quot;:19.16},{&quot;2026-08-08&quot;:19.16},{&quot;2026-08-09&quot;:19.16},{&quot;2026-08-10&quot;:19.16},{&quot;2026-08-11&quot;:19.16},{&quot;2026-08-12&quot;:19.6},{&quot;2026-08-13&quot;:19.6},{&quot;2026-08-14&quot;:19.6},{&quot;2026-08-15&quot;:19.56},{&quot;2026-08-16&quot;:19.83},{&quot;2026-08-17&quot;:19.35},{&quot;2026-08-18&quot;:19.35},{&quot;2026-08-19&quot;:19.35},{&quot;2026-08-20&quot;:19.35},{&quot;2026-08-21&quot;:19.45},{&quot;2026-08-22&quot;:19.45},{&quot;2026-08-23&quot;:19.53},{&quot;2026-08-24&quot;:19.29},{&quot;2026-08-25&quot;:19.29},{&quot;2026-08-26&quot;:20.13},{&quot;2026-08-27&quot;:20.13},{&quot;2026-08-28&quot;:20.13},{&quot;2026-08-29&quot;:20.13},{&quot;2026-08-30&quot;:19.87},{&quot;2026-08-31&quot;:19.87},{&quot;2026-09-01&quot;:19.87},{&quot;2026-09-02&quot;:19.87},{&quot;2026-09-03&quot;:19.87},{&quot;2026-09-04&quot;:19.87},{&quot;2026-09-05&quot;:19.25},{&quot;2026-09-06&quot;:19.25},{&quot;2026-09-07&quot;:19.25},{&quot;2026-09-08&quot;:19.25},{&quot;2026-09-09&quot;:19.25},{&quot;2026-09-10&quot;:19.25},{&quot;2026-09-11&quot;:19.25}]}"
        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="13807"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-clb ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

        <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">
            Astral Dragon
        </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 — Dragon</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-6'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Astral Dragon" src="https://cards.scryfall.io/large/front/6/7/670fbc63-4c9b-4e57-b53e-4ca4d7a224ba.jpg?1783922511" />
    </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">
                $18.26
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:21.14},{&quot;2026-06-14&quot;:21.12},{&quot;2026-06-15&quot;:21.12},{&quot;2026-06-16&quot;:21.12},{&quot;2026-06-17&quot;:20.59},{&quot;2026-06-18&quot;:20.62},{&quot;2026-06-19&quot;:20.77},{&quot;2026-06-20&quot;:20.53},{&quot;2026-06-21&quot;:20.17},{&quot;2026-06-22&quot;:20.06},{&quot;2026-06-23&quot;:19.96},{&quot;2026-06-24&quot;:19.85},{&quot;2026-06-25&quot;:20.01},{&quot;2026-06-26&quot;:19.91},{&quot;2026-06-27&quot;:19.92},{&quot;2026-06-28&quot;:20.19},{&quot;2026-06-29&quot;:20.41},{&quot;2026-06-30&quot;:20.37},{&quot;2026-07-01&quot;:20.31},{&quot;2026-07-02&quot;:20.42},{&quot;2026-07-03&quot;:20.4},{&quot;2026-07-04&quot;:20.5},{&quot;2026-07-05&quot;:20.5},{&quot;2026-07-06&quot;:20.52},{&quot;2026-07-07&quot;:20.7},{&quot;2026-07-08&quot;:20.42},{&quot;2026-07-09&quot;:20.42},{&quot;2026-07-10&quot;:20.57},{&quot;2026-07-11&quot;:20.44},{&quot;2026-07-12&quot;:20.46},{&quot;2026-07-13&quot;:20.37},{&quot;2026-07-14&quot;:20.37},{&quot;2026-07-15&quot;:20.32},{&quot;2026-07-16&quot;:20.32},{&quot;2026-07-17&quot;:20.28},{&quot;2026-07-18&quot;:20.28},{&quot;2026-07-19&quot;:20.19},{&quot;2026-07-20&quot;:19.97},{&quot;2026-07-21&quot;:19.97},{&quot;2026-07-22&quot;:19.87},{&quot;2026-07-23&quot;:19.87},{&quot;2026-07-24&quot;:19.87},{&quot;2026-07-25&quot;:19.87},{&quot;2026-07-26&quot;:19.87},{&quot;2026-07-27&quot;:19.89},{&quot;2026-07-28&quot;:19.86},{&quot;2026-07-29&quot;:19.86},{&quot;2026-07-30&quot;:19.76},{&quot;2026-07-31&quot;:19.81},{&quot;2026-08-01&quot;:19.81},{&quot;2026-08-02&quot;:19.86},{&quot;2026-08-03&quot;:19.96},{&quot;2026-08-04&quot;:19.83},{&quot;2026-08-05&quot;:19.93},{&quot;2026-08-07&quot;:19.93},{&quot;2026-08-08&quot;:19.96},{&quot;2026-08-09&quot;:19.96},{&quot;2026-08-10&quot;:19.67},{&quot;2026-08-11&quot;:19.54},{&quot;2026-08-12&quot;:19.44},{&quot;2026-08-13&quot;:19.39},{&quot;2026-08-14&quot;:19.22},{&quot;2026-08-15&quot;:19.15},{&quot;2026-08-16&quot;:19.17},{&quot;2026-08-17&quot;:19.17},{&quot;2026-08-18&quot;:19.13},{&quot;2026-08-19&quot;:19.27},{&quot;2026-08-20&quot;:19.23},{&quot;2026-08-21&quot;:19.23},{&quot;2026-08-22&quot;:19.14},{&quot;2026-08-23&quot;:18.92},{&quot;2026-08-24&quot;:18.8},{&quot;2026-08-25&quot;:18.8},{&quot;2026-08-26&quot;:18.95},{&quot;2026-08-27&quot;:18.95},{&quot;2026-08-28&quot;:18.93},{&quot;2026-08-29&quot;:18.93},{&quot;2026-08-30&quot;:18.89},{&quot;2026-08-31&quot;:18.98},{&quot;2026-09-01&quot;:18.87},{&quot;2026-09-02&quot;:18.72},{&quot;2026-09-03&quot;:18.83},{&quot;2026-09-04&quot;:18.68},{&quot;2026-09-05&quot;:18.72},{&quot;2026-09-06&quot;:18.67},{&quot;2026-09-07&quot;:18.59},{&quot;2026-09-08&quot;:18.45},{&quot;2026-09-09&quot;:18.31},{&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="12292"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-clb ss-rare ss-fw ss-2x flex-shrink-0"></i>

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

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

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

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

        <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">
            Descent into Avernus
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></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="Descent into Avernus" src="https://cards.scryfall.io/large/front/f/a/faadf72f-b2d5-4271-8d5c-a586acf63453.jpg?1783922742" />
    </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">
                $14.60
              </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">
                $13.43
              </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">$13.00</span>
              <span class="text-xs text-grey-text">Credit: $16.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-11&quot;:15.55},{&quot;2026-06-12&quot;:16.29},{&quot;2026-06-13&quot;:16.29},{&quot;2026-06-14&quot;:16.29},{&quot;2026-06-15&quot;:16.29},{&quot;2026-06-16&quot;:16.29},{&quot;2026-06-17&quot;:16.29},{&quot;2026-06-18&quot;:16.54},{&quot;2026-06-19&quot;:16.54},{&quot;2026-06-20&quot;:16.54},{&quot;2026-06-21&quot;:16.54},{&quot;2026-06-22&quot;:16.54},{&quot;2026-06-23&quot;:16.54},{&quot;2026-06-24&quot;:16.54},{&quot;2026-06-25&quot;:16.54},{&quot;2026-06-26&quot;:16.54},{&quot;2026-06-27&quot;:16.54},{&quot;2026-06-28&quot;:16.55},{&quot;2026-06-29&quot;:16.55},{&quot;2026-06-30&quot;:16.55},{&quot;2026-07-01&quot;:16.49},{&quot;2026-07-02&quot;:16.68},{&quot;2026-07-03&quot;:16.93},{&quot;2026-07-04&quot;:16.93},{&quot;2026-07-05&quot;:16.93},{&quot;2026-07-06&quot;:16.93},{&quot;2026-07-07&quot;:17.05},{&quot;2026-07-08&quot;:17.05},{&quot;2026-07-09&quot;:17.05},{&quot;2026-07-10&quot;:17.05},{&quot;2026-07-11&quot;:17.05},{&quot;2026-07-12&quot;:16.7},{&quot;2026-07-13&quot;:16.7},{&quot;2026-07-14&quot;:16.7},{&quot;2026-07-15&quot;:16.7},{&quot;2026-07-16&quot;:16.7},{&quot;2026-07-17&quot;:16.7},{&quot;2026-07-18&quot;:16.7},{&quot;2026-07-19&quot;:16.7},{&quot;2026-07-20&quot;:16.7},{&quot;2026-07-21&quot;:16.7},{&quot;2026-07-23&quot;:16.86},{&quot;2026-07-25&quot;:16.86},{&quot;2026-07-26&quot;:16.86},{&quot;2026-07-27&quot;:16.79},{&quot;2026-07-28&quot;:16.79},{&quot;2026-07-29&quot;:16.65},{&quot;2026-07-30&quot;:16.21},{&quot;2026-07-31&quot;:16.21},{&quot;2026-08-01&quot;:16.19},{&quot;2026-08-02&quot;:16.2},{&quot;2026-08-03&quot;:16.23},{&quot;2026-08-04&quot;:16.02},{&quot;2026-08-05&quot;:16.02},{&quot;2026-08-07&quot;:15.77},{&quot;2026-08-08&quot;:15.73},{&quot;2026-08-09&quot;:15.54},{&quot;2026-08-10&quot;:15.08},{&quot;2026-08-11&quot;:14.79},{&quot;2026-08-12&quot;:14.26},{&quot;2026-08-13&quot;:14.07},{&quot;2026-08-14&quot;:13.93},{&quot;2026-08-15&quot;:13.81},{&quot;2026-08-16&quot;:13.86},{&quot;2026-08-17&quot;:13.61},{&quot;2026-08-18&quot;:13.66},{&quot;2026-08-19&quot;:13.69},{&quot;2026-08-20&quot;:13.69},{&quot;2026-08-21&quot;:13.58},{&quot;2026-08-22&quot;:13.6},{&quot;2026-08-23&quot;:13.62},{&quot;2026-08-24&quot;:13.65},{&quot;2026-08-25&quot;:13.65},{&quot;2026-08-26&quot;:13.8},{&quot;2026-08-27&quot;:13.86},{&quot;2026-08-28&quot;:13.85},{&quot;2026-08-29&quot;:13.85},{&quot;2026-08-30&quot;:13.58},{&quot;2026-08-31&quot;:13.74},{&quot;2026-09-01&quot;:13.74},{&quot;2026-09-02&quot;:13.76},{&quot;2026-09-03&quot;:13.76},{&quot;2026-09-04&quot;:13.33},{&quot;2026-09-05&quot;:13.6},{&quot;2026-09-06&quot;:13.56},{&quot;2026-09-07&quot;:13.45},{&quot;2026-09-08&quot;:13.45},{&quot;2026-09-09&quot;:13.43},{&quot;2026-09-10&quot;:13.43},{&quot;2026-09-11&quot;:13.43}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:12.61},{&quot;2026-06-12&quot;:13.13},{&quot;2026-06-13&quot;:13.33},{&quot;2026-06-14&quot;:12.86},{&quot;2026-06-15&quot;:13.06},{&quot;2026-06-16&quot;:13.16},{&quot;2026-06-17&quot;:13.08},{&quot;2026-06-18&quot;:13.71},{&quot;2026-06-19&quot;:13.34},{&quot;2026-06-20&quot;:13.46},{&quot;2026-06-21&quot;:12.15},{&quot;2026-06-22&quot;:12.38},{&quot;2026-06-23&quot;:12.17},{&quot;2026-06-24&quot;:12.94},{&quot;2026-06-25&quot;:13.04},{&quot;2026-06-26&quot;:12.78},{&quot;2026-06-27&quot;:12.33},{&quot;2026-06-28&quot;:12.18},{&quot;2026-06-29&quot;:11.75},{&quot;2026-06-30&quot;:12.39},{&quot;2026-07-01&quot;:12.79},{&quot;2026-07-02&quot;:12.79},{&quot;2026-07-03&quot;:12.84},{&quot;2026-07-04&quot;:12.97},{&quot;2026-07-05&quot;:13.41},{&quot;2026-07-06&quot;:12.93},{&quot;2026-07-07&quot;:12.84},{&quot;2026-07-08&quot;:12.85},{&quot;2026-07-09&quot;:13.08},{&quot;2026-07-10&quot;:13.61},{&quot;2026-07-11&quot;:13.61},{&quot;2026-07-12&quot;:13.53},{&quot;2026-07-13&quot;:13.21},{&quot;2026-07-14&quot;:13.53},{&quot;2026-07-15&quot;:13.48},{&quot;2026-07-16&quot;:12.76},{&quot;2026-07-17&quot;:12.07},{&quot;2026-07-18&quot;:12.0},{&quot;2026-07-19&quot;:12.08},{&quot;2026-07-20&quot;:12.21},{&quot;2026-07-21&quot;:12.56},{&quot;2026-07-23&quot;:12.78},{&quot;2026-07-25&quot;:12.67},{&quot;2026-07-26&quot;:12.87},{&quot;2026-07-27&quot;:12.81},{&quot;2026-07-28&quot;:12.95},{&quot;2026-07-29&quot;:13.17},{&quot;2026-07-30&quot;:13.05},{&quot;2026-07-31&quot;:13.18},{&quot;2026-08-01&quot;:13.06},{&quot;2026-08-02&quot;:12.76},{&quot;2026-08-03&quot;:12.21},{&quot;2026-08-04&quot;:12.04},{&quot;2026-08-05&quot;:12.08},{&quot;2026-08-07&quot;:12.55},{&quot;2026-08-08&quot;:12.58},{&quot;2026-08-09&quot;:12.73},{&quot;2026-08-10&quot;:12.42},{&quot;2026-08-11&quot;:12.69},{&quot;2026-08-12&quot;:12.23},{&quot;2026-08-13&quot;:12.27},{&quot;2026-08-14&quot;:11.94},{&quot;2026-08-15&quot;:12.14},{&quot;2026-08-16&quot;:12.03},{&quot;2026-08-17&quot;:12.02},{&quot;2026-08-18&quot;:12.05},{&quot;2026-08-19&quot;:12.02},{&quot;2026-08-20&quot;:12.02},{&quot;2026-08-21&quot;:13.2},{&quot;2026-08-22&quot;:13.2},{&quot;2026-08-23&quot;:13.24},{&quot;2026-08-24&quot;:13.28},{&quot;2026-08-25&quot;:13.28},{&quot;2026-08-26&quot;:13.95},{&quot;2026-08-27&quot;:13.78},{&quot;2026-08-28&quot;:12.83},{&quot;2026-08-29&quot;:12.83},{&quot;2026-08-30&quot;:13.03},{&quot;2026-08-31&quot;:13.27},{&quot;2026-09-01&quot;:13.27},{&quot;2026-09-02&quot;:12.99},{&quot;2026-09-03&quot;:13.37},{&quot;2026-09-04&quot;:13.87},{&quot;2026-09-05&quot;:14.31},{&quot;2026-09-06&quot;:14.44},{&quot;2026-09-07&quot;:13.81},{&quot;2026-09-08&quot;:13.96},{&quot;2026-09-09&quot;:15.41},{&quot;2026-09-10&quot;:14.86},{&quot;2026-09-11&quot;:14.6}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Seize the Day" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/e/0ee67808-abe3-4755-83a0-03681ad5f82f.jpg?1783933798" />

        <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">
            Seize the Day
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Seize the Day" src="https://cards.scryfall.io/large/front/0/e/0ee67808-abe3-4755-83a0-03681ad5f82f.jpg?1783933798" />
    </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">
                $14.60
              </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">
                $16.50
              </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.25</span>
              <span class="text-xs text-grey-text">Credit: $6.83</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-11&quot;:16.14},{&quot;2026-06-12&quot;:16.14},{&quot;2026-06-13&quot;:16.14},{&quot;2026-06-14&quot;:16.14},{&quot;2026-06-15&quot;:16.14},{&quot;2026-06-16&quot;:16.14},{&quot;2026-06-17&quot;:16.14},{&quot;2026-06-18&quot;:16.14},{&quot;2026-06-19&quot;:16.14},{&quot;2026-06-20&quot;:16.14},{&quot;2026-06-21&quot;:16.14},{&quot;2026-06-22&quot;:16.14},{&quot;2026-06-23&quot;:16.14},{&quot;2026-06-24&quot;:16.14},{&quot;2026-06-25&quot;:16.14},{&quot;2026-06-26&quot;:16.14},{&quot;2026-06-27&quot;:16.14},{&quot;2026-06-28&quot;:16.14},{&quot;2026-06-29&quot;:16.14},{&quot;2026-06-30&quot;:16.14},{&quot;2026-07-01&quot;:16.14},{&quot;2026-07-02&quot;:16.14},{&quot;2026-07-03&quot;:16.14},{&quot;2026-07-04&quot;:16.14},{&quot;2026-07-05&quot;:16.14},{&quot;2026-07-06&quot;:16.14},{&quot;2026-07-07&quot;:16.14},{&quot;2026-07-08&quot;:16.2},{&quot;2026-07-09&quot;:16.2},{&quot;2026-07-10&quot;:16.2},{&quot;2026-07-11&quot;:16.2},{&quot;2026-07-12&quot;:16.2},{&quot;2026-07-13&quot;:16.2},{&quot;2026-07-14&quot;:16.2},{&quot;2026-07-15&quot;:16.2},{&quot;2026-07-16&quot;:16.2},{&quot;2026-07-17&quot;:16.2},{&quot;2026-07-18&quot;:16.2},{&quot;2026-07-19&quot;:16.2},{&quot;2026-07-20&quot;:16.2},{&quot;2026-07-21&quot;:16.18},{&quot;2026-07-23&quot;:16.18},{&quot;2026-07-25&quot;:16.18},{&quot;2026-07-26&quot;:16.18},{&quot;2026-07-27&quot;:16.18},{&quot;2026-07-28&quot;:16.18},{&quot;2026-07-29&quot;:16.18},{&quot;2026-07-30&quot;:16.18},{&quot;2026-07-31&quot;:16.18},{&quot;2026-08-01&quot;:16.18},{&quot;2026-08-02&quot;:16.25},{&quot;2026-08-03&quot;:16.25},{&quot;2026-08-04&quot;:16.25},{&quot;2026-08-05&quot;:16.25},{&quot;2026-08-07&quot;:16.24},{&quot;2026-08-08&quot;:16.24},{&quot;2026-08-09&quot;:16.24},{&quot;2026-08-10&quot;:16.24},{&quot;2026-08-11&quot;:16.24},{&quot;2026-08-12&quot;:16.24},{&quot;2026-08-13&quot;:16.24},{&quot;2026-08-14&quot;:16.24},{&quot;2026-08-15&quot;:16.24},{&quot;2026-08-16&quot;:16.23},{&quot;2026-08-17&quot;:16.35},{&quot;2026-08-18&quot;:16.35},{&quot;2026-08-19&quot;:16.35},{&quot;2026-08-20&quot;:16.35},{&quot;2026-08-21&quot;:16.35},{&quot;2026-08-22&quot;:16.35},{&quot;2026-08-23&quot;:16.35},{&quot;2026-08-24&quot;:16.35},{&quot;2026-08-25&quot;:16.35},{&quot;2026-08-26&quot;:16.35},{&quot;2026-08-27&quot;:16.5},{&quot;2026-08-28&quot;:16.5},{&quot;2026-08-29&quot;:16.5},{&quot;2026-08-30&quot;:16.5},{&quot;2026-08-31&quot;:16.5},{&quot;2026-09-01&quot;:16.5},{&quot;2026-09-02&quot;:16.5},{&quot;2026-09-03&quot;:16.5},{&quot;2026-09-04&quot;:16.5},{&quot;2026-09-05&quot;:16.5},{&quot;2026-09-06&quot;:16.5},{&quot;2026-09-07&quot;:16.5},{&quot;2026-09-08&quot;:16.5},{&quot;2026-09-09&quot;:16.5},{&quot;2026-09-10&quot;:16.5},{&quot;2026-09-11&quot;:16.5}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:15.64},{&quot;2026-06-12&quot;:15.64},{&quot;2026-06-13&quot;:15.55},{&quot;2026-06-14&quot;:15.69},{&quot;2026-06-15&quot;:16.02},{&quot;2026-06-16&quot;:15.91},{&quot;2026-06-17&quot;:15.82},{&quot;2026-06-18&quot;:15.67},{&quot;2026-06-19&quot;:15.67},{&quot;2026-06-20&quot;:15.37},{&quot;2026-06-21&quot;:15.09},{&quot;2026-06-22&quot;:15.54},{&quot;2026-06-23&quot;:15.84},{&quot;2026-06-24&quot;:16.1},{&quot;2026-06-25&quot;:16.16},{&quot;2026-06-26&quot;:16.32},{&quot;2026-06-27&quot;:16.33},{&quot;2026-06-28&quot;:16.43},{&quot;2026-06-29&quot;:16.59},{&quot;2026-06-30&quot;:16.59},{&quot;2026-07-01&quot;:16.55},{&quot;2026-07-02&quot;:16.46},{&quot;2026-07-03&quot;:16.46},{&quot;2026-07-04&quot;:16.4},{&quot;2026-07-05&quot;:16.26},{&quot;2026-07-06&quot;:16.29},{&quot;2026-07-07&quot;:16.36},{&quot;2026-07-08&quot;:16.36},{&quot;2026-07-09&quot;:16.36},{&quot;2026-07-10&quot;:16.36},{&quot;2026-07-11&quot;:16.36},{&quot;2026-07-12&quot;:16.36},{&quot;2026-07-13&quot;:16.36},{&quot;2026-07-14&quot;:16.36},{&quot;2026-07-15&quot;:16.49},{&quot;2026-07-16&quot;:16.65},{&quot;2026-07-17&quot;:16.74},{&quot;2026-07-18&quot;:16.74},{&quot;2026-07-19&quot;:16.74},{&quot;2026-07-20&quot;:16.74},{&quot;2026-07-21&quot;:16.61},{&quot;2026-07-23&quot;:16.61},{&quot;2026-07-25&quot;:16.68},{&quot;2026-07-26&quot;:16.68},{&quot;2026-07-27&quot;:16.68},{&quot;2026-07-28&quot;:16.69},{&quot;2026-07-29&quot;:16.69},{&quot;2026-07-30&quot;:16.69},{&quot;2026-07-31&quot;:16.69},{&quot;2026-08-01&quot;:16.71},{&quot;2026-08-02&quot;:16.71},{&quot;2026-08-03&quot;:16.87},{&quot;2026-08-04&quot;:16.87},{&quot;2026-08-05&quot;:16.87},{&quot;2026-08-07&quot;:16.87},{&quot;2026-08-08&quot;:16.87},{&quot;2026-08-09&quot;:16.73},{&quot;2026-08-10&quot;:16.73},{&quot;2026-08-11&quot;:16.73},{&quot;2026-08-12&quot;:16.73},{&quot;2026-08-13&quot;:16.73},{&quot;2026-08-14&quot;:16.73},{&quot;2026-08-15&quot;:16.73},{&quot;2026-08-16&quot;:16.73},{&quot;2026-08-17&quot;:16.73},{&quot;2026-08-18&quot;:16.67},{&quot;2026-08-19&quot;:16.69},{&quot;2026-08-20&quot;:16.69},{&quot;2026-08-21&quot;:16.69},{&quot;2026-08-22&quot;:16.36},{&quot;2026-08-23&quot;:16.36},{&quot;2026-08-24&quot;:16.36},{&quot;2026-08-25&quot;:16.36},{&quot;2026-08-26&quot;:16.36},{&quot;2026-08-27&quot;:16.36},{&quot;2026-08-28&quot;:16.36},{&quot;2026-08-29&quot;:16.36},{&quot;2026-08-30&quot;:15.47},{&quot;2026-08-31&quot;:14.87},{&quot;2026-09-01&quot;:14.87},{&quot;2026-09-02&quot;:14.97},{&quot;2026-09-03&quot;:14.97},{&quot;2026-09-04&quot;:14.97},{&quot;2026-09-05&quot;:14.97},{&quot;2026-09-06&quot;:15.07},{&quot;2026-09-07&quot;:15.07},{&quot;2026-09-08&quot;:15.03},{&quot;2026-09-09&quot;:15.03},{&quot;2026-09-10&quot;:15.03},{&quot;2026-09-11&quot;:14.6}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="20401"
  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">
            Sneak Attack
        </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="text-sm font-medium text-nine-white">
            $12.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="Sneak Attack" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/3/d/3d9709ea-5962-4590-8b14-5213b14f9229.jpg?1783930156" />

        <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">
            Sneak Attack
        </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-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="Sneak Attack" src="https://cards.scryfall.io/large/front/3/d/3d9709ea-5962-4590-8b14-5213b14f9229.jpg?1783930156" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $12.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">
                $12.30
              </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">$8.50</span>
              <span class="text-xs text-grey-text">Credit: $11.05</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:11.06},{&quot;2026-06-14&quot;:11.43},{&quot;2026-06-15&quot;:11.43},{&quot;2026-06-16&quot;:11.43},{&quot;2026-06-17&quot;:11.68},{&quot;2026-06-18&quot;:11.68},{&quot;2026-06-19&quot;:11.68},{&quot;2026-06-20&quot;:11.68},{&quot;2026-06-21&quot;:11.68},{&quot;2026-06-22&quot;:11.68},{&quot;2026-06-23&quot;:11.68},{&quot;2026-06-24&quot;:11.68},{&quot;2026-06-25&quot;:11.68},{&quot;2026-06-26&quot;:11.68},{&quot;2026-06-27&quot;:11.68},{&quot;2026-06-28&quot;:11.68},{&quot;2026-06-29&quot;:11.68},{&quot;2026-06-30&quot;:11.68},{&quot;2026-07-01&quot;:11.68},{&quot;2026-07-02&quot;:11.68},{&quot;2026-07-03&quot;:11.68},{&quot;2026-07-04&quot;:11.68},{&quot;2026-07-05&quot;:11.68},{&quot;2026-07-06&quot;:11.62},{&quot;2026-07-07&quot;:11.62},{&quot;2026-07-08&quot;:11.62},{&quot;2026-07-09&quot;:11.62},{&quot;2026-07-10&quot;:11.62},{&quot;2026-07-11&quot;:11.62},{&quot;2026-07-12&quot;:11.62},{&quot;2026-07-13&quot;:11.62},{&quot;2026-07-14&quot;:11.62},{&quot;2026-07-15&quot;:11.62},{&quot;2026-07-16&quot;:11.62},{&quot;2026-07-17&quot;:11.62},{&quot;2026-07-18&quot;:11.62},{&quot;2026-07-19&quot;:11.62},{&quot;2026-07-20&quot;:11.67},{&quot;2026-07-21&quot;:11.67},{&quot;2026-07-22&quot;:11.67},{&quot;2026-07-23&quot;:11.67},{&quot;2026-07-24&quot;:11.67},{&quot;2026-07-25&quot;:11.67},{&quot;2026-07-26&quot;:11.85},{&quot;2026-07-27&quot;:11.85},{&quot;2026-07-28&quot;:11.85},{&quot;2026-07-29&quot;:11.85},{&quot;2026-07-30&quot;:11.85},{&quot;2026-07-31&quot;:11.9},{&quot;2026-08-01&quot;:11.9},{&quot;2026-08-02&quot;:11.9},{&quot;2026-08-03&quot;:11.9},{&quot;2026-08-04&quot;:11.9},{&quot;2026-08-05&quot;:11.9},{&quot;2026-08-07&quot;:11.9},{&quot;2026-08-08&quot;:11.9},{&quot;2026-08-09&quot;:11.9},{&quot;2026-08-10&quot;:11.9},{&quot;2026-08-11&quot;:11.98},{&quot;2026-08-12&quot;:11.98},{&quot;2026-08-13&quot;:11.98},{&quot;2026-08-14&quot;:11.98},{&quot;2026-08-15&quot;:11.98},{&quot;2026-08-16&quot;:12.06},{&quot;2026-08-17&quot;:12.14},{&quot;2026-08-18&quot;:12.14},{&quot;2026-08-19&quot;:12.23},{&quot;2026-08-20&quot;:12.27},{&quot;2026-08-21&quot;:12.27},{&quot;2026-08-22&quot;:12.27},{&quot;2026-08-23&quot;:12.27},{&quot;2026-08-24&quot;:12.27},{&quot;2026-08-25&quot;:12.27},{&quot;2026-08-26&quot;:12.27},{&quot;2026-08-27&quot;:12.27},{&quot;2026-08-28&quot;:12.27},{&quot;2026-08-29&quot;:12.27},{&quot;2026-08-30&quot;:12.27},{&quot;2026-08-31&quot;:12.27},{&quot;2026-09-01&quot;:12.27},{&quot;2026-09-02&quot;:12.19},{&quot;2026-09-03&quot;:12.19},{&quot;2026-09-04&quot;:12.19},{&quot;2026-09-05&quot;:12.19},{&quot;2026-09-06&quot;:12.3},{&quot;2026-09-07&quot;:12.3},{&quot;2026-09-08&quot;:12.3},{&quot;2026-09-09&quot;:12.3},{&quot;2026-09-10&quot;:12.3},{&quot;2026-09-11&quot;:12.3}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:11.48},{&quot;2026-06-14&quot;:11.48},{&quot;2026-06-15&quot;:11.48},{&quot;2026-06-16&quot;:11.48},{&quot;2026-06-17&quot;:11.36},{&quot;2026-06-18&quot;:11.36},{&quot;2026-06-19&quot;:11.36},{&quot;2026-06-20&quot;:11.36},{&quot;2026-06-21&quot;:11.36},{&quot;2026-06-22&quot;:11.31},{&quot;2026-06-23&quot;:11.31},{&quot;2026-06-24&quot;:11.38},{&quot;2026-06-25&quot;:11.49},{&quot;2026-06-26&quot;:11.49},{&quot;2026-06-27&quot;:11.5},{&quot;2026-06-28&quot;:11.27},{&quot;2026-06-29&quot;:11.45},{&quot;2026-06-30&quot;:11.48},{&quot;2026-07-01&quot;:11.69},{&quot;2026-07-02&quot;:11.69},{&quot;2026-07-03&quot;:11.9},{&quot;2026-07-04&quot;:11.89},{&quot;2026-07-05&quot;:11.99},{&quot;2026-07-06&quot;:11.99},{&quot;2026-07-07&quot;:11.99},{&quot;2026-07-08&quot;:11.92},{&quot;2026-07-09&quot;:12.06},{&quot;2026-07-10&quot;:12.06},{&quot;2026-07-11&quot;:12.06},{&quot;2026-07-12&quot;:12.18},{&quot;2026-07-13&quot;:12.18},{&quot;2026-07-14&quot;:12.18},{&quot;2026-07-15&quot;:12.18},{&quot;2026-07-16&quot;:12.18},{&quot;2026-07-17&quot;:12.18},{&quot;2026-07-18&quot;:12.09},{&quot;2026-07-19&quot;:12.1},{&quot;2026-07-20&quot;:12.11},{&quot;2026-07-21&quot;:12.11},{&quot;2026-07-22&quot;:12.11},{&quot;2026-07-23&quot;:12.11},{&quot;2026-07-24&quot;:12.15},{&quot;2026-07-25&quot;:12.15},{&quot;2026-07-26&quot;:12.15},{&quot;2026-07-27&quot;:12.15},{&quot;2026-07-28&quot;:12.15},{&quot;2026-07-29&quot;:12.15},{&quot;2026-07-30&quot;:12.15},{&quot;2026-07-31&quot;:12.15},{&quot;2026-08-01&quot;:12.15},{&quot;2026-08-02&quot;:12.15},{&quot;2026-08-03&quot;:12.15},{&quot;2026-08-04&quot;:12.28},{&quot;2026-08-05&quot;:12.28},{&quot;2026-08-07&quot;:12.28},{&quot;2026-08-08&quot;:12.28},{&quot;2026-08-09&quot;:12.28},{&quot;2026-08-10&quot;:12.12},{&quot;2026-08-11&quot;:12.12},{&quot;2026-08-12&quot;:12.12},{&quot;2026-08-13&quot;:12.21},{&quot;2026-08-14&quot;:12.03},{&quot;2026-08-15&quot;:12.22},{&quot;2026-08-16&quot;:12.22},{&quot;2026-08-17&quot;:12.22},{&quot;2026-08-18&quot;:12.19},{&quot;2026-08-19&quot;:12.19},{&quot;2026-08-20&quot;:12.19},{&quot;2026-08-21&quot;:12.22},{&quot;2026-08-22&quot;:12.25},{&quot;2026-08-23&quot;:12.25},{&quot;2026-08-24&quot;:12.25},{&quot;2026-08-25&quot;:12.25},{&quot;2026-08-26&quot;:12.19},{&quot;2026-08-27&quot;:12.13},{&quot;2026-08-28&quot;:12.06},{&quot;2026-08-29&quot;:12.06},{&quot;2026-08-30&quot;:12.06},{&quot;2026-08-31&quot;:12.06},{&quot;2026-09-01&quot;:12.06},{&quot;2026-09-02&quot;:12.06},{&quot;2026-09-03&quot;:12.06},{&quot;2026-09-04&quot;:12.06},{&quot;2026-09-05&quot;:12.06},{&quot;2026-09-06&quot;:12.06},{&quot;2026-09-07&quot;:12.04},{&quot;2026-09-08&quot;:12.04},{&quot;2026-09-09&quot;:12.04},{&quot;2026-09-10&quot;:12.04},{&quot;2026-09-11&quot;:12.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="92680"
  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">
            Mox Jasper
        </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="px-1.5 py-0.5 text-xs rounded-full bg-accent-100 text-badge-text">
              ↓
              2%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $11.53
          </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="Mox Jasper" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/8/a851d2d3-7e93-4887-bee5-4d6c9aaf9419.jpg?1783907282" />

        <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">
            Mox Jasper
        </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-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="Mox Jasper" src="https://cards.scryfall.io/large/front/a/8/a851d2d3-7e93-4887-bee5-4d6c9aaf9419.jpg?1783907282" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:14.95},{&quot;2026-06-14&quot;:15.55},{&quot;2026-06-15&quot;:16.21},{&quot;2026-06-16&quot;:16.23},{&quot;2026-06-17&quot;:16.23},{&quot;2026-06-18&quot;:16.23},{&quot;2026-06-19&quot;:16.23},{&quot;2026-06-20&quot;:16.23},{&quot;2026-06-21&quot;:16.23},{&quot;2026-06-22&quot;:16.23},{&quot;2026-06-23&quot;:16.23},{&quot;2026-06-24&quot;:16.4},{&quot;2026-06-25&quot;:16.4},{&quot;2026-06-26&quot;:16.4},{&quot;2026-06-27&quot;:16.58},{&quot;2026-06-28&quot;:16.58},{&quot;2026-06-29&quot;:16.58},{&quot;2026-06-30&quot;:17.07},{&quot;2026-07-01&quot;:17.07},{&quot;2026-07-02&quot;:17.05},{&quot;2026-07-03&quot;:17.05},{&quot;2026-07-04&quot;:17.05},{&quot;2026-07-05&quot;:17.05},{&quot;2026-07-06&quot;:17.05},{&quot;2026-07-07&quot;:17.13},{&quot;2026-07-08&quot;:17.13},{&quot;2026-07-09&quot;:17.13},{&quot;2026-07-10&quot;:17.11},{&quot;2026-07-11&quot;:17.11},{&quot;2026-07-12&quot;:17.11},{&quot;2026-07-13&quot;:17.11},{&quot;2026-07-14&quot;:17.11},{&quot;2026-07-15&quot;:17.11},{&quot;2026-07-16&quot;:17.25},{&quot;2026-07-17&quot;:17.36},{&quot;2026-07-18&quot;:17.36},{&quot;2026-07-19&quot;:17.43},{&quot;2026-07-20&quot;:17.43},{&quot;2026-07-21&quot;:17.36},{&quot;2026-07-22&quot;:17.36},{&quot;2026-07-23&quot;:17.36},{&quot;2026-07-24&quot;:17.26},{&quot;2026-07-25&quot;:17.19},{&quot;2026-07-26&quot;:17.17},{&quot;2026-07-27&quot;:17.17},{&quot;2026-07-28&quot;:17.17},{&quot;2026-07-29&quot;:17.17},{&quot;2026-07-30&quot;:17.17},{&quot;2026-07-31&quot;:17.17},{&quot;2026-08-01&quot;:17.17},{&quot;2026-08-02&quot;:17.19},{&quot;2026-08-03&quot;:17.18},{&quot;2026-08-04&quot;:17.18},{&quot;2026-08-05&quot;:17.18},{&quot;2026-08-07&quot;:17.05},{&quot;2026-08-08&quot;:17.05},{&quot;2026-08-09&quot;:17.05},{&quot;2026-08-10&quot;:17.05},{&quot;2026-08-11&quot;:17.01},{&quot;2026-08-12&quot;:16.89},{&quot;2026-08-13&quot;:16.7},{&quot;2026-08-14&quot;:16.7},{&quot;2026-08-15&quot;:16.7},{&quot;2026-08-16&quot;:16.7},{&quot;2026-08-17&quot;:15.97},{&quot;2026-08-18&quot;:15.68},{&quot;2026-08-19&quot;:15.52},{&quot;2026-08-20&quot;:15.25},{&quot;2026-08-21&quot;:14.73},{&quot;2026-08-22&quot;:14.49},{&quot;2026-08-23&quot;:14.35},{&quot;2026-08-24&quot;:14.35},{&quot;2026-08-25&quot;:14.49},{&quot;2026-08-26&quot;:14.49},{&quot;2026-08-27&quot;:14.49},{&quot;2026-08-28&quot;:14.6},{&quot;2026-08-29&quot;:14.6},{&quot;2026-08-30&quot;:14.59},{&quot;2026-08-31&quot;:14.61},{&quot;2026-09-01&quot;:14.6},{&quot;2026-09-02&quot;:14.6},{&quot;2026-09-03&quot;:14.67},{&quot;2026-09-04&quot;:14.67},{&quot;2026-09-05&quot;:14.67},{&quot;2026-09-06&quot;:14.65},{&quot;2026-09-07&quot;:14.74},{&quot;2026-09-08&quot;:14.76},{&quot;2026-09-09&quot;:14.76},{&quot;2026-09-10&quot;:14.76},{&quot;2026-09-11&quot;:14.75}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:14.54},{&quot;2026-06-14&quot;:14.77},{&quot;2026-06-15&quot;:15.09},{&quot;2026-06-16&quot;:14.89},{&quot;2026-06-17&quot;:15.24},{&quot;2026-06-18&quot;:14.73},{&quot;2026-06-19&quot;:14.94},{&quot;2026-06-20&quot;:15.02},{&quot;2026-06-21&quot;:15.07},{&quot;2026-06-22&quot;:15.11},{&quot;2026-06-23&quot;:14.78},{&quot;2026-06-24&quot;:14.85},{&quot;2026-06-25&quot;:15.0},{&quot;2026-06-26&quot;:14.68},{&quot;2026-06-27&quot;:14.25},{&quot;2026-06-28&quot;:14.17},{&quot;2026-06-29&quot;:13.86},{&quot;2026-06-30&quot;:13.66},{&quot;2026-07-01&quot;:12.96},{&quot;2026-07-02&quot;:12.96},{&quot;2026-07-03&quot;:12.97},{&quot;2026-07-04&quot;:12.87},{&quot;2026-07-05&quot;:13.11},{&quot;2026-07-06&quot;:13.21},{&quot;2026-07-07&quot;:13.34},{&quot;2026-07-08&quot;:13.26},{&quot;2026-07-09&quot;:13.06},{&quot;2026-07-10&quot;:12.92},{&quot;2026-07-11&quot;:12.63},{&quot;2026-07-12&quot;:12.5},{&quot;2026-07-13&quot;:12.43},{&quot;2026-07-14&quot;:12.33},{&quot;2026-07-15&quot;:12.29},{&quot;2026-07-16&quot;:12.69},{&quot;2026-07-17&quot;:13.13},{&quot;2026-07-18&quot;:13.08},{&quot;2026-07-19&quot;:13.23},{&quot;2026-07-20&quot;:13.21},{&quot;2026-07-21&quot;:13.25},{&quot;2026-07-22&quot;:13.0},{&quot;2026-07-23&quot;:12.86},{&quot;2026-07-24&quot;:12.71},{&quot;2026-07-25&quot;:12.65},{&quot;2026-07-26&quot;:12.33},{&quot;2026-07-27&quot;:12.27},{&quot;2026-07-28&quot;:11.62},{&quot;2026-07-29&quot;:11.44},{&quot;2026-07-30&quot;:11.46},{&quot;2026-07-31&quot;:11.66},{&quot;2026-08-01&quot;:11.66},{&quot;2026-08-02&quot;:11.81},{&quot;2026-08-03&quot;:11.7},{&quot;2026-08-04&quot;:11.59},{&quot;2026-08-05&quot;:11.36},{&quot;2026-08-07&quot;:11.43},{&quot;2026-08-08&quot;:11.53},{&quot;2026-08-09&quot;:11.54},{&quot;2026-08-10&quot;:11.7},{&quot;2026-08-11&quot;:11.87},{&quot;2026-08-12&quot;:12.06},{&quot;2026-08-13&quot;:12.16},{&quot;2026-08-14&quot;:12.46},{&quot;2026-08-15&quot;:12.77},{&quot;2026-08-16&quot;:12.89},{&quot;2026-08-17&quot;:12.67},{&quot;2026-08-18&quot;:12.7},{&quot;2026-08-19&quot;:12.39},{&quot;2026-08-20&quot;:11.98},{&quot;2026-08-21&quot;:11.96},{&quot;2026-08-22&quot;:11.66},{&quot;2026-08-23&quot;:11.74},{&quot;2026-08-24&quot;:11.67},{&quot;2026-08-25&quot;:11.49},{&quot;2026-08-26&quot;:11.15},{&quot;2026-08-27&quot;:10.9},{&quot;2026-08-28&quot;:10.9},{&quot;2026-08-29&quot;:10.9},{&quot;2026-08-30&quot;:11.22},{&quot;2026-08-31&quot;:11.39},{&quot;2026-09-01&quot;:11.91},{&quot;2026-09-02&quot;:12.07},{&quot;2026-09-03&quot;:11.83},{&quot;2026-09-04&quot;:11.77},{&quot;2026-09-05&quot;:11.74},{&quot;2026-09-06&quot;:11.68},{&quot;2026-09-07&quot;:11.5},{&quot;2026-09-08&quot;:11.46},{&quot;2026-09-09&quot;:11.45},{&quot;2026-09-10&quot;:11.44},{&quot;2026-09-11&quot;:11.53}]}"
        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="42361"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-neo ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Eiganjo, Seat of the Empire" src="https://cards.scryfall.io/large/front/7/c/7c31c48f-6275-4430-8dc9-05d70c332b7a.jpg?1783923761" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:13.8},{&quot;2026-06-11&quot;:13.8},{&quot;2026-06-12&quot;:13.8},{&quot;2026-06-13&quot;:13.8},{&quot;2026-06-14&quot;:13.8},{&quot;2026-06-15&quot;:13.87},{&quot;2026-06-16&quot;:13.87},{&quot;2026-06-17&quot;:14.04},{&quot;2026-06-18&quot;:14.04},{&quot;2026-06-19&quot;:14.04},{&quot;2026-06-20&quot;:13.94},{&quot;2026-06-21&quot;:13.94},{&quot;2026-06-22&quot;:14.24},{&quot;2026-06-23&quot;:14.09},{&quot;2026-06-24&quot;:14.16},{&quot;2026-06-25&quot;:14.01},{&quot;2026-06-26&quot;:13.86},{&quot;2026-06-27&quot;:13.86},{&quot;2026-06-28&quot;:13.89},{&quot;2026-06-29&quot;:13.89},{&quot;2026-06-30&quot;:13.9},{&quot;2026-07-01&quot;:13.9},{&quot;2026-07-02&quot;:13.9},{&quot;2026-07-03&quot;:13.9},{&quot;2026-07-04&quot;:13.81},{&quot;2026-07-05&quot;:13.81},{&quot;2026-07-06&quot;:13.81},{&quot;2026-07-07&quot;:13.7},{&quot;2026-07-08&quot;:13.45},{&quot;2026-07-09&quot;:13.6},{&quot;2026-07-10&quot;:13.7},{&quot;2026-07-11&quot;:13.7},{&quot;2026-07-12&quot;:13.5},{&quot;2026-07-13&quot;:13.6},{&quot;2026-07-14&quot;:13.6},{&quot;2026-07-15&quot;:13.6},{&quot;2026-07-16&quot;:13.44},{&quot;2026-07-17&quot;:13.44},{&quot;2026-07-18&quot;:13.44},{&quot;2026-07-19&quot;:13.44},{&quot;2026-07-20&quot;:13.06},{&quot;2026-07-21&quot;:13.13},{&quot;2026-07-23&quot;:13.29},{&quot;2026-07-25&quot;:13.04},{&quot;2026-07-26&quot;:13.24},{&quot;2026-07-27&quot;:13.24},{&quot;2026-07-29&quot;:13.24},{&quot;2026-07-30&quot;:13.45},{&quot;2026-07-31&quot;:13.57},{&quot;2026-08-01&quot;:13.57},{&quot;2026-08-02&quot;:13.57},{&quot;2026-08-03&quot;:13.56},{&quot;2026-08-04&quot;:13.56},{&quot;2026-08-05&quot;:13.75},{&quot;2026-08-07&quot;:13.69},{&quot;2026-08-08&quot;:13.92},{&quot;2026-08-09&quot;:14.24},{&quot;2026-08-10&quot;:14.3},{&quot;2026-08-11&quot;:14.24},{&quot;2026-08-12&quot;:14.26},{&quot;2026-08-13&quot;:14.26},{&quot;2026-08-14&quot;:14.49},{&quot;2026-08-15&quot;:14.49},{&quot;2026-08-16&quot;:14.49},{&quot;2026-08-17&quot;:14.49},{&quot;2026-08-18&quot;:14.53},{&quot;2026-08-19&quot;:14.53},{&quot;2026-08-20&quot;:14.53},{&quot;2026-08-21&quot;:14.61},{&quot;2026-08-22&quot;:14.28},{&quot;2026-08-23&quot;:14.28},{&quot;2026-08-24&quot;:14.51},{&quot;2026-08-25&quot;:14.51},{&quot;2026-08-26&quot;:14.54},{&quot;2026-08-27&quot;:14.54},{&quot;2026-08-28&quot;:14.56},{&quot;2026-08-29&quot;:14.56},{&quot;2026-08-30&quot;:14.6},{&quot;2026-08-31&quot;:14.53},{&quot;2026-09-01&quot;:14.53},{&quot;2026-09-02&quot;:14.56},{&quot;2026-09-03&quot;:14.56},{&quot;2026-09-04&quot;:14.56},{&quot;2026-09-05&quot;:14.56},{&quot;2026-09-06&quot;:14.68},{&quot;2026-09-07&quot;:14.52},{&quot;2026-09-08&quot;:14.43},{&quot;2026-09-09&quot;:14.43},{&quot;2026-09-10&quot;:14.59},{&quot;2026-09-11&quot;:14.59}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:8.22},{&quot;2026-06-11&quot;:8.31},{&quot;2026-06-12&quot;:8.31},{&quot;2026-06-13&quot;:8.31},{&quot;2026-06-14&quot;:8.33},{&quot;2026-06-15&quot;:8.35},{&quot;2026-06-16&quot;:8.32},{&quot;2026-06-17&quot;:8.32},{&quot;2026-06-18&quot;:8.31},{&quot;2026-06-19&quot;:8.31},{&quot;2026-06-20&quot;:8.31},{&quot;2026-06-21&quot;:8.29},{&quot;2026-06-22&quot;:8.25},{&quot;2026-06-23&quot;:8.43},{&quot;2026-06-24&quot;:8.43},{&quot;2026-06-25&quot;:8.45},{&quot;2026-06-26&quot;:8.44},{&quot;2026-06-27&quot;:8.49},{&quot;2026-06-28&quot;:8.48},{&quot;2026-06-29&quot;:8.63},{&quot;2026-06-30&quot;:8.63},{&quot;2026-07-01&quot;:8.62},{&quot;2026-07-02&quot;:8.51},{&quot;2026-07-03&quot;:8.45},{&quot;2026-07-04&quot;:8.39},{&quot;2026-07-05&quot;:8.3},{&quot;2026-07-06&quot;:8.21},{&quot;2026-07-07&quot;:8.21},{&quot;2026-07-08&quot;:8.26},{&quot;2026-07-09&quot;:8.28},{&quot;2026-07-10&quot;:8.28},{&quot;2026-07-11&quot;:8.37},{&quot;2026-07-12&quot;:8.39},{&quot;2026-07-13&quot;:8.39},{&quot;2026-07-14&quot;:8.39},{&quot;2026-07-15&quot;:8.29},{&quot;2026-07-16&quot;:8.46},{&quot;2026-07-17&quot;:8.53},{&quot;2026-07-18&quot;:8.72},{&quot;2026-07-19&quot;:8.72},{&quot;2026-07-20&quot;:8.7},{&quot;2026-07-21&quot;:8.71},{&quot;2026-07-23&quot;:8.77},{&quot;2026-07-25&quot;:8.75},{&quot;2026-07-26&quot;:8.75},{&quot;2026-07-27&quot;:8.78},{&quot;2026-07-29&quot;:8.66},{&quot;2026-07-30&quot;:8.82},{&quot;2026-07-31&quot;:8.79},{&quot;2026-08-01&quot;:8.79},{&quot;2026-08-02&quot;:8.74},{&quot;2026-08-03&quot;:8.65},{&quot;2026-08-04&quot;:8.62},{&quot;2026-08-05&quot;:8.62},{&quot;2026-08-07&quot;:8.62},{&quot;2026-08-08&quot;:8.59},{&quot;2026-08-09&quot;:8.62},{&quot;2026-08-10&quot;:8.62},{&quot;2026-08-11&quot;:8.59},{&quot;2026-08-12&quot;:8.59},{&quot;2026-08-13&quot;:8.68},{&quot;2026-08-14&quot;:8.54},{&quot;2026-08-15&quot;:8.42},{&quot;2026-08-16&quot;:8.48},{&quot;2026-08-17&quot;:8.45},{&quot;2026-08-18&quot;:8.45},{&quot;2026-08-19&quot;:8.45},{&quot;2026-08-20&quot;:8.45},{&quot;2026-08-21&quot;:8.61},{&quot;2026-08-22&quot;:8.82},{&quot;2026-08-23&quot;:8.69},{&quot;2026-08-24&quot;:8.49},{&quot;2026-08-25&quot;:8.49},{&quot;2026-08-26&quot;:8.68},{&quot;2026-08-27&quot;:8.68},{&quot;2026-08-28&quot;:8.68},{&quot;2026-08-29&quot;:8.68},{&quot;2026-08-30&quot;:8.68},{&quot;2026-08-31&quot;:8.68},{&quot;2026-09-01&quot;:8.68},{&quot;2026-09-02&quot;:8.83},{&quot;2026-09-03&quot;:8.73},{&quot;2026-09-04&quot;:8.73},{&quot;2026-09-05&quot;:8.57},{&quot;2026-09-06&quot;:8.57},{&quot;2026-09-07&quot;:8.5},{&quot;2026-09-08&quot;:8.56},{&quot;2026-09-09&quot;:8.56},{&quot;2026-09-10&quot;:8.56},{&quot;2026-09-11&quot;:8.56}]}"
        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="40284"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-khc ss-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">
            Eerie Interlude
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $7.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="Eerie Interlude" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/b/4ba9f15f-00d2-4797-9228-91b320e85705.jpg?1783928332" />

        <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">
            Eerie Interlude
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Eerie Interlude" src="https://cards.scryfall.io/large/front/4/b/4ba9f15f-00d2-4797-9228-91b320e85705.jpg?1783928332" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:6.77},{&quot;2026-06-14&quot;:6.9},{&quot;2026-06-15&quot;:6.97},{&quot;2026-06-16&quot;:6.97},{&quot;2026-06-17&quot;:7.14},{&quot;2026-06-18&quot;:7.43},{&quot;2026-06-19&quot;:7.57},{&quot;2026-06-20&quot;:7.67},{&quot;2026-06-21&quot;:7.57},{&quot;2026-06-22&quot;:8.14},{&quot;2026-06-23&quot;:8.02},{&quot;2026-06-24&quot;:8.25},{&quot;2026-06-25&quot;:8.34},{&quot;2026-06-26&quot;:8.56},{&quot;2026-06-27&quot;:8.22},{&quot;2026-06-28&quot;:7.92},{&quot;2026-06-29&quot;:7.35},{&quot;2026-06-30&quot;:7.39},{&quot;2026-07-01&quot;:7.43},{&quot;2026-07-02&quot;:7.28},{&quot;2026-07-03&quot;:7.37},{&quot;2026-07-04&quot;:7.42},{&quot;2026-07-05&quot;:7.43},{&quot;2026-07-06&quot;:7.29},{&quot;2026-07-07&quot;:7.18},{&quot;2026-07-08&quot;:7.18},{&quot;2026-07-09&quot;:7.23},{&quot;2026-07-10&quot;:7.79},{&quot;2026-07-11&quot;:8.16},{&quot;2026-07-12&quot;:8.16},{&quot;2026-07-13&quot;:8.21},{&quot;2026-07-14&quot;:8.21},{&quot;2026-07-15&quot;:8.08},{&quot;2026-07-16&quot;:8.22},{&quot;2026-07-17&quot;:8.23},{&quot;2026-07-18&quot;:8.05},{&quot;2026-07-19&quot;:8.05},{&quot;2026-07-20&quot;:8.18},{&quot;2026-07-21&quot;:8.43},{&quot;2026-07-22&quot;:8.37},{&quot;2026-07-23&quot;:8.36},{&quot;2026-07-24&quot;:8.32},{&quot;2026-07-25&quot;:8.37},{&quot;2026-07-26&quot;:8.4},{&quot;2026-07-27&quot;:8.34},{&quot;2026-07-28&quot;:8.34},{&quot;2026-07-29&quot;:8.24},{&quot;2026-07-30&quot;:8.05},{&quot;2026-07-31&quot;:7.99},{&quot;2026-08-01&quot;:7.99},{&quot;2026-08-02&quot;:7.99},{&quot;2026-08-03&quot;:7.74},{&quot;2026-08-04&quot;:7.35},{&quot;2026-08-05&quot;:7.35},{&quot;2026-08-07&quot;:7.35},{&quot;2026-08-08&quot;:7.42},{&quot;2026-08-09&quot;:7.42},{&quot;2026-08-10&quot;:7.42},{&quot;2026-08-11&quot;:7.41},{&quot;2026-08-12&quot;:7.45},{&quot;2026-08-13&quot;:7.22},{&quot;2026-08-14&quot;:7.16},{&quot;2026-08-15&quot;:6.88},{&quot;2026-08-16&quot;:6.74},{&quot;2026-08-17&quot;:6.68},{&quot;2026-08-18&quot;:6.59},{&quot;2026-08-19&quot;:6.74},{&quot;2026-08-20&quot;:6.8},{&quot;2026-08-21&quot;:6.99},{&quot;2026-08-22&quot;:7.03},{&quot;2026-08-23&quot;:7.03},{&quot;2026-08-24&quot;:7.11},{&quot;2026-08-25&quot;:7.26},{&quot;2026-08-26&quot;:7.26},{&quot;2026-08-27&quot;:7.18},{&quot;2026-08-28&quot;:7.18},{&quot;2026-08-29&quot;:7.18},{&quot;2026-08-30&quot;:7.17},{&quot;2026-08-31&quot;:7.17},{&quot;2026-09-01&quot;:7.38},{&quot;2026-09-02&quot;:7.46},{&quot;2026-09-03&quot;:7.94},{&quot;2026-09-04&quot;:7.94},{&quot;2026-09-05&quot;:7.94},{&quot;2026-09-06&quot;:7.94},{&quot;2026-09-07&quot;:7.83},{&quot;2026-09-08&quot;:7.89},{&quot;2026-09-09&quot;:7.75},{&quot;2026-09-10&quot;:7.75},{&quot;2026-09-11&quot;:7.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="28838"
  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">
            Omniscience
        </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">
              ↑
              3%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $6.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="Omniscience" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/3/d33d91d0-1506-45e4-9def-975bf901815e.jpg?1783909079" />

        <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">
            Omniscience
        </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-7'></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><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="Omniscience" src="https://cards.scryfall.io/large/front/d/3/d33d91d0-1506-45e4-9def-975bf901815e.jpg?1783909079" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $6.16
              </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">
                $6.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">$3.80</span>
              <span class="text-xs text-grey-text">Credit: $4.94</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-12&quot;:6.91},{&quot;2026-06-13&quot;:6.93},{&quot;2026-06-14&quot;:7.02},{&quot;2026-06-15&quot;:7.1},{&quot;2026-06-16&quot;:7.07},{&quot;2026-06-17&quot;:7.07},{&quot;2026-06-18&quot;:7.17},{&quot;2026-06-19&quot;:7.15},{&quot;2026-06-20&quot;:7.15},{&quot;2026-06-21&quot;:7.15},{&quot;2026-06-22&quot;:7.15},{&quot;2026-06-23&quot;:7.15},{&quot;2026-06-24&quot;:7.15},{&quot;2026-06-25&quot;:7.15},{&quot;2026-06-26&quot;:7.15},{&quot;2026-06-27&quot;:7.15},{&quot;2026-06-28&quot;:7.23},{&quot;2026-06-29&quot;:7.23},{&quot;2026-06-30&quot;:7.0},{&quot;2026-07-01&quot;:7.0},{&quot;2026-07-02&quot;:7.0},{&quot;2026-07-03&quot;:6.94},{&quot;2026-07-04&quot;:6.95},{&quot;2026-07-05&quot;:6.95},{&quot;2026-07-06&quot;:6.95},{&quot;2026-07-07&quot;:6.95},{&quot;2026-07-08&quot;:6.95},{&quot;2026-07-09&quot;:6.95},{&quot;2026-07-10&quot;:7.04},{&quot;2026-07-11&quot;:7.04},{&quot;2026-07-12&quot;:7.17},{&quot;2026-07-13&quot;:7.17},{&quot;2026-07-14&quot;:7.17},{&quot;2026-07-15&quot;:7.36},{&quot;2026-07-16&quot;:7.37},{&quot;2026-07-17&quot;:7.4},{&quot;2026-07-18&quot;:7.35},{&quot;2026-07-19&quot;:7.35},{&quot;2026-07-20&quot;:7.22},{&quot;2026-07-21&quot;:7.36},{&quot;2026-07-23&quot;:7.33},{&quot;2026-07-24&quot;:7.33},{&quot;2026-07-25&quot;:7.33},{&quot;2026-07-26&quot;:7.33},{&quot;2026-07-27&quot;:7.2},{&quot;2026-07-28&quot;:7.21},{&quot;2026-07-29&quot;:7.21},{&quot;2026-07-30&quot;:7.21},{&quot;2026-07-31&quot;:7.08},{&quot;2026-08-01&quot;:7.1},{&quot;2026-08-02&quot;:7.16},{&quot;2026-08-03&quot;:6.97},{&quot;2026-08-04&quot;:6.97},{&quot;2026-08-05&quot;:6.83},{&quot;2026-08-07&quot;:6.65},{&quot;2026-08-08&quot;:6.65},{&quot;2026-08-09&quot;:6.65},{&quot;2026-08-10&quot;:6.69},{&quot;2026-08-11&quot;:6.67},{&quot;2026-08-12&quot;:6.67},{&quot;2026-08-13&quot;:6.67},{&quot;2026-08-14&quot;:6.67},{&quot;2026-08-15&quot;:6.64},{&quot;2026-08-16&quot;:6.73},{&quot;2026-08-17&quot;:6.73},{&quot;2026-08-18&quot;:6.73},{&quot;2026-08-19&quot;:6.76},{&quot;2026-08-20&quot;:6.76},{&quot;2026-08-21&quot;:6.76},{&quot;2026-08-22&quot;:6.76},{&quot;2026-08-23&quot;:6.76},{&quot;2026-08-24&quot;:6.79},{&quot;2026-08-25&quot;:6.79},{&quot;2026-08-26&quot;:6.59},{&quot;2026-08-27&quot;:6.66},{&quot;2026-08-28&quot;:6.67},{&quot;2026-08-29&quot;:6.67},{&quot;2026-08-30&quot;:6.68},{&quot;2026-08-31&quot;:6.5},{&quot;2026-09-01&quot;:6.49},{&quot;2026-09-02&quot;:6.58},{&quot;2026-09-03&quot;:6.69},{&quot;2026-09-04&quot;:6.66},{&quot;2026-09-05&quot;:6.66},{&quot;2026-09-06&quot;:6.66},{&quot;2026-09-07&quot;:6.66},{&quot;2026-09-08&quot;:6.62},{&quot;2026-09-09&quot;:6.62},{&quot;2026-09-10&quot;:6.65},{&quot;2026-09-11&quot;:6.65}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:6.23},{&quot;2026-06-13&quot;:6.46},{&quot;2026-06-14&quot;:6.49},{&quot;2026-06-15&quot;:6.62},{&quot;2026-06-16&quot;:6.44},{&quot;2026-06-17&quot;:6.45},{&quot;2026-06-18&quot;:6.4},{&quot;2026-06-19&quot;:6.2},{&quot;2026-06-20&quot;:5.96},{&quot;2026-06-21&quot;:5.93},{&quot;2026-06-22&quot;:5.97},{&quot;2026-06-23&quot;:6.06},{&quot;2026-06-24&quot;:6.05},{&quot;2026-06-25&quot;:6.0},{&quot;2026-06-26&quot;:6.03},{&quot;2026-06-27&quot;:5.96},{&quot;2026-06-28&quot;:6.2},{&quot;2026-06-29&quot;:6.09},{&quot;2026-06-30&quot;:6.22},{&quot;2026-07-01&quot;:6.14},{&quot;2026-07-02&quot;:6.08},{&quot;2026-07-03&quot;:6.04},{&quot;2026-07-04&quot;:6.03},{&quot;2026-07-05&quot;:5.95},{&quot;2026-07-06&quot;:5.96},{&quot;2026-07-07&quot;:6.08},{&quot;2026-07-08&quot;:6.28},{&quot;2026-07-09&quot;:6.28},{&quot;2026-07-10&quot;:6.42},{&quot;2026-07-11&quot;:6.36},{&quot;2026-07-12&quot;:6.46},{&quot;2026-07-13&quot;:6.31},{&quot;2026-07-14&quot;:6.27},{&quot;2026-07-15&quot;:6.3},{&quot;2026-07-16&quot;:6.35},{&quot;2026-07-17&quot;:6.28},{&quot;2026-07-18&quot;:6.1},{&quot;2026-07-19&quot;:6.14},{&quot;2026-07-20&quot;:5.96},{&quot;2026-07-21&quot;:6.43},{&quot;2026-07-23&quot;:6.4},{&quot;2026-07-24&quot;:6.4},{&quot;2026-07-25&quot;:6.33},{&quot;2026-07-26&quot;:5.64},{&quot;2026-07-27&quot;:5.8},{&quot;2026-07-28&quot;:5.7},{&quot;2026-07-29&quot;:5.8},{&quot;2026-07-30&quot;:5.73},{&quot;2026-07-31&quot;:5.78},{&quot;2026-08-01&quot;:6.08},{&quot;2026-08-02&quot;:5.99},{&quot;2026-08-03&quot;:6.41},{&quot;2026-08-04&quot;:6.38},{&quot;2026-08-05&quot;:6.5},{&quot;2026-08-07&quot;:6.34},{&quot;2026-08-08&quot;:6.26},{&quot;2026-08-09&quot;:6.19},{&quot;2026-08-10&quot;:5.99},{&quot;2026-08-11&quot;:5.86},{&quot;2026-08-12&quot;:5.93},{&quot;2026-08-13&quot;:5.75},{&quot;2026-08-14&quot;:5.77},{&quot;2026-08-15&quot;:6.04},{&quot;2026-08-16&quot;:6.16},{&quot;2026-08-17&quot;:6.07},{&quot;2026-08-18&quot;:6.3},{&quot;2026-08-19&quot;:6.28},{&quot;2026-08-20&quot;:6.28},{&quot;2026-08-21&quot;:5.99},{&quot;2026-08-22&quot;:5.99},{&quot;2026-08-23&quot;:6.09},{&quot;2026-08-24&quot;:6.5},{&quot;2026-08-25&quot;:6.57},{&quot;2026-08-26&quot;:6.67},{&quot;2026-08-27&quot;:6.86},{&quot;2026-08-28&quot;:6.64},{&quot;2026-08-29&quot;:6.64},{&quot;2026-08-30&quot;:6.49},{&quot;2026-08-31&quot;:6.78},{&quot;2026-09-01&quot;:6.59},{&quot;2026-09-02&quot;:6.22},{&quot;2026-09-03&quot;:6.44},{&quot;2026-09-04&quot;:6.14},{&quot;2026-09-05&quot;:5.99},{&quot;2026-09-06&quot;:6.13},{&quot;2026-09-07&quot;:6.18},{&quot;2026-09-08&quot;:6.17},{&quot;2026-09-09&quot;:6.25},{&quot;2026-09-10&quot;:6.26},{&quot;2026-09-11&quot;:6.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="11926"
  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">
            Hellkite Courser
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Hellkite Courser
        </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 — Dragon</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Hellkite Courser" src="https://cards.scryfall.io/large/front/d/b/db45122e-b5ef-487b-8ea9-59ea066d3c88.jpg?1783928813" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-08&quot;:14.05},{&quot;2026-06-10&quot;:14.05},{&quot;2026-06-11&quot;:13.99},{&quot;2026-06-12&quot;:13.96},{&quot;2026-06-13&quot;:13.96},{&quot;2026-06-14&quot;:13.96},{&quot;2026-06-15&quot;:13.96},{&quot;2026-06-16&quot;:13.96},{&quot;2026-06-17&quot;:13.96},{&quot;2026-06-18&quot;:13.96},{&quot;2026-06-19&quot;:13.96},{&quot;2026-06-20&quot;:13.96},{&quot;2026-06-21&quot;:13.96},{&quot;2026-06-22&quot;:13.96},{&quot;2026-06-24&quot;:14.03},{&quot;2026-06-25&quot;:14.03},{&quot;2026-06-26&quot;:14.03},{&quot;2026-06-27&quot;:14.05},{&quot;2026-06-28&quot;:14.05},{&quot;2026-06-29&quot;:14.05},{&quot;2026-06-30&quot;:14.05},{&quot;2026-07-01&quot;:14.05},{&quot;2026-07-02&quot;:14.05},{&quot;2026-07-03&quot;:13.97},{&quot;2026-07-04&quot;:13.97},{&quot;2026-07-05&quot;:14.05},{&quot;2026-07-06&quot;:14.09},{&quot;2026-07-07&quot;:14.09},{&quot;2026-07-08&quot;:14.09},{&quot;2026-07-09&quot;:14.09},{&quot;2026-07-10&quot;:14.09},{&quot;2026-07-11&quot;:14.09},{&quot;2026-07-12&quot;:14.09},{&quot;2026-07-13&quot;:14.09},{&quot;2026-07-14&quot;:14.09},{&quot;2026-07-15&quot;:14.09},{&quot;2026-07-16&quot;:14.09},{&quot;2026-07-17&quot;:14.09},{&quot;2026-07-18&quot;:14.09},{&quot;2026-07-19&quot;:14.09},{&quot;2026-07-20&quot;:14.09},{&quot;2026-07-21&quot;:14.09},{&quot;2026-07-23&quot;:14.09},{&quot;2026-07-25&quot;:14.13},{&quot;2026-07-26&quot;:14.13},{&quot;2026-07-27&quot;:14.13},{&quot;2026-07-29&quot;:14.13},{&quot;2026-07-30&quot;:14.13},{&quot;2026-07-31&quot;:14.13},{&quot;2026-08-01&quot;:14.13},{&quot;2026-08-02&quot;:14.14},{&quot;2026-08-03&quot;:14.14},{&quot;2026-08-04&quot;:14.14},{&quot;2026-08-05&quot;:14.2},{&quot;2026-08-07&quot;:14.26},{&quot;2026-08-08&quot;:14.26},{&quot;2026-08-09&quot;:14.26},{&quot;2026-08-10&quot;:14.26},{&quot;2026-08-11&quot;:14.38},{&quot;2026-08-12&quot;:14.38},{&quot;2026-08-13&quot;:14.38},{&quot;2026-08-14&quot;:14.41},{&quot;2026-08-15&quot;:14.41},{&quot;2026-08-16&quot;:14.41},{&quot;2026-08-17&quot;:14.41},{&quot;2026-08-18&quot;:14.41},{&quot;2026-08-19&quot;:14.41},{&quot;2026-08-20&quot;:14.41},{&quot;2026-08-21&quot;:14.44},{&quot;2026-08-22&quot;:14.44},{&quot;2026-08-23&quot;:14.44},{&quot;2026-08-24&quot;:14.44},{&quot;2026-08-25&quot;:14.44},{&quot;2026-08-26&quot;:14.44},{&quot;2026-08-27&quot;:14.44},{&quot;2026-08-28&quot;:14.44},{&quot;2026-08-29&quot;:14.44},{&quot;2026-08-30&quot;:14.57},{&quot;2026-08-31&quot;:14.57},{&quot;2026-09-01&quot;:14.57},{&quot;2026-09-02&quot;:14.57},{&quot;2026-09-03&quot;:14.57},{&quot;2026-09-04&quot;:14.59},{&quot;2026-09-05&quot;:14.59},{&quot;2026-09-06&quot;:14.59},{&quot;2026-09-07&quot;:14.59},{&quot;2026-09-08&quot;:14.59},{&quot;2026-09-09&quot;:14.59},{&quot;2026-09-10&quot;:14.59},{&quot;2026-09-11&quot;:14.59}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:4.82},{&quot;2026-06-10&quot;:4.82},{&quot;2026-06-11&quot;:4.82},{&quot;2026-06-12&quot;:5.06},{&quot;2026-06-13&quot;:5.51},{&quot;2026-06-14&quot;:5.78},{&quot;2026-06-15&quot;:6.0},{&quot;2026-06-16&quot;:5.96},{&quot;2026-06-17&quot;:6.51},{&quot;2026-06-18&quot;:6.53},{&quot;2026-06-19&quot;:6.53},{&quot;2026-06-20&quot;:6.53},{&quot;2026-06-21&quot;:6.53},{&quot;2026-06-22&quot;:6.53},{&quot;2026-06-24&quot;:6.38},{&quot;2026-06-25&quot;:6.38},{&quot;2026-06-26&quot;:6.55},{&quot;2026-06-27&quot;:6.58},{&quot;2026-06-28&quot;:6.22},{&quot;2026-06-29&quot;:6.22},{&quot;2026-06-30&quot;:6.19},{&quot;2026-07-01&quot;:6.19},{&quot;2026-07-02&quot;:6.02},{&quot;2026-07-03&quot;:5.68},{&quot;2026-07-04&quot;:5.68},{&quot;2026-07-05&quot;:5.62},{&quot;2026-07-06&quot;:5.76},{&quot;2026-07-07&quot;:5.59},{&quot;2026-07-08&quot;:5.59},{&quot;2026-07-09&quot;:5.56},{&quot;2026-07-10&quot;:5.41},{&quot;2026-07-11&quot;:5.2},{&quot;2026-07-12&quot;:5.27},{&quot;2026-07-13&quot;:5.87},{&quot;2026-07-14&quot;:6.01},{&quot;2026-07-15&quot;:5.98},{&quot;2026-07-16&quot;:5.8},{&quot;2026-07-17&quot;:5.8},{&quot;2026-07-18&quot;:5.87},{&quot;2026-07-19&quot;:5.84},{&quot;2026-07-20&quot;:5.7},{&quot;2026-07-21&quot;:5.6},{&quot;2026-07-23&quot;:5.34},{&quot;2026-07-25&quot;:5.12},{&quot;2026-07-26&quot;:5.12},{&quot;2026-07-27&quot;:5.12},{&quot;2026-07-29&quot;:4.78},{&quot;2026-07-30&quot;:4.42},{&quot;2026-07-31&quot;:4.48},{&quot;2026-08-01&quot;:4.44},{&quot;2026-08-02&quot;:4.44},{&quot;2026-08-03&quot;:4.52},{&quot;2026-08-04&quot;:4.61},{&quot;2026-08-05&quot;:4.53},{&quot;2026-08-07&quot;:4.55},{&quot;2026-08-08&quot;:4.55},{&quot;2026-08-09&quot;:4.6},{&quot;2026-08-10&quot;:4.55},{&quot;2026-08-11&quot;:4.55},{&quot;2026-08-12&quot;:4.55},{&quot;2026-08-13&quot;:4.56},{&quot;2026-08-14&quot;:4.66},{&quot;2026-08-15&quot;:4.66},{&quot;2026-08-16&quot;:4.87},{&quot;2026-08-17&quot;:4.81},{&quot;2026-08-18&quot;:4.85},{&quot;2026-08-19&quot;:4.95},{&quot;2026-08-20&quot;:4.95},{&quot;2026-08-21&quot;:5.17},{&quot;2026-08-22&quot;:4.91},{&quot;2026-08-23&quot;:4.9},{&quot;2026-08-24&quot;:4.9},{&quot;2026-08-25&quot;:4.9},{&quot;2026-08-26&quot;:5.0},{&quot;2026-08-27&quot;:4.88},{&quot;2026-08-28&quot;:4.79},{&quot;2026-08-29&quot;:4.79},{&quot;2026-08-30&quot;:4.54},{&quot;2026-08-31&quot;:4.54},{&quot;2026-09-01&quot;:4.54},{&quot;2026-09-02&quot;:4.67},{&quot;2026-09-03&quot;:4.59},{&quot;2026-09-04&quot;:4.38},{&quot;2026-09-05&quot;:4.68},{&quot;2026-09-06&quot;:5.21},{&quot;2026-09-07&quot;:5.73},{&quot;2026-09-08&quot;:5.96},{&quot;2026-09-09&quot;:6.09},{&quot;2026-09-10&quot;:6.14},{&quot;2026-09-11&quot;:6.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="19389"
  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">
            Shivan Devastator
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $5.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="Shivan Devastator" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/e/beaca6ca-58e0-4846-b9b7-5ac9547bcde5.jpg?1783921187" />

        <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">
            Shivan Devastator
        </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 — Dragon Hydra</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-x'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Shivan Devastator" src="https://cards.scryfall.io/large/front/b/e/beaca6ca-58e0-4846-b9b7-5ac9547bcde5.jpg?1783921187" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:5.4},{&quot;2026-06-11&quot;:5.4},{&quot;2026-06-12&quot;:5.38},{&quot;2026-06-13&quot;:5.38},{&quot;2026-06-14&quot;:5.39},{&quot;2026-06-15&quot;:5.38},{&quot;2026-06-16&quot;:5.38},{&quot;2026-06-17&quot;:5.38},{&quot;2026-06-18&quot;:5.38},{&quot;2026-06-19&quot;:5.38},{&quot;2026-06-20&quot;:5.38},{&quot;2026-06-21&quot;:5.38},{&quot;2026-06-22&quot;:5.32},{&quot;2026-06-23&quot;:5.32},{&quot;2026-06-24&quot;:5.32},{&quot;2026-06-25&quot;:5.34},{&quot;2026-06-26&quot;:5.34},{&quot;2026-06-27&quot;:5.34},{&quot;2026-06-28&quot;:5.34},{&quot;2026-06-29&quot;:5.34},{&quot;2026-06-30&quot;:5.34},{&quot;2026-07-01&quot;:5.34},{&quot;2026-07-02&quot;:5.34},{&quot;2026-07-03&quot;:5.37},{&quot;2026-07-04&quot;:5.37},{&quot;2026-07-05&quot;:5.37},{&quot;2026-07-06&quot;:5.42},{&quot;2026-07-07&quot;:5.42},{&quot;2026-07-08&quot;:5.42},{&quot;2026-07-09&quot;:5.42},{&quot;2026-07-10&quot;:5.42},{&quot;2026-07-11&quot;:5.42},{&quot;2026-07-12&quot;:5.44},{&quot;2026-07-13&quot;:5.44},{&quot;2026-07-14&quot;:5.44},{&quot;2026-07-15&quot;:5.44},{&quot;2026-07-16&quot;:5.44},{&quot;2026-07-17&quot;:5.38},{&quot;2026-07-18&quot;:5.38},{&quot;2026-07-19&quot;:5.38},{&quot;2026-07-20&quot;:5.38},{&quot;2026-07-21&quot;:5.38},{&quot;2026-07-23&quot;:5.32},{&quot;2026-07-25&quot;:5.44},{&quot;2026-07-26&quot;:5.44},{&quot;2026-07-27&quot;:5.44},{&quot;2026-07-29&quot;:5.34},{&quot;2026-07-30&quot;:5.25},{&quot;2026-07-31&quot;:5.18},{&quot;2026-08-01&quot;:5.1},{&quot;2026-08-02&quot;:5.1},{&quot;2026-08-03&quot;:5.03},{&quot;2026-08-04&quot;:5.01},{&quot;2026-08-05&quot;:5.01},{&quot;2026-08-07&quot;:5.01},{&quot;2026-08-08&quot;:5.01},{&quot;2026-08-09&quot;:5.01},{&quot;2026-08-10&quot;:5.01},{&quot;2026-08-11&quot;:5.01},{&quot;2026-08-12&quot;:5.01},{&quot;2026-08-13&quot;:5.01},{&quot;2026-08-14&quot;:5.01},{&quot;2026-08-15&quot;:4.98},{&quot;2026-08-16&quot;:4.98},{&quot;2026-08-17&quot;:4.98},{&quot;2026-08-18&quot;:4.98},{&quot;2026-08-19&quot;:4.98},{&quot;2026-08-20&quot;:4.98},{&quot;2026-08-21&quot;:4.98},{&quot;2026-08-22&quot;:4.98},{&quot;2026-08-23&quot;:4.98},{&quot;2026-08-24&quot;:4.98},{&quot;2026-08-25&quot;:4.98},{&quot;2026-08-26&quot;:4.98},{&quot;2026-08-27&quot;:4.98},{&quot;2026-08-28&quot;:4.98},{&quot;2026-08-29&quot;:4.98},{&quot;2026-08-30&quot;:4.96},{&quot;2026-08-31&quot;:4.96},{&quot;2026-09-01&quot;:4.96},{&quot;2026-09-02&quot;:4.96},{&quot;2026-09-03&quot;:4.96},{&quot;2026-09-04&quot;:4.96},{&quot;2026-09-05&quot;:5.05},{&quot;2026-09-06&quot;:5.49},{&quot;2026-09-07&quot;:5.49},{&quot;2026-09-08&quot;:5.49},{&quot;2026-09-09&quot;:5.48},{&quot;2026-09-10&quot;:5.48},{&quot;2026-09-11&quot;:5.48}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:5.47},{&quot;2026-06-11&quot;:5.47},{&quot;2026-06-12&quot;:5.47},{&quot;2026-06-13&quot;:5.47},{&quot;2026-06-14&quot;:5.47},{&quot;2026-06-15&quot;:5.47},{&quot;2026-06-16&quot;:5.47},{&quot;2026-06-17&quot;:5.47},{&quot;2026-06-18&quot;:5.46},{&quot;2026-06-19&quot;:5.46},{&quot;2026-06-20&quot;:5.47},{&quot;2026-06-21&quot;:5.47},{&quot;2026-06-22&quot;:5.47},{&quot;2026-06-23&quot;:5.47},{&quot;2026-06-24&quot;:5.47},{&quot;2026-06-25&quot;:5.47},{&quot;2026-06-26&quot;:5.47},{&quot;2026-06-27&quot;:5.47},{&quot;2026-06-28&quot;:5.48},{&quot;2026-06-29&quot;:5.48},{&quot;2026-06-30&quot;:5.5},{&quot;2026-07-01&quot;:5.55},{&quot;2026-07-02&quot;:5.55},{&quot;2026-07-03&quot;:5.57},{&quot;2026-07-04&quot;:5.57},{&quot;2026-07-05&quot;:5.57},{&quot;2026-07-06&quot;:5.58},{&quot;2026-07-07&quot;:5.58},{&quot;2026-07-08&quot;:5.58},{&quot;2026-07-09&quot;:5.58},{&quot;2026-07-10&quot;:5.58},{&quot;2026-07-11&quot;:5.58},{&quot;2026-07-12&quot;:5.6},{&quot;2026-07-13&quot;:5.6},{&quot;2026-07-14&quot;:5.6},{&quot;2026-07-15&quot;:5.6},{&quot;2026-07-16&quot;:5.6},{&quot;2026-07-17&quot;:5.6},{&quot;2026-07-18&quot;:5.6},{&quot;2026-07-19&quot;:5.61},{&quot;2026-07-20&quot;:5.61},{&quot;2026-07-21&quot;:5.61},{&quot;2026-07-23&quot;:5.56},{&quot;2026-07-25&quot;:5.56},{&quot;2026-07-26&quot;:5.56},{&quot;2026-07-27&quot;:5.56},{&quot;2026-07-29&quot;:5.56},{&quot;2026-07-30&quot;:5.56},{&quot;2026-07-31&quot;:5.56},{&quot;2026-08-01&quot;:5.56},{&quot;2026-08-02&quot;:5.56},{&quot;2026-08-03&quot;:5.56},{&quot;2026-08-04&quot;:5.65},{&quot;2026-08-05&quot;:5.68},{&quot;2026-08-07&quot;:5.68},{&quot;2026-08-08&quot;:5.68},{&quot;2026-08-09&quot;:5.7},{&quot;2026-08-10&quot;:5.7},{&quot;2026-08-11&quot;:5.7},{&quot;2026-08-12&quot;:5.7},{&quot;2026-08-13&quot;:5.79},{&quot;2026-08-14&quot;:5.79},{&quot;2026-08-15&quot;:5.82},{&quot;2026-08-16&quot;:5.83},{&quot;2026-08-17&quot;:5.83},{&quot;2026-08-18&quot;:5.83},{&quot;2026-08-19&quot;:5.83},{&quot;2026-08-20&quot;:5.83},{&quot;2026-08-21&quot;:5.88},{&quot;2026-08-22&quot;:5.88},{&quot;2026-08-23&quot;:5.88},{&quot;2026-08-24&quot;:5.89},{&quot;2026-08-25&quot;:5.89},{&quot;2026-08-26&quot;:5.94},{&quot;2026-08-27&quot;:5.94},{&quot;2026-08-28&quot;:5.94},{&quot;2026-08-29&quot;:5.94},{&quot;2026-08-30&quot;:5.98},{&quot;2026-08-31&quot;:5.98},{&quot;2026-09-01&quot;:5.98},{&quot;2026-09-02&quot;:5.93},{&quot;2026-09-03&quot;:5.93},{&quot;2026-09-04&quot;:5.93},{&quot;2026-09-05&quot;:5.93},{&quot;2026-09-06&quot;:5.93},{&quot;2026-09-07&quot;:5.93},{&quot;2026-09-08&quot;:5.87},{&quot;2026-09-09&quot;:5.87},{&quot;2026-09-10&quot;:5.87},{&quot;2026-09-11&quot;:5.87}]}"
        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="13895"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmm ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Path to Exile" src="https://cards.scryfall.io/large/front/f/1/f14c2a76-b9f5-42f2-8652-dafa5bd132cb.jpg?1783915515" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-11&quot;:4.92},{&quot;2026-06-12&quot;:4.92},{&quot;2026-06-13&quot;:4.81},{&quot;2026-06-14&quot;:4.92},{&quot;2026-06-15&quot;:4.88},{&quot;2026-06-16&quot;:4.88},{&quot;2026-06-17&quot;:4.88},{&quot;2026-06-18&quot;:4.88},{&quot;2026-06-19&quot;:4.83},{&quot;2026-06-20&quot;:4.83},{&quot;2026-06-21&quot;:4.82},{&quot;2026-06-22&quot;:4.82},{&quot;2026-06-23&quot;:4.8},{&quot;2026-06-24&quot;:4.81},{&quot;2026-06-25&quot;:4.81},{&quot;2026-06-26&quot;:4.8},{&quot;2026-06-27&quot;:4.78},{&quot;2026-06-28&quot;:4.78},{&quot;2026-06-29&quot;:4.78},{&quot;2026-06-30&quot;:4.79},{&quot;2026-07-01&quot;:4.81},{&quot;2026-07-02&quot;:4.86},{&quot;2026-07-03&quot;:4.87},{&quot;2026-07-04&quot;:4.86},{&quot;2026-07-05&quot;:4.88},{&quot;2026-07-06&quot;:4.88},{&quot;2026-07-07&quot;:4.88},{&quot;2026-07-08&quot;:4.81},{&quot;2026-07-09&quot;:4.82},{&quot;2026-07-10&quot;:4.78},{&quot;2026-07-11&quot;:4.79},{&quot;2026-07-12&quot;:4.87},{&quot;2026-07-13&quot;:4.87},{&quot;2026-07-14&quot;:4.87},{&quot;2026-07-15&quot;:4.87},{&quot;2026-07-16&quot;:4.87},{&quot;2026-07-17&quot;:4.87},{&quot;2026-07-18&quot;:4.55},{&quot;2026-07-19&quot;:4.54},{&quot;2026-07-20&quot;:4.67},{&quot;2026-07-21&quot;:4.67},{&quot;2026-07-23&quot;:4.61},{&quot;2026-07-25&quot;:4.61},{&quot;2026-07-26&quot;:4.55},{&quot;2026-07-27&quot;:4.54},{&quot;2026-07-28&quot;:4.55},{&quot;2026-07-29&quot;:4.55},{&quot;2026-07-30&quot;:4.7},{&quot;2026-07-31&quot;:4.7},{&quot;2026-08-01&quot;:4.7},{&quot;2026-08-02&quot;:4.73},{&quot;2026-08-03&quot;:4.87},{&quot;2026-08-04&quot;:4.87},{&quot;2026-08-05&quot;:4.87},{&quot;2026-08-07&quot;:4.88},{&quot;2026-08-08&quot;:4.88},{&quot;2026-08-09&quot;:4.93},{&quot;2026-08-10&quot;:4.93},{&quot;2026-08-11&quot;:5.09},{&quot;2026-08-12&quot;:5.14},{&quot;2026-08-13&quot;:5.14},{&quot;2026-08-14&quot;:5.15},{&quot;2026-08-15&quot;:5.15},{&quot;2026-08-16&quot;:5.29},{&quot;2026-08-17&quot;:5.29},{&quot;2026-08-18&quot;:5.31},{&quot;2026-08-19&quot;:5.2},{&quot;2026-08-20&quot;:5.2},{&quot;2026-08-21&quot;:5.1},{&quot;2026-08-22&quot;:5.1},{&quot;2026-08-23&quot;:5.08},{&quot;2026-08-24&quot;:5.08},{&quot;2026-08-25&quot;:5.08},{&quot;2026-08-26&quot;:5.18},{&quot;2026-08-27&quot;:5.26},{&quot;2026-08-28&quot;:5.14},{&quot;2026-08-29&quot;:5.14},{&quot;2026-08-30&quot;:5.08},{&quot;2026-08-31&quot;:5.08},{&quot;2026-09-01&quot;:5.08},{&quot;2026-09-02&quot;:5.08},{&quot;2026-09-03&quot;:5.25},{&quot;2026-09-04&quot;:5.26},{&quot;2026-09-05&quot;:5.38},{&quot;2026-09-06&quot;:5.21},{&quot;2026-09-07&quot;:5.31},{&quot;2026-09-08&quot;:5.3},{&quot;2026-09-09&quot;:5.21},{&quot;2026-09-10&quot;:5.21},{&quot;2026-09-11&quot;:5.28}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:2.53},{&quot;2026-06-12&quot;:2.59},{&quot;2026-06-13&quot;:2.55},{&quot;2026-06-14&quot;:2.55},{&quot;2026-06-15&quot;:2.66},{&quot;2026-06-16&quot;:2.66},{&quot;2026-06-17&quot;:2.61},{&quot;2026-06-18&quot;:2.59},{&quot;2026-06-19&quot;:2.53},{&quot;2026-06-20&quot;:2.48},{&quot;2026-06-21&quot;:2.43},{&quot;2026-06-22&quot;:2.45},{&quot;2026-06-23&quot;:2.42},{&quot;2026-06-24&quot;:2.39},{&quot;2026-06-25&quot;:2.38},{&quot;2026-06-26&quot;:2.38},{&quot;2026-06-27&quot;:2.31},{&quot;2026-06-28&quot;:2.34},{&quot;2026-06-29&quot;:2.27},{&quot;2026-06-30&quot;:2.32},{&quot;2026-07-01&quot;:2.28},{&quot;2026-07-02&quot;:2.25},{&quot;2026-07-03&quot;:2.3},{&quot;2026-07-04&quot;:2.27},{&quot;2026-07-05&quot;:2.32},{&quot;2026-07-06&quot;:2.32},{&quot;2026-07-07&quot;:2.31},{&quot;2026-07-08&quot;:2.29},{&quot;2026-07-09&quot;:2.27},{&quot;2026-07-10&quot;:2.26},{&quot;2026-07-11&quot;:2.26},{&quot;2026-07-12&quot;:2.24},{&quot;2026-07-13&quot;:2.21},{&quot;2026-07-14&quot;:2.21},{&quot;2026-07-15&quot;:2.23},{&quot;2026-07-16&quot;:2.25},{&quot;2026-07-17&quot;:2.21},{&quot;2026-07-18&quot;:2.22},{&quot;2026-07-19&quot;:2.21},{&quot;2026-07-20&quot;:2.23},{&quot;2026-07-21&quot;:2.19},{&quot;2026-07-23&quot;:2.09},{&quot;2026-07-25&quot;:2.16},{&quot;2026-07-26&quot;:2.17},{&quot;2026-07-27&quot;:2.16},{&quot;2026-07-28&quot;:2.18},{&quot;2026-07-29&quot;:2.16},{&quot;2026-07-30&quot;:2.13},{&quot;2026-07-31&quot;:2.18},{&quot;2026-08-01&quot;:2.17},{&quot;2026-08-02&quot;:2.22},{&quot;2026-08-03&quot;:2.26},{&quot;2026-08-04&quot;:2.26},{&quot;2026-08-05&quot;:2.28},{&quot;2026-08-07&quot;:2.26},{&quot;2026-08-08&quot;:2.24},{&quot;2026-08-09&quot;:2.24},{&quot;2026-08-10&quot;:2.33},{&quot;2026-08-11&quot;:2.24},{&quot;2026-08-12&quot;:2.24},{&quot;2026-08-13&quot;:2.25},{&quot;2026-08-14&quot;:2.14},{&quot;2026-08-15&quot;:2.19},{&quot;2026-08-16&quot;:2.19},{&quot;2026-08-17&quot;:2.08},{&quot;2026-08-18&quot;:2.06},{&quot;2026-08-19&quot;:2.24},{&quot;2026-08-20&quot;:2.24},{&quot;2026-08-21&quot;:2.33},{&quot;2026-08-22&quot;:2.38},{&quot;2026-08-23&quot;:2.45},{&quot;2026-08-24&quot;:2.55},{&quot;2026-08-25&quot;:2.55},{&quot;2026-08-26&quot;:2.52},{&quot;2026-08-27&quot;:2.57},{&quot;2026-08-28&quot;:2.44},{&quot;2026-08-29&quot;:2.44},{&quot;2026-08-30&quot;:2.33},{&quot;2026-08-31&quot;:2.33},{&quot;2026-09-01&quot;:2.33},{&quot;2026-09-02&quot;:2.31},{&quot;2026-09-03&quot;:2.31},{&quot;2026-09-04&quot;:2.37},{&quot;2026-09-05&quot;:2.4},{&quot;2026-09-06&quot;:2.39},{&quot;2026-09-07&quot;:2.46},{&quot;2026-09-08&quot;:2.5},{&quot;2026-09-09&quot;:2.5},{&quot;2026-09-10&quot;:2.49},{&quot;2026-09-11&quot;:2.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="74402"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-ltr ss-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">
            Mines of Moria
        </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">
              ↑
              11%
            </span>

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

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

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

        <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">
            Mines of Moria
        </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="Mines of Moria" src="https://cards.scryfall.io/large/front/0/b/0be723d6-4ada-4c3f-b87b-8ab83a4bbb8f.jpg?1783916232" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:2.99},{&quot;2026-06-14&quot;:2.99},{&quot;2026-06-15&quot;:2.99},{&quot;2026-06-16&quot;:3.05},{&quot;2026-06-17&quot;:3.04},{&quot;2026-06-18&quot;:3.04},{&quot;2026-06-19&quot;:3.04},{&quot;2026-06-20&quot;:3.04},{&quot;2026-06-21&quot;:2.93},{&quot;2026-06-22&quot;:2.93},{&quot;2026-06-23&quot;:2.93},{&quot;2026-06-24&quot;:2.93},{&quot;2026-06-25&quot;:2.93},{&quot;2026-06-26&quot;:3.03},{&quot;2026-06-27&quot;:3.03},{&quot;2026-06-28&quot;:3.03},{&quot;2026-06-29&quot;:3.03},{&quot;2026-06-30&quot;:3.02},{&quot;2026-07-01&quot;:3.02},{&quot;2026-07-02&quot;:2.99},{&quot;2026-07-03&quot;:3.01},{&quot;2026-07-04&quot;:3.01},{&quot;2026-07-05&quot;:3.01},{&quot;2026-07-06&quot;:3.01},{&quot;2026-07-07&quot;:3.01},{&quot;2026-07-08&quot;:3.01},{&quot;2026-07-09&quot;:3.01},{&quot;2026-07-10&quot;:2.83},{&quot;2026-07-11&quot;:2.83},{&quot;2026-07-12&quot;:3.04},{&quot;2026-07-13&quot;:2.84},{&quot;2026-07-14&quot;:2.88},{&quot;2026-07-15&quot;:2.88},{&quot;2026-07-16&quot;:2.88},{&quot;2026-07-17&quot;:2.88},{&quot;2026-07-18&quot;:2.92},{&quot;2026-07-19&quot;:2.92},{&quot;2026-07-20&quot;:2.92},{&quot;2026-07-21&quot;:2.92},{&quot;2026-07-22&quot;:2.92},{&quot;2026-07-23&quot;:2.92},{&quot;2026-07-24&quot;:2.94},{&quot;2026-07-25&quot;:2.94},{&quot;2026-07-26&quot;:2.94},{&quot;2026-07-27&quot;:2.94},{&quot;2026-07-28&quot;:3.04},{&quot;2026-07-29&quot;:3.04},{&quot;2026-07-30&quot;:3.04},{&quot;2026-07-31&quot;:2.9},{&quot;2026-08-01&quot;:2.92},{&quot;2026-08-02&quot;:2.99},{&quot;2026-08-03&quot;:3.03},{&quot;2026-08-04&quot;:2.81},{&quot;2026-08-05&quot;:2.81},{&quot;2026-08-07&quot;:3.01},{&quot;2026-08-08&quot;:3.13},{&quot;2026-08-09&quot;:3.2},{&quot;2026-08-10&quot;:3.23},{&quot;2026-08-11&quot;:3.51},{&quot;2026-08-12&quot;:3.59},{&quot;2026-08-13&quot;:3.55},{&quot;2026-08-14&quot;:3.55},{&quot;2026-08-15&quot;:3.55},{&quot;2026-08-16&quot;:3.62},{&quot;2026-08-17&quot;:3.62},{&quot;2026-08-18&quot;:3.54},{&quot;2026-08-19&quot;:3.45},{&quot;2026-08-20&quot;:3.34},{&quot;2026-08-21&quot;:3.27},{&quot;2026-08-22&quot;:3.24},{&quot;2026-08-23&quot;:3.23},{&quot;2026-08-24&quot;:3.27},{&quot;2026-08-25&quot;:3.45},{&quot;2026-08-26&quot;:3.76},{&quot;2026-08-27&quot;:4.25},{&quot;2026-08-28&quot;:4.47},{&quot;2026-08-29&quot;:4.47},{&quot;2026-08-30&quot;:4.83},{&quot;2026-08-31&quot;:4.42},{&quot;2026-09-01&quot;:4.48},{&quot;2026-09-02&quot;:4.51},{&quot;2026-09-03&quot;:4.51},{&quot;2026-09-04&quot;:4.12},{&quot;2026-09-05&quot;:4.12},{&quot;2026-09-06&quot;:4.12},{&quot;2026-09-07&quot;:4.14},{&quot;2026-09-08&quot;:4.25},{&quot;2026-09-09&quot;:4.25},{&quot;2026-09-10&quot;:4.52},{&quot;2026-09-11&quot;:4.52}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:2.12},{&quot;2026-06-14&quot;:2.09},{&quot;2026-06-15&quot;:1.99},{&quot;2026-06-16&quot;:2.17},{&quot;2026-06-17&quot;:2.27},{&quot;2026-06-18&quot;:2.27},{&quot;2026-06-19&quot;:2.22},{&quot;2026-06-20&quot;:2.22},{&quot;2026-06-21&quot;:2.24},{&quot;2026-06-22&quot;:2.42},{&quot;2026-06-23&quot;:2.37},{&quot;2026-06-24&quot;:2.37},{&quot;2026-06-25&quot;:2.37},{&quot;2026-06-26&quot;:2.15},{&quot;2026-06-27&quot;:2.15},{&quot;2026-06-28&quot;:2.2},{&quot;2026-06-29&quot;:2.22},{&quot;2026-06-30&quot;:2.19},{&quot;2026-07-01&quot;:2.12},{&quot;2026-07-02&quot;:2.08},{&quot;2026-07-03&quot;:2.04},{&quot;2026-07-04&quot;:2.02},{&quot;2026-07-05&quot;:2.17},{&quot;2026-07-06&quot;:1.98},{&quot;2026-07-07&quot;:2.02},{&quot;2026-07-08&quot;:2.01},{&quot;2026-07-09&quot;:2.06},{&quot;2026-07-10&quot;:2.11},{&quot;2026-07-11&quot;:1.97},{&quot;2026-07-12&quot;:1.88},{&quot;2026-07-13&quot;:1.85},{&quot;2026-07-14&quot;:1.79},{&quot;2026-07-15&quot;:1.76},{&quot;2026-07-16&quot;:1.78},{&quot;2026-07-17&quot;:1.86},{&quot;2026-07-18&quot;:1.93},{&quot;2026-07-19&quot;:1.89},{&quot;2026-07-20&quot;:2.02},{&quot;2026-07-21&quot;:2.09},{&quot;2026-07-22&quot;:2.13},{&quot;2026-07-23&quot;:2.26},{&quot;2026-07-24&quot;:2.33},{&quot;2026-07-25&quot;:2.35},{&quot;2026-07-26&quot;:2.28},{&quot;2026-07-27&quot;:2.27},{&quot;2026-07-28&quot;:2.27},{&quot;2026-07-29&quot;:2.34},{&quot;2026-07-30&quot;:2.45},{&quot;2026-07-31&quot;:2.29},{&quot;2026-08-01&quot;:2.24},{&quot;2026-08-02&quot;:2.28},{&quot;2026-08-03&quot;:2.13},{&quot;2026-08-04&quot;:2.08},{&quot;2026-08-05&quot;:2.06},{&quot;2026-08-07&quot;:2.1},{&quot;2026-08-08&quot;:2.09},{&quot;2026-08-09&quot;:2.23},{&quot;2026-08-10&quot;:2.78},{&quot;2026-08-11&quot;:2.74},{&quot;2026-08-12&quot;:3.31},{&quot;2026-08-13&quot;:3.43},{&quot;2026-08-14&quot;:3.34},{&quot;2026-08-15&quot;:2.53},{&quot;2026-08-16&quot;:2.31},{&quot;2026-08-17&quot;:2.78},{&quot;2026-08-18&quot;:3.17},{&quot;2026-08-19&quot;:3.14},{&quot;2026-08-20&quot;:3.55},{&quot;2026-08-21&quot;:3.13},{&quot;2026-08-22&quot;:3.08},{&quot;2026-08-23&quot;:3.4},{&quot;2026-08-24&quot;:3.86},{&quot;2026-08-25&quot;:3.86},{&quot;2026-08-26&quot;:3.39},{&quot;2026-08-27&quot;:3.51},{&quot;2026-08-28&quot;:3.18},{&quot;2026-08-29&quot;:3.18},{&quot;2026-08-30&quot;:4.2},{&quot;2026-08-31&quot;:4.04},{&quot;2026-09-01&quot;:3.98},{&quot;2026-09-02&quot;:4.44},{&quot;2026-09-03&quot;:4.34},{&quot;2026-09-04&quot;:4.48},{&quot;2026-09-05&quot;:4.0},{&quot;2026-09-06&quot;:4.31},{&quot;2026-09-07&quot;:4.04},{&quot;2026-09-08&quot;:4.14},{&quot;2026-09-09&quot;:4.23},{&quot;2026-09-10&quot;:4.31},{&quot;2026-09-11&quot;:4.45}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            An Offer You Can&#39;t Refuse
        </span>


      </div>

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

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

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

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

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

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

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

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            An Offer You Can&#39;t Refuse
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="An Offer You Can&#39;t Refuse" src="https://cards.scryfall.io/large/front/a/8/a829747f-cf9b-4d81-ba66-9f0630ed4565.jpg?1783909078" />
    </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">
                $3.45
              </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">
                $4.02
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-12&quot;:2.57},{&quot;2026-06-13&quot;:2.53},{&quot;2026-06-14&quot;:2.5},{&quot;2026-06-15&quot;:2.56},{&quot;2026-06-16&quot;:2.68},{&quot;2026-06-17&quot;:2.85},{&quot;2026-06-18&quot;:2.89},{&quot;2026-06-19&quot;:2.87},{&quot;2026-06-20&quot;:2.95},{&quot;2026-06-21&quot;:3.05},{&quot;2026-06-22&quot;:3.11},{&quot;2026-06-23&quot;:3.18},{&quot;2026-06-24&quot;:3.26},{&quot;2026-06-25&quot;:3.17},{&quot;2026-06-26&quot;:3.21},{&quot;2026-06-27&quot;:3.21},{&quot;2026-06-28&quot;:3.1},{&quot;2026-06-29&quot;:2.99},{&quot;2026-06-30&quot;:3.28},{&quot;2026-07-01&quot;:3.22},{&quot;2026-07-02&quot;:3.39},{&quot;2026-07-03&quot;:3.43},{&quot;2026-07-04&quot;:3.84},{&quot;2026-07-05&quot;:3.78},{&quot;2026-07-06&quot;:3.82},{&quot;2026-07-07&quot;:3.83},{&quot;2026-07-08&quot;:3.83},{&quot;2026-07-09&quot;:3.83},{&quot;2026-07-10&quot;:3.85},{&quot;2026-07-11&quot;:3.62},{&quot;2026-07-12&quot;:3.45},{&quot;2026-07-13&quot;:3.39},{&quot;2026-07-14&quot;:3.4},{&quot;2026-07-15&quot;:3.28},{&quot;2026-07-16&quot;:3.18},{&quot;2026-07-17&quot;:3.25},{&quot;2026-07-18&quot;:3.22},{&quot;2026-07-19&quot;:3.2},{&quot;2026-07-20&quot;:3.27},{&quot;2026-07-21&quot;:3.28},{&quot;2026-07-23&quot;:3.51},{&quot;2026-07-24&quot;:3.66},{&quot;2026-07-25&quot;:3.73},{&quot;2026-07-26&quot;:3.62},{&quot;2026-07-27&quot;:3.56},{&quot;2026-07-28&quot;:3.75},{&quot;2026-07-29&quot;:3.8},{&quot;2026-07-30&quot;:3.81},{&quot;2026-07-31&quot;:3.8},{&quot;2026-08-01&quot;:3.71},{&quot;2026-08-02&quot;:3.78},{&quot;2026-08-03&quot;:3.75},{&quot;2026-08-04&quot;:3.86},{&quot;2026-08-05&quot;:3.88},{&quot;2026-08-07&quot;:3.72},{&quot;2026-08-08&quot;:3.64},{&quot;2026-08-09&quot;:3.54},{&quot;2026-08-10&quot;:3.69},{&quot;2026-08-11&quot;:3.89},{&quot;2026-08-12&quot;:3.82},{&quot;2026-08-13&quot;:3.75},{&quot;2026-08-14&quot;:4.22},{&quot;2026-08-15&quot;:4.14},{&quot;2026-08-16&quot;:4.17},{&quot;2026-08-17&quot;:4.17},{&quot;2026-08-18&quot;:4.05},{&quot;2026-08-19&quot;:4.21},{&quot;2026-08-20&quot;:4.21},{&quot;2026-08-21&quot;:4.01},{&quot;2026-08-22&quot;:4.04},{&quot;2026-08-23&quot;:3.91},{&quot;2026-08-24&quot;:3.74},{&quot;2026-08-25&quot;:3.79},{&quot;2026-08-26&quot;:3.78},{&quot;2026-08-27&quot;:3.8},{&quot;2026-08-28&quot;:3.83},{&quot;2026-08-29&quot;:3.83},{&quot;2026-08-30&quot;:3.88},{&quot;2026-08-31&quot;:3.76},{&quot;2026-09-01&quot;:3.92},{&quot;2026-09-02&quot;:3.87},{&quot;2026-09-03&quot;:3.71},{&quot;2026-09-04&quot;:3.72},{&quot;2026-09-05&quot;:3.64},{&quot;2026-09-06&quot;:3.48},{&quot;2026-09-07&quot;:3.7},{&quot;2026-09-08&quot;:3.7},{&quot;2026-09-09&quot;:3.94},{&quot;2026-09-10&quot;:3.94},{&quot;2026-09-11&quot;:4.02}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:2.15},{&quot;2026-06-13&quot;:2.15},{&quot;2026-06-14&quot;:2.05},{&quot;2026-06-15&quot;:2.34},{&quot;2026-06-16&quot;:1.96},{&quot;2026-06-17&quot;:2.12},{&quot;2026-06-18&quot;:2.31},{&quot;2026-06-19&quot;:2.01},{&quot;2026-06-20&quot;:1.98},{&quot;2026-06-21&quot;:1.93},{&quot;2026-06-22&quot;:1.94},{&quot;2026-06-23&quot;:1.92},{&quot;2026-06-24&quot;:1.81},{&quot;2026-06-25&quot;:1.94},{&quot;2026-06-26&quot;:1.93},{&quot;2026-06-27&quot;:2.1},{&quot;2026-06-28&quot;:2.26},{&quot;2026-06-29&quot;:2.0},{&quot;2026-06-30&quot;:1.96},{&quot;2026-07-01&quot;:1.88},{&quot;2026-07-02&quot;:2.03},{&quot;2026-07-03&quot;:2.36},{&quot;2026-07-04&quot;:2.14},{&quot;2026-07-05&quot;:2.0},{&quot;2026-07-06&quot;:2.0},{&quot;2026-07-07&quot;:2.11},{&quot;2026-07-08&quot;:2.11},{&quot;2026-07-09&quot;:2.18},{&quot;2026-07-10&quot;:2.38},{&quot;2026-07-11&quot;:2.61},{&quot;2026-07-12&quot;:2.55},{&quot;2026-07-13&quot;:2.29},{&quot;2026-07-14&quot;:2.28},{&quot;2026-07-15&quot;:2.03},{&quot;2026-07-16&quot;:2.24},{&quot;2026-07-17&quot;:2.34},{&quot;2026-07-18&quot;:2.48},{&quot;2026-07-19&quot;:2.49},{&quot;2026-07-20&quot;:2.84},{&quot;2026-07-21&quot;:2.29},{&quot;2026-07-23&quot;:2.38},{&quot;2026-07-24&quot;:2.53},{&quot;2026-07-25&quot;:2.67},{&quot;2026-07-26&quot;:2.54},{&quot;2026-07-27&quot;:2.72},{&quot;2026-07-28&quot;:3.01},{&quot;2026-07-29&quot;:3.56},{&quot;2026-07-30&quot;:3.66},{&quot;2026-07-31&quot;:3.16},{&quot;2026-08-01&quot;:3.13},{&quot;2026-08-02&quot;:3.08},{&quot;2026-08-03&quot;:3.07},{&quot;2026-08-04&quot;:3.17},{&quot;2026-08-05&quot;:3.41},{&quot;2026-08-07&quot;:2.58},{&quot;2026-08-08&quot;:2.83},{&quot;2026-08-09&quot;:2.4},{&quot;2026-08-10&quot;:2.67},{&quot;2026-08-11&quot;:2.8},{&quot;2026-08-12&quot;:2.5},{&quot;2026-08-13&quot;:2.62},{&quot;2026-08-14&quot;:2.86},{&quot;2026-08-15&quot;:2.43},{&quot;2026-08-16&quot;:2.55},{&quot;2026-08-17&quot;:3.45},{&quot;2026-08-18&quot;:3.93},{&quot;2026-08-19&quot;:3.59},{&quot;2026-08-20&quot;:3.59},{&quot;2026-08-21&quot;:3.84},{&quot;2026-08-22&quot;:3.54},{&quot;2026-08-23&quot;:3.61},{&quot;2026-08-24&quot;:3.69},{&quot;2026-08-25&quot;:3.85},{&quot;2026-08-26&quot;:3.39},{&quot;2026-08-27&quot;:3.5},{&quot;2026-08-28&quot;:3.17},{&quot;2026-08-29&quot;:3.17},{&quot;2026-08-30&quot;:3.76},{&quot;2026-08-31&quot;:3.38},{&quot;2026-09-01&quot;:3.75},{&quot;2026-09-02&quot;:3.49},{&quot;2026-09-03&quot;:3.37},{&quot;2026-09-04&quot;:2.83},{&quot;2026-09-05&quot;:3.36},{&quot;2026-09-06&quot;:3.45},{&quot;2026-09-07&quot;:3.64},{&quot;2026-09-08&quot;:3.1},{&quot;2026-09-09&quot;:4.04},{&quot;2026-09-10&quot;:3.68},{&quot;2026-09-11&quot;:3.45}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="93367"
  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-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">
            Maelstrom of the Spirit Dragon
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $3.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="Maelstrom of the Spirit Dragon" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/4/c4e90bfb-d9a5-48a9-9ff9-b0f50a813eee.jpg?1743205026" />

        <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">
            Maelstrom of the Spirit Dragon
        </h3>

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Maelstrom of the Spirit Dragon" src="https://cards.scryfall.io/large/front/c/4/c4e90bfb-d9a5-48a9-9ff9-b0f50a813eee.jpg?1743205026" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:3.09},{&quot;2026-06-14&quot;:3.09},{&quot;2026-06-15&quot;:3.09},{&quot;2026-06-16&quot;:3.08},{&quot;2026-06-17&quot;:3.14},{&quot;2026-06-18&quot;:3.07},{&quot;2026-06-19&quot;:3.07},{&quot;2026-06-20&quot;:3.08},{&quot;2026-06-21&quot;:2.93},{&quot;2026-06-22&quot;:2.99},{&quot;2026-06-23&quot;:2.99},{&quot;2026-06-24&quot;:2.99},{&quot;2026-06-25&quot;:2.99},{&quot;2026-06-26&quot;:3.0},{&quot;2026-06-27&quot;:2.77},{&quot;2026-06-28&quot;:2.77},{&quot;2026-06-29&quot;:2.77},{&quot;2026-06-30&quot;:2.55},{&quot;2026-07-01&quot;:2.55},{&quot;2026-07-02&quot;:2.27},{&quot;2026-07-03&quot;:2.2},{&quot;2026-07-04&quot;:2.24},{&quot;2026-07-05&quot;:2.24},{&quot;2026-07-06&quot;:2.26},{&quot;2026-07-07&quot;:2.19},{&quot;2026-07-08&quot;:2.19},{&quot;2026-07-09&quot;:2.23},{&quot;2026-07-10&quot;:2.23},{&quot;2026-07-11&quot;:2.23},{&quot;2026-07-12&quot;:2.24},{&quot;2026-07-13&quot;:2.24},{&quot;2026-07-14&quot;:2.19},{&quot;2026-07-15&quot;:2.23},{&quot;2026-07-16&quot;:2.23},{&quot;2026-07-17&quot;:2.2},{&quot;2026-07-18&quot;:2.2},{&quot;2026-07-19&quot;:2.2},{&quot;2026-07-20&quot;:2.2},{&quot;2026-07-21&quot;:2.2},{&quot;2026-07-22&quot;:2.2},{&quot;2026-07-23&quot;:2.26},{&quot;2026-07-24&quot;:2.26},{&quot;2026-07-25&quot;:2.24},{&quot;2026-07-26&quot;:2.17},{&quot;2026-07-27&quot;:2.17},{&quot;2026-07-28&quot;:2.13},{&quot;2026-07-29&quot;:2.13},{&quot;2026-07-30&quot;:2.17},{&quot;2026-07-31&quot;:2.33},{&quot;2026-08-01&quot;:2.33},{&quot;2026-08-02&quot;:2.33},{&quot;2026-08-03&quot;:2.28},{&quot;2026-08-04&quot;:2.3},{&quot;2026-08-05&quot;:2.39},{&quot;2026-08-07&quot;:2.4},{&quot;2026-08-08&quot;:2.49},{&quot;2026-08-09&quot;:2.46},{&quot;2026-08-10&quot;:2.28},{&quot;2026-08-11&quot;:2.25},{&quot;2026-08-12&quot;:2.24},{&quot;2026-08-13&quot;:2.24},{&quot;2026-08-14&quot;:2.24},{&quot;2026-08-15&quot;:2.26},{&quot;2026-08-16&quot;:2.29},{&quot;2026-08-17&quot;:2.35},{&quot;2026-08-18&quot;:2.52},{&quot;2026-08-19&quot;:2.47},{&quot;2026-08-20&quot;:2.47},{&quot;2026-08-21&quot;:2.47},{&quot;2026-08-22&quot;:2.45},{&quot;2026-08-23&quot;:2.45},{&quot;2026-08-24&quot;:2.36},{&quot;2026-08-25&quot;:2.4},{&quot;2026-08-26&quot;:2.4},{&quot;2026-08-27&quot;:2.45},{&quot;2026-08-28&quot;:2.58},{&quot;2026-08-29&quot;:2.58},{&quot;2026-08-30&quot;:2.66},{&quot;2026-08-31&quot;:2.66},{&quot;2026-09-01&quot;:2.66},{&quot;2026-09-02&quot;:2.84},{&quot;2026-09-03&quot;:2.95},{&quot;2026-09-04&quot;:2.97},{&quot;2026-09-05&quot;:2.97},{&quot;2026-09-06&quot;:3.04},{&quot;2026-09-07&quot;:3.04},{&quot;2026-09-08&quot;:2.93},{&quot;2026-09-09&quot;:2.95},{&quot;2026-09-10&quot;:3.05},{&quot;2026-09-11&quot;:3.06}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:2.44},{&quot;2026-06-14&quot;:2.22},{&quot;2026-06-15&quot;:2.19},{&quot;2026-06-16&quot;:2.02},{&quot;2026-06-17&quot;:1.83},{&quot;2026-06-18&quot;:1.99},{&quot;2026-06-19&quot;:1.9},{&quot;2026-06-20&quot;:1.86},{&quot;2026-06-21&quot;:1.92},{&quot;2026-06-22&quot;:2.07},{&quot;2026-06-23&quot;:2.22},{&quot;2026-06-24&quot;:2.36},{&quot;2026-06-25&quot;:2.35},{&quot;2026-06-26&quot;:2.43},{&quot;2026-06-27&quot;:2.49},{&quot;2026-06-28&quot;:2.44},{&quot;2026-06-29&quot;:2.5},{&quot;2026-06-30&quot;:2.49},{&quot;2026-07-01&quot;:2.63},{&quot;2026-07-02&quot;:2.42},{&quot;2026-07-03&quot;:2.43},{&quot;2026-07-04&quot;:2.34},{&quot;2026-07-05&quot;:2.34},{&quot;2026-07-06&quot;:2.37},{&quot;2026-07-07&quot;:2.06},{&quot;2026-07-08&quot;:1.95},{&quot;2026-07-09&quot;:1.83},{&quot;2026-07-10&quot;:1.85},{&quot;2026-07-11&quot;:1.89},{&quot;2026-07-12&quot;:1.73},{&quot;2026-07-13&quot;:1.84},{&quot;2026-07-14&quot;:1.79},{&quot;2026-07-15&quot;:1.76},{&quot;2026-07-16&quot;:1.79},{&quot;2026-07-17&quot;:1.77},{&quot;2026-07-18&quot;:1.82},{&quot;2026-07-19&quot;:1.83},{&quot;2026-07-20&quot;:1.94},{&quot;2026-07-21&quot;:1.83},{&quot;2026-07-22&quot;:1.8},{&quot;2026-07-23&quot;:1.74},{&quot;2026-07-24&quot;:1.99},{&quot;2026-07-25&quot;:2.07},{&quot;2026-07-26&quot;:2.04},{&quot;2026-07-27&quot;:2.21},{&quot;2026-07-28&quot;:2.18},{&quot;2026-07-29&quot;:2.08},{&quot;2026-07-30&quot;:1.92},{&quot;2026-07-31&quot;:1.74},{&quot;2026-08-01&quot;:1.67},{&quot;2026-08-02&quot;:1.67},{&quot;2026-08-03&quot;:1.85},{&quot;2026-08-04&quot;:1.95},{&quot;2026-08-05&quot;:1.96},{&quot;2026-08-07&quot;:1.94},{&quot;2026-08-08&quot;:2.19},{&quot;2026-08-09&quot;:2.1},{&quot;2026-08-10&quot;:2.05},{&quot;2026-08-11&quot;:1.9},{&quot;2026-08-12&quot;:1.67},{&quot;2026-08-13&quot;:1.58},{&quot;2026-08-14&quot;:1.57},{&quot;2026-08-15&quot;:1.63},{&quot;2026-08-16&quot;:1.93},{&quot;2026-08-17&quot;:2.2},{&quot;2026-08-18&quot;:2.12},{&quot;2026-08-19&quot;:2.04},{&quot;2026-08-20&quot;:2.35},{&quot;2026-08-21&quot;:1.9},{&quot;2026-08-22&quot;:1.8},{&quot;2026-08-23&quot;:1.77},{&quot;2026-08-24&quot;:1.68},{&quot;2026-08-25&quot;:1.69},{&quot;2026-08-26&quot;:1.95},{&quot;2026-08-27&quot;:1.95},{&quot;2026-08-28&quot;:1.91},{&quot;2026-08-29&quot;:1.91},{&quot;2026-08-30&quot;:1.74},{&quot;2026-08-31&quot;:1.8},{&quot;2026-09-01&quot;:1.84},{&quot;2026-09-02&quot;:1.95},{&quot;2026-09-03&quot;:2.41},{&quot;2026-09-04&quot;:2.4},{&quot;2026-09-05&quot;:2.64},{&quot;2026-09-06&quot;:3.46},{&quot;2026-09-07&quot;:3.67},{&quot;2026-09-08&quot;:3.43},{&quot;2026-09-09&quot;:3.43},{&quot;2026-09-10&quot;:3.28},{&quot;2026-09-11&quot;:3.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="19294"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-dmu ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Shivan Reef" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/2/72c11164-e98c-4f09-9840-825bd1f91247.jpg?1783921199" />

        <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">
            Shivan Reef
        </h3>

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Shivan Reef" src="https://cards.scryfall.io/large/front/7/2/72c11164-e98c-4f09-9840-825bd1f91247.jpg?1783921199" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-11&quot;:7.2},{&quot;2026-06-12&quot;:7.21},{&quot;2026-06-13&quot;:7.21},{&quot;2026-06-14&quot;:7.21},{&quot;2026-06-15&quot;:7.16},{&quot;2026-06-16&quot;:7.16},{&quot;2026-06-17&quot;:7.16},{&quot;2026-06-18&quot;:7.16},{&quot;2026-06-19&quot;:7.16},{&quot;2026-06-20&quot;:7.16},{&quot;2026-06-21&quot;:6.97},{&quot;2026-06-22&quot;:6.97},{&quot;2026-06-23&quot;:7.04},{&quot;2026-06-24&quot;:6.92},{&quot;2026-06-25&quot;:7.01},{&quot;2026-06-26&quot;:7.01},{&quot;2026-06-27&quot;:7.31},{&quot;2026-06-28&quot;:7.35},{&quot;2026-06-29&quot;:7.35},{&quot;2026-06-30&quot;:7.35},{&quot;2026-07-01&quot;:7.35},{&quot;2026-07-02&quot;:7.41},{&quot;2026-07-03&quot;:7.41},{&quot;2026-07-04&quot;:7.68},{&quot;2026-07-05&quot;:7.68},{&quot;2026-07-06&quot;:7.86},{&quot;2026-07-07&quot;:7.86},{&quot;2026-07-08&quot;:7.86},{&quot;2026-07-09&quot;:7.86},{&quot;2026-07-10&quot;:7.86},{&quot;2026-07-11&quot;:7.86},{&quot;2026-07-12&quot;:7.66},{&quot;2026-07-13&quot;:7.45},{&quot;2026-07-14&quot;:7.45},{&quot;2026-07-15&quot;:7.45},{&quot;2026-07-16&quot;:7.45},{&quot;2026-07-17&quot;:7.14},{&quot;2026-07-18&quot;:7.14},{&quot;2026-07-19&quot;:7.14},{&quot;2026-07-20&quot;:7.39},{&quot;2026-07-21&quot;:7.5},{&quot;2026-07-23&quot;:7.54},{&quot;2026-07-25&quot;:7.71},{&quot;2026-07-26&quot;:7.71},{&quot;2026-07-27&quot;:7.71},{&quot;2026-07-28&quot;:7.65},{&quot;2026-07-29&quot;:7.71},{&quot;2026-07-30&quot;:7.72},{&quot;2026-07-31&quot;:7.73},{&quot;2026-08-01&quot;:7.73},{&quot;2026-08-02&quot;:7.77},{&quot;2026-08-03&quot;:7.77},{&quot;2026-08-04&quot;:7.73},{&quot;2026-08-05&quot;:7.73},{&quot;2026-08-07&quot;:7.73},{&quot;2026-08-08&quot;:7.89},{&quot;2026-08-09&quot;:8.04},{&quot;2026-08-10&quot;:8.04},{&quot;2026-08-11&quot;:8.04},{&quot;2026-08-12&quot;:8.04},{&quot;2026-08-13&quot;:8.04},{&quot;2026-08-14&quot;:8.04},{&quot;2026-08-15&quot;:8.04},{&quot;2026-08-16&quot;:8.04},{&quot;2026-08-17&quot;:8.04},{&quot;2026-08-18&quot;:8.01},{&quot;2026-08-19&quot;:8.01},{&quot;2026-08-20&quot;:8.01},{&quot;2026-08-21&quot;:8.01},{&quot;2026-08-22&quot;:7.88},{&quot;2026-08-23&quot;:7.91},{&quot;2026-08-24&quot;:7.91},{&quot;2026-08-25&quot;:7.92},{&quot;2026-08-26&quot;:7.94},{&quot;2026-08-27&quot;:7.94},{&quot;2026-08-28&quot;:7.94},{&quot;2026-08-29&quot;:7.94},{&quot;2026-08-30&quot;:8.03},{&quot;2026-08-31&quot;:8.06},{&quot;2026-09-01&quot;:8.06},{&quot;2026-09-02&quot;:7.85},{&quot;2026-09-03&quot;:7.85},{&quot;2026-09-04&quot;:7.89},{&quot;2026-09-05&quot;:7.89},{&quot;2026-09-06&quot;:7.89},{&quot;2026-09-07&quot;:7.91},{&quot;2026-09-08&quot;:7.91},{&quot;2026-09-09&quot;:7.91},{&quot;2026-09-10&quot;:7.91},{&quot;2026-09-11&quot;:7.91}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:3.48},{&quot;2026-06-12&quot;:3.52},{&quot;2026-06-13&quot;:3.52},{&quot;2026-06-14&quot;:3.45},{&quot;2026-06-15&quot;:3.45},{&quot;2026-06-16&quot;:3.55},{&quot;2026-06-17&quot;:3.51},{&quot;2026-06-18&quot;:3.55},{&quot;2026-06-19&quot;:3.41},{&quot;2026-06-20&quot;:3.41},{&quot;2026-06-21&quot;:3.58},{&quot;2026-06-22&quot;:3.53},{&quot;2026-06-23&quot;:3.53},{&quot;2026-06-24&quot;:3.38},{&quot;2026-06-25&quot;:3.39},{&quot;2026-06-26&quot;:3.39},{&quot;2026-06-27&quot;:3.33},{&quot;2026-06-28&quot;:3.32},{&quot;2026-06-29&quot;:3.24},{&quot;2026-06-30&quot;:3.27},{&quot;2026-07-01&quot;:3.24},{&quot;2026-07-02&quot;:3.2},{&quot;2026-07-03&quot;:2.92},{&quot;2026-07-04&quot;:3.03},{&quot;2026-07-05&quot;:3.03},{&quot;2026-07-06&quot;:3.09},{&quot;2026-07-07&quot;:3.08},{&quot;2026-07-08&quot;:3.02},{&quot;2026-07-09&quot;:2.86},{&quot;2026-07-10&quot;:2.84},{&quot;2026-07-11&quot;:2.87},{&quot;2026-07-12&quot;:2.9},{&quot;2026-07-13&quot;:2.98},{&quot;2026-07-14&quot;:2.91},{&quot;2026-07-15&quot;:2.91},{&quot;2026-07-16&quot;:2.95},{&quot;2026-07-17&quot;:2.88},{&quot;2026-07-18&quot;:2.81},{&quot;2026-07-19&quot;:2.78},{&quot;2026-07-20&quot;:2.8},{&quot;2026-07-21&quot;:2.81},{&quot;2026-07-23&quot;:2.85},{&quot;2026-07-25&quot;:2.83},{&quot;2026-07-26&quot;:2.85},{&quot;2026-07-27&quot;:2.81},{&quot;2026-07-28&quot;:2.63},{&quot;2026-07-29&quot;:2.63},{&quot;2026-07-30&quot;:2.56},{&quot;2026-07-31&quot;:2.59},{&quot;2026-08-01&quot;:2.62},{&quot;2026-08-02&quot;:2.5},{&quot;2026-08-03&quot;:2.43},{&quot;2026-08-04&quot;:2.42},{&quot;2026-08-05&quot;:2.45},{&quot;2026-08-07&quot;:2.48},{&quot;2026-08-08&quot;:2.6},{&quot;2026-08-09&quot;:2.61},{&quot;2026-08-10&quot;:2.64},{&quot;2026-08-11&quot;:2.62},{&quot;2026-08-12&quot;:2.59},{&quot;2026-08-13&quot;:2.59},{&quot;2026-08-14&quot;:2.71},{&quot;2026-08-15&quot;:2.74},{&quot;2026-08-16&quot;:2.73},{&quot;2026-08-17&quot;:2.78},{&quot;2026-08-18&quot;:2.79},{&quot;2026-08-19&quot;:2.82},{&quot;2026-08-20&quot;:2.82},{&quot;2026-08-21&quot;:3.0},{&quot;2026-08-22&quot;:3.02},{&quot;2026-08-23&quot;:3.06},{&quot;2026-08-24&quot;:3.14},{&quot;2026-08-25&quot;:3.14},{&quot;2026-08-26&quot;:3.14},{&quot;2026-08-27&quot;:3.13},{&quot;2026-08-28&quot;:3.16},{&quot;2026-08-29&quot;:3.16},{&quot;2026-08-30&quot;:3.21},{&quot;2026-08-31&quot;:3.17},{&quot;2026-09-01&quot;:3.17},{&quot;2026-09-02&quot;:2.87},{&quot;2026-09-03&quot;:2.85},{&quot;2026-09-04&quot;:2.92},{&quot;2026-09-05&quot;:2.97},{&quot;2026-09-06&quot;:2.98},{&quot;2026-09-07&quot;:2.93},{&quot;2026-09-08&quot;:2.91},{&quot;2026-09-09&quot;:2.89},{&quot;2026-09-10&quot;:2.89},{&quot;2026-09-11&quot;:2.9}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="73070"
  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-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">
            Swiftfoot Boots
        </span>


      </div>

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

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Swiftfoot Boots" src="https://cards.scryfall.io/large/front/9/6/96c69011-35bd-49f0-bae5-4a8367d32237.jpg?1783919778" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:3.08},{&quot;2026-06-14&quot;:3.13},{&quot;2026-06-15&quot;:3.28},{&quot;2026-06-16&quot;:3.3},{&quot;2026-06-17&quot;:3.38},{&quot;2026-06-18&quot;:3.35},{&quot;2026-06-19&quot;:3.21},{&quot;2026-06-20&quot;:3.27},{&quot;2026-06-21&quot;:3.27},{&quot;2026-06-22&quot;:3.27},{&quot;2026-06-23&quot;:3.27},{&quot;2026-06-24&quot;:3.18},{&quot;2026-06-25&quot;:3.18},{&quot;2026-06-26&quot;:3.23},{&quot;2026-06-27&quot;:3.23},{&quot;2026-06-28&quot;:3.29},{&quot;2026-06-29&quot;:3.29},{&quot;2026-06-30&quot;:3.22},{&quot;2026-07-01&quot;:3.22},{&quot;2026-07-02&quot;:3.18},{&quot;2026-07-03&quot;:3.13},{&quot;2026-07-04&quot;:3.13},{&quot;2026-07-05&quot;:3.06},{&quot;2026-07-06&quot;:3.05},{&quot;2026-07-07&quot;:3.05},{&quot;2026-07-08&quot;:2.95},{&quot;2026-07-09&quot;:2.95},{&quot;2026-07-10&quot;:3.1},{&quot;2026-07-11&quot;:3.1},{&quot;2026-07-12&quot;:2.99},{&quot;2026-07-13&quot;:2.99},{&quot;2026-07-14&quot;:2.99},{&quot;2026-07-15&quot;:3.06},{&quot;2026-07-16&quot;:3.04},{&quot;2026-07-17&quot;:3.04},{&quot;2026-07-18&quot;:3.05},{&quot;2026-07-19&quot;:3.11},{&quot;2026-07-20&quot;:3.11},{&quot;2026-07-21&quot;:3.11},{&quot;2026-07-22&quot;:2.95},{&quot;2026-07-23&quot;:2.95},{&quot;2026-07-24&quot;:2.95},{&quot;2026-07-25&quot;:3.08},{&quot;2026-07-26&quot;:3.08},{&quot;2026-07-27&quot;:3.05},{&quot;2026-07-28&quot;:3.06},{&quot;2026-07-29&quot;:3.03},{&quot;2026-07-30&quot;:2.88},{&quot;2026-07-31&quot;:2.78},{&quot;2026-08-01&quot;:2.73},{&quot;2026-08-02&quot;:2.68},{&quot;2026-08-03&quot;:2.75},{&quot;2026-08-04&quot;:2.75},{&quot;2026-08-05&quot;:2.7},{&quot;2026-08-07&quot;:2.69},{&quot;2026-08-08&quot;:2.75},{&quot;2026-08-09&quot;:2.72},{&quot;2026-08-10&quot;:2.72},{&quot;2026-08-11&quot;:2.76},{&quot;2026-08-12&quot;:2.74},{&quot;2026-08-13&quot;:2.74},{&quot;2026-08-14&quot;:2.75},{&quot;2026-08-15&quot;:2.79},{&quot;2026-08-16&quot;:2.8},{&quot;2026-08-17&quot;:2.84},{&quot;2026-08-18&quot;:2.83},{&quot;2026-08-19&quot;:2.83},{&quot;2026-08-20&quot;:2.98},{&quot;2026-08-21&quot;:2.99},{&quot;2026-08-22&quot;:3.02},{&quot;2026-08-23&quot;:3.01},{&quot;2026-08-24&quot;:3.01},{&quot;2026-08-25&quot;:3.01},{&quot;2026-08-26&quot;:2.93},{&quot;2026-08-27&quot;:3.02},{&quot;2026-08-28&quot;:3.02},{&quot;2026-08-29&quot;:3.02},{&quot;2026-08-30&quot;:3.02},{&quot;2026-08-31&quot;:2.92},{&quot;2026-09-01&quot;:2.85},{&quot;2026-09-02&quot;:2.98},{&quot;2026-09-03&quot;:3.03},{&quot;2026-09-04&quot;:3.1},{&quot;2026-09-05&quot;:3.09},{&quot;2026-09-06&quot;:3.09},{&quot;2026-09-07&quot;:3.09},{&quot;2026-09-08&quot;:3.15},{&quot;2026-09-09&quot;:3.15},{&quot;2026-09-10&quot;:3.15},{&quot;2026-09-11&quot;:3.13}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:2.91},{&quot;2026-06-14&quot;:2.78},{&quot;2026-06-15&quot;:2.78},{&quot;2026-06-16&quot;:2.8},{&quot;2026-06-17&quot;:2.7},{&quot;2026-06-18&quot;:2.62},{&quot;2026-06-19&quot;:2.48},{&quot;2026-06-20&quot;:2.34},{&quot;2026-06-21&quot;:2.42},{&quot;2026-06-22&quot;:2.33},{&quot;2026-06-23&quot;:2.2},{&quot;2026-06-24&quot;:2.22},{&quot;2026-06-25&quot;:2.32},{&quot;2026-06-26&quot;:2.44},{&quot;2026-06-27&quot;:2.27},{&quot;2026-06-28&quot;:2.35},{&quot;2026-06-29&quot;:2.32},{&quot;2026-06-30&quot;:2.4},{&quot;2026-07-01&quot;:2.38},{&quot;2026-07-02&quot;:2.28},{&quot;2026-07-03&quot;:2.47},{&quot;2026-07-04&quot;:2.57},{&quot;2026-07-05&quot;:2.44},{&quot;2026-07-06&quot;:2.38},{&quot;2026-07-07&quot;:2.56},{&quot;2026-07-08&quot;:2.53},{&quot;2026-07-09&quot;:2.55},{&quot;2026-07-10&quot;:2.54},{&quot;2026-07-11&quot;:2.36},{&quot;2026-07-12&quot;:2.77},{&quot;2026-07-13&quot;:2.86},{&quot;2026-07-14&quot;:2.89},{&quot;2026-07-15&quot;:2.96},{&quot;2026-07-16&quot;:2.96},{&quot;2026-07-17&quot;:3.25},{&quot;2026-07-18&quot;:3.23},{&quot;2026-07-19&quot;:3.24},{&quot;2026-07-20&quot;:3.04},{&quot;2026-07-21&quot;:2.95},{&quot;2026-07-22&quot;:2.77},{&quot;2026-07-23&quot;:2.71},{&quot;2026-07-24&quot;:2.7},{&quot;2026-07-25&quot;:2.66},{&quot;2026-07-26&quot;:2.56},{&quot;2026-07-27&quot;:2.57},{&quot;2026-07-28&quot;:2.6},{&quot;2026-07-29&quot;:2.6},{&quot;2026-07-30&quot;:2.72},{&quot;2026-07-31&quot;:2.79},{&quot;2026-08-01&quot;:2.79},{&quot;2026-08-02&quot;:2.83},{&quot;2026-08-03&quot;:2.83},{&quot;2026-08-04&quot;:3.24},{&quot;2026-08-05&quot;:3.59},{&quot;2026-08-07&quot;:3.44},{&quot;2026-08-08&quot;:3.47},{&quot;2026-08-09&quot;:3.49},{&quot;2026-08-10&quot;:3.21},{&quot;2026-08-11&quot;:3.12},{&quot;2026-08-12&quot;:3.12},{&quot;2026-08-13&quot;:3.14},{&quot;2026-08-14&quot;:2.91},{&quot;2026-08-15&quot;:2.9},{&quot;2026-08-16&quot;:2.91},{&quot;2026-08-17&quot;:3.17},{&quot;2026-08-18&quot;:3.22},{&quot;2026-08-19&quot;:3.19},{&quot;2026-08-20&quot;:3.41},{&quot;2026-08-21&quot;:3.45},{&quot;2026-08-22&quot;:3.55},{&quot;2026-08-23&quot;:3.43},{&quot;2026-08-24&quot;:2.97},{&quot;2026-08-25&quot;:3.28},{&quot;2026-08-26&quot;:3.31},{&quot;2026-08-27&quot;:3.41},{&quot;2026-08-28&quot;:3.3},{&quot;2026-08-29&quot;:3.3},{&quot;2026-08-30&quot;:3.21},{&quot;2026-08-31&quot;:2.85},{&quot;2026-09-01&quot;:2.75},{&quot;2026-09-02&quot;:3.1},{&quot;2026-09-03&quot;:3.32},{&quot;2026-09-04&quot;:3.18},{&quot;2026-09-05&quot;:3.3},{&quot;2026-09-06&quot;:3.15},{&quot;2026-09-07&quot;:3.17},{&quot;2026-09-08&quot;:3.12},{&quot;2026-09-09&quot;:2.88},{&quot;2026-09-10&quot;:2.8},{&quot;2026-09-11&quot;:2.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="49380"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mh1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Talisman of Creativity" src="https://cards.scryfall.io/large/front/4/d/4d9dbadd-c1b6-44fe-92ac-6f69d7178342.jpg?1783933072" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

                <span class="text-xs text-accent-50">
                  ↑
                  17%
                </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">
                $10.71
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-08&quot;:8.84},{&quot;2026-06-10&quot;:8.84},{&quot;2026-06-11&quot;:9.54},{&quot;2026-06-12&quot;:9.54},{&quot;2026-06-13&quot;:9.54},{&quot;2026-06-14&quot;:9.54},{&quot;2026-06-15&quot;:9.54},{&quot;2026-06-16&quot;:10.35},{&quot;2026-06-17&quot;:10.35},{&quot;2026-06-18&quot;:10.35},{&quot;2026-06-19&quot;:10.35},{&quot;2026-06-20&quot;:10.35},{&quot;2026-06-21&quot;:10.54},{&quot;2026-06-22&quot;:10.54},{&quot;2026-06-24&quot;:10.52},{&quot;2026-06-25&quot;:10.52},{&quot;2026-06-26&quot;:10.52},{&quot;2026-06-27&quot;:10.52},{&quot;2026-06-28&quot;:10.52},{&quot;2026-06-29&quot;:10.52},{&quot;2026-06-30&quot;:10.52},{&quot;2026-07-01&quot;:10.52},{&quot;2026-07-02&quot;:10.52},{&quot;2026-07-03&quot;:10.52},{&quot;2026-07-04&quot;:10.52},{&quot;2026-07-05&quot;:10.52},{&quot;2026-07-06&quot;:10.52},{&quot;2026-07-07&quot;:10.52},{&quot;2026-07-08&quot;:10.52},{&quot;2026-07-09&quot;:10.52},{&quot;2026-07-10&quot;:10.52},{&quot;2026-07-11&quot;:10.52},{&quot;2026-07-12&quot;:10.52},{&quot;2026-07-13&quot;:10.52},{&quot;2026-07-14&quot;:10.52},{&quot;2026-07-15&quot;:10.52},{&quot;2026-07-16&quot;:10.52},{&quot;2026-07-17&quot;:10.52},{&quot;2026-07-18&quot;:10.52},{&quot;2026-07-19&quot;:10.52},{&quot;2026-07-20&quot;:10.52},{&quot;2026-07-21&quot;:10.52},{&quot;2026-07-23&quot;:10.52},{&quot;2026-07-25&quot;:10.52},{&quot;2026-07-26&quot;:10.52},{&quot;2026-07-27&quot;:10.4},{&quot;2026-07-29&quot;:10.4},{&quot;2026-07-30&quot;:10.4},{&quot;2026-07-31&quot;:10.4},{&quot;2026-08-01&quot;:10.4},{&quot;2026-08-02&quot;:10.4},{&quot;2026-08-03&quot;:10.4},{&quot;2026-08-04&quot;:10.4},{&quot;2026-08-05&quot;:10.4},{&quot;2026-08-07&quot;:10.54},{&quot;2026-08-08&quot;:10.54},{&quot;2026-08-09&quot;:10.54},{&quot;2026-08-10&quot;:10.54},{&quot;2026-08-11&quot;:10.54},{&quot;2026-08-12&quot;:10.54},{&quot;2026-08-13&quot;:10.54},{&quot;2026-08-14&quot;:10.54},{&quot;2026-08-15&quot;:10.54},{&quot;2026-08-16&quot;:10.54},{&quot;2026-08-17&quot;:10.54},{&quot;2026-08-18&quot;:10.54},{&quot;2026-08-19&quot;:10.54},{&quot;2026-08-20&quot;:10.54},{&quot;2026-08-21&quot;:10.54},{&quot;2026-08-22&quot;:10.54},{&quot;2026-08-23&quot;:10.54},{&quot;2026-08-24&quot;:10.54},{&quot;2026-08-25&quot;:10.54},{&quot;2026-08-26&quot;:10.54},{&quot;2026-08-27&quot;:10.54},{&quot;2026-08-28&quot;:10.57},{&quot;2026-08-29&quot;:10.57},{&quot;2026-08-30&quot;:10.57},{&quot;2026-08-31&quot;:10.57},{&quot;2026-09-01&quot;:10.57},{&quot;2026-09-02&quot;:10.57},{&quot;2026-09-03&quot;:10.57},{&quot;2026-09-04&quot;:10.57},{&quot;2026-09-05&quot;:10.57},{&quot;2026-09-06&quot;:10.71},{&quot;2026-09-07&quot;:10.71},{&quot;2026-09-08&quot;:10.71},{&quot;2026-09-09&quot;:10.71},{&quot;2026-09-10&quot;:10.71},{&quot;2026-09-11&quot;:10.71}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:3.1},{&quot;2026-06-10&quot;:3.14},{&quot;2026-06-11&quot;:3.13},{&quot;2026-06-12&quot;:3.26},{&quot;2026-06-13&quot;:3.25},{&quot;2026-06-14&quot;:3.25},{&quot;2026-06-15&quot;:3.26},{&quot;2026-06-16&quot;:3.22},{&quot;2026-06-17&quot;:3.34},{&quot;2026-06-18&quot;:3.34},{&quot;2026-06-19&quot;:3.41},{&quot;2026-06-20&quot;:3.37},{&quot;2026-06-21&quot;:3.28},{&quot;2026-06-22&quot;:3.28},{&quot;2026-06-24&quot;:3.14},{&quot;2026-06-25&quot;:3.19},{&quot;2026-06-26&quot;:3.23},{&quot;2026-06-27&quot;:3.09},{&quot;2026-06-28&quot;:3.24},{&quot;2026-06-29&quot;:3.35},{&quot;2026-06-30&quot;:3.35},{&quot;2026-07-01&quot;:3.3},{&quot;2026-07-02&quot;:3.43},{&quot;2026-07-03&quot;:3.48},{&quot;2026-07-04&quot;:3.27},{&quot;2026-07-05&quot;:3.3},{&quot;2026-07-06&quot;:3.3},{&quot;2026-07-07&quot;:3.38},{&quot;2026-07-08&quot;:3.5},{&quot;2026-07-09&quot;:3.34},{&quot;2026-07-10&quot;:3.37},{&quot;2026-07-11&quot;:3.27},{&quot;2026-07-12&quot;:3.32},{&quot;2026-07-13&quot;:3.37},{&quot;2026-07-14&quot;:3.5},{&quot;2026-07-15&quot;:3.7},{&quot;2026-07-16&quot;:3.64},{&quot;2026-07-17&quot;:3.48},{&quot;2026-07-18&quot;:3.33},{&quot;2026-07-19&quot;:3.32},{&quot;2026-07-20&quot;:3.23},{&quot;2026-07-21&quot;:3.17},{&quot;2026-07-23&quot;:3.21},{&quot;2026-07-25&quot;:3.14},{&quot;2026-07-26&quot;:3.14},{&quot;2026-07-27&quot;:3.1},{&quot;2026-07-29&quot;:3.38},{&quot;2026-07-30&quot;:3.31},{&quot;2026-07-31&quot;:3.31},{&quot;2026-08-01&quot;:3.26},{&quot;2026-08-02&quot;:3.08},{&quot;2026-08-03&quot;:3.09},{&quot;2026-08-04&quot;:3.12},{&quot;2026-08-05&quot;:3.2},{&quot;2026-08-07&quot;:3.3},{&quot;2026-08-08&quot;:3.22},{&quot;2026-08-09&quot;:3.11},{&quot;2026-08-10&quot;:3.11},{&quot;2026-08-11&quot;:3.09},{&quot;2026-08-12&quot;:3.1},{&quot;2026-08-13&quot;:2.82},{&quot;2026-08-14&quot;:2.81},{&quot;2026-08-15&quot;:2.76},{&quot;2026-08-16&quot;:2.75},{&quot;2026-08-17&quot;:2.99},{&quot;2026-08-18&quot;:3.23},{&quot;2026-08-19&quot;:3.29},{&quot;2026-08-20&quot;:3.29},{&quot;2026-08-21&quot;:3.07},{&quot;2026-08-22&quot;:2.95},{&quot;2026-08-23&quot;:2.92},{&quot;2026-08-24&quot;:3.0},{&quot;2026-08-25&quot;:3.0},{&quot;2026-08-26&quot;:3.08},{&quot;2026-08-27&quot;:3.01},{&quot;2026-08-28&quot;:3.03},{&quot;2026-08-29&quot;:3.03},{&quot;2026-08-30&quot;:2.94},{&quot;2026-08-31&quot;:2.87},{&quot;2026-09-01&quot;:2.87},{&quot;2026-09-02&quot;:2.79},{&quot;2026-09-03&quot;:2.79},{&quot;2026-09-04&quot;:2.7},{&quot;2026-09-05&quot;:2.44},{&quot;2026-09-06&quot;:2.5},{&quot;2026-09-07&quot;:2.66},{&quot;2026-09-08&quot;:2.66},{&quot;2026-09-09&quot;:2.75},{&quot;2026-09-10&quot;:2.87},{&quot;2026-09-11&quot;:2.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="93228"
  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-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">
            Frostcliff Siege
        </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">
              ↓
              6%
            </span>

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

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

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

        <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">
            Frostcliff Siege
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-1'></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="Frostcliff Siege" src="https://cards.scryfall.io/large/front/a/7/a750aabb-9788-494a-841f-bf75717970a7.jpg?1743204732" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

                <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">
                $2.94
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:3.04},{&quot;2026-06-11&quot;:3.06},{&quot;2026-06-12&quot;:3.13},{&quot;2026-06-13&quot;:3.1},{&quot;2026-06-14&quot;:3.05},{&quot;2026-06-15&quot;:3.05},{&quot;2026-06-16&quot;:3.05},{&quot;2026-06-17&quot;:2.96},{&quot;2026-06-18&quot;:2.99},{&quot;2026-06-19&quot;:2.96},{&quot;2026-06-20&quot;:2.98},{&quot;2026-06-21&quot;:2.99},{&quot;2026-06-22&quot;:3.26},{&quot;2026-06-23&quot;:3.16},{&quot;2026-06-24&quot;:3.09},{&quot;2026-06-25&quot;:3.05},{&quot;2026-06-26&quot;:3.09},{&quot;2026-06-27&quot;:3.07},{&quot;2026-06-28&quot;:3.24},{&quot;2026-06-29&quot;:3.31},{&quot;2026-06-30&quot;:3.31},{&quot;2026-07-01&quot;:3.4},{&quot;2026-07-02&quot;:3.36},{&quot;2026-07-03&quot;:3.5},{&quot;2026-07-04&quot;:3.5},{&quot;2026-07-05&quot;:3.5},{&quot;2026-07-06&quot;:3.48},{&quot;2026-07-07&quot;:3.48},{&quot;2026-07-08&quot;:3.48},{&quot;2026-07-09&quot;:3.48},{&quot;2026-07-10&quot;:3.48},{&quot;2026-07-11&quot;:3.48},{&quot;2026-07-12&quot;:3.5},{&quot;2026-07-13&quot;:3.5},{&quot;2026-07-14&quot;:3.5},{&quot;2026-07-15&quot;:3.5},{&quot;2026-07-16&quot;:3.5},{&quot;2026-07-17&quot;:3.35},{&quot;2026-07-18&quot;:3.35},{&quot;2026-07-19&quot;:3.44},{&quot;2026-07-20&quot;:3.44},{&quot;2026-07-21&quot;:3.44},{&quot;2026-07-23&quot;:3.45},{&quot;2026-07-25&quot;:3.37},{&quot;2026-07-26&quot;:3.37},{&quot;2026-07-27&quot;:3.37},{&quot;2026-07-29&quot;:3.27},{&quot;2026-07-30&quot;:3.22},{&quot;2026-07-31&quot;:3.14},{&quot;2026-08-01&quot;:3.14},{&quot;2026-08-02&quot;:3.16},{&quot;2026-08-03&quot;:3.16},{&quot;2026-08-04&quot;:3.12},{&quot;2026-08-05&quot;:3.12},{&quot;2026-08-07&quot;:3.12},{&quot;2026-08-08&quot;:3.12},{&quot;2026-08-09&quot;:3.12},{&quot;2026-08-10&quot;:3.19},{&quot;2026-08-11&quot;:3.08},{&quot;2026-08-12&quot;:2.93},{&quot;2026-08-13&quot;:2.88},{&quot;2026-08-14&quot;:2.88},{&quot;2026-08-15&quot;:2.88},{&quot;2026-08-16&quot;:2.88},{&quot;2026-08-17&quot;:2.88},{&quot;2026-08-18&quot;:2.96},{&quot;2026-08-19&quot;:2.99},{&quot;2026-08-20&quot;:2.99},{&quot;2026-08-21&quot;:2.87},{&quot;2026-08-22&quot;:2.81},{&quot;2026-08-23&quot;:2.88},{&quot;2026-08-24&quot;:2.94},{&quot;2026-08-25&quot;:2.94},{&quot;2026-08-26&quot;:2.89},{&quot;2026-08-27&quot;:2.89},{&quot;2026-08-28&quot;:2.79},{&quot;2026-08-29&quot;:2.79},{&quot;2026-08-30&quot;:2.66},{&quot;2026-08-31&quot;:2.66},{&quot;2026-09-01&quot;:2.66},{&quot;2026-09-02&quot;:2.86},{&quot;2026-09-03&quot;:2.96},{&quot;2026-09-04&quot;:3.0},{&quot;2026-09-05&quot;:3.0},{&quot;2026-09-06&quot;:3.0},{&quot;2026-09-07&quot;:2.94},{&quot;2026-09-08&quot;:2.94},{&quot;2026-09-09&quot;:2.94},{&quot;2026-09-10&quot;:2.94},{&quot;2026-09-11&quot;:2.94}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:3.06},{&quot;2026-06-11&quot;:2.94},{&quot;2026-06-12&quot;:3.15},{&quot;2026-06-13&quot;:3.0},{&quot;2026-06-14&quot;:3.18},{&quot;2026-06-15&quot;:3.22},{&quot;2026-06-16&quot;:3.04},{&quot;2026-06-17&quot;:3.04},{&quot;2026-06-18&quot;:3.04},{&quot;2026-06-19&quot;:2.96},{&quot;2026-06-20&quot;:2.88},{&quot;2026-06-21&quot;:3.05},{&quot;2026-06-22&quot;:2.87},{&quot;2026-06-23&quot;:2.82},{&quot;2026-06-24&quot;:3.07},{&quot;2026-06-25&quot;:3.13},{&quot;2026-06-26&quot;:3.21},{&quot;2026-06-27&quot;:3.46},{&quot;2026-06-28&quot;:3.45},{&quot;2026-06-29&quot;:3.58},{&quot;2026-06-30&quot;:3.48},{&quot;2026-07-01&quot;:3.35},{&quot;2026-07-02&quot;:3.33},{&quot;2026-07-03&quot;:3.02},{&quot;2026-07-04&quot;:2.97},{&quot;2026-07-05&quot;:2.92},{&quot;2026-07-06&quot;:2.83},{&quot;2026-07-07&quot;:2.8},{&quot;2026-07-08&quot;:2.71},{&quot;2026-07-09&quot;:2.69},{&quot;2026-07-10&quot;:2.96},{&quot;2026-07-11&quot;:2.85},{&quot;2026-07-12&quot;:2.69},{&quot;2026-07-13&quot;:2.82},{&quot;2026-07-14&quot;:2.76},{&quot;2026-07-15&quot;:2.67},{&quot;2026-07-16&quot;:2.68},{&quot;2026-07-17&quot;:2.57},{&quot;2026-07-18&quot;:2.28},{&quot;2026-07-19&quot;:2.2},{&quot;2026-07-20&quot;:2.23},{&quot;2026-07-21&quot;:2.14},{&quot;2026-07-23&quot;:2.33},{&quot;2026-07-25&quot;:2.53},{&quot;2026-07-26&quot;:2.38},{&quot;2026-07-27&quot;:2.35},{&quot;2026-07-29&quot;:2.2},{&quot;2026-07-30&quot;:2.18},{&quot;2026-07-31&quot;:2.39},{&quot;2026-08-01&quot;:2.39},{&quot;2026-08-02&quot;:2.61},{&quot;2026-08-03&quot;:2.73},{&quot;2026-08-04&quot;:2.85},{&quot;2026-08-05&quot;:2.85},{&quot;2026-08-07&quot;:2.89},{&quot;2026-08-08&quot;:3.0},{&quot;2026-08-09&quot;:2.84},{&quot;2026-08-10&quot;:2.62},{&quot;2026-08-11&quot;:2.9},{&quot;2026-08-12&quot;:2.7},{&quot;2026-08-13&quot;:2.64},{&quot;2026-08-14&quot;:2.75},{&quot;2026-08-15&quot;:2.72},{&quot;2026-08-16&quot;:2.68},{&quot;2026-08-17&quot;:2.2},{&quot;2026-08-18&quot;:2.16},{&quot;2026-08-19&quot;:2.11},{&quot;2026-08-20&quot;:2.11},{&quot;2026-08-21&quot;:2.04},{&quot;2026-08-22&quot;:1.83},{&quot;2026-08-23&quot;:1.86},{&quot;2026-08-24&quot;:1.87},{&quot;2026-08-25&quot;:1.87},{&quot;2026-08-26&quot;:1.73},{&quot;2026-08-27&quot;:2.0},{&quot;2026-08-28&quot;:2.09},{&quot;2026-08-29&quot;:2.09},{&quot;2026-08-30&quot;:2.53},{&quot;2026-08-31&quot;:2.45},{&quot;2026-09-01&quot;:2.45},{&quot;2026-09-02&quot;:2.52},{&quot;2026-09-03&quot;:2.46},{&quot;2026-09-04&quot;:2.43},{&quot;2026-09-05&quot;:2.5},{&quot;2026-09-06&quot;:2.32},{&quot;2026-09-07&quot;:2.29},{&quot;2026-09-08&quot;:2.27},{&quot;2026-09-09&quot;:2.27},{&quot;2026-09-10&quot;:2.16},{&quot;2026-09-11&quot;:2.34}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

        <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">
            Split Up
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Split Up" src="https://cards.scryfall.io/large/front/1/b/1bb9a5b1-48d2-453e-8991-c788bc63e482.jpg?1783909503" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:2.89},{&quot;2026-06-11&quot;:2.89},{&quot;2026-06-12&quot;:2.89},{&quot;2026-06-13&quot;:2.8},{&quot;2026-06-14&quot;:2.8},{&quot;2026-06-15&quot;:2.84},{&quot;2026-06-16&quot;:2.84},{&quot;2026-06-17&quot;:2.84},{&quot;2026-06-18&quot;:2.84},{&quot;2026-06-19&quot;:2.84},{&quot;2026-06-20&quot;:2.84},{&quot;2026-06-21&quot;:2.84},{&quot;2026-06-22&quot;:2.83},{&quot;2026-06-23&quot;:2.83},{&quot;2026-06-24&quot;:2.84},{&quot;2026-06-25&quot;:2.84},{&quot;2026-06-26&quot;:2.85},{&quot;2026-06-27&quot;:2.85},{&quot;2026-06-28&quot;:2.85},{&quot;2026-06-29&quot;:2.82},{&quot;2026-06-30&quot;:2.81},{&quot;2026-07-01&quot;:2.68},{&quot;2026-07-02&quot;:2.54},{&quot;2026-07-03&quot;:2.5},{&quot;2026-07-04&quot;:2.5},{&quot;2026-07-05&quot;:2.5},{&quot;2026-07-06&quot;:2.5},{&quot;2026-07-07&quot;:2.49},{&quot;2026-07-08&quot;:2.49},{&quot;2026-07-09&quot;:2.44},{&quot;2026-07-10&quot;:2.45},{&quot;2026-07-11&quot;:2.45},{&quot;2026-07-12&quot;:2.44},{&quot;2026-07-13&quot;:2.44},{&quot;2026-07-14&quot;:2.44},{&quot;2026-07-15&quot;:2.44},{&quot;2026-07-16&quot;:2.44},{&quot;2026-07-17&quot;:2.44},{&quot;2026-07-18&quot;:2.42},{&quot;2026-07-19&quot;:2.42},{&quot;2026-07-20&quot;:2.42},{&quot;2026-07-21&quot;:2.42},{&quot;2026-07-23&quot;:2.31},{&quot;2026-07-25&quot;:2.33},{&quot;2026-07-26&quot;:2.33},{&quot;2026-07-27&quot;:2.33},{&quot;2026-07-29&quot;:2.33},{&quot;2026-07-30&quot;:2.31},{&quot;2026-07-31&quot;:2.32},{&quot;2026-08-01&quot;:2.32},{&quot;2026-08-02&quot;:2.35},{&quot;2026-08-03&quot;:2.35},{&quot;2026-08-04&quot;:2.35},{&quot;2026-08-05&quot;:2.38},{&quot;2026-08-07&quot;:2.36},{&quot;2026-08-08&quot;:2.36},{&quot;2026-08-09&quot;:2.36},{&quot;2026-08-10&quot;:2.33},{&quot;2026-08-11&quot;:2.33},{&quot;2026-08-12&quot;:2.34},{&quot;2026-08-13&quot;:2.34},{&quot;2026-08-14&quot;:2.32},{&quot;2026-08-15&quot;:2.32},{&quot;2026-08-16&quot;:2.32},{&quot;2026-08-17&quot;:2.36},{&quot;2026-08-18&quot;:2.36},{&quot;2026-08-19&quot;:2.36},{&quot;2026-08-20&quot;:2.36},{&quot;2026-08-21&quot;:2.39},{&quot;2026-08-22&quot;:2.41},{&quot;2026-08-23&quot;:2.41},{&quot;2026-08-24&quot;:2.45},{&quot;2026-08-25&quot;:2.45},{&quot;2026-08-26&quot;:2.45},{&quot;2026-08-27&quot;:2.45},{&quot;2026-08-28&quot;:2.45},{&quot;2026-08-29&quot;:2.45},{&quot;2026-08-30&quot;:2.45},{&quot;2026-08-31&quot;:2.45},{&quot;2026-09-01&quot;:2.45},{&quot;2026-09-02&quot;:2.47},{&quot;2026-09-03&quot;:2.47},{&quot;2026-09-04&quot;:2.45},{&quot;2026-09-05&quot;:2.45},{&quot;2026-09-06&quot;:2.47},{&quot;2026-09-07&quot;:2.47},{&quot;2026-09-08&quot;:2.5},{&quot;2026-09-09&quot;:2.5},{&quot;2026-09-10&quot;:2.48},{&quot;2026-09-11&quot;:2.57}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:2.16},{&quot;2026-06-11&quot;:2.07},{&quot;2026-06-12&quot;:2.03},{&quot;2026-06-13&quot;:2.0},{&quot;2026-06-14&quot;:1.77},{&quot;2026-06-15&quot;:1.94},{&quot;2026-06-16&quot;:1.93},{&quot;2026-06-17&quot;:1.97},{&quot;2026-06-18&quot;:1.95},{&quot;2026-06-19&quot;:2.01},{&quot;2026-06-20&quot;:1.95},{&quot;2026-06-21&quot;:1.87},{&quot;2026-06-22&quot;:1.77},{&quot;2026-06-23&quot;:1.77},{&quot;2026-06-24&quot;:1.81},{&quot;2026-06-25&quot;:1.75},{&quot;2026-06-26&quot;:1.7},{&quot;2026-06-27&quot;:1.72},{&quot;2026-06-28&quot;:1.8},{&quot;2026-06-29&quot;:1.82},{&quot;2026-06-30&quot;:1.75},{&quot;2026-07-01&quot;:1.96},{&quot;2026-07-02&quot;:1.96},{&quot;2026-07-03&quot;:1.96},{&quot;2026-07-04&quot;:1.87},{&quot;2026-07-05&quot;:1.79},{&quot;2026-07-06&quot;:1.8},{&quot;2026-07-07&quot;:1.83},{&quot;2026-07-08&quot;:1.79},{&quot;2026-07-09&quot;:1.77},{&quot;2026-07-10&quot;:1.77},{&quot;2026-07-11&quot;:1.7},{&quot;2026-07-12&quot;:1.73},{&quot;2026-07-13&quot;:1.8},{&quot;2026-07-14&quot;:1.8},{&quot;2026-07-15&quot;:1.8},{&quot;2026-07-16&quot;:1.81},{&quot;2026-07-17&quot;:1.92},{&quot;2026-07-18&quot;:1.86},{&quot;2026-07-19&quot;:1.73},{&quot;2026-07-20&quot;:1.65},{&quot;2026-07-21&quot;:1.67},{&quot;2026-07-23&quot;:1.65},{&quot;2026-07-25&quot;:1.65},{&quot;2026-07-26&quot;:1.6},{&quot;2026-07-27&quot;:1.56},{&quot;2026-07-29&quot;:1.75},{&quot;2026-07-30&quot;:1.78},{&quot;2026-07-31&quot;:1.71},{&quot;2026-08-01&quot;:1.71},{&quot;2026-08-02&quot;:1.73},{&quot;2026-08-03&quot;:1.69},{&quot;2026-08-04&quot;:1.71},{&quot;2026-08-05&quot;:1.74},{&quot;2026-08-07&quot;:1.77},{&quot;2026-08-08&quot;:1.85},{&quot;2026-08-09&quot;:1.92},{&quot;2026-08-10&quot;:1.95},{&quot;2026-08-11&quot;:1.96},{&quot;2026-08-12&quot;:1.88},{&quot;2026-08-13&quot;:1.84},{&quot;2026-08-14&quot;:1.78},{&quot;2026-08-15&quot;:1.83},{&quot;2026-08-16&quot;:1.99},{&quot;2026-08-17&quot;:2.04},{&quot;2026-08-18&quot;:2.11},{&quot;2026-08-19&quot;:2.11},{&quot;2026-08-20&quot;:2.11},{&quot;2026-08-21&quot;:2.25},{&quot;2026-08-22&quot;:2.13},{&quot;2026-08-23&quot;:2.1},{&quot;2026-08-24&quot;:2.12},{&quot;2026-08-25&quot;:2.12},{&quot;2026-08-26&quot;:2.19},{&quot;2026-08-27&quot;:2.23},{&quot;2026-08-28&quot;:2.47},{&quot;2026-08-29&quot;:2.47},{&quot;2026-08-30&quot;:2.25},{&quot;2026-08-31&quot;:2.11},{&quot;2026-09-01&quot;:2.11},{&quot;2026-09-02&quot;:1.81},{&quot;2026-09-03&quot;:1.83},{&quot;2026-09-04&quot;:1.88},{&quot;2026-09-05&quot;:1.83},{&quot;2026-09-06&quot;:1.83},{&quot;2026-09-07&quot;:1.91},{&quot;2026-09-08&quot;:2.04},{&quot;2026-09-09&quot;:2.2},{&quot;2026-09-10&quot;:2.16},{&quot;2026-09-11&quot;:2.32}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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

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

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

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

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

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-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="Counterspell" src="https://cards.scryfall.io/large/front/d/1/d14d5ff3-40c0-4f22-91ad-d6c8447cb9e0.jpg?1783918389" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:2.36},{&quot;2026-06-14&quot;:2.37},{&quot;2026-06-15&quot;:2.37},{&quot;2026-06-16&quot;:2.36},{&quot;2026-06-17&quot;:2.36},{&quot;2026-06-18&quot;:2.47},{&quot;2026-06-19&quot;:2.47},{&quot;2026-06-20&quot;:2.47},{&quot;2026-06-21&quot;:2.47},{&quot;2026-06-22&quot;:2.47},{&quot;2026-06-23&quot;:2.35},{&quot;2026-06-24&quot;:2.35},{&quot;2026-06-25&quot;:2.35},{&quot;2026-06-26&quot;:2.35},{&quot;2026-06-27&quot;:2.36},{&quot;2026-06-28&quot;:2.36},{&quot;2026-06-29&quot;:2.36},{&quot;2026-06-30&quot;:2.36},{&quot;2026-07-01&quot;:2.36},{&quot;2026-07-02&quot;:2.4},{&quot;2026-07-03&quot;:2.4},{&quot;2026-07-04&quot;:2.4},{&quot;2026-07-05&quot;:2.44},{&quot;2026-07-06&quot;:2.45},{&quot;2026-07-07&quot;:2.45},{&quot;2026-07-08&quot;:2.45},{&quot;2026-07-09&quot;:2.33},{&quot;2026-07-10&quot;:2.34},{&quot;2026-07-11&quot;:2.19},{&quot;2026-07-12&quot;:2.23},{&quot;2026-07-13&quot;:2.23},{&quot;2026-07-14&quot;:2.29},{&quot;2026-07-15&quot;:2.29},{&quot;2026-07-16&quot;:2.29},{&quot;2026-07-17&quot;:2.29},{&quot;2026-07-18&quot;:2.32},{&quot;2026-07-19&quot;:2.32},{&quot;2026-07-20&quot;:2.33},{&quot;2026-07-21&quot;:2.29},{&quot;2026-07-22&quot;:2.29},{&quot;2026-07-23&quot;:2.27},{&quot;2026-07-24&quot;:2.31},{&quot;2026-07-25&quot;:2.25},{&quot;2026-07-26&quot;:2.25},{&quot;2026-07-27&quot;:2.26},{&quot;2026-07-28&quot;:2.2},{&quot;2026-07-29&quot;:2.2},{&quot;2026-07-30&quot;:2.2},{&quot;2026-07-31&quot;:2.2},{&quot;2026-08-01&quot;:2.2},{&quot;2026-08-02&quot;:2.18},{&quot;2026-08-03&quot;:2.12},{&quot;2026-08-04&quot;:2.06},{&quot;2026-08-05&quot;:2.02},{&quot;2026-08-07&quot;:2.17},{&quot;2026-08-08&quot;:2.11},{&quot;2026-08-09&quot;:2.11},{&quot;2026-08-10&quot;:2.07},{&quot;2026-08-11&quot;:2.07},{&quot;2026-08-12&quot;:2.07},{&quot;2026-08-13&quot;:2.07},{&quot;2026-08-14&quot;:2.07},{&quot;2026-08-15&quot;:2.26},{&quot;2026-08-16&quot;:2.33},{&quot;2026-08-17&quot;:2.35},{&quot;2026-08-18&quot;:2.4},{&quot;2026-08-19&quot;:2.4},{&quot;2026-08-20&quot;:2.33},{&quot;2026-08-21&quot;:2.33},{&quot;2026-08-22&quot;:2.33},{&quot;2026-08-23&quot;:2.35},{&quot;2026-08-24&quot;:2.35},{&quot;2026-08-25&quot;:2.36},{&quot;2026-08-26&quot;:2.36},{&quot;2026-08-27&quot;:2.45},{&quot;2026-08-28&quot;:2.4},{&quot;2026-08-29&quot;:2.4},{&quot;2026-08-30&quot;:2.45},{&quot;2026-08-31&quot;:2.45},{&quot;2026-09-01&quot;:2.45},{&quot;2026-09-02&quot;:2.46},{&quot;2026-09-03&quot;:2.46},{&quot;2026-09-04&quot;:2.27},{&quot;2026-09-05&quot;:2.12},{&quot;2026-09-06&quot;:2.15},{&quot;2026-09-07&quot;:2.2},{&quot;2026-09-08&quot;:2.17},{&quot;2026-09-09&quot;:2.17},{&quot;2026-09-10&quot;:2.17},{&quot;2026-09-11&quot;:2.25}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:2.28},{&quot;2026-06-14&quot;:2.3},{&quot;2026-06-15&quot;:2.34},{&quot;2026-06-16&quot;:2.34},{&quot;2026-06-17&quot;:2.34},{&quot;2026-06-18&quot;:2.34},{&quot;2026-06-19&quot;:2.38},{&quot;2026-06-20&quot;:2.4},{&quot;2026-06-21&quot;:2.31},{&quot;2026-06-22&quot;:2.34},{&quot;2026-06-23&quot;:2.25},{&quot;2026-06-24&quot;:2.2},{&quot;2026-06-25&quot;:2.16},{&quot;2026-06-26&quot;:2.16},{&quot;2026-06-27&quot;:2.16},{&quot;2026-06-28&quot;:2.11},{&quot;2026-06-29&quot;:2.09},{&quot;2026-06-30&quot;:2.06},{&quot;2026-07-01&quot;:2.06},{&quot;2026-07-02&quot;:2.08},{&quot;2026-07-03&quot;:2.1},{&quot;2026-07-04&quot;:2.07},{&quot;2026-07-05&quot;:2.09},{&quot;2026-07-06&quot;:2.09},{&quot;2026-07-07&quot;:2.11},{&quot;2026-07-08&quot;:2.11},{&quot;2026-07-09&quot;:2.12},{&quot;2026-07-10&quot;:2.09},{&quot;2026-07-11&quot;:2.14},{&quot;2026-07-12&quot;:2.13},{&quot;2026-07-13&quot;:2.11},{&quot;2026-07-14&quot;:2.15},{&quot;2026-07-15&quot;:2.11},{&quot;2026-07-16&quot;:2.12},{&quot;2026-07-17&quot;:2.27},{&quot;2026-07-18&quot;:2.49},{&quot;2026-07-19&quot;:2.54},{&quot;2026-07-20&quot;:2.54},{&quot;2026-07-21&quot;:2.57},{&quot;2026-07-22&quot;:2.64},{&quot;2026-07-23&quot;:2.58},{&quot;2026-07-24&quot;:2.51},{&quot;2026-07-25&quot;:2.5},{&quot;2026-07-26&quot;:2.49},{&quot;2026-07-27&quot;:2.45},{&quot;2026-07-28&quot;:2.44},{&quot;2026-07-29&quot;:2.32},{&quot;2026-07-30&quot;:2.2},{&quot;2026-07-31&quot;:2.22},{&quot;2026-08-01&quot;:2.22},{&quot;2026-08-02&quot;:2.15},{&quot;2026-08-03&quot;:2.1},{&quot;2026-08-04&quot;:2.15},{&quot;2026-08-05&quot;:2.13},{&quot;2026-08-07&quot;:2.15},{&quot;2026-08-08&quot;:2.28},{&quot;2026-08-09&quot;:2.27},{&quot;2026-08-10&quot;:2.54},{&quot;2026-08-11&quot;:2.53},{&quot;2026-08-12&quot;:2.52},{&quot;2026-08-13&quot;:2.66},{&quot;2026-08-14&quot;:2.66},{&quot;2026-08-15&quot;:2.78},{&quot;2026-08-16&quot;:2.79},{&quot;2026-08-17&quot;:2.71},{&quot;2026-08-18&quot;:2.64},{&quot;2026-08-19&quot;:2.68},{&quot;2026-08-20&quot;:2.67},{&quot;2026-08-21&quot;:2.6},{&quot;2026-08-22&quot;:2.5},{&quot;2026-08-23&quot;:2.48},{&quot;2026-08-24&quot;:2.51},{&quot;2026-08-25&quot;:2.47},{&quot;2026-08-26&quot;:2.5},{&quot;2026-08-27&quot;:2.5},{&quot;2026-08-28&quot;:2.51},{&quot;2026-08-29&quot;:2.51},{&quot;2026-08-30&quot;:2.48},{&quot;2026-08-31&quot;:2.4},{&quot;2026-09-01&quot;:2.33},{&quot;2026-09-02&quot;:2.36},{&quot;2026-09-03&quot;:2.32},{&quot;2026-09-04&quot;:2.28},{&quot;2026-09-05&quot;:2.27},{&quot;2026-09-06&quot;:2.26},{&quot;2026-09-07&quot;:2.28},{&quot;2026-09-08&quot;:2.38},{&quot;2026-09-09&quot;:2.46},{&quot;2026-09-10&quot;:2.44},{&quot;2026-09-11&quot;:2.46}]}"
        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="46433"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mom ss-mythic ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $1.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="Zurgo and Ojutai" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/e/a/eacbcd82-36e6-424c-bd4e-ec3a584836c5.jpg?1783916936" />

        <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">
            Zurgo and Ojutai
        </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 — Orc Dragon</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-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Zurgo and Ojutai" src="https://cards.scryfall.io/large/front/e/a/eacbcd82-36e6-424c-bd4e-ec3a584836c5.jpg?1783916936" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $1.36
              </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">
                $1.86
              </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 Foil</span>
              <span class="text-lg font-medium text-nine-white">$0.60</span>
              <span class="text-xs text-grey-text">Credit: $0.78</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:2.05},{&quot;2026-06-11&quot;:2.01},{&quot;2026-06-12&quot;:2.01},{&quot;2026-06-13&quot;:2.01},{&quot;2026-06-14&quot;:2.01},{&quot;2026-06-15&quot;:2.01},{&quot;2026-06-16&quot;:2.01},{&quot;2026-06-17&quot;:2.01},{&quot;2026-06-18&quot;:2.01},{&quot;2026-06-19&quot;:2.01},{&quot;2026-06-20&quot;:2.01},{&quot;2026-06-21&quot;:2.01},{&quot;2026-06-22&quot;:2.01},{&quot;2026-06-23&quot;:2.01},{&quot;2026-06-24&quot;:1.97},{&quot;2026-06-25&quot;:1.97},{&quot;2026-06-26&quot;:1.97},{&quot;2026-06-27&quot;:1.97},{&quot;2026-06-28&quot;:1.97},{&quot;2026-06-29&quot;:1.94},{&quot;2026-06-30&quot;:1.95},{&quot;2026-07-01&quot;:1.95},{&quot;2026-07-02&quot;:1.95},{&quot;2026-07-03&quot;:1.95},{&quot;2026-07-04&quot;:1.95},{&quot;2026-07-05&quot;:1.92},{&quot;2026-07-06&quot;:1.92},{&quot;2026-07-07&quot;:1.92},{&quot;2026-07-08&quot;:1.92},{&quot;2026-07-09&quot;:1.92},{&quot;2026-07-10&quot;:1.92},{&quot;2026-07-11&quot;:1.92},{&quot;2026-07-12&quot;:1.92},{&quot;2026-07-13&quot;:1.92},{&quot;2026-07-14&quot;:1.92},{&quot;2026-07-15&quot;:1.92},{&quot;2026-07-16&quot;:1.94},{&quot;2026-07-17&quot;:1.94},{&quot;2026-07-18&quot;:1.99},{&quot;2026-07-19&quot;:1.99},{&quot;2026-07-20&quot;:1.99},{&quot;2026-07-21&quot;:1.99},{&quot;2026-07-23&quot;:1.99},{&quot;2026-07-25&quot;:1.99},{&quot;2026-07-26&quot;:1.99},{&quot;2026-07-27&quot;:2.01},{&quot;2026-07-29&quot;:2.01},{&quot;2026-07-30&quot;:2.01},{&quot;2026-07-31&quot;:2.01},{&quot;2026-08-01&quot;:2.01},{&quot;2026-08-02&quot;:2.01},{&quot;2026-08-03&quot;:2.03},{&quot;2026-08-04&quot;:2.01},{&quot;2026-08-05&quot;:2.0},{&quot;2026-08-07&quot;:2.0},{&quot;2026-08-08&quot;:2.0},{&quot;2026-08-09&quot;:2.0},{&quot;2026-08-10&quot;:2.0},{&quot;2026-08-11&quot;:2.0},{&quot;2026-08-12&quot;:2.0},{&quot;2026-08-13&quot;:2.0},{&quot;2026-08-14&quot;:1.93},{&quot;2026-08-15&quot;:1.93},{&quot;2026-08-16&quot;:1.9},{&quot;2026-08-17&quot;:1.9},{&quot;2026-08-18&quot;:1.9},{&quot;2026-08-19&quot;:1.9},{&quot;2026-08-20&quot;:1.9},{&quot;2026-08-21&quot;:1.78},{&quot;2026-08-22&quot;:1.78},{&quot;2026-08-23&quot;:1.78},{&quot;2026-08-24&quot;:1.81},{&quot;2026-08-25&quot;:1.81},{&quot;2026-08-26&quot;:1.79},{&quot;2026-08-27&quot;:1.79},{&quot;2026-08-28&quot;:1.78},{&quot;2026-08-29&quot;:1.78},{&quot;2026-08-30&quot;:1.78},{&quot;2026-08-31&quot;:1.78},{&quot;2026-09-01&quot;:1.78},{&quot;2026-09-02&quot;:1.78},{&quot;2026-09-03&quot;:1.78},{&quot;2026-09-04&quot;:1.78},{&quot;2026-09-05&quot;:1.78},{&quot;2026-09-06&quot;:1.86},{&quot;2026-09-07&quot;:1.86},{&quot;2026-09-08&quot;:1.86},{&quot;2026-09-09&quot;:1.86},{&quot;2026-09-10&quot;:1.86},{&quot;2026-09-11&quot;:1.86}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:1.42},{&quot;2026-06-11&quot;:1.42},{&quot;2026-06-12&quot;:1.3},{&quot;2026-06-13&quot;:1.3},{&quot;2026-06-14&quot;:1.4},{&quot;2026-06-15&quot;:1.32},{&quot;2026-06-16&quot;:1.32},{&quot;2026-06-17&quot;:1.32},{&quot;2026-06-18&quot;:1.34},{&quot;2026-06-19&quot;:1.25},{&quot;2026-06-20&quot;:1.25},{&quot;2026-06-21&quot;:1.25},{&quot;2026-06-22&quot;:1.25},{&quot;2026-06-23&quot;:1.25},{&quot;2026-06-24&quot;:1.25},{&quot;2026-06-25&quot;:1.16},{&quot;2026-06-26&quot;:1.17},{&quot;2026-06-27&quot;:1.18},{&quot;2026-06-28&quot;:1.13},{&quot;2026-06-29&quot;:1.13},{&quot;2026-06-30&quot;:1.15},{&quot;2026-07-01&quot;:1.15},{&quot;2026-07-02&quot;:1.19},{&quot;2026-07-03&quot;:1.2},{&quot;2026-07-04&quot;:1.2},{&quot;2026-07-05&quot;:1.2},{&quot;2026-07-06&quot;:1.17},{&quot;2026-07-07&quot;:1.12},{&quot;2026-07-08&quot;:1.11},{&quot;2026-07-09&quot;:1.15},{&quot;2026-07-10&quot;:1.13},{&quot;2026-07-11&quot;:1.16},{&quot;2026-07-12&quot;:1.23},{&quot;2026-07-13&quot;:1.25},{&quot;2026-07-14&quot;:1.25},{&quot;2026-07-15&quot;:1.25},{&quot;2026-07-16&quot;:1.25},{&quot;2026-07-17&quot;:1.25},{&quot;2026-07-18&quot;:1.25},{&quot;2026-07-19&quot;:1.26},{&quot;2026-07-20&quot;:1.26},{&quot;2026-07-21&quot;:1.26},{&quot;2026-07-23&quot;:1.26},{&quot;2026-07-25&quot;:1.35},{&quot;2026-07-26&quot;:1.39},{&quot;2026-07-27&quot;:1.44},{&quot;2026-07-29&quot;:1.46},{&quot;2026-07-30&quot;:1.46},{&quot;2026-07-31&quot;:1.46},{&quot;2026-08-01&quot;:1.46},{&quot;2026-08-02&quot;:1.46},{&quot;2026-08-03&quot;:1.46},{&quot;2026-08-04&quot;:1.46},{&quot;2026-08-05&quot;:1.44},{&quot;2026-08-07&quot;:1.46},{&quot;2026-08-08&quot;:1.46},{&quot;2026-08-09&quot;:1.46},{&quot;2026-08-10&quot;:1.46},{&quot;2026-08-11&quot;:1.46},{&quot;2026-08-12&quot;:1.46},{&quot;2026-08-13&quot;:1.48},{&quot;2026-08-14&quot;:1.48},{&quot;2026-08-15&quot;:1.48},{&quot;2026-08-16&quot;:1.48},{&quot;2026-08-17&quot;:1.48},{&quot;2026-08-18&quot;:1.48},{&quot;2026-08-19&quot;:1.48},{&quot;2026-08-20&quot;:1.48},{&quot;2026-08-21&quot;:1.45},{&quot;2026-08-22&quot;:1.45},{&quot;2026-08-23&quot;:1.45},{&quot;2026-08-24&quot;:1.45},{&quot;2026-08-25&quot;:1.45},{&quot;2026-08-26&quot;:1.47},{&quot;2026-08-27&quot;:1.47},{&quot;2026-08-28&quot;:1.48},{&quot;2026-08-29&quot;:1.48},{&quot;2026-08-30&quot;:1.34},{&quot;2026-08-31&quot;:1.32},{&quot;2026-09-01&quot;:1.32},{&quot;2026-09-02&quot;:1.4},{&quot;2026-09-03&quot;:1.43},{&quot;2026-09-04&quot;:1.4},{&quot;2026-09-05&quot;:1.35},{&quot;2026-09-06&quot;:1.35},{&quot;2026-09-07&quot;:1.35},{&quot;2026-09-08&quot;:1.35},{&quot;2026-09-09&quot;:1.31},{&quot;2026-09-10&quot;:1.35},{&quot;2026-09-11&quot;:1.36}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $1.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="Sol Ring" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/a/0afa0e33-4804-4b00-b625-c2d6b61090fc.jpg?1783928297" />

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Sol Ring" src="https://cards.scryfall.io/large/front/0/a/0afa0e33-4804-4b00-b625-c2d6b61090fc.jpg?1783928297" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.63},{&quot;2026-06-14&quot;:1.63},{&quot;2026-06-15&quot;:1.73},{&quot;2026-06-16&quot;:1.86},{&quot;2026-06-17&quot;:1.86},{&quot;2026-06-18&quot;:1.86},{&quot;2026-06-19&quot;:1.84},{&quot;2026-06-20&quot;:1.85},{&quot;2026-06-21&quot;:1.84},{&quot;2026-06-22&quot;:1.93},{&quot;2026-06-23&quot;:2.0},{&quot;2026-06-24&quot;:1.98},{&quot;2026-06-25&quot;:1.94},{&quot;2026-06-26&quot;:1.97},{&quot;2026-06-27&quot;:1.97},{&quot;2026-06-28&quot;:1.92},{&quot;2026-06-29&quot;:1.86},{&quot;2026-06-30&quot;:1.74},{&quot;2026-07-01&quot;:1.73},{&quot;2026-07-02&quot;:1.77},{&quot;2026-07-03&quot;:1.77},{&quot;2026-07-04&quot;:1.77},{&quot;2026-07-05&quot;:1.76},{&quot;2026-07-06&quot;:1.74},{&quot;2026-07-07&quot;:1.65},{&quot;2026-07-08&quot;:1.64},{&quot;2026-07-09&quot;:1.56},{&quot;2026-07-10&quot;:1.58},{&quot;2026-07-11&quot;:1.63},{&quot;2026-07-12&quot;:1.63},{&quot;2026-07-13&quot;:1.63},{&quot;2026-07-14&quot;:1.66},{&quot;2026-07-15&quot;:1.7},{&quot;2026-07-16&quot;:1.67},{&quot;2026-07-17&quot;:1.67},{&quot;2026-07-18&quot;:1.65},{&quot;2026-07-19&quot;:1.68},{&quot;2026-07-20&quot;:1.68},{&quot;2026-07-21&quot;:1.68},{&quot;2026-07-22&quot;:1.73},{&quot;2026-07-23&quot;:1.75},{&quot;2026-07-24&quot;:1.72},{&quot;2026-07-25&quot;:1.72},{&quot;2026-07-26&quot;:1.76},{&quot;2026-07-27&quot;:1.76},{&quot;2026-07-28&quot;:1.81},{&quot;2026-07-29&quot;:1.87},{&quot;2026-07-30&quot;:1.86},{&quot;2026-07-31&quot;:1.91},{&quot;2026-08-01&quot;:1.97},{&quot;2026-08-02&quot;:1.95},{&quot;2026-08-03&quot;:1.96},{&quot;2026-08-04&quot;:1.96},{&quot;2026-08-05&quot;:1.96},{&quot;2026-08-07&quot;:1.95},{&quot;2026-08-08&quot;:1.95},{&quot;2026-08-09&quot;:1.95},{&quot;2026-08-10&quot;:1.96},{&quot;2026-08-11&quot;:1.96},{&quot;2026-08-12&quot;:1.9},{&quot;2026-08-13&quot;:1.94},{&quot;2026-08-14&quot;:1.94},{&quot;2026-08-15&quot;:1.94},{&quot;2026-08-16&quot;:1.96},{&quot;2026-08-17&quot;:1.95},{&quot;2026-08-18&quot;:1.94},{&quot;2026-08-19&quot;:1.94},{&quot;2026-08-20&quot;:1.95},{&quot;2026-08-21&quot;:1.95},{&quot;2026-08-22&quot;:1.95},{&quot;2026-08-23&quot;:1.97},{&quot;2026-08-24&quot;:1.93},{&quot;2026-08-25&quot;:1.93},{&quot;2026-08-26&quot;:1.9},{&quot;2026-08-27&quot;:1.87},{&quot;2026-08-28&quot;:1.87},{&quot;2026-08-29&quot;:1.87},{&quot;2026-08-30&quot;:1.86},{&quot;2026-08-31&quot;:1.88},{&quot;2026-09-01&quot;:1.88},{&quot;2026-09-02&quot;:1.87},{&quot;2026-09-03&quot;:1.86},{&quot;2026-09-04&quot;:1.76},{&quot;2026-09-05&quot;:1.75},{&quot;2026-09-06&quot;:1.76},{&quot;2026-09-07&quot;:1.76},{&quot;2026-09-08&quot;:1.73},{&quot;2026-09-09&quot;:1.79},{&quot;2026-09-10&quot;:1.83},{&quot;2026-09-11&quot;:1.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="14164"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-clb ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Blasphemous Act" src="https://cards.scryfall.io/large/front/b/a/ba975f60-ca29-4fc8-b2f0-416be395f200.jpg?1783922433" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $1.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="Drakuseth, Maw of Flames" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/c/1c8429f1-1a91-4f29-8d56-4c061f21c183.jpg?1783922425" />

        <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">
            Drakuseth, Maw of Flames
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-4'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><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="Drakuseth, Maw of Flames" src="https://cards.scryfall.io/large/front/1/c/1c8429f1-1a91-4f29-8d56-4c061f21c183.jpg?1783922425" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.23},{&quot;2026-06-14&quot;:1.23},{&quot;2026-06-15&quot;:1.23},{&quot;2026-06-16&quot;:1.22},{&quot;2026-06-17&quot;:1.21},{&quot;2026-06-18&quot;:1.21},{&quot;2026-06-19&quot;:1.21},{&quot;2026-06-20&quot;:1.21},{&quot;2026-06-21&quot;:1.21},{&quot;2026-06-22&quot;:1.21},{&quot;2026-06-23&quot;:1.21},{&quot;2026-06-24&quot;:1.18},{&quot;2026-06-25&quot;:1.18},{&quot;2026-06-26&quot;:1.19},{&quot;2026-06-27&quot;:1.14},{&quot;2026-06-28&quot;:1.14},{&quot;2026-06-29&quot;:1.19},{&quot;2026-06-30&quot;:1.17},{&quot;2026-07-01&quot;:1.2},{&quot;2026-07-02&quot;:1.2},{&quot;2026-07-03&quot;:1.22},{&quot;2026-07-04&quot;:1.19},{&quot;2026-07-05&quot;:1.19},{&quot;2026-07-06&quot;:1.19},{&quot;2026-07-07&quot;:1.16},{&quot;2026-07-08&quot;:1.16},{&quot;2026-07-09&quot;:1.12},{&quot;2026-07-10&quot;:1.13},{&quot;2026-07-11&quot;:1.09},{&quot;2026-07-12&quot;:1.1},{&quot;2026-07-13&quot;:1.1},{&quot;2026-07-14&quot;:1.12},{&quot;2026-07-15&quot;:1.12},{&quot;2026-07-16&quot;:1.12},{&quot;2026-07-17&quot;:1.12},{&quot;2026-07-18&quot;:1.12},{&quot;2026-07-19&quot;:1.12},{&quot;2026-07-20&quot;:1.12},{&quot;2026-07-21&quot;:1.11},{&quot;2026-07-22&quot;:1.15},{&quot;2026-07-23&quot;:1.15},{&quot;2026-07-24&quot;:1.11},{&quot;2026-07-25&quot;:1.11},{&quot;2026-07-26&quot;:1.11},{&quot;2026-07-27&quot;:1.1},{&quot;2026-07-28&quot;:1.12},{&quot;2026-07-29&quot;:1.12},{&quot;2026-07-30&quot;:1.12},{&quot;2026-07-31&quot;:1.08},{&quot;2026-08-01&quot;:1.08},{&quot;2026-08-02&quot;:1.08},{&quot;2026-08-03&quot;:1.09},{&quot;2026-08-04&quot;:1.08},{&quot;2026-08-05&quot;:1.21},{&quot;2026-08-07&quot;:1.24},{&quot;2026-08-08&quot;:1.24},{&quot;2026-08-09&quot;:1.27},{&quot;2026-08-10&quot;:1.27},{&quot;2026-08-11&quot;:1.27},{&quot;2026-08-12&quot;:1.25},{&quot;2026-08-13&quot;:1.25},{&quot;2026-08-14&quot;:1.32},{&quot;2026-08-15&quot;:1.32},{&quot;2026-08-16&quot;:1.32},{&quot;2026-08-17&quot;:1.33},{&quot;2026-08-18&quot;:1.33},{&quot;2026-08-19&quot;:1.34},{&quot;2026-08-20&quot;:1.33},{&quot;2026-08-21&quot;:1.35},{&quot;2026-08-22&quot;:1.36},{&quot;2026-08-23&quot;:1.36},{&quot;2026-08-24&quot;:1.37},{&quot;2026-08-25&quot;:1.37},{&quot;2026-08-26&quot;:1.37},{&quot;2026-08-27&quot;:1.37},{&quot;2026-08-28&quot;:1.36},{&quot;2026-08-29&quot;:1.36},{&quot;2026-08-30&quot;:1.38},{&quot;2026-08-31&quot;:1.38},{&quot;2026-09-01&quot;:1.38},{&quot;2026-09-02&quot;:1.42},{&quot;2026-09-03&quot;:1.42},{&quot;2026-09-04&quot;:1.42},{&quot;2026-09-05&quot;:1.42},{&quot;2026-09-06&quot;:1.44},{&quot;2026-09-07&quot;:1.42},{&quot;2026-09-08&quot;:1.42},{&quot;2026-09-09&quot;:1.39},{&quot;2026-09-10&quot;:1.35},{&quot;2026-09-11&quot;:1.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="19174"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-dmr ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

        <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">
            Sulfur Falls
        </h3>

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Sulfur Falls" src="https://cards.scryfall.io/large/front/8/a/8a4ee66c-1c3f-4ece-8c0a-4f0c259c5142.jpg?1783918342" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-12&quot;:2.55},{&quot;2026-06-13&quot;:2.55},{&quot;2026-06-14&quot;:2.55},{&quot;2026-06-15&quot;:2.55},{&quot;2026-06-16&quot;:2.55},{&quot;2026-06-17&quot;:2.55},{&quot;2026-06-18&quot;:2.55},{&quot;2026-06-19&quot;:2.55},{&quot;2026-06-20&quot;:2.55},{&quot;2026-06-21&quot;:2.55},{&quot;2026-06-22&quot;:2.55},{&quot;2026-06-23&quot;:2.55},{&quot;2026-06-24&quot;:2.55},{&quot;2026-06-25&quot;:2.55},{&quot;2026-06-26&quot;:2.55},{&quot;2026-06-27&quot;:2.55},{&quot;2026-06-28&quot;:2.55},{&quot;2026-06-29&quot;:2.55},{&quot;2026-06-30&quot;:2.47},{&quot;2026-07-01&quot;:2.47},{&quot;2026-07-02&quot;:2.47},{&quot;2026-07-03&quot;:2.47},{&quot;2026-07-04&quot;:2.45},{&quot;2026-07-05&quot;:2.45},{&quot;2026-07-06&quot;:2.45},{&quot;2026-07-07&quot;:2.45},{&quot;2026-07-08&quot;:2.46},{&quot;2026-07-09&quot;:2.46},{&quot;2026-07-10&quot;:2.46},{&quot;2026-07-11&quot;:2.46},{&quot;2026-07-12&quot;:2.46},{&quot;2026-07-13&quot;:2.47},{&quot;2026-07-14&quot;:2.5},{&quot;2026-07-15&quot;:2.5},{&quot;2026-07-16&quot;:2.5},{&quot;2026-07-17&quot;:2.56},{&quot;2026-07-18&quot;:2.56},{&quot;2026-07-19&quot;:2.55},{&quot;2026-07-20&quot;:2.55},{&quot;2026-07-21&quot;:2.66},{&quot;2026-07-23&quot;:2.66},{&quot;2026-07-24&quot;:2.66},{&quot;2026-07-25&quot;:2.66},{&quot;2026-07-26&quot;:2.66},{&quot;2026-07-27&quot;:2.66},{&quot;2026-07-28&quot;:2.66},{&quot;2026-07-29&quot;:2.66},{&quot;2026-07-30&quot;:2.66},{&quot;2026-07-31&quot;:2.66},{&quot;2026-08-01&quot;:2.66},{&quot;2026-08-02&quot;:2.66},{&quot;2026-08-03&quot;:2.66},{&quot;2026-08-04&quot;:2.66},{&quot;2026-08-05&quot;:2.66},{&quot;2026-08-07&quot;:2.66},{&quot;2026-08-08&quot;:2.66},{&quot;2026-08-09&quot;:2.83},{&quot;2026-08-10&quot;:2.83},{&quot;2026-08-11&quot;:2.75},{&quot;2026-08-12&quot;:2.73},{&quot;2026-08-13&quot;:2.73},{&quot;2026-08-14&quot;:2.73},{&quot;2026-08-15&quot;:2.57},{&quot;2026-08-16&quot;:2.57},{&quot;2026-08-17&quot;:2.57},{&quot;2026-08-18&quot;:2.57},{&quot;2026-08-19&quot;:2.57},{&quot;2026-08-20&quot;:2.57},{&quot;2026-08-21&quot;:2.57},{&quot;2026-08-22&quot;:2.57},{&quot;2026-08-23&quot;:2.57},{&quot;2026-08-24&quot;:2.51},{&quot;2026-08-25&quot;:2.51},{&quot;2026-08-26&quot;:2.42},{&quot;2026-08-27&quot;:2.42},{&quot;2026-08-28&quot;:2.42},{&quot;2026-08-29&quot;:2.42},{&quot;2026-08-30&quot;:2.51},{&quot;2026-08-31&quot;:2.51},{&quot;2026-09-01&quot;:2.51},{&quot;2026-09-02&quot;:2.52},{&quot;2026-09-03&quot;:2.54},{&quot;2026-09-04&quot;:2.54},{&quot;2026-09-05&quot;:2.54},{&quot;2026-09-06&quot;:2.6},{&quot;2026-09-07&quot;:2.6},{&quot;2026-09-08&quot;:2.6},{&quot;2026-09-09&quot;:2.6},{&quot;2026-09-10&quot;:2.6},{&quot;2026-09-11&quot;:2.6}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:1.46},{&quot;2026-06-13&quot;:1.46},{&quot;2026-06-14&quot;:1.47},{&quot;2026-06-15&quot;:1.49},{&quot;2026-06-16&quot;:1.49},{&quot;2026-06-17&quot;:1.49},{&quot;2026-06-18&quot;:1.49},{&quot;2026-06-19&quot;:1.47},{&quot;2026-06-20&quot;:1.47},{&quot;2026-06-21&quot;:1.5},{&quot;2026-06-22&quot;:1.5},{&quot;2026-06-23&quot;:1.5},{&quot;2026-06-24&quot;:1.48},{&quot;2026-06-25&quot;:1.48},{&quot;2026-06-26&quot;:1.48},{&quot;2026-06-27&quot;:1.48},{&quot;2026-06-28&quot;:1.48},{&quot;2026-06-29&quot;:1.47},{&quot;2026-06-30&quot;:1.47},{&quot;2026-07-01&quot;:1.47},{&quot;2026-07-02&quot;:1.47},{&quot;2026-07-03&quot;:1.47},{&quot;2026-07-04&quot;:1.47},{&quot;2026-07-05&quot;:1.47},{&quot;2026-07-06&quot;:1.47},{&quot;2026-07-07&quot;:1.47},{&quot;2026-07-08&quot;:1.46},{&quot;2026-07-09&quot;:1.46},{&quot;2026-07-10&quot;:1.44},{&quot;2026-07-11&quot;:1.44},{&quot;2026-07-12&quot;:1.41},{&quot;2026-07-13&quot;:1.41},{&quot;2026-07-14&quot;:1.37},{&quot;2026-07-15&quot;:1.37},{&quot;2026-07-16&quot;:1.37},{&quot;2026-07-17&quot;:1.35},{&quot;2026-07-18&quot;:1.35},{&quot;2026-07-19&quot;:1.32},{&quot;2026-07-20&quot;:1.32},{&quot;2026-07-21&quot;:1.32},{&quot;2026-07-23&quot;:1.32},{&quot;2026-07-24&quot;:1.31},{&quot;2026-07-25&quot;:1.31},{&quot;2026-07-26&quot;:1.29},{&quot;2026-07-27&quot;:1.29},{&quot;2026-07-28&quot;:1.29},{&quot;2026-07-29&quot;:1.27},{&quot;2026-07-30&quot;:1.27},{&quot;2026-07-31&quot;:1.28},{&quot;2026-08-01&quot;:1.28},{&quot;2026-08-02&quot;:1.28},{&quot;2026-08-03&quot;:1.28},{&quot;2026-08-04&quot;:1.28},{&quot;2026-08-05&quot;:1.28},{&quot;2026-08-07&quot;:1.28},{&quot;2026-08-08&quot;:1.28},{&quot;2026-08-09&quot;:1.25},{&quot;2026-08-10&quot;:1.24},{&quot;2026-08-11&quot;:1.22},{&quot;2026-08-12&quot;:1.22},{&quot;2026-08-13&quot;:1.22},{&quot;2026-08-14&quot;:1.22},{&quot;2026-08-15&quot;:1.22},{&quot;2026-08-16&quot;:1.2},{&quot;2026-08-17&quot;:1.2},{&quot;2026-08-18&quot;:1.21},{&quot;2026-08-19&quot;:1.2},{&quot;2026-08-20&quot;:1.2},{&quot;2026-08-21&quot;:1.19},{&quot;2026-08-22&quot;:1.19},{&quot;2026-08-23&quot;:1.19},{&quot;2026-08-24&quot;:1.19},{&quot;2026-08-25&quot;:1.19},{&quot;2026-08-26&quot;:1.21},{&quot;2026-08-27&quot;:1.21},{&quot;2026-08-28&quot;:1.21},{&quot;2026-08-29&quot;:1.21},{&quot;2026-08-30&quot;:1.23},{&quot;2026-08-31&quot;:1.23},{&quot;2026-09-01&quot;:1.23},{&quot;2026-09-02&quot;:1.22},{&quot;2026-09-03&quot;:1.24},{&quot;2026-09-04&quot;:1.26},{&quot;2026-09-05&quot;:1.28},{&quot;2026-09-06&quot;:1.28},{&quot;2026-09-07&quot;:1.28},{&quot;2026-09-08&quot;:1.28},{&quot;2026-09-09&quot;:1.28},{&quot;2026-09-10&quot;:1.28},{&quot;2026-09-11&quot;:1.28}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

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

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

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

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

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

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Abrade" src="https://cards.scryfall.io/large/front/2/5/25a6e1bb-c751-447c-be69-e03692568678.jpg?1783908050" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:1.43},{&quot;2026-06-14&quot;:1.45},{&quot;2026-06-15&quot;:1.45},{&quot;2026-06-16&quot;:1.45},{&quot;2026-06-17&quot;:1.45},{&quot;2026-06-18&quot;:1.45},{&quot;2026-06-19&quot;:1.45},{&quot;2026-06-20&quot;:1.45},{&quot;2026-06-21&quot;:1.45},{&quot;2026-06-22&quot;:1.45},{&quot;2026-06-23&quot;:1.45},{&quot;2026-06-24&quot;:1.45},{&quot;2026-06-25&quot;:1.45},{&quot;2026-06-26&quot;:1.45},{&quot;2026-06-27&quot;:1.46},{&quot;2026-06-28&quot;:1.46},{&quot;2026-06-29&quot;:1.44},{&quot;2026-06-30&quot;:1.44},{&quot;2026-07-01&quot;:1.46},{&quot;2026-07-02&quot;:1.46},{&quot;2026-07-03&quot;:1.45},{&quot;2026-07-04&quot;:1.44},{&quot;2026-07-05&quot;:1.42},{&quot;2026-07-06&quot;:1.42},{&quot;2026-07-07&quot;:1.42},{&quot;2026-07-08&quot;:1.38},{&quot;2026-07-09&quot;:1.36},{&quot;2026-07-10&quot;:1.36},{&quot;2026-07-11&quot;:1.36},{&quot;2026-07-12&quot;:1.36},{&quot;2026-07-13&quot;:1.36},{&quot;2026-07-14&quot;:1.36},{&quot;2026-07-15&quot;:1.36},{&quot;2026-07-16&quot;:1.36},{&quot;2026-07-17&quot;:1.36},{&quot;2026-07-18&quot;:1.36},{&quot;2026-07-19&quot;:1.36},{&quot;2026-07-20&quot;:1.36},{&quot;2026-07-21&quot;:1.36},{&quot;2026-07-22&quot;:1.36},{&quot;2026-07-23&quot;:1.36},{&quot;2026-07-24&quot;:1.36},{&quot;2026-07-25&quot;:1.38},{&quot;2026-07-26&quot;:1.33},{&quot;2026-07-27&quot;:1.31},{&quot;2026-07-28&quot;:1.28},{&quot;2026-07-29&quot;:1.28},{&quot;2026-07-30&quot;:1.27},{&quot;2026-07-31&quot;:1.25},{&quot;2026-08-01&quot;:1.22},{&quot;2026-08-02&quot;:1.22},{&quot;2026-08-03&quot;:1.22},{&quot;2026-08-04&quot;:1.22},{&quot;2026-08-05&quot;:1.22},{&quot;2026-08-07&quot;:1.22},{&quot;2026-08-08&quot;:1.22},{&quot;2026-08-09&quot;:1.22},{&quot;2026-08-10&quot;:1.2},{&quot;2026-08-11&quot;:1.2},{&quot;2026-08-12&quot;:1.2},{&quot;2026-08-13&quot;:1.2},{&quot;2026-08-14&quot;:1.2},{&quot;2026-08-15&quot;:1.2},{&quot;2026-08-16&quot;:1.2},{&quot;2026-08-17&quot;:1.2},{&quot;2026-08-18&quot;:1.14},{&quot;2026-08-19&quot;:1.14},{&quot;2026-08-20&quot;:1.16},{&quot;2026-08-21&quot;:1.14},{&quot;2026-08-22&quot;:1.14},{&quot;2026-08-23&quot;:1.14},{&quot;2026-08-24&quot;:1.14},{&quot;2026-08-25&quot;:1.13},{&quot;2026-08-26&quot;:1.13},{&quot;2026-08-27&quot;:1.13},{&quot;2026-08-28&quot;:1.13},{&quot;2026-08-29&quot;:1.13},{&quot;2026-08-30&quot;:1.13},{&quot;2026-08-31&quot;:1.12},{&quot;2026-09-01&quot;:1.1},{&quot;2026-09-02&quot;:1.1},{&quot;2026-09-03&quot;:1.1},{&quot;2026-09-04&quot;:1.1},{&quot;2026-09-05&quot;:1.1},{&quot;2026-09-06&quot;:1.1},{&quot;2026-09-07&quot;:1.1},{&quot;2026-09-08&quot;:1.1},{&quot;2026-09-09&quot;:1.06},{&quot;2026-09-10&quot;:1.06},{&quot;2026-09-11&quot;:1.06}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.81},{&quot;2026-06-14&quot;:0.81},{&quot;2026-06-15&quot;:0.81},{&quot;2026-06-16&quot;:0.81},{&quot;2026-06-17&quot;:0.8},{&quot;2026-06-18&quot;:0.8},{&quot;2026-06-19&quot;:0.8},{&quot;2026-06-20&quot;:0.78},{&quot;2026-06-21&quot;:0.78},{&quot;2026-06-22&quot;:0.78},{&quot;2026-06-23&quot;:0.78},{&quot;2026-06-24&quot;:0.78},{&quot;2026-06-25&quot;:0.78},{&quot;2026-06-26&quot;:0.78},{&quot;2026-06-27&quot;:0.79},{&quot;2026-06-28&quot;:0.79},{&quot;2026-06-29&quot;:0.79},{&quot;2026-06-30&quot;:0.79},{&quot;2026-07-01&quot;:0.8},{&quot;2026-07-02&quot;:0.77},{&quot;2026-07-03&quot;:0.77},{&quot;2026-07-04&quot;:0.8},{&quot;2026-07-05&quot;:0.78},{&quot;2026-07-06&quot;:0.78},{&quot;2026-07-07&quot;:0.78},{&quot;2026-07-08&quot;:0.78},{&quot;2026-07-09&quot;:0.83},{&quot;2026-07-10&quot;:0.83},{&quot;2026-07-11&quot;:0.83},{&quot;2026-07-12&quot;:0.83},{&quot;2026-07-13&quot;:0.83},{&quot;2026-07-14&quot;:0.83},{&quot;2026-07-15&quot;:0.83},{&quot;2026-07-16&quot;:0.85},{&quot;2026-07-17&quot;:0.84},{&quot;2026-07-18&quot;:0.84},{&quot;2026-07-19&quot;:0.84},{&quot;2026-07-20&quot;:0.83},{&quot;2026-07-21&quot;:0.8},{&quot;2026-07-22&quot;:0.8},{&quot;2026-07-23&quot;:0.8},{&quot;2026-07-24&quot;:0.76},{&quot;2026-07-25&quot;:0.72},{&quot;2026-07-26&quot;:0.72},{&quot;2026-07-27&quot;:0.71},{&quot;2026-07-28&quot;:0.71},{&quot;2026-07-29&quot;:0.71},{&quot;2026-07-30&quot;:0.71},{&quot;2026-07-31&quot;:0.71},{&quot;2026-08-01&quot;:0.71},{&quot;2026-08-02&quot;:0.71},{&quot;2026-08-03&quot;:0.72},{&quot;2026-08-04&quot;:0.75},{&quot;2026-08-05&quot;:0.73},{&quot;2026-08-07&quot;:0.7},{&quot;2026-08-08&quot;:0.69},{&quot;2026-08-09&quot;:0.67},{&quot;2026-08-10&quot;:0.67},{&quot;2026-08-11&quot;:0.67},{&quot;2026-08-12&quot;:0.63},{&quot;2026-08-13&quot;:0.63},{&quot;2026-08-14&quot;:0.64},{&quot;2026-08-15&quot;:0.63},{&quot;2026-08-16&quot;:0.63},{&quot;2026-08-17&quot;:0.55},{&quot;2026-08-18&quot;:0.53},{&quot;2026-08-19&quot;:0.53},{&quot;2026-08-20&quot;:0.53},{&quot;2026-08-21&quot;:0.51},{&quot;2026-08-22&quot;:0.51},{&quot;2026-08-23&quot;:0.51},{&quot;2026-08-24&quot;:0.49},{&quot;2026-08-25&quot;:0.48},{&quot;2026-08-26&quot;:0.5},{&quot;2026-08-27&quot;:0.45},{&quot;2026-08-28&quot;:0.46},{&quot;2026-08-29&quot;:0.46},{&quot;2026-08-30&quot;:0.47},{&quot;2026-08-31&quot;:0.46},{&quot;2026-09-01&quot;:0.47},{&quot;2026-09-02&quot;:0.47},{&quot;2026-09-03&quot;:0.47},{&quot;2026-09-04&quot;:0.48},{&quot;2026-09-05&quot;:0.49},{&quot;2026-09-06&quot;:0.51},{&quot;2026-09-07&quot;:0.51},{&quot;2026-09-08&quot;:0.51},{&quot;2026-09-09&quot;:0.51},{&quot;2026-09-10&quot;:0.51},{&quot;2026-09-11&quot;:0.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="40509"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-khc ss-common ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

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

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Clifftop Retreat" src="https://cards.scryfall.io/large/front/7/c/7c5f775a-2eb3-4151-b21d-9fe62ae17f54.jpg?1783918407" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Mountain" src="https://cards.scryfall.io/large/front/e/a/ea1735b9-fd10-4c9c-b9d3-046d8c22b852.jpg?1783906539" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="93022"
  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-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">
            Spectral Denial
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Spectral Denial
        </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-x'></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="Spectral Denial" src="https://cards.scryfall.io/large/front/e/e/ee4e732a-1ffd-463d-92c2-26187659cfc3.jpg?1743204193" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:0.89},{&quot;2026-06-14&quot;:0.89},{&quot;2026-06-15&quot;:0.89},{&quot;2026-06-16&quot;:0.85},{&quot;2026-06-17&quot;:0.85},{&quot;2026-06-18&quot;:0.85},{&quot;2026-06-19&quot;:0.85},{&quot;2026-06-20&quot;:0.87},{&quot;2026-06-21&quot;:0.82},{&quot;2026-06-22&quot;:0.97},{&quot;2026-06-23&quot;:0.97},{&quot;2026-06-24&quot;:1.0},{&quot;2026-06-25&quot;:1.0},{&quot;2026-06-26&quot;:0.99},{&quot;2026-06-27&quot;:1.0},{&quot;2026-06-28&quot;:1.0},{&quot;2026-06-29&quot;:1.0},{&quot;2026-06-30&quot;:1.0},{&quot;2026-07-01&quot;:1.01},{&quot;2026-07-02&quot;:1.01},{&quot;2026-07-03&quot;:1.01},{&quot;2026-07-04&quot;:0.97},{&quot;2026-07-05&quot;:0.97},{&quot;2026-07-06&quot;:0.92},{&quot;2026-07-07&quot;:1.06},{&quot;2026-07-08&quot;:1.06},{&quot;2026-07-09&quot;:1.02},{&quot;2026-07-10&quot;:1.0},{&quot;2026-07-11&quot;:1.0},{&quot;2026-07-12&quot;:1.0},{&quot;2026-07-13&quot;:1.01},{&quot;2026-07-14&quot;:1.01},{&quot;2026-07-15&quot;:1.01},{&quot;2026-07-16&quot;:1.01},{&quot;2026-07-17&quot;:1.01},{&quot;2026-07-18&quot;:1.01},{&quot;2026-07-19&quot;:0.97},{&quot;2026-07-20&quot;:0.97},{&quot;2026-07-21&quot;:0.97},{&quot;2026-07-22&quot;:0.97},{&quot;2026-07-23&quot;:0.95},{&quot;2026-07-24&quot;:0.95},{&quot;2026-07-25&quot;:0.95},{&quot;2026-07-26&quot;:0.92},{&quot;2026-07-27&quot;:0.89},{&quot;2026-07-28&quot;:0.9},{&quot;2026-07-29&quot;:0.82},{&quot;2026-07-30&quot;:0.82},{&quot;2026-07-31&quot;:0.78},{&quot;2026-08-01&quot;:0.78},{&quot;2026-08-02&quot;:0.78},{&quot;2026-08-03&quot;:0.78},{&quot;2026-08-04&quot;:0.72},{&quot;2026-08-05&quot;:0.73},{&quot;2026-08-07&quot;:0.73},{&quot;2026-08-08&quot;:0.73},{&quot;2026-08-09&quot;:0.73},{&quot;2026-08-10&quot;:0.73},{&quot;2026-08-11&quot;:0.79},{&quot;2026-08-12&quot;:0.79},{&quot;2026-08-13&quot;:0.8},{&quot;2026-08-14&quot;:0.8},{&quot;2026-08-15&quot;:0.8},{&quot;2026-08-16&quot;:0.8},{&quot;2026-08-17&quot;:0.66},{&quot;2026-08-18&quot;:0.68},{&quot;2026-08-19&quot;:0.68},{&quot;2026-08-20&quot;:0.68},{&quot;2026-08-21&quot;:0.7},{&quot;2026-08-22&quot;:0.7},{&quot;2026-08-23&quot;:0.7},{&quot;2026-08-24&quot;:0.71},{&quot;2026-08-25&quot;:0.74},{&quot;2026-08-26&quot;:0.74},{&quot;2026-08-27&quot;:0.74},{&quot;2026-08-28&quot;:0.74},{&quot;2026-08-29&quot;:0.74},{&quot;2026-08-30&quot;:0.74},{&quot;2026-08-31&quot;:0.69},{&quot;2026-09-01&quot;:0.73},{&quot;2026-09-02&quot;:0.73},{&quot;2026-09-03&quot;:0.73},{&quot;2026-09-04&quot;:0.71},{&quot;2026-09-05&quot;:0.69},{&quot;2026-09-06&quot;:0.69},{&quot;2026-09-07&quot;:0.69},{&quot;2026-09-08&quot;:0.67},{&quot;2026-09-09&quot;:0.67},{&quot;2026-09-10&quot;:0.68},{&quot;2026-09-11&quot;:0.68}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.25},{&quot;2026-06-14&quot;:0.27},{&quot;2026-06-15&quot;:0.27},{&quot;2026-06-16&quot;:0.27},{&quot;2026-06-17&quot;:0.3},{&quot;2026-06-18&quot;:0.32},{&quot;2026-06-19&quot;:0.32},{&quot;2026-06-20&quot;:0.29},{&quot;2026-06-21&quot;:0.29},{&quot;2026-06-22&quot;:0.28},{&quot;2026-06-23&quot;:0.29},{&quot;2026-06-24&quot;:0.25},{&quot;2026-06-25&quot;:0.28},{&quot;2026-06-26&quot;:0.28},{&quot;2026-06-27&quot;:0.26},{&quot;2026-06-28&quot;:0.25},{&quot;2026-06-29&quot;:0.25},{&quot;2026-06-30&quot;:0.26},{&quot;2026-07-01&quot;:0.28},{&quot;2026-07-02&quot;:0.31},{&quot;2026-07-03&quot;:0.31},{&quot;2026-07-04&quot;:0.3},{&quot;2026-07-05&quot;:0.3},{&quot;2026-07-06&quot;:0.29},{&quot;2026-07-07&quot;:0.4},{&quot;2026-07-08&quot;:0.39},{&quot;2026-07-09&quot;:0.4},{&quot;2026-07-10&quot;:0.4},{&quot;2026-07-11&quot;:0.39},{&quot;2026-07-12&quot;:0.39},{&quot;2026-07-13&quot;:0.4},{&quot;2026-07-14&quot;:0.43},{&quot;2026-07-15&quot;:0.34},{&quot;2026-07-16&quot;:0.34},{&quot;2026-07-17&quot;:0.34},{&quot;2026-07-18&quot;:0.35},{&quot;2026-07-19&quot;:0.36},{&quot;2026-07-20&quot;:0.35},{&quot;2026-07-21&quot;:0.36},{&quot;2026-07-22&quot;:0.35},{&quot;2026-07-23&quot;:0.35},{&quot;2026-07-24&quot;:0.36},{&quot;2026-07-25&quot;:0.36},{&quot;2026-07-26&quot;:0.35},{&quot;2026-07-27&quot;:0.35},{&quot;2026-07-28&quot;:0.34},{&quot;2026-07-29&quot;:0.36},{&quot;2026-07-30&quot;:0.35},{&quot;2026-07-31&quot;:0.34},{&quot;2026-08-01&quot;:0.34},{&quot;2026-08-02&quot;:0.31},{&quot;2026-08-03&quot;:0.31},{&quot;2026-08-04&quot;:0.29},{&quot;2026-08-05&quot;:0.3},{&quot;2026-08-07&quot;:0.31},{&quot;2026-08-08&quot;:0.31},{&quot;2026-08-09&quot;:0.3},{&quot;2026-08-10&quot;:0.31},{&quot;2026-08-11&quot;:0.61},{&quot;2026-08-12&quot;:0.63},{&quot;2026-08-13&quot;:0.62},{&quot;2026-08-14&quot;:0.62},{&quot;2026-08-15&quot;:0.63},{&quot;2026-08-16&quot;:0.62},{&quot;2026-08-17&quot;:0.63},{&quot;2026-08-18&quot;:0.29},{&quot;2026-08-19&quot;:0.31},{&quot;2026-08-20&quot;:0.31},{&quot;2026-08-21&quot;:0.33},{&quot;2026-08-22&quot;:0.33},{&quot;2026-08-23&quot;:0.35},{&quot;2026-08-24&quot;:0.35},{&quot;2026-08-25&quot;:0.34},{&quot;2026-08-26&quot;:0.35},{&quot;2026-08-27&quot;:0.35},{&quot;2026-08-28&quot;:0.36},{&quot;2026-08-29&quot;:0.36},{&quot;2026-08-30&quot;:0.38},{&quot;2026-08-31&quot;:0.38},{&quot;2026-09-01&quot;:0.38},{&quot;2026-09-02&quot;:0.36},{&quot;2026-09-03&quot;:0.36},{&quot;2026-09-04&quot;:0.35},{&quot;2026-09-05&quot;:0.35},{&quot;2026-09-06&quot;:0.35},{&quot;2026-09-07&quot;:0.35},{&quot;2026-09-08&quot;:0.34},{&quot;2026-09-09&quot;:0.32},{&quot;2026-09-10&quot;:0.31},{&quot;2026-09-11&quot;:0.32}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.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="Mountain" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/0/d061b9a8-e95d-48ec-a1c9-337433b62dfc.jpg?1783906540" />

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Mountain" src="https://cards.scryfall.io/large/front/d/0/d061b9a8-e95d-48ec-a1c9-337433b62dfc.jpg?1783906540" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


      </div>

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

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

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

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

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

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

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

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

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

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

      </div>
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Island" src="https://cards.scryfall.io/large/front/b/9/b92ec9f6-a56d-40c6-aee2-7d5e1524c985.jpg?1783906542" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.25
              </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">
                $0.29
              </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 Foil</span>
              <span class="text-lg font-medium text-nine-white">$0.16</span>
              <span class="text-xs text-grey-text">Credit: $0.21</span>
            </div>
        </div>

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="93282"
  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-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">
            Rediscover the Way
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Rediscover the Way
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            rare
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Enchantment — Saga</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-u'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Rediscover the Way" src="https://cards.scryfall.io/large/front/7/9/79d6decf-afd5-4e96-b87e-fd7ab7e3c068.jpg?1743204851" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.27
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  7%
                </span>
            </div>
          </div>

          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Foil</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $0.28
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  3%
                </span>
            </div>
          </div>
      </div>


      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:0.21},{&quot;2026-06-14&quot;:0.21},{&quot;2026-06-15&quot;:0.21},{&quot;2026-06-16&quot;:0.22},{&quot;2026-06-17&quot;:0.22},{&quot;2026-06-18&quot;:0.22},{&quot;2026-06-19&quot;:0.21},{&quot;2026-06-20&quot;:0.21},{&quot;2026-06-21&quot;:0.21},{&quot;2026-06-22&quot;:0.21},{&quot;2026-06-23&quot;:0.2},{&quot;2026-06-24&quot;:0.2},{&quot;2026-06-25&quot;:0.2},{&quot;2026-06-26&quot;:0.2},{&quot;2026-06-27&quot;:0.2},{&quot;2026-06-28&quot;:0.2},{&quot;2026-06-29&quot;:0.21},{&quot;2026-06-30&quot;:0.21},{&quot;2026-07-01&quot;:0.21},{&quot;2026-07-02&quot;:0.21},{&quot;2026-07-03&quot;:0.22},{&quot;2026-07-04&quot;:0.22},{&quot;2026-07-05&quot;:0.23},{&quot;2026-07-06&quot;:0.23},{&quot;2026-07-07&quot;:0.23},{&quot;2026-07-08&quot;:0.23},{&quot;2026-07-09&quot;:0.23},{&quot;2026-07-10&quot;:0.25},{&quot;2026-07-11&quot;:0.25},{&quot;2026-07-12&quot;:0.25},{&quot;2026-07-13&quot;:0.25},{&quot;2026-07-14&quot;:0.25},{&quot;2026-07-15&quot;:0.25},{&quot;2026-07-16&quot;:0.25},{&quot;2026-07-17&quot;:0.25},{&quot;2026-07-18&quot;:0.25},{&quot;2026-07-19&quot;:0.25},{&quot;2026-07-20&quot;:0.25},{&quot;2026-07-21&quot;:0.25},{&quot;2026-07-22&quot;:0.25},{&quot;2026-07-23&quot;:0.25},{&quot;2026-07-24&quot;:0.25},{&quot;2026-07-25&quot;:0.25},{&quot;2026-07-26&quot;:0.25},{&quot;2026-07-27&quot;:0.25},{&quot;2026-07-28&quot;:0.25},{&quot;2026-07-29&quot;:0.26},{&quot;2026-07-30&quot;:0.27},{&quot;2026-07-31&quot;:0.27},{&quot;2026-08-01&quot;:0.27},{&quot;2026-08-02&quot;:0.27},{&quot;2026-08-03&quot;:0.28},{&quot;2026-08-04&quot;:0.28},{&quot;2026-08-05&quot;:0.28},{&quot;2026-08-07&quot;:0.28},{&quot;2026-08-08&quot;:0.28},{&quot;2026-08-09&quot;:0.3},{&quot;2026-08-10&quot;:0.3},{&quot;2026-08-11&quot;:0.3},{&quot;2026-08-12&quot;:0.3},{&quot;2026-08-13&quot;:0.3},{&quot;2026-08-14&quot;:0.3},{&quot;2026-08-15&quot;:0.3},{&quot;2026-08-16&quot;:0.3},{&quot;2026-08-17&quot;:0.29},{&quot;2026-08-18&quot;:0.3},{&quot;2026-08-19&quot;:0.3},{&quot;2026-08-20&quot;:0.3},{&quot;2026-08-21&quot;:0.3},{&quot;2026-08-22&quot;:0.3},{&quot;2026-08-23&quot;:0.3},{&quot;2026-08-24&quot;:0.31},{&quot;2026-08-25&quot;:0.31},{&quot;2026-08-26&quot;:0.31},{&quot;2026-08-27&quot;:0.31},{&quot;2026-08-28&quot;:0.31},{&quot;2026-08-29&quot;:0.31},{&quot;2026-08-30&quot;:0.31},{&quot;2026-08-31&quot;:0.31},{&quot;2026-09-01&quot;:0.3},{&quot;2026-09-02&quot;:0.3},{&quot;2026-09-03&quot;:0.3},{&quot;2026-09-04&quot;:0.29},{&quot;2026-09-05&quot;:0.29},{&quot;2026-09-06&quot;:0.28},{&quot;2026-09-07&quot;:0.28},{&quot;2026-09-08&quot;:0.28},{&quot;2026-09-09&quot;:0.28},{&quot;2026-09-10&quot;:0.28},{&quot;2026-09-11&quot;:0.28}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.19},{&quot;2026-06-14&quot;:0.19},{&quot;2026-06-15&quot;:0.2},{&quot;2026-06-16&quot;:0.19},{&quot;2026-06-17&quot;:0.19},{&quot;2026-06-18&quot;:0.21},{&quot;2026-06-19&quot;:0.22},{&quot;2026-06-20&quot;:0.22},{&quot;2026-06-21&quot;:0.22},{&quot;2026-06-22&quot;:0.22},{&quot;2026-06-23&quot;:0.24},{&quot;2026-06-24&quot;:0.24},{&quot;2026-06-25&quot;:0.24},{&quot;2026-06-26&quot;:0.23},{&quot;2026-06-27&quot;:0.23},{&quot;2026-06-28&quot;:0.25},{&quot;2026-06-29&quot;:0.25},{&quot;2026-06-30&quot;:0.25},{&quot;2026-07-01&quot;:0.25},{&quot;2026-07-02&quot;:0.24},{&quot;2026-07-03&quot;:0.23},{&quot;2026-07-04&quot;:0.22},{&quot;2026-07-05&quot;:0.22},{&quot;2026-07-06&quot;:0.22},{&quot;2026-07-07&quot;:0.23},{&quot;2026-07-08&quot;:0.21},{&quot;2026-07-09&quot;:0.23},{&quot;2026-07-10&quot;:0.25},{&quot;2026-07-11&quot;:0.25},{&quot;2026-07-12&quot;:0.27},{&quot;2026-07-13&quot;:0.28},{&quot;2026-07-14&quot;:0.28},{&quot;2026-07-15&quot;:0.27},{&quot;2026-07-16&quot;:0.25},{&quot;2026-07-17&quot;:0.25},{&quot;2026-07-18&quot;:0.25},{&quot;2026-07-19&quot;:0.25},{&quot;2026-07-20&quot;:0.27},{&quot;2026-07-21&quot;:0.27},{&quot;2026-07-22&quot;:0.26},{&quot;2026-07-23&quot;:0.26},{&quot;2026-07-24&quot;:0.26},{&quot;2026-07-25&quot;:0.26},{&quot;2026-07-26&quot;:0.26},{&quot;2026-07-27&quot;:0.25},{&quot;2026-07-28&quot;:0.25},{&quot;2026-07-29&quot;:0.27},{&quot;2026-07-30&quot;:0.27},{&quot;2026-07-31&quot;:0.27},{&quot;2026-08-01&quot;:0.25},{&quot;2026-08-02&quot;:0.25},{&quot;2026-08-03&quot;:0.27},{&quot;2026-08-04&quot;:0.27},{&quot;2026-08-05&quot;:0.27},{&quot;2026-08-07&quot;:0.27},{&quot;2026-08-08&quot;:0.27},{&quot;2026-08-09&quot;:0.28},{&quot;2026-08-10&quot;:0.28},{&quot;2026-08-11&quot;:0.28},{&quot;2026-08-12&quot;:0.27},{&quot;2026-08-13&quot;:0.27},{&quot;2026-08-14&quot;:0.27},{&quot;2026-08-15&quot;:0.27},{&quot;2026-08-16&quot;:0.24},{&quot;2026-08-17&quot;:0.25},{&quot;2026-08-18&quot;:0.25},{&quot;2026-08-19&quot;:0.26},{&quot;2026-08-20&quot;:0.27},{&quot;2026-08-21&quot;:0.27},{&quot;2026-08-22&quot;:0.27},{&quot;2026-08-23&quot;:0.26},{&quot;2026-08-24&quot;:0.28},{&quot;2026-08-25&quot;:0.28},{&quot;2026-08-26&quot;:0.29},{&quot;2026-08-27&quot;:0.29},{&quot;2026-08-28&quot;:0.29},{&quot;2026-08-29&quot;:0.29},{&quot;2026-08-30&quot;:0.28},{&quot;2026-08-31&quot;:0.28},{&quot;2026-09-01&quot;:0.28},{&quot;2026-09-02&quot;:0.29},{&quot;2026-09-03&quot;:0.29},{&quot;2026-09-04&quot;:0.29},{&quot;2026-09-05&quot;:0.29},{&quot;2026-09-06&quot;:0.29},{&quot;2026-09-07&quot;:0.29},{&quot;2026-09-08&quot;:0.28},{&quot;2026-09-09&quot;:0.28},{&quot;2026-09-10&quot;:0.28},{&quot;2026-09-11&quot;:0.27}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="95229"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fin ss-common ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Plains
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Basic Land — Plains
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-100 text-badge-text">
              ↓
              13%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.26
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Plains" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/e/e/ee86ac2f-f398-4422-8721-8ac859fbf5bc.jpg?1783906544" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Plains
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            common
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Basic Land — Plains</span>
        </div>

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Plains" src="https://cards.scryfall.io/large/front/e/e/ee86ac2f-f398-4422-8721-8ac859fbf5bc.jpg?1783906544" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.24
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  4%
                </span>
            </div>
          </div>

          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Foil</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $0.26
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  13%
                </span>
            </div>
          </div>
      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Foil</span>
              <span class="text-lg font-medium text-nine-white">$0.12</span>
              <span class="text-xs text-grey-text">Credit: $0.16</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-08&quot;:0.28},{&quot;2026-06-10&quot;:0.31},{&quot;2026-06-11&quot;:0.33},{&quot;2026-06-12&quot;:0.34},{&quot;2026-06-13&quot;:0.34},{&quot;2026-06-14&quot;:0.3},{&quot;2026-06-15&quot;:0.29},{&quot;2026-06-16&quot;:0.28},{&quot;2026-06-17&quot;:0.27},{&quot;2026-06-18&quot;:0.26},{&quot;2026-06-19&quot;:0.27},{&quot;2026-06-20&quot;:0.28},{&quot;2026-06-21&quot;:0.28},{&quot;2026-06-22&quot;:0.29},{&quot;2026-06-24&quot;:0.3},{&quot;2026-06-25&quot;:0.34},{&quot;2026-06-26&quot;:0.34},{&quot;2026-06-27&quot;:0.33},{&quot;2026-06-28&quot;:0.33},{&quot;2026-06-29&quot;:0.32},{&quot;2026-06-30&quot;:0.33},{&quot;2026-07-01&quot;:0.29},{&quot;2026-07-02&quot;:0.27},{&quot;2026-07-03&quot;:0.26},{&quot;2026-07-04&quot;:0.27},{&quot;2026-07-05&quot;:0.28},{&quot;2026-07-06&quot;:0.28},{&quot;2026-07-07&quot;:0.28},{&quot;2026-07-08&quot;:0.29},{&quot;2026-07-09&quot;:0.29},{&quot;2026-07-10&quot;:0.31},{&quot;2026-07-11&quot;:0.32},{&quot;2026-07-12&quot;:0.31},{&quot;2026-07-13&quot;:0.28},{&quot;2026-07-14&quot;:0.26},{&quot;2026-07-15&quot;:0.27},{&quot;2026-07-16&quot;:0.3},{&quot;2026-07-17&quot;:0.3},{&quot;2026-07-18&quot;:0.29},{&quot;2026-07-19&quot;:0.3},{&quot;2026-07-20&quot;:0.31},{&quot;2026-07-21&quot;:0.33},{&quot;2026-07-23&quot;:0.33},{&quot;2026-07-25&quot;:0.33},{&quot;2026-07-26&quot;:0.28},{&quot;2026-07-27&quot;:0.32},{&quot;2026-07-29&quot;:0.29},{&quot;2026-07-30&quot;:0.29},{&quot;2026-07-31&quot;:0.27},{&quot;2026-08-01&quot;:0.25},{&quot;2026-08-02&quot;:0.25},{&quot;2026-08-03&quot;:0.26},{&quot;2026-08-04&quot;:0.24},{&quot;2026-08-05&quot;:0.24},{&quot;2026-08-07&quot;:0.27},{&quot;2026-08-08&quot;:0.27},{&quot;2026-08-09&quot;:0.29},{&quot;2026-08-10&quot;:0.29},{&quot;2026-08-11&quot;:0.3},{&quot;2026-08-12&quot;:0.31},{&quot;2026-08-13&quot;:0.33},{&quot;2026-08-14&quot;:0.3},{&quot;2026-08-15&quot;:0.3},{&quot;2026-08-16&quot;:0.28},{&quot;2026-08-17&quot;:0.3},{&quot;2026-08-18&quot;:0.31},{&quot;2026-08-19&quot;:0.26},{&quot;2026-08-20&quot;:0.26},{&quot;2026-08-21&quot;:0.34},{&quot;2026-08-22&quot;:0.4},{&quot;2026-08-23&quot;:0.36},{&quot;2026-08-24&quot;:0.37},{&quot;2026-08-25&quot;:0.37},{&quot;2026-08-26&quot;:0.38},{&quot;2026-08-27&quot;:0.34},{&quot;2026-08-28&quot;:0.34},{&quot;2026-08-29&quot;:0.34},{&quot;2026-08-30&quot;:0.31},{&quot;2026-08-31&quot;:0.28},{&quot;2026-09-01&quot;:0.28},{&quot;2026-09-02&quot;:0.31},{&quot;2026-09-03&quot;:0.31},{&quot;2026-09-04&quot;:0.29},{&quot;2026-09-05&quot;:0.3},{&quot;2026-09-06&quot;:0.3},{&quot;2026-09-07&quot;:0.29},{&quot;2026-09-08&quot;:0.3},{&quot;2026-09-09&quot;:0.29},{&quot;2026-09-10&quot;:0.29},{&quot;2026-09-11&quot;:0.26}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:0.18},{&quot;2026-06-10&quot;:0.18},{&quot;2026-06-11&quot;:0.17},{&quot;2026-06-12&quot;:0.2},{&quot;2026-06-13&quot;:0.23},{&quot;2026-06-14&quot;:0.23},{&quot;2026-06-15&quot;:0.22},{&quot;2026-06-16&quot;:0.21},{&quot;2026-06-17&quot;:0.21},{&quot;2026-06-18&quot;:0.2},{&quot;2026-06-19&quot;:0.19},{&quot;2026-06-20&quot;:0.2},{&quot;2026-06-21&quot;:0.21},{&quot;2026-06-22&quot;:0.23},{&quot;2026-06-24&quot;:0.24},{&quot;2026-06-25&quot;:0.23},{&quot;2026-06-26&quot;:0.22},{&quot;2026-06-27&quot;:0.21},{&quot;2026-06-28&quot;:0.22},{&quot;2026-06-29&quot;:0.2},{&quot;2026-06-30&quot;:0.24},{&quot;2026-07-01&quot;:0.25},{&quot;2026-07-02&quot;:0.25},{&quot;2026-07-03&quot;:0.22},{&quot;2026-07-04&quot;:0.23},{&quot;2026-07-05&quot;:0.25},{&quot;2026-07-06&quot;:0.24},{&quot;2026-07-07&quot;:0.23},{&quot;2026-07-08&quot;:0.23},{&quot;2026-07-09&quot;:0.23},{&quot;2026-07-10&quot;:0.27},{&quot;2026-07-11&quot;:0.3},{&quot;2026-07-12&quot;:0.31},{&quot;2026-07-13&quot;:0.27},{&quot;2026-07-14&quot;:0.26},{&quot;2026-07-15&quot;:0.26},{&quot;2026-07-16&quot;:0.2},{&quot;2026-07-17&quot;:0.19},{&quot;2026-07-18&quot;:0.23},{&quot;2026-07-19&quot;:0.24},{&quot;2026-07-20&quot;:0.27},{&quot;2026-07-21&quot;:0.26},{&quot;2026-07-23&quot;:0.28},{&quot;2026-07-25&quot;:0.29},{&quot;2026-07-26&quot;:0.25},{&quot;2026-07-27&quot;:0.24},{&quot;2026-07-29&quot;:0.23},{&quot;2026-07-30&quot;:0.2},{&quot;2026-07-31&quot;:0.16},{&quot;2026-08-01&quot;:0.18},{&quot;2026-08-02&quot;:0.17},{&quot;2026-08-03&quot;:0.18},{&quot;2026-08-04&quot;:0.19},{&quot;2026-08-05&quot;:0.22},{&quot;2026-08-07&quot;:0.21},{&quot;2026-08-08&quot;:0.22},{&quot;2026-08-09&quot;:0.21},{&quot;2026-08-10&quot;:0.22},{&quot;2026-08-11&quot;:0.22},{&quot;2026-08-12&quot;:0.21},{&quot;2026-08-13&quot;:0.21},{&quot;2026-08-14&quot;:0.2},{&quot;2026-08-15&quot;:0.22},{&quot;2026-08-16&quot;:0.25},{&quot;2026-08-17&quot;:0.22},{&quot;2026-08-18&quot;:0.22},{&quot;2026-08-19&quot;:0.19},{&quot;2026-08-20&quot;:0.19},{&quot;2026-08-21&quot;:0.22},{&quot;2026-08-22&quot;:0.21},{&quot;2026-08-23&quot;:0.21},{&quot;2026-08-24&quot;:0.21},{&quot;2026-08-25&quot;:0.21},{&quot;2026-08-26&quot;:0.22},{&quot;2026-08-27&quot;:0.22},{&quot;2026-08-28&quot;:0.25},{&quot;2026-08-29&quot;:0.25},{&quot;2026-08-30&quot;:0.23},{&quot;2026-08-31&quot;:0.24},{&quot;2026-09-01&quot;:0.24},{&quot;2026-09-02&quot;:0.21},{&quot;2026-09-03&quot;:0.2},{&quot;2026-09-04&quot;:0.22},{&quot;2026-09-05&quot;:0.23},{&quot;2026-09-06&quot;:0.21},{&quot;2026-09-07&quot;:0.22},{&quot;2026-09-08&quot;:0.22},{&quot;2026-09-09&quot;:0.23},{&quot;2026-09-10&quot;:0.22},{&quot;2026-09-11&quot;:0.24}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="95233"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fin ss-common ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Island
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Basic Land — Island
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            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">
              ↓
              14%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.25
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Island" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/e/e/eeecf096-87dd-4dcb-953f-700445bf3f3a.jpg?1783906542" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Island
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            common
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Basic Land — Island</span>
        </div>

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Island" src="https://cards.scryfall.io/large/front/e/e/eeecf096-87dd-4dcb-953f-700445bf3f3a.jpg?1783906542" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            2
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.25
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  14%
                </span>
            </div>
          </div>

          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Foil</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $0.39
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  18%
                </span>
            </div>
          </div>
      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.10</span>
              <span class="text-xs text-grey-text">Credit: $0.13</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:0.35},{&quot;2026-06-14&quot;:0.36},{&quot;2026-06-15&quot;:0.33},{&quot;2026-06-16&quot;:0.34},{&quot;2026-06-17&quot;:0.37},{&quot;2026-06-18&quot;:0.38},{&quot;2026-06-19&quot;:0.4},{&quot;2026-06-20&quot;:0.41},{&quot;2026-06-21&quot;:0.4},{&quot;2026-06-22&quot;:0.41},{&quot;2026-06-23&quot;:0.39},{&quot;2026-06-24&quot;:0.39},{&quot;2026-06-25&quot;:0.41},{&quot;2026-06-26&quot;:0.42},{&quot;2026-06-27&quot;:0.39},{&quot;2026-06-28&quot;:0.38},{&quot;2026-06-29&quot;:0.38},{&quot;2026-06-30&quot;:0.37},{&quot;2026-07-01&quot;:0.36},{&quot;2026-07-02&quot;:0.36},{&quot;2026-07-03&quot;:0.34},{&quot;2026-07-04&quot;:0.38},{&quot;2026-07-05&quot;:0.38},{&quot;2026-07-06&quot;:0.38},{&quot;2026-07-07&quot;:0.38},{&quot;2026-07-08&quot;:0.37},{&quot;2026-07-09&quot;:0.39},{&quot;2026-07-10&quot;:0.39},{&quot;2026-07-11&quot;:0.39},{&quot;2026-07-12&quot;:0.4},{&quot;2026-07-13&quot;:0.39},{&quot;2026-07-14&quot;:0.39},{&quot;2026-07-15&quot;:0.37},{&quot;2026-07-16&quot;:0.39},{&quot;2026-07-17&quot;:0.38},{&quot;2026-07-18&quot;:0.37},{&quot;2026-07-19&quot;:0.36},{&quot;2026-07-20&quot;:0.37},{&quot;2026-07-21&quot;:0.43},{&quot;2026-07-22&quot;:0.42},{&quot;2026-07-23&quot;:0.42},{&quot;2026-07-24&quot;:0.41},{&quot;2026-07-25&quot;:0.41},{&quot;2026-07-26&quot;:0.35},{&quot;2026-07-27&quot;:0.38},{&quot;2026-07-28&quot;:0.41},{&quot;2026-07-29&quot;:0.42},{&quot;2026-07-30&quot;:0.42},{&quot;2026-07-31&quot;:0.36},{&quot;2026-08-01&quot;:0.36},{&quot;2026-08-02&quot;:0.34},{&quot;2026-08-03&quot;:0.39},{&quot;2026-08-04&quot;:0.38},{&quot;2026-08-05&quot;:0.43},{&quot;2026-08-07&quot;:0.41},{&quot;2026-08-08&quot;:0.39},{&quot;2026-08-09&quot;:0.41},{&quot;2026-08-10&quot;:0.41},{&quot;2026-08-11&quot;:0.39},{&quot;2026-08-12&quot;:0.4},{&quot;2026-08-13&quot;:0.41},{&quot;2026-08-14&quot;:0.38},{&quot;2026-08-15&quot;:0.37},{&quot;2026-08-16&quot;:0.33},{&quot;2026-08-17&quot;:0.33},{&quot;2026-08-18&quot;:0.32},{&quot;2026-08-19&quot;:0.29},{&quot;2026-08-20&quot;:0.29},{&quot;2026-08-21&quot;:0.32},{&quot;2026-08-22&quot;:0.32},{&quot;2026-08-23&quot;:0.34},{&quot;2026-08-24&quot;:0.37},{&quot;2026-08-25&quot;:0.38},{&quot;2026-08-26&quot;:0.39},{&quot;2026-08-27&quot;:0.38},{&quot;2026-08-28&quot;:0.39},{&quot;2026-08-29&quot;:0.39},{&quot;2026-08-30&quot;:0.35},{&quot;2026-08-31&quot;:0.36},{&quot;2026-09-01&quot;:0.35},{&quot;2026-09-02&quot;:0.34},{&quot;2026-09-03&quot;:0.37},{&quot;2026-09-04&quot;:0.34},{&quot;2026-09-05&quot;:0.33},{&quot;2026-09-06&quot;:0.35},{&quot;2026-09-07&quot;:0.35},{&quot;2026-09-08&quot;:0.37},{&quot;2026-09-09&quot;:0.38},{&quot;2026-09-10&quot;:0.37},{&quot;2026-09-11&quot;:0.39}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.33},{&quot;2026-06-14&quot;:0.33},{&quot;2026-06-15&quot;:0.28},{&quot;2026-06-16&quot;:0.28},{&quot;2026-06-17&quot;:0.28},{&quot;2026-06-18&quot;:0.28},{&quot;2026-06-19&quot;:0.29},{&quot;2026-06-20&quot;:0.3},{&quot;2026-06-21&quot;:0.3},{&quot;2026-06-22&quot;:0.3},{&quot;2026-06-23&quot;:0.32},{&quot;2026-06-24&quot;:0.33},{&quot;2026-06-25&quot;:0.33},{&quot;2026-06-26&quot;:0.32},{&quot;2026-06-27&quot;:0.32},{&quot;2026-06-28&quot;:0.28},{&quot;2026-06-29&quot;:0.29},{&quot;2026-06-30&quot;:0.28},{&quot;2026-07-01&quot;:0.28},{&quot;2026-07-02&quot;:0.3},{&quot;2026-07-03&quot;:0.33},{&quot;2026-07-04&quot;:0.34},{&quot;2026-07-05&quot;:0.32},{&quot;2026-07-06&quot;:0.3},{&quot;2026-07-07&quot;:0.3},{&quot;2026-07-08&quot;:0.28},{&quot;2026-07-09&quot;:0.28},{&quot;2026-07-10&quot;:0.3},{&quot;2026-07-11&quot;:0.31},{&quot;2026-07-12&quot;:0.34},{&quot;2026-07-13&quot;:0.3},{&quot;2026-07-14&quot;:0.27},{&quot;2026-07-15&quot;:0.29},{&quot;2026-07-16&quot;:0.27},{&quot;2026-07-17&quot;:0.3},{&quot;2026-07-18&quot;:0.3},{&quot;2026-07-19&quot;:0.31},{&quot;2026-07-20&quot;:0.34},{&quot;2026-07-21&quot;:0.32},{&quot;2026-07-22&quot;:0.31},{&quot;2026-07-23&quot;:0.31},{&quot;2026-07-24&quot;:0.3},{&quot;2026-07-25&quot;:0.29},{&quot;2026-07-26&quot;:0.26},{&quot;2026-07-27&quot;:0.23},{&quot;2026-07-28&quot;:0.24},{&quot;2026-07-29&quot;:0.25},{&quot;2026-07-30&quot;:0.29},{&quot;2026-07-31&quot;:0.29},{&quot;2026-08-01&quot;:0.29},{&quot;2026-08-02&quot;:0.28},{&quot;2026-08-03&quot;:0.29},{&quot;2026-08-04&quot;:0.27},{&quot;2026-08-05&quot;:0.29},{&quot;2026-08-07&quot;:0.31},{&quot;2026-08-08&quot;:0.27},{&quot;2026-08-09&quot;:0.26},{&quot;2026-08-10&quot;:0.23},{&quot;2026-08-11&quot;:0.25},{&quot;2026-08-12&quot;:0.25},{&quot;2026-08-13&quot;:0.25},{&quot;2026-08-14&quot;:0.3},{&quot;2026-08-15&quot;:0.31},{&quot;2026-08-16&quot;:0.3},{&quot;2026-08-17&quot;:0.29},{&quot;2026-08-18&quot;:0.27},{&quot;2026-08-19&quot;:0.29},{&quot;2026-08-20&quot;:0.29},{&quot;2026-08-21&quot;:0.33},{&quot;2026-08-22&quot;:0.32},{&quot;2026-08-23&quot;:0.28},{&quot;2026-08-24&quot;:0.27},{&quot;2026-08-25&quot;:0.29},{&quot;2026-08-26&quot;:0.31},{&quot;2026-08-27&quot;:0.32},{&quot;2026-08-28&quot;:0.3},{&quot;2026-08-29&quot;:0.3},{&quot;2026-08-30&quot;:0.28},{&quot;2026-08-31&quot;:0.27},{&quot;2026-09-01&quot;:0.23},{&quot;2026-09-02&quot;:0.23},{&quot;2026-09-03&quot;:0.27},{&quot;2026-09-04&quot;:0.27},{&quot;2026-09-05&quot;:0.29},{&quot;2026-09-06&quot;:0.28},{&quot;2026-09-07&quot;:0.27},{&quot;2026-09-08&quot;:0.26},{&quot;2026-09-09&quot;:0.26},{&quot;2026-09-10&quot;:0.27},{&quot;2026-09-11&quot;:0.25}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="95225"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fin ss-common ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Plains
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Basic Land — Plains
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            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">
              ↑
              26%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.24
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Plains" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/d/9dd2d666-7c6b-48ce-93dc-c004ebdd1fe9.jpg?1783906546" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Plains
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            common
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Basic Land — Plains</span>
        </div>

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Plains" src="https://cards.scryfall.io/large/front/9/d/9dd2d666-7c6b-48ce-93dc-c004ebdd1fe9.jpg?1783906546" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.24
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  26%
                </span>
            </div>
          </div>

          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Foil</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $0.30
              </span>

            </div>
          </div>
      </div>


      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:0.3},{&quot;2026-06-14&quot;:0.28},{&quot;2026-06-15&quot;:0.28},{&quot;2026-06-16&quot;:0.29},{&quot;2026-06-17&quot;:0.3},{&quot;2026-06-18&quot;:0.29},{&quot;2026-06-19&quot;:0.28},{&quot;2026-06-20&quot;:0.3},{&quot;2026-06-21&quot;:0.31},{&quot;2026-06-22&quot;:0.32},{&quot;2026-06-23&quot;:0.32},{&quot;2026-06-24&quot;:0.34},{&quot;2026-06-25&quot;:0.32},{&quot;2026-06-26&quot;:0.37},{&quot;2026-06-27&quot;:0.35},{&quot;2026-06-28&quot;:0.37},{&quot;2026-06-29&quot;:0.39},{&quot;2026-06-30&quot;:0.42},{&quot;2026-07-01&quot;:0.39},{&quot;2026-07-02&quot;:0.37},{&quot;2026-07-03&quot;:0.35},{&quot;2026-07-04&quot;:0.35},{&quot;2026-07-05&quot;:0.35},{&quot;2026-07-06&quot;:0.33},{&quot;2026-07-07&quot;:0.33},{&quot;2026-07-08&quot;:0.34},{&quot;2026-07-09&quot;:0.33},{&quot;2026-07-10&quot;:0.36},{&quot;2026-07-11&quot;:0.36},{&quot;2026-07-12&quot;:0.36},{&quot;2026-07-13&quot;:0.36},{&quot;2026-07-14&quot;:0.36},{&quot;2026-07-15&quot;:0.34},{&quot;2026-07-16&quot;:0.35},{&quot;2026-07-17&quot;:0.36},{&quot;2026-07-18&quot;:0.36},{&quot;2026-07-19&quot;:0.34},{&quot;2026-07-20&quot;:0.34},{&quot;2026-07-21&quot;:0.36},{&quot;2026-07-22&quot;:0.36},{&quot;2026-07-23&quot;:0.37},{&quot;2026-07-24&quot;:0.35},{&quot;2026-07-25&quot;:0.34},{&quot;2026-07-26&quot;:0.35},{&quot;2026-07-27&quot;:0.34},{&quot;2026-07-28&quot;:0.33},{&quot;2026-07-29&quot;:0.28},{&quot;2026-07-30&quot;:0.28},{&quot;2026-07-31&quot;:0.25},{&quot;2026-08-01&quot;:0.25},{&quot;2026-08-02&quot;:0.25},{&quot;2026-08-03&quot;:0.26},{&quot;2026-08-04&quot;:0.25},{&quot;2026-08-05&quot;:0.28},{&quot;2026-08-07&quot;:0.27},{&quot;2026-08-08&quot;:0.27},{&quot;2026-08-09&quot;:0.27},{&quot;2026-08-10&quot;:0.27},{&quot;2026-08-11&quot;:0.26},{&quot;2026-08-12&quot;:0.27},{&quot;2026-08-13&quot;:0.26},{&quot;2026-08-14&quot;:0.26},{&quot;2026-08-15&quot;:0.25},{&quot;2026-08-16&quot;:0.26},{&quot;2026-08-17&quot;:0.27},{&quot;2026-08-18&quot;:0.27},{&quot;2026-08-19&quot;:0.25},{&quot;2026-08-20&quot;:0.24},{&quot;2026-08-21&quot;:0.26},{&quot;2026-08-22&quot;:0.28},{&quot;2026-08-23&quot;:0.3},{&quot;2026-08-24&quot;:0.33},{&quot;2026-08-25&quot;:0.34},{&quot;2026-08-26&quot;:0.37},{&quot;2026-08-27&quot;:0.32},{&quot;2026-08-28&quot;:0.33},{&quot;2026-08-29&quot;:0.33},{&quot;2026-08-30&quot;:0.31},{&quot;2026-08-31&quot;:0.29},{&quot;2026-09-01&quot;:0.3},{&quot;2026-09-02&quot;:0.29},{&quot;2026-09-03&quot;:0.29},{&quot;2026-09-04&quot;:0.29},{&quot;2026-09-05&quot;:0.3},{&quot;2026-09-06&quot;:0.28},{&quot;2026-09-07&quot;:0.28},{&quot;2026-09-08&quot;:0.28},{&quot;2026-09-09&quot;:0.31},{&quot;2026-09-10&quot;:0.3},{&quot;2026-09-11&quot;:0.3}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.22},{&quot;2026-06-14&quot;:0.25},{&quot;2026-06-15&quot;:0.22},{&quot;2026-06-16&quot;:0.22},{&quot;2026-06-17&quot;:0.23},{&quot;2026-06-18&quot;:0.24},{&quot;2026-06-19&quot;:0.25},{&quot;2026-06-20&quot;:0.26},{&quot;2026-06-21&quot;:0.27},{&quot;2026-06-22&quot;:0.26},{&quot;2026-06-23&quot;:0.25},{&quot;2026-06-24&quot;:0.26},{&quot;2026-06-25&quot;:0.25},{&quot;2026-06-26&quot;:0.25},{&quot;2026-06-27&quot;:0.25},{&quot;2026-06-28&quot;:0.28},{&quot;2026-06-29&quot;:0.27},{&quot;2026-06-30&quot;:0.27},{&quot;2026-07-01&quot;:0.26},{&quot;2026-07-02&quot;:0.25},{&quot;2026-07-03&quot;:0.2},{&quot;2026-07-04&quot;:0.2},{&quot;2026-07-05&quot;:0.19},{&quot;2026-07-06&quot;:0.23},{&quot;2026-07-07&quot;:0.28},{&quot;2026-07-08&quot;:0.25},{&quot;2026-07-09&quot;:0.24},{&quot;2026-07-10&quot;:0.25},{&quot;2026-07-11&quot;:0.24},{&quot;2026-07-12&quot;:0.26},{&quot;2026-07-13&quot;:0.27},{&quot;2026-07-14&quot;:0.27},{&quot;2026-07-15&quot;:0.28},{&quot;2026-07-16&quot;:0.25},{&quot;2026-07-17&quot;:0.25},{&quot;2026-07-18&quot;:0.23},{&quot;2026-07-19&quot;:0.24},{&quot;2026-07-20&quot;:0.25},{&quot;2026-07-21&quot;:0.22},{&quot;2026-07-22&quot;:0.23},{&quot;2026-07-23&quot;:0.24},{&quot;2026-07-24&quot;:0.24},{&quot;2026-07-25&quot;:0.29},{&quot;2026-07-26&quot;:0.27},{&quot;2026-07-27&quot;:0.25},{&quot;2026-07-28&quot;:0.25},{&quot;2026-07-29&quot;:0.21},{&quot;2026-07-30&quot;:0.16},{&quot;2026-07-31&quot;:0.15},{&quot;2026-08-01&quot;:0.15},{&quot;2026-08-02&quot;:0.16},{&quot;2026-08-03&quot;:0.18},{&quot;2026-08-04&quot;:0.18},{&quot;2026-08-05&quot;:0.2},{&quot;2026-08-07&quot;:0.22},{&quot;2026-08-08&quot;:0.23},{&quot;2026-08-09&quot;:0.22},{&quot;2026-08-10&quot;:0.17},{&quot;2026-08-11&quot;:0.17},{&quot;2026-08-12&quot;:0.17},{&quot;2026-08-13&quot;:0.15},{&quot;2026-08-14&quot;:0.13},{&quot;2026-08-15&quot;:0.18},{&quot;2026-08-16&quot;:0.22},{&quot;2026-08-17&quot;:0.21},{&quot;2026-08-18&quot;:0.23},{&quot;2026-08-19&quot;:0.21},{&quot;2026-08-20&quot;:0.25},{&quot;2026-08-21&quot;:0.24},{&quot;2026-08-22&quot;:0.25},{&quot;2026-08-23&quot;:0.25},{&quot;2026-08-24&quot;:0.24},{&quot;2026-08-25&quot;:0.22},{&quot;2026-08-26&quot;:0.24},{&quot;2026-08-27&quot;:0.24},{&quot;2026-08-28&quot;:0.26},{&quot;2026-08-29&quot;:0.26},{&quot;2026-08-30&quot;:0.24},{&quot;2026-08-31&quot;:0.23},{&quot;2026-09-01&quot;:0.19},{&quot;2026-09-02&quot;:0.21},{&quot;2026-09-03&quot;:0.21},{&quot;2026-09-04&quot;:0.21},{&quot;2026-09-05&quot;:0.19},{&quot;2026-09-06&quot;:0.19},{&quot;2026-09-07&quot;:0.19},{&quot;2026-09-08&quot;:0.22},{&quot;2026-09-09&quot;:0.21},{&quot;2026-09-10&quot;:0.22},{&quot;2026-09-11&quot;:0.24}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="92995"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tdm ss-common ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Dispelling Exhale
        </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">
              ↑
              5%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.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="Dispelling Exhale" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/c/1c9af3f1-711e-42ae-803a-1100eba3fb13.jpg?1743204126" />

        <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">
            Dispelling Exhale
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            common
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Instant</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Dispelling Exhale" src="https://cards.scryfall.io/large/front/1/c/1c9af3f1-711e-42ae-803a-1100eba3fb13.jpg?1743204126" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.20
              </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">
                $0.32
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  3%
                </span>
            </div>
          </div>
      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.02</span>
              <span class="text-xs text-grey-text">Credit: $0.03</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:0.31},{&quot;2026-06-14&quot;:0.31},{&quot;2026-06-15&quot;:0.31},{&quot;2026-06-16&quot;:0.31},{&quot;2026-06-17&quot;:0.29},{&quot;2026-06-18&quot;:0.29},{&quot;2026-06-19&quot;:0.29},{&quot;2026-06-20&quot;:0.29},{&quot;2026-06-21&quot;:0.29},{&quot;2026-06-22&quot;:0.27},{&quot;2026-06-23&quot;:0.27},{&quot;2026-06-24&quot;:0.27},{&quot;2026-06-25&quot;:0.27},{&quot;2026-06-26&quot;:0.27},{&quot;2026-06-27&quot;:0.26},{&quot;2026-06-28&quot;:0.26},{&quot;2026-06-29&quot;:0.26},{&quot;2026-06-30&quot;:0.26},{&quot;2026-07-01&quot;:0.26},{&quot;2026-07-02&quot;:0.25},{&quot;2026-07-03&quot;:0.25},{&quot;2026-07-04&quot;:0.26},{&quot;2026-07-05&quot;:0.26},{&quot;2026-07-06&quot;:0.26},{&quot;2026-07-07&quot;:0.24},{&quot;2026-07-08&quot;:0.24},{&quot;2026-07-09&quot;:0.24},{&quot;2026-07-10&quot;:0.24},{&quot;2026-07-11&quot;:0.24},{&quot;2026-07-12&quot;:0.24},{&quot;2026-07-13&quot;:0.24},{&quot;2026-07-14&quot;:0.24},{&quot;2026-07-15&quot;:0.24},{&quot;2026-07-16&quot;:0.24},{&quot;2026-07-17&quot;:0.24},{&quot;2026-07-18&quot;:0.24},{&quot;2026-07-19&quot;:0.24},{&quot;2026-07-20&quot;:0.26},{&quot;2026-07-21&quot;:0.26},{&quot;2026-07-22&quot;:0.25},{&quot;2026-07-23&quot;:0.25},{&quot;2026-07-24&quot;:0.26},{&quot;2026-07-25&quot;:0.26},{&quot;2026-07-26&quot;:0.27},{&quot;2026-07-27&quot;:0.27},{&quot;2026-07-28&quot;:0.27},{&quot;2026-07-29&quot;:0.27},{&quot;2026-07-30&quot;:0.27},{&quot;2026-07-31&quot;:0.27},{&quot;2026-08-01&quot;:0.27},{&quot;2026-08-02&quot;:0.27},{&quot;2026-08-03&quot;:0.29},{&quot;2026-08-04&quot;:0.29},{&quot;2026-08-05&quot;:0.29},{&quot;2026-08-07&quot;:0.29},{&quot;2026-08-08&quot;:0.29},{&quot;2026-08-09&quot;:0.29},{&quot;2026-08-10&quot;:0.29},{&quot;2026-08-11&quot;:0.3},{&quot;2026-08-12&quot;:0.3},{&quot;2026-08-13&quot;:0.3},{&quot;2026-08-14&quot;:0.32},{&quot;2026-08-15&quot;:0.32},{&quot;2026-08-16&quot;:0.33},{&quot;2026-08-17&quot;:0.33},{&quot;2026-08-18&quot;:0.33},{&quot;2026-08-19&quot;:0.33},{&quot;2026-08-20&quot;:0.34},{&quot;2026-08-21&quot;:0.33},{&quot;2026-08-22&quot;:0.33},{&quot;2026-08-23&quot;:0.33},{&quot;2026-08-24&quot;:0.33},{&quot;2026-08-25&quot;:0.33},{&quot;2026-08-26&quot;:0.33},{&quot;2026-08-27&quot;:0.33},{&quot;2026-08-28&quot;:0.33},{&quot;2026-08-29&quot;:0.33},{&quot;2026-08-30&quot;:0.34},{&quot;2026-08-31&quot;:0.34},{&quot;2026-09-01&quot;:0.34},{&quot;2026-09-02&quot;:0.34},{&quot;2026-09-03&quot;:0.34},{&quot;2026-09-04&quot;:0.33},{&quot;2026-09-05&quot;:0.33},{&quot;2026-09-06&quot;:0.33},{&quot;2026-09-07&quot;:0.33},{&quot;2026-09-08&quot;:0.33},{&quot;2026-09-09&quot;:0.33},{&quot;2026-09-10&quot;:0.33},{&quot;2026-09-11&quot;:0.32}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.24},{&quot;2026-06-14&quot;:0.21},{&quot;2026-06-15&quot;:0.21},{&quot;2026-06-16&quot;:0.21},{&quot;2026-06-17&quot;:0.22},{&quot;2026-06-18&quot;:0.22},{&quot;2026-06-19&quot;:0.22},{&quot;2026-06-20&quot;:0.21},{&quot;2026-06-21&quot;:0.19},{&quot;2026-06-22&quot;:0.19},{&quot;2026-06-23&quot;:0.18},{&quot;2026-06-24&quot;:0.17},{&quot;2026-06-25&quot;:0.17},{&quot;2026-06-26&quot;:0.17},{&quot;2026-06-27&quot;:0.16},{&quot;2026-06-28&quot;:0.16},{&quot;2026-06-29&quot;:0.19},{&quot;2026-06-30&quot;:0.19},{&quot;2026-07-01&quot;:0.18},{&quot;2026-07-02&quot;:0.18},{&quot;2026-07-03&quot;:0.19},{&quot;2026-07-04&quot;:0.19},{&quot;2026-07-05&quot;:0.18},{&quot;2026-07-06&quot;:0.18},{&quot;2026-07-07&quot;:0.18},{&quot;2026-07-08&quot;:0.19},{&quot;2026-07-09&quot;:0.22},{&quot;2026-07-10&quot;:0.21},{&quot;2026-07-11&quot;:0.21},{&quot;2026-07-12&quot;:0.21},{&quot;2026-07-13&quot;:0.19},{&quot;2026-07-14&quot;:0.19},{&quot;2026-07-15&quot;:0.19},{&quot;2026-07-16&quot;:0.19},{&quot;2026-07-17&quot;:0.19},{&quot;2026-07-18&quot;:0.19},{&quot;2026-07-19&quot;:0.19},{&quot;2026-07-20&quot;:0.19},{&quot;2026-07-21&quot;:0.2},{&quot;2026-07-22&quot;:0.2},{&quot;2026-07-23&quot;:0.21},{&quot;2026-07-24&quot;:0.22},{&quot;2026-07-25&quot;:0.21},{&quot;2026-07-26&quot;:0.22},{&quot;2026-07-27&quot;:0.22},{&quot;2026-07-28&quot;:0.22},{&quot;2026-07-29&quot;:0.23},{&quot;2026-07-30&quot;:0.23},{&quot;2026-07-31&quot;:0.23},{&quot;2026-08-01&quot;:0.23},{&quot;2026-08-02&quot;:0.24},{&quot;2026-08-03&quot;:0.26},{&quot;2026-08-04&quot;:0.26},{&quot;2026-08-05&quot;:0.26},{&quot;2026-08-07&quot;:0.26},{&quot;2026-08-08&quot;:0.26},{&quot;2026-08-09&quot;:0.26},{&quot;2026-08-10&quot;:0.23},{&quot;2026-08-11&quot;:0.25},{&quot;2026-08-12&quot;:0.25},{&quot;2026-08-13&quot;:0.25},{&quot;2026-08-14&quot;:0.24},{&quot;2026-08-15&quot;:0.24},{&quot;2026-08-16&quot;:0.24},{&quot;2026-08-17&quot;:0.24},{&quot;2026-08-18&quot;:0.24},{&quot;2026-08-19&quot;:0.24},{&quot;2026-08-20&quot;:0.25},{&quot;2026-08-21&quot;:0.24},{&quot;2026-08-22&quot;:0.24},{&quot;2026-08-23&quot;:0.21},{&quot;2026-08-24&quot;:0.2},{&quot;2026-08-25&quot;:0.19},{&quot;2026-08-26&quot;:0.19},{&quot;2026-08-27&quot;:0.19},{&quot;2026-08-28&quot;:0.19},{&quot;2026-08-29&quot;:0.19},{&quot;2026-08-30&quot;:0.19},{&quot;2026-08-31&quot;:0.19},{&quot;2026-09-01&quot;:0.18},{&quot;2026-09-02&quot;:0.18},{&quot;2026-09-03&quot;:0.19},{&quot;2026-09-04&quot;:0.19},{&quot;2026-09-05&quot;:0.19},{&quot;2026-09-06&quot;:0.2},{&quot;2026-09-07&quot;:0.19},{&quot;2026-09-08&quot;:0.19},{&quot;2026-09-09&quot;:0.18},{&quot;2026-09-10&quot;:0.2},{&quot;2026-09-11&quot;:0.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="95227"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fin ss-common ss-fw ss-2x flex-shrink-0"></i>

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Plains
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Basic Land — Plains
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-100 text-badge-text">
              ↓
              5%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.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="Plains" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/e/6/e623b058-76d2-476b-9ee6-82807f7992c3.jpg?1783906544" />

        <span class="text-xs text-accent-50 mt-1 block">Tap to enlarge</span>
      </button>

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Plains
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            common
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Basic Land — Plains</span>
        </div>

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Plains" src="https://cards.scryfall.io/large/front/e/6/e623b058-76d2-476b-9ee6-82807f7992c3.jpg?1783906544" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.20
              </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">
                $0.30
              </span>

            </div>
          </div>
      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.03</span>
              <span class="text-xs text-grey-text">Credit: $0.04</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-11&quot;:0.38},{&quot;2026-06-12&quot;:0.38},{&quot;2026-06-13&quot;:0.37},{&quot;2026-06-14&quot;:0.38},{&quot;2026-06-15&quot;:0.38},{&quot;2026-06-16&quot;:0.35},{&quot;2026-06-17&quot;:0.33},{&quot;2026-06-18&quot;:0.31},{&quot;2026-06-19&quot;:0.3},{&quot;2026-06-20&quot;:0.29},{&quot;2026-06-21&quot;:0.28},{&quot;2026-06-22&quot;:0.28},{&quot;2026-06-23&quot;:0.29},{&quot;2026-06-24&quot;:0.3},{&quot;2026-06-25&quot;:0.33},{&quot;2026-06-26&quot;:0.35},{&quot;2026-06-27&quot;:0.36},{&quot;2026-06-28&quot;:0.36},{&quot;2026-06-29&quot;:0.38},{&quot;2026-06-30&quot;:0.38},{&quot;2026-07-01&quot;:0.37},{&quot;2026-07-02&quot;:0.37},{&quot;2026-07-03&quot;:0.36},{&quot;2026-07-04&quot;:0.36},{&quot;2026-07-05&quot;:0.36},{&quot;2026-07-06&quot;:0.34},{&quot;2026-07-07&quot;:0.34},{&quot;2026-07-08&quot;:0.33},{&quot;2026-07-09&quot;:0.34},{&quot;2026-07-10&quot;:0.36},{&quot;2026-07-11&quot;:0.37},{&quot;2026-07-12&quot;:0.37},{&quot;2026-07-13&quot;:0.33},{&quot;2026-07-14&quot;:0.33},{&quot;2026-07-15&quot;:0.33},{&quot;2026-07-16&quot;:0.34},{&quot;2026-07-17&quot;:0.35},{&quot;2026-07-18&quot;:0.35},{&quot;2026-07-19&quot;:0.35},{&quot;2026-07-20&quot;:0.39},{&quot;2026-07-21&quot;:0.37},{&quot;2026-07-23&quot;:0.37},{&quot;2026-07-25&quot;:0.34},{&quot;2026-07-26&quot;:0.34},{&quot;2026-07-27&quot;:0.3},{&quot;2026-07-28&quot;:0.32},{&quot;2026-07-29&quot;:0.31},{&quot;2026-07-30&quot;:0.31},{&quot;2026-07-31&quot;:0.29},{&quot;2026-08-01&quot;:0.29},{&quot;2026-08-02&quot;:0.32},{&quot;2026-08-03&quot;:0.32},{&quot;2026-08-04&quot;:0.33},{&quot;2026-08-05&quot;:0.33},{&quot;2026-08-07&quot;:0.37},{&quot;2026-08-08&quot;:0.36},{&quot;2026-08-09&quot;:0.36},{&quot;2026-08-10&quot;:0.37},{&quot;2026-08-11&quot;:0.35},{&quot;2026-08-12&quot;:0.34},{&quot;2026-08-13&quot;:0.34},{&quot;2026-08-14&quot;:0.31},{&quot;2026-08-15&quot;:0.31},{&quot;2026-08-16&quot;:0.29},{&quot;2026-08-17&quot;:0.29},{&quot;2026-08-18&quot;:0.31},{&quot;2026-08-19&quot;:0.25},{&quot;2026-08-20&quot;:0.25},{&quot;2026-08-21&quot;:0.28},{&quot;2026-08-22&quot;:0.28},{&quot;2026-08-23&quot;:0.34},{&quot;2026-08-24&quot;:0.34},{&quot;2026-08-25&quot;:0.35},{&quot;2026-08-26&quot;:0.3},{&quot;2026-08-27&quot;:0.3},{&quot;2026-08-28&quot;:0.31},{&quot;2026-08-29&quot;:0.31},{&quot;2026-08-30&quot;:0.28},{&quot;2026-08-31&quot;:0.27},{&quot;2026-09-01&quot;:0.27},{&quot;2026-09-02&quot;:0.3},{&quot;2026-09-03&quot;:0.3},{&quot;2026-09-04&quot;:0.3},{&quot;2026-09-05&quot;:0.3},{&quot;2026-09-06&quot;:0.3},{&quot;2026-09-07&quot;:0.28},{&quot;2026-09-08&quot;:0.29},{&quot;2026-09-09&quot;:0.29},{&quot;2026-09-10&quot;:0.29},{&quot;2026-09-11&quot;:0.3}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:0.25},{&quot;2026-06-12&quot;:0.26},{&quot;2026-06-13&quot;:0.3},{&quot;2026-06-14&quot;:0.29},{&quot;2026-06-15&quot;:0.26},{&quot;2026-06-16&quot;:0.24},{&quot;2026-06-17&quot;:0.23},{&quot;2026-06-18&quot;:0.29},{&quot;2026-06-19&quot;:0.33},{&quot;2026-06-20&quot;:0.35},{&quot;2026-06-21&quot;:0.31},{&quot;2026-06-22&quot;:0.27},{&quot;2026-06-23&quot;:0.25},{&quot;2026-06-24&quot;:0.23},{&quot;2026-06-25&quot;:0.26},{&quot;2026-06-26&quot;:0.26},{&quot;2026-06-27&quot;:0.25},{&quot;2026-06-28&quot;:0.28},{&quot;2026-06-29&quot;:0.29},{&quot;2026-06-30&quot;:0.3},{&quot;2026-07-01&quot;:0.27},{&quot;2026-07-02&quot;:0.25},{&quot;2026-07-03&quot;:0.25},{&quot;2026-07-04&quot;:0.25},{&quot;2026-07-05&quot;:0.24},{&quot;2026-07-06&quot;:0.25},{&quot;2026-07-07&quot;:0.28},{&quot;2026-07-08&quot;:0.29},{&quot;2026-07-09&quot;:0.28},{&quot;2026-07-10&quot;:0.28},{&quot;2026-07-11&quot;:0.28},{&quot;2026-07-12&quot;:0.28},{&quot;2026-07-13&quot;:0.24},{&quot;2026-07-14&quot;:0.24},{&quot;2026-07-15&quot;:0.22},{&quot;2026-07-16&quot;:0.21},{&quot;2026-07-17&quot;:0.2},{&quot;2026-07-18&quot;:0.22},{&quot;2026-07-19&quot;:0.22},{&quot;2026-07-20&quot;:0.23},{&quot;2026-07-21&quot;:0.22},{&quot;2026-07-23&quot;:0.22},{&quot;2026-07-25&quot;:0.3},{&quot;2026-07-26&quot;:0.26},{&quot;2026-07-27&quot;:0.26},{&quot;2026-07-28&quot;:0.26},{&quot;2026-07-29&quot;:0.24},{&quot;2026-07-30&quot;:0.2},{&quot;2026-07-31&quot;:0.2},{&quot;2026-08-01&quot;:0.18},{&quot;2026-08-02&quot;:0.21},{&quot;2026-08-03&quot;:0.22},{&quot;2026-08-04&quot;:0.23},{&quot;2026-08-05&quot;:0.23},{&quot;2026-08-07&quot;:0.24},{&quot;2026-08-08&quot;:0.26},{&quot;2026-08-09&quot;:0.24},{&quot;2026-08-10&quot;:0.21},{&quot;2026-08-11&quot;:0.22},{&quot;2026-08-12&quot;:0.23},{&quot;2026-08-13&quot;:0.22},{&quot;2026-08-14&quot;:0.23},{&quot;2026-08-15&quot;:0.22},{&quot;2026-08-16&quot;:0.24},{&quot;2026-08-17&quot;:0.23},{&quot;2026-08-18&quot;:0.24},{&quot;2026-08-19&quot;:0.23},{&quot;2026-08-20&quot;:0.23},{&quot;2026-08-21&quot;:0.29},{&quot;2026-08-22&quot;:0.28},{&quot;2026-08-23&quot;:0.28},{&quot;2026-08-24&quot;:0.27},{&quot;2026-08-25&quot;:0.26},{&quot;2026-08-26&quot;:0.27},{&quot;2026-08-27&quot;:0.27},{&quot;2026-08-28&quot;:0.29},{&quot;2026-08-29&quot;:0.29},{&quot;2026-08-30&quot;:0.29},{&quot;2026-08-31&quot;:0.27},{&quot;2026-09-01&quot;:0.27},{&quot;2026-09-02&quot;:0.22},{&quot;2026-09-03&quot;:0.23},{&quot;2026-09-04&quot;:0.23},{&quot;2026-09-05&quot;:0.21},{&quot;2026-09-06&quot;:0.2},{&quot;2026-09-07&quot;:0.18},{&quot;2026-09-08&quot;:0.2},{&quot;2026-09-09&quot;:0.21},{&quot;2026-09-10&quot;:0.2},{&quot;2026-09-11&quot;:0.2}]}"
        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 43 items</span></div>

      <div class="overflow-x-auto">
        <nav class="pagy series-nav" aria-label="Page"><a role="link" aria-disabled="true" aria-label="Previous">&lt;</a><a role="link" aria-disabled="true" aria-current="page">1</a><a role="link" aria-disabled="true" aria-label="Next">&gt;</a></nav>
      </div>
    </div>
</div>

<!-- Desktop Table View -->
<div class="hidden lg:block mb-24 overflow-x-auto border rounded-3xl border-highlight">
  <table class="min-w-full divide-y table-auto divide-background">
    <thead class="bg-background" data-controller="table-sort">
      <tr>
          <th
            class="
              py-3 pl-4 pr-0 text-xs font-normal tracking-wider text-left
              normal-case text-grey-text
            "
          >
            <a data-turbo-stream="true" data-action="click-&gt;table-sort#sort" class="flex items-center gap-1 hover:text-white" href="/load_collection?collection_id=51&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=51&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=51&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=51&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=51&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=51&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=51&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=51&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=51&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="11928"
          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">
              56
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-clb ss-mythic ss-fw ss-2x mr-4"></i>
              Ancient Silver Dragon


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Elder Dragon
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-6'></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">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $59.57

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $37.50
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.86
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="11928"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_11928" src="/boxset_card/11928?collection_id=51&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="11938"
          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">
              187
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-rare ss-fw ss-2x mr-4"></i>
              Jeska&#39;s Will


            </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-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $39.70

                    <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">
                $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">
                1.49
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="11938"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_11938" src="/boxset_card/11938?collection_id=51&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="28688"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              97
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fdn ss-mythic ss-fw ss-2x mr-4"></i>
              Twinflame Tyrant


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Dragon
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $26.03

                    <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.79
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="28688"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_28688" src="/boxset_card/28688?collection_id=51&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="80399"
          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">
              124
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-uma ss-mythic ss-fw ss-2x mr-4"></i>
              Balefire Dragon


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Dragon
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-5'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $19.25

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $13.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="80399"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_80399" src="/boxset_card/80399?collection_id=51&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="13807"
          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">
              664
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-clb ss-rare ss-fw ss-2x mr-4"></i>
              Astral Dragon


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Dragon
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-6'></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">
                  $18.26

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $12.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.42
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="13807"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_13807" src="/boxset_card/13807?collection_id=51&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12292"
          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">
              169
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-clb ss-rare ss-fw ss-2x mr-4"></i>
              Descent into Avernus


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Enchantment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $14.60

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $13.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.60
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="12292"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12292" src="/boxset_card/12292?collection_id=51&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="80463"
          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">
              147
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-uma ss-rare ss-fw ss-2x mr-4"></i>
              Seize the Day


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $14.60

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $5.25
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.50
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="80463"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_80463" src="/boxset_card/80463?collection_id=51&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="20401"
          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">
              145
            </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>
              Sneak Attack


            </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-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">
                  $12.04

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $8.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.12
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="20401"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_20401" src="/boxset_card/20401?collection_id=51&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="92680"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              246
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tdm ss-mythic ss-fw ss-2x mr-4"></i>
              Mox Jasper


            </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-0'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $11.53

                    <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">
                $7.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.40
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="92680"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_92680" src="/boxset_card/92680?collection_id=51&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="42361"
          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">
              413
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-neo ss-rare ss-fw ss-2x mr-4"></i>
              Eiganjo, Seat of the Empire


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $8.56

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $7.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.21
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="42361"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_42361" src="/boxset_card/42361?collection_id=51&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="40284"
          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">
              22
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-khc ss-rare ss-fw ss-2x mr-4"></i>
              Eerie Interlude


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $7.75

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $3.80
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.37
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="40284"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_40284" src="/boxset_card/40284?collection_id=51&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="28838"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              161
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fdn ss-mythic ss-fw ss-2x mr-4"></i>
              Omniscience


            </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-7'></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><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">
                  $6.16

                    <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">
                $3.80
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.72
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="28838"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_28838" src="/boxset_card/28838?collection_id=51&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="11926"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              183
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-mythic ss-fw ss-2x mr-4"></i>
              Hellkite Courser


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Dragon
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-4'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $6.09

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      30%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $2.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.65
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="11926"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_11926" src="/boxset_card/11926?collection_id=51&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="19389"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              410
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-dmu ss-mythic ss-fw ss-2x mr-4"></i>
              Shivan Devastator


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Dragon Hydra
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-x'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $5.87

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $4.40
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.21
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="19389"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_19389" src="/boxset_card/19389?collection_id=51&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="13895"
          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">
              626
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmm ss-uncommon ss-fw ss-2x mr-4"></i>
              Path to Exile


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $5.28

                    <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">
                $4.00
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.44
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="13895"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_13895" src="/boxset_card/13895?collection_id=51&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="74402"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              257
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-ltr ss-rare ss-fw ss-2x mr-4"></i>
              Mines of Moria


            </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">
                  $4.45

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      11%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $2.75
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.17
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="74402"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_74402" src="/boxset_card/74402?collection_id=51&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="28835"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              160
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fdn ss-uncommon ss-fw ss-2x mr-4"></i>
              An Offer You Can&#39;t Refuse


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $4.02

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      10%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $2.40
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.67
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="28835"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_28835" src="/boxset_card/28835?collection_id=51&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="93367"
          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-tdm ss-rare ss-fw ss-2x mr-4"></i>
              Maelstrom of the Spirit Dragon


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.61

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      37%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.15
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.19
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="93367"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_93367" src="/boxset_card/93367?collection_id=51&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="19294"
          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">
              380
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-dmu ss-rare ss-fw ss-2x mr-4"></i>
              Shivan Reef


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.90

                    <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">
                $1.80
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.12
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="19294"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_19294" src="/boxset_card/19294?collection_id=51&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="73070"
          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-brr ss-uncommon ss-fw ss-2x mr-4"></i>
              Swiftfoot Boots


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact — Equipment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.88

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      13%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $2.25
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.38
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="73070"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_73070" src="/boxset_card/73070?collection_id=51&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="49380"
          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-mh1 ss-uncommon ss-fw ss-2x mr-4"></i>
              Talisman of Creativity


            </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">
                  $2.85

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      17%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.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.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="49380"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_49380" src="/boxset_card/49380?collection_id=51&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="93228"
          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">
              187
            </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-rare ss-fw ss-2x mr-4"></i>
              Frostcliff Siege


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Enchantment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.34

                    <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">
                $1.80
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.13
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="93228"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_93228" src="/boxset_card/93228?collection_id=51&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="23643"
          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">
              32
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-dsk ss-rare ss-fw ss-2x mr-4"></i>
              Split Up


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-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">
                  $2.32

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      27%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.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.46
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="23643"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_23643" src="/boxset_card/23643?collection_id=51&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="18824"
          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">
              281
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-dmr ss-common ss-fw ss-2x mr-4"></i>
              Counterspell


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-u'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.25

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      6%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.80
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.70
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="18824"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_18824" src="/boxset_card/18824?collection_id=51&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="46433"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              258
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mom ss-mythic ss-fw ss-2x mr-4"></i>
              Zurgo and Ojutai


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Orc Dragon
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></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><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.86

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      4%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.60
            </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="46433"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_46433" src="/boxset_card/46433?collection_id=51&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="40532"
          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">
              104
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-khc ss-uncommon ss-fw ss-2x mr-4"></i>
              Sol Ring


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.83

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      5%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.35
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.46
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="40532"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_40532" src="/boxset_card/40532?collection_id=51&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="14164"
          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">
              780
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-clb ss-rare ss-fw ss-2x mr-4"></i>
              Blasphemous Act


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-8'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.53

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.62
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="14164"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_14164" src="/boxset_card/14164?collection_id=51&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="14193"
          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">
              790
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-clb ss-rare ss-fw ss-2x mr-4"></i>
              Drakuseth, Maw of Flames


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Dragon
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-4'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.39

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.52
            </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.34
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="14193"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_14193" src="/boxset_card/14193?collection_id=51&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="19174"
          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">
              400
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-dmr ss-rare ss-fw ss-2x mr-4"></i>
              Sulfur Falls


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.28

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.80
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.09
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="19174"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_19174" src="/boxset_card/19174?collection_id=51&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="91116"
          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">
              311
            </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-common ss-fw ss-2x mr-4"></i>
              Abrade


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-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">
                  $1.06

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      4%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.20
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.16
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="91116"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_91116" src="/boxset_card/91116?collection_id=51&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="40509"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              96
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-khc ss-common ss-fw ss-2x mr-4"></i>
              Arcane Signet


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.68

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      6%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.10
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.24
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="40509"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_40509" src="/boxset_card/40509?collection_id=51&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="18700"
          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">
              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-dmr ss-rare ss-fw ss-2x mr-4"></i>
              Clifftop Retreat


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.43

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.06
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.03
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="18700"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_18700" src="/boxset_card/18700?collection_id=51&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="95247"
          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">
              305
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fin ss-common ss-fw ss-2x mr-4"></i>
              Mountain


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Basic Land — Mountain
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.24

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      8%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.35

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      6%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.15
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.32
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="95247"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_95247" src="/boxset_card/95247?collection_id=51&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="93022"
          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-tdm ss-uncommon ss-fw ss-2x mr-4"></i>
              Spectral Denial


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-x'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.32

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      9%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.03
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.26
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="93022"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_93022" src="/boxset_card/93022?collection_id=51&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="95245"
          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">
              304
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fin ss-common ss-fw ss-2x mr-4"></i>
              Mountain


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Basic Land — Mountain
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.20

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      11%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.31

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      15%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.03
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.10
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.32
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="95245"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_95245" src="/boxset_card/95245?collection_id=51&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="95243"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              303
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fin ss-common ss-fw ss-2x mr-4"></i>
              Mountain


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Basic Land — Mountain
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.22

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.30

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      6%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.06
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.12
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.32
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="95243"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_95243" src="/boxset_card/95243?collection_id=51&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="95230"
          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-fin ss-common ss-fw ss-2x mr-4"></i>
              Island


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Basic Land — Island
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.29

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.16
            </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="95230"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_95230" src="/boxset_card/95230?collection_id=51&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="93282"
          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">
              215
            </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-rare ss-fw ss-2x mr-4"></i>
              Rediscover the Way


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Enchantment — Saga
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-u'></i><i class='no-tailwind ms ms-cost ml-0 ms-r'></i><i class='no-tailwind ms ms-cost ml-0 ms-w'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.27

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      7%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.03
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="93282"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_93282" src="/boxset_card/93282?collection_id=51&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="95229"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              296
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fin ss-common ss-fw ss-2x mr-4"></i>
              Plains


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Basic Land — Plains
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.26

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      13%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.12
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.31
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="95229"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_95229" src="/boxset_card/95229?collection_id=51&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="95233"
          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">
              298
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fin ss-common ss-fw ss-2x mr-4"></i>
              Island


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Basic Land — Island
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.25

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      14%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.10
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.92
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="95233"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_95233" src="/boxset_card/95233?collection_id=51&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="95225"
          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">
              294
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fin ss-common ss-fw ss-2x mr-4"></i>
              Plains


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Basic Land — Plains
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.24

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      26%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.31
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="95225"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_95225" src="/boxset_card/95225?collection_id=51&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="92995"
          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">
              41
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tdm ss-common ss-fw ss-2x mr-4"></i>
              Dispelling Exhale


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.20

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      5%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.02
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.12
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="92995"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_92995" src="/boxset_card/92995?collection_id=51&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="95227"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              295
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-fin ss-common ss-fw ss-2x mr-4"></i>
              Plains


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Basic Land — Plains
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.20

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      5%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.03
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.31
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="95227"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_95227" src="/boxset_card/95227?collection_id=51&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 43 items</span>
      <nav class="pagy series-nav" aria-label="Page"><a role="link" aria-disabled="true" aria-label="Previous">&lt;</a><a role="link" aria-disabled="true" aria-current="page">1</a><a role="link" aria-disabled="true" aria-label="Next">&gt;</a></nav>
    </div>
</div>

</template></turbo-stream>