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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Sword of Feast and Famine" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/a/0a469d00-1416-48dd-ad91-eb6f3fb4b42b.jpg?1783930066" />

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

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Sword of Feast and Famine
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Sword of Feast and Famine" src="https://cards.scryfall.io/large/front/0/a/0a469d00-1416-48dd-ad91-eb6f3fb4b42b.jpg?1783930066" />
    </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">
                $94.12
              </span>

            </div>
          </div>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:110.32},{&quot;2026-06-14&quot;:110.32},{&quot;2026-06-15&quot;:110.32},{&quot;2026-06-16&quot;:110.32},{&quot;2026-06-17&quot;:110.32},{&quot;2026-06-18&quot;:110.47},{&quot;2026-06-19&quot;:110.47},{&quot;2026-06-20&quot;:110.57},{&quot;2026-06-21&quot;:110.57},{&quot;2026-06-22&quot;:110.57},{&quot;2026-06-23&quot;:110.51},{&quot;2026-06-24&quot;:110.51},{&quot;2026-06-25&quot;:110.51},{&quot;2026-06-26&quot;:110.51},{&quot;2026-06-27&quot;:110.51},{&quot;2026-06-28&quot;:110.51},{&quot;2026-06-29&quot;:109.66},{&quot;2026-06-30&quot;:109.33},{&quot;2026-07-01&quot;:109.33},{&quot;2026-07-02&quot;:109.33},{&quot;2026-07-03&quot;:109.33},{&quot;2026-07-04&quot;:109.33},{&quot;2026-07-05&quot;:108.9},{&quot;2026-07-06&quot;:108.9},{&quot;2026-07-07&quot;:108.64},{&quot;2026-07-08&quot;:108.64},{&quot;2026-07-09&quot;:108.64},{&quot;2026-07-10&quot;:108.64},{&quot;2026-07-11&quot;:108.64},{&quot;2026-07-12&quot;:108.64},{&quot;2026-07-13&quot;:108.64},{&quot;2026-07-14&quot;:109.05},{&quot;2026-07-15&quot;:109.05},{&quot;2026-07-16&quot;:109.05},{&quot;2026-07-17&quot;:109.05},{&quot;2026-07-18&quot;:109.05},{&quot;2026-07-19&quot;:109.05},{&quot;2026-07-20&quot;:109.05},{&quot;2026-07-21&quot;:109.05},{&quot;2026-07-22&quot;:108.53},{&quot;2026-07-23&quot;:108.01},{&quot;2026-07-24&quot;:108.01},{&quot;2026-07-25&quot;:108.01},{&quot;2026-07-26&quot;:108.01},{&quot;2026-07-27&quot;:108.65},{&quot;2026-07-28&quot;:108.41},{&quot;2026-07-29&quot;:109.26},{&quot;2026-07-30&quot;:108.06},{&quot;2026-07-31&quot;:109.49},{&quot;2026-08-01&quot;:109.49},{&quot;2026-08-02&quot;:109.49},{&quot;2026-08-03&quot;:109.49},{&quot;2026-08-04&quot;:109.49},{&quot;2026-08-05&quot;:110.86},{&quot;2026-08-07&quot;:110.86},{&quot;2026-08-08&quot;:110.86},{&quot;2026-08-09&quot;:110.86},{&quot;2026-08-10&quot;:111.66},{&quot;2026-08-11&quot;:111.98},{&quot;2026-08-12&quot;:111.98},{&quot;2026-08-13&quot;:111.98},{&quot;2026-08-14&quot;:111.98},{&quot;2026-08-15&quot;:111.98},{&quot;2026-08-16&quot;:112.94},{&quot;2026-08-17&quot;:112.94},{&quot;2026-08-18&quot;:112.94},{&quot;2026-08-19&quot;:112.94},{&quot;2026-08-20&quot;:112.94},{&quot;2026-08-21&quot;:112.94},{&quot;2026-08-22&quot;:112.94},{&quot;2026-08-23&quot;:112.94},{&quot;2026-08-24&quot;:113.35},{&quot;2026-08-25&quot;:113.35},{&quot;2026-08-26&quot;:114.29},{&quot;2026-08-27&quot;:114.29},{&quot;2026-08-28&quot;:114.43},{&quot;2026-08-29&quot;:114.43},{&quot;2026-08-30&quot;:114.43},{&quot;2026-08-31&quot;:114.43},{&quot;2026-09-01&quot;:114.43},{&quot;2026-09-02&quot;:114.73},{&quot;2026-09-03&quot;:114.63},{&quot;2026-09-04&quot;:114.63},{&quot;2026-09-05&quot;:114.63},{&quot;2026-09-06&quot;:115.01},{&quot;2026-09-07&quot;:115.01},{&quot;2026-09-08&quot;:115.01},{&quot;2026-09-09&quot;:115.01},{&quot;2026-09-10&quot;:115.01},{&quot;2026-09-11&quot;:115.01}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:86.06},{&quot;2026-06-14&quot;:86.06},{&quot;2026-06-15&quot;:86.06},{&quot;2026-06-16&quot;:86.06},{&quot;2026-06-17&quot;:85.88},{&quot;2026-06-18&quot;:85.88},{&quot;2026-06-19&quot;:85.88},{&quot;2026-06-20&quot;:85.88},{&quot;2026-06-21&quot;:85.88},{&quot;2026-06-22&quot;:85.88},{&quot;2026-06-23&quot;:85.88},{&quot;2026-06-24&quot;:86.09},{&quot;2026-06-25&quot;:86.09},{&quot;2026-06-26&quot;:86.09},{&quot;2026-06-27&quot;:86.09},{&quot;2026-06-28&quot;:86.09},{&quot;2026-06-29&quot;:86.09},{&quot;2026-06-30&quot;:87.31},{&quot;2026-07-01&quot;:87.31},{&quot;2026-07-02&quot;:87.31},{&quot;2026-07-03&quot;:87.31},{&quot;2026-07-04&quot;:87.31},{&quot;2026-07-05&quot;:87.31},{&quot;2026-07-06&quot;:88.35},{&quot;2026-07-07&quot;:88.35},{&quot;2026-07-08&quot;:87.31},{&quot;2026-07-09&quot;:87.31},{&quot;2026-07-10&quot;:88.45},{&quot;2026-07-11&quot;:88.45},{&quot;2026-07-12&quot;:88.45},{&quot;2026-07-13&quot;:88.45},{&quot;2026-07-14&quot;:88.45},{&quot;2026-07-15&quot;:88.45},{&quot;2026-07-16&quot;:88.45},{&quot;2026-07-17&quot;:90.01},{&quot;2026-07-18&quot;:90.01},{&quot;2026-07-19&quot;:90.01},{&quot;2026-07-20&quot;:90.01},{&quot;2026-07-21&quot;:90.01},{&quot;2026-07-22&quot;:90.86},{&quot;2026-07-23&quot;:91.24},{&quot;2026-07-24&quot;:91.24},{&quot;2026-07-25&quot;:91.24},{&quot;2026-07-26&quot;:91.24},{&quot;2026-07-27&quot;:91.24},{&quot;2026-07-28&quot;:91.24},{&quot;2026-07-29&quot;:91.24},{&quot;2026-07-30&quot;:91.24},{&quot;2026-07-31&quot;:91.24},{&quot;2026-08-01&quot;:91.24},{&quot;2026-08-02&quot;:91.24},{&quot;2026-08-03&quot;:91.24},{&quot;2026-08-04&quot;:91.24},{&quot;2026-08-05&quot;:91.24},{&quot;2026-08-07&quot;:91.24},{&quot;2026-08-08&quot;:91.24},{&quot;2026-08-09&quot;:91.24},{&quot;2026-08-10&quot;:91.24},{&quot;2026-08-11&quot;:91.9},{&quot;2026-08-12&quot;:91.9},{&quot;2026-08-13&quot;:91.9},{&quot;2026-08-14&quot;:91.9},{&quot;2026-08-15&quot;:91.9},{&quot;2026-08-16&quot;:91.9},{&quot;2026-08-17&quot;:91.9},{&quot;2026-08-18&quot;:91.9},{&quot;2026-08-19&quot;:91.9},{&quot;2026-08-20&quot;:91.9},{&quot;2026-08-21&quot;:91.9},{&quot;2026-08-22&quot;:91.9},{&quot;2026-08-23&quot;:91.9},{&quot;2026-08-24&quot;:91.9},{&quot;2026-08-25&quot;:91.87},{&quot;2026-08-26&quot;:91.87},{&quot;2026-08-27&quot;:92.84},{&quot;2026-08-28&quot;:92.84},{&quot;2026-08-29&quot;:92.84},{&quot;2026-08-30&quot;:92.84},{&quot;2026-08-31&quot;:92.84},{&quot;2026-09-01&quot;:92.84},{&quot;2026-09-02&quot;:94.12},{&quot;2026-09-03&quot;:94.12},{&quot;2026-09-04&quot;:94.12},{&quot;2026-09-05&quot;:94.12},{&quot;2026-09-06&quot;:94.12},{&quot;2026-09-07&quot;:94.12},{&quot;2026-09-08&quot;:94.12},{&quot;2026-09-09&quot;:94.12},{&quot;2026-09-10&quot;:94.12},{&quot;2026-09-11&quot;:94.12}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Urborg, Tomb of Yawgmoth" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/e/9e1a9e38-6ffc-490f-b0be-23ba4e8204c6.jpg?1783927747" />

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

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Urborg, Tomb of Yawgmoth
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            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="Urborg, Tomb of Yawgmoth" src="https://cards.scryfall.io/large/front/9/e/9e1a9e38-6ffc-490f-b0be-23ba4e8204c6.jpg?1783927747" />
    </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">
                $57.37
              </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">
                $74.08
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:64.73},{&quot;2026-06-14&quot;:64.73},{&quot;2026-06-15&quot;:66.17},{&quot;2026-06-16&quot;:66.17},{&quot;2026-06-17&quot;:66.17},{&quot;2026-06-18&quot;:66.17},{&quot;2026-06-19&quot;:66.17},{&quot;2026-06-20&quot;:66.17},{&quot;2026-06-21&quot;:66.17},{&quot;2026-06-22&quot;:66.17},{&quot;2026-06-23&quot;:66.17},{&quot;2026-06-24&quot;:66.17},{&quot;2026-06-25&quot;:66.17},{&quot;2026-06-26&quot;:66.17},{&quot;2026-06-27&quot;:66.17},{&quot;2026-06-28&quot;:66.17},{&quot;2026-06-29&quot;:66.17},{&quot;2026-06-30&quot;:66.17},{&quot;2026-07-01&quot;:66.17},{&quot;2026-07-02&quot;:66.17},{&quot;2026-07-03&quot;:66.17},{&quot;2026-07-04&quot;:66.47},{&quot;2026-07-05&quot;:66.47},{&quot;2026-07-06&quot;:68.55},{&quot;2026-07-07&quot;:68.55},{&quot;2026-07-08&quot;:68.55},{&quot;2026-07-09&quot;:68.55},{&quot;2026-07-10&quot;:68.96},{&quot;2026-07-11&quot;:68.96},{&quot;2026-07-12&quot;:68.96},{&quot;2026-07-13&quot;:68.96},{&quot;2026-07-14&quot;:68.96},{&quot;2026-07-15&quot;:69.32},{&quot;2026-07-16&quot;:69.32},{&quot;2026-07-17&quot;:69.32},{&quot;2026-07-18&quot;:70.66},{&quot;2026-07-19&quot;:70.66},{&quot;2026-07-20&quot;:71.14},{&quot;2026-07-21&quot;:71.14},{&quot;2026-07-22&quot;:71.14},{&quot;2026-07-23&quot;:71.78},{&quot;2026-07-24&quot;:72.26},{&quot;2026-07-25&quot;:72.26},{&quot;2026-07-26&quot;:72.26},{&quot;2026-07-27&quot;:72.26},{&quot;2026-07-28&quot;:72.26},{&quot;2026-07-29&quot;:72.26},{&quot;2026-07-30&quot;:72.26},{&quot;2026-07-31&quot;:72.79},{&quot;2026-08-01&quot;:72.79},{&quot;2026-08-02&quot;:72.79},{&quot;2026-08-03&quot;:72.79},{&quot;2026-08-04&quot;:72.79},{&quot;2026-08-05&quot;:72.79},{&quot;2026-08-07&quot;:72.79},{&quot;2026-08-08&quot;:72.79},{&quot;2026-08-09&quot;:72.79},{&quot;2026-08-10&quot;:72.9},{&quot;2026-08-11&quot;:72.9},{&quot;2026-08-12&quot;:72.9},{&quot;2026-08-13&quot;:73.74},{&quot;2026-08-14&quot;:74.27},{&quot;2026-08-15&quot;:74.27},{&quot;2026-08-16&quot;:74.27},{&quot;2026-08-17&quot;:74.27},{&quot;2026-08-18&quot;:74.27},{&quot;2026-08-19&quot;:74.27},{&quot;2026-08-20&quot;:74.27},{&quot;2026-08-21&quot;:74.27},{&quot;2026-08-22&quot;:74.27},{&quot;2026-08-23&quot;:74.27},{&quot;2026-08-24&quot;:74.27},{&quot;2026-08-25&quot;:74.87},{&quot;2026-08-26&quot;:74.87},{&quot;2026-08-27&quot;:74.0},{&quot;2026-08-28&quot;:74.0},{&quot;2026-08-29&quot;:74.0},{&quot;2026-08-30&quot;:74.0},{&quot;2026-08-31&quot;:74.0},{&quot;2026-09-01&quot;:74.0},{&quot;2026-09-02&quot;:74.0},{&quot;2026-09-03&quot;:74.0},{&quot;2026-09-04&quot;:74.0},{&quot;2026-09-05&quot;:74.08},{&quot;2026-09-06&quot;:74.08},{&quot;2026-09-07&quot;:74.08},{&quot;2026-09-08&quot;:74.08},{&quot;2026-09-09&quot;:74.08},{&quot;2026-09-10&quot;:74.08},{&quot;2026-09-11&quot;:74.08}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:62.93},{&quot;2026-06-14&quot;:62.93},{&quot;2026-06-15&quot;:63.55},{&quot;2026-06-16&quot;:64.75},{&quot;2026-06-17&quot;:64.23},{&quot;2026-06-18&quot;:64.19},{&quot;2026-06-19&quot;:63.77},{&quot;2026-06-20&quot;:64.27},{&quot;2026-06-21&quot;:63.58},{&quot;2026-06-22&quot;:64.34},{&quot;2026-06-23&quot;:63.99},{&quot;2026-06-24&quot;:64.27},{&quot;2026-06-25&quot;:64.43},{&quot;2026-06-26&quot;:64.0},{&quot;2026-06-27&quot;:62.91},{&quot;2026-06-28&quot;:63.74},{&quot;2026-06-29&quot;:63.19},{&quot;2026-06-30&quot;:63.9},{&quot;2026-07-01&quot;:64.08},{&quot;2026-07-02&quot;:64.16},{&quot;2026-07-03&quot;:63.64},{&quot;2026-07-04&quot;:63.49},{&quot;2026-07-05&quot;:63.33},{&quot;2026-07-06&quot;:63.33},{&quot;2026-07-07&quot;:63.84},{&quot;2026-07-08&quot;:63.85},{&quot;2026-07-09&quot;:63.85},{&quot;2026-07-10&quot;:63.85},{&quot;2026-07-11&quot;:63.9},{&quot;2026-07-12&quot;:63.98},{&quot;2026-07-13&quot;:63.58},{&quot;2026-07-14&quot;:62.99},{&quot;2026-07-15&quot;:63.06},{&quot;2026-07-16&quot;:62.78},{&quot;2026-07-17&quot;:62.29},{&quot;2026-07-18&quot;:62.3},{&quot;2026-07-19&quot;:62.3},{&quot;2026-07-20&quot;:62.3},{&quot;2026-07-21&quot;:61.55},{&quot;2026-07-22&quot;:61.55},{&quot;2026-07-23&quot;:62.32},{&quot;2026-07-24&quot;:61.46},{&quot;2026-07-25&quot;:61.67},{&quot;2026-07-26&quot;:61.67},{&quot;2026-07-27&quot;:61.75},{&quot;2026-07-28&quot;:62.29},{&quot;2026-07-29&quot;:62.74},{&quot;2026-07-30&quot;:63.16},{&quot;2026-07-31&quot;:63.19},{&quot;2026-08-01&quot;:63.19},{&quot;2026-08-02&quot;:63.19},{&quot;2026-08-03&quot;:63.06},{&quot;2026-08-04&quot;:62.65},{&quot;2026-08-05&quot;:63.27},{&quot;2026-08-07&quot;:63.36},{&quot;2026-08-08&quot;:63.36},{&quot;2026-08-09&quot;:62.68},{&quot;2026-08-10&quot;:62.65},{&quot;2026-08-11&quot;:62.98},{&quot;2026-08-12&quot;:62.07},{&quot;2026-08-13&quot;:61.88},{&quot;2026-08-14&quot;:62.16},{&quot;2026-08-15&quot;:61.88},{&quot;2026-08-16&quot;:61.23},{&quot;2026-08-17&quot;:61.76},{&quot;2026-08-18&quot;:61.4},{&quot;2026-08-19&quot;:59.24},{&quot;2026-08-20&quot;:59.24},{&quot;2026-08-21&quot;:58.41},{&quot;2026-08-22&quot;:56.62},{&quot;2026-08-23&quot;:54.84},{&quot;2026-08-24&quot;:54.31},{&quot;2026-08-25&quot;:54.6},{&quot;2026-08-26&quot;:54.44},{&quot;2026-08-27&quot;:54.1},{&quot;2026-08-28&quot;:55.13},{&quot;2026-08-29&quot;:55.13},{&quot;2026-08-30&quot;:55.92},{&quot;2026-08-31&quot;:56.18},{&quot;2026-09-01&quot;:55.87},{&quot;2026-09-02&quot;:55.92},{&quot;2026-09-03&quot;:55.92},{&quot;2026-09-04&quot;:55.78},{&quot;2026-09-05&quot;:56.16},{&quot;2026-09-06&quot;:56.44},{&quot;2026-09-07&quot;:55.92},{&quot;2026-09-08&quot;:56.72},{&quot;2026-09-09&quot;:57.38},{&quot;2026-09-10&quot;:57.38},{&quot;2026-09-11&quot;:57.37}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Boseiju, Who Endures" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/1/2135ac5a-187b-4dc9-8f82-34e8d1603416.jpg?1783923818" />

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

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Boseiju, Who Endures
        </h3>

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Boseiju, Who Endures" src="https://cards.scryfall.io/large/front/2/1/2135ac5a-187b-4dc9-8f82-34e8d1603416.jpg?1783923818" />
    </div>

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-11&quot;:54.23},{&quot;2026-06-12&quot;:54.23},{&quot;2026-06-13&quot;:54.04},{&quot;2026-06-14&quot;:54.04},{&quot;2026-06-15&quot;:54.32},{&quot;2026-06-16&quot;:54.12},{&quot;2026-06-17&quot;:54.02},{&quot;2026-06-18&quot;:53.92},{&quot;2026-06-19&quot;:53.88},{&quot;2026-06-20&quot;:53.88},{&quot;2026-06-21&quot;:53.88},{&quot;2026-06-22&quot;:53.82},{&quot;2026-06-23&quot;:53.82},{&quot;2026-06-24&quot;:53.82},{&quot;2026-06-25&quot;:53.96},{&quot;2026-06-26&quot;:53.96},{&quot;2026-06-27&quot;:53.96},{&quot;2026-06-28&quot;:53.96},{&quot;2026-06-29&quot;:54.24},{&quot;2026-06-30&quot;:54.24},{&quot;2026-07-01&quot;:54.24},{&quot;2026-07-02&quot;:54.25},{&quot;2026-07-03&quot;:54.21},{&quot;2026-07-04&quot;:54.16},{&quot;2026-07-05&quot;:54.16},{&quot;2026-07-06&quot;:54.16},{&quot;2026-07-07&quot;:54.16},{&quot;2026-07-08&quot;:54.23},{&quot;2026-07-09&quot;:54.23},{&quot;2026-07-10&quot;:54.23},{&quot;2026-07-11&quot;:53.95},{&quot;2026-07-12&quot;:53.95},{&quot;2026-07-13&quot;:53.95},{&quot;2026-07-14&quot;:54.02},{&quot;2026-07-15&quot;:54.02},{&quot;2026-07-16&quot;:54.02},{&quot;2026-07-17&quot;:54.02},{&quot;2026-07-18&quot;:54.02},{&quot;2026-07-19&quot;:53.57},{&quot;2026-07-20&quot;:53.86},{&quot;2026-07-21&quot;:53.86},{&quot;2026-07-23&quot;:53.88},{&quot;2026-07-25&quot;:53.88},{&quot;2026-07-26&quot;:53.98},{&quot;2026-07-27&quot;:53.98},{&quot;2026-07-28&quot;:54.01},{&quot;2026-07-29&quot;:53.93},{&quot;2026-07-30&quot;:53.93},{&quot;2026-07-31&quot;:53.93},{&quot;2026-08-01&quot;:53.61},{&quot;2026-08-02&quot;:53.61},{&quot;2026-08-03&quot;:53.07},{&quot;2026-08-04&quot;:52.85},{&quot;2026-08-05&quot;:52.85},{&quot;2026-08-07&quot;:52.8},{&quot;2026-08-08&quot;:52.8},{&quot;2026-08-09&quot;:52.83},{&quot;2026-08-10&quot;:52.81},{&quot;2026-08-11&quot;:53.07},{&quot;2026-08-12&quot;:52.98},{&quot;2026-08-13&quot;:52.98},{&quot;2026-08-14&quot;:52.84},{&quot;2026-08-15&quot;:52.84},{&quot;2026-08-16&quot;:53.67},{&quot;2026-08-17&quot;:53.18},{&quot;2026-08-18&quot;:53.13},{&quot;2026-08-19&quot;:53.51},{&quot;2026-08-20&quot;:53.51},{&quot;2026-08-21&quot;:53.85},{&quot;2026-08-22&quot;:54.14},{&quot;2026-08-23&quot;:54.11},{&quot;2026-08-24&quot;:54.03},{&quot;2026-08-25&quot;:54.03},{&quot;2026-08-26&quot;:53.77},{&quot;2026-08-27&quot;:53.77},{&quot;2026-08-28&quot;:53.75},{&quot;2026-08-29&quot;:53.75},{&quot;2026-08-30&quot;:53.75},{&quot;2026-08-31&quot;:53.83},{&quot;2026-09-01&quot;:53.83},{&quot;2026-09-02&quot;:53.83},{&quot;2026-09-03&quot;:53.75},{&quot;2026-09-04&quot;:53.75},{&quot;2026-09-05&quot;:54.1},{&quot;2026-09-06&quot;:53.9},{&quot;2026-09-07&quot;:53.16},{&quot;2026-09-08&quot;:53.16},{&quot;2026-09-09&quot;:52.63},{&quot;2026-09-10&quot;:52.63},{&quot;2026-09-11&quot;:52.38}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:53.17},{&quot;2026-06-12&quot;:53.58},{&quot;2026-06-13&quot;:53.56},{&quot;2026-06-14&quot;:52.17},{&quot;2026-06-15&quot;:50.77},{&quot;2026-06-16&quot;:51.21},{&quot;2026-06-17&quot;:50.74},{&quot;2026-06-18&quot;:50.35},{&quot;2026-06-19&quot;:49.58},{&quot;2026-06-20&quot;:49.96},{&quot;2026-06-21&quot;:49.94},{&quot;2026-06-22&quot;:50.51},{&quot;2026-06-23&quot;:50.41},{&quot;2026-06-24&quot;:49.92},{&quot;2026-06-25&quot;:50.94},{&quot;2026-06-26&quot;:50.67},{&quot;2026-06-27&quot;:49.97},{&quot;2026-06-28&quot;:49.79},{&quot;2026-06-29&quot;:49.54},{&quot;2026-06-30&quot;:46.06},{&quot;2026-07-01&quot;:45.91},{&quot;2026-07-02&quot;:46.66},{&quot;2026-07-03&quot;:48.52},{&quot;2026-07-04&quot;:48.78},{&quot;2026-07-05&quot;:48.52},{&quot;2026-07-06&quot;:49.15},{&quot;2026-07-07&quot;:48.39},{&quot;2026-07-08&quot;:48.68},{&quot;2026-07-09&quot;:48.98},{&quot;2026-07-10&quot;:49.11},{&quot;2026-07-11&quot;:48.82},{&quot;2026-07-12&quot;:47.78},{&quot;2026-07-13&quot;:47.71},{&quot;2026-07-14&quot;:47.99},{&quot;2026-07-15&quot;:49.04},{&quot;2026-07-16&quot;:49.67},{&quot;2026-07-17&quot;:49.61},{&quot;2026-07-18&quot;:49.28},{&quot;2026-07-19&quot;:48.56},{&quot;2026-07-20&quot;:49.88},{&quot;2026-07-21&quot;:49.8},{&quot;2026-07-23&quot;:50.72},{&quot;2026-07-25&quot;:50.0},{&quot;2026-07-26&quot;:49.28},{&quot;2026-07-27&quot;:49.17},{&quot;2026-07-28&quot;:49.47},{&quot;2026-07-29&quot;:49.94},{&quot;2026-07-30&quot;:49.85},{&quot;2026-07-31&quot;:50.17},{&quot;2026-08-01&quot;:50.29},{&quot;2026-08-02&quot;:50.82},{&quot;2026-08-03&quot;:50.58},{&quot;2026-08-04&quot;:51.16},{&quot;2026-08-05&quot;:51.66},{&quot;2026-08-07&quot;:51.54},{&quot;2026-08-08&quot;:51.82},{&quot;2026-08-09&quot;:51.38},{&quot;2026-08-10&quot;:50.96},{&quot;2026-08-11&quot;:50.11},{&quot;2026-08-12&quot;:49.75},{&quot;2026-08-13&quot;:50.12},{&quot;2026-08-14&quot;:49.12},{&quot;2026-08-15&quot;:49.94},{&quot;2026-08-16&quot;:49.28},{&quot;2026-08-17&quot;:49.1},{&quot;2026-08-18&quot;:49.73},{&quot;2026-08-19&quot;:50.0},{&quot;2026-08-20&quot;:50.0},{&quot;2026-08-21&quot;:50.17},{&quot;2026-08-22&quot;:50.79},{&quot;2026-08-23&quot;:51.15},{&quot;2026-08-24&quot;:50.51},{&quot;2026-08-25&quot;:50.41},{&quot;2026-08-26&quot;:50.29},{&quot;2026-08-27&quot;:49.88},{&quot;2026-08-28&quot;:49.28},{&quot;2026-08-29&quot;:49.28},{&quot;2026-08-30&quot;:49.43},{&quot;2026-08-31&quot;:48.93},{&quot;2026-09-01&quot;:48.99},{&quot;2026-09-02&quot;:49.89},{&quot;2026-09-03&quot;:51.46},{&quot;2026-09-04&quot;:51.65},{&quot;2026-09-05&quot;:51.21},{&quot;2026-09-06&quot;:50.2},{&quot;2026-09-07&quot;:49.3},{&quot;2026-09-08&quot;:49.71},{&quot;2026-09-09&quot;:49.59},{&quot;2026-09-10&quot;:49.85},{&quot;2026-09-11&quot;:49.78}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Doubling Season" src="https://cards.scryfall.io/large/front/c/7/c7d7db76-0a0c-444f-96f1-559838450549.jpg?1783914920" />
    </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.48
              </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">
                $46.58
              </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">$28.00</span>
              <span class="text-xs text-grey-text">Credit: $36.40</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-08&quot;:46.35},{&quot;2026-06-10&quot;:46.35},{&quot;2026-06-11&quot;:46.35},{&quot;2026-06-12&quot;:46.35},{&quot;2026-06-13&quot;:46.35},{&quot;2026-06-14&quot;:46.35},{&quot;2026-06-15&quot;:46.35},{&quot;2026-06-16&quot;:46.35},{&quot;2026-06-17&quot;:46.35},{&quot;2026-06-18&quot;:46.17},{&quot;2026-06-19&quot;:46.17},{&quot;2026-06-20&quot;:46.17},{&quot;2026-06-21&quot;:46.17},{&quot;2026-06-22&quot;:45.8},{&quot;2026-06-24&quot;:45.8},{&quot;2026-06-25&quot;:45.92},{&quot;2026-06-26&quot;:45.72},{&quot;2026-06-27&quot;:45.72},{&quot;2026-06-28&quot;:45.94},{&quot;2026-06-29&quot;:45.94},{&quot;2026-06-30&quot;:45.94},{&quot;2026-07-01&quot;:45.94},{&quot;2026-07-02&quot;:45.94},{&quot;2026-07-03&quot;:45.94},{&quot;2026-07-04&quot;:45.94},{&quot;2026-07-05&quot;:45.94},{&quot;2026-07-06&quot;:45.94},{&quot;2026-07-07&quot;:45.76},{&quot;2026-07-08&quot;:45.76},{&quot;2026-07-09&quot;:45.76},{&quot;2026-07-10&quot;:45.76},{&quot;2026-07-11&quot;:45.76},{&quot;2026-07-12&quot;:45.5},{&quot;2026-07-13&quot;:45.5},{&quot;2026-07-14&quot;:45.5},{&quot;2026-07-15&quot;:45.67},{&quot;2026-07-16&quot;:45.67},{&quot;2026-07-17&quot;:45.67},{&quot;2026-07-18&quot;:45.67},{&quot;2026-07-19&quot;:45.67},{&quot;2026-07-20&quot;:45.67},{&quot;2026-07-21&quot;:45.55},{&quot;2026-07-23&quot;:45.35},{&quot;2026-07-25&quot;:45.35},{&quot;2026-07-26&quot;:45.35},{&quot;2026-07-27&quot;:45.35},{&quot;2026-07-29&quot;:45.27},{&quot;2026-07-30&quot;:44.91},{&quot;2026-07-31&quot;:44.91},{&quot;2026-08-01&quot;:44.75},{&quot;2026-08-02&quot;:45.0},{&quot;2026-08-03&quot;:45.0},{&quot;2026-08-04&quot;:45.0},{&quot;2026-08-05&quot;:45.0},{&quot;2026-08-07&quot;:45.17},{&quot;2026-08-08&quot;:45.17},{&quot;2026-08-09&quot;:45.17},{&quot;2026-08-10&quot;:45.62},{&quot;2026-08-11&quot;:45.62},{&quot;2026-08-12&quot;:45.62},{&quot;2026-08-13&quot;:45.62},{&quot;2026-08-14&quot;:45.62},{&quot;2026-08-15&quot;:45.62},{&quot;2026-08-16&quot;:45.62},{&quot;2026-08-17&quot;:45.62},{&quot;2026-08-18&quot;:45.62},{&quot;2026-08-19&quot;:45.62},{&quot;2026-08-20&quot;:45.62},{&quot;2026-08-21&quot;:45.83},{&quot;2026-08-22&quot;:45.83},{&quot;2026-08-23&quot;:45.83},{&quot;2026-08-24&quot;:45.83},{&quot;2026-08-25&quot;:45.83},{&quot;2026-08-26&quot;:45.56},{&quot;2026-08-27&quot;:45.21},{&quot;2026-08-28&quot;:45.21},{&quot;2026-08-29&quot;:45.21},{&quot;2026-08-30&quot;:45.4},{&quot;2026-08-31&quot;:45.4},{&quot;2026-09-01&quot;:45.4},{&quot;2026-09-02&quot;:45.4},{&quot;2026-09-03&quot;:45.4},{&quot;2026-09-04&quot;:45.4},{&quot;2026-09-05&quot;:45.4},{&quot;2026-09-06&quot;:45.5},{&quot;2026-09-07&quot;:46.27},{&quot;2026-09-08&quot;:46.27},{&quot;2026-09-09&quot;:46.27},{&quot;2026-09-10&quot;:46.27},{&quot;2026-09-11&quot;:46.58}],&quot;normal&quot;:[{&quot;2026-06-08&quot;:39.3},{&quot;2026-06-10&quot;:39.36},{&quot;2026-06-11&quot;:39.38},{&quot;2026-06-12&quot;:39.26},{&quot;2026-06-13&quot;:39.28},{&quot;2026-06-14&quot;:39.24},{&quot;2026-06-15&quot;:39.24},{&quot;2026-06-16&quot;:39.35},{&quot;2026-06-17&quot;:39.35},{&quot;2026-06-18&quot;:39.35},{&quot;2026-06-19&quot;:39.42},{&quot;2026-06-20&quot;:39.37},{&quot;2026-06-21&quot;:39.16},{&quot;2026-06-22&quot;:38.99},{&quot;2026-06-24&quot;:38.78},{&quot;2026-06-25&quot;:38.67},{&quot;2026-06-26&quot;:38.3},{&quot;2026-06-27&quot;:38.6},{&quot;2026-06-28&quot;:38.83},{&quot;2026-06-29&quot;:38.83},{&quot;2026-06-30&quot;:38.83},{&quot;2026-07-01&quot;:39.06},{&quot;2026-07-02&quot;:39.22},{&quot;2026-07-03&quot;:39.23},{&quot;2026-07-04&quot;:39.27},{&quot;2026-07-05&quot;:39.66},{&quot;2026-07-06&quot;:39.53},{&quot;2026-07-07&quot;:39.34},{&quot;2026-07-08&quot;:39.2},{&quot;2026-07-09&quot;:38.97},{&quot;2026-07-10&quot;:39.22},{&quot;2026-07-11&quot;:39.08},{&quot;2026-07-12&quot;:39.2},{&quot;2026-07-13&quot;:39.3},{&quot;2026-07-14&quot;:39.32},{&quot;2026-07-15&quot;:39.08},{&quot;2026-07-16&quot;:39.08},{&quot;2026-07-17&quot;:38.73},{&quot;2026-07-18&quot;:38.71},{&quot;2026-07-19&quot;:38.8},{&quot;2026-07-20&quot;:39.14},{&quot;2026-07-21&quot;:39.38},{&quot;2026-07-23&quot;:39.47},{&quot;2026-07-25&quot;:39.76},{&quot;2026-07-26&quot;:39.7},{&quot;2026-07-27&quot;:39.67},{&quot;2026-07-29&quot;:40.74},{&quot;2026-07-30&quot;:40.74},{&quot;2026-07-31&quot;:40.85},{&quot;2026-08-01&quot;:40.52},{&quot;2026-08-02&quot;:40.52},{&quot;2026-08-03&quot;:40.52},{&quot;2026-08-04&quot;:40.52},{&quot;2026-08-05&quot;:40.46},{&quot;2026-08-07&quot;:40.78},{&quot;2026-08-08&quot;:40.59},{&quot;2026-08-09&quot;:40.15},{&quot;2026-08-10&quot;:39.91},{&quot;2026-08-11&quot;:40.02},{&quot;2026-08-12&quot;:39.87},{&quot;2026-08-13&quot;:39.19},{&quot;2026-08-14&quot;:38.66},{&quot;2026-08-15&quot;:38.66},{&quot;2026-08-16&quot;:38.66},{&quot;2026-08-17&quot;:38.67},{&quot;2026-08-18&quot;:38.58},{&quot;2026-08-19&quot;:38.37},{&quot;2026-08-20&quot;:38.37},{&quot;2026-08-21&quot;:38.21},{&quot;2026-08-22&quot;:37.95},{&quot;2026-08-23&quot;:37.97},{&quot;2026-08-24&quot;:37.62},{&quot;2026-08-25&quot;:37.62},{&quot;2026-08-26&quot;:37.6},{&quot;2026-08-27&quot;:37.6},{&quot;2026-08-28&quot;:37.5},{&quot;2026-08-29&quot;:37.5},{&quot;2026-08-30&quot;:37.47},{&quot;2026-08-31&quot;:37.94},{&quot;2026-09-01&quot;:37.94},{&quot;2026-09-02&quot;:38.56},{&quot;2026-09-03&quot;:38.49},{&quot;2026-09-04&quot;:38.48},{&quot;2026-09-05&quot;:38.42},{&quot;2026-09-06&quot;:38.76},{&quot;2026-09-07&quot;:39.32},{&quot;2026-09-08&quot;:39.41},{&quot;2026-09-09&quot;:39.41},{&quot;2026-09-10&quot;:39.41},{&quot;2026-09-11&quot;:39.48}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

    <!-- Card Info -->
    <div class="flex-1 min-w-0">
      <!-- Card Name -->
      <div class="flex items-center gap-2">
        <span class="font-medium text-nine-white truncate">
            Akroma&#39;s Memorial
        </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-50 text-badge-text">
              ↑
              2%
            </span>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Akroma&#39;s Memorial" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/5/950ee61d-0bc1-4d7b-ba68-157061aa98eb.jpg?1783927758" />

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

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Akroma&#39;s Memorial
        </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-7'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Akroma&#39;s Memorial" src="https://cards.scryfall.io/large/front/9/5/950ee61d-0bc1-4d7b-ba68-157061aa98eb.jpg?1783927758" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:51.59},{&quot;2026-06-11&quot;:51.59},{&quot;2026-06-12&quot;:51.59},{&quot;2026-06-13&quot;:51.59},{&quot;2026-06-14&quot;:51.59},{&quot;2026-06-15&quot;:51.59},{&quot;2026-06-16&quot;:52.11},{&quot;2026-06-17&quot;:52.11},{&quot;2026-06-18&quot;:52.11},{&quot;2026-06-19&quot;:52.34},{&quot;2026-06-20&quot;:52.34},{&quot;2026-06-21&quot;:52.34},{&quot;2026-06-22&quot;:52.92},{&quot;2026-06-23&quot;:52.92},{&quot;2026-06-24&quot;:52.92},{&quot;2026-06-25&quot;:53.17},{&quot;2026-06-26&quot;:53.17},{&quot;2026-06-27&quot;:53.17},{&quot;2026-06-28&quot;:53.05},{&quot;2026-06-29&quot;:53.05},{&quot;2026-06-30&quot;:53.05},{&quot;2026-07-01&quot;:53.05},{&quot;2026-07-02&quot;:53.05},{&quot;2026-07-03&quot;:53.05},{&quot;2026-07-04&quot;:53.05},{&quot;2026-07-05&quot;:53.05},{&quot;2026-07-06&quot;:53.05},{&quot;2026-07-07&quot;:53.05},{&quot;2026-07-08&quot;:53.05},{&quot;2026-07-09&quot;:53.05},{&quot;2026-07-10&quot;:53.05},{&quot;2026-07-11&quot;:53.39},{&quot;2026-07-12&quot;:53.39},{&quot;2026-07-13&quot;:53.57},{&quot;2026-07-14&quot;:53.57},{&quot;2026-07-15&quot;:54.0},{&quot;2026-07-16&quot;:54.0},{&quot;2026-07-17&quot;:54.0},{&quot;2026-07-18&quot;:54.33},{&quot;2026-07-19&quot;:54.33},{&quot;2026-07-20&quot;:54.33},{&quot;2026-07-21&quot;:54.33},{&quot;2026-07-23&quot;:54.37},{&quot;2026-07-25&quot;:54.37},{&quot;2026-07-26&quot;:54.37},{&quot;2026-07-27&quot;:54.37},{&quot;2026-07-29&quot;:54.37},{&quot;2026-07-30&quot;:54.37},{&quot;2026-07-31&quot;:54.37},{&quot;2026-08-01&quot;:54.37},{&quot;2026-08-02&quot;:54.37},{&quot;2026-08-03&quot;:54.37},{&quot;2026-08-04&quot;:54.37},{&quot;2026-08-05&quot;:54.37},{&quot;2026-08-07&quot;:54.37},{&quot;2026-08-08&quot;:54.37},{&quot;2026-08-09&quot;:54.37},{&quot;2026-08-10&quot;:54.37},{&quot;2026-08-11&quot;:54.37},{&quot;2026-08-12&quot;:54.37},{&quot;2026-08-13&quot;:54.37},{&quot;2026-08-14&quot;:54.69},{&quot;2026-08-15&quot;:54.69},{&quot;2026-08-16&quot;:54.69},{&quot;2026-08-17&quot;:54.69},{&quot;2026-08-18&quot;:54.69},{&quot;2026-08-19&quot;:54.69},{&quot;2026-08-20&quot;:54.69},{&quot;2026-08-21&quot;:54.69},{&quot;2026-08-22&quot;:54.69},{&quot;2026-08-23&quot;:54.69},{&quot;2026-08-24&quot;:54.69},{&quot;2026-08-25&quot;:54.69},{&quot;2026-08-26&quot;:54.69},{&quot;2026-08-27&quot;:54.69},{&quot;2026-08-28&quot;:54.69},{&quot;2026-08-29&quot;:54.69},{&quot;2026-08-30&quot;:54.69},{&quot;2026-08-31&quot;:54.69},{&quot;2026-09-01&quot;:54.69},{&quot;2026-09-02&quot;:54.69},{&quot;2026-09-03&quot;:54.69},{&quot;2026-09-04&quot;:54.69},{&quot;2026-09-05&quot;:54.69},{&quot;2026-09-06&quot;:54.69},{&quot;2026-09-07&quot;:54.69},{&quot;2026-09-08&quot;:54.69},{&quot;2026-09-09&quot;:54.69},{&quot;2026-09-10&quot;:54.69},{&quot;2026-09-11&quot;:54.69}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:32.46},{&quot;2026-06-11&quot;:32.46},{&quot;2026-06-12&quot;:32.78},{&quot;2026-06-13&quot;:32.78},{&quot;2026-06-14&quot;:33.07},{&quot;2026-06-15&quot;:33.29},{&quot;2026-06-16&quot;:33.45},{&quot;2026-06-17&quot;:33.45},{&quot;2026-06-18&quot;:33.89},{&quot;2026-06-19&quot;:33.89},{&quot;2026-06-20&quot;:34.25},{&quot;2026-06-21&quot;:34.25},{&quot;2026-06-22&quot;:34.16},{&quot;2026-06-23&quot;:34.3},{&quot;2026-06-24&quot;:34.27},{&quot;2026-06-25&quot;:34.39},{&quot;2026-06-26&quot;:34.25},{&quot;2026-06-27&quot;:34.41},{&quot;2026-06-28&quot;:34.83},{&quot;2026-06-29&quot;:35.84},{&quot;2026-06-30&quot;:36.1},{&quot;2026-07-01&quot;:35.78},{&quot;2026-07-02&quot;:35.78},{&quot;2026-07-03&quot;:36.28},{&quot;2026-07-04&quot;:36.24},{&quot;2026-07-05&quot;:36.1},{&quot;2026-07-06&quot;:35.95},{&quot;2026-07-07&quot;:35.7},{&quot;2026-07-08&quot;:35.7},{&quot;2026-07-09&quot;:35.42},{&quot;2026-07-10&quot;:35.18},{&quot;2026-07-11&quot;:34.79},{&quot;2026-07-12&quot;:34.62},{&quot;2026-07-13&quot;:34.66},{&quot;2026-07-14&quot;:34.33},{&quot;2026-07-15&quot;:34.33},{&quot;2026-07-16&quot;:34.17},{&quot;2026-07-17&quot;:34.17},{&quot;2026-07-18&quot;:34.17},{&quot;2026-07-19&quot;:34.09},{&quot;2026-07-20&quot;:34.13},{&quot;2026-07-21&quot;:32.67},{&quot;2026-07-23&quot;:31.97},{&quot;2026-07-25&quot;:32.69},{&quot;2026-07-26&quot;:32.69},{&quot;2026-07-27&quot;:33.0},{&quot;2026-07-29&quot;:32.95},{&quot;2026-07-30&quot;:32.98},{&quot;2026-07-31&quot;:33.9},{&quot;2026-08-01&quot;:33.9},{&quot;2026-08-02&quot;:33.71},{&quot;2026-08-03&quot;:33.63},{&quot;2026-08-04&quot;:33.63},{&quot;2026-08-05&quot;:33.69},{&quot;2026-08-07&quot;:34.02},{&quot;2026-08-08&quot;:34.51},{&quot;2026-08-09&quot;:34.87},{&quot;2026-08-10&quot;:34.33},{&quot;2026-08-11&quot;:34.78},{&quot;2026-08-12&quot;:34.5},{&quot;2026-08-13&quot;:33.91},{&quot;2026-08-14&quot;:34.47},{&quot;2026-08-15&quot;:34.47},{&quot;2026-08-16&quot;:34.72},{&quot;2026-08-17&quot;:34.72},{&quot;2026-08-18&quot;:34.81},{&quot;2026-08-19&quot;:34.67},{&quot;2026-08-20&quot;:34.67},{&quot;2026-08-21&quot;:35.03},{&quot;2026-08-22&quot;:34.32},{&quot;2026-08-23&quot;:34.77},{&quot;2026-08-24&quot;:33.95},{&quot;2026-08-25&quot;:33.95},{&quot;2026-08-26&quot;:34.54},{&quot;2026-08-27&quot;:34.54},{&quot;2026-08-28&quot;:34.7},{&quot;2026-08-29&quot;:34.7},{&quot;2026-08-30&quot;:35.27},{&quot;2026-08-31&quot;:35.38},{&quot;2026-09-01&quot;:35.38},{&quot;2026-09-02&quot;:35.6},{&quot;2026-09-03&quot;:35.97},{&quot;2026-09-04&quot;:36.28},{&quot;2026-09-05&quot;:36.23},{&quot;2026-09-06&quot;:36.16},{&quot;2026-09-07&quot;:36.16},{&quot;2026-09-08&quot;:36.07},{&quot;2026-09-09&quot;:36.26},{&quot;2026-09-10&quot;:36.42},{&quot;2026-09-11&quot;:36.98}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Grave Pact" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/7/b728cdab-e4fe-478b-b7b2-5912bd6a80a3.jpg?1783914926" />

        <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">
            Grave Pact
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Grave Pact" src="https://cards.scryfall.io/large/front/b/7/b728cdab-e4fe-478b-b7b2-5912bd6a80a3.jpg?1783914926" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $34.42
              </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">
                $40.14
              </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">$24.00</span>
              <span class="text-xs text-grey-text">Credit: $31.20</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:38.51},{&quot;2026-06-14&quot;:38.51},{&quot;2026-06-15&quot;:38.51},{&quot;2026-06-16&quot;:38.87},{&quot;2026-06-17&quot;:38.87},{&quot;2026-06-18&quot;:38.87},{&quot;2026-06-19&quot;:38.87},{&quot;2026-06-20&quot;:38.87},{&quot;2026-06-21&quot;:39.09},{&quot;2026-06-22&quot;:39.32},{&quot;2026-06-23&quot;:39.32},{&quot;2026-06-24&quot;:39.32},{&quot;2026-06-25&quot;:39.32},{&quot;2026-06-26&quot;:39.32},{&quot;2026-06-27&quot;:39.04},{&quot;2026-06-28&quot;:39.23},{&quot;2026-06-29&quot;:39.23},{&quot;2026-06-30&quot;:39.23},{&quot;2026-07-01&quot;:39.23},{&quot;2026-07-02&quot;:39.23},{&quot;2026-07-03&quot;:39.23},{&quot;2026-07-04&quot;:39.23},{&quot;2026-07-05&quot;:39.38},{&quot;2026-07-06&quot;:39.67},{&quot;2026-07-07&quot;:39.67},{&quot;2026-07-08&quot;:39.73},{&quot;2026-07-09&quot;:39.72},{&quot;2026-07-10&quot;:39.72},{&quot;2026-07-11&quot;:39.67},{&quot;2026-07-12&quot;:40.19},{&quot;2026-07-13&quot;:40.19},{&quot;2026-07-14&quot;:40.19},{&quot;2026-07-15&quot;:40.19},{&quot;2026-07-16&quot;:40.19},{&quot;2026-07-17&quot;:40.19},{&quot;2026-07-18&quot;:40.19},{&quot;2026-07-19&quot;:40.19},{&quot;2026-07-20&quot;:40.19},{&quot;2026-07-21&quot;:40.19},{&quot;2026-07-22&quot;:40.19},{&quot;2026-07-23&quot;:40.19},{&quot;2026-07-24&quot;:40.19},{&quot;2026-07-25&quot;:40.19},{&quot;2026-07-26&quot;:40.6},{&quot;2026-07-27&quot;:40.6},{&quot;2026-07-28&quot;:40.6},{&quot;2026-07-29&quot;:40.6},{&quot;2026-07-30&quot;:40.6},{&quot;2026-07-31&quot;:40.6},{&quot;2026-08-01&quot;:40.6},{&quot;2026-08-02&quot;:40.6},{&quot;2026-08-03&quot;:40.6},{&quot;2026-08-04&quot;:40.47},{&quot;2026-08-05&quot;:40.47},{&quot;2026-08-07&quot;:40.47},{&quot;2026-08-08&quot;:40.47},{&quot;2026-08-09&quot;:40.47},{&quot;2026-08-10&quot;:40.47},{&quot;2026-08-11&quot;:40.47},{&quot;2026-08-12&quot;:40.47},{&quot;2026-08-13&quot;:40.47},{&quot;2026-08-14&quot;:40.47},{&quot;2026-08-15&quot;:40.47},{&quot;2026-08-16&quot;:40.47},{&quot;2026-08-17&quot;:40.81},{&quot;2026-08-18&quot;:40.81},{&quot;2026-08-19&quot;:40.81},{&quot;2026-08-20&quot;:40.17},{&quot;2026-08-21&quot;:40.17},{&quot;2026-08-22&quot;:40.17},{&quot;2026-08-23&quot;:40.17},{&quot;2026-08-24&quot;:40.17},{&quot;2026-08-25&quot;:40.17},{&quot;2026-08-26&quot;:40.17},{&quot;2026-08-27&quot;:40.17},{&quot;2026-08-28&quot;:40.17},{&quot;2026-08-29&quot;:40.17},{&quot;2026-08-30&quot;:40.17},{&quot;2026-08-31&quot;:40.37},{&quot;2026-09-01&quot;:40.37},{&quot;2026-09-02&quot;:40.37},{&quot;2026-09-03&quot;:40.37},{&quot;2026-09-04&quot;:40.37},{&quot;2026-09-05&quot;:40.37},{&quot;2026-09-06&quot;:40.37},{&quot;2026-09-07&quot;:40.37},{&quot;2026-09-08&quot;:40.36},{&quot;2026-09-09&quot;:40.36},{&quot;2026-09-10&quot;:40.14},{&quot;2026-09-11&quot;:40.14}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:32.71},{&quot;2026-06-14&quot;:32.95},{&quot;2026-06-15&quot;:32.95},{&quot;2026-06-16&quot;:33.24},{&quot;2026-06-17&quot;:33.41},{&quot;2026-06-18&quot;:33.55},{&quot;2026-06-19&quot;:33.55},{&quot;2026-06-20&quot;:33.59},{&quot;2026-06-21&quot;:33.59},{&quot;2026-06-22&quot;:33.21},{&quot;2026-06-23&quot;:33.27},{&quot;2026-06-24&quot;:33.27},{&quot;2026-06-25&quot;:33.43},{&quot;2026-06-26&quot;:33.39},{&quot;2026-06-27&quot;:32.96},{&quot;2026-06-28&quot;:32.96},{&quot;2026-06-29&quot;:33.01},{&quot;2026-06-30&quot;:33.06},{&quot;2026-07-01&quot;:32.82},{&quot;2026-07-02&quot;:32.77},{&quot;2026-07-03&quot;:33.7},{&quot;2026-07-04&quot;:33.67},{&quot;2026-07-05&quot;:34.33},{&quot;2026-07-06&quot;:33.34},{&quot;2026-07-07&quot;:33.42},{&quot;2026-07-08&quot;:33.42},{&quot;2026-07-09&quot;:33.22},{&quot;2026-07-10&quot;:33.15},{&quot;2026-07-11&quot;:33.21},{&quot;2026-07-12&quot;:33.12},{&quot;2026-07-13&quot;:33.62},{&quot;2026-07-14&quot;:33.62},{&quot;2026-07-15&quot;:33.98},{&quot;2026-07-16&quot;:34.02},{&quot;2026-07-17&quot;:34.02},{&quot;2026-07-18&quot;:34.02},{&quot;2026-07-19&quot;:33.87},{&quot;2026-07-20&quot;:33.89},{&quot;2026-07-21&quot;:33.59},{&quot;2026-07-22&quot;:33.8},{&quot;2026-07-23&quot;:33.69},{&quot;2026-07-24&quot;:33.77},{&quot;2026-07-25&quot;:33.77},{&quot;2026-07-26&quot;:34.13},{&quot;2026-07-27&quot;:34.54},{&quot;2026-07-28&quot;:34.54},{&quot;2026-07-29&quot;:33.38},{&quot;2026-07-30&quot;:34.45},{&quot;2026-07-31&quot;:34.84},{&quot;2026-08-01&quot;:34.84},{&quot;2026-08-02&quot;:35.06},{&quot;2026-08-03&quot;:35.06},{&quot;2026-08-04&quot;:34.85},{&quot;2026-08-05&quot;:34.85},{&quot;2026-08-07&quot;:34.63},{&quot;2026-08-08&quot;:33.97},{&quot;2026-08-09&quot;:34.39},{&quot;2026-08-10&quot;:33.84},{&quot;2026-08-11&quot;:33.97},{&quot;2026-08-12&quot;:34.23},{&quot;2026-08-13&quot;:35.11},{&quot;2026-08-14&quot;:34.86},{&quot;2026-08-15&quot;:35.57},{&quot;2026-08-16&quot;:36.04},{&quot;2026-08-17&quot;:36.71},{&quot;2026-08-18&quot;:36.84},{&quot;2026-08-19&quot;:36.69},{&quot;2026-08-20&quot;:36.69},{&quot;2026-08-21&quot;:36.69},{&quot;2026-08-22&quot;:35.48},{&quot;2026-08-23&quot;:34.66},{&quot;2026-08-24&quot;:34.4},{&quot;2026-08-25&quot;:34.15},{&quot;2026-08-26&quot;:33.15},{&quot;2026-08-27&quot;:33.15},{&quot;2026-08-28&quot;:33.49},{&quot;2026-08-29&quot;:33.49},{&quot;2026-08-30&quot;:33.7},{&quot;2026-08-31&quot;:33.52},{&quot;2026-09-01&quot;:33.52},{&quot;2026-09-02&quot;:33.48},{&quot;2026-09-03&quot;:33.48},{&quot;2026-09-04&quot;:33.87},{&quot;2026-09-05&quot;:33.87},{&quot;2026-09-06&quot;:33.72},{&quot;2026-09-07&quot;:34.39},{&quot;2026-09-08&quot;:34.61},{&quot;2026-09-09&quot;:34.38},{&quot;2026-09-10&quot;:34.34},{&quot;2026-09-11&quot;:34.42}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

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

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Verdant Catacombs
        </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="Verdant Catacombs" src="https://cards.scryfall.io/large/front/9/4/94c229ea-90da-4aa0-bfda-b162fb3b5b8b.jpg?1783926791" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:36.45},{&quot;2026-06-11&quot;:36.78},{&quot;2026-06-12&quot;:36.78},{&quot;2026-06-13&quot;:36.78},{&quot;2026-06-14&quot;:36.78},{&quot;2026-06-15&quot;:36.78},{&quot;2026-06-16&quot;:36.78},{&quot;2026-06-17&quot;:37.2},{&quot;2026-06-18&quot;:37.64},{&quot;2026-06-19&quot;:37.64},{&quot;2026-06-20&quot;:37.64},{&quot;2026-06-21&quot;:37.64},{&quot;2026-06-22&quot;:37.64},{&quot;2026-06-23&quot;:37.64},{&quot;2026-06-24&quot;:37.64},{&quot;2026-06-25&quot;:38.02},{&quot;2026-06-26&quot;:38.02},{&quot;2026-06-27&quot;:38.02},{&quot;2026-06-28&quot;:38.02},{&quot;2026-06-29&quot;:38.02},{&quot;2026-06-30&quot;:38.02},{&quot;2026-07-01&quot;:38.02},{&quot;2026-07-02&quot;:38.02},{&quot;2026-07-03&quot;:38.02},{&quot;2026-07-04&quot;:38.02},{&quot;2026-07-05&quot;:38.02},{&quot;2026-07-06&quot;:38.02},{&quot;2026-07-07&quot;:38.33},{&quot;2026-07-08&quot;:38.33},{&quot;2026-07-09&quot;:38.29},{&quot;2026-07-10&quot;:38.29},{&quot;2026-07-11&quot;:38.29},{&quot;2026-07-12&quot;:38.29},{&quot;2026-07-13&quot;:38.29},{&quot;2026-07-14&quot;:38.6},{&quot;2026-07-15&quot;:38.53},{&quot;2026-07-16&quot;:38.53},{&quot;2026-07-17&quot;:38.53},{&quot;2026-07-18&quot;:38.53},{&quot;2026-07-19&quot;:38.53},{&quot;2026-07-20&quot;:38.53},{&quot;2026-07-21&quot;:38.53},{&quot;2026-07-23&quot;:38.53},{&quot;2026-07-25&quot;:38.58},{&quot;2026-07-26&quot;:39.19},{&quot;2026-07-27&quot;:39.19},{&quot;2026-07-29&quot;:39.48},{&quot;2026-07-30&quot;:39.48},{&quot;2026-07-31&quot;:39.48},{&quot;2026-08-01&quot;:39.48},{&quot;2026-08-02&quot;:39.48},{&quot;2026-08-03&quot;:39.48},{&quot;2026-08-04&quot;:39.48},{&quot;2026-08-05&quot;:39.48},{&quot;2026-08-07&quot;:39.52},{&quot;2026-08-08&quot;:39.52},{&quot;2026-08-09&quot;:39.52},{&quot;2026-08-10&quot;:39.52},{&quot;2026-08-11&quot;:39.52},{&quot;2026-08-12&quot;:39.52},{&quot;2026-08-13&quot;:39.52},{&quot;2026-08-14&quot;:39.36},{&quot;2026-08-15&quot;:39.36},{&quot;2026-08-16&quot;:39.36},{&quot;2026-08-17&quot;:39.36},{&quot;2026-08-18&quot;:39.36},{&quot;2026-08-19&quot;:39.0},{&quot;2026-08-20&quot;:39.0},{&quot;2026-08-21&quot;:38.66},{&quot;2026-08-22&quot;:38.33},{&quot;2026-08-23&quot;:38.33},{&quot;2026-08-24&quot;:38.33},{&quot;2026-08-25&quot;:38.33},{&quot;2026-08-26&quot;:38.33},{&quot;2026-08-27&quot;:38.33},{&quot;2026-08-28&quot;:38.07},{&quot;2026-08-29&quot;:38.07},{&quot;2026-08-30&quot;:37.72},{&quot;2026-08-31&quot;:37.72},{&quot;2026-09-01&quot;:37.72},{&quot;2026-09-02&quot;:37.72},{&quot;2026-09-03&quot;:37.72},{&quot;2026-09-04&quot;:37.72},{&quot;2026-09-05&quot;:37.72},{&quot;2026-09-06&quot;:37.72},{&quot;2026-09-07&quot;:37.72},{&quot;2026-09-08&quot;:37.72},{&quot;2026-09-09&quot;:37.81},{&quot;2026-09-10&quot;:37.81},{&quot;2026-09-11&quot;:37.67}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:31.74},{&quot;2026-06-11&quot;:31.81},{&quot;2026-06-12&quot;:32.7},{&quot;2026-06-13&quot;:32.24},{&quot;2026-06-14&quot;:31.87},{&quot;2026-06-15&quot;:32.02},{&quot;2026-06-16&quot;:31.32},{&quot;2026-06-17&quot;:30.8},{&quot;2026-06-18&quot;:30.77},{&quot;2026-06-19&quot;:30.65},{&quot;2026-06-20&quot;:29.77},{&quot;2026-06-21&quot;:29.42},{&quot;2026-06-22&quot;:29.64},{&quot;2026-06-23&quot;:29.26},{&quot;2026-06-24&quot;:29.56},{&quot;2026-06-25&quot;:29.65},{&quot;2026-06-26&quot;:29.85},{&quot;2026-06-27&quot;:29.77},{&quot;2026-06-28&quot;:29.91},{&quot;2026-06-29&quot;:29.79},{&quot;2026-06-30&quot;:29.74},{&quot;2026-07-01&quot;:29.68},{&quot;2026-07-02&quot;:29.5},{&quot;2026-07-03&quot;:28.12},{&quot;2026-07-04&quot;:27.74},{&quot;2026-07-05&quot;:27.53},{&quot;2026-07-06&quot;:27.37},{&quot;2026-07-07&quot;:27.31},{&quot;2026-07-08&quot;:28.24},{&quot;2026-07-09&quot;:28.43},{&quot;2026-07-10&quot;:28.51},{&quot;2026-07-11&quot;:28.46},{&quot;2026-07-12&quot;:28.43},{&quot;2026-07-13&quot;:28.2},{&quot;2026-07-14&quot;:28.31},{&quot;2026-07-15&quot;:28.25},{&quot;2026-07-16&quot;:28.19},{&quot;2026-07-17&quot;:27.75},{&quot;2026-07-18&quot;:26.84},{&quot;2026-07-19&quot;:27.11},{&quot;2026-07-20&quot;:27.01},{&quot;2026-07-21&quot;:27.07},{&quot;2026-07-23&quot;:27.71},{&quot;2026-07-25&quot;:27.92},{&quot;2026-07-26&quot;:27.86},{&quot;2026-07-27&quot;:27.25},{&quot;2026-07-29&quot;:27.42},{&quot;2026-07-30&quot;:27.74},{&quot;2026-07-31&quot;:27.75},{&quot;2026-08-01&quot;:27.81},{&quot;2026-08-02&quot;:27.78},{&quot;2026-08-03&quot;:27.74},{&quot;2026-08-04&quot;:27.73},{&quot;2026-08-05&quot;:27.68},{&quot;2026-08-07&quot;:27.96},{&quot;2026-08-08&quot;:28.12},{&quot;2026-08-09&quot;:28.08},{&quot;2026-08-10&quot;:28.3},{&quot;2026-08-11&quot;:28.31},{&quot;2026-08-12&quot;:28.6},{&quot;2026-08-13&quot;:28.65},{&quot;2026-08-14&quot;:28.59},{&quot;2026-08-15&quot;:28.65},{&quot;2026-08-16&quot;:28.56},{&quot;2026-08-17&quot;:28.26},{&quot;2026-08-18&quot;:28.19},{&quot;2026-08-19&quot;:28.28},{&quot;2026-08-20&quot;:28.28},{&quot;2026-08-21&quot;:28.11},{&quot;2026-08-22&quot;:28.09},{&quot;2026-08-23&quot;:28.38},{&quot;2026-08-24&quot;:28.48},{&quot;2026-08-25&quot;:28.48},{&quot;2026-08-26&quot;:28.86},{&quot;2026-08-27&quot;:28.73},{&quot;2026-08-28&quot;:28.48},{&quot;2026-08-29&quot;:28.48},{&quot;2026-08-30&quot;:27.92},{&quot;2026-08-31&quot;:27.95},{&quot;2026-09-01&quot;:27.95},{&quot;2026-09-02&quot;:28.14},{&quot;2026-09-03&quot;:28.35},{&quot;2026-09-04&quot;:28.69},{&quot;2026-09-05&quot;:28.72},{&quot;2026-09-06&quot;:29.36},{&quot;2026-09-07&quot;:29.22},{&quot;2026-09-08&quot;:29.5},{&quot;2026-09-09&quot;:29.57},{&quot;2026-09-10&quot;:29.85},{&quot;2026-09-11&quot;:30.08}]}"
        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="21043"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2xm ss-mythic ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Sword of Light and Shadow" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/3/a/3a195efe-8c4f-479d-bd0f-563ee4bb49a1.jpg?1783930065" />

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

      <div class="flex-1 min-w-0">
        <h3 class="font-semibold text-nine-white">
            Sword of Light and Shadow
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Sword of Light and Shadow" src="https://cards.scryfall.io/large/front/3/a/3a195efe-8c4f-479d-bd0f-563ee4bb49a1.jpg?1783930065" />
    </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.77
              </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">
                $29.96
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:28.59},{&quot;2026-06-14&quot;:28.59},{&quot;2026-06-15&quot;:28.59},{&quot;2026-06-16&quot;:28.59},{&quot;2026-06-17&quot;:28.59},{&quot;2026-06-18&quot;:28.79},{&quot;2026-06-19&quot;:28.79},{&quot;2026-06-20&quot;:28.99},{&quot;2026-06-21&quot;:28.99},{&quot;2026-06-22&quot;:28.99},{&quot;2026-06-23&quot;:28.99},{&quot;2026-06-24&quot;:28.99},{&quot;2026-06-25&quot;:28.99},{&quot;2026-06-26&quot;:28.95},{&quot;2026-06-27&quot;:28.95},{&quot;2026-06-28&quot;:28.95},{&quot;2026-06-29&quot;:28.95},{&quot;2026-06-30&quot;:29.0},{&quot;2026-07-01&quot;:29.0},{&quot;2026-07-02&quot;:29.0},{&quot;2026-07-03&quot;:29.0},{&quot;2026-07-04&quot;:28.61},{&quot;2026-07-05&quot;:28.61},{&quot;2026-07-06&quot;:28.61},{&quot;2026-07-07&quot;:27.81},{&quot;2026-07-08&quot;:27.81},{&quot;2026-07-09&quot;:27.81},{&quot;2026-07-10&quot;:27.79},{&quot;2026-07-11&quot;:27.79},{&quot;2026-07-12&quot;:27.79},{&quot;2026-07-13&quot;:27.79},{&quot;2026-07-14&quot;:27.79},{&quot;2026-07-15&quot;:27.79},{&quot;2026-07-16&quot;:27.79},{&quot;2026-07-17&quot;:27.91},{&quot;2026-07-18&quot;:27.91},{&quot;2026-07-19&quot;:27.91},{&quot;2026-07-20&quot;:27.91},{&quot;2026-07-21&quot;:27.91},{&quot;2026-07-22&quot;:27.91},{&quot;2026-07-23&quot;:27.91},{&quot;2026-07-24&quot;:27.82},{&quot;2026-07-25&quot;:27.82},{&quot;2026-07-26&quot;:27.9},{&quot;2026-07-27&quot;:27.9},{&quot;2026-07-28&quot;:27.9},{&quot;2026-07-29&quot;:27.87},{&quot;2026-07-30&quot;:27.89},{&quot;2026-07-31&quot;:27.89},{&quot;2026-08-01&quot;:27.89},{&quot;2026-08-02&quot;:28.3},{&quot;2026-08-03&quot;:28.3},{&quot;2026-08-04&quot;:28.3},{&quot;2026-08-05&quot;:28.36},{&quot;2026-08-07&quot;:28.69},{&quot;2026-08-08&quot;:28.58},{&quot;2026-08-09&quot;:28.44},{&quot;2026-08-10&quot;:28.44},{&quot;2026-08-11&quot;:28.44},{&quot;2026-08-12&quot;:28.44},{&quot;2026-08-13&quot;:28.54},{&quot;2026-08-14&quot;:28.64},{&quot;2026-08-15&quot;:28.64},{&quot;2026-08-16&quot;:28.64},{&quot;2026-08-17&quot;:28.79},{&quot;2026-08-18&quot;:28.79},{&quot;2026-08-19&quot;:28.79},{&quot;2026-08-20&quot;:28.85},{&quot;2026-08-21&quot;:28.85},{&quot;2026-08-22&quot;:29.01},{&quot;2026-08-23&quot;:29.32},{&quot;2026-08-24&quot;:29.32},{&quot;2026-08-25&quot;:29.32},{&quot;2026-08-26&quot;:29.34},{&quot;2026-08-27&quot;:29.34},{&quot;2026-08-28&quot;:29.34},{&quot;2026-08-29&quot;:29.34},{&quot;2026-08-30&quot;:29.34},{&quot;2026-08-31&quot;:29.34},{&quot;2026-09-01&quot;:29.34},{&quot;2026-09-02&quot;:29.34},{&quot;2026-09-03&quot;:29.34},{&quot;2026-09-04&quot;:29.74},{&quot;2026-09-05&quot;:29.74},{&quot;2026-09-06&quot;:29.74},{&quot;2026-09-07&quot;:29.74},{&quot;2026-09-08&quot;:29.74},{&quot;2026-09-09&quot;:29.74},{&quot;2026-09-10&quot;:29.74},{&quot;2026-09-11&quot;:29.96}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:25.56},{&quot;2026-06-14&quot;:25.56},{&quot;2026-06-15&quot;:25.56},{&quot;2026-06-16&quot;:25.56},{&quot;2026-06-17&quot;:25.56},{&quot;2026-06-18&quot;:25.56},{&quot;2026-06-19&quot;:25.56},{&quot;2026-06-20&quot;:25.56},{&quot;2026-06-21&quot;:25.56},{&quot;2026-06-22&quot;:25.56},{&quot;2026-06-23&quot;:25.56},{&quot;2026-06-24&quot;:25.56},{&quot;2026-06-25&quot;:25.56},{&quot;2026-06-26&quot;:25.56},{&quot;2026-06-27&quot;:25.56},{&quot;2026-06-28&quot;:25.56},{&quot;2026-06-29&quot;:25.56},{&quot;2026-06-30&quot;:25.56},{&quot;2026-07-01&quot;:25.56},{&quot;2026-07-02&quot;:25.56},{&quot;2026-07-03&quot;:25.56},{&quot;2026-07-04&quot;:25.56},{&quot;2026-07-05&quot;:25.56},{&quot;2026-07-06&quot;:25.83},{&quot;2026-07-07&quot;:25.83},{&quot;2026-07-08&quot;:25.83},{&quot;2026-07-09&quot;:25.83},{&quot;2026-07-10&quot;:25.83},{&quot;2026-07-11&quot;:26.15},{&quot;2026-07-12&quot;:26.15},{&quot;2026-07-13&quot;:26.15},{&quot;2026-07-14&quot;:26.15},{&quot;2026-07-15&quot;:26.15},{&quot;2026-07-16&quot;:26.14},{&quot;2026-07-17&quot;:26.14},{&quot;2026-07-18&quot;:26.14},{&quot;2026-07-19&quot;:26.14},{&quot;2026-07-20&quot;:26.14},{&quot;2026-07-21&quot;:26.14},{&quot;2026-07-22&quot;:26.16},{&quot;2026-07-23&quot;:26.16},{&quot;2026-07-24&quot;:26.16},{&quot;2026-07-25&quot;:26.16},{&quot;2026-07-26&quot;:26.16},{&quot;2026-07-27&quot;:26.16},{&quot;2026-07-28&quot;:26.16},{&quot;2026-07-29&quot;:26.16},{&quot;2026-07-30&quot;:26.21},{&quot;2026-07-31&quot;:26.21},{&quot;2026-08-01&quot;:26.21},{&quot;2026-08-02&quot;:26.21},{&quot;2026-08-03&quot;:26.21},{&quot;2026-08-04&quot;:26.21},{&quot;2026-08-05&quot;:26.21},{&quot;2026-08-07&quot;:26.27},{&quot;2026-08-08&quot;:26.27},{&quot;2026-08-09&quot;:26.27},{&quot;2026-08-10&quot;:26.27},{&quot;2026-08-11&quot;:26.27},{&quot;2026-08-12&quot;:26.27},{&quot;2026-08-13&quot;:26.32},{&quot;2026-08-14&quot;:26.37},{&quot;2026-08-15&quot;:26.37},{&quot;2026-08-16&quot;:26.51},{&quot;2026-08-17&quot;:26.51},{&quot;2026-08-18&quot;:26.51},{&quot;2026-08-19&quot;:26.51},{&quot;2026-08-20&quot;:26.51},{&quot;2026-08-21&quot;:26.67},{&quot;2026-08-22&quot;:26.67},{&quot;2026-08-23&quot;:26.67},{&quot;2026-08-24&quot;:26.67},{&quot;2026-08-25&quot;:26.77},{&quot;2026-08-26&quot;:26.77},{&quot;2026-08-27&quot;:26.77},{&quot;2026-08-28&quot;:26.77},{&quot;2026-08-29&quot;:26.77},{&quot;2026-08-30&quot;:26.77},{&quot;2026-08-31&quot;:26.77},{&quot;2026-09-01&quot;:26.77},{&quot;2026-09-02&quot;:26.77},{&quot;2026-09-03&quot;:26.77},{&quot;2026-09-04&quot;:26.84},{&quot;2026-09-05&quot;:26.84},{&quot;2026-09-06&quot;:26.84},{&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.77},{&quot;2026-09-11&quot;:26.77}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Damnation" src="https://cards.scryfall.io/large/front/9/4/941b65da-b9b3-4e15-bab5-bcbfd20dbe05.jpg?1783927827" />
    </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">
                $21.07
              </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">
                $24.48
              </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">$12.50</span>
              <span class="text-xs text-grey-text">Credit: $16.25</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:22.54},{&quot;2026-06-14&quot;:22.54},{&quot;2026-06-15&quot;:22.54},{&quot;2026-06-16&quot;:22.44},{&quot;2026-06-17&quot;:22.44},{&quot;2026-06-18&quot;:22.44},{&quot;2026-06-19&quot;:22.44},{&quot;2026-06-20&quot;:22.44},{&quot;2026-06-21&quot;:22.44},{&quot;2026-06-22&quot;:22.44},{&quot;2026-06-23&quot;:22.44},{&quot;2026-06-24&quot;:22.44},{&quot;2026-06-25&quot;:22.44},{&quot;2026-06-26&quot;:22.44},{&quot;2026-06-27&quot;:22.4},{&quot;2026-06-28&quot;:22.4},{&quot;2026-06-29&quot;:22.4},{&quot;2026-06-30&quot;:22.4},{&quot;2026-07-01&quot;:22.4},{&quot;2026-07-02&quot;:22.4},{&quot;2026-07-03&quot;:22.4},{&quot;2026-07-04&quot;:22.4},{&quot;2026-07-05&quot;:22.4},{&quot;2026-07-06&quot;:22.4},{&quot;2026-07-07&quot;:22.4},{&quot;2026-07-08&quot;:22.4},{&quot;2026-07-09&quot;:22.4},{&quot;2026-07-10&quot;:22.4},{&quot;2026-07-11&quot;:22.4},{&quot;2026-07-12&quot;:22.4},{&quot;2026-07-13&quot;:22.4},{&quot;2026-07-14&quot;:22.4},{&quot;2026-07-15&quot;:22.4},{&quot;2026-07-16&quot;:22.4},{&quot;2026-07-17&quot;:22.4},{&quot;2026-07-18&quot;:22.4},{&quot;2026-07-19&quot;:22.4},{&quot;2026-07-20&quot;:22.4},{&quot;2026-07-21&quot;:22.4},{&quot;2026-07-22&quot;:22.4},{&quot;2026-07-23&quot;:22.4},{&quot;2026-07-24&quot;:22.4},{&quot;2026-07-25&quot;:22.4},{&quot;2026-07-26&quot;:22.4},{&quot;2026-07-27&quot;:22.4},{&quot;2026-07-28&quot;:22.4},{&quot;2026-07-29&quot;:22.4},{&quot;2026-07-30&quot;:22.4},{&quot;2026-07-31&quot;:22.4},{&quot;2026-08-01&quot;:22.54},{&quot;2026-08-02&quot;:22.54},{&quot;2026-08-03&quot;:22.54},{&quot;2026-08-04&quot;:22.54},{&quot;2026-08-05&quot;:22.54},{&quot;2026-08-07&quot;:22.73},{&quot;2026-08-08&quot;:22.73},{&quot;2026-08-09&quot;:22.73},{&quot;2026-08-10&quot;:22.73},{&quot;2026-08-11&quot;:22.73},{&quot;2026-08-12&quot;:22.73},{&quot;2026-08-13&quot;:22.73},{&quot;2026-08-14&quot;:22.73},{&quot;2026-08-15&quot;:22.73},{&quot;2026-08-16&quot;:22.73},{&quot;2026-08-17&quot;:22.73},{&quot;2026-08-18&quot;:22.73},{&quot;2026-08-19&quot;:22.73},{&quot;2026-08-20&quot;:22.73},{&quot;2026-08-21&quot;:22.73},{&quot;2026-08-22&quot;:23.76},{&quot;2026-08-23&quot;:23.76},{&quot;2026-08-24&quot;:23.76},{&quot;2026-08-25&quot;:23.76},{&quot;2026-08-26&quot;:23.76},{&quot;2026-08-27&quot;:23.76},{&quot;2026-08-28&quot;:23.76},{&quot;2026-08-29&quot;:23.76},{&quot;2026-08-30&quot;:23.76},{&quot;2026-08-31&quot;:23.76},{&quot;2026-09-01&quot;:23.76},{&quot;2026-09-02&quot;:23.76},{&quot;2026-09-03&quot;:23.76},{&quot;2026-09-04&quot;:23.76},{&quot;2026-09-05&quot;:23.76},{&quot;2026-09-06&quot;:23.76},{&quot;2026-09-07&quot;:23.76},{&quot;2026-09-08&quot;:24.39},{&quot;2026-09-09&quot;:24.39},{&quot;2026-09-10&quot;:24.48},{&quot;2026-09-11&quot;:24.48}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:20.86},{&quot;2026-06-14&quot;:20.86},{&quot;2026-06-15&quot;:21.09},{&quot;2026-06-16&quot;:21.09},{&quot;2026-06-17&quot;:21.09},{&quot;2026-06-18&quot;:20.77},{&quot;2026-06-19&quot;:20.77},{&quot;2026-06-20&quot;:20.77},{&quot;2026-06-21&quot;:20.82},{&quot;2026-06-22&quot;:21.01},{&quot;2026-06-23&quot;:21.13},{&quot;2026-06-24&quot;:21.13},{&quot;2026-06-25&quot;:20.88},{&quot;2026-06-26&quot;:22.09},{&quot;2026-06-27&quot;:22.04},{&quot;2026-06-28&quot;:22.06},{&quot;2026-06-29&quot;:21.97},{&quot;2026-06-30&quot;:21.97},{&quot;2026-07-01&quot;:22.19},{&quot;2026-07-02&quot;:21.84},{&quot;2026-07-03&quot;:21.84},{&quot;2026-07-04&quot;:22.0},{&quot;2026-07-05&quot;:21.97},{&quot;2026-07-06&quot;:22.12},{&quot;2026-07-07&quot;:22.12},{&quot;2026-07-08&quot;:22.12},{&quot;2026-07-09&quot;:22.09},{&quot;2026-07-10&quot;:22.09},{&quot;2026-07-11&quot;:22.09},{&quot;2026-07-12&quot;:22.23},{&quot;2026-07-13&quot;:22.18},{&quot;2026-07-14&quot;:22.18},{&quot;2026-07-15&quot;:22.18},{&quot;2026-07-16&quot;:21.94},{&quot;2026-07-17&quot;:21.69},{&quot;2026-07-18&quot;:21.69},{&quot;2026-07-19&quot;:21.69},{&quot;2026-07-20&quot;:21.69},{&quot;2026-07-21&quot;:21.69},{&quot;2026-07-22&quot;:21.49},{&quot;2026-07-23&quot;:21.39},{&quot;2026-07-24&quot;:21.39},{&quot;2026-07-25&quot;:21.39},{&quot;2026-07-26&quot;:21.54},{&quot;2026-07-27&quot;:21.68},{&quot;2026-07-28&quot;:21.43},{&quot;2026-07-29&quot;:20.0},{&quot;2026-07-30&quot;:19.96},{&quot;2026-07-31&quot;:19.96},{&quot;2026-08-01&quot;:19.92},{&quot;2026-08-02&quot;:20.04},{&quot;2026-08-03&quot;:19.95},{&quot;2026-08-04&quot;:19.91},{&quot;2026-08-05&quot;:19.75},{&quot;2026-08-07&quot;:19.71},{&quot;2026-08-08&quot;:19.65},{&quot;2026-08-09&quot;:19.69},{&quot;2026-08-10&quot;:19.8},{&quot;2026-08-11&quot;:19.94},{&quot;2026-08-12&quot;:20.37},{&quot;2026-08-13&quot;:20.19},{&quot;2026-08-14&quot;:20.19},{&quot;2026-08-15&quot;:20.19},{&quot;2026-08-16&quot;:20.15},{&quot;2026-08-17&quot;:20.46},{&quot;2026-08-18&quot;:20.16},{&quot;2026-08-19&quot;:19.95},{&quot;2026-08-20&quot;:20.06},{&quot;2026-08-21&quot;:20.06},{&quot;2026-08-22&quot;:20.06},{&quot;2026-08-23&quot;:20.35},{&quot;2026-08-24&quot;:20.32},{&quot;2026-08-25&quot;:20.32},{&quot;2026-08-26&quot;:20.32},{&quot;2026-08-27&quot;:20.32},{&quot;2026-08-28&quot;:20.32},{&quot;2026-08-29&quot;:20.32},{&quot;2026-08-30&quot;:20.75},{&quot;2026-08-31&quot;:20.75},{&quot;2026-09-01&quot;:20.75},{&quot;2026-09-02&quot;:20.59},{&quot;2026-09-03&quot;:20.59},{&quot;2026-09-04&quot;:20.38},{&quot;2026-09-05&quot;:20.35},{&quot;2026-09-06&quot;:20.35},{&quot;2026-09-07&quot;:20.35},{&quot;2026-09-08&quot;:20.59},{&quot;2026-09-09&quot;:20.92},{&quot;2026-09-10&quot;:21.03},{&quot;2026-09-11&quot;:21.07}]}"
        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="10349"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-c19 ss-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">
            Seedborn Muse
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $18.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="Seedborn Muse" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/e/3/e3174fb4-5ce1-4594-b338-e301228e6484.jpg?1783932740" />

        <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">
            Seedborn Muse
        </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 — Spirit</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Seedborn Muse" src="https://cards.scryfall.io/large/front/e/3/e3174fb4-5ce1-4594-b338-e301228e6484.jpg?1783932740" />
    </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.02
              </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">$12.00</span>
              <span class="text-xs text-grey-text">Credit: $15.60</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:13.65},{&quot;2026-06-11&quot;:13.65},{&quot;2026-06-12&quot;:13.66},{&quot;2026-06-13&quot;:13.84},{&quot;2026-06-14&quot;:13.8},{&quot;2026-06-15&quot;:13.65},{&quot;2026-06-16&quot;:13.44},{&quot;2026-06-17&quot;:13.28},{&quot;2026-06-18&quot;:13.55},{&quot;2026-06-19&quot;:13.47},{&quot;2026-06-20&quot;:13.43},{&quot;2026-06-21&quot;:13.43},{&quot;2026-06-22&quot;:13.37},{&quot;2026-06-23&quot;:13.34},{&quot;2026-06-24&quot;:13.36},{&quot;2026-06-25&quot;:13.08},{&quot;2026-06-26&quot;:12.44},{&quot;2026-06-27&quot;:12.84},{&quot;2026-06-28&quot;:12.85},{&quot;2026-06-29&quot;:12.83},{&quot;2026-06-30&quot;:12.88},{&quot;2026-07-01&quot;:12.89},{&quot;2026-07-02&quot;:13.11},{&quot;2026-07-03&quot;:13.11},{&quot;2026-07-04&quot;:13.13},{&quot;2026-07-05&quot;:13.13},{&quot;2026-07-06&quot;:13.24},{&quot;2026-07-07&quot;:13.4},{&quot;2026-07-08&quot;:13.47},{&quot;2026-07-09&quot;:13.95},{&quot;2026-07-10&quot;:14.02},{&quot;2026-07-11&quot;:14.36},{&quot;2026-07-12&quot;:14.69},{&quot;2026-07-13&quot;:14.75},{&quot;2026-07-14&quot;:14.95},{&quot;2026-07-15&quot;:14.99},{&quot;2026-07-16&quot;:14.99},{&quot;2026-07-17&quot;:14.99},{&quot;2026-07-18&quot;:14.93},{&quot;2026-07-19&quot;:14.93},{&quot;2026-07-20&quot;:14.96},{&quot;2026-07-21&quot;:14.96},{&quot;2026-07-23&quot;:14.98},{&quot;2026-07-25&quot;:15.24},{&quot;2026-07-26&quot;:15.24},{&quot;2026-07-27&quot;:15.25},{&quot;2026-07-29&quot;:15.17},{&quot;2026-07-30&quot;:15.28},{&quot;2026-07-31&quot;:15.45},{&quot;2026-08-01&quot;:15.41},{&quot;2026-08-02&quot;:15.3},{&quot;2026-08-03&quot;:15.3},{&quot;2026-08-04&quot;:15.33},{&quot;2026-08-05&quot;:15.26},{&quot;2026-08-07&quot;:15.2},{&quot;2026-08-08&quot;:15.18},{&quot;2026-08-09&quot;:15.14},{&quot;2026-08-10&quot;:15.0},{&quot;2026-08-11&quot;:15.0},{&quot;2026-08-12&quot;:15.0},{&quot;2026-08-13&quot;:15.29},{&quot;2026-08-14&quot;:15.29},{&quot;2026-08-15&quot;:15.28},{&quot;2026-08-16&quot;:15.4},{&quot;2026-08-17&quot;:15.48},{&quot;2026-08-18&quot;:15.53},{&quot;2026-08-19&quot;:15.5},{&quot;2026-08-20&quot;:15.5},{&quot;2026-08-21&quot;:15.63},{&quot;2026-08-22&quot;:15.63},{&quot;2026-08-23&quot;:15.83},{&quot;2026-08-24&quot;:16.54},{&quot;2026-08-25&quot;:16.54},{&quot;2026-08-26&quot;:16.56},{&quot;2026-08-27&quot;:16.53},{&quot;2026-08-28&quot;:16.56},{&quot;2026-08-29&quot;:16.56},{&quot;2026-08-30&quot;:17.03},{&quot;2026-08-31&quot;:17.03},{&quot;2026-09-01&quot;:17.03},{&quot;2026-09-02&quot;:17.03},{&quot;2026-09-03&quot;:17.25},{&quot;2026-09-04&quot;:17.5},{&quot;2026-09-05&quot;:17.48},{&quot;2026-09-06&quot;:17.46},{&quot;2026-09-07&quot;:17.5},{&quot;2026-09-08&quot;:17.52},{&quot;2026-09-09&quot;:17.76},{&quot;2026-09-10&quot;:18.02},{&quot;2026-09-11&quot;:18.02}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="12870"
  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">
            Reflecting Pool
        </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">
              ↓
              1%
            </span>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Reflecting Pool" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/8/18a1b3f5-473d-45ca-be0d-e67e77ba30ce.jpg?1783922656" />

        <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">
            Reflecting Pool
        </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="Reflecting Pool" src="https://cards.scryfall.io/large/front/1/8/18a1b3f5-473d-45ca-be0d-e67e77ba30ce.jpg?1783922656" />
    </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">
                $15.48
              </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">
                $15.80
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-11&quot;:17.86},{&quot;2026-06-12&quot;:17.86},{&quot;2026-06-13&quot;:17.9},{&quot;2026-06-14&quot;:17.7},{&quot;2026-06-15&quot;:18.03},{&quot;2026-06-16&quot;:18.71},{&quot;2026-06-17&quot;:18.78},{&quot;2026-06-18&quot;:18.78},{&quot;2026-06-19&quot;:18.78},{&quot;2026-06-20&quot;:18.78},{&quot;2026-06-21&quot;:18.78},{&quot;2026-06-22&quot;:18.78},{&quot;2026-06-23&quot;:18.78},{&quot;2026-06-24&quot;:18.5},{&quot;2026-06-25&quot;:18.5},{&quot;2026-06-26&quot;:18.5},{&quot;2026-06-27&quot;:18.5},{&quot;2026-06-28&quot;:18.5},{&quot;2026-06-29&quot;:18.51},{&quot;2026-06-30&quot;:18.51},{&quot;2026-07-01&quot;:18.51},{&quot;2026-07-02&quot;:18.51},{&quot;2026-07-03&quot;:18.51},{&quot;2026-07-04&quot;:18.61},{&quot;2026-07-05&quot;:18.61},{&quot;2026-07-06&quot;:18.61},{&quot;2026-07-07&quot;:18.61},{&quot;2026-07-08&quot;:18.61},{&quot;2026-07-09&quot;:18.61},{&quot;2026-07-10&quot;:18.61},{&quot;2026-07-11&quot;:18.37},{&quot;2026-07-12&quot;:18.37},{&quot;2026-07-13&quot;:18.37},{&quot;2026-07-14&quot;:18.37},{&quot;2026-07-15&quot;:18.37},{&quot;2026-07-16&quot;:18.37},{&quot;2026-07-17&quot;:18.37},{&quot;2026-07-18&quot;:18.37},{&quot;2026-07-19&quot;:18.37},{&quot;2026-07-20&quot;:18.37},{&quot;2026-07-21&quot;:18.37},{&quot;2026-07-23&quot;:18.41},{&quot;2026-07-25&quot;:18.41},{&quot;2026-07-26&quot;:18.41},{&quot;2026-07-27&quot;:18.44},{&quot;2026-07-28&quot;:18.42},{&quot;2026-07-29&quot;:18.42},{&quot;2026-07-30&quot;:18.37},{&quot;2026-07-31&quot;:18.14},{&quot;2026-08-01&quot;:18.05},{&quot;2026-08-02&quot;:18.05},{&quot;2026-08-03&quot;:17.98},{&quot;2026-08-04&quot;:17.85},{&quot;2026-08-05&quot;:17.85},{&quot;2026-08-07&quot;:17.85},{&quot;2026-08-08&quot;:17.7},{&quot;2026-08-09&quot;:17.7},{&quot;2026-08-10&quot;:17.71},{&quot;2026-08-11&quot;:17.53},{&quot;2026-08-12&quot;:16.95},{&quot;2026-08-13&quot;:16.95},{&quot;2026-08-14&quot;:16.95},{&quot;2026-08-15&quot;:16.95},{&quot;2026-08-16&quot;:16.95},{&quot;2026-08-17&quot;:16.95},{&quot;2026-08-18&quot;:16.95},{&quot;2026-08-19&quot;:16.95},{&quot;2026-08-20&quot;:16.95},{&quot;2026-08-21&quot;:16.95},{&quot;2026-08-22&quot;:16.95},{&quot;2026-08-23&quot;:16.91},{&quot;2026-08-24&quot;:16.62},{&quot;2026-08-25&quot;:16.62},{&quot;2026-08-26&quot;:16.62},{&quot;2026-08-27&quot;:16.62},{&quot;2026-08-28&quot;:15.97},{&quot;2026-08-29&quot;:15.97},{&quot;2026-08-30&quot;:15.86},{&quot;2026-08-31&quot;:15.84},{&quot;2026-09-01&quot;:15.84},{&quot;2026-09-02&quot;:15.84},{&quot;2026-09-03&quot;:15.96},{&quot;2026-09-04&quot;:15.96},{&quot;2026-09-05&quot;:15.96},{&quot;2026-09-06&quot;:15.96},{&quot;2026-09-07&quot;:15.56},{&quot;2026-09-08&quot;:15.56},{&quot;2026-09-09&quot;:15.75},{&quot;2026-09-10&quot;:15.78},{&quot;2026-09-11&quot;:15.8}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:16.31},{&quot;2026-06-12&quot;:16.52},{&quot;2026-06-13&quot;:16.52},{&quot;2026-06-14&quot;:16.73},{&quot;2026-06-15&quot;:16.6},{&quot;2026-06-16&quot;:16.55},{&quot;2026-06-17&quot;:16.16},{&quot;2026-06-18&quot;:15.94},{&quot;2026-06-19&quot;:15.78},{&quot;2026-06-20&quot;:15.62},{&quot;2026-06-21&quot;:15.54},{&quot;2026-06-22&quot;:15.01},{&quot;2026-06-23&quot;:15.16},{&quot;2026-06-24&quot;:15.16},{&quot;2026-06-25&quot;:14.69},{&quot;2026-06-26&quot;:14.13},{&quot;2026-06-27&quot;:14.74},{&quot;2026-06-28&quot;:14.85},{&quot;2026-06-29&quot;:15.02},{&quot;2026-06-30&quot;:15.19},{&quot;2026-07-01&quot;:15.2},{&quot;2026-07-02&quot;:15.06},{&quot;2026-07-03&quot;:15.03},{&quot;2026-07-04&quot;:14.94},{&quot;2026-07-05&quot;:14.79},{&quot;2026-07-06&quot;:14.97},{&quot;2026-07-07&quot;:14.95},{&quot;2026-07-08&quot;:15.08},{&quot;2026-07-09&quot;:15.19},{&quot;2026-07-10&quot;:15.2},{&quot;2026-07-11&quot;:15.18},{&quot;2026-07-12&quot;:15.18},{&quot;2026-07-13&quot;:15.12},{&quot;2026-07-14&quot;:15.03},{&quot;2026-07-15&quot;:15.0},{&quot;2026-07-16&quot;:14.76},{&quot;2026-07-17&quot;:14.78},{&quot;2026-07-18&quot;:14.8},{&quot;2026-07-19&quot;:14.66},{&quot;2026-07-20&quot;:14.67},{&quot;2026-07-21&quot;:14.57},{&quot;2026-07-23&quot;:14.3},{&quot;2026-07-25&quot;:14.57},{&quot;2026-07-26&quot;:14.64},{&quot;2026-07-27&quot;:14.71},{&quot;2026-07-28&quot;:14.81},{&quot;2026-07-29&quot;:14.74},{&quot;2026-07-30&quot;:14.72},{&quot;2026-07-31&quot;:14.74},{&quot;2026-08-01&quot;:14.74},{&quot;2026-08-02&quot;:14.87},{&quot;2026-08-03&quot;:14.99},{&quot;2026-08-04&quot;:15.0},{&quot;2026-08-05&quot;:15.0},{&quot;2026-08-07&quot;:15.04},{&quot;2026-08-08&quot;:15.06},{&quot;2026-08-09&quot;:15.11},{&quot;2026-08-10&quot;:15.08},{&quot;2026-08-11&quot;:14.98},{&quot;2026-08-12&quot;:14.97},{&quot;2026-08-13&quot;:15.05},{&quot;2026-08-14&quot;:15.05},{&quot;2026-08-15&quot;:15.05},{&quot;2026-08-16&quot;:15.0},{&quot;2026-08-17&quot;:14.96},{&quot;2026-08-18&quot;:14.98},{&quot;2026-08-19&quot;:14.97},{&quot;2026-08-20&quot;:14.97},{&quot;2026-08-21&quot;:15.02},{&quot;2026-08-22&quot;:15.07},{&quot;2026-08-23&quot;:14.97},{&quot;2026-08-24&quot;:15.05},{&quot;2026-08-25&quot;:15.05},{&quot;2026-08-26&quot;:14.91},{&quot;2026-08-27&quot;:14.82},{&quot;2026-08-28&quot;:14.93},{&quot;2026-08-29&quot;:14.93},{&quot;2026-08-30&quot;:14.96},{&quot;2026-08-31&quot;:15.49},{&quot;2026-09-01&quot;:15.49},{&quot;2026-09-02&quot;:15.66},{&quot;2026-09-03&quot;:16.0},{&quot;2026-09-04&quot;:15.76},{&quot;2026-09-05&quot;:15.71},{&quot;2026-09-06&quot;:15.62},{&quot;2026-09-07&quot;:15.71},{&quot;2026-09-08&quot;:15.63},{&quot;2026-09-09&quot;:15.67},{&quot;2026-09-10&quot;:15.5},{&quot;2026-09-11&quot;:15.48}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Triumph of the Hordes" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/6/4/64034e9c-1a1a-43e3-b101-cb2c7bbbccda.jpg?1783932130" />

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Triumph of the Hordes" src="https://cards.scryfall.io/large/front/6/4/64034e9c-1a1a-43e3-b101-cb2c7bbbccda.jpg?1783932130" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:13.87},{&quot;2026-06-14&quot;:13.6},{&quot;2026-06-15&quot;:14.43},{&quot;2026-06-16&quot;:14.31},{&quot;2026-06-17&quot;:14.37},{&quot;2026-06-18&quot;:13.67},{&quot;2026-06-19&quot;:13.76},{&quot;2026-06-20&quot;:13.76},{&quot;2026-06-21&quot;:13.9},{&quot;2026-06-22&quot;:13.9},{&quot;2026-06-23&quot;:13.9},{&quot;2026-06-24&quot;:13.71},{&quot;2026-06-25&quot;:13.47},{&quot;2026-06-26&quot;:13.39},{&quot;2026-06-27&quot;:13.24},{&quot;2026-06-28&quot;:13.21},{&quot;2026-06-29&quot;:13.23},{&quot;2026-06-30&quot;:12.86},{&quot;2026-07-01&quot;:12.86},{&quot;2026-07-02&quot;:12.59},{&quot;2026-07-03&quot;:12.36},{&quot;2026-07-04&quot;:12.43},{&quot;2026-07-05&quot;:12.43},{&quot;2026-07-06&quot;:12.43},{&quot;2026-07-07&quot;:12.43},{&quot;2026-07-08&quot;:12.3},{&quot;2026-07-09&quot;:12.25},{&quot;2026-07-10&quot;:12.1},{&quot;2026-07-11&quot;:12.0},{&quot;2026-07-12&quot;:11.75},{&quot;2026-07-13&quot;:11.89},{&quot;2026-07-14&quot;:12.09},{&quot;2026-07-15&quot;:12.09},{&quot;2026-07-16&quot;:12.05},{&quot;2026-07-17&quot;:12.14},{&quot;2026-07-18&quot;:12.51},{&quot;2026-07-19&quot;:12.91},{&quot;2026-07-20&quot;:12.89},{&quot;2026-07-21&quot;:13.03},{&quot;2026-07-22&quot;:12.86},{&quot;2026-07-23&quot;:12.86},{&quot;2026-07-24&quot;:12.78},{&quot;2026-07-25&quot;:12.82},{&quot;2026-07-26&quot;:12.75},{&quot;2026-07-27&quot;:12.81},{&quot;2026-07-28&quot;:13.01},{&quot;2026-07-29&quot;:13.01},{&quot;2026-07-30&quot;:12.79},{&quot;2026-07-31&quot;:12.82},{&quot;2026-08-01&quot;:12.82},{&quot;2026-08-02&quot;:12.82},{&quot;2026-08-03&quot;:12.64},{&quot;2026-08-04&quot;:12.5},{&quot;2026-08-05&quot;:12.5},{&quot;2026-08-07&quot;:12.38},{&quot;2026-08-08&quot;:12.5},{&quot;2026-08-09&quot;:12.4},{&quot;2026-08-10&quot;:12.42},{&quot;2026-08-11&quot;:12.32},{&quot;2026-08-12&quot;:12.32},{&quot;2026-08-13&quot;:12.36},{&quot;2026-08-14&quot;:12.36},{&quot;2026-08-15&quot;:12.62},{&quot;2026-08-16&quot;:12.72},{&quot;2026-08-17&quot;:12.68},{&quot;2026-08-18&quot;:12.63},{&quot;2026-08-19&quot;:12.65},{&quot;2026-08-20&quot;:12.84},{&quot;2026-08-21&quot;:12.62},{&quot;2026-08-22&quot;:12.52},{&quot;2026-08-23&quot;:12.8},{&quot;2026-08-24&quot;:13.14},{&quot;2026-08-25&quot;:13.3},{&quot;2026-08-26&quot;:13.3},{&quot;2026-08-27&quot;:13.3},{&quot;2026-08-28&quot;:13.37},{&quot;2026-08-29&quot;:13.37},{&quot;2026-08-30&quot;:13.37},{&quot;2026-08-31&quot;:13.3},{&quot;2026-09-01&quot;:12.95},{&quot;2026-09-02&quot;:12.93},{&quot;2026-09-03&quot;:12.74},{&quot;2026-09-04&quot;:12.73},{&quot;2026-09-05&quot;:12.95},{&quot;2026-09-06&quot;:13.45},{&quot;2026-09-07&quot;:13.45},{&quot;2026-09-08&quot;:13.13},{&quot;2026-09-09&quot;:13.17},{&quot;2026-09-10&quot;:13.11},{&quot;2026-09-11&quot;:13.11}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="40261"
  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">
            Wolverine Riders
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Elf Warrior
      </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">
            $12.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="Wolverine Riders" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/0/70fd0439-294b-454c-b2af-e814b85f4590.jpg?1783928337" />

        <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">
            Wolverine Riders
        </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 — Elf Warrior</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Wolverine Riders" src="https://cards.scryfall.io/large/front/7/0/70fd0439-294b-454c-b2af-e814b85f4590.jpg?1783928337" />
    </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.68
              </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">$10.00</span>
              <span class="text-xs text-grey-text">Credit: $13.00</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-11&quot;:12.99},{&quot;2026-06-12&quot;:12.56},{&quot;2026-06-13&quot;:12.4},{&quot;2026-06-14&quot;:12.49},{&quot;2026-06-15&quot;:12.42},{&quot;2026-06-16&quot;:12.39},{&quot;2026-06-17&quot;:12.33},{&quot;2026-06-18&quot;:12.38},{&quot;2026-06-19&quot;:12.48},{&quot;2026-06-20&quot;:12.38},{&quot;2026-06-21&quot;:12.54},{&quot;2026-06-22&quot;:12.38},{&quot;2026-06-23&quot;:12.11},{&quot;2026-06-24&quot;:12.13},{&quot;2026-06-25&quot;:12.06},{&quot;2026-06-26&quot;:11.94},{&quot;2026-06-27&quot;:12.26},{&quot;2026-06-28&quot;:12.23},{&quot;2026-06-29&quot;:12.25},{&quot;2026-06-30&quot;:12.25},{&quot;2026-07-01&quot;:12.33},{&quot;2026-07-02&quot;:12.33},{&quot;2026-07-03&quot;:12.33},{&quot;2026-07-04&quot;:12.38},{&quot;2026-07-05&quot;:12.49},{&quot;2026-07-06&quot;:12.49},{&quot;2026-07-07&quot;:12.53},{&quot;2026-07-08&quot;:12.4},{&quot;2026-07-09&quot;:12.41},{&quot;2026-07-10&quot;:12.31},{&quot;2026-07-11&quot;:12.27},{&quot;2026-07-12&quot;:12.24},{&quot;2026-07-13&quot;:12.48},{&quot;2026-07-14&quot;:12.13},{&quot;2026-07-15&quot;:12.33},{&quot;2026-07-16&quot;:12.45},{&quot;2026-07-17&quot;:12.41},{&quot;2026-07-18&quot;:12.41},{&quot;2026-07-19&quot;:12.74},{&quot;2026-07-20&quot;:12.36},{&quot;2026-07-21&quot;:12.28},{&quot;2026-07-23&quot;:12.14},{&quot;2026-07-25&quot;:11.81},{&quot;2026-07-26&quot;:12.0},{&quot;2026-07-27&quot;:12.04},{&quot;2026-07-28&quot;:12.08},{&quot;2026-07-29&quot;:12.21},{&quot;2026-07-30&quot;:12.25},{&quot;2026-07-31&quot;:12.2},{&quot;2026-08-01&quot;:12.34},{&quot;2026-08-02&quot;:12.21},{&quot;2026-08-03&quot;:12.22},{&quot;2026-08-04&quot;:11.89},{&quot;2026-08-05&quot;:11.88},{&quot;2026-08-07&quot;:11.54},{&quot;2026-08-08&quot;:11.83},{&quot;2026-08-09&quot;:11.97},{&quot;2026-08-10&quot;:12.06},{&quot;2026-08-11&quot;:12.14},{&quot;2026-08-12&quot;:11.95},{&quot;2026-08-13&quot;:11.72},{&quot;2026-08-14&quot;:11.87},{&quot;2026-08-15&quot;:11.78},{&quot;2026-08-16&quot;:11.76},{&quot;2026-08-17&quot;:11.76},{&quot;2026-08-18&quot;:11.97},{&quot;2026-08-19&quot;:11.74},{&quot;2026-08-20&quot;:11.74},{&quot;2026-08-21&quot;:11.82},{&quot;2026-08-22&quot;:12.12},{&quot;2026-08-23&quot;:12.08},{&quot;2026-08-24&quot;:12.34},{&quot;2026-08-25&quot;:12.34},{&quot;2026-08-26&quot;:12.4},{&quot;2026-08-27&quot;:12.39},{&quot;2026-08-28&quot;:12.41},{&quot;2026-08-29&quot;:12.41},{&quot;2026-08-30&quot;:12.39},{&quot;2026-08-31&quot;:12.42},{&quot;2026-09-01&quot;:12.42},{&quot;2026-09-02&quot;:12.45},{&quot;2026-09-03&quot;:12.39},{&quot;2026-09-04&quot;:12.34},{&quot;2026-09-05&quot;:12.36},{&quot;2026-09-06&quot;:12.52},{&quot;2026-09-07&quot;:12.46},{&quot;2026-09-08&quot;:12.5},{&quot;2026-09-09&quot;:12.69},{&quot;2026-09-10&quot;:12.68},{&quot;2026-09-11&quot;:12.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="80341"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

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

          <span class="text-sm font-medium text-nine-white">
            $12.13
          </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="Wirewood Lodge" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/f/cf3f4954-ab60-44a9-b2d6-a4be598e8ce6.jpg?1783932125" />

        <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">
            Wirewood Lodge
        </h3>

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Wirewood Lodge" src="https://cards.scryfall.io/large/front/c/f/cf3f4954-ab60-44a9-b2d6-a4be598e8ce6.jpg?1783932125" />
    </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.13
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-08&quot;:9.82},{&quot;2026-06-10&quot;:9.97},{&quot;2026-06-11&quot;:10.12},{&quot;2026-06-12&quot;:9.95},{&quot;2026-06-13&quot;:10.14},{&quot;2026-06-14&quot;:9.97},{&quot;2026-06-15&quot;:10.12},{&quot;2026-06-16&quot;:10.12},{&quot;2026-06-17&quot;:9.95},{&quot;2026-06-18&quot;:9.99},{&quot;2026-06-19&quot;:10.32},{&quot;2026-06-20&quot;:10.3},{&quot;2026-06-21&quot;:10.3},{&quot;2026-06-22&quot;:10.3},{&quot;2026-06-24&quot;:9.98},{&quot;2026-06-25&quot;:9.98},{&quot;2026-06-26&quot;:9.98},{&quot;2026-06-27&quot;:9.98},{&quot;2026-06-28&quot;:10.01},{&quot;2026-06-29&quot;:10.0},{&quot;2026-06-30&quot;:10.0},{&quot;2026-07-01&quot;:10.0},{&quot;2026-07-02&quot;:10.16},{&quot;2026-07-03&quot;:10.61},{&quot;2026-07-04&quot;:10.61},{&quot;2026-07-05&quot;:10.67},{&quot;2026-07-06&quot;:10.95},{&quot;2026-07-07&quot;:10.86},{&quot;2026-07-08&quot;:11.15},{&quot;2026-07-09&quot;:10.83},{&quot;2026-07-10&quot;:10.87},{&quot;2026-07-11&quot;:10.66},{&quot;2026-07-12&quot;:10.63},{&quot;2026-07-13&quot;:10.89},{&quot;2026-07-14&quot;:10.89},{&quot;2026-07-15&quot;:10.84},{&quot;2026-07-16&quot;:10.65},{&quot;2026-07-17&quot;:10.25},{&quot;2026-07-18&quot;:10.25},{&quot;2026-07-19&quot;:9.69},{&quot;2026-07-20&quot;:9.59},{&quot;2026-07-21&quot;:9.44},{&quot;2026-07-23&quot;:9.31},{&quot;2026-07-25&quot;:9.28},{&quot;2026-07-26&quot;:9.42},{&quot;2026-07-27&quot;:9.41},{&quot;2026-07-29&quot;:9.31},{&quot;2026-07-30&quot;:9.31},{&quot;2026-07-31&quot;:9.16},{&quot;2026-08-01&quot;:9.16},{&quot;2026-08-02&quot;:9.13},{&quot;2026-08-03&quot;:9.16},{&quot;2026-08-04&quot;:9.26},{&quot;2026-08-05&quot;:9.26},{&quot;2026-08-07&quot;:9.26},{&quot;2026-08-08&quot;:9.26},{&quot;2026-08-09&quot;:9.44},{&quot;2026-08-10&quot;:9.4},{&quot;2026-08-11&quot;:9.39},{&quot;2026-08-12&quot;:9.53},{&quot;2026-08-13&quot;:9.78},{&quot;2026-08-14&quot;:9.76},{&quot;2026-08-15&quot;:9.76},{&quot;2026-08-16&quot;:9.9},{&quot;2026-08-17&quot;:9.78},{&quot;2026-08-18&quot;:9.64},{&quot;2026-08-19&quot;:9.72},{&quot;2026-08-20&quot;:9.72},{&quot;2026-08-21&quot;:10.27},{&quot;2026-08-22&quot;:10.58},{&quot;2026-08-23&quot;:10.51},{&quot;2026-08-24&quot;:10.4},{&quot;2026-08-25&quot;:10.4},{&quot;2026-08-26&quot;:10.4},{&quot;2026-08-27&quot;:10.7},{&quot;2026-08-28&quot;:10.77},{&quot;2026-08-29&quot;:10.77},{&quot;2026-08-30&quot;:10.71},{&quot;2026-08-31&quot;:10.91},{&quot;2026-09-01&quot;:10.91},{&quot;2026-09-02&quot;:11.03},{&quot;2026-09-03&quot;:11.76},{&quot;2026-09-04&quot;:11.85},{&quot;2026-09-05&quot;:11.85},{&quot;2026-09-06&quot;:12.09},{&quot;2026-09-07&quot;:12.26},{&quot;2026-09-08&quot;:12.39},{&quot;2026-09-09&quot;:12.39},{&quot;2026-09-10&quot;:12.39},{&quot;2026-09-11&quot;:12.13}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $11.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="Umbral Mantle" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/6/1/616e50a5-9c29-4557-a1a8-d64a2cd28d2e.jpg?1783925193" />

        <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">
            Umbral Mantle
        </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-3'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Umbral Mantle" src="https://cards.scryfall.io/large/front/6/1/616e50a5-9c29-4557-a1a8-d64a2cd28d2e.jpg?1783925193" />
    </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.02
              </span>

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

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$4.60</span>
              <span class="text-xs text-grey-text">Credit: $5.98</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;:10.64},{&quot;2026-06-13&quot;:10.69},{&quot;2026-06-14&quot;:10.69},{&quot;2026-06-15&quot;:10.61},{&quot;2026-06-16&quot;:10.61},{&quot;2026-06-17&quot;:10.61},{&quot;2026-06-18&quot;:10.62},{&quot;2026-06-19&quot;:10.61},{&quot;2026-06-20&quot;:10.66},{&quot;2026-06-21&quot;:10.73},{&quot;2026-06-22&quot;:10.76},{&quot;2026-06-23&quot;:10.83},{&quot;2026-06-24&quot;:10.59},{&quot;2026-06-25&quot;:10.37},{&quot;2026-06-26&quot;:10.36},{&quot;2026-06-27&quot;:10.29},{&quot;2026-06-28&quot;:10.55},{&quot;2026-06-29&quot;:10.59},{&quot;2026-06-30&quot;:10.56},{&quot;2026-07-01&quot;:10.51},{&quot;2026-07-02&quot;:10.55},{&quot;2026-07-03&quot;:10.54},{&quot;2026-07-04&quot;:10.55},{&quot;2026-07-05&quot;:10.63},{&quot;2026-07-06&quot;:10.63},{&quot;2026-07-07&quot;:10.63},{&quot;2026-07-08&quot;:10.63},{&quot;2026-07-09&quot;:10.97},{&quot;2026-07-10&quot;:11.35},{&quot;2026-07-11&quot;:11.36},{&quot;2026-07-12&quot;:11.5},{&quot;2026-07-13&quot;:11.89},{&quot;2026-07-14&quot;:11.62},{&quot;2026-07-15&quot;:11.54},{&quot;2026-07-16&quot;:11.54},{&quot;2026-07-17&quot;:11.54},{&quot;2026-07-18&quot;:11.62},{&quot;2026-07-19&quot;:11.49},{&quot;2026-07-20&quot;:11.45},{&quot;2026-07-21&quot;:11.65},{&quot;2026-07-23&quot;:11.11},{&quot;2026-07-24&quot;:10.95},{&quot;2026-07-25&quot;:10.68},{&quot;2026-07-26&quot;:10.58},{&quot;2026-07-27&quot;:10.54},{&quot;2026-07-28&quot;:10.57},{&quot;2026-07-29&quot;:10.56},{&quot;2026-07-30&quot;:10.78},{&quot;2026-07-31&quot;:10.42},{&quot;2026-08-01&quot;:10.2},{&quot;2026-08-02&quot;:10.22},{&quot;2026-08-03&quot;:10.64},{&quot;2026-08-04&quot;:10.64},{&quot;2026-08-05&quot;:10.66},{&quot;2026-08-07&quot;:10.37},{&quot;2026-08-08&quot;:10.38},{&quot;2026-08-09&quot;:10.5},{&quot;2026-08-10&quot;:10.58},{&quot;2026-08-11&quot;:10.67},{&quot;2026-08-12&quot;:10.51},{&quot;2026-08-13&quot;:10.22},{&quot;2026-08-14&quot;:10.22},{&quot;2026-08-15&quot;:10.27},{&quot;2026-08-16&quot;:10.17},{&quot;2026-08-17&quot;:10.65},{&quot;2026-08-18&quot;:10.69},{&quot;2026-08-19&quot;:10.74},{&quot;2026-08-20&quot;:10.74},{&quot;2026-08-21&quot;:11.45},{&quot;2026-08-22&quot;:11.45},{&quot;2026-08-23&quot;:11.57},{&quot;2026-08-24&quot;:11.69},{&quot;2026-08-25&quot;:11.94},{&quot;2026-08-26&quot;:12.3},{&quot;2026-08-27&quot;:12.45},{&quot;2026-08-28&quot;:12.57},{&quot;2026-08-29&quot;:12.57},{&quot;2026-08-30&quot;:12.87},{&quot;2026-08-31&quot;:13.13},{&quot;2026-09-01&quot;:12.72},{&quot;2026-09-02&quot;:12.6},{&quot;2026-09-03&quot;:12.54},{&quot;2026-09-04&quot;:12.5},{&quot;2026-09-05&quot;:12.39},{&quot;2026-09-06&quot;:12.17},{&quot;2026-09-07&quot;:11.98},{&quot;2026-09-08&quot;:11.85},{&quot;2026-09-09&quot;:11.59},{&quot;2026-09-10&quot;:10.95},{&quot;2026-09-11&quot;:11.02}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="17541"
  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-dis 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">
            Magewright&#39;s Stone
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $10.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="Magewright&#39;s Stone" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/2/d27e8442-91ce-4106-bfc6-a1f6e0e34c2d.jpg?1783943382" />

        <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">
            Magewright&#39;s Stone
        </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="Magewright&#39;s Stone" src="https://cards.scryfall.io/large/front/d/2/d27e8442-91ce-4106-bfc6-a1f6e0e34c2d.jpg?1783943382" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:18.8},{&quot;2026-06-11&quot;:18.8},{&quot;2026-06-12&quot;:18.8},{&quot;2026-06-13&quot;:18.8},{&quot;2026-06-14&quot;:18.8},{&quot;2026-06-15&quot;:18.8},{&quot;2026-06-16&quot;:18.8},{&quot;2026-06-17&quot;:18.8},{&quot;2026-06-18&quot;:18.8},{&quot;2026-06-19&quot;:18.8},{&quot;2026-06-20&quot;:18.8},{&quot;2026-06-21&quot;:18.8},{&quot;2026-06-22&quot;:18.8},{&quot;2026-06-23&quot;:18.8},{&quot;2026-06-24&quot;:18.8},{&quot;2026-06-25&quot;:18.8},{&quot;2026-06-26&quot;:18.8},{&quot;2026-06-27&quot;:18.8},{&quot;2026-06-28&quot;:18.8},{&quot;2026-06-29&quot;:18.8},{&quot;2026-06-30&quot;:18.8},{&quot;2026-07-01&quot;:18.8},{&quot;2026-07-02&quot;:18.8},{&quot;2026-07-03&quot;:18.8},{&quot;2026-07-04&quot;:18.8},{&quot;2026-07-05&quot;:18.8},{&quot;2026-07-06&quot;:18.8},{&quot;2026-07-07&quot;:18.8},{&quot;2026-07-08&quot;:18.8},{&quot;2026-07-09&quot;:18.8},{&quot;2026-07-10&quot;:18.8},{&quot;2026-07-11&quot;:18.8},{&quot;2026-07-12&quot;:18.8},{&quot;2026-07-13&quot;:18.8},{&quot;2026-07-14&quot;:18.8},{&quot;2026-07-15&quot;:18.8},{&quot;2026-07-16&quot;:18.8},{&quot;2026-07-17&quot;:18.8},{&quot;2026-07-18&quot;:18.8},{&quot;2026-07-19&quot;:18.8},{&quot;2026-07-20&quot;:18.8},{&quot;2026-07-21&quot;:18.8},{&quot;2026-07-23&quot;:18.8},{&quot;2026-07-25&quot;:18.76},{&quot;2026-07-26&quot;:18.76},{&quot;2026-07-27&quot;:18.76},{&quot;2026-07-29&quot;:18.76},{&quot;2026-07-30&quot;:18.76},{&quot;2026-07-31&quot;:18.76},{&quot;2026-08-01&quot;:18.76},{&quot;2026-08-02&quot;:18.76},{&quot;2026-08-03&quot;:18.76},{&quot;2026-08-04&quot;:18.76},{&quot;2026-08-05&quot;:18.32},{&quot;2026-08-07&quot;:18.32},{&quot;2026-08-08&quot;:18.32},{&quot;2026-08-09&quot;:18.55},{&quot;2026-08-10&quot;:18.32},{&quot;2026-08-11&quot;:18.32},{&quot;2026-08-12&quot;:18.32},{&quot;2026-08-13&quot;:18.32},{&quot;2026-08-14&quot;:18.32},{&quot;2026-08-15&quot;:18.32},{&quot;2026-08-16&quot;:18.32},{&quot;2026-08-17&quot;:18.32},{&quot;2026-08-18&quot;:18.32},{&quot;2026-08-19&quot;:18.32},{&quot;2026-08-20&quot;:18.32},{&quot;2026-08-21&quot;:18.32},{&quot;2026-08-22&quot;:18.32},{&quot;2026-08-23&quot;:18.32},{&quot;2026-08-24&quot;:18.32},{&quot;2026-08-25&quot;:18.32},{&quot;2026-08-26&quot;:18.32},{&quot;2026-08-27&quot;:18.32},{&quot;2026-08-28&quot;:18.32},{&quot;2026-08-29&quot;:18.32},{&quot;2026-08-30&quot;:18.32},{&quot;2026-08-31&quot;:18.32},{&quot;2026-09-01&quot;:18.32},{&quot;2026-09-02&quot;:18.32},{&quot;2026-09-03&quot;:18.32},{&quot;2026-09-04&quot;:18.32},{&quot;2026-09-05&quot;:18.32},{&quot;2026-09-06&quot;:18.32},{&quot;2026-09-07&quot;:18.32},{&quot;2026-09-08&quot;:18.32},{&quot;2026-09-09&quot;:18.32},{&quot;2026-09-10&quot;:18.32},{&quot;2026-09-11&quot;:18.32}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:8.43},{&quot;2026-06-11&quot;:8.11},{&quot;2026-06-12&quot;:8.13},{&quot;2026-06-13&quot;:8.13},{&quot;2026-06-14&quot;:8.13},{&quot;2026-06-15&quot;:8.12},{&quot;2026-06-16&quot;:7.73},{&quot;2026-06-17&quot;:7.73},{&quot;2026-06-18&quot;:7.73},{&quot;2026-06-19&quot;:7.73},{&quot;2026-06-20&quot;:7.73},{&quot;2026-06-21&quot;:7.73},{&quot;2026-06-22&quot;:7.73},{&quot;2026-06-23&quot;:7.73},{&quot;2026-06-24&quot;:8.16},{&quot;2026-06-25&quot;:8.53},{&quot;2026-06-26&quot;:8.98},{&quot;2026-06-27&quot;:9.44},{&quot;2026-06-28&quot;:9.44},{&quot;2026-06-29&quot;:9.42},{&quot;2026-06-30&quot;:9.48},{&quot;2026-07-01&quot;:9.48},{&quot;2026-07-02&quot;:9.87},{&quot;2026-07-03&quot;:9.92},{&quot;2026-07-04&quot;:9.92},{&quot;2026-07-05&quot;:9.92},{&quot;2026-07-06&quot;:9.92},{&quot;2026-07-07&quot;:9.92},{&quot;2026-07-08&quot;:9.9},{&quot;2026-07-09&quot;:9.96},{&quot;2026-07-10&quot;:9.93},{&quot;2026-07-11&quot;:9.96},{&quot;2026-07-12&quot;:9.84},{&quot;2026-07-13&quot;:9.84},{&quot;2026-07-14&quot;:9.79},{&quot;2026-07-15&quot;:9.79},{&quot;2026-07-16&quot;:9.79},{&quot;2026-07-17&quot;:9.77},{&quot;2026-07-18&quot;:9.59},{&quot;2026-07-19&quot;:9.72},{&quot;2026-07-20&quot;:9.59},{&quot;2026-07-21&quot;:9.59},{&quot;2026-07-23&quot;:9.65},{&quot;2026-07-25&quot;:9.29},{&quot;2026-07-26&quot;:9.29},{&quot;2026-07-27&quot;:8.86},{&quot;2026-07-29&quot;:8.86},{&quot;2026-07-30&quot;:8.91},{&quot;2026-07-31&quot;:8.83},{&quot;2026-08-01&quot;:8.83},{&quot;2026-08-02&quot;:8.74},{&quot;2026-08-03&quot;:8.35},{&quot;2026-08-04&quot;:8.32},{&quot;2026-08-05&quot;:8.32},{&quot;2026-08-07&quot;:8.71},{&quot;2026-08-08&quot;:8.71},{&quot;2026-08-09&quot;:8.74},{&quot;2026-08-10&quot;:8.9},{&quot;2026-08-11&quot;:9.19},{&quot;2026-08-12&quot;:9.22},{&quot;2026-08-13&quot;:9.01},{&quot;2026-08-14&quot;:9.01},{&quot;2026-08-15&quot;:9.01},{&quot;2026-08-16&quot;:9.01},{&quot;2026-08-17&quot;:9.03},{&quot;2026-08-18&quot;:9.15},{&quot;2026-08-19&quot;:9.4},{&quot;2026-08-20&quot;:9.4},{&quot;2026-08-21&quot;:10.13},{&quot;2026-08-22&quot;:10.39},{&quot;2026-08-23&quot;:10.39},{&quot;2026-08-24&quot;:10.26},{&quot;2026-08-25&quot;:10.26},{&quot;2026-08-26&quot;:10.26},{&quot;2026-08-27&quot;:10.43},{&quot;2026-08-28&quot;:10.43},{&quot;2026-08-29&quot;:10.43},{&quot;2026-08-30&quot;:10.44},{&quot;2026-08-31&quot;:10.89},{&quot;2026-09-01&quot;:10.89},{&quot;2026-09-02&quot;:10.91},{&quot;2026-09-03&quot;:10.91},{&quot;2026-09-04&quot;:10.91},{&quot;2026-09-05&quot;:11.0},{&quot;2026-09-06&quot;:11.0},{&quot;2026-09-07&quot;:11.0},{&quot;2026-09-08&quot;:11.0},{&quot;2026-09-09&quot;:11.0},{&quot;2026-09-10&quot;:10.81},{&quot;2026-09-11&quot;:10.57}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="40395"
  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">
            Elvish Promenade
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Elvish Promenade" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/0/20602cb8-f925-4de0-ad4b-86d0f5514384.jpg?1783928316" />

        <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">
            Elvish Promenade
        </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">Kindred Sorcery — Elf</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Elvish Promenade" src="https://cards.scryfall.io/large/front/2/0/20602cb8-f925-4de0-ad4b-86d0f5514384.jpg?1783928316" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:8.56},{&quot;2026-06-14&quot;:8.56},{&quot;2026-06-15&quot;:8.44},{&quot;2026-06-16&quot;:8.72},{&quot;2026-06-17&quot;:8.75},{&quot;2026-06-18&quot;:8.85},{&quot;2026-06-19&quot;:8.8},{&quot;2026-06-20&quot;:8.89},{&quot;2026-06-21&quot;:8.89},{&quot;2026-06-22&quot;:8.83},{&quot;2026-06-23&quot;:8.87},{&quot;2026-06-24&quot;:8.61},{&quot;2026-06-25&quot;:8.75},{&quot;2026-06-26&quot;:8.75},{&quot;2026-06-27&quot;:8.66},{&quot;2026-06-28&quot;:8.66},{&quot;2026-06-29&quot;:8.66},{&quot;2026-06-30&quot;:8.68},{&quot;2026-07-01&quot;:8.86},{&quot;2026-07-02&quot;:8.71},{&quot;2026-07-03&quot;:8.71},{&quot;2026-07-04&quot;:8.65},{&quot;2026-07-05&quot;:8.61},{&quot;2026-07-06&quot;:8.69},{&quot;2026-07-07&quot;:8.43},{&quot;2026-07-08&quot;:8.62},{&quot;2026-07-09&quot;:8.33},{&quot;2026-07-10&quot;:8.46},{&quot;2026-07-11&quot;:8.46},{&quot;2026-07-12&quot;:8.64},{&quot;2026-07-13&quot;:8.56},{&quot;2026-07-14&quot;:8.7},{&quot;2026-07-15&quot;:8.54},{&quot;2026-07-16&quot;:8.53},{&quot;2026-07-17&quot;:8.58},{&quot;2026-07-18&quot;:8.62},{&quot;2026-07-19&quot;:8.55},{&quot;2026-07-20&quot;:8.78},{&quot;2026-07-21&quot;:8.85},{&quot;2026-07-22&quot;:8.85},{&quot;2026-07-23&quot;:8.85},{&quot;2026-07-24&quot;:8.92},{&quot;2026-07-25&quot;:8.92},{&quot;2026-07-26&quot;:9.0},{&quot;2026-07-27&quot;:8.95},{&quot;2026-07-28&quot;:8.95},{&quot;2026-07-29&quot;:9.25},{&quot;2026-07-30&quot;:9.37},{&quot;2026-07-31&quot;:9.22},{&quot;2026-08-01&quot;:8.99},{&quot;2026-08-02&quot;:8.85},{&quot;2026-08-03&quot;:8.84},{&quot;2026-08-04&quot;:8.84},{&quot;2026-08-05&quot;:8.84},{&quot;2026-08-07&quot;:8.8},{&quot;2026-08-08&quot;:8.69},{&quot;2026-08-09&quot;:8.73},{&quot;2026-08-10&quot;:8.79},{&quot;2026-08-11&quot;:8.83},{&quot;2026-08-12&quot;:8.78},{&quot;2026-08-13&quot;:8.78},{&quot;2026-08-14&quot;:8.97},{&quot;2026-08-15&quot;:8.99},{&quot;2026-08-16&quot;:8.63},{&quot;2026-08-17&quot;:8.66},{&quot;2026-08-18&quot;:8.65},{&quot;2026-08-19&quot;:8.59},{&quot;2026-08-20&quot;:8.37},{&quot;2026-08-21&quot;:8.44},{&quot;2026-08-22&quot;:8.44},{&quot;2026-08-23&quot;:8.13},{&quot;2026-08-24&quot;:8.17},{&quot;2026-08-25&quot;:8.34},{&quot;2026-08-26&quot;:8.23},{&quot;2026-08-27&quot;:8.22},{&quot;2026-08-28&quot;:8.25},{&quot;2026-08-29&quot;:8.25},{&quot;2026-08-30&quot;:8.27},{&quot;2026-08-31&quot;:8.32},{&quot;2026-09-01&quot;:8.32},{&quot;2026-09-02&quot;:8.31},{&quot;2026-09-03&quot;:8.45},{&quot;2026-09-04&quot;:8.45},{&quot;2026-09-05&quot;:8.6},{&quot;2026-09-06&quot;:8.8},{&quot;2026-09-07&quot;:9.09},{&quot;2026-09-08&quot;:9.0},{&quot;2026-09-09&quot;:9.09},{&quot;2026-09-10&quot;:8.98},{&quot;2026-09-11&quot;:9.19}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="40382"
  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">
            Beast Whisperer
        </span>


      </div>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Beast Whisperer" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/7/b7e90355-80ca-49db-914c-62b3a7bd4726.jpg?1783928319" />

        <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">
            Beast Whisperer
        </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 — Elf Druid</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Beast Whisperer" src="https://cards.scryfall.io/large/front/b/7/b7e90355-80ca-49db-914c-62b3a7bd4726.jpg?1783928319" />
    </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.35
              </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">$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;normal&quot;:[{&quot;2026-06-10&quot;:7.88},{&quot;2026-06-11&quot;:7.88},{&quot;2026-06-12&quot;:7.91},{&quot;2026-06-13&quot;:7.83},{&quot;2026-06-14&quot;:7.83},{&quot;2026-06-15&quot;:7.68},{&quot;2026-06-16&quot;:7.68},{&quot;2026-06-17&quot;:7.68},{&quot;2026-06-18&quot;:7.68},{&quot;2026-06-19&quot;:7.58},{&quot;2026-06-20&quot;:7.53},{&quot;2026-06-21&quot;:7.52},{&quot;2026-06-22&quot;:7.49},{&quot;2026-06-23&quot;:7.41},{&quot;2026-06-24&quot;:7.36},{&quot;2026-06-25&quot;:7.34},{&quot;2026-06-26&quot;:7.05},{&quot;2026-06-27&quot;:7.44},{&quot;2026-06-28&quot;:7.43},{&quot;2026-06-29&quot;:7.43},{&quot;2026-06-30&quot;:7.32},{&quot;2026-07-01&quot;:7.32},{&quot;2026-07-02&quot;:7.32},{&quot;2026-07-03&quot;:7.32},{&quot;2026-07-04&quot;:7.09},{&quot;2026-07-05&quot;:7.17},{&quot;2026-07-06&quot;:7.34},{&quot;2026-07-07&quot;:7.52},{&quot;2026-07-08&quot;:7.56},{&quot;2026-07-09&quot;:7.56},{&quot;2026-07-10&quot;:7.51},{&quot;2026-07-11&quot;:7.48},{&quot;2026-07-12&quot;:7.48},{&quot;2026-07-13&quot;:7.49},{&quot;2026-07-14&quot;:7.44},{&quot;2026-07-15&quot;:7.49},{&quot;2026-07-16&quot;:7.62},{&quot;2026-07-17&quot;:7.66},{&quot;2026-07-18&quot;:7.66},{&quot;2026-07-19&quot;:7.66},{&quot;2026-07-20&quot;:7.66},{&quot;2026-07-21&quot;:7.57},{&quot;2026-07-23&quot;:7.4},{&quot;2026-07-25&quot;:7.61},{&quot;2026-07-26&quot;:7.45},{&quot;2026-07-27&quot;:7.45},{&quot;2026-07-29&quot;:7.47},{&quot;2026-07-30&quot;:7.36},{&quot;2026-07-31&quot;:7.56},{&quot;2026-08-01&quot;:7.45},{&quot;2026-08-02&quot;:7.3},{&quot;2026-08-03&quot;:7.39},{&quot;2026-08-04&quot;:7.34},{&quot;2026-08-05&quot;:7.68},{&quot;2026-08-07&quot;:7.78},{&quot;2026-08-08&quot;:7.85},{&quot;2026-08-09&quot;:7.99},{&quot;2026-08-10&quot;:7.94},{&quot;2026-08-11&quot;:8.0},{&quot;2026-08-12&quot;:8.0},{&quot;2026-08-13&quot;:7.89},{&quot;2026-08-14&quot;:7.86},{&quot;2026-08-15&quot;:8.07},{&quot;2026-08-16&quot;:7.98},{&quot;2026-08-17&quot;:7.57},{&quot;2026-08-18&quot;:7.38},{&quot;2026-08-19&quot;:7.47},{&quot;2026-08-20&quot;:7.47},{&quot;2026-08-21&quot;:7.29},{&quot;2026-08-22&quot;:7.36},{&quot;2026-08-23&quot;:7.37},{&quot;2026-08-24&quot;:7.47},{&quot;2026-08-25&quot;:7.47},{&quot;2026-08-26&quot;:7.67},{&quot;2026-08-27&quot;:7.83},{&quot;2026-08-28&quot;:7.83},{&quot;2026-08-29&quot;:7.83},{&quot;2026-08-30&quot;:8.3},{&quot;2026-08-31&quot;:8.4},{&quot;2026-09-01&quot;:8.4},{&quot;2026-09-02&quot;:8.4},{&quot;2026-09-03&quot;:8.47},{&quot;2026-09-04&quot;:8.48},{&quot;2026-09-05&quot;:8.54},{&quot;2026-09-06&quot;:8.46},{&quot;2026-09-07&quot;:8.46},{&quot;2026-09-08&quot;:8.46},{&quot;2026-09-09&quot;:8.35},{&quot;2026-09-10&quot;:8.35},{&quot;2026-09-11&quot;:8.35}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="41338"
  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-khm 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">
            Elven Ambush
        </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">
              ↑
              7%
            </span>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Elven Ambush" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/0/70479c44-da7c-48c7-8c6a-47210dc03277.jpg?1783928117" />

        <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">
            Elven Ambush
        </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-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Elven Ambush" src="https://cards.scryfall.io/large/front/7/0/70479c44-da7c-48c7-8c6a-47210dc03277.jpg?1783928117" />
    </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.82
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:6.56},{&quot;2026-06-14&quot;:7.11},{&quot;2026-06-15&quot;:7.18},{&quot;2026-06-16&quot;:7.44},{&quot;2026-06-17&quot;:7.49},{&quot;2026-06-18&quot;:7.52},{&quot;2026-06-19&quot;:6.95},{&quot;2026-06-20&quot;:6.59},{&quot;2026-06-21&quot;:6.32},{&quot;2026-06-22&quot;:5.89},{&quot;2026-06-23&quot;:6.13},{&quot;2026-06-24&quot;:6.26},{&quot;2026-06-25&quot;:6.26},{&quot;2026-06-26&quot;:6.24},{&quot;2026-06-27&quot;:6.68},{&quot;2026-06-28&quot;:6.68},{&quot;2026-06-29&quot;:6.67},{&quot;2026-06-30&quot;:6.65},{&quot;2026-07-01&quot;:6.62},{&quot;2026-07-02&quot;:6.57},{&quot;2026-07-03&quot;:6.47},{&quot;2026-07-04&quot;:6.44},{&quot;2026-07-05&quot;:6.25},{&quot;2026-07-06&quot;:6.23},{&quot;2026-07-07&quot;:6.12},{&quot;2026-07-08&quot;:6.06},{&quot;2026-07-09&quot;:5.83},{&quot;2026-07-10&quot;:6.01},{&quot;2026-07-11&quot;:6.0},{&quot;2026-07-12&quot;:6.15},{&quot;2026-07-13&quot;:6.07},{&quot;2026-07-14&quot;:5.94},{&quot;2026-07-15&quot;:5.71},{&quot;2026-07-16&quot;:5.85},{&quot;2026-07-17&quot;:5.82},{&quot;2026-07-18&quot;:5.89},{&quot;2026-07-19&quot;:6.04},{&quot;2026-07-20&quot;:6.19},{&quot;2026-07-21&quot;:6.12},{&quot;2026-07-22&quot;:6.02},{&quot;2026-07-23&quot;:6.13},{&quot;2026-07-24&quot;:6.45},{&quot;2026-07-25&quot;:6.65},{&quot;2026-07-26&quot;:7.16},{&quot;2026-07-27&quot;:7.02},{&quot;2026-07-28&quot;:7.15},{&quot;2026-07-29&quot;:7.21},{&quot;2026-07-30&quot;:7.15},{&quot;2026-07-31&quot;:7.2},{&quot;2026-08-01&quot;:7.28},{&quot;2026-08-02&quot;:7.03},{&quot;2026-08-03&quot;:7.04},{&quot;2026-08-04&quot;:7.1},{&quot;2026-08-05&quot;:7.14},{&quot;2026-08-07&quot;:7.03},{&quot;2026-08-08&quot;:6.79},{&quot;2026-08-09&quot;:6.99},{&quot;2026-08-10&quot;:6.63},{&quot;2026-08-11&quot;:5.94},{&quot;2026-08-12&quot;:5.48},{&quot;2026-08-13&quot;:5.55},{&quot;2026-08-14&quot;:5.77},{&quot;2026-08-15&quot;:5.57},{&quot;2026-08-16&quot;:5.66},{&quot;2026-08-17&quot;:5.42},{&quot;2026-08-18&quot;:5.24},{&quot;2026-08-19&quot;:5.51},{&quot;2026-08-20&quot;:5.73},{&quot;2026-08-21&quot;:5.61},{&quot;2026-08-22&quot;:5.85},{&quot;2026-08-23&quot;:5.59},{&quot;2026-08-24&quot;:5.97},{&quot;2026-08-25&quot;:6.23},{&quot;2026-08-26&quot;:6.87},{&quot;2026-08-27&quot;:6.83},{&quot;2026-08-28&quot;:7.01},{&quot;2026-08-29&quot;:7.01},{&quot;2026-08-30&quot;:7.31},{&quot;2026-08-31&quot;:6.87},{&quot;2026-09-01&quot;:7.24},{&quot;2026-09-02&quot;:7.3},{&quot;2026-09-03&quot;:7.37},{&quot;2026-09-04&quot;:7.44},{&quot;2026-09-05&quot;:7.28},{&quot;2026-09-06&quot;:7.05},{&quot;2026-09-07&quot;:6.63},{&quot;2026-09-08&quot;:6.77},{&quot;2026-09-09&quot;:6.91},{&quot;2026-09-10&quot;:7.24},{&quot;2026-09-11&quot;:7.82}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Swamp" src="https://cards.scryfall.io/large/front/5/7/57ef531e-2a8f-4d40-b509-92e3a86b2257.jpg?1783923806" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:6.99},{&quot;2026-06-14&quot;:6.99},{&quot;2026-06-15&quot;:6.92},{&quot;2026-06-16&quot;:6.84},{&quot;2026-06-17&quot;:6.9},{&quot;2026-06-18&quot;:6.9},{&quot;2026-06-19&quot;:6.94},{&quot;2026-06-20&quot;:6.94},{&quot;2026-06-21&quot;:6.98},{&quot;2026-06-22&quot;:7.24},{&quot;2026-06-23&quot;:7.32},{&quot;2026-06-24&quot;:7.32},{&quot;2026-06-25&quot;:7.3},{&quot;2026-06-26&quot;:7.26},{&quot;2026-06-27&quot;:7.32},{&quot;2026-06-28&quot;:7.39},{&quot;2026-06-29&quot;:7.39},{&quot;2026-06-30&quot;:7.46},{&quot;2026-07-01&quot;:7.51},{&quot;2026-07-02&quot;:7.63},{&quot;2026-07-03&quot;:7.63},{&quot;2026-07-04&quot;:7.41},{&quot;2026-07-05&quot;:7.15},{&quot;2026-07-06&quot;:7.15},{&quot;2026-07-07&quot;:7.12},{&quot;2026-07-08&quot;:6.96},{&quot;2026-07-09&quot;:6.78},{&quot;2026-07-10&quot;:6.4},{&quot;2026-07-11&quot;:6.4},{&quot;2026-07-12&quot;:6.38},{&quot;2026-07-13&quot;:6.26},{&quot;2026-07-14&quot;:6.26},{&quot;2026-07-15&quot;:6.26},{&quot;2026-07-16&quot;:6.33},{&quot;2026-07-17&quot;:6.3},{&quot;2026-07-18&quot;:6.33},{&quot;2026-07-19&quot;:6.34},{&quot;2026-07-20&quot;:6.51},{&quot;2026-07-21&quot;:6.49},{&quot;2026-07-22&quot;:6.45},{&quot;2026-07-23&quot;:6.47},{&quot;2026-07-24&quot;:6.46},{&quot;2026-07-25&quot;:6.52},{&quot;2026-07-26&quot;:6.43},{&quot;2026-07-27&quot;:6.51},{&quot;2026-07-28&quot;:6.51},{&quot;2026-07-29&quot;:6.51},{&quot;2026-07-30&quot;:6.49},{&quot;2026-07-31&quot;:6.18},{&quot;2026-08-01&quot;:6.18},{&quot;2026-08-02&quot;:6.22},{&quot;2026-08-03&quot;:6.22},{&quot;2026-08-04&quot;:6.17},{&quot;2026-08-05&quot;:6.0},{&quot;2026-08-07&quot;:5.85},{&quot;2026-08-08&quot;:6.03},{&quot;2026-08-09&quot;:6.09},{&quot;2026-08-10&quot;:6.14},{&quot;2026-08-11&quot;:6.12},{&quot;2026-08-12&quot;:6.33},{&quot;2026-08-13&quot;:6.47},{&quot;2026-08-14&quot;:6.48},{&quot;2026-08-15&quot;:6.8},{&quot;2026-08-16&quot;:6.98},{&quot;2026-08-17&quot;:7.0},{&quot;2026-08-18&quot;:7.21},{&quot;2026-08-19&quot;:7.26},{&quot;2026-08-20&quot;:7.27},{&quot;2026-08-21&quot;:7.27},{&quot;2026-08-22&quot;:7.34},{&quot;2026-08-23&quot;:7.15},{&quot;2026-08-24&quot;:7.15},{&quot;2026-08-25&quot;:6.9},{&quot;2026-08-26&quot;:6.89},{&quot;2026-08-27&quot;:6.87},{&quot;2026-08-28&quot;:6.83},{&quot;2026-08-29&quot;:6.83},{&quot;2026-08-30&quot;:6.66},{&quot;2026-08-31&quot;:6.6},{&quot;2026-09-01&quot;:6.36},{&quot;2026-09-02&quot;:6.45},{&quot;2026-09-03&quot;:6.56},{&quot;2026-09-04&quot;:6.44},{&quot;2026-09-05&quot;:6.53},{&quot;2026-09-06&quot;:6.44},{&quot;2026-09-07&quot;:6.47},{&quot;2026-09-08&quot;:6.29},{&quot;2026-09-09&quot;:6.29},{&quot;2026-09-10&quot;:6.25},{&quot;2026-09-11&quot;:6.24}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:5.45},{&quot;2026-06-14&quot;:5.4},{&quot;2026-06-15&quot;:5.36},{&quot;2026-06-16&quot;:5.43},{&quot;2026-06-17&quot;:5.43},{&quot;2026-06-18&quot;:5.43},{&quot;2026-06-19&quot;:7.0},{&quot;2026-06-20&quot;:6.99},{&quot;2026-06-21&quot;:7.06},{&quot;2026-06-22&quot;:7.15},{&quot;2026-06-23&quot;:7.15},{&quot;2026-06-24&quot;:7.13},{&quot;2026-06-25&quot;:7.01},{&quot;2026-06-26&quot;:6.7},{&quot;2026-06-27&quot;:6.67},{&quot;2026-06-28&quot;:6.67},{&quot;2026-06-29&quot;:5.91},{&quot;2026-06-30&quot;:5.91},{&quot;2026-07-01&quot;:5.88},{&quot;2026-07-02&quot;:5.91},{&quot;2026-07-03&quot;:5.86},{&quot;2026-07-04&quot;:5.55},{&quot;2026-07-05&quot;:5.57},{&quot;2026-07-06&quot;:5.62},{&quot;2026-07-07&quot;:6.14},{&quot;2026-07-08&quot;:6.22},{&quot;2026-07-09&quot;:6.25},{&quot;2026-07-10&quot;:5.96},{&quot;2026-07-11&quot;:6.11},{&quot;2026-07-12&quot;:6.11},{&quot;2026-07-13&quot;:6.22},{&quot;2026-07-14&quot;:6.27},{&quot;2026-07-15&quot;:6.29},{&quot;2026-07-16&quot;:6.18},{&quot;2026-07-17&quot;:5.47},{&quot;2026-07-18&quot;:5.37},{&quot;2026-07-19&quot;:5.35},{&quot;2026-07-20&quot;:5.35},{&quot;2026-07-21&quot;:5.31},{&quot;2026-07-22&quot;:5.31},{&quot;2026-07-23&quot;:5.38},{&quot;2026-07-24&quot;:5.38},{&quot;2026-07-25&quot;:5.19},{&quot;2026-07-26&quot;:5.15},{&quot;2026-07-27&quot;:5.3},{&quot;2026-07-28&quot;:5.26},{&quot;2026-07-29&quot;:5.03},{&quot;2026-07-30&quot;:5.1},{&quot;2026-07-31&quot;:4.95},{&quot;2026-08-01&quot;:4.95},{&quot;2026-08-02&quot;:5.02},{&quot;2026-08-03&quot;:4.91},{&quot;2026-08-04&quot;:4.91},{&quot;2026-08-05&quot;:4.76},{&quot;2026-08-07&quot;:4.81},{&quot;2026-08-08&quot;:4.92},{&quot;2026-08-09&quot;:4.81},{&quot;2026-08-10&quot;:4.69},{&quot;2026-08-11&quot;:4.58},{&quot;2026-08-12&quot;:4.64},{&quot;2026-08-13&quot;:4.64},{&quot;2026-08-14&quot;:4.64},{&quot;2026-08-15&quot;:4.54},{&quot;2026-08-16&quot;:4.58},{&quot;2026-08-17&quot;:4.56},{&quot;2026-08-18&quot;:4.71},{&quot;2026-08-19&quot;:4.77},{&quot;2026-08-20&quot;:4.78},{&quot;2026-08-21&quot;:4.87},{&quot;2026-08-22&quot;:4.9},{&quot;2026-08-23&quot;:5.05},{&quot;2026-08-24&quot;:5.08},{&quot;2026-08-25&quot;:4.96},{&quot;2026-08-26&quot;:4.91},{&quot;2026-08-27&quot;:4.81},{&quot;2026-08-28&quot;:4.85},{&quot;2026-08-29&quot;:4.85},{&quot;2026-08-30&quot;:4.8},{&quot;2026-08-31&quot;:5.1},{&quot;2026-09-01&quot;:5.13},{&quot;2026-09-02&quot;:5.29},{&quot;2026-09-03&quot;:5.29},{&quot;2026-09-04&quot;:5.36},{&quot;2026-09-05&quot;:5.34},{&quot;2026-09-06&quot;:5.4},{&quot;2026-09-07&quot;:5.24},{&quot;2026-09-08&quot;:4.89},{&quot;2026-09-09&quot;:4.87},{&quot;2026-09-10&quot;:4.82},{&quot;2026-09-11&quot;:4.71}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Bojuka Bog" src="https://cards.scryfall.io/large/front/d/4/d46ca7cb-4a04-4081-8834-6bc29e0762d2.jpg?1783927701" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:112.56},{&quot;2026-06-14&quot;:112.73},{&quot;2026-06-15&quot;:112.73},{&quot;2026-06-16&quot;:112.92},{&quot;2026-06-17&quot;:112.92},{&quot;2026-06-18&quot;:112.92},{&quot;2026-06-19&quot;:112.92},{&quot;2026-06-20&quot;:112.92},{&quot;2026-06-21&quot;:113.19},{&quot;2026-06-22&quot;:113.19},{&quot;2026-06-23&quot;:113.19},{&quot;2026-06-24&quot;:113.19},{&quot;2026-06-25&quot;:113.19},{&quot;2026-06-26&quot;:113.41},{&quot;2026-06-27&quot;:113.41},{&quot;2026-06-28&quot;:113.41},{&quot;2026-06-29&quot;:113.41},{&quot;2026-06-30&quot;:113.41},{&quot;2026-07-01&quot;:113.41},{&quot;2026-07-02&quot;:113.41},{&quot;2026-07-03&quot;:113.41},{&quot;2026-07-04&quot;:113.41},{&quot;2026-07-05&quot;:113.41},{&quot;2026-07-06&quot;:113.41},{&quot;2026-07-07&quot;:113.41},{&quot;2026-07-08&quot;:113.41},{&quot;2026-07-09&quot;:113.41},{&quot;2026-07-10&quot;:113.41},{&quot;2026-07-11&quot;:113.41},{&quot;2026-07-12&quot;:113.41},{&quot;2026-07-13&quot;:113.41},{&quot;2026-07-14&quot;:113.41},{&quot;2026-07-15&quot;:113.41},{&quot;2026-07-16&quot;:113.41},{&quot;2026-07-17&quot;:113.23},{&quot;2026-07-18&quot;:113.23},{&quot;2026-07-19&quot;:113.23},{&quot;2026-07-20&quot;:113.23},{&quot;2026-07-21&quot;:113.23},{&quot;2026-07-22&quot;:113.23},{&quot;2026-07-23&quot;:113.23},{&quot;2026-07-24&quot;:113.23},{&quot;2026-07-25&quot;:113.23},{&quot;2026-07-26&quot;:113.23},{&quot;2026-07-27&quot;:113.23},{&quot;2026-07-28&quot;:113.23},{&quot;2026-07-29&quot;:113.23},{&quot;2026-07-30&quot;:113.23},{&quot;2026-07-31&quot;:113.23},{&quot;2026-08-01&quot;:113.23},{&quot;2026-08-02&quot;:113.23},{&quot;2026-08-03&quot;:113.23},{&quot;2026-08-04&quot;:113.23},{&quot;2026-08-05&quot;:113.23},{&quot;2026-08-07&quot;:113.23},{&quot;2026-08-08&quot;:113.23},{&quot;2026-08-09&quot;:113.23},{&quot;2026-08-10&quot;:113.23},{&quot;2026-08-11&quot;:113.23},{&quot;2026-08-12&quot;:113.23},{&quot;2026-08-13&quot;:113.23},{&quot;2026-08-14&quot;:113.23},{&quot;2026-08-15&quot;:114.7},{&quot;2026-08-16&quot;:114.7},{&quot;2026-08-17&quot;:114.7},{&quot;2026-08-18&quot;:114.7},{&quot;2026-08-19&quot;:114.7},{&quot;2026-08-20&quot;:114.7},{&quot;2026-08-21&quot;:114.7},{&quot;2026-08-22&quot;:114.7},{&quot;2026-08-23&quot;:114.7},{&quot;2026-08-24&quot;:114.7},{&quot;2026-08-25&quot;:114.7},{&quot;2026-08-26&quot;:114.7},{&quot;2026-08-27&quot;:114.7},{&quot;2026-08-28&quot;:114.7},{&quot;2026-08-29&quot;:114.7},{&quot;2026-08-30&quot;:114.7},{&quot;2026-08-31&quot;:114.7},{&quot;2026-09-01&quot;:114.7},{&quot;2026-09-02&quot;:114.7},{&quot;2026-09-03&quot;:114.7},{&quot;2026-09-04&quot;:114.7},{&quot;2026-09-05&quot;:114.7},{&quot;2026-09-06&quot;:114.7},{&quot;2026-09-07&quot;:114.7},{&quot;2026-09-08&quot;:114.7},{&quot;2026-09-09&quot;:114.7},{&quot;2026-09-10&quot;:114.7},{&quot;2026-09-11&quot;:120.23}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:5.79},{&quot;2026-06-14&quot;:5.79},{&quot;2026-06-15&quot;:5.79},{&quot;2026-06-16&quot;:5.79},{&quot;2026-06-17&quot;:5.8},{&quot;2026-06-18&quot;:5.8},{&quot;2026-06-19&quot;:5.8},{&quot;2026-06-20&quot;:5.8},{&quot;2026-06-21&quot;:5.8},{&quot;2026-06-22&quot;:5.8},{&quot;2026-06-23&quot;:5.8},{&quot;2026-06-24&quot;:5.8},{&quot;2026-06-25&quot;:5.82},{&quot;2026-06-26&quot;:5.82},{&quot;2026-06-27&quot;:5.8},{&quot;2026-06-28&quot;:5.85},{&quot;2026-06-29&quot;:5.85},{&quot;2026-06-30&quot;:5.85},{&quot;2026-07-01&quot;:5.85},{&quot;2026-07-02&quot;:5.85},{&quot;2026-07-03&quot;:5.78},{&quot;2026-07-04&quot;:5.78},{&quot;2026-07-05&quot;:5.79},{&quot;2026-07-06&quot;:5.79},{&quot;2026-07-07&quot;:5.83},{&quot;2026-07-08&quot;:5.83},{&quot;2026-07-09&quot;:5.83},{&quot;2026-07-10&quot;:5.83},{&quot;2026-07-11&quot;:5.83},{&quot;2026-07-12&quot;:5.84},{&quot;2026-07-13&quot;:5.84},{&quot;2026-07-14&quot;:5.85},{&quot;2026-07-15&quot;:5.86},{&quot;2026-07-16&quot;:5.86},{&quot;2026-07-17&quot;:5.87},{&quot;2026-07-18&quot;:5.87},{&quot;2026-07-19&quot;:5.86},{&quot;2026-07-20&quot;:5.86},{&quot;2026-07-21&quot;:5.73},{&quot;2026-07-22&quot;:5.74},{&quot;2026-07-23&quot;:5.74},{&quot;2026-07-24&quot;:5.74},{&quot;2026-07-25&quot;:5.74},{&quot;2026-07-26&quot;:5.71},{&quot;2026-07-27&quot;:5.71},{&quot;2026-07-28&quot;:5.71},{&quot;2026-07-29&quot;:5.71},{&quot;2026-07-30&quot;:5.71},{&quot;2026-07-31&quot;:5.67},{&quot;2026-08-01&quot;:5.67},{&quot;2026-08-02&quot;:5.67},{&quot;2026-08-03&quot;:5.66},{&quot;2026-08-04&quot;:5.66},{&quot;2026-08-05&quot;:5.61},{&quot;2026-08-07&quot;:5.63},{&quot;2026-08-08&quot;:5.63},{&quot;2026-08-09&quot;:5.69},{&quot;2026-08-10&quot;:5.69},{&quot;2026-08-11&quot;:5.69},{&quot;2026-08-12&quot;:5.71},{&quot;2026-08-13&quot;:5.71},{&quot;2026-08-14&quot;:5.72},{&quot;2026-08-15&quot;:5.74},{&quot;2026-08-16&quot;:5.74},{&quot;2026-08-17&quot;:5.77},{&quot;2026-08-18&quot;:5.73},{&quot;2026-08-19&quot;:5.73},{&quot;2026-08-20&quot;:5.73},{&quot;2026-08-21&quot;:5.73},{&quot;2026-08-22&quot;:5.72},{&quot;2026-08-23&quot;:5.7},{&quot;2026-08-24&quot;:5.54},{&quot;2026-08-25&quot;:5.38},{&quot;2026-08-26&quot;:5.4},{&quot;2026-08-27&quot;:5.4},{&quot;2026-08-28&quot;:5.4},{&quot;2026-08-29&quot;:5.4},{&quot;2026-08-30&quot;:5.58},{&quot;2026-08-31&quot;:5.59},{&quot;2026-09-01&quot;:5.59},{&quot;2026-09-02&quot;:5.62},{&quot;2026-09-03&quot;:5.62},{&quot;2026-09-04&quot;:5.6},{&quot;2026-09-05&quot;:5.63},{&quot;2026-09-06&quot;:5.67},{&quot;2026-09-07&quot;:5.67},{&quot;2026-09-08&quot;:5.67},{&quot;2026-09-09&quot;:5.68},{&quot;2026-09-10&quot;:5.68},{&quot;2026-09-11&quot;:5.8}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $4.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="Swamp" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/5/c50b3d79-2361-4858-98b0-64d83c4f7f70.jpg?1783923807" />

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Swamp" src="https://cards.scryfall.io/large/front/c/5/c50b3d79-2361-4858-98b0-64d83c4f7f70.jpg?1783923807" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $5.76
              </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">$2.50</span>
              <span class="text-xs text-grey-text">Credit: $3.25</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">$3.20</span>
              <span class="text-xs text-grey-text">Credit: $4.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-13&quot;:5.85},{&quot;2026-06-14&quot;:5.81},{&quot;2026-06-15&quot;:5.73},{&quot;2026-06-16&quot;:5.7},{&quot;2026-06-17&quot;:5.78},{&quot;2026-06-18&quot;:5.78},{&quot;2026-06-19&quot;:5.79},{&quot;2026-06-20&quot;:5.72},{&quot;2026-06-21&quot;:5.72},{&quot;2026-06-22&quot;:5.72},{&quot;2026-06-23&quot;:5.67},{&quot;2026-06-24&quot;:5.84},{&quot;2026-06-25&quot;:5.73},{&quot;2026-06-26&quot;:5.7},{&quot;2026-06-27&quot;:5.69},{&quot;2026-06-28&quot;:5.73},{&quot;2026-06-29&quot;:5.73},{&quot;2026-06-30&quot;:5.73},{&quot;2026-07-01&quot;:5.7},{&quot;2026-07-02&quot;:5.86},{&quot;2026-07-03&quot;:5.86},{&quot;2026-07-04&quot;:5.85},{&quot;2026-07-05&quot;:5.73},{&quot;2026-07-06&quot;:5.82},{&quot;2026-07-07&quot;:5.82},{&quot;2026-07-08&quot;:5.9},{&quot;2026-07-09&quot;:5.9},{&quot;2026-07-10&quot;:5.84},{&quot;2026-07-11&quot;:6.08},{&quot;2026-07-12&quot;:5.97},{&quot;2026-07-13&quot;:5.99},{&quot;2026-07-14&quot;:5.98},{&quot;2026-07-15&quot;:6.02},{&quot;2026-07-16&quot;:6.03},{&quot;2026-07-17&quot;:6.03},{&quot;2026-07-18&quot;:5.92},{&quot;2026-07-19&quot;:5.92},{&quot;2026-07-20&quot;:5.89},{&quot;2026-07-21&quot;:5.95},{&quot;2026-07-22&quot;:5.79},{&quot;2026-07-23&quot;:5.92},{&quot;2026-07-24&quot;:6.01},{&quot;2026-07-25&quot;:5.93},{&quot;2026-07-26&quot;:6.04},{&quot;2026-07-27&quot;:6.07},{&quot;2026-07-28&quot;:6.07},{&quot;2026-07-29&quot;:6.07},{&quot;2026-07-30&quot;:6.08},{&quot;2026-07-31&quot;:6.11},{&quot;2026-08-01&quot;:6.11},{&quot;2026-08-02&quot;:6.19},{&quot;2026-08-03&quot;:6.19},{&quot;2026-08-04&quot;:6.22},{&quot;2026-08-05&quot;:6.22},{&quot;2026-08-07&quot;:5.96},{&quot;2026-08-08&quot;:5.96},{&quot;2026-08-09&quot;:5.96},{&quot;2026-08-10&quot;:5.98},{&quot;2026-08-11&quot;:5.98},{&quot;2026-08-12&quot;:5.98},{&quot;2026-08-13&quot;:5.72},{&quot;2026-08-14&quot;:5.58},{&quot;2026-08-15&quot;:5.58},{&quot;2026-08-16&quot;:5.58},{&quot;2026-08-17&quot;:5.8},{&quot;2026-08-18&quot;:5.76},{&quot;2026-08-19&quot;:5.74},{&quot;2026-08-20&quot;:5.74},{&quot;2026-08-21&quot;:5.71},{&quot;2026-08-22&quot;:5.71},{&quot;2026-08-23&quot;:5.71},{&quot;2026-08-24&quot;:5.96},{&quot;2026-08-25&quot;:5.86},{&quot;2026-08-26&quot;:6.03},{&quot;2026-08-27&quot;:6.03},{&quot;2026-08-28&quot;:6.07},{&quot;2026-08-29&quot;:6.07},{&quot;2026-08-30&quot;:5.89},{&quot;2026-08-31&quot;:5.84},{&quot;2026-09-01&quot;:5.91},{&quot;2026-09-02&quot;:5.95},{&quot;2026-09-03&quot;:5.85},{&quot;2026-09-04&quot;:5.86},{&quot;2026-09-05&quot;:5.87},{&quot;2026-09-06&quot;:5.86},{&quot;2026-09-07&quot;:5.95},{&quot;2026-09-08&quot;:5.95},{&quot;2026-09-09&quot;:5.95},{&quot;2026-09-10&quot;:5.76},{&quot;2026-09-11&quot;:5.76}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:4.82},{&quot;2026-06-14&quot;:4.79},{&quot;2026-06-15&quot;:4.77},{&quot;2026-06-16&quot;:4.85},{&quot;2026-06-17&quot;:4.99},{&quot;2026-06-18&quot;:4.94},{&quot;2026-06-19&quot;:4.87},{&quot;2026-06-20&quot;:4.81},{&quot;2026-06-21&quot;:4.81},{&quot;2026-06-22&quot;:4.62},{&quot;2026-06-23&quot;:4.63},{&quot;2026-06-24&quot;:4.32},{&quot;2026-06-25&quot;:4.57},{&quot;2026-06-26&quot;:4.62},{&quot;2026-06-27&quot;:4.69},{&quot;2026-06-28&quot;:5.08},{&quot;2026-06-29&quot;:5.26},{&quot;2026-06-30&quot;:5.28},{&quot;2026-07-01&quot;:5.34},{&quot;2026-07-02&quot;:5.14},{&quot;2026-07-03&quot;:5.14},{&quot;2026-07-04&quot;:4.88},{&quot;2026-07-05&quot;:4.86},{&quot;2026-07-06&quot;:4.64},{&quot;2026-07-07&quot;:4.55},{&quot;2026-07-08&quot;:4.38},{&quot;2026-07-09&quot;:4.32},{&quot;2026-07-10&quot;:4.01},{&quot;2026-07-11&quot;:4.11},{&quot;2026-07-12&quot;:4.11},{&quot;2026-07-13&quot;:4.23},{&quot;2026-07-14&quot;:4.23},{&quot;2026-07-15&quot;:4.13},{&quot;2026-07-16&quot;:4.13},{&quot;2026-07-17&quot;:4.25},{&quot;2026-07-18&quot;:4.56},{&quot;2026-07-19&quot;:4.53},{&quot;2026-07-20&quot;:4.68},{&quot;2026-07-21&quot;:4.63},{&quot;2026-07-22&quot;:4.67},{&quot;2026-07-23&quot;:4.76},{&quot;2026-07-24&quot;:4.76},{&quot;2026-07-25&quot;:4.86},{&quot;2026-07-26&quot;:4.88},{&quot;2026-07-27&quot;:4.89},{&quot;2026-07-28&quot;:4.81},{&quot;2026-07-29&quot;:4.85},{&quot;2026-07-30&quot;:4.81},{&quot;2026-07-31&quot;:4.65},{&quot;2026-08-01&quot;:4.61},{&quot;2026-08-02&quot;:4.5},{&quot;2026-08-03&quot;:4.38},{&quot;2026-08-04&quot;:4.39},{&quot;2026-08-05&quot;:4.19},{&quot;2026-08-07&quot;:4.37},{&quot;2026-08-08&quot;:4.34},{&quot;2026-08-09&quot;:4.39},{&quot;2026-08-10&quot;:4.5},{&quot;2026-08-11&quot;:4.5},{&quot;2026-08-12&quot;:4.53},{&quot;2026-08-13&quot;:4.63},{&quot;2026-08-14&quot;:4.57},{&quot;2026-08-15&quot;:4.36},{&quot;2026-08-16&quot;:4.31},{&quot;2026-08-17&quot;:4.34},{&quot;2026-08-18&quot;:4.27},{&quot;2026-08-19&quot;:4.19},{&quot;2026-08-20&quot;:4.08},{&quot;2026-08-21&quot;:4.06},{&quot;2026-08-22&quot;:4.25},{&quot;2026-08-23&quot;:4.39},{&quot;2026-08-24&quot;:4.46},{&quot;2026-08-25&quot;:4.56},{&quot;2026-08-26&quot;:4.55},{&quot;2026-08-27&quot;:4.68},{&quot;2026-08-28&quot;:4.84},{&quot;2026-08-29&quot;:4.84},{&quot;2026-08-30&quot;:4.83},{&quot;2026-08-31&quot;:4.77},{&quot;2026-09-01&quot;:4.77},{&quot;2026-09-02&quot;:4.77},{&quot;2026-09-03&quot;:4.78},{&quot;2026-09-04&quot;:4.8},{&quot;2026-09-05&quot;:4.79},{&quot;2026-09-06&quot;:4.76},{&quot;2026-09-07&quot;:4.72},{&quot;2026-09-08&quot;:4.72},{&quot;2026-09-09&quot;:4.59},{&quot;2026-09-10&quot;:4.57},{&quot;2026-09-11&quot;:4.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="20758"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2xm ss-uncommon ss-fw ss-2x flex-shrink-0"></i>

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

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

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

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

        <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">
            Lightning Greaves
        </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="Lightning Greaves" src="https://cards.scryfall.io/large/front/e/6/e6cec97f-0a2b-4543-a02e-d5e42d337790.jpg?1783930105" />
    </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">
                $4.77
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:5.34},{&quot;2026-06-11&quot;:5.34},{&quot;2026-06-12&quot;:5.34},{&quot;2026-06-13&quot;:5.34},{&quot;2026-06-14&quot;:5.34},{&quot;2026-06-15&quot;:5.34},{&quot;2026-06-16&quot;:5.34},{&quot;2026-06-17&quot;:5.34},{&quot;2026-06-18&quot;:5.34},{&quot;2026-06-19&quot;:5.34},{&quot;2026-06-20&quot;:5.34},{&quot;2026-06-21&quot;:5.34},{&quot;2026-06-22&quot;:5.47},{&quot;2026-06-23&quot;:5.42},{&quot;2026-06-24&quot;:5.42},{&quot;2026-06-25&quot;:5.42},{&quot;2026-06-26&quot;:5.53},{&quot;2026-06-27&quot;:5.55},{&quot;2026-06-28&quot;:5.51},{&quot;2026-06-29&quot;:5.53},{&quot;2026-06-30&quot;:5.53},{&quot;2026-07-01&quot;:5.5},{&quot;2026-07-02&quot;:5.5},{&quot;2026-07-03&quot;:5.52},{&quot;2026-07-04&quot;:5.52},{&quot;2026-07-05&quot;:5.52},{&quot;2026-07-06&quot;:5.57},{&quot;2026-07-07&quot;:5.65},{&quot;2026-07-08&quot;:5.65},{&quot;2026-07-09&quot;:5.65},{&quot;2026-07-10&quot;:5.65},{&quot;2026-07-11&quot;:5.65},{&quot;2026-07-12&quot;:5.65},{&quot;2026-07-13&quot;:5.53},{&quot;2026-07-14&quot;:5.53},{&quot;2026-07-15&quot;:5.53},{&quot;2026-07-16&quot;:5.64},{&quot;2026-07-17&quot;:5.72},{&quot;2026-07-18&quot;:5.72},{&quot;2026-07-19&quot;:5.72},{&quot;2026-07-20&quot;:5.85},{&quot;2026-07-21&quot;:5.92},{&quot;2026-07-23&quot;:5.92},{&quot;2026-07-25&quot;:5.9},{&quot;2026-07-26&quot;:5.9},{&quot;2026-07-27&quot;:5.9},{&quot;2026-07-29&quot;:5.9},{&quot;2026-07-30&quot;:5.9},{&quot;2026-07-31&quot;:5.9},{&quot;2026-08-01&quot;:5.9},{&quot;2026-08-02&quot;:5.9},{&quot;2026-08-03&quot;:5.9},{&quot;2026-08-04&quot;:5.85},{&quot;2026-08-05&quot;:5.85},{&quot;2026-08-07&quot;:5.85},{&quot;2026-08-08&quot;:5.85},{&quot;2026-08-09&quot;:5.87},{&quot;2026-08-10&quot;:5.87},{&quot;2026-08-11&quot;:5.91},{&quot;2026-08-12&quot;:6.01},{&quot;2026-08-13&quot;:6.01},{&quot;2026-08-14&quot;:5.99},{&quot;2026-08-15&quot;:5.99},{&quot;2026-08-16&quot;:5.99},{&quot;2026-08-17&quot;:5.99},{&quot;2026-08-18&quot;:5.99},{&quot;2026-08-19&quot;:5.99},{&quot;2026-08-20&quot;:5.99},{&quot;2026-08-21&quot;:5.99},{&quot;2026-08-22&quot;:5.99},{&quot;2026-08-23&quot;:5.99},{&quot;2026-08-24&quot;:5.99},{&quot;2026-08-25&quot;:5.99},{&quot;2026-08-26&quot;:5.99},{&quot;2026-08-27&quot;:5.99},{&quot;2026-08-28&quot;:5.99},{&quot;2026-08-29&quot;:5.99},{&quot;2026-08-30&quot;:5.99},{&quot;2026-08-31&quot;:5.99},{&quot;2026-09-01&quot;:5.99},{&quot;2026-09-02&quot;:5.99},{&quot;2026-09-03&quot;:5.99},{&quot;2026-09-04&quot;:6.01},{&quot;2026-09-05&quot;:5.9},{&quot;2026-09-06&quot;:5.9},{&quot;2026-09-07&quot;:5.9},{&quot;2026-09-08&quot;:5.9},{&quot;2026-09-09&quot;:5.86},{&quot;2026-09-10&quot;:5.44},{&quot;2026-09-11&quot;:5.44}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:4.83},{&quot;2026-06-11&quot;:4.81},{&quot;2026-06-12&quot;:4.81},{&quot;2026-06-13&quot;:4.81},{&quot;2026-06-14&quot;:4.81},{&quot;2026-06-15&quot;:4.81},{&quot;2026-06-16&quot;:4.81},{&quot;2026-06-17&quot;:4.81},{&quot;2026-06-18&quot;:4.8},{&quot;2026-06-19&quot;:4.8},{&quot;2026-06-20&quot;:4.8},{&quot;2026-06-21&quot;:4.77},{&quot;2026-06-22&quot;:4.77},{&quot;2026-06-23&quot;:4.77},{&quot;2026-06-24&quot;:4.79},{&quot;2026-06-25&quot;:4.76},{&quot;2026-06-26&quot;:4.8},{&quot;2026-06-27&quot;:4.8},{&quot;2026-06-28&quot;:4.8},{&quot;2026-06-29&quot;:4.8},{&quot;2026-06-30&quot;:4.8},{&quot;2026-07-01&quot;:4.8},{&quot;2026-07-02&quot;:4.79},{&quot;2026-07-03&quot;:4.7},{&quot;2026-07-04&quot;:4.7},{&quot;2026-07-05&quot;:4.71},{&quot;2026-07-06&quot;:4.76},{&quot;2026-07-07&quot;:4.75},{&quot;2026-07-08&quot;:4.75},{&quot;2026-07-09&quot;:4.76},{&quot;2026-07-10&quot;:4.76},{&quot;2026-07-11&quot;:4.75},{&quot;2026-07-12&quot;:4.69},{&quot;2026-07-13&quot;:4.61},{&quot;2026-07-14&quot;:4.57},{&quot;2026-07-15&quot;:4.72},{&quot;2026-07-16&quot;:4.72},{&quot;2026-07-17&quot;:4.79},{&quot;2026-07-18&quot;:4.83},{&quot;2026-07-19&quot;:4.83},{&quot;2026-07-20&quot;:4.77},{&quot;2026-07-21&quot;:4.69},{&quot;2026-07-23&quot;:4.69},{&quot;2026-07-25&quot;:4.55},{&quot;2026-07-26&quot;:4.66},{&quot;2026-07-27&quot;:4.66},{&quot;2026-07-29&quot;:4.66},{&quot;2026-07-30&quot;:4.7},{&quot;2026-07-31&quot;:4.72},{&quot;2026-08-01&quot;:4.72},{&quot;2026-08-02&quot;:4.81},{&quot;2026-08-03&quot;:4.81},{&quot;2026-08-04&quot;:4.89},{&quot;2026-08-05&quot;:4.89},{&quot;2026-08-07&quot;:4.89},{&quot;2026-08-08&quot;:4.89},{&quot;2026-08-09&quot;:4.89},{&quot;2026-08-10&quot;:4.89},{&quot;2026-08-11&quot;:4.86},{&quot;2026-08-12&quot;:4.85},{&quot;2026-08-13&quot;:4.76},{&quot;2026-08-14&quot;:4.76},{&quot;2026-08-15&quot;:4.76},{&quot;2026-08-16&quot;:4.82},{&quot;2026-08-17&quot;:4.81},{&quot;2026-08-18&quot;:4.81},{&quot;2026-08-19&quot;:4.95},{&quot;2026-08-20&quot;:4.95},{&quot;2026-08-21&quot;:4.94},{&quot;2026-08-22&quot;:4.94},{&quot;2026-08-23&quot;:4.93},{&quot;2026-08-24&quot;:4.93},{&quot;2026-08-25&quot;:4.93},{&quot;2026-08-26&quot;:4.92},{&quot;2026-08-27&quot;:4.96},{&quot;2026-08-28&quot;:4.97},{&quot;2026-08-29&quot;:4.97},{&quot;2026-08-30&quot;:4.74},{&quot;2026-08-31&quot;:4.77},{&quot;2026-09-01&quot;:4.77},{&quot;2026-09-02&quot;:4.78},{&quot;2026-09-03&quot;:4.78},{&quot;2026-09-04&quot;:4.76},{&quot;2026-09-05&quot;:4.74},{&quot;2026-09-06&quot;:4.74},{&quot;2026-09-07&quot;:4.69},{&quot;2026-09-08&quot;:4.69},{&quot;2026-09-09&quot;:4.73},{&quot;2026-09-10&quot;:4.72},{&quot;2026-09-11&quot;:4.77}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="40423"
  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">
            Marwyn, the Nurturer
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $5.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="Marwyn, the Nurturer" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/a/aad61d99-5c8e-47b7-ab1a-e70905f59205.jpg?1783928311" />

        <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">
            Marwyn, the Nurturer
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Marwyn, the Nurturer" src="https://cards.scryfall.io/large/front/a/a/aad61d99-5c8e-47b7-ab1a-e70905f59205.jpg?1783928311" />
    </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.43
              </span>

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

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$5.30</span>
              <span class="text-xs text-grey-text">Credit: $6.89</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;:5.46},{&quot;2026-06-14&quot;:5.45},{&quot;2026-06-15&quot;:5.4},{&quot;2026-06-16&quot;:5.36},{&quot;2026-06-17&quot;:5.36},{&quot;2026-06-18&quot;:5.36},{&quot;2026-06-19&quot;:5.36},{&quot;2026-06-20&quot;:5.39},{&quot;2026-06-21&quot;:5.34},{&quot;2026-06-22&quot;:5.34},{&quot;2026-06-23&quot;:5.25},{&quot;2026-06-24&quot;:5.22},{&quot;2026-06-25&quot;:5.22},{&quot;2026-06-26&quot;:5.22},{&quot;2026-06-27&quot;:5.22},{&quot;2026-06-28&quot;:5.22},{&quot;2026-06-29&quot;:5.22},{&quot;2026-06-30&quot;:5.17},{&quot;2026-07-01&quot;:5.15},{&quot;2026-07-02&quot;:5.15},{&quot;2026-07-03&quot;:5.15},{&quot;2026-07-04&quot;:5.09},{&quot;2026-07-05&quot;:4.91},{&quot;2026-07-06&quot;:4.81},{&quot;2026-07-07&quot;:4.79},{&quot;2026-07-08&quot;:4.79},{&quot;2026-07-09&quot;:4.68},{&quot;2026-07-10&quot;:4.4},{&quot;2026-07-11&quot;:4.39},{&quot;2026-07-12&quot;:4.39},{&quot;2026-07-13&quot;:4.43},{&quot;2026-07-14&quot;:4.41},{&quot;2026-07-15&quot;:4.37},{&quot;2026-07-16&quot;:4.37},{&quot;2026-07-17&quot;:4.25},{&quot;2026-07-18&quot;:4.25},{&quot;2026-07-19&quot;:4.29},{&quot;2026-07-20&quot;:4.14},{&quot;2026-07-21&quot;:3.98},{&quot;2026-07-22&quot;:4.06},{&quot;2026-07-23&quot;:3.87},{&quot;2026-07-24&quot;:4.03},{&quot;2026-07-25&quot;:4.0},{&quot;2026-07-26&quot;:4.06},{&quot;2026-07-27&quot;:3.99},{&quot;2026-07-28&quot;:3.75},{&quot;2026-07-29&quot;:3.84},{&quot;2026-07-30&quot;:3.96},{&quot;2026-07-31&quot;:3.85},{&quot;2026-08-01&quot;:3.85},{&quot;2026-08-02&quot;:3.99},{&quot;2026-08-03&quot;:3.88},{&quot;2026-08-04&quot;:3.81},{&quot;2026-08-05&quot;:3.8},{&quot;2026-08-07&quot;:3.89},{&quot;2026-08-08&quot;:4.03},{&quot;2026-08-09&quot;:4.02},{&quot;2026-08-10&quot;:4.03},{&quot;2026-08-11&quot;:4.08},{&quot;2026-08-12&quot;:4.14},{&quot;2026-08-13&quot;:4.21},{&quot;2026-08-14&quot;:4.34},{&quot;2026-08-15&quot;:4.46},{&quot;2026-08-16&quot;:4.5},{&quot;2026-08-17&quot;:4.69},{&quot;2026-08-18&quot;:4.58},{&quot;2026-08-19&quot;:4.73},{&quot;2026-08-20&quot;:4.83},{&quot;2026-08-21&quot;:4.85},{&quot;2026-08-22&quot;:5.01},{&quot;2026-08-23&quot;:5.07},{&quot;2026-08-24&quot;:5.12},{&quot;2026-08-25&quot;:5.13},{&quot;2026-08-26&quot;:5.24},{&quot;2026-08-27&quot;:5.17},{&quot;2026-08-28&quot;:5.24},{&quot;2026-08-29&quot;:5.24},{&quot;2026-08-30&quot;:5.48},{&quot;2026-08-31&quot;:5.47},{&quot;2026-09-01&quot;:5.38},{&quot;2026-09-02&quot;:5.44},{&quot;2026-09-03&quot;:5.79},{&quot;2026-09-04&quot;:5.84},{&quot;2026-09-05&quot;:5.88},{&quot;2026-09-06&quot;:5.83},{&quot;2026-09-07&quot;:5.76},{&quot;2026-09-08&quot;:5.76},{&quot;2026-09-09&quot;:5.72},{&quot;2026-09-10&quot;:5.69},{&quot;2026-09-11&quot;:5.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="19402"
  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">
            Leaf-Crowned Visionary
        </span>


      </div>

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

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

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

        <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">
            Leaf-Crowned Visionary
        </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 — Elf Druid</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Leaf-Crowned Visionary" src="https://cards.scryfall.io/large/front/e/a/ea7bc1f4-a0f5-42ee-b9ee-499fed12f884.jpg?1783921184" />
    </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.21
              </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">
                $5.75
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:6.28},{&quot;2026-06-14&quot;:6.31},{&quot;2026-06-15&quot;:6.31},{&quot;2026-06-16&quot;:6.32},{&quot;2026-06-17&quot;:6.32},{&quot;2026-06-18&quot;:6.16},{&quot;2026-06-19&quot;:6.16},{&quot;2026-06-20&quot;:6.16},{&quot;2026-06-21&quot;:6.16},{&quot;2026-06-22&quot;:6.16},{&quot;2026-06-23&quot;:6.16},{&quot;2026-06-24&quot;:6.16},{&quot;2026-06-25&quot;:6.16},{&quot;2026-06-26&quot;:6.16},{&quot;2026-06-27&quot;:6.16},{&quot;2026-06-28&quot;:6.16},{&quot;2026-06-29&quot;:6.16},{&quot;2026-06-30&quot;:6.16},{&quot;2026-07-01&quot;:6.16},{&quot;2026-07-02&quot;:6.16},{&quot;2026-07-03&quot;:6.16},{&quot;2026-07-04&quot;:6.16},{&quot;2026-07-05&quot;:6.07},{&quot;2026-07-06&quot;:6.07},{&quot;2026-07-07&quot;:6.1},{&quot;2026-07-08&quot;:5.84},{&quot;2026-07-09&quot;:5.84},{&quot;2026-07-10&quot;:5.71},{&quot;2026-07-11&quot;:5.71},{&quot;2026-07-12&quot;:5.71},{&quot;2026-07-13&quot;:5.71},{&quot;2026-07-14&quot;:5.71},{&quot;2026-07-15&quot;:5.71},{&quot;2026-07-16&quot;:5.71},{&quot;2026-07-17&quot;:5.71},{&quot;2026-07-18&quot;:5.61},{&quot;2026-07-19&quot;:5.61},{&quot;2026-07-20&quot;:5.61},{&quot;2026-07-21&quot;:5.61},{&quot;2026-07-22&quot;:5.58},{&quot;2026-07-23&quot;:5.58},{&quot;2026-07-24&quot;:5.58},{&quot;2026-07-25&quot;:5.58},{&quot;2026-07-26&quot;:5.46},{&quot;2026-07-27&quot;:5.46},{&quot;2026-07-28&quot;:5.46},{&quot;2026-07-29&quot;:5.46},{&quot;2026-07-30&quot;:5.46},{&quot;2026-07-31&quot;:5.46},{&quot;2026-08-01&quot;:5.46},{&quot;2026-08-02&quot;:5.46},{&quot;2026-08-03&quot;:5.19},{&quot;2026-08-04&quot;:5.19},{&quot;2026-08-05&quot;:5.07},{&quot;2026-08-07&quot;:5.07},{&quot;2026-08-08&quot;:4.98},{&quot;2026-08-09&quot;:5.14},{&quot;2026-08-10&quot;:5.14},{&quot;2026-08-11&quot;:5.07},{&quot;2026-08-12&quot;:5.07},{&quot;2026-08-13&quot;:5.07},{&quot;2026-08-14&quot;:5.07},{&quot;2026-08-15&quot;:5.07},{&quot;2026-08-16&quot;:4.96},{&quot;2026-08-17&quot;:5.0},{&quot;2026-08-18&quot;:5.02},{&quot;2026-08-19&quot;:5.04},{&quot;2026-08-20&quot;:5.04},{&quot;2026-08-21&quot;:5.04},{&quot;2026-08-22&quot;:5.12},{&quot;2026-08-23&quot;:5.12},{&quot;2026-08-24&quot;:5.12},{&quot;2026-08-25&quot;:5.29},{&quot;2026-08-26&quot;:5.29},{&quot;2026-08-27&quot;:5.29},{&quot;2026-08-28&quot;:5.34},{&quot;2026-08-29&quot;:5.34},{&quot;2026-08-30&quot;:5.4},{&quot;2026-08-31&quot;:5.58},{&quot;2026-09-01&quot;:5.58},{&quot;2026-09-02&quot;:5.58},{&quot;2026-09-03&quot;:5.58},{&quot;2026-09-04&quot;:5.54},{&quot;2026-09-05&quot;:5.52},{&quot;2026-09-06&quot;:5.54},{&quot;2026-09-07&quot;:5.66},{&quot;2026-09-08&quot;:5.66},{&quot;2026-09-09&quot;:5.66},{&quot;2026-09-10&quot;:5.66},{&quot;2026-09-11&quot;:5.75}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:5.48},{&quot;2026-06-14&quot;:5.48},{&quot;2026-06-15&quot;:5.48},{&quot;2026-06-16&quot;:5.48},{&quot;2026-06-17&quot;:5.41},{&quot;2026-06-18&quot;:5.41},{&quot;2026-06-19&quot;:5.41},{&quot;2026-06-20&quot;:5.41},{&quot;2026-06-21&quot;:5.41},{&quot;2026-06-22&quot;:5.36},{&quot;2026-06-23&quot;:5.38},{&quot;2026-06-24&quot;:5.38},{&quot;2026-06-25&quot;:5.38},{&quot;2026-06-26&quot;:5.13},{&quot;2026-06-27&quot;:4.59},{&quot;2026-06-28&quot;:4.59},{&quot;2026-06-29&quot;:4.59},{&quot;2026-06-30&quot;:4.59},{&quot;2026-07-01&quot;:4.59},{&quot;2026-07-02&quot;:4.64},{&quot;2026-07-03&quot;:4.64},{&quot;2026-07-04&quot;:4.64},{&quot;2026-07-05&quot;:4.75},{&quot;2026-07-06&quot;:4.75},{&quot;2026-07-07&quot;:4.8},{&quot;2026-07-08&quot;:4.8},{&quot;2026-07-09&quot;:4.8},{&quot;2026-07-10&quot;:4.8},{&quot;2026-07-11&quot;:4.8},{&quot;2026-07-12&quot;:4.8},{&quot;2026-07-13&quot;:4.74},{&quot;2026-07-14&quot;:4.74},{&quot;2026-07-15&quot;:4.69},{&quot;2026-07-16&quot;:4.69},{&quot;2026-07-17&quot;:4.76},{&quot;2026-07-18&quot;:4.76},{&quot;2026-07-19&quot;:4.76},{&quot;2026-07-20&quot;:4.72},{&quot;2026-07-21&quot;:4.78},{&quot;2026-07-22&quot;:4.75},{&quot;2026-07-23&quot;:4.78},{&quot;2026-07-24&quot;:4.75},{&quot;2026-07-25&quot;:4.75},{&quot;2026-07-26&quot;:4.8},{&quot;2026-07-27&quot;:4.8},{&quot;2026-07-28&quot;:4.8},{&quot;2026-07-29&quot;:4.8},{&quot;2026-07-30&quot;:4.76},{&quot;2026-07-31&quot;:4.73},{&quot;2026-08-01&quot;:4.91},{&quot;2026-08-02&quot;:4.91},{&quot;2026-08-03&quot;:4.91},{&quot;2026-08-04&quot;:4.91},{&quot;2026-08-05&quot;:5.06},{&quot;2026-08-07&quot;:5.14},{&quot;2026-08-08&quot;:5.14},{&quot;2026-08-09&quot;:5.14},{&quot;2026-08-10&quot;:5.1},{&quot;2026-08-11&quot;:5.11},{&quot;2026-08-12&quot;:5.03},{&quot;2026-08-13&quot;:5.01},{&quot;2026-08-14&quot;:5.01},{&quot;2026-08-15&quot;:5.01},{&quot;2026-08-16&quot;:5.08},{&quot;2026-08-17&quot;:5.08},{&quot;2026-08-18&quot;:5.08},{&quot;2026-08-19&quot;:5.01},{&quot;2026-08-20&quot;:5.11},{&quot;2026-08-21&quot;:5.11},{&quot;2026-08-22&quot;:5.05},{&quot;2026-08-23&quot;:5.05},{&quot;2026-08-24&quot;:5.05},{&quot;2026-08-25&quot;:5.03},{&quot;2026-08-26&quot;:5.03},{&quot;2026-08-27&quot;:5.06},{&quot;2026-08-28&quot;:5.11},{&quot;2026-08-29&quot;:5.11},{&quot;2026-08-30&quot;:5.11},{&quot;2026-08-31&quot;:5.12},{&quot;2026-09-01&quot;:5.12},{&quot;2026-09-02&quot;:5.12},{&quot;2026-09-03&quot;:5.12},{&quot;2026-09-04&quot;:5.09},{&quot;2026-09-05&quot;:5.09},{&quot;2026-09-06&quot;:5.09},{&quot;2026-09-07&quot;:5.09},{&quot;2026-09-08&quot;:5.1},{&quot;2026-09-09&quot;:5.1},{&quot;2026-09-10&quot;:5.19},{&quot;2026-09-11&quot;:5.21}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="64309"
  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-scg 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">
            Alpha Status
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Alpha Status
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
          </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="Alpha Status" src="https://cards.scryfall.io/large/front/f/d/fd210c45-57f3-4d7d-93ba-81fe4298ade3.jpg?1783944870" />
    </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.12
              </span>

            </div>
          </div>

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-10&quot;:31.98},{&quot;2026-06-11&quot;:31.98},{&quot;2026-06-12&quot;:31.98},{&quot;2026-06-13&quot;:31.98},{&quot;2026-06-14&quot;:31.98},{&quot;2026-06-15&quot;:31.98},{&quot;2026-06-16&quot;:31.98},{&quot;2026-06-17&quot;:31.98},{&quot;2026-06-18&quot;:31.98},{&quot;2026-06-19&quot;:31.98},{&quot;2026-06-20&quot;:31.98},{&quot;2026-06-21&quot;:31.98},{&quot;2026-06-22&quot;:29.98},{&quot;2026-06-23&quot;:29.98},{&quot;2026-06-24&quot;:29.98},{&quot;2026-06-25&quot;:29.98},{&quot;2026-06-26&quot;:29.98},{&quot;2026-06-27&quot;:29.98},{&quot;2026-06-28&quot;:29.98},{&quot;2026-06-29&quot;:29.98},{&quot;2026-06-30&quot;:29.98},{&quot;2026-07-01&quot;:29.98},{&quot;2026-07-02&quot;:29.98},{&quot;2026-07-03&quot;:29.98},{&quot;2026-07-04&quot;:29.98},{&quot;2026-07-05&quot;:29.98},{&quot;2026-07-06&quot;:29.98},{&quot;2026-07-07&quot;:29.98},{&quot;2026-07-08&quot;:29.98},{&quot;2026-07-09&quot;:29.98},{&quot;2026-07-10&quot;:29.98},{&quot;2026-07-11&quot;:29.98},{&quot;2026-07-12&quot;:29.98},{&quot;2026-07-13&quot;:29.98},{&quot;2026-07-14&quot;:29.98},{&quot;2026-07-15&quot;:29.98},{&quot;2026-07-16&quot;:29.98},{&quot;2026-07-17&quot;:29.98},{&quot;2026-07-18&quot;:29.98},{&quot;2026-07-19&quot;:29.98},{&quot;2026-07-20&quot;:29.98},{&quot;2026-07-21&quot;:29.98},{&quot;2026-07-23&quot;:29.98},{&quot;2026-07-25&quot;:29.98},{&quot;2026-07-26&quot;:29.98},{&quot;2026-07-27&quot;:29.98},{&quot;2026-07-29&quot;:29.98},{&quot;2026-07-30&quot;:29.98},{&quot;2026-07-31&quot;:29.98},{&quot;2026-08-01&quot;:29.98},{&quot;2026-08-02&quot;:29.98},{&quot;2026-08-03&quot;:29.98},{&quot;2026-08-04&quot;:29.98},{&quot;2026-08-05&quot;:29.98},{&quot;2026-08-07&quot;:27.98},{&quot;2026-08-08&quot;:27.98},{&quot;2026-08-09&quot;:27.98},{&quot;2026-08-10&quot;:27.98},{&quot;2026-08-11&quot;:27.98},{&quot;2026-08-12&quot;:27.98},{&quot;2026-08-13&quot;:27.98},{&quot;2026-08-14&quot;:27.98},{&quot;2026-08-15&quot;:27.98},{&quot;2026-08-16&quot;:27.98},{&quot;2026-08-17&quot;:27.98},{&quot;2026-08-18&quot;:27.98},{&quot;2026-08-19&quot;:27.98},{&quot;2026-08-20&quot;:27.98},{&quot;2026-08-21&quot;:27.98},{&quot;2026-08-22&quot;:27.98},{&quot;2026-08-23&quot;:27.98},{&quot;2026-08-24&quot;:28.34},{&quot;2026-08-25&quot;:28.34},{&quot;2026-08-26&quot;:28.34},{&quot;2026-08-27&quot;:28.34},{&quot;2026-08-28&quot;:28.34},{&quot;2026-08-29&quot;:28.34},{&quot;2026-08-30&quot;:28.34},{&quot;2026-08-31&quot;:28.34},{&quot;2026-09-01&quot;:28.34},{&quot;2026-09-02&quot;:28.34},{&quot;2026-09-03&quot;:28.34},{&quot;2026-09-04&quot;:28.34},{&quot;2026-09-05&quot;:28.34},{&quot;2026-09-06&quot;:28.34},{&quot;2026-09-07&quot;:28.34},{&quot;2026-09-08&quot;:28.34},{&quot;2026-09-09&quot;:28.34},{&quot;2026-09-10&quot;:28.34},{&quot;2026-09-11&quot;:28.34}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:5.49},{&quot;2026-06-11&quot;:5.49},{&quot;2026-06-12&quot;:5.49},{&quot;2026-06-13&quot;:5.54},{&quot;2026-06-14&quot;:5.54},{&quot;2026-06-15&quot;:5.53},{&quot;2026-06-16&quot;:5.53},{&quot;2026-06-17&quot;:5.46},{&quot;2026-06-18&quot;:5.58},{&quot;2026-06-19&quot;:5.58},{&quot;2026-06-20&quot;:5.55},{&quot;2026-06-21&quot;:5.52},{&quot;2026-06-22&quot;:5.52},{&quot;2026-06-23&quot;:5.52},{&quot;2026-06-24&quot;:5.52},{&quot;2026-06-25&quot;:5.63},{&quot;2026-06-26&quot;:5.55},{&quot;2026-06-27&quot;:5.54},{&quot;2026-06-28&quot;:5.54},{&quot;2026-06-29&quot;:5.54},{&quot;2026-06-30&quot;:5.54},{&quot;2026-07-01&quot;:5.54},{&quot;2026-07-02&quot;:5.54},{&quot;2026-07-03&quot;:5.54},{&quot;2026-07-04&quot;:5.38},{&quot;2026-07-05&quot;:5.38},{&quot;2026-07-06&quot;:5.17},{&quot;2026-07-07&quot;:5.17},{&quot;2026-07-08&quot;:5.26},{&quot;2026-07-09&quot;:5.26},{&quot;2026-07-10&quot;:5.29},{&quot;2026-07-11&quot;:5.29},{&quot;2026-07-12&quot;:5.29},{&quot;2026-07-13&quot;:5.29},{&quot;2026-07-14&quot;:5.29},{&quot;2026-07-15&quot;:5.28},{&quot;2026-07-16&quot;:5.08},{&quot;2026-07-17&quot;:5.35},{&quot;2026-07-18&quot;:5.35},{&quot;2026-07-19&quot;:5.35},{&quot;2026-07-20&quot;:5.35},{&quot;2026-07-21&quot;:5.26},{&quot;2026-07-23&quot;:5.46},{&quot;2026-07-25&quot;:5.46},{&quot;2026-07-26&quot;:5.46},{&quot;2026-07-27&quot;:5.44},{&quot;2026-07-29&quot;:5.46},{&quot;2026-07-30&quot;:5.46},{&quot;2026-07-31&quot;:5.46},{&quot;2026-08-01&quot;:5.46},{&quot;2026-08-02&quot;:5.46},{&quot;2026-08-03&quot;:5.46},{&quot;2026-08-04&quot;:5.46},{&quot;2026-08-05&quot;:5.46},{&quot;2026-08-07&quot;:5.53},{&quot;2026-08-08&quot;:5.53},{&quot;2026-08-09&quot;:5.54},{&quot;2026-08-10&quot;:5.37},{&quot;2026-08-11&quot;:5.37},{&quot;2026-08-12&quot;:5.22},{&quot;2026-08-13&quot;:5.16},{&quot;2026-08-14&quot;:5.28},{&quot;2026-08-15&quot;:5.28},{&quot;2026-08-16&quot;:5.28},{&quot;2026-08-17&quot;:5.28},{&quot;2026-08-18&quot;:5.28},{&quot;2026-08-19&quot;:5.31},{&quot;2026-08-20&quot;:5.31},{&quot;2026-08-21&quot;:5.38},{&quot;2026-08-22&quot;:5.38},{&quot;2026-08-23&quot;:5.38},{&quot;2026-08-24&quot;:5.21},{&quot;2026-08-25&quot;:5.21},{&quot;2026-08-26&quot;:5.12},{&quot;2026-08-27&quot;:5.12},{&quot;2026-08-28&quot;:5.12},{&quot;2026-08-29&quot;:5.12},{&quot;2026-08-30&quot;:5.12},{&quot;2026-08-31&quot;:5.12},{&quot;2026-09-01&quot;:5.12},{&quot;2026-09-02&quot;:5.12},{&quot;2026-09-03&quot;:5.12},{&quot;2026-09-04&quot;:5.12},{&quot;2026-09-05&quot;:5.12},{&quot;2026-09-06&quot;:5.12},{&quot;2026-09-07&quot;:5.12},{&quot;2026-09-08&quot;:5.12},{&quot;2026-09-09&quot;:5.12},{&quot;2026-09-10&quot;:5.12},{&quot;2026-09-11&quot;:5.12}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $4.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="Gilt-Leaf Palace" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/b/1b3dff0f-5f2a-4533-a5b6-be0dd11abc95.jpg?1783931914" />

        <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">
            Gilt-Leaf Palace
        </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="Gilt-Leaf Palace" src="https://cards.scryfall.io/large/front/1/b/1b3dff0f-5f2a-4533-a5b6-be0dd11abc95.jpg?1783931914" />
    </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.68
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-12&quot;:6.49},{&quot;2026-06-13&quot;:6.49},{&quot;2026-06-14&quot;:6.39},{&quot;2026-06-15&quot;:6.37},{&quot;2026-06-16&quot;:6.37},{&quot;2026-06-17&quot;:6.35},{&quot;2026-06-18&quot;:6.33},{&quot;2026-06-19&quot;:6.31},{&quot;2026-06-20&quot;:6.29},{&quot;2026-06-21&quot;:6.28},{&quot;2026-06-22&quot;:6.11},{&quot;2026-06-23&quot;:6.11},{&quot;2026-06-24&quot;:6.05},{&quot;2026-06-25&quot;:6.03},{&quot;2026-06-26&quot;:6.03},{&quot;2026-06-27&quot;:6.03},{&quot;2026-06-28&quot;:6.03},{&quot;2026-06-29&quot;:6.01},{&quot;2026-06-30&quot;:5.99},{&quot;2026-07-01&quot;:5.99},{&quot;2026-07-02&quot;:5.9},{&quot;2026-07-03&quot;:5.73},{&quot;2026-07-04&quot;:5.68},{&quot;2026-07-05&quot;:5.68},{&quot;2026-07-06&quot;:5.59},{&quot;2026-07-07&quot;:5.53},{&quot;2026-07-08&quot;:5.49},{&quot;2026-07-09&quot;:5.47},{&quot;2026-07-10&quot;:5.44},{&quot;2026-07-11&quot;:5.44},{&quot;2026-07-12&quot;:5.42},{&quot;2026-07-13&quot;:5.39},{&quot;2026-07-14&quot;:5.39},{&quot;2026-07-15&quot;:5.29},{&quot;2026-07-16&quot;:5.26},{&quot;2026-07-17&quot;:4.68},{&quot;2026-07-18&quot;:4.77},{&quot;2026-07-19&quot;:4.44},{&quot;2026-07-20&quot;:4.13},{&quot;2026-07-21&quot;:3.89},{&quot;2026-07-23&quot;:3.95},{&quot;2026-07-24&quot;:4.03},{&quot;2026-07-25&quot;:4.08},{&quot;2026-07-26&quot;:4.13},{&quot;2026-07-27&quot;:4.18},{&quot;2026-07-28&quot;:4.18},{&quot;2026-07-29&quot;:4.19},{&quot;2026-07-30&quot;:4.17},{&quot;2026-07-31&quot;:4.13},{&quot;2026-08-01&quot;:4.13},{&quot;2026-08-02&quot;:4.27},{&quot;2026-08-03&quot;:4.32},{&quot;2026-08-04&quot;:4.32},{&quot;2026-08-05&quot;:4.45},{&quot;2026-08-07&quot;:4.61},{&quot;2026-08-08&quot;:4.62},{&quot;2026-08-09&quot;:4.7},{&quot;2026-08-10&quot;:4.61},{&quot;2026-08-11&quot;:4.67},{&quot;2026-08-12&quot;:4.69},{&quot;2026-08-13&quot;:4.53},{&quot;2026-08-14&quot;:4.52},{&quot;2026-08-15&quot;:4.54},{&quot;2026-08-16&quot;:4.58},{&quot;2026-08-17&quot;:4.42},{&quot;2026-08-18&quot;:4.36},{&quot;2026-08-19&quot;:4.35},{&quot;2026-08-20&quot;:4.35},{&quot;2026-08-21&quot;:4.28},{&quot;2026-08-22&quot;:4.37},{&quot;2026-08-23&quot;:4.28},{&quot;2026-08-24&quot;:4.27},{&quot;2026-08-25&quot;:4.15},{&quot;2026-08-26&quot;:4.13},{&quot;2026-08-27&quot;:4.13},{&quot;2026-08-28&quot;:4.21},{&quot;2026-08-29&quot;:4.21},{&quot;2026-08-30&quot;:4.28},{&quot;2026-08-31&quot;:4.33},{&quot;2026-09-01&quot;:4.36},{&quot;2026-09-02&quot;:4.36},{&quot;2026-09-03&quot;:4.41},{&quot;2026-09-04&quot;:4.49},{&quot;2026-09-05&quot;:4.5},{&quot;2026-09-06&quot;:4.52},{&quot;2026-09-07&quot;:4.57},{&quot;2026-09-08&quot;:4.68},{&quot;2026-09-09&quot;:4.68},{&quot;2026-09-10&quot;:4.68},{&quot;2026-09-11&quot;:4.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="12071"
  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">
            Immaculate Magistrate
        </span>


      </div>

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

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

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

        <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">
            Immaculate Magistrate
        </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 — Elf Shaman</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Immaculate Magistrate" src="https://cards.scryfall.io/large/front/d/9/d9208db8-1ba5-4f9c-90a4-03e377ae6f86.jpg?1783928793" />
    </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.49
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:1.04},{&quot;2026-06-14&quot;:1.04},{&quot;2026-06-15&quot;:1.04},{&quot;2026-06-16&quot;:1.04},{&quot;2026-06-17&quot;:1.04},{&quot;2026-06-18&quot;:1.04},{&quot;2026-06-19&quot;:1.04},{&quot;2026-06-20&quot;:1.04},{&quot;2026-06-21&quot;:1.06},{&quot;2026-06-22&quot;:1.06},{&quot;2026-06-23&quot;:1.06},{&quot;2026-06-24&quot;:1.06},{&quot;2026-06-25&quot;:1.06},{&quot;2026-06-26&quot;:1.06},{&quot;2026-06-27&quot;:1.09},{&quot;2026-06-28&quot;:1.09},{&quot;2026-06-29&quot;:1.09},{&quot;2026-06-30&quot;:1.09},{&quot;2026-07-01&quot;:1.09},{&quot;2026-07-02&quot;:1.11},{&quot;2026-07-03&quot;:1.12},{&quot;2026-07-04&quot;:1.12},{&quot;2026-07-05&quot;:1.12},{&quot;2026-07-06&quot;:1.11},{&quot;2026-07-07&quot;:1.11},{&quot;2026-07-08&quot;:1.11},{&quot;2026-07-09&quot;:1.11},{&quot;2026-07-10&quot;:1.11},{&quot;2026-07-11&quot;:1.11},{&quot;2026-07-12&quot;:1.11},{&quot;2026-07-13&quot;:1.11},{&quot;2026-07-14&quot;:1.11},{&quot;2026-07-15&quot;:1.11},{&quot;2026-07-16&quot;:1.11},{&quot;2026-07-17&quot;:1.11},{&quot;2026-07-18&quot;:1.11},{&quot;2026-07-19&quot;:1.11},{&quot;2026-07-20&quot;:1.11},{&quot;2026-07-21&quot;:1.11},{&quot;2026-07-22&quot;:1.11},{&quot;2026-07-23&quot;:1.12},{&quot;2026-07-24&quot;:1.12},{&quot;2026-07-25&quot;:1.12},{&quot;2026-07-26&quot;:1.11},{&quot;2026-07-27&quot;:1.11},{&quot;2026-07-28&quot;:1.11},{&quot;2026-07-29&quot;:1.13},{&quot;2026-07-30&quot;:1.13},{&quot;2026-07-31&quot;:1.13},{&quot;2026-08-01&quot;:1.09},{&quot;2026-08-02&quot;:1.09},{&quot;2026-08-03&quot;:1.09},{&quot;2026-08-04&quot;:1.09},{&quot;2026-08-05&quot;:1.1},{&quot;2026-08-07&quot;:1.1},{&quot;2026-08-08&quot;:1.15},{&quot;2026-08-09&quot;:1.17},{&quot;2026-08-10&quot;:1.1},{&quot;2026-08-11&quot;:1.1},{&quot;2026-08-12&quot;:1.12},{&quot;2026-08-13&quot;:1.07},{&quot;2026-08-14&quot;:1.09},{&quot;2026-08-15&quot;:1.14},{&quot;2026-08-16&quot;:1.14},{&quot;2026-08-17&quot;:1.15},{&quot;2026-08-18&quot;:1.22},{&quot;2026-08-19&quot;:1.22},{&quot;2026-08-20&quot;:1.4},{&quot;2026-08-21&quot;:1.51},{&quot;2026-08-22&quot;:1.53},{&quot;2026-08-23&quot;:1.55},{&quot;2026-08-24&quot;:1.76},{&quot;2026-08-25&quot;:1.84},{&quot;2026-08-26&quot;:2.05},{&quot;2026-08-27&quot;:2.05},{&quot;2026-08-28&quot;:2.05},{&quot;2026-08-29&quot;:2.05},{&quot;2026-08-30&quot;:2.37},{&quot;2026-08-31&quot;:2.68},{&quot;2026-09-01&quot;:2.96},{&quot;2026-09-02&quot;:3.42},{&quot;2026-09-03&quot;:3.64},{&quot;2026-09-04&quot;:3.64},{&quot;2026-09-05&quot;:3.64},{&quot;2026-09-06&quot;:3.76},{&quot;2026-09-07&quot;:4.17},{&quot;2026-09-08&quot;:4.17},{&quot;2026-09-09&quot;:4.28},{&quot;2026-09-10&quot;:4.97},{&quot;2026-09-11&quot;:5.19}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.63},{&quot;2026-06-14&quot;:1.81},{&quot;2026-06-15&quot;:1.84},{&quot;2026-06-16&quot;:1.66},{&quot;2026-06-17&quot;:1.73},{&quot;2026-06-18&quot;:1.73},{&quot;2026-06-19&quot;:1.8},{&quot;2026-06-20&quot;:1.76},{&quot;2026-06-21&quot;:1.78},{&quot;2026-06-22&quot;:1.77},{&quot;2026-06-23&quot;:1.75},{&quot;2026-06-24&quot;:1.75},{&quot;2026-06-25&quot;:1.87},{&quot;2026-06-26&quot;:1.7},{&quot;2026-06-27&quot;:1.65},{&quot;2026-06-28&quot;:1.63},{&quot;2026-06-29&quot;:1.69},{&quot;2026-06-30&quot;:1.66},{&quot;2026-07-01&quot;:1.69},{&quot;2026-07-02&quot;:1.69},{&quot;2026-07-03&quot;:1.64},{&quot;2026-07-04&quot;:1.6},{&quot;2026-07-05&quot;:1.63},{&quot;2026-07-06&quot;:1.52},{&quot;2026-07-07&quot;:1.46},{&quot;2026-07-08&quot;:1.31},{&quot;2026-07-09&quot;:1.31},{&quot;2026-07-10&quot;:1.45},{&quot;2026-07-11&quot;:1.53},{&quot;2026-07-12&quot;:1.53},{&quot;2026-07-13&quot;:1.53},{&quot;2026-07-14&quot;:1.49},{&quot;2026-07-15&quot;:1.47},{&quot;2026-07-16&quot;:1.56},{&quot;2026-07-17&quot;:1.57},{&quot;2026-07-18&quot;:1.58},{&quot;2026-07-19&quot;:1.51},{&quot;2026-07-20&quot;:1.5},{&quot;2026-07-21&quot;:1.39},{&quot;2026-07-22&quot;:1.23},{&quot;2026-07-23&quot;:1.39},{&quot;2026-07-24&quot;:1.43},{&quot;2026-07-25&quot;:1.33},{&quot;2026-07-26&quot;:1.38},{&quot;2026-07-27&quot;:1.31},{&quot;2026-07-28&quot;:1.43},{&quot;2026-07-29&quot;:1.29},{&quot;2026-07-30&quot;:1.33},{&quot;2026-07-31&quot;:1.49},{&quot;2026-08-01&quot;:1.66},{&quot;2026-08-02&quot;:1.77},{&quot;2026-08-03&quot;:2.27},{&quot;2026-08-04&quot;:2.02},{&quot;2026-08-05&quot;:2.0},{&quot;2026-08-07&quot;:2.13},{&quot;2026-08-08&quot;:2.08},{&quot;2026-08-09&quot;:1.98},{&quot;2026-08-10&quot;:2.14},{&quot;2026-08-11&quot;:2.68},{&quot;2026-08-12&quot;:2.59},{&quot;2026-08-13&quot;:2.19},{&quot;2026-08-14&quot;:2.57},{&quot;2026-08-15&quot;:2.5},{&quot;2026-08-16&quot;:2.47},{&quot;2026-08-17&quot;:1.56},{&quot;2026-08-18&quot;:1.51},{&quot;2026-08-19&quot;:1.67},{&quot;2026-08-20&quot;:1.82},{&quot;2026-08-21&quot;:1.8},{&quot;2026-08-22&quot;:1.74},{&quot;2026-08-23&quot;:1.8},{&quot;2026-08-24&quot;:2.14},{&quot;2026-08-25&quot;:2.32},{&quot;2026-08-26&quot;:2.32},{&quot;2026-08-27&quot;:2.81},{&quot;2026-08-28&quot;:2.99},{&quot;2026-08-29&quot;:2.99},{&quot;2026-08-30&quot;:2.92},{&quot;2026-08-31&quot;:2.92},{&quot;2026-09-01&quot;:3.55},{&quot;2026-09-02&quot;:4.02},{&quot;2026-09-03&quot;:4.12},{&quot;2026-09-04&quot;:4.41},{&quot;2026-09-05&quot;:4.64},{&quot;2026-09-06&quot;:6.12},{&quot;2026-09-07&quot;:5.91},{&quot;2026-09-08&quot;:5.87},{&quot;2026-09-09&quot;:5.59},{&quot;2026-09-10&quot;:4.26},{&quot;2026-09-11&quot;:4.49}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $3.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="Canopy Tactician" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/3/e/3eaf48c9-09bc-4d81-a3a5-432219a71754.jpg?1783928121" />

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Canopy Tactician" src="https://cards.scryfall.io/large/front/3/e/3eaf48c9-09bc-4d81-a3a5-432219a71754.jpg?1783928121" />
    </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.86
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:3.68},{&quot;2026-06-14&quot;:3.6},{&quot;2026-06-15&quot;:3.43},{&quot;2026-06-16&quot;:3.44},{&quot;2026-06-17&quot;:3.39},{&quot;2026-06-18&quot;:3.39},{&quot;2026-06-19&quot;:3.33},{&quot;2026-06-20&quot;:3.23},{&quot;2026-06-21&quot;:3.4},{&quot;2026-06-22&quot;:3.41},{&quot;2026-06-23&quot;:3.39},{&quot;2026-06-24&quot;:3.31},{&quot;2026-06-25&quot;:3.02},{&quot;2026-06-26&quot;:2.97},{&quot;2026-06-27&quot;:3.06},{&quot;2026-06-28&quot;:2.92},{&quot;2026-06-29&quot;:2.97},{&quot;2026-06-30&quot;:2.93},{&quot;2026-07-01&quot;:3.1},{&quot;2026-07-02&quot;:3.23},{&quot;2026-07-03&quot;:3.59},{&quot;2026-07-04&quot;:3.56},{&quot;2026-07-05&quot;:3.9},{&quot;2026-07-06&quot;:4.35},{&quot;2026-07-07&quot;:4.26},{&quot;2026-07-08&quot;:4.35},{&quot;2026-07-09&quot;:4.15},{&quot;2026-07-10&quot;:4.42},{&quot;2026-07-11&quot;:4.42},{&quot;2026-07-12&quot;:4.16},{&quot;2026-07-13&quot;:3.95},{&quot;2026-07-14&quot;:3.92},{&quot;2026-07-15&quot;:3.82},{&quot;2026-07-16&quot;:3.86},{&quot;2026-07-17&quot;:3.76},{&quot;2026-07-18&quot;:3.68},{&quot;2026-07-19&quot;:3.42},{&quot;2026-07-20&quot;:3.22},{&quot;2026-07-21&quot;:3.08},{&quot;2026-07-22&quot;:3.24},{&quot;2026-07-23&quot;:3.19},{&quot;2026-07-24&quot;:3.37},{&quot;2026-07-25&quot;:3.27},{&quot;2026-07-26&quot;:3.4},{&quot;2026-07-27&quot;:3.42},{&quot;2026-07-28&quot;:3.36},{&quot;2026-07-29&quot;:3.39},{&quot;2026-07-30&quot;:3.26},{&quot;2026-07-31&quot;:3.44},{&quot;2026-08-01&quot;:3.49},{&quot;2026-08-02&quot;:3.54},{&quot;2026-08-03&quot;:3.68},{&quot;2026-08-04&quot;:3.77},{&quot;2026-08-05&quot;:3.65},{&quot;2026-08-07&quot;:4.9},{&quot;2026-08-08&quot;:4.94},{&quot;2026-08-09&quot;:4.5},{&quot;2026-08-10&quot;:4.34},{&quot;2026-08-11&quot;:4.18},{&quot;2026-08-12&quot;:4.04},{&quot;2026-08-13&quot;:4.26},{&quot;2026-08-14&quot;:4.43},{&quot;2026-08-15&quot;:4.24},{&quot;2026-08-16&quot;:4.1},{&quot;2026-08-17&quot;:4.17},{&quot;2026-08-18&quot;:4.19},{&quot;2026-08-19&quot;:4.3},{&quot;2026-08-20&quot;:4.74},{&quot;2026-08-21&quot;:4.88},{&quot;2026-08-22&quot;:5.08},{&quot;2026-08-23&quot;:5.09},{&quot;2026-08-24&quot;:4.87},{&quot;2026-08-25&quot;:5.45},{&quot;2026-08-26&quot;:5.17},{&quot;2026-08-27&quot;:5.21},{&quot;2026-08-28&quot;:4.98},{&quot;2026-08-29&quot;:4.98},{&quot;2026-08-30&quot;:5.68},{&quot;2026-08-31&quot;:5.88},{&quot;2026-09-01&quot;:5.46},{&quot;2026-09-02&quot;:5.48},{&quot;2026-09-03&quot;:5.31},{&quot;2026-09-04&quot;:5.18},{&quot;2026-09-05&quot;:5.07},{&quot;2026-09-06&quot;:4.56},{&quot;2026-09-07&quot;:4.58},{&quot;2026-09-08&quot;:4.31},{&quot;2026-09-09&quot;:4.07},{&quot;2026-09-10&quot;:3.78},{&quot;2026-09-11&quot;:3.86}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

        <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">
            Champion of Lambholt
        </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 — Human Warrior</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Champion of Lambholt" src="https://cards.scryfall.io/large/front/d/c/dcb2e0d6-3181-4d3d-a3b4-3896288b2e0e.jpg?1783930154" />
    </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.54
              </span>

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $11.31
              </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-11&quot;:11.45},{&quot;2026-06-12&quot;:11.45},{&quot;2026-06-13&quot;:11.62},{&quot;2026-06-14&quot;:11.62},{&quot;2026-06-15&quot;:11.62},{&quot;2026-06-16&quot;:11.62},{&quot;2026-06-17&quot;:11.55},{&quot;2026-06-18&quot;:11.55},{&quot;2026-06-19&quot;:11.55},{&quot;2026-06-20&quot;:11.55},{&quot;2026-06-21&quot;:11.48},{&quot;2026-06-22&quot;:11.37},{&quot;2026-06-23&quot;:11.28},{&quot;2026-06-24&quot;:11.28},{&quot;2026-06-25&quot;:11.28},{&quot;2026-06-26&quot;:11.28},{&quot;2026-06-27&quot;:11.28},{&quot;2026-06-28&quot;:11.28},{&quot;2026-06-29&quot;:11.39},{&quot;2026-06-30&quot;:11.37},{&quot;2026-07-01&quot;:11.37},{&quot;2026-07-02&quot;:11.37},{&quot;2026-07-03&quot;:11.37},{&quot;2026-07-04&quot;:11.37},{&quot;2026-07-05&quot;:11.39},{&quot;2026-07-06&quot;:11.39},{&quot;2026-07-07&quot;:11.39},{&quot;2026-07-08&quot;:11.39},{&quot;2026-07-09&quot;:11.39},{&quot;2026-07-10&quot;:11.39},{&quot;2026-07-11&quot;:11.39},{&quot;2026-07-12&quot;:11.39},{&quot;2026-07-13&quot;:11.39},{&quot;2026-07-14&quot;:11.39},{&quot;2026-07-15&quot;:11.39},{&quot;2026-07-16&quot;:11.39},{&quot;2026-07-17&quot;:11.39},{&quot;2026-07-18&quot;:11.45},{&quot;2026-07-19&quot;:11.45},{&quot;2026-07-20&quot;:11.45},{&quot;2026-07-21&quot;:11.45},{&quot;2026-07-23&quot;:11.45},{&quot;2026-07-25&quot;:11.45},{&quot;2026-07-26&quot;:11.45},{&quot;2026-07-27&quot;:11.45},{&quot;2026-07-28&quot;:11.45},{&quot;2026-07-29&quot;:11.45},{&quot;2026-07-30&quot;:11.45},{&quot;2026-07-31&quot;:11.45},{&quot;2026-08-01&quot;:11.45},{&quot;2026-08-02&quot;:11.45},{&quot;2026-08-03&quot;:11.45},{&quot;2026-08-04&quot;:11.45},{&quot;2026-08-05&quot;:11.45},{&quot;2026-08-07&quot;:11.44},{&quot;2026-08-08&quot;:11.44},{&quot;2026-08-09&quot;:11.53},{&quot;2026-08-10&quot;:11.53},{&quot;2026-08-11&quot;:11.52},{&quot;2026-08-12&quot;:11.51},{&quot;2026-08-13&quot;:11.51},{&quot;2026-08-14&quot;:11.51},{&quot;2026-08-15&quot;:11.47},{&quot;2026-08-16&quot;:11.47},{&quot;2026-08-17&quot;:11.47},{&quot;2026-08-18&quot;:11.47},{&quot;2026-08-19&quot;:11.47},{&quot;2026-08-20&quot;:11.47},{&quot;2026-08-21&quot;:11.47},{&quot;2026-08-22&quot;:11.42},{&quot;2026-08-23&quot;:11.4},{&quot;2026-08-24&quot;:11.37},{&quot;2026-08-25&quot;:11.37},{&quot;2026-08-26&quot;:11.37},{&quot;2026-08-27&quot;:11.37},{&quot;2026-08-28&quot;:11.37},{&quot;2026-08-29&quot;:11.37},{&quot;2026-08-30&quot;:11.37},{&quot;2026-08-31&quot;:11.37},{&quot;2026-09-01&quot;:11.37},{&quot;2026-09-02&quot;:11.31},{&quot;2026-09-03&quot;:11.31},{&quot;2026-09-04&quot;:11.31},{&quot;2026-09-05&quot;:11.31},{&quot;2026-09-06&quot;:11.31},{&quot;2026-09-07&quot;:11.31},{&quot;2026-09-08&quot;:11.31},{&quot;2026-09-09&quot;:11.31},{&quot;2026-09-10&quot;:11.31},{&quot;2026-09-11&quot;:11.31}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:2.76},{&quot;2026-06-12&quot;:2.76},{&quot;2026-06-13&quot;:2.71},{&quot;2026-06-14&quot;:2.71},{&quot;2026-06-15&quot;:2.97},{&quot;2026-06-16&quot;:3.03},{&quot;2026-06-17&quot;:3.14},{&quot;2026-06-18&quot;:3.14},{&quot;2026-06-19&quot;:3.14},{&quot;2026-06-20&quot;:3.03},{&quot;2026-06-21&quot;:3.03},{&quot;2026-06-22&quot;:3.03},{&quot;2026-06-23&quot;:3.03},{&quot;2026-06-24&quot;:3.03},{&quot;2026-06-25&quot;:3.05},{&quot;2026-06-26&quot;:3.07},{&quot;2026-06-27&quot;:3.06},{&quot;2026-06-28&quot;:3.06},{&quot;2026-06-29&quot;:3.06},{&quot;2026-06-30&quot;:3.06},{&quot;2026-07-01&quot;:3.08},{&quot;2026-07-02&quot;:3.09},{&quot;2026-07-03&quot;:3.12},{&quot;2026-07-04&quot;:3.16},{&quot;2026-07-05&quot;:3.16},{&quot;2026-07-06&quot;:3.13},{&quot;2026-07-07&quot;:3.13},{&quot;2026-07-08&quot;:3.33},{&quot;2026-07-09&quot;:3.33},{&quot;2026-07-10&quot;:3.33},{&quot;2026-07-11&quot;:3.33},{&quot;2026-07-12&quot;:3.35},{&quot;2026-07-13&quot;:3.35},{&quot;2026-07-14&quot;:3.35},{&quot;2026-07-15&quot;:3.35},{&quot;2026-07-16&quot;:3.37},{&quot;2026-07-17&quot;:3.38},{&quot;2026-07-18&quot;:3.38},{&quot;2026-07-19&quot;:3.41},{&quot;2026-07-20&quot;:3.41},{&quot;2026-07-21&quot;:3.41},{&quot;2026-07-23&quot;:3.34},{&quot;2026-07-25&quot;:3.31},{&quot;2026-07-26&quot;:3.31},{&quot;2026-07-27&quot;:3.17},{&quot;2026-07-28&quot;:3.12},{&quot;2026-07-29&quot;:3.08},{&quot;2026-07-30&quot;:3.08},{&quot;2026-07-31&quot;:3.05},{&quot;2026-08-01&quot;:3.07},{&quot;2026-08-02&quot;:2.97},{&quot;2026-08-03&quot;:2.99},{&quot;2026-08-04&quot;:2.94},{&quot;2026-08-05&quot;:2.89},{&quot;2026-08-07&quot;:3.04},{&quot;2026-08-08&quot;:3.04},{&quot;2026-08-09&quot;:3.1},{&quot;2026-08-10&quot;:3.1},{&quot;2026-08-11&quot;:3.09},{&quot;2026-08-12&quot;:3.09},{&quot;2026-08-13&quot;:3.08},{&quot;2026-08-14&quot;:3.11},{&quot;2026-08-15&quot;:3.11},{&quot;2026-08-16&quot;:3.23},{&quot;2026-08-17&quot;:3.28},{&quot;2026-08-18&quot;:3.29},{&quot;2026-08-19&quot;:3.3},{&quot;2026-08-20&quot;:3.3},{&quot;2026-08-21&quot;:3.33},{&quot;2026-08-22&quot;:3.33},{&quot;2026-08-23&quot;:3.33},{&quot;2026-08-24&quot;:3.33},{&quot;2026-08-25&quot;:3.33},{&quot;2026-08-26&quot;:3.33},{&quot;2026-08-27&quot;:3.33},{&quot;2026-08-28&quot;:3.33},{&quot;2026-08-29&quot;:3.33},{&quot;2026-08-30&quot;:3.33},{&quot;2026-08-31&quot;:3.33},{&quot;2026-09-01&quot;:3.33},{&quot;2026-09-02&quot;:3.47},{&quot;2026-09-03&quot;:3.47},{&quot;2026-09-04&quot;:3.47},{&quot;2026-09-05&quot;:3.46},{&quot;2026-09-06&quot;:3.46},{&quot;2026-09-07&quot;:3.46},{&quot;2026-09-08&quot;:3.6},{&quot;2026-09-09&quot;:3.6},{&quot;2026-09-10&quot;:3.54},{&quot;2026-09-11&quot;:3.54}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            8 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.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="Forest" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/8/c8179106-e5d7-457a-9250-70df980b38ce.jpg?1783923805" />

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Forest" src="https://cards.scryfall.io/large/front/c/8/c8179106-e5d7-457a-9250-70df980b38ce.jpg?1783923805" />
    </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">
            6
          </span>
        </div>

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

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

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

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

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

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

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

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

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

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.65</span>
              <span class="text-xs text-grey-text">Credit: $0.85</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">$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.2},{&quot;2026-06-11&quot;:3.2},{&quot;2026-06-12&quot;:3.22},{&quot;2026-06-13&quot;:3.18},{&quot;2026-06-14&quot;:3.18},{&quot;2026-06-15&quot;:3.2},{&quot;2026-06-16&quot;:3.16},{&quot;2026-06-17&quot;:3.17},{&quot;2026-06-18&quot;:3.18},{&quot;2026-06-19&quot;:3.2},{&quot;2026-06-20&quot;:3.29},{&quot;2026-06-21&quot;:3.29},{&quot;2026-06-22&quot;:3.3},{&quot;2026-06-23&quot;:3.24},{&quot;2026-06-24&quot;:3.24},{&quot;2026-06-25&quot;:3.24},{&quot;2026-06-26&quot;:3.28},{&quot;2026-06-27&quot;:3.28},{&quot;2026-06-28&quot;:3.29},{&quot;2026-06-29&quot;:3.29},{&quot;2026-06-30&quot;:3.29},{&quot;2026-07-01&quot;:3.3},{&quot;2026-07-02&quot;:3.28},{&quot;2026-07-03&quot;:3.28},{&quot;2026-07-04&quot;:3.31},{&quot;2026-07-05&quot;:3.3},{&quot;2026-07-06&quot;:3.3},{&quot;2026-07-07&quot;:3.3},{&quot;2026-07-08&quot;:3.26},{&quot;2026-07-09&quot;:3.29},{&quot;2026-07-10&quot;:3.22},{&quot;2026-07-11&quot;:3.11},{&quot;2026-07-12&quot;:3.11},{&quot;2026-07-13&quot;:3.11},{&quot;2026-07-14&quot;:3.11},{&quot;2026-07-15&quot;:3.12},{&quot;2026-07-16&quot;:3.16},{&quot;2026-07-17&quot;:3.12},{&quot;2026-07-18&quot;:3.18},{&quot;2026-07-19&quot;:3.18},{&quot;2026-07-20&quot;:3.17},{&quot;2026-07-21&quot;:3.18},{&quot;2026-07-23&quot;:3.25},{&quot;2026-07-25&quot;:3.21},{&quot;2026-07-26&quot;:3.21},{&quot;2026-07-27&quot;:3.24},{&quot;2026-07-29&quot;:3.21},{&quot;2026-07-30&quot;:3.16},{&quot;2026-07-31&quot;:2.86},{&quot;2026-08-01&quot;:2.86},{&quot;2026-08-02&quot;:2.87},{&quot;2026-08-03&quot;:2.87},{&quot;2026-08-04&quot;:2.83},{&quot;2026-08-05&quot;:2.79},{&quot;2026-08-07&quot;:2.83},{&quot;2026-08-08&quot;:2.82},{&quot;2026-08-09&quot;:3.04},{&quot;2026-08-10&quot;:3.07},{&quot;2026-08-11&quot;:3.07},{&quot;2026-08-12&quot;:3.25},{&quot;2026-08-13&quot;:3.4},{&quot;2026-08-14&quot;:3.39},{&quot;2026-08-15&quot;:3.45},{&quot;2026-08-16&quot;:3.45},{&quot;2026-08-17&quot;:3.47},{&quot;2026-08-18&quot;:3.47},{&quot;2026-08-19&quot;:3.53},{&quot;2026-08-20&quot;:3.53},{&quot;2026-08-21&quot;:3.61},{&quot;2026-08-22&quot;:3.55},{&quot;2026-08-23&quot;:3.23},{&quot;2026-08-24&quot;:3.12},{&quot;2026-08-25&quot;:3.12},{&quot;2026-08-26&quot;:2.97},{&quot;2026-08-27&quot;:2.97},{&quot;2026-08-28&quot;:2.97},{&quot;2026-08-29&quot;:2.97},{&quot;2026-08-30&quot;:3.13},{&quot;2026-08-31&quot;:3.13},{&quot;2026-09-01&quot;:3.13},{&quot;2026-09-02&quot;:3.11},{&quot;2026-09-03&quot;:3.12},{&quot;2026-09-04&quot;:3.18},{&quot;2026-09-05&quot;:3.16},{&quot;2026-09-06&quot;:3.22},{&quot;2026-09-07&quot;:3.47},{&quot;2026-09-08&quot;:3.47},{&quot;2026-09-09&quot;:3.47},{&quot;2026-09-10&quot;:3.38},{&quot;2026-09-11&quot;:3.38}],&quot;normal&quot;:[{&quot;2026-06-10&quot;:2.45},{&quot;2026-06-11&quot;:2.39},{&quot;2026-06-12&quot;:2.37},{&quot;2026-06-13&quot;:2.36},{&quot;2026-06-14&quot;:2.36},{&quot;2026-06-15&quot;:2.4},{&quot;2026-06-16&quot;:2.49},{&quot;2026-06-17&quot;:2.53},{&quot;2026-06-18&quot;:2.51},{&quot;2026-06-19&quot;:2.48},{&quot;2026-06-20&quot;:2.48},{&quot;2026-06-21&quot;:2.49},{&quot;2026-06-22&quot;:2.38},{&quot;2026-06-23&quot;:2.33},{&quot;2026-06-24&quot;:2.27},{&quot;2026-06-25&quot;:2.19},{&quot;2026-06-26&quot;:2.16},{&quot;2026-06-27&quot;:2.02},{&quot;2026-06-28&quot;:1.93},{&quot;2026-06-29&quot;:1.93},{&quot;2026-06-30&quot;:1.94},{&quot;2026-07-01&quot;:1.84},{&quot;2026-07-02&quot;:1.84},{&quot;2026-07-03&quot;:1.84},{&quot;2026-07-04&quot;:1.84},{&quot;2026-07-05&quot;:1.79},{&quot;2026-07-06&quot;:1.79},{&quot;2026-07-07&quot;:1.75},{&quot;2026-07-08&quot;:1.82},{&quot;2026-07-09&quot;:1.81},{&quot;2026-07-10&quot;:1.79},{&quot;2026-07-11&quot;:1.81},{&quot;2026-07-12&quot;:1.83},{&quot;2026-07-13&quot;:1.88},{&quot;2026-07-14&quot;:1.92},{&quot;2026-07-15&quot;:1.93},{&quot;2026-07-16&quot;:2.01},{&quot;2026-07-17&quot;:1.99},{&quot;2026-07-18&quot;:1.97},{&quot;2026-07-19&quot;:1.92},{&quot;2026-07-20&quot;:1.94},{&quot;2026-07-21&quot;:2.01},{&quot;2026-07-23&quot;:1.93},{&quot;2026-07-25&quot;:2.02},{&quot;2026-07-26&quot;:2.02},{&quot;2026-07-27&quot;:2.05},{&quot;2026-07-29&quot;:1.99},{&quot;2026-07-30&quot;:2.24},{&quot;2026-07-31&quot;:2.47},{&quot;2026-08-01&quot;:2.47},{&quot;2026-08-02&quot;:2.48},{&quot;2026-08-03&quot;:2.53},{&quot;2026-08-04&quot;:2.49},{&quot;2026-08-05&quot;:2.72},{&quot;2026-08-07&quot;:2.82},{&quot;2026-08-08&quot;:2.74},{&quot;2026-08-09&quot;:2.71},{&quot;2026-08-10&quot;:2.71},{&quot;2026-08-11&quot;:2.6},{&quot;2026-08-12&quot;:2.65},{&quot;2026-08-13&quot;:2.49},{&quot;2026-08-14&quot;:2.44},{&quot;2026-08-15&quot;:2.36},{&quot;2026-08-16&quot;:2.33},{&quot;2026-08-17&quot;:2.54},{&quot;2026-08-18&quot;:2.42},{&quot;2026-08-19&quot;:2.42},{&quot;2026-08-20&quot;:2.42},{&quot;2026-08-21&quot;:2.53},{&quot;2026-08-22&quot;:2.51},{&quot;2026-08-23&quot;:2.34},{&quot;2026-08-24&quot;:2.41},{&quot;2026-08-25&quot;:2.41},{&quot;2026-08-26&quot;:2.42},{&quot;2026-08-27&quot;:2.38},{&quot;2026-08-28&quot;:2.39},{&quot;2026-08-29&quot;:2.39},{&quot;2026-08-30&quot;:2.18},{&quot;2026-08-31&quot;:2.17},{&quot;2026-09-01&quot;:2.17},{&quot;2026-09-02&quot;:2.02},{&quot;2026-09-03&quot;:2.02},{&quot;2026-09-04&quot;:2.02},{&quot;2026-09-05&quot;:1.91},{&quot;2026-09-06&quot;:1.91},{&quot;2026-09-07&quot;:1.81},{&quot;2026-09-08&quot;:1.83},{&quot;2026-09-09&quot;:1.94},{&quot;2026-09-10&quot;:1.89},{&quot;2026-09-11&quot;:1.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="42011"
  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-common ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            8 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.05
          </span>
        </div>
      </div>
    </div>

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

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

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Forest" src="https://cards.scryfall.io/large/front/a/c/acc778ae-a2d0-493f-963d-e946bd7cacd9.jpg?1783923805" />
    </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">
            6
          </span>
        </div>

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $2.05
              </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">
                $3.08
              </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.60</span>
              <span class="text-xs text-grey-text">Credit: $2.08</span>
            </div>
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Foil</span>
              <span class="text-lg font-medium text-nine-white">$1.58</span>
              <span class="text-xs text-grey-text">Credit: $2.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;:2.76},{&quot;2026-06-14&quot;:2.76},{&quot;2026-06-15&quot;:2.74},{&quot;2026-06-16&quot;:2.72},{&quot;2026-06-17&quot;:2.77},{&quot;2026-06-18&quot;:2.75},{&quot;2026-06-19&quot;:2.75},{&quot;2026-06-20&quot;:2.75},{&quot;2026-06-21&quot;:2.75},{&quot;2026-06-22&quot;:2.71},{&quot;2026-06-23&quot;:2.71},{&quot;2026-06-24&quot;:2.69},{&quot;2026-06-25&quot;:2.66},{&quot;2026-06-26&quot;:2.63},{&quot;2026-06-27&quot;:2.6},{&quot;2026-06-28&quot;:2.6},{&quot;2026-06-29&quot;:2.6},{&quot;2026-06-30&quot;:2.58},{&quot;2026-07-01&quot;:2.6},{&quot;2026-07-02&quot;:2.57},{&quot;2026-07-03&quot;:2.62},{&quot;2026-07-04&quot;:2.55},{&quot;2026-07-05&quot;:2.54},{&quot;2026-07-06&quot;:2.67},{&quot;2026-07-07&quot;:2.67},{&quot;2026-07-08&quot;:2.55},{&quot;2026-07-09&quot;:2.55},{&quot;2026-07-10&quot;:2.61},{&quot;2026-07-11&quot;:2.66},{&quot;2026-07-12&quot;:2.66},{&quot;2026-07-13&quot;:2.68},{&quot;2026-07-14&quot;:2.68},{&quot;2026-07-15&quot;:2.68},{&quot;2026-07-16&quot;:2.72},{&quot;2026-07-17&quot;:2.66},{&quot;2026-07-18&quot;:2.65},{&quot;2026-07-19&quot;:2.65},{&quot;2026-07-20&quot;:2.65},{&quot;2026-07-21&quot;:2.66},{&quot;2026-07-22&quot;:2.62},{&quot;2026-07-23&quot;:2.66},{&quot;2026-07-24&quot;:2.65},{&quot;2026-07-25&quot;:2.62},{&quot;2026-07-26&quot;:2.62},{&quot;2026-07-27&quot;:2.66},{&quot;2026-07-28&quot;:2.66},{&quot;2026-07-29&quot;:2.67},{&quot;2026-07-30&quot;:2.65},{&quot;2026-07-31&quot;:2.65},{&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.73},{&quot;2026-08-05&quot;:2.72},{&quot;2026-08-07&quot;:2.68},{&quot;2026-08-08&quot;:2.69},{&quot;2026-08-09&quot;:2.84},{&quot;2026-08-10&quot;:3.0},{&quot;2026-08-11&quot;:2.98},{&quot;2026-08-12&quot;:3.1},{&quot;2026-08-13&quot;:3.28},{&quot;2026-08-14&quot;:3.22},{&quot;2026-08-15&quot;:3.3},{&quot;2026-08-16&quot;:3.36},{&quot;2026-08-17&quot;:3.36},{&quot;2026-08-18&quot;:3.21},{&quot;2026-08-19&quot;:3.22},{&quot;2026-08-20&quot;:3.17},{&quot;2026-08-21&quot;:3.15},{&quot;2026-08-22&quot;:3.22},{&quot;2026-08-23&quot;:3.18},{&quot;2026-08-24&quot;:3.04},{&quot;2026-08-25&quot;:3.08},{&quot;2026-08-26&quot;:3.08},{&quot;2026-08-27&quot;:3.12},{&quot;2026-08-28&quot;:3.12},{&quot;2026-08-29&quot;:3.12},{&quot;2026-08-30&quot;:3.08},{&quot;2026-08-31&quot;:3.03},{&quot;2026-09-01&quot;:3.07},{&quot;2026-09-02&quot;:2.98},{&quot;2026-09-03&quot;:2.98},{&quot;2026-09-04&quot;:2.98},{&quot;2026-09-05&quot;:2.98},{&quot;2026-09-06&quot;:2.98},{&quot;2026-09-07&quot;:2.98},{&quot;2026-09-08&quot;:3.1},{&quot;2026-09-09&quot;:3.1},{&quot;2026-09-10&quot;:3.08},{&quot;2026-09-11&quot;:3.08}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:2.18},{&quot;2026-06-14&quot;:2.18},{&quot;2026-06-15&quot;:2.18},{&quot;2026-06-16&quot;:2.06},{&quot;2026-06-17&quot;:2.04},{&quot;2026-06-18&quot;:2.04},{&quot;2026-06-19&quot;:1.99},{&quot;2026-06-20&quot;:1.99},{&quot;2026-06-21&quot;:1.95},{&quot;2026-06-22&quot;:1.94},{&quot;2026-06-23&quot;:1.9},{&quot;2026-06-24&quot;:1.86},{&quot;2026-06-25&quot;:1.96},{&quot;2026-06-26&quot;:1.89},{&quot;2026-06-27&quot;:1.85},{&quot;2026-06-28&quot;:1.85},{&quot;2026-06-29&quot;:1.82},{&quot;2026-06-30&quot;:1.82},{&quot;2026-07-01&quot;:1.85},{&quot;2026-07-02&quot;:1.89},{&quot;2026-07-03&quot;:1.87},{&quot;2026-07-04&quot;:1.89},{&quot;2026-07-05&quot;:1.89},{&quot;2026-07-06&quot;:1.89},{&quot;2026-07-07&quot;:1.89},{&quot;2026-07-08&quot;:1.87},{&quot;2026-07-09&quot;:1.87},{&quot;2026-07-10&quot;:1.88},{&quot;2026-07-11&quot;:1.88},{&quot;2026-07-12&quot;:1.97},{&quot;2026-07-13&quot;:1.95},{&quot;2026-07-14&quot;:1.98},{&quot;2026-07-15&quot;:2.01},{&quot;2026-07-16&quot;:2.05},{&quot;2026-07-17&quot;:2.0},{&quot;2026-07-18&quot;:2.02},{&quot;2026-07-19&quot;:2.04},{&quot;2026-07-20&quot;:2.06},{&quot;2026-07-21&quot;:2.02},{&quot;2026-07-22&quot;:2.11},{&quot;2026-07-23&quot;:2.16},{&quot;2026-07-24&quot;:2.37},{&quot;2026-07-25&quot;:2.35},{&quot;2026-07-26&quot;:2.35},{&quot;2026-07-27&quot;:2.38},{&quot;2026-07-28&quot;:2.25},{&quot;2026-07-29&quot;:2.22},{&quot;2026-07-30&quot;:2.56},{&quot;2026-07-31&quot;:2.51},{&quot;2026-08-01&quot;:2.45},{&quot;2026-08-02&quot;:2.31},{&quot;2026-08-03&quot;:2.35},{&quot;2026-08-04&quot;:2.35},{&quot;2026-08-05&quot;:2.34},{&quot;2026-08-07&quot;:2.4},{&quot;2026-08-08&quot;:2.4},{&quot;2026-08-09&quot;:2.64},{&quot;2026-08-10&quot;:2.92},{&quot;2026-08-11&quot;:2.92},{&quot;2026-08-12&quot;:3.04},{&quot;2026-08-13&quot;:3.09},{&quot;2026-08-14&quot;:3.06},{&quot;2026-08-15&quot;:2.68},{&quot;2026-08-16&quot;:2.51},{&quot;2026-08-17&quot;:2.32},{&quot;2026-08-18&quot;:2.39},{&quot;2026-08-19&quot;:2.2},{&quot;2026-08-20&quot;:2.25},{&quot;2026-08-21&quot;:2.6},{&quot;2026-08-22&quot;:2.62},{&quot;2026-08-23&quot;:2.6},{&quot;2026-08-24&quot;:2.75},{&quot;2026-08-25&quot;:2.75},{&quot;2026-08-26&quot;:2.76},{&quot;2026-08-27&quot;:2.48},{&quot;2026-08-28&quot;:2.42},{&quot;2026-08-29&quot;:2.42},{&quot;2026-08-30&quot;:2.17},{&quot;2026-08-31&quot;:2.18},{&quot;2026-09-01&quot;:2.13},{&quot;2026-09-02&quot;:2.16},{&quot;2026-09-03&quot;:2.11},{&quot;2026-09-04&quot;:2.11},{&quot;2026-09-05&quot;:2.19},{&quot;2026-09-06&quot;:2.17},{&quot;2026-09-07&quot;:2.26},{&quot;2026-09-08&quot;:2.06},{&quot;2026-09-09&quot;:2.1},{&quot;2026-09-10&quot;:2.05},{&quot;2026-09-11&quot;:2.05}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="40447"
  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">
            Timberwatch Elf
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Timberwatch Elf
        </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">Creature — Elf</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Timberwatch Elf" src="https://cards.scryfall.io/large/front/3/8/38807f17-1cf2-4736-ad10-df6c8b1a9f55.jpg?1783928309" />
    </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.71
              </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">$2.05</span>
              <span class="text-xs text-grey-text">Credit: $2.67</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:2.3},{&quot;2026-06-14&quot;:2.31},{&quot;2026-06-15&quot;:2.31},{&quot;2026-06-16&quot;:2.31},{&quot;2026-06-17&quot;:2.31},{&quot;2026-06-18&quot;:2.31},{&quot;2026-06-19&quot;:2.3},{&quot;2026-06-20&quot;:2.3},{&quot;2026-06-21&quot;:2.28},{&quot;2026-06-22&quot;:2.31},{&quot;2026-06-23&quot;:2.31},{&quot;2026-06-24&quot;:2.31},{&quot;2026-06-25&quot;:2.31},{&quot;2026-06-26&quot;:2.31},{&quot;2026-06-27&quot;:2.37},{&quot;2026-06-28&quot;:2.37},{&quot;2026-06-29&quot;:2.37},{&quot;2026-06-30&quot;:2.37},{&quot;2026-07-01&quot;:2.37},{&quot;2026-07-02&quot;:2.37},{&quot;2026-07-03&quot;:2.38},{&quot;2026-07-04&quot;:2.38},{&quot;2026-07-05&quot;:2.36},{&quot;2026-07-06&quot;:2.37},{&quot;2026-07-07&quot;:2.35},{&quot;2026-07-08&quot;:2.35},{&quot;2026-07-09&quot;:2.33},{&quot;2026-07-10&quot;:2.33},{&quot;2026-07-11&quot;:2.41},{&quot;2026-07-12&quot;:2.4},{&quot;2026-07-13&quot;:2.32},{&quot;2026-07-14&quot;:2.27},{&quot;2026-07-15&quot;:2.27},{&quot;2026-07-16&quot;:2.26},{&quot;2026-07-17&quot;:2.26},{&quot;2026-07-18&quot;:2.24},{&quot;2026-07-19&quot;:2.24},{&quot;2026-07-20&quot;:2.24},{&quot;2026-07-21&quot;:2.24},{&quot;2026-07-22&quot;:2.29},{&quot;2026-07-23&quot;:2.29},{&quot;2026-07-24&quot;:2.29},{&quot;2026-07-25&quot;:2.26},{&quot;2026-07-26&quot;:2.3},{&quot;2026-07-27&quot;:2.33},{&quot;2026-07-28&quot;:2.38},{&quot;2026-07-29&quot;:2.38},{&quot;2026-07-30&quot;:2.38},{&quot;2026-07-31&quot;:2.38},{&quot;2026-08-01&quot;:2.38},{&quot;2026-08-02&quot;:2.35},{&quot;2026-08-03&quot;:2.35},{&quot;2026-08-04&quot;:2.38},{&quot;2026-08-05&quot;:2.38},{&quot;2026-08-07&quot;:2.33},{&quot;2026-08-08&quot;:2.33},{&quot;2026-08-09&quot;:2.34},{&quot;2026-08-10&quot;:2.37},{&quot;2026-08-11&quot;:2.37},{&quot;2026-08-12&quot;:2.36},{&quot;2026-08-13&quot;:2.35},{&quot;2026-08-14&quot;:2.33},{&quot;2026-08-15&quot;:2.41},{&quot;2026-08-16&quot;:2.45},{&quot;2026-08-17&quot;:2.49},{&quot;2026-08-18&quot;:2.44},{&quot;2026-08-19&quot;:2.44},{&quot;2026-08-20&quot;:2.53},{&quot;2026-08-21&quot;:2.45},{&quot;2026-08-22&quot;:2.45},{&quot;2026-08-23&quot;:2.46},{&quot;2026-08-24&quot;:2.46},{&quot;2026-08-25&quot;:2.46},{&quot;2026-08-26&quot;:2.46},{&quot;2026-08-27&quot;:2.52},{&quot;2026-08-28&quot;:2.57},{&quot;2026-08-29&quot;:2.57},{&quot;2026-08-30&quot;:2.71},{&quot;2026-08-31&quot;:2.61},{&quot;2026-09-01&quot;:2.6},{&quot;2026-09-02&quot;:2.64},{&quot;2026-09-03&quot;:2.64},{&quot;2026-09-04&quot;:2.62},{&quot;2026-09-05&quot;:2.62},{&quot;2026-09-06&quot;:2.57},{&quot;2026-09-07&quot;:2.56},{&quot;2026-09-08&quot;:2.56},{&quot;2026-09-09&quot;:2.62},{&quot;2026-09-10&quot;:2.67},{&quot;2026-09-11&quot;:2.71}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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

      </div>

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

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

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="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.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="Quirion Ranger" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/3/2/320fdf89-e158-41c5-b0bf-fee9dec36a75.jpg?1783926781" />

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Quirion Ranger" src="https://cards.scryfall.io/large/front/3/2/320fdf89-e158-41c5-b0bf-fee9dec36a75.jpg?1783926781" />
    </div>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-11&quot;:3.88},{&quot;2026-06-12&quot;:3.81},{&quot;2026-06-13&quot;:3.81},{&quot;2026-06-14&quot;:3.81},{&quot;2026-06-15&quot;:3.88},{&quot;2026-06-16&quot;:3.88},{&quot;2026-06-17&quot;:3.88},{&quot;2026-06-18&quot;:3.88},{&quot;2026-06-19&quot;:3.96},{&quot;2026-06-20&quot;:3.94},{&quot;2026-06-21&quot;:3.79},{&quot;2026-06-22&quot;:3.8},{&quot;2026-06-23&quot;:3.8},{&quot;2026-06-24&quot;:3.8},{&quot;2026-06-25&quot;:3.8},{&quot;2026-06-26&quot;:3.8},{&quot;2026-06-27&quot;:3.8},{&quot;2026-06-28&quot;:3.8},{&quot;2026-06-29&quot;:3.8},{&quot;2026-06-30&quot;:3.8},{&quot;2026-07-01&quot;:3.8},{&quot;2026-07-02&quot;:3.8},{&quot;2026-07-03&quot;:3.8},{&quot;2026-07-04&quot;:3.8},{&quot;2026-07-05&quot;:3.8},{&quot;2026-07-06&quot;:3.8},{&quot;2026-07-07&quot;:3.72},{&quot;2026-07-08&quot;:3.72},{&quot;2026-07-09&quot;:3.69},{&quot;2026-07-10&quot;:3.69},{&quot;2026-07-11&quot;:3.57},{&quot;2026-07-12&quot;:3.57},{&quot;2026-07-13&quot;:3.51},{&quot;2026-07-14&quot;:3.57},{&quot;2026-07-15&quot;:3.68},{&quot;2026-07-16&quot;:3.68},{&quot;2026-07-17&quot;:3.68},{&quot;2026-07-18&quot;:3.68},{&quot;2026-07-19&quot;:3.62},{&quot;2026-07-20&quot;:3.63},{&quot;2026-07-21&quot;:3.63},{&quot;2026-07-23&quot;:3.65},{&quot;2026-07-25&quot;:3.64},{&quot;2026-07-26&quot;:3.64},{&quot;2026-07-27&quot;:3.61},{&quot;2026-07-28&quot;:3.61},{&quot;2026-07-29&quot;:3.61},{&quot;2026-07-30&quot;:3.61},{&quot;2026-07-31&quot;:3.61},{&quot;2026-08-01&quot;:3.61},{&quot;2026-08-02&quot;:3.67},{&quot;2026-08-03&quot;:3.56},{&quot;2026-08-04&quot;:3.56},{&quot;2026-08-05&quot;:3.56},{&quot;2026-08-07&quot;:3.55},{&quot;2026-08-08&quot;:3.55},{&quot;2026-08-09&quot;:3.55},{&quot;2026-08-10&quot;:3.48},{&quot;2026-08-11&quot;:3.5},{&quot;2026-08-12&quot;:3.57},{&quot;2026-08-13&quot;:3.57},{&quot;2026-08-14&quot;:3.52},{&quot;2026-08-15&quot;:3.52},{&quot;2026-08-16&quot;:3.52},{&quot;2026-08-17&quot;:3.55},{&quot;2026-08-18&quot;:3.64},{&quot;2026-08-19&quot;:3.68},{&quot;2026-08-20&quot;:3.68},{&quot;2026-08-21&quot;:3.68},{&quot;2026-08-22&quot;:3.68},{&quot;2026-08-23&quot;:3.79},{&quot;2026-08-24&quot;:3.76},{&quot;2026-08-25&quot;:3.76},{&quot;2026-08-26&quot;:3.76},{&quot;2026-08-27&quot;:3.76},{&quot;2026-08-28&quot;:3.76},{&quot;2026-08-29&quot;:3.76},{&quot;2026-08-30&quot;:3.75},{&quot;2026-08-31&quot;:3.71},{&quot;2026-09-01&quot;:3.77},{&quot;2026-09-02&quot;:3.7},{&quot;2026-09-03&quot;:3.7},{&quot;2026-09-04&quot;:3.8},{&quot;2026-09-05&quot;:3.8},{&quot;2026-09-06&quot;:3.8},{&quot;2026-09-07&quot;:3.78},{&quot;2026-09-08&quot;:3.76},{&quot;2026-09-09&quot;:3.76},{&quot;2026-09-10&quot;:3.76},{&quot;2026-09-11&quot;:3.81}],&quot;normal&quot;:[{&quot;2026-06-11&quot;:1.59},{&quot;2026-06-12&quot;:1.59},{&quot;2026-06-13&quot;:1.61},{&quot;2026-06-14&quot;:1.6},{&quot;2026-06-15&quot;:1.6},{&quot;2026-06-16&quot;:1.57},{&quot;2026-06-17&quot;:1.61},{&quot;2026-06-18&quot;:1.58},{&quot;2026-06-19&quot;:1.53},{&quot;2026-06-20&quot;:1.55},{&quot;2026-06-21&quot;:1.53},{&quot;2026-06-22&quot;:1.47},{&quot;2026-06-23&quot;:1.46},{&quot;2026-06-24&quot;:1.44},{&quot;2026-06-25&quot;:1.44},{&quot;2026-06-26&quot;:1.43},{&quot;2026-06-27&quot;:1.43},{&quot;2026-06-28&quot;:1.48},{&quot;2026-06-29&quot;:1.52},{&quot;2026-06-30&quot;:1.49},{&quot;2026-07-01&quot;:1.51},{&quot;2026-07-02&quot;:1.52},{&quot;2026-07-03&quot;:1.58},{&quot;2026-07-04&quot;:1.57},{&quot;2026-07-05&quot;:1.59},{&quot;2026-07-06&quot;:1.58},{&quot;2026-07-07&quot;:1.55},{&quot;2026-07-08&quot;:1.52},{&quot;2026-07-09&quot;:1.51},{&quot;2026-07-10&quot;:1.53},{&quot;2026-07-11&quot;:1.53},{&quot;2026-07-12&quot;:1.52},{&quot;2026-07-13&quot;:1.48},{&quot;2026-07-14&quot;:1.42},{&quot;2026-07-15&quot;:1.38},{&quot;2026-07-16&quot;:1.38},{&quot;2026-07-17&quot;:1.4},{&quot;2026-07-18&quot;:1.47},{&quot;2026-07-19&quot;:1.49},{&quot;2026-07-20&quot;:1.53},{&quot;2026-07-21&quot;:1.41},{&quot;2026-07-23&quot;:1.3},{&quot;2026-07-25&quot;:1.35},{&quot;2026-07-26&quot;:1.35},{&quot;2026-07-27&quot;:1.36},{&quot;2026-07-28&quot;:1.37},{&quot;2026-07-29&quot;:1.36},{&quot;2026-07-30&quot;:1.4},{&quot;2026-07-31&quot;:1.4},{&quot;2026-08-01&quot;:1.4},{&quot;2026-08-02&quot;:1.41},{&quot;2026-08-03&quot;:1.45},{&quot;2026-08-04&quot;:1.44},{&quot;2026-08-05&quot;:1.43},{&quot;2026-08-07&quot;:1.47},{&quot;2026-08-08&quot;:1.55},{&quot;2026-08-09&quot;:1.62},{&quot;2026-08-10&quot;:1.65},{&quot;2026-08-11&quot;:1.73},{&quot;2026-08-12&quot;:2.13},{&quot;2026-08-13&quot;:2.46},{&quot;2026-08-14&quot;:2.59},{&quot;2026-08-15&quot;:2.5},{&quot;2026-08-16&quot;:2.33},{&quot;2026-08-17&quot;:2.12},{&quot;2026-08-18&quot;:2.14},{&quot;2026-08-19&quot;:2.05},{&quot;2026-08-20&quot;:2.05},{&quot;2026-08-21&quot;:2.23},{&quot;2026-08-22&quot;:1.97},{&quot;2026-08-23&quot;:1.91},{&quot;2026-08-24&quot;:1.75},{&quot;2026-08-25&quot;:1.78},{&quot;2026-08-26&quot;:1.78},{&quot;2026-08-27&quot;:1.87},{&quot;2026-08-28&quot;:1.98},{&quot;2026-08-29&quot;:1.98},{&quot;2026-08-30&quot;:1.87},{&quot;2026-08-31&quot;:1.83},{&quot;2026-09-01&quot;:1.76},{&quot;2026-09-02&quot;:1.83},{&quot;2026-09-03&quot;:2.04},{&quot;2026-09-04&quot;:2.05},{&quot;2026-09-05&quot;:2.17},{&quot;2026-09-06&quot;:2.24},{&quot;2026-09-07&quot;:2.34},{&quot;2026-09-08&quot;:2.4},{&quot;2026-09-09&quot;:2.41},{&quot;2026-09-10&quot;:2.39},{&quot;2026-09-11&quot;:2.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="44273"
  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-m11 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">
            Whispersilk Cloak
        </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">
              ↓
              2%
            </span>

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

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

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

        <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">
            Whispersilk Cloak
        </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-3'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Whispersilk Cloak" src="https://cards.scryfall.io/large/front/d/8/d83821b3-a6a6-4a15-9169-5c6d1942903d.jpg?1783941788" />
    </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.49
              </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">
                $9.04
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:8.93},{&quot;2026-06-14&quot;:8.93},{&quot;2026-06-15&quot;:8.93},{&quot;2026-06-16&quot;:8.93},{&quot;2026-06-17&quot;:8.93},{&quot;2026-06-18&quot;:8.93},{&quot;2026-06-19&quot;:8.93},{&quot;2026-06-20&quot;:8.93},{&quot;2026-06-21&quot;:8.93},{&quot;2026-06-22&quot;:8.93},{&quot;2026-06-23&quot;:8.93},{&quot;2026-06-24&quot;:8.93},{&quot;2026-06-25&quot;:8.93},{&quot;2026-06-26&quot;:8.93},{&quot;2026-06-27&quot;:8.93},{&quot;2026-06-28&quot;:9.07},{&quot;2026-06-29&quot;:9.07},{&quot;2026-06-30&quot;:9.07},{&quot;2026-07-01&quot;:9.07},{&quot;2026-07-02&quot;:9.07},{&quot;2026-07-03&quot;:9.07},{&quot;2026-07-04&quot;:9.07},{&quot;2026-07-05&quot;:9.07},{&quot;2026-07-06&quot;:9.07},{&quot;2026-07-07&quot;:9.07},{&quot;2026-07-08&quot;:9.07},{&quot;2026-07-09&quot;:9.07},{&quot;2026-07-10&quot;:9.07},{&quot;2026-07-11&quot;:9.07},{&quot;2026-07-12&quot;:9.07},{&quot;2026-07-13&quot;:9.07},{&quot;2026-07-14&quot;:9.07},{&quot;2026-07-15&quot;:9.07},{&quot;2026-07-16&quot;:9.07},{&quot;2026-07-17&quot;:9.07},{&quot;2026-07-18&quot;:9.07},{&quot;2026-07-19&quot;:9.07},{&quot;2026-07-20&quot;:9.07},{&quot;2026-07-21&quot;:9.02},{&quot;2026-07-22&quot;:9.02},{&quot;2026-07-23&quot;:8.95},{&quot;2026-07-24&quot;:8.95},{&quot;2026-07-25&quot;:8.95},{&quot;2026-07-26&quot;:8.95},{&quot;2026-07-27&quot;:8.95},{&quot;2026-07-28&quot;:8.95},{&quot;2026-07-29&quot;:9.04},{&quot;2026-07-30&quot;:9.04},{&quot;2026-07-31&quot;:9.04},{&quot;2026-08-01&quot;:9.04},{&quot;2026-08-02&quot;:9.04},{&quot;2026-08-03&quot;:9.04},{&quot;2026-08-04&quot;:9.04},{&quot;2026-08-05&quot;:9.04},{&quot;2026-08-07&quot;:9.04},{&quot;2026-08-08&quot;:9.04},{&quot;2026-08-09&quot;:9.04},{&quot;2026-08-10&quot;:9.04},{&quot;2026-08-11&quot;:9.04},{&quot;2026-08-12&quot;:9.04},{&quot;2026-08-13&quot;:9.04},{&quot;2026-08-14&quot;:9.04},{&quot;2026-08-15&quot;:9.04},{&quot;2026-08-16&quot;:9.03},{&quot;2026-08-17&quot;:9.03},{&quot;2026-08-18&quot;:9.03},{&quot;2026-08-19&quot;:9.03},{&quot;2026-08-20&quot;:9.03},{&quot;2026-08-21&quot;:9.03},{&quot;2026-08-22&quot;:9.03},{&quot;2026-08-23&quot;:9.03},{&quot;2026-08-24&quot;:9.03},{&quot;2026-08-25&quot;:9.03},{&quot;2026-08-26&quot;:8.87},{&quot;2026-08-27&quot;:8.87},{&quot;2026-08-28&quot;:8.87},{&quot;2026-08-29&quot;:8.87},{&quot;2026-08-30&quot;:8.87},{&quot;2026-08-31&quot;:8.87},{&quot;2026-09-01&quot;:8.87},{&quot;2026-09-02&quot;:8.87},{&quot;2026-09-03&quot;:8.87},{&quot;2026-09-04&quot;:8.87},{&quot;2026-09-05&quot;:8.87},{&quot;2026-09-06&quot;:8.87},{&quot;2026-09-07&quot;:8.87},{&quot;2026-09-08&quot;:8.87},{&quot;2026-09-09&quot;:8.87},{&quot;2026-09-10&quot;:9.04},{&quot;2026-09-11&quot;:9.04}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:3.26},{&quot;2026-06-14&quot;:3.31},{&quot;2026-06-15&quot;:3.42},{&quot;2026-06-16&quot;:3.36},{&quot;2026-06-17&quot;:3.49},{&quot;2026-06-18&quot;:3.53},{&quot;2026-06-19&quot;:3.49},{&quot;2026-06-20&quot;:3.49},{&quot;2026-06-21&quot;:3.47},{&quot;2026-06-22&quot;:3.46},{&quot;2026-06-23&quot;:3.46},{&quot;2026-06-24&quot;:3.38},{&quot;2026-06-25&quot;:3.4},{&quot;2026-06-26&quot;:3.4},{&quot;2026-06-27&quot;:3.4},{&quot;2026-06-28&quot;:3.4},{&quot;2026-06-29&quot;:3.4},{&quot;2026-06-30&quot;:3.4},{&quot;2026-07-01&quot;:3.4},{&quot;2026-07-02&quot;:3.4},{&quot;2026-07-03&quot;:3.4},{&quot;2026-07-04&quot;:3.35},{&quot;2026-07-05&quot;:3.35},{&quot;2026-07-06&quot;:3.2},{&quot;2026-07-07&quot;:3.2},{&quot;2026-07-08&quot;:2.98},{&quot;2026-07-09&quot;:2.98},{&quot;2026-07-10&quot;:2.98},{&quot;2026-07-11&quot;:2.9},{&quot;2026-07-12&quot;:2.77},{&quot;2026-07-13&quot;:3.18},{&quot;2026-07-14&quot;:3.82},{&quot;2026-07-15&quot;:3.85},{&quot;2026-07-16&quot;:3.85},{&quot;2026-07-17&quot;:3.85},{&quot;2026-07-18&quot;:3.84},{&quot;2026-07-19&quot;:3.7},{&quot;2026-07-20&quot;:3.74},{&quot;2026-07-21&quot;:3.74},{&quot;2026-07-22&quot;:3.81},{&quot;2026-07-23&quot;:3.85},{&quot;2026-07-24&quot;:3.85},{&quot;2026-07-25&quot;:3.75},{&quot;2026-07-26&quot;:3.75},{&quot;2026-07-27&quot;:3.75},{&quot;2026-07-28&quot;:3.73},{&quot;2026-07-29&quot;:3.73},{&quot;2026-07-30&quot;:3.72},{&quot;2026-07-31&quot;:3.72},{&quot;2026-08-01&quot;:3.72},{&quot;2026-08-02&quot;:3.68},{&quot;2026-08-03&quot;:3.47},{&quot;2026-08-04&quot;:3.35},{&quot;2026-08-05&quot;:3.35},{&quot;2026-08-07&quot;:3.1},{&quot;2026-08-08&quot;:3.11},{&quot;2026-08-09&quot;:3.01},{&quot;2026-08-10&quot;:3.03},{&quot;2026-08-11&quot;:3.03},{&quot;2026-08-12&quot;:3.03},{&quot;2026-08-13&quot;:3.03},{&quot;2026-08-14&quot;:2.98},{&quot;2026-08-15&quot;:2.98},{&quot;2026-08-16&quot;:2.98},{&quot;2026-08-17&quot;:2.87},{&quot;2026-08-18&quot;:2.87},{&quot;2026-08-19&quot;:2.87},{&quot;2026-08-20&quot;:2.8},{&quot;2026-08-21&quot;:2.8},{&quot;2026-08-22&quot;:2.71},{&quot;2026-08-23&quot;:2.71},{&quot;2026-08-24&quot;:2.26},{&quot;2026-08-25&quot;:2.27},{&quot;2026-08-26&quot;:2.27},{&quot;2026-08-27&quot;:2.27},{&quot;2026-08-28&quot;:2.27},{&quot;2026-08-29&quot;:2.27},{&quot;2026-08-30&quot;:2.06},{&quot;2026-08-31&quot;:2.04},{&quot;2026-09-01&quot;:1.99},{&quot;2026-09-02&quot;:2.17},{&quot;2026-09-03&quot;:2.13},{&quot;2026-09-04&quot;:2.2},{&quot;2026-09-05&quot;:2.55},{&quot;2026-09-06&quot;:2.33},{&quot;2026-09-07&quot;:2.35},{&quot;2026-09-08&quot;:2.39},{&quot;2026-09-09&quot;:2.55},{&quot;2026-09-10&quot;:2.65},{&quot;2026-09-11&quot;:2.49}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="40223"
  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-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">
            Lathril, Blade of the Elves
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Lathril, Blade of the Elves" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/5/4/547888c3-a9a6-4413-b29a-6bcd8a9279bf.jpg?1783928341" />

        <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">
            Lathril, Blade of the Elves
        </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 — Elf Noble</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Lathril, Blade of the Elves" src="https://cards.scryfall.io/large/front/5/4/547888c3-a9a6-4413-b29a-6bcd8a9279bf.jpg?1783928341" />
    </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.22
              </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">
                $2.33
              </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">$1.25</span>
              <span class="text-xs text-grey-text">Credit: $1.63</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.4},{&quot;2026-06-14&quot;:3.4},{&quot;2026-06-15&quot;:3.4},{&quot;2026-06-16&quot;:3.4},{&quot;2026-06-17&quot;:3.4},{&quot;2026-06-18&quot;:3.4},{&quot;2026-06-19&quot;:3.4},{&quot;2026-06-20&quot;:3.4},{&quot;2026-06-21&quot;:3.4},{&quot;2026-06-22&quot;:3.39},{&quot;2026-06-23&quot;:3.39},{&quot;2026-06-24&quot;:3.39},{&quot;2026-06-25&quot;:3.39},{&quot;2026-06-26&quot;:3.39},{&quot;2026-06-27&quot;:3.39},{&quot;2026-06-28&quot;:3.39},{&quot;2026-06-29&quot;:3.39},{&quot;2026-06-30&quot;:3.39},{&quot;2026-07-01&quot;:3.39},{&quot;2026-07-02&quot;:3.39},{&quot;2026-07-03&quot;:3.35},{&quot;2026-07-04&quot;:3.32},{&quot;2026-07-05&quot;:3.2},{&quot;2026-07-06&quot;:3.2},{&quot;2026-07-07&quot;:3.2},{&quot;2026-07-08&quot;:3.2},{&quot;2026-07-09&quot;:3.2},{&quot;2026-07-10&quot;:3.2},{&quot;2026-07-11&quot;:3.15},{&quot;2026-07-12&quot;:3.15},{&quot;2026-07-13&quot;:3.15},{&quot;2026-07-14&quot;:3.14},{&quot;2026-07-15&quot;:3.04},{&quot;2026-07-16&quot;:3.04},{&quot;2026-07-17&quot;:3.0},{&quot;2026-07-18&quot;:2.92},{&quot;2026-07-19&quot;:2.92},{&quot;2026-07-20&quot;:2.84},{&quot;2026-07-21&quot;:2.78},{&quot;2026-07-22&quot;:2.78},{&quot;2026-07-23&quot;:2.72},{&quot;2026-07-24&quot;:2.72},{&quot;2026-07-25&quot;:2.68},{&quot;2026-07-26&quot;:2.68},{&quot;2026-07-27&quot;:2.55},{&quot;2026-07-28&quot;:2.53},{&quot;2026-07-29&quot;:2.53},{&quot;2026-07-30&quot;:2.51},{&quot;2026-07-31&quot;:2.45},{&quot;2026-08-01&quot;:2.45},{&quot;2026-08-02&quot;:2.42},{&quot;2026-08-03&quot;:2.39},{&quot;2026-08-04&quot;:2.4},{&quot;2026-08-05&quot;:2.34},{&quot;2026-08-07&quot;:2.53},{&quot;2026-08-08&quot;:2.38},{&quot;2026-08-09&quot;:2.36},{&quot;2026-08-10&quot;:2.38},{&quot;2026-08-11&quot;:2.45},{&quot;2026-08-12&quot;:2.37},{&quot;2026-08-13&quot;:2.5},{&quot;2026-08-14&quot;:2.5},{&quot;2026-08-15&quot;:2.56},{&quot;2026-08-16&quot;:2.62},{&quot;2026-08-17&quot;:2.64},{&quot;2026-08-18&quot;:2.67},{&quot;2026-08-19&quot;:2.68},{&quot;2026-08-20&quot;:2.76},{&quot;2026-08-21&quot;:2.55},{&quot;2026-08-22&quot;:2.55},{&quot;2026-08-23&quot;:2.6},{&quot;2026-08-24&quot;:2.59},{&quot;2026-08-25&quot;:2.54},{&quot;2026-08-26&quot;:2.45},{&quot;2026-08-27&quot;:2.42},{&quot;2026-08-28&quot;:2.39},{&quot;2026-08-29&quot;:2.39},{&quot;2026-08-30&quot;:2.55},{&quot;2026-08-31&quot;:2.54},{&quot;2026-09-01&quot;:2.45},{&quot;2026-09-02&quot;:2.4},{&quot;2026-09-03&quot;:2.38},{&quot;2026-09-04&quot;:2.24},{&quot;2026-09-05&quot;:2.24},{&quot;2026-09-06&quot;:2.18},{&quot;2026-09-07&quot;:2.18},{&quot;2026-09-08&quot;:2.23},{&quot;2026-09-09&quot;:2.17},{&quot;2026-09-10&quot;:2.29},{&quot;2026-09-11&quot;:2.33}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:3.44},{&quot;2026-06-14&quot;:3.32},{&quot;2026-06-15&quot;:3.32},{&quot;2026-06-16&quot;:3.32},{&quot;2026-06-17&quot;:3.32},{&quot;2026-06-18&quot;:3.25},{&quot;2026-06-19&quot;:3.19},{&quot;2026-06-20&quot;:3.15},{&quot;2026-06-21&quot;:3.09},{&quot;2026-06-22&quot;:3.09},{&quot;2026-06-23&quot;:3.09},{&quot;2026-06-24&quot;:3.09},{&quot;2026-06-25&quot;:3.09},{&quot;2026-06-26&quot;:3.09},{&quot;2026-06-27&quot;:2.89},{&quot;2026-06-28&quot;:2.89},{&quot;2026-06-29&quot;:2.89},{&quot;2026-06-30&quot;:3.01},{&quot;2026-07-01&quot;:2.94},{&quot;2026-07-02&quot;:2.91},{&quot;2026-07-03&quot;:2.91},{&quot;2026-07-04&quot;:2.94},{&quot;2026-07-05&quot;:2.94},{&quot;2026-07-06&quot;:2.94},{&quot;2026-07-07&quot;:2.94},{&quot;2026-07-08&quot;:3.05},{&quot;2026-07-09&quot;:3.03},{&quot;2026-07-10&quot;:2.9},{&quot;2026-07-11&quot;:2.9},{&quot;2026-07-12&quot;:2.9},{&quot;2026-07-13&quot;:2.91},{&quot;2026-07-14&quot;:2.89},{&quot;2026-07-15&quot;:2.89},{&quot;2026-07-16&quot;:2.83},{&quot;2026-07-17&quot;:2.8},{&quot;2026-07-18&quot;:2.8},{&quot;2026-07-19&quot;:2.8},{&quot;2026-07-20&quot;:2.8},{&quot;2026-07-21&quot;:2.8},{&quot;2026-07-22&quot;:2.74},{&quot;2026-07-23&quot;:2.72},{&quot;2026-07-24&quot;:2.56},{&quot;2026-07-25&quot;:2.56},{&quot;2026-07-26&quot;:2.56},{&quot;2026-07-27&quot;:2.56},{&quot;2026-07-28&quot;:2.56},{&quot;2026-07-29&quot;:2.56},{&quot;2026-07-30&quot;:2.56},{&quot;2026-07-31&quot;:2.56},{&quot;2026-08-01&quot;:2.56},{&quot;2026-08-02&quot;:2.51},{&quot;2026-08-03&quot;:2.52},{&quot;2026-08-04&quot;:2.52},{&quot;2026-08-05&quot;:2.52},{&quot;2026-08-07&quot;:2.43},{&quot;2026-08-08&quot;:2.43},{&quot;2026-08-09&quot;:2.42},{&quot;2026-08-10&quot;:2.42},{&quot;2026-08-11&quot;:2.42},{&quot;2026-08-12&quot;:2.38},{&quot;2026-08-13&quot;:2.32},{&quot;2026-08-14&quot;:2.32},{&quot;2026-08-15&quot;:2.32},{&quot;2026-08-16&quot;:2.38},{&quot;2026-08-17&quot;:2.39},{&quot;2026-08-18&quot;:2.42},{&quot;2026-08-19&quot;:2.42},{&quot;2026-08-20&quot;:2.48},{&quot;2026-08-21&quot;:2.64},{&quot;2026-08-22&quot;:2.77},{&quot;2026-08-23&quot;:2.87},{&quot;2026-08-24&quot;:3.02},{&quot;2026-08-25&quot;:2.98},{&quot;2026-08-26&quot;:2.96},{&quot;2026-08-27&quot;:2.92},{&quot;2026-08-28&quot;:3.01},{&quot;2026-08-29&quot;:3.01},{&quot;2026-08-30&quot;:2.93},{&quot;2026-08-31&quot;:3.05},{&quot;2026-09-01&quot;:3.05},{&quot;2026-09-02&quot;:3.06},{&quot;2026-09-03&quot;:3.06},{&quot;2026-09-04&quot;:3.06},{&quot;2026-09-05&quot;:3.07},{&quot;2026-09-06&quot;:3.12},{&quot;2026-09-07&quot;:3.12},{&quot;2026-09-08&quot;:3.16},{&quot;2026-09-09&quot;:3.22},{&quot;2026-09-10&quot;:3.22},{&quot;2026-09-11&quot;:3.22}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="40420"
  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">
            Lys Alana Huntmaster
        </span>


      </div>

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

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

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

        <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">
            Lys Alana Huntmaster
        </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">Creature — Elf Warrior</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Lys Alana Huntmaster" src="https://cards.scryfall.io/large/front/0/8/0849f67b-da5d-49f7-840f-f87f48518156.jpg?1783928313" />
    </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.23
              </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.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;normal&quot;:[{&quot;2026-06-08&quot;:2.45},{&quot;2026-06-10&quot;:2.45},{&quot;2026-06-11&quot;:2.33},{&quot;2026-06-12&quot;:2.33},{&quot;2026-06-13&quot;:2.39},{&quot;2026-06-14&quot;:2.39},{&quot;2026-06-15&quot;:2.39},{&quot;2026-06-16&quot;:2.49},{&quot;2026-06-17&quot;:2.49},{&quot;2026-06-18&quot;:2.49},{&quot;2026-06-19&quot;:2.34},{&quot;2026-06-20&quot;:2.36},{&quot;2026-06-21&quot;:2.46},{&quot;2026-06-22&quot;:2.58},{&quot;2026-06-24&quot;:2.74},{&quot;2026-06-25&quot;:2.72},{&quot;2026-06-26&quot;:2.73},{&quot;2026-06-27&quot;:2.98},{&quot;2026-06-28&quot;:3.0},{&quot;2026-06-29&quot;:2.99},{&quot;2026-06-30&quot;:3.03},{&quot;2026-07-01&quot;:3.0},{&quot;2026-07-02&quot;:3.09},{&quot;2026-07-03&quot;:3.16},{&quot;2026-07-04&quot;:3.31},{&quot;2026-07-05&quot;:3.33},{&quot;2026-07-06&quot;:3.35},{&quot;2026-07-07&quot;:3.32},{&quot;2026-07-08&quot;:3.16},{&quot;2026-07-09&quot;:3.16},{&quot;2026-07-10&quot;:3.16},{&quot;2026-07-11&quot;:3.15},{&quot;2026-07-12&quot;:2.98},{&quot;2026-07-13&quot;:2.99},{&quot;2026-07-14&quot;:2.99},{&quot;2026-07-15&quot;:2.99},{&quot;2026-07-16&quot;:2.99},{&quot;2026-07-17&quot;:2.99},{&quot;2026-07-18&quot;:2.89},{&quot;2026-07-19&quot;:2.9},{&quot;2026-07-20&quot;:2.85},{&quot;2026-07-21&quot;:2.63},{&quot;2026-07-23&quot;:2.67},{&quot;2026-07-25&quot;:2.38},{&quot;2026-07-26&quot;:2.26},{&quot;2026-07-27&quot;:2.15},{&quot;2026-07-29&quot;:2.16},{&quot;2026-07-30&quot;:2.16},{&quot;2026-07-31&quot;:2.16},{&quot;2026-08-01&quot;:2.16},{&quot;2026-08-02&quot;:1.96},{&quot;2026-08-03&quot;:1.79},{&quot;2026-08-04&quot;:1.69},{&quot;2026-08-05&quot;:1.72},{&quot;2026-08-07&quot;:1.73},{&quot;2026-08-08&quot;:1.63},{&quot;2026-08-09&quot;:1.63},{&quot;2026-08-10&quot;:1.63},{&quot;2026-08-11&quot;:1.63},{&quot;2026-08-12&quot;:1.66},{&quot;2026-08-13&quot;:1.71},{&quot;2026-08-14&quot;:1.71},{&quot;2026-08-15&quot;:1.66},{&quot;2026-08-16&quot;:1.64},{&quot;2026-08-17&quot;:1.65},{&quot;2026-08-18&quot;:1.84},{&quot;2026-08-19&quot;:1.84},{&quot;2026-08-20&quot;:1.84},{&quot;2026-08-21&quot;:1.94},{&quot;2026-08-22&quot;:1.97},{&quot;2026-08-23&quot;:1.96},{&quot;2026-08-24&quot;:2.04},{&quot;2026-08-25&quot;:2.04},{&quot;2026-08-26&quot;:2.08},{&quot;2026-08-27&quot;:2.08},{&quot;2026-08-28&quot;:2.13},{&quot;2026-08-29&quot;:2.13},{&quot;2026-08-30&quot;:2.14},{&quot;2026-08-31&quot;:2.14},{&quot;2026-09-01&quot;:2.14},{&quot;2026-09-02&quot;:2.2},{&quot;2026-09-03&quot;:2.26},{&quot;2026-09-04&quot;:2.22},{&quot;2026-09-05&quot;:2.25},{&quot;2026-09-06&quot;:2.25},{&quot;2026-09-07&quot;:2.23},{&quot;2026-09-08&quot;:2.27},{&quot;2026-09-09&quot;:2.28},{&quot;2026-09-10&quot;:2.23},{&quot;2026-09-11&quot;:2.23}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="78872"
  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-tsp 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">
            Squall Line
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $2.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="Squall Line" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/3/f/3f368729-a6f2-4bf7-8b06-39c551f0b24a.jpg?1783943206" />

        <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">
            Squall Line
        </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-x'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Squall Line" src="https://cards.scryfall.io/large/front/3/f/3f368729-a6f2-4bf7-8b06-39c551f0b24a.jpg?1783943206" />
    </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.06
              </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.36
              </span>

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

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="85639"
  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-wth 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">
            Vitalize
        </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">
            $1.98
          </span>
        </div>
      </div>
    </div>

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

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

        <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">
            Vitalize
        </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-g'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Vitalize" src="https://cards.scryfall.io/large/front/d/6/d6ee4997-4b1a-4e03-88ac-63b451bb7b38.jpg?1783946715" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:2.24},{&quot;2026-06-14&quot;:2.24},{&quot;2026-06-15&quot;:2.26},{&quot;2026-06-16&quot;:2.09},{&quot;2026-06-17&quot;:2.09},{&quot;2026-06-18&quot;:2.09},{&quot;2026-06-19&quot;:2.09},{&quot;2026-06-20&quot;:2.07},{&quot;2026-06-21&quot;:2.07},{&quot;2026-06-22&quot;:2.07},{&quot;2026-06-23&quot;:2.07},{&quot;2026-06-24&quot;:1.92},{&quot;2026-06-25&quot;:1.92},{&quot;2026-06-26&quot;:1.92},{&quot;2026-06-27&quot;:1.8},{&quot;2026-06-28&quot;:1.85},{&quot;2026-06-29&quot;:1.89},{&quot;2026-06-30&quot;:2.0},{&quot;2026-07-01&quot;:2.03},{&quot;2026-07-02&quot;:2.06},{&quot;2026-07-03&quot;:2.06},{&quot;2026-07-04&quot;:2.06},{&quot;2026-07-05&quot;:2.06},{&quot;2026-07-06&quot;:1.94},{&quot;2026-07-07&quot;:1.94},{&quot;2026-07-08&quot;:1.91},{&quot;2026-07-09&quot;:1.91},{&quot;2026-07-10&quot;:1.91},{&quot;2026-07-11&quot;:1.87},{&quot;2026-07-12&quot;:1.87},{&quot;2026-07-13&quot;:1.87},{&quot;2026-07-14&quot;:1.86},{&quot;2026-07-15&quot;:1.86},{&quot;2026-07-16&quot;:1.86},{&quot;2026-07-17&quot;:1.82},{&quot;2026-07-18&quot;:1.84},{&quot;2026-07-19&quot;:1.83},{&quot;2026-07-20&quot;:1.83},{&quot;2026-07-21&quot;:1.83},{&quot;2026-07-22&quot;:1.83},{&quot;2026-07-23&quot;:1.83},{&quot;2026-07-24&quot;:1.85},{&quot;2026-07-25&quot;:1.85},{&quot;2026-07-26&quot;:1.96},{&quot;2026-07-27&quot;:2.03},{&quot;2026-07-28&quot;:2.03},{&quot;2026-07-29&quot;:2.03},{&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.03},{&quot;2026-08-03&quot;:2.03},{&quot;2026-08-04&quot;:1.9},{&quot;2026-08-05&quot;:1.88},{&quot;2026-08-07&quot;:1.82},{&quot;2026-08-08&quot;:1.79},{&quot;2026-08-09&quot;:1.83},{&quot;2026-08-10&quot;:1.82},{&quot;2026-08-11&quot;:1.8},{&quot;2026-08-12&quot;:1.82},{&quot;2026-08-13&quot;:1.82},{&quot;2026-08-14&quot;:1.84},{&quot;2026-08-15&quot;:1.8},{&quot;2026-08-16&quot;:1.8},{&quot;2026-08-17&quot;:1.8},{&quot;2026-08-18&quot;:1.79},{&quot;2026-08-19&quot;:1.7},{&quot;2026-08-20&quot;:1.96},{&quot;2026-08-21&quot;:1.88},{&quot;2026-08-22&quot;:1.88},{&quot;2026-08-23&quot;:1.88},{&quot;2026-08-24&quot;:1.87},{&quot;2026-08-25&quot;:1.86},{&quot;2026-08-26&quot;:1.86},{&quot;2026-08-27&quot;:1.86},{&quot;2026-08-28&quot;:1.86},{&quot;2026-08-29&quot;:1.86},{&quot;2026-08-30&quot;:1.89},{&quot;2026-08-31&quot;:1.9},{&quot;2026-09-01&quot;:1.86},{&quot;2026-09-02&quot;:1.87},{&quot;2026-09-03&quot;:1.88},{&quot;2026-09-04&quot;:1.88},{&quot;2026-09-05&quot;:1.88},{&quot;2026-09-06&quot;:1.88},{&quot;2026-09-07&quot;:1.88},{&quot;2026-09-08&quot;:1.94},{&quot;2026-09-09&quot;:1.96},{&quot;2026-09-10&quot;:1.98},{&quot;2026-09-11&quot;:1.98}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Sylvan Anthem" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/1/a119edc2-9e0f-43d1-a13d-25827f86e3e3.jpg?1783926824" />

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Sylvan Anthem" src="https://cards.scryfall.io/large/front/a/1/a119edc2-9e0f-43d1-a13d-25827f86e3e3.jpg?1783926824" />
    </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.84
              </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">
                $2.16
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-12&quot;:1.75},{&quot;2026-06-13&quot;:1.75},{&quot;2026-06-14&quot;:1.75},{&quot;2026-06-15&quot;:1.75},{&quot;2026-06-16&quot;:1.75},{&quot;2026-06-17&quot;:1.75},{&quot;2026-06-18&quot;:1.75},{&quot;2026-06-19&quot;:1.75},{&quot;2026-06-20&quot;:1.75},{&quot;2026-06-21&quot;:1.75},{&quot;2026-06-22&quot;:1.75},{&quot;2026-06-23&quot;:1.75},{&quot;2026-06-24&quot;:1.75},{&quot;2026-06-25&quot;:1.75},{&quot;2026-06-26&quot;:1.75},{&quot;2026-06-27&quot;:1.77},{&quot;2026-06-28&quot;:1.77},{&quot;2026-06-29&quot;:1.77},{&quot;2026-06-30&quot;:1.77},{&quot;2026-07-01&quot;:1.77},{&quot;2026-07-02&quot;:1.77},{&quot;2026-07-03&quot;:1.79},{&quot;2026-07-04&quot;:1.79},{&quot;2026-07-05&quot;:1.79},{&quot;2026-07-06&quot;:1.79},{&quot;2026-07-07&quot;:1.79},{&quot;2026-07-08&quot;:1.79},{&quot;2026-07-09&quot;:1.79},{&quot;2026-07-10&quot;:1.79},{&quot;2026-07-11&quot;:1.79},{&quot;2026-07-12&quot;:1.79},{&quot;2026-07-13&quot;:1.79},{&quot;2026-07-14&quot;:1.79},{&quot;2026-07-15&quot;:1.79},{&quot;2026-07-16&quot;:1.79},{&quot;2026-07-17&quot;:1.79},{&quot;2026-07-18&quot;:1.79},{&quot;2026-07-19&quot;:1.79},{&quot;2026-07-20&quot;:1.79},{&quot;2026-07-21&quot;:1.79},{&quot;2026-07-23&quot;:1.82},{&quot;2026-07-24&quot;:1.82},{&quot;2026-07-25&quot;:1.82},{&quot;2026-07-26&quot;:1.82},{&quot;2026-07-27&quot;:1.82},{&quot;2026-07-28&quot;:1.82},{&quot;2026-07-29&quot;:1.81},{&quot;2026-07-30&quot;:1.81},{&quot;2026-07-31&quot;:1.9},{&quot;2026-08-01&quot;:1.91},{&quot;2026-08-02&quot;:1.91},{&quot;2026-08-03&quot;:1.91},{&quot;2026-08-04&quot;:1.91},{&quot;2026-08-05&quot;:1.91},{&quot;2026-08-07&quot;:1.91},{&quot;2026-08-08&quot;:1.91},{&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.04},{&quot;2026-08-14&quot;:2.04},{&quot;2026-08-15&quot;:2.04},{&quot;2026-08-16&quot;:2.04},{&quot;2026-08-17&quot;:2.02},{&quot;2026-08-18&quot;:2.02},{&quot;2026-08-19&quot;:2.07},{&quot;2026-08-20&quot;:2.07},{&quot;2026-08-21&quot;:2.07},{&quot;2026-08-22&quot;:2.07},{&quot;2026-08-23&quot;:2.07},{&quot;2026-08-24&quot;:2.07},{&quot;2026-08-25&quot;:2.07},{&quot;2026-08-26&quot;:2.07},{&quot;2026-08-27&quot;:2.07},{&quot;2026-08-28&quot;:2.07},{&quot;2026-08-29&quot;:2.07},{&quot;2026-08-30&quot;:2.07},{&quot;2026-08-31&quot;:2.07},{&quot;2026-09-01&quot;:2.07},{&quot;2026-09-02&quot;:2.07},{&quot;2026-09-03&quot;:2.07},{&quot;2026-09-04&quot;:2.07},{&quot;2026-09-05&quot;:2.1},{&quot;2026-09-06&quot;:2.1},{&quot;2026-09-07&quot;:2.1},{&quot;2026-09-08&quot;:2.16},{&quot;2026-09-09&quot;:2.16},{&quot;2026-09-10&quot;:2.16},{&quot;2026-09-11&quot;:2.16}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:1.09},{&quot;2026-06-13&quot;:1.13},{&quot;2026-06-14&quot;:1.15},{&quot;2026-06-15&quot;:1.21},{&quot;2026-06-16&quot;:1.23},{&quot;2026-06-17&quot;:1.23},{&quot;2026-06-18&quot;:1.27},{&quot;2026-06-19&quot;:1.42},{&quot;2026-06-20&quot;:1.43},{&quot;2026-06-21&quot;:1.35},{&quot;2026-06-22&quot;:1.29},{&quot;2026-06-23&quot;:1.25},{&quot;2026-06-24&quot;:1.14},{&quot;2026-06-25&quot;:1.15},{&quot;2026-06-26&quot;:1.21},{&quot;2026-06-27&quot;:1.2},{&quot;2026-06-28&quot;:1.25},{&quot;2026-06-29&quot;:1.27},{&quot;2026-06-30&quot;:1.17},{&quot;2026-07-01&quot;:1.23},{&quot;2026-07-02&quot;:1.31},{&quot;2026-07-03&quot;:1.29},{&quot;2026-07-04&quot;:1.33},{&quot;2026-07-05&quot;:1.22},{&quot;2026-07-06&quot;:1.24},{&quot;2026-07-07&quot;:1.27},{&quot;2026-07-08&quot;:1.31},{&quot;2026-07-09&quot;:1.3},{&quot;2026-07-10&quot;:1.39},{&quot;2026-07-11&quot;:1.5},{&quot;2026-07-12&quot;:1.5},{&quot;2026-07-13&quot;:1.46},{&quot;2026-07-14&quot;:1.46},{&quot;2026-07-15&quot;:1.47},{&quot;2026-07-16&quot;:1.52},{&quot;2026-07-17&quot;:1.49},{&quot;2026-07-18&quot;:1.48},{&quot;2026-07-19&quot;:1.48},{&quot;2026-07-20&quot;:1.4},{&quot;2026-07-21&quot;:1.43},{&quot;2026-07-23&quot;:1.44},{&quot;2026-07-24&quot;:1.48},{&quot;2026-07-25&quot;:1.48},{&quot;2026-07-26&quot;:1.55},{&quot;2026-07-27&quot;:1.63},{&quot;2026-07-28&quot;:1.71},{&quot;2026-07-29&quot;:1.76},{&quot;2026-07-30&quot;:1.69},{&quot;2026-07-31&quot;:1.64},{&quot;2026-08-01&quot;:1.57},{&quot;2026-08-02&quot;:1.51},{&quot;2026-08-03&quot;:1.49},{&quot;2026-08-04&quot;:1.46},{&quot;2026-08-05&quot;:1.45},{&quot;2026-08-07&quot;:1.36},{&quot;2026-08-08&quot;:1.33},{&quot;2026-08-09&quot;:1.52},{&quot;2026-08-10&quot;:1.56},{&quot;2026-08-11&quot;:1.6},{&quot;2026-08-12&quot;:1.7},{&quot;2026-08-13&quot;:1.7},{&quot;2026-08-14&quot;:1.55},{&quot;2026-08-15&quot;:1.46},{&quot;2026-08-16&quot;:1.49},{&quot;2026-08-17&quot;:1.65},{&quot;2026-08-18&quot;:1.65},{&quot;2026-08-19&quot;:1.64},{&quot;2026-08-20&quot;:1.64},{&quot;2026-08-21&quot;:1.67},{&quot;2026-08-22&quot;:1.73},{&quot;2026-08-23&quot;:1.7},{&quot;2026-08-24&quot;:1.63},{&quot;2026-08-25&quot;:1.53},{&quot;2026-08-26&quot;:1.57},{&quot;2026-08-27&quot;:1.47},{&quot;2026-08-28&quot;:1.49},{&quot;2026-08-29&quot;:1.49},{&quot;2026-08-30&quot;:1.39},{&quot;2026-08-31&quot;:1.34},{&quot;2026-09-01&quot;:1.29},{&quot;2026-09-02&quot;:1.42},{&quot;2026-09-03&quot;:1.56},{&quot;2026-09-04&quot;:1.58},{&quot;2026-09-05&quot;:1.76},{&quot;2026-09-06&quot;:1.78},{&quot;2026-09-07&quot;:1.8},{&quot;2026-09-08&quot;:1.82},{&quot;2026-09-09&quot;:1.84},{&quot;2026-09-10&quot;:1.76},{&quot;2026-09-11&quot;:1.84}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="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="40488"
  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">
            Poison-Tip Archer
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Poison-Tip Archer" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/6/1677d49e-3d63-45bd-9849-01b1bdd95ad8.jpg?1783928303" />

        <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">
            Poison-Tip Archer
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Poison-Tip Archer" src="https://cards.scryfall.io/large/front/1/6/1677d49e-3d63-45bd-9849-01b1bdd95ad8.jpg?1783928303" />
    </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.81
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.03},{&quot;2026-06-14&quot;:1.01},{&quot;2026-06-15&quot;:1.01},{&quot;2026-06-16&quot;:0.97},{&quot;2026-06-17&quot;:0.95},{&quot;2026-06-18&quot;:0.92},{&quot;2026-06-19&quot;:0.92},{&quot;2026-06-20&quot;:0.92},{&quot;2026-06-21&quot;:0.92},{&quot;2026-06-22&quot;:0.92},{&quot;2026-06-23&quot;:0.9},{&quot;2026-06-24&quot;:0.88},{&quot;2026-06-25&quot;:0.88},{&quot;2026-06-26&quot;:0.88},{&quot;2026-06-27&quot;:0.84},{&quot;2026-06-28&quot;:0.87},{&quot;2026-06-29&quot;:0.87},{&quot;2026-06-30&quot;:0.87},{&quot;2026-07-01&quot;:0.91},{&quot;2026-07-02&quot;:0.95},{&quot;2026-07-03&quot;:0.98},{&quot;2026-07-04&quot;:0.95},{&quot;2026-07-05&quot;:0.95},{&quot;2026-07-06&quot;:0.95},{&quot;2026-07-07&quot;:0.95},{&quot;2026-07-08&quot;:0.97},{&quot;2026-07-09&quot;:0.97},{&quot;2026-07-10&quot;:0.98},{&quot;2026-07-11&quot;:0.99},{&quot;2026-07-12&quot;:1.0},{&quot;2026-07-13&quot;:1.12},{&quot;2026-07-14&quot;:1.16},{&quot;2026-07-15&quot;:1.23},{&quot;2026-07-16&quot;:1.78},{&quot;2026-07-17&quot;:1.78},{&quot;2026-07-18&quot;:1.78},{&quot;2026-07-19&quot;:1.75},{&quot;2026-07-20&quot;:1.75},{&quot;2026-07-21&quot;:1.74},{&quot;2026-07-22&quot;:1.71},{&quot;2026-07-23&quot;:1.71},{&quot;2026-07-24&quot;:1.72},{&quot;2026-07-25&quot;:1.72},{&quot;2026-07-26&quot;:1.77},{&quot;2026-07-27&quot;:1.8},{&quot;2026-07-28&quot;:1.84},{&quot;2026-07-29&quot;:1.87},{&quot;2026-07-30&quot;:1.87},{&quot;2026-07-31&quot;:1.78},{&quot;2026-08-01&quot;:1.84},{&quot;2026-08-02&quot;:1.85},{&quot;2026-08-03&quot;:1.95},{&quot;2026-08-04&quot;:1.95},{&quot;2026-08-05&quot;:1.97},{&quot;2026-08-07&quot;:1.97},{&quot;2026-08-08&quot;:1.91},{&quot;2026-08-09&quot;:1.91},{&quot;2026-08-10&quot;:1.33},{&quot;2026-08-11&quot;:1.42},{&quot;2026-08-12&quot;:1.45},{&quot;2026-08-13&quot;:1.45},{&quot;2026-08-14&quot;:1.46},{&quot;2026-08-15&quot;:1.45},{&quot;2026-08-16&quot;:1.46},{&quot;2026-08-17&quot;:1.53},{&quot;2026-08-18&quot;:1.53},{&quot;2026-08-19&quot;:1.54},{&quot;2026-08-20&quot;:1.54},{&quot;2026-08-21&quot;:1.54},{&quot;2026-08-22&quot;:1.56},{&quot;2026-08-23&quot;:1.56},{&quot;2026-08-24&quot;:1.51},{&quot;2026-08-25&quot;:1.49},{&quot;2026-08-26&quot;:1.49},{&quot;2026-08-27&quot;:1.51},{&quot;2026-08-28&quot;:1.51},{&quot;2026-08-29&quot;:1.51},{&quot;2026-08-30&quot;:1.54},{&quot;2026-08-31&quot;:1.54},{&quot;2026-09-01&quot;:1.52},{&quot;2026-09-02&quot;:1.44},{&quot;2026-09-03&quot;:1.42},{&quot;2026-09-04&quot;:1.42},{&quot;2026-09-05&quot;:1.4},{&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.3},{&quot;2026-09-10&quot;:1.81},{&quot;2026-09-11&quot;:1.81}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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

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

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

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

        <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">
            Buried Ruin
        </h3>

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Buried Ruin" src="https://cards.scryfall.io/large/front/d/a/da65afdc-a994-44cb-83f9-6e7f0f3ab2f1.jpg?1783930087" />
    </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.74
              </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">
                $3.51
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-13&quot;:2.63},{&quot;2026-06-14&quot;:2.63},{&quot;2026-06-15&quot;:2.68},{&quot;2026-06-16&quot;:2.68},{&quot;2026-06-17&quot;:2.71},{&quot;2026-06-18&quot;:2.78},{&quot;2026-06-19&quot;:2.78},{&quot;2026-06-20&quot;:2.78},{&quot;2026-06-21&quot;:2.77},{&quot;2026-06-22&quot;:2.77},{&quot;2026-06-23&quot;:2.81},{&quot;2026-06-24&quot;:2.9},{&quot;2026-06-25&quot;:2.99},{&quot;2026-06-26&quot;:2.99},{&quot;2026-06-27&quot;:3.01},{&quot;2026-06-28&quot;:3.02},{&quot;2026-06-29&quot;:3.02},{&quot;2026-06-30&quot;:3.04},{&quot;2026-07-01&quot;:3.0},{&quot;2026-07-02&quot;:3.0},{&quot;2026-07-03&quot;:3.06},{&quot;2026-07-04&quot;:3.06},{&quot;2026-07-05&quot;:3.06},{&quot;2026-07-06&quot;:3.09},{&quot;2026-07-07&quot;:3.09},{&quot;2026-07-08&quot;:3.08},{&quot;2026-07-09&quot;:3.08},{&quot;2026-07-10&quot;:3.09},{&quot;2026-07-11&quot;:3.09},{&quot;2026-07-12&quot;:3.09},{&quot;2026-07-13&quot;:3.11},{&quot;2026-07-14&quot;:3.16},{&quot;2026-07-15&quot;:3.16},{&quot;2026-07-16&quot;:3.16},{&quot;2026-07-17&quot;:3.19},{&quot;2026-07-18&quot;:3.31},{&quot;2026-07-19&quot;:3.31},{&quot;2026-07-20&quot;:3.31},{&quot;2026-07-21&quot;:3.26},{&quot;2026-07-22&quot;:3.31},{&quot;2026-07-23&quot;:3.31},{&quot;2026-07-24&quot;:3.31},{&quot;2026-07-25&quot;:3.31},{&quot;2026-07-26&quot;:3.32},{&quot;2026-07-27&quot;:3.24},{&quot;2026-07-28&quot;:3.33},{&quot;2026-07-29&quot;:3.41},{&quot;2026-07-30&quot;:3.41},{&quot;2026-07-31&quot;:3.41},{&quot;2026-08-01&quot;:3.41},{&quot;2026-08-02&quot;:3.46},{&quot;2026-08-03&quot;:3.46},{&quot;2026-08-04&quot;:3.46},{&quot;2026-08-05&quot;:3.46},{&quot;2026-08-07&quot;:3.53},{&quot;2026-08-08&quot;:3.59},{&quot;2026-08-09&quot;:3.59},{&quot;2026-08-10&quot;:3.59},{&quot;2026-08-11&quot;:3.63},{&quot;2026-08-12&quot;:3.63},{&quot;2026-08-13&quot;:3.63},{&quot;2026-08-14&quot;:3.63},{&quot;2026-08-15&quot;:3.63},{&quot;2026-08-16&quot;:3.63},{&quot;2026-08-17&quot;:3.66},{&quot;2026-08-18&quot;:3.64},{&quot;2026-08-19&quot;:3.66},{&quot;2026-08-20&quot;:3.66},{&quot;2026-08-21&quot;:3.66},{&quot;2026-08-22&quot;:3.66},{&quot;2026-08-23&quot;:3.63},{&quot;2026-08-24&quot;:3.63},{&quot;2026-08-25&quot;:3.59},{&quot;2026-08-26&quot;:3.65},{&quot;2026-08-27&quot;:3.65},{&quot;2026-08-28&quot;:3.65},{&quot;2026-08-29&quot;:3.65},{&quot;2026-08-30&quot;:3.65},{&quot;2026-08-31&quot;:3.65},{&quot;2026-09-01&quot;:3.68},{&quot;2026-09-02&quot;:3.68},{&quot;2026-09-03&quot;:3.63},{&quot;2026-09-04&quot;:3.64},{&quot;2026-09-05&quot;:3.55},{&quot;2026-09-06&quot;:3.55},{&quot;2026-09-07&quot;:3.55},{&quot;2026-09-08&quot;:3.48},{&quot;2026-09-09&quot;:3.59},{&quot;2026-09-10&quot;:3.59},{&quot;2026-09-11&quot;:3.51}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.65},{&quot;2026-06-14&quot;:1.79},{&quot;2026-06-15&quot;:1.73},{&quot;2026-06-16&quot;:1.7},{&quot;2026-06-17&quot;:1.7},{&quot;2026-06-18&quot;:1.67},{&quot;2026-06-19&quot;:1.67},{&quot;2026-06-20&quot;:1.67},{&quot;2026-06-21&quot;:1.67},{&quot;2026-06-22&quot;:1.69},{&quot;2026-06-23&quot;:1.75},{&quot;2026-06-24&quot;:1.8},{&quot;2026-06-25&quot;:1.74},{&quot;2026-06-26&quot;:1.74},{&quot;2026-06-27&quot;:1.78},{&quot;2026-06-28&quot;:1.72},{&quot;2026-06-29&quot;:1.65},{&quot;2026-06-30&quot;:1.68},{&quot;2026-07-01&quot;:1.74},{&quot;2026-07-02&quot;:1.74},{&quot;2026-07-03&quot;:1.66},{&quot;2026-07-04&quot;:1.64},{&quot;2026-07-05&quot;:1.64},{&quot;2026-07-06&quot;:1.57},{&quot;2026-07-07&quot;:1.54},{&quot;2026-07-08&quot;:1.54},{&quot;2026-07-09&quot;:1.48},{&quot;2026-07-10&quot;:1.49},{&quot;2026-07-11&quot;:1.49},{&quot;2026-07-12&quot;:1.48},{&quot;2026-07-13&quot;:1.55},{&quot;2026-07-14&quot;:1.48},{&quot;2026-07-15&quot;:1.48},{&quot;2026-07-16&quot;:1.41},{&quot;2026-07-17&quot;:1.39},{&quot;2026-07-18&quot;:1.48},{&quot;2026-07-19&quot;:1.48},{&quot;2026-07-20&quot;:1.46},{&quot;2026-07-21&quot;:1.46},{&quot;2026-07-22&quot;:1.48},{&quot;2026-07-23&quot;:1.49},{&quot;2026-07-24&quot;:1.49},{&quot;2026-07-25&quot;:1.55},{&quot;2026-07-26&quot;:1.62},{&quot;2026-07-27&quot;:1.76},{&quot;2026-07-28&quot;:1.76},{&quot;2026-07-29&quot;:1.79},{&quot;2026-07-30&quot;:1.83},{&quot;2026-07-31&quot;:1.81},{&quot;2026-08-01&quot;:1.8},{&quot;2026-08-02&quot;:1.83},{&quot;2026-08-03&quot;:1.82},{&quot;2026-08-04&quot;:1.82},{&quot;2026-08-05&quot;:1.85},{&quot;2026-08-07&quot;:1.9},{&quot;2026-08-08&quot;:1.89},{&quot;2026-08-09&quot;:1.89},{&quot;2026-08-10&quot;:1.92},{&quot;2026-08-11&quot;:1.92},{&quot;2026-08-12&quot;:1.75},{&quot;2026-08-13&quot;:1.7},{&quot;2026-08-14&quot;:1.7},{&quot;2026-08-15&quot;:1.7},{&quot;2026-08-16&quot;:1.7},{&quot;2026-08-17&quot;:1.78},{&quot;2026-08-18&quot;:1.89},{&quot;2026-08-19&quot;:1.89},{&quot;2026-08-20&quot;:1.89},{&quot;2026-08-21&quot;:1.85},{&quot;2026-08-22&quot;:1.85},{&quot;2026-08-23&quot;:1.95},{&quot;2026-08-24&quot;:1.86},{&quot;2026-08-25&quot;:1.79},{&quot;2026-08-26&quot;:1.79},{&quot;2026-08-27&quot;:1.81},{&quot;2026-08-28&quot;:1.78},{&quot;2026-08-29&quot;:1.78},{&quot;2026-08-30&quot;:1.8},{&quot;2026-08-31&quot;:1.74},{&quot;2026-09-01&quot;:1.74},{&quot;2026-09-02&quot;:1.75},{&quot;2026-09-03&quot;:1.78},{&quot;2026-09-04&quot;:1.82},{&quot;2026-09-05&quot;:1.7},{&quot;2026-09-06&quot;:1.69},{&quot;2026-09-07&quot;:1.77},{&quot;2026-09-08&quot;:1.72},{&quot;2026-09-09&quot;:1.79},{&quot;2026-09-10&quot;:1.74},{&quot;2026-09-11&quot;:1.74}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="40437"
  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">
            Rhys the Exiled
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $1.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="Rhys the Exiled" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/5/85004079-f9fa-4a05-904d-a77782c4165c.jpg?1783928310" />

        <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">
            Rhys the Exiled
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Rhys the Exiled" src="https://cards.scryfall.io/large/front/8/5/85004079-f9fa-4a05-904d-a77782c4165c.jpg?1783928310" />
    </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.56
              </span>

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

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$1.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-12&quot;:1.12},{&quot;2026-06-13&quot;:1.12},{&quot;2026-06-14&quot;:1.12},{&quot;2026-06-15&quot;:1.15},{&quot;2026-06-16&quot;:1.14},{&quot;2026-06-17&quot;:1.13},{&quot;2026-06-18&quot;:1.13},{&quot;2026-06-19&quot;:1.12},{&quot;2026-06-20&quot;:1.11},{&quot;2026-06-21&quot;:1.11},{&quot;2026-06-22&quot;:1.12},{&quot;2026-06-23&quot;:1.11},{&quot;2026-06-24&quot;:1.08},{&quot;2026-06-25&quot;:1.08},{&quot;2026-06-26&quot;:1.08},{&quot;2026-06-27&quot;:1.08},{&quot;2026-06-28&quot;:1.08},{&quot;2026-06-29&quot;:1.08},{&quot;2026-06-30&quot;:1.08},{&quot;2026-07-01&quot;:1.08},{&quot;2026-07-02&quot;:1.06},{&quot;2026-07-03&quot;:1.07},{&quot;2026-07-04&quot;:1.07},{&quot;2026-07-05&quot;:1.07},{&quot;2026-07-06&quot;:1.04},{&quot;2026-07-07&quot;:1.01},{&quot;2026-07-08&quot;:0.99},{&quot;2026-07-09&quot;:0.99},{&quot;2026-07-10&quot;:0.98},{&quot;2026-07-11&quot;:0.98},{&quot;2026-07-12&quot;:0.98},{&quot;2026-07-13&quot;:0.97},{&quot;2026-07-14&quot;:0.97},{&quot;2026-07-15&quot;:0.97},{&quot;2026-07-16&quot;:0.97},{&quot;2026-07-17&quot;:0.97},{&quot;2026-07-18&quot;:0.98},{&quot;2026-07-19&quot;:1.01},{&quot;2026-07-20&quot;:1.01},{&quot;2026-07-21&quot;:1.01},{&quot;2026-07-23&quot;:1.0},{&quot;2026-07-24&quot;:0.99},{&quot;2026-07-25&quot;:1.04},{&quot;2026-07-26&quot;:1.03},{&quot;2026-07-27&quot;:1.03},{&quot;2026-07-28&quot;:1.03},{&quot;2026-07-29&quot;:1.04},{&quot;2026-07-30&quot;:1.05},{&quot;2026-07-31&quot;:1.05},{&quot;2026-08-01&quot;:1.06},{&quot;2026-08-02&quot;:1.16},{&quot;2026-08-03&quot;:1.15},{&quot;2026-08-04&quot;:1.15},{&quot;2026-08-05&quot;:1.12},{&quot;2026-08-07&quot;:1.14},{&quot;2026-08-08&quot;:1.18},{&quot;2026-08-09&quot;:1.14},{&quot;2026-08-10&quot;:1.15},{&quot;2026-08-11&quot;:1.07},{&quot;2026-08-12&quot;:1.12},{&quot;2026-08-13&quot;:1.13},{&quot;2026-08-14&quot;:1.09},{&quot;2026-08-15&quot;:1.2},{&quot;2026-08-16&quot;:1.2},{&quot;2026-08-17&quot;:1.23},{&quot;2026-08-18&quot;:1.24},{&quot;2026-08-19&quot;:1.29},{&quot;2026-08-20&quot;:1.29},{&quot;2026-08-21&quot;:1.29},{&quot;2026-08-22&quot;:1.29},{&quot;2026-08-23&quot;:1.37},{&quot;2026-08-24&quot;:1.43},{&quot;2026-08-25&quot;:1.44},{&quot;2026-08-26&quot;:1.43},{&quot;2026-08-27&quot;:1.45},{&quot;2026-08-28&quot;:1.45},{&quot;2026-08-29&quot;:1.45},{&quot;2026-08-30&quot;:1.54},{&quot;2026-08-31&quot;:1.56},{&quot;2026-09-01&quot;:1.54},{&quot;2026-09-02&quot;:1.51},{&quot;2026-09-03&quot;:1.48},{&quot;2026-09-04&quot;:1.45},{&quot;2026-09-05&quot;:1.57},{&quot;2026-09-06&quot;:1.59},{&quot;2026-09-07&quot;:1.61},{&quot;2026-09-08&quot;:1.61},{&quot;2026-09-09&quot;:1.62},{&quot;2026-09-10&quot;:1.6},{&quot;2026-09-11&quot;:1.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="40258"
  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">
            Crown of Skemfar
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Crown of Skemfar" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/e/6/e6297586-8953-408e-a38c-2239d45807e1.jpg?1783928337" />

        <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">
            Crown of Skemfar
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Crown of Skemfar" src="https://cards.scryfall.io/large/front/e/6/e6297586-8953-408e-a38c-2239d45807e1.jpg?1783928337" />
    </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.51
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-11&quot;:1.6},{&quot;2026-06-12&quot;:1.63},{&quot;2026-06-13&quot;:1.64},{&quot;2026-06-14&quot;:1.64},{&quot;2026-06-15&quot;:1.64},{&quot;2026-06-16&quot;:1.64},{&quot;2026-06-17&quot;:1.56},{&quot;2026-06-18&quot;:1.56},{&quot;2026-06-19&quot;:1.51},{&quot;2026-06-20&quot;:1.54},{&quot;2026-06-21&quot;:1.53},{&quot;2026-06-22&quot;:1.5},{&quot;2026-06-23&quot;:1.47},{&quot;2026-06-24&quot;:1.48},{&quot;2026-06-25&quot;:1.45},{&quot;2026-06-26&quot;:1.45},{&quot;2026-06-27&quot;:1.49},{&quot;2026-06-28&quot;:1.45},{&quot;2026-06-29&quot;:1.45},{&quot;2026-06-30&quot;:1.45},{&quot;2026-07-01&quot;:1.43},{&quot;2026-07-02&quot;:1.38},{&quot;2026-07-03&quot;:1.38},{&quot;2026-07-04&quot;:1.38},{&quot;2026-07-05&quot;:1.37},{&quot;2026-07-06&quot;:1.33},{&quot;2026-07-07&quot;:1.31},{&quot;2026-07-08&quot;:1.32},{&quot;2026-07-09&quot;:1.35},{&quot;2026-07-10&quot;:1.36},{&quot;2026-07-11&quot;:1.36},{&quot;2026-07-12&quot;:1.41},{&quot;2026-07-13&quot;:1.42},{&quot;2026-07-14&quot;:1.42},{&quot;2026-07-15&quot;:1.42},{&quot;2026-07-16&quot;:1.4},{&quot;2026-07-17&quot;:1.4},{&quot;2026-07-18&quot;:1.4},{&quot;2026-07-19&quot;:1.5},{&quot;2026-07-20&quot;:1.52},{&quot;2026-07-21&quot;:1.52},{&quot;2026-07-23&quot;:1.58},{&quot;2026-07-25&quot;:1.63},{&quot;2026-07-26&quot;:1.66},{&quot;2026-07-27&quot;:1.6},{&quot;2026-07-28&quot;:1.61},{&quot;2026-07-29&quot;:1.53},{&quot;2026-07-30&quot;:1.5},{&quot;2026-07-31&quot;:1.54},{&quot;2026-08-01&quot;:1.52},{&quot;2026-08-02&quot;:1.56},{&quot;2026-08-03&quot;:1.54},{&quot;2026-08-04&quot;:1.55},{&quot;2026-08-05&quot;:1.55},{&quot;2026-08-07&quot;:1.59},{&quot;2026-08-08&quot;:1.64},{&quot;2026-08-09&quot;:1.64},{&quot;2026-08-10&quot;:1.62},{&quot;2026-08-11&quot;:1.62},{&quot;2026-08-12&quot;:1.55},{&quot;2026-08-13&quot;:1.54},{&quot;2026-08-14&quot;:1.61},{&quot;2026-08-15&quot;:1.57},{&quot;2026-08-16&quot;:1.59},{&quot;2026-08-17&quot;:1.57},{&quot;2026-08-18&quot;:1.61},{&quot;2026-08-19&quot;:1.62},{&quot;2026-08-20&quot;:1.62},{&quot;2026-08-21&quot;:1.7},{&quot;2026-08-22&quot;:1.66},{&quot;2026-08-23&quot;:1.58},{&quot;2026-08-24&quot;:1.58},{&quot;2026-08-25&quot;:1.59},{&quot;2026-08-26&quot;:1.56},{&quot;2026-08-27&quot;:1.56},{&quot;2026-08-28&quot;:1.53},{&quot;2026-08-29&quot;:1.53},{&quot;2026-08-30&quot;:1.52},{&quot;2026-08-31&quot;:1.52},{&quot;2026-09-01&quot;:1.53},{&quot;2026-09-02&quot;:1.52},{&quot;2026-09-03&quot;:1.49},{&quot;2026-09-04&quot;:1.5},{&quot;2026-09-05&quot;:1.48},{&quot;2026-09-06&quot;:1.48},{&quot;2026-09-07&quot;:1.45},{&quot;2026-09-08&quot;:1.44},{&quot;2026-09-09&quot;:1.41},{&quot;2026-09-10&quot;:1.5},{&quot;2026-09-11&quot;:1.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="87808"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-common ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Cultivate" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/7/47086c14-f451-47da-845b-2a256930d067.jpg?1783931769" />

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Cultivate" src="https://cards.scryfall.io/large/front/4/7/47086c14-f451-47da-845b-2a256930d067.jpg?1783931769" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

                <span class="text-xs text-accent-100">
                  ↓
                  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.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;normal&quot;:[{&quot;2026-06-10&quot;:1.65},{&quot;2026-06-11&quot;:1.61},{&quot;2026-06-12&quot;:1.6},{&quot;2026-06-13&quot;:1.61},{&quot;2026-06-14&quot;:1.76},{&quot;2026-06-15&quot;:1.75},{&quot;2026-06-16&quot;:1.75},{&quot;2026-06-17&quot;:1.75},{&quot;2026-06-18&quot;:1.75},{&quot;2026-06-19&quot;:1.72},{&quot;2026-06-20&quot;:1.72},{&quot;2026-06-21&quot;:1.65},{&quot;2026-06-22&quot;:1.71},{&quot;2026-06-23&quot;:1.71},{&quot;2026-06-24&quot;:1.71},{&quot;2026-06-25&quot;:1.73},{&quot;2026-06-26&quot;:1.77},{&quot;2026-06-27&quot;:1.76},{&quot;2026-06-28&quot;:1.76},{&quot;2026-06-29&quot;:1.75},{&quot;2026-06-30&quot;:1.75},{&quot;2026-07-01&quot;:1.71},{&quot;2026-07-02&quot;:1.71},{&quot;2026-07-03&quot;:1.68},{&quot;2026-07-04&quot;:1.68},{&quot;2026-07-05&quot;:1.68},{&quot;2026-07-06&quot;:1.68},{&quot;2026-07-07&quot;:1.5},{&quot;2026-07-08&quot;:1.53},{&quot;2026-07-09&quot;:1.51},{&quot;2026-07-10&quot;:1.51},{&quot;2026-07-11&quot;:1.51},{&quot;2026-07-12&quot;:1.53},{&quot;2026-07-13&quot;:1.53},{&quot;2026-07-14&quot;:1.53},{&quot;2026-07-15&quot;:1.53},{&quot;2026-07-16&quot;:1.49},{&quot;2026-07-17&quot;:1.49},{&quot;2026-07-18&quot;:1.47},{&quot;2026-07-19&quot;:1.47},{&quot;2026-07-20&quot;:1.47},{&quot;2026-07-21&quot;:1.47},{&quot;2026-07-23&quot;:1.46},{&quot;2026-07-25&quot;:1.46},{&quot;2026-07-26&quot;:1.46},{&quot;2026-07-27&quot;:1.46},{&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.44},{&quot;2026-08-08&quot;:1.44},{&quot;2026-08-09&quot;:1.44},{&quot;2026-08-10&quot;:1.45},{&quot;2026-08-11&quot;:1.45},{&quot;2026-08-12&quot;:1.45},{&quot;2026-08-13&quot;:1.41},{&quot;2026-08-14&quot;:1.41},{&quot;2026-08-15&quot;:1.41},{&quot;2026-08-16&quot;:1.41},{&quot;2026-08-17&quot;:1.41},{&quot;2026-08-18&quot;:1.41},{&quot;2026-08-19&quot;:1.41},{&quot;2026-08-20&quot;:1.41},{&quot;2026-08-21&quot;:1.44},{&quot;2026-08-22&quot;:1.44},{&quot;2026-08-23&quot;:1.46},{&quot;2026-08-24&quot;:1.46},{&quot;2026-08-25&quot;:1.46},{&quot;2026-08-26&quot;:1.43},{&quot;2026-08-27&quot;:1.43},{&quot;2026-08-28&quot;:1.43},{&quot;2026-08-29&quot;:1.43},{&quot;2026-08-30&quot;:1.45},{&quot;2026-08-31&quot;:1.45},{&quot;2026-09-01&quot;:1.45},{&quot;2026-09-02&quot;:1.45},{&quot;2026-09-03&quot;:1.45},{&quot;2026-09-04&quot;:1.45},{&quot;2026-09-05&quot;:1.45},{&quot;2026-09-06&quot;:1.45},{&quot;2026-09-07&quot;:1.45},{&quot;2026-09-08&quot;:1.45},{&quot;2026-09-09&quot;:1.45},{&quot;2026-09-10&quot;:1.45},{&quot;2026-09-11&quot;:1.44}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="40417"
  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">
            Llanowar Tribe
        </span>


      </div>

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

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

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

        <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">
            Llanowar Tribe
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Llanowar Tribe" src="https://cards.scryfall.io/large/front/4/0/407c1b95-dc0c-4154-a441-fe25537df45c.jpg?1783928313" />
    </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.33
              </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.50</span>
              <span class="text-xs text-grey-text">Credit: $0.65</span>
            </div>
        </div>

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-08&quot;:1.05},{&quot;2026-06-10&quot;:1.05},{&quot;2026-06-11&quot;:1.05},{&quot;2026-06-12&quot;:1.05},{&quot;2026-06-13&quot;:1.06},{&quot;2026-06-14&quot;:1.06},{&quot;2026-06-15&quot;:1.06},{&quot;2026-06-16&quot;:1.05},{&quot;2026-06-17&quot;:1.05},{&quot;2026-06-18&quot;:1.06},{&quot;2026-06-19&quot;:1.06},{&quot;2026-06-20&quot;:1.06},{&quot;2026-06-21&quot;:1.09},{&quot;2026-06-22&quot;:1.09},{&quot;2026-06-24&quot;:1.08},{&quot;2026-06-25&quot;:1.08},{&quot;2026-06-26&quot;:1.11},{&quot;2026-06-27&quot;:1.12},{&quot;2026-06-28&quot;:1.12},{&quot;2026-06-29&quot;:1.14},{&quot;2026-06-30&quot;:1.15},{&quot;2026-07-01&quot;:1.14},{&quot;2026-07-02&quot;:1.14},{&quot;2026-07-03&quot;:1.15},{&quot;2026-07-04&quot;:1.14},{&quot;2026-07-05&quot;:1.14},{&quot;2026-07-06&quot;:1.13},{&quot;2026-07-07&quot;:1.14},{&quot;2026-07-08&quot;:1.12},{&quot;2026-07-09&quot;:1.12},{&quot;2026-07-10&quot;:1.07},{&quot;2026-07-11&quot;:1.06},{&quot;2026-07-12&quot;:1.06},{&quot;2026-07-13&quot;:1.05},{&quot;2026-07-14&quot;:1.05},{&quot;2026-07-15&quot;:1.05},{&quot;2026-07-16&quot;:1.04},{&quot;2026-07-17&quot;:1.05},{&quot;2026-07-18&quot;:1.06},{&quot;2026-07-19&quot;:1.06},{&quot;2026-07-20&quot;:1.07},{&quot;2026-07-21&quot;:1.05},{&quot;2026-07-23&quot;:1.05},{&quot;2026-07-25&quot;:1.04},{&quot;2026-07-26&quot;:1.08},{&quot;2026-07-27&quot;:1.08},{&quot;2026-07-29&quot;:1.08},{&quot;2026-07-30&quot;:1.08},{&quot;2026-07-31&quot;:1.15},{&quot;2026-08-01&quot;:1.15},{&quot;2026-08-02&quot;:1.13},{&quot;2026-08-03&quot;:1.13},{&quot;2026-08-04&quot;:1.13},{&quot;2026-08-05&quot;:1.13},{&quot;2026-08-07&quot;:1.17},{&quot;2026-08-08&quot;:1.17},{&quot;2026-08-09&quot;:1.17},{&quot;2026-08-10&quot;:1.19},{&quot;2026-08-11&quot;:1.19},{&quot;2026-08-12&quot;:1.29},{&quot;2026-08-13&quot;:1.29},{&quot;2026-08-14&quot;:1.28},{&quot;2026-08-15&quot;:1.32},{&quot;2026-08-16&quot;:1.35},{&quot;2026-08-17&quot;:1.34},{&quot;2026-08-18&quot;:1.35},{&quot;2026-08-19&quot;:1.35},{&quot;2026-08-20&quot;:1.35},{&quot;2026-08-21&quot;:1.38},{&quot;2026-08-22&quot;:1.37},{&quot;2026-08-23&quot;:1.37},{&quot;2026-08-24&quot;:1.38},{&quot;2026-08-25&quot;:1.38},{&quot;2026-08-26&quot;:1.33},{&quot;2026-08-27&quot;:1.3},{&quot;2026-08-28&quot;:1.3},{&quot;2026-08-29&quot;:1.3},{&quot;2026-08-30&quot;:1.29},{&quot;2026-08-31&quot;:1.29},{&quot;2026-09-01&quot;:1.29},{&quot;2026-09-02&quot;:1.31},{&quot;2026-09-03&quot;:1.31},{&quot;2026-09-04&quot;:1.31},{&quot;2026-09-05&quot;:1.31},{&quot;2026-09-06&quot;:1.31},{&quot;2026-09-07&quot;:1.31},{&quot;2026-09-08&quot;:1.31},{&quot;2026-09-09&quot;:1.32},{&quot;2026-09-10&quot;:1.32},{&quot;2026-09-11&quot;:1.33}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="40495"
  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">
            Shaman of the Pack
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Elf Shaman
      </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.17
          </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="Shaman of the Pack" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/a/da9705e2-40e5-4ec9-8aef-2eab28d5a66f.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">
            Shaman of the Pack
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Shaman of the Pack" src="https://cards.scryfall.io/large/front/d/a/da9705e2-40e5-4ec9-8aef-2eab28d5a66f.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">
                $1.17
              </span>

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

      </div>

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-08&quot;:1.04},{&quot;2026-06-10&quot;:1.07},{&quot;2026-06-11&quot;:1.09},{&quot;2026-06-12&quot;:1.12},{&quot;2026-06-13&quot;:1.12},{&quot;2026-06-14&quot;:1.27},{&quot;2026-06-15&quot;:1.45},{&quot;2026-06-16&quot;:1.45},{&quot;2026-06-17&quot;:1.35},{&quot;2026-06-18&quot;:1.35},{&quot;2026-06-19&quot;:1.35},{&quot;2026-06-20&quot;:1.35},{&quot;2026-06-21&quot;:1.39},{&quot;2026-06-22&quot;:1.39},{&quot;2026-06-24&quot;:1.4},{&quot;2026-06-25&quot;:1.37},{&quot;2026-06-26&quot;:1.4},{&quot;2026-06-27&quot;:1.4},{&quot;2026-06-28&quot;:1.43},{&quot;2026-06-29&quot;:1.45},{&quot;2026-06-30&quot;:1.45},{&quot;2026-07-01&quot;:1.45},{&quot;2026-07-02&quot;:1.45},{&quot;2026-07-03&quot;:1.5},{&quot;2026-07-04&quot;:1.5},{&quot;2026-07-05&quot;:1.5},{&quot;2026-07-06&quot;:1.5},{&quot;2026-07-07&quot;:1.5},{&quot;2026-07-08&quot;:1.49},{&quot;2026-07-09&quot;:1.51},{&quot;2026-07-10&quot;:1.45},{&quot;2026-07-11&quot;:1.45},{&quot;2026-07-12&quot;:1.33},{&quot;2026-07-13&quot;:1.24},{&quot;2026-07-14&quot;:1.24},{&quot;2026-07-15&quot;:1.24},{&quot;2026-07-16&quot;:1.24},{&quot;2026-07-17&quot;:1.26},{&quot;2026-07-18&quot;:1.26},{&quot;2026-07-19&quot;:1.26},{&quot;2026-07-20&quot;:1.26},{&quot;2026-07-21&quot;:1.3},{&quot;2026-07-23&quot;:1.3},{&quot;2026-07-25&quot;:1.29},{&quot;2026-07-26&quot;:1.28},{&quot;2026-07-27&quot;:1.28},{&quot;2026-07-29&quot;:1.35},{&quot;2026-07-30&quot;:1.35},{&quot;2026-07-31&quot;:1.37},{&quot;2026-08-01&quot;:1.38},{&quot;2026-08-02&quot;:1.34},{&quot;2026-08-03&quot;:1.35},{&quot;2026-08-04&quot;:1.35},{&quot;2026-08-05&quot;:1.35},{&quot;2026-08-07&quot;:1.35},{&quot;2026-08-08&quot;:1.34},{&quot;2026-08-09&quot;:1.32},{&quot;2026-08-10&quot;:1.34},{&quot;2026-08-11&quot;:1.33},{&quot;2026-08-12&quot;:1.35},{&quot;2026-08-13&quot;:1.36},{&quot;2026-08-14&quot;:1.31},{&quot;2026-08-15&quot;:1.28},{&quot;2026-08-16&quot;:1.26},{&quot;2026-08-17&quot;:1.17},{&quot;2026-08-18&quot;:1.17},{&quot;2026-08-19&quot;:1.14},{&quot;2026-08-20&quot;:1.14},{&quot;2026-08-21&quot;:1.13},{&quot;2026-08-22&quot;:1.13},{&quot;2026-08-23&quot;:1.13},{&quot;2026-08-24&quot;:1.07},{&quot;2026-08-25&quot;:1.07},{&quot;2026-08-26&quot;:1.05},{&quot;2026-08-27&quot;:1.05},{&quot;2026-08-28&quot;:1.05},{&quot;2026-08-29&quot;:1.05},{&quot;2026-08-30&quot;:1.09},{&quot;2026-08-31&quot;:1.09},{&quot;2026-09-01&quot;:1.09},{&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.13},{&quot;2026-09-06&quot;:1.12},{&quot;2026-09-07&quot;:1.12},{&quot;2026-09-08&quot;:1.13},{&quot;2026-09-09&quot;:1.11},{&quot;2026-09-10&quot;:1.1},{&quot;2026-09-11&quot;:1.17}]}"
        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="40392"
  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">
            Elvish Mystic
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Elf Druid
      </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">
            $1.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="Elvish Mystic" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/e/d/ed7a0227-ac70-40fb-8198-a55eacf913fa.jpg?1783928316" />

        <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">
            Elvish Mystic
        </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">Creature — Elf Druid</span>
        </div>

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Elvish Mystic" src="https://cards.scryfall.io/large/front/e/d/ed7a0227-ac70-40fb-8198-a55eacf913fa.jpg?1783928316" />
    </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.04
              </span>

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

      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.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;normal&quot;:[{&quot;2026-06-13&quot;:0.61},{&quot;2026-06-14&quot;:0.6},{&quot;2026-06-15&quot;:0.6},{&quot;2026-06-16&quot;:0.62},{&quot;2026-06-17&quot;:0.62},{&quot;2026-06-18&quot;:0.63},{&quot;2026-06-19&quot;:0.65},{&quot;2026-06-20&quot;:0.64},{&quot;2026-06-21&quot;:0.64},{&quot;2026-06-22&quot;:0.66},{&quot;2026-06-23&quot;:0.66},{&quot;2026-06-24&quot;:0.66},{&quot;2026-06-25&quot;:0.65},{&quot;2026-06-26&quot;:0.65},{&quot;2026-06-27&quot;:0.65},{&quot;2026-06-28&quot;:0.66},{&quot;2026-06-29&quot;:0.66},{&quot;2026-06-30&quot;:0.66},{&quot;2026-07-01&quot;:0.66},{&quot;2026-07-02&quot;:0.66},{&quot;2026-07-03&quot;:0.66},{&quot;2026-07-04&quot;:0.66},{&quot;2026-07-05&quot;:0.66},{&quot;2026-07-06&quot;:0.71},{&quot;2026-07-07&quot;:0.72},{&quot;2026-07-08&quot;:0.72},{&quot;2026-07-09&quot;:0.72},{&quot;2026-07-10&quot;:0.73},{&quot;2026-07-11&quot;:0.73},{&quot;2026-07-12&quot;:0.73},{&quot;2026-07-13&quot;:0.77},{&quot;2026-07-14&quot;:0.77},{&quot;2026-07-15&quot;:0.77},{&quot;2026-07-16&quot;:0.77},{&quot;2026-07-17&quot;:0.77},{&quot;2026-07-18&quot;:0.77},{&quot;2026-07-19&quot;:0.77},{&quot;2026-07-20&quot;:0.77},{&quot;2026-07-21&quot;:0.82},{&quot;2026-07-22&quot;:0.93},{&quot;2026-07-23&quot;:0.93},{&quot;2026-07-24&quot;:0.93},{&quot;2026-07-25&quot;:0.93},{&quot;2026-07-26&quot;:0.93},{&quot;2026-07-27&quot;:0.93},{&quot;2026-07-28&quot;:0.95},{&quot;2026-07-29&quot;:0.95},{&quot;2026-07-30&quot;:0.95},{&quot;2026-07-31&quot;:0.95},{&quot;2026-08-01&quot;:0.97},{&quot;2026-08-02&quot;:0.97},{&quot;2026-08-03&quot;:0.97},{&quot;2026-08-04&quot;:0.97},{&quot;2026-08-05&quot;:0.97},{&quot;2026-08-07&quot;:0.97},{&quot;2026-08-08&quot;:0.97},{&quot;2026-08-09&quot;:0.97},{&quot;2026-08-10&quot;:0.97},{&quot;2026-08-11&quot;:0.97},{&quot;2026-08-12&quot;:0.97},{&quot;2026-08-13&quot;:1.04},{&quot;2026-08-14&quot;:1.04},{&quot;2026-08-15&quot;:1.04},{&quot;2026-08-16&quot;:1.06},{&quot;2026-08-17&quot;:1.06},{&quot;2026-08-18&quot;:1.05},{&quot;2026-08-19&quot;:1.14},{&quot;2026-08-20&quot;:1.16},{&quot;2026-08-21&quot;:1.11},{&quot;2026-08-22&quot;:1.11},{&quot;2026-08-23&quot;:1.11},{&quot;2026-08-24&quot;:1.16},{&quot;2026-08-25&quot;:1.13},{&quot;2026-08-26&quot;:1.16},{&quot;2026-08-27&quot;:1.16},{&quot;2026-08-28&quot;:1.16},{&quot;2026-08-29&quot;:1.16},{&quot;2026-08-30&quot;:1.12},{&quot;2026-08-31&quot;:1.08},{&quot;2026-09-01&quot;:1.08},{&quot;2026-09-02&quot;:1.08},{&quot;2026-09-03&quot;:1.0},{&quot;2026-09-04&quot;:1.01},{&quot;2026-09-05&quot;:1.01},{&quot;2026-09-06&quot;:1.03},{&quot;2026-09-07&quot;:1.03},{&quot;2026-09-08&quot;:1.03},{&quot;2026-09-09&quot;:1.04},{&quot;2026-09-10&quot;:1.04},{&quot;2026-09-11&quot;:1.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="20929"
  class="border rounded-xl border-highlight bg-foreground overflow-hidden mb-2"
>
  <!-- Collapsed State (Card Header - Always Visible) -->
  <div
    data-action="click->mobile-card#toggle"
    class="
      flex items-center gap-3 px-3 py-3 cursor-pointer active:bg-menu
      transition-colors duration-150
    "
  >
    <!-- Rarity Icon -->
    <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2xm ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Twilight Mire" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/5/3/53c59bee-0369-4a34-832f-fe3829a391b3.jpg?1783930079" />

        <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">
            Twilight Mire
        </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="Twilight Mire" src="https://cards.scryfall.io/large/front/5/3/53c59bee-0369-4a34-832f-fe3829a391b3.jpg?1783930079" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $6.61
              </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.65</span>
              <span class="text-xs text-grey-text">Credit: $0.85</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;:6.46},{&quot;2026-06-14&quot;:6.46},{&quot;2026-06-15&quot;:6.46},{&quot;2026-06-16&quot;:6.46},{&quot;2026-06-17&quot;:6.46},{&quot;2026-06-18&quot;:6.46},{&quot;2026-06-19&quot;:6.46},{&quot;2026-06-20&quot;:6.46},{&quot;2026-06-21&quot;:6.46},{&quot;2026-06-22&quot;:6.46},{&quot;2026-06-23&quot;:6.46},{&quot;2026-06-24&quot;:6.46},{&quot;2026-06-25&quot;:6.46},{&quot;2026-06-26&quot;:6.46},{&quot;2026-06-27&quot;:6.46},{&quot;2026-06-28&quot;:6.43},{&quot;2026-06-29&quot;:6.49},{&quot;2026-06-30&quot;:6.49},{&quot;2026-07-01&quot;:6.49},{&quot;2026-07-02&quot;:6.49},{&quot;2026-07-03&quot;:6.49},{&quot;2026-07-04&quot;:6.49},{&quot;2026-07-05&quot;:6.49},{&quot;2026-07-06&quot;:6.49},{&quot;2026-07-07&quot;:6.49},{&quot;2026-07-08&quot;:6.49},{&quot;2026-07-09&quot;:6.49},{&quot;2026-07-10&quot;:6.49},{&quot;2026-07-11&quot;:6.49},{&quot;2026-07-12&quot;:6.49},{&quot;2026-07-13&quot;:6.49},{&quot;2026-07-14&quot;:6.49},{&quot;2026-07-15&quot;:6.49},{&quot;2026-07-16&quot;:6.49},{&quot;2026-07-17&quot;:6.49},{&quot;2026-07-18&quot;:6.43},{&quot;2026-07-19&quot;:6.49},{&quot;2026-07-20&quot;:6.49},{&quot;2026-07-21&quot;:6.49},{&quot;2026-07-22&quot;:6.49},{&quot;2026-07-23&quot;:6.49},{&quot;2026-07-24&quot;:6.49},{&quot;2026-07-25&quot;:6.49},{&quot;2026-07-26&quot;:6.49},{&quot;2026-07-27&quot;:6.49},{&quot;2026-07-28&quot;:6.49},{&quot;2026-07-29&quot;:6.49},{&quot;2026-07-30&quot;:6.49},{&quot;2026-07-31&quot;:6.49},{&quot;2026-08-01&quot;:6.49},{&quot;2026-08-02&quot;:6.49},{&quot;2026-08-03&quot;:6.43},{&quot;2026-08-04&quot;:6.43},{&quot;2026-08-05&quot;:6.43},{&quot;2026-08-07&quot;:6.43},{&quot;2026-08-08&quot;:6.43},{&quot;2026-08-09&quot;:6.43},{&quot;2026-08-10&quot;:6.43},{&quot;2026-08-11&quot;:6.43},{&quot;2026-08-12&quot;:6.43},{&quot;2026-08-13&quot;:6.44},{&quot;2026-08-14&quot;:6.44},{&quot;2026-08-15&quot;:6.51},{&quot;2026-08-16&quot;:6.51},{&quot;2026-08-17&quot;:6.51},{&quot;2026-08-18&quot;:6.51},{&quot;2026-08-19&quot;:6.51},{&quot;2026-08-20&quot;:6.56},{&quot;2026-08-21&quot;:6.56},{&quot;2026-08-22&quot;:6.56},{&quot;2026-08-23&quot;:6.57},{&quot;2026-08-24&quot;:6.57},{&quot;2026-08-25&quot;:6.58},{&quot;2026-08-26&quot;:6.58},{&quot;2026-08-27&quot;:6.58},{&quot;2026-08-28&quot;:6.62},{&quot;2026-08-29&quot;:6.62},{&quot;2026-08-30&quot;:6.62},{&quot;2026-08-31&quot;:6.62},{&quot;2026-09-01&quot;:6.62},{&quot;2026-09-02&quot;:6.61},{&quot;2026-09-03&quot;:6.64},{&quot;2026-09-04&quot;:6.64},{&quot;2026-09-05&quot;:6.61},{&quot;2026-09-06&quot;:6.61},{&quot;2026-09-07&quot;:6.61},{&quot;2026-09-08&quot;:6.61},{&quot;2026-09-09&quot;:6.61},{&quot;2026-09-10&quot;:6.61},{&quot;2026-09-11&quot;:6.61}],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.16},{&quot;2026-06-14&quot;:1.16},{&quot;2026-06-15&quot;:1.16},{&quot;2026-06-16&quot;:1.16},{&quot;2026-06-17&quot;:1.16},{&quot;2026-06-18&quot;:1.16},{&quot;2026-06-19&quot;:1.16},{&quot;2026-06-20&quot;:1.16},{&quot;2026-06-21&quot;:1.16},{&quot;2026-06-22&quot;:1.16},{&quot;2026-06-23&quot;:1.16},{&quot;2026-06-24&quot;:1.15},{&quot;2026-06-25&quot;:1.15},{&quot;2026-06-26&quot;:1.15},{&quot;2026-06-27&quot;:1.15},{&quot;2026-06-28&quot;:1.15},{&quot;2026-06-29&quot;:1.15},{&quot;2026-06-30&quot;:1.12},{&quot;2026-07-01&quot;:1.12},{&quot;2026-07-02&quot;:1.12},{&quot;2026-07-03&quot;:1.12},{&quot;2026-07-04&quot;:1.12},{&quot;2026-07-05&quot;:1.12},{&quot;2026-07-06&quot;:1.12},{&quot;2026-07-07&quot;:1.12},{&quot;2026-07-08&quot;:1.12},{&quot;2026-07-09&quot;:1.12},{&quot;2026-07-10&quot;:1.12},{&quot;2026-07-11&quot;:1.12},{&quot;2026-07-12&quot;:1.12},{&quot;2026-07-13&quot;:1.12},{&quot;2026-07-14&quot;:1.12},{&quot;2026-07-15&quot;:1.12},{&quot;2026-07-16&quot;:1.12},{&quot;2026-07-17&quot;:1.12},{&quot;2026-07-18&quot;:1.14},{&quot;2026-07-19&quot;:1.14},{&quot;2026-07-20&quot;:1.14},{&quot;2026-07-21&quot;:1.14},{&quot;2026-07-22&quot;:1.12},{&quot;2026-07-23&quot;:1.12},{&quot;2026-07-24&quot;:1.12},{&quot;2026-07-25&quot;:1.12},{&quot;2026-07-26&quot;:1.12},{&quot;2026-07-27&quot;:1.12},{&quot;2026-07-28&quot;:1.08},{&quot;2026-07-29&quot;:1.05},{&quot;2026-07-30&quot;:1.02},{&quot;2026-07-31&quot;:1.02},{&quot;2026-08-01&quot;:1.02},{&quot;2026-08-02&quot;:0.98},{&quot;2026-08-03&quot;:0.98},{&quot;2026-08-04&quot;:0.98},{&quot;2026-08-05&quot;:0.98},{&quot;2026-08-07&quot;:0.98},{&quot;2026-08-08&quot;:0.98},{&quot;2026-08-09&quot;:0.98},{&quot;2026-08-10&quot;:0.98},{&quot;2026-08-11&quot;:0.98},{&quot;2026-08-12&quot;:1.02},{&quot;2026-08-13&quot;:1.02},{&quot;2026-08-14&quot;:1.0},{&quot;2026-08-15&quot;:1.0},{&quot;2026-08-16&quot;:1.0},{&quot;2026-08-17&quot;:1.0},{&quot;2026-08-18&quot;:1.0},{&quot;2026-08-19&quot;:1.0},{&quot;2026-08-20&quot;:0.99},{&quot;2026-08-21&quot;:1.03},{&quot;2026-08-22&quot;:1.03},{&quot;2026-08-23&quot;:1.02},{&quot;2026-08-24&quot;:1.02},{&quot;2026-08-25&quot;:1.02},{&quot;2026-08-26&quot;:1.02},{&quot;2026-08-27&quot;:1.02},{&quot;2026-08-28&quot;:1.02},{&quot;2026-08-29&quot;:1.02},{&quot;2026-08-30&quot;:1.03},{&quot;2026-08-31&quot;:1.03},{&quot;2026-09-01&quot;:1.04},{&quot;2026-09-02&quot;:1.04},{&quot;2026-09-03&quot;:1.04},{&quot;2026-09-04&quot;:1.05},{&quot;2026-09-05&quot;:1.05},{&quot;2026-09-06&quot;:1.05},{&quot;2026-09-07&quot;:1.03},{&quot;2026-09-08&quot;:1.03},{&quot;2026-09-09&quot;:1.03},{&quot;2026-09-10&quot;:1.03},{&quot;2026-09-11&quot;:1.02}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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


    <div
      class="
        flex flex-col gap-2 w-full px-4 py-3 mt-2 bg-foreground text-sm
        rounded-xl
      "
    >
      <div class="text-grey-text"><span class="pagy info">Displaying items 1-50 of 80 in total</span></div>

      <div class="overflow-x-auto">
        <nav class="pagy series-nav" aria-label="Pages"><a role="link" aria-disabled="true" aria-label="Previous">&lt;</a><a role="link" aria-disabled="true" aria-current="page">1</a><a href="/load_collection?collection_id=220&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next">2</a><a href="/load_collection?collection_id=220&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next" aria-label="Next">&gt;</a></nav>
      </div>
    </div>
</div>

<!-- Desktop Table View -->
<div class="hidden lg:block mb-24 overflow-x-auto border rounded-3xl border-highlight">
  <table class="min-w-full divide-y table-auto divide-background">
    <thead class="bg-background" data-controller="table-sort">
      <tr>
          <th
            class="
              py-3 pl-4 pr-0 text-xs font-normal tracking-wider text-left
              normal-case text-grey-text
            "
          >
            <a data-turbo-stream="true" data-action="click-&gt;table-sort#sort" class="flex items-center gap-1 hover:text-white" href="/load_collection?collection_id=220&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=220&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=220&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=220&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=220&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=220&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=220&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=220&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=220&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="21038"
          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">
              364
            </td>

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


            </td>

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

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

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

                </div>
            </td>

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

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tsr ss-rare ss-fw ss-2x mr-4"></i>
              Urborg, Tomb of Yawgmoth


            </td>

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

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

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

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

                </div>
            </td>

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

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

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-neo ss-rare ss-fw ss-2x mr-4"></i>
              Boseiju, Who Endures


            </td>

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

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

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

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

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

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

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

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

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

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

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


            </td>

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

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

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

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

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

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

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

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

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tsr ss-mythic ss-fw ss-2x mr-4"></i>
              Akroma&#39;s Memorial


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

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

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

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

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

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

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

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


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

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="49502"
          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-mh2 ss-rare ss-fw ss-2x mr-4"></i>
              Verdant Catacombs


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

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

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

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

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

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

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

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

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


            </td>

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

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

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

                </div>
            </td>

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

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

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

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

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

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

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


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

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

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

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

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

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


            </td>

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

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

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12870"
          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">
              358
            </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>
              Reflecting Pool


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

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

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

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

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

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

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

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

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


            </td>

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

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

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

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

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

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

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


            </td>

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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


            </td>

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

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

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

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

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

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

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

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

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

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="17541"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              162
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-dis ss-uncommon ss-fw ss-2x mr-4"></i>
              Magewright&#39;s Stone


            </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">
                  $10.57

                    <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">
                $8.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.20
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="17541"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_17541" src="/boxset_card/17541?collection_id=220&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="40395"
          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">
              59
            </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>
              Elvish Promenade


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Kindred Sorcery — Elf
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $9.19

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      7%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $5.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.30
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="40395"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_40395" src="/boxset_card/40395?collection_id=220&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="40382"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              54
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-khc ss-rare ss-fw ss-2x mr-4"></i>
              Beast Whisperer


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Elf Druid
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $8.35

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $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="40382"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_40382" src="/boxset_card/40382?collection_id=220&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="41338"
          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">
              391
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-khm ss-uncommon ss-fw ss-2x mr-4"></i>
              Elven Ambush


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $7.82

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      7%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $5.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.26
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="41338"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_41338" src="/boxset_card/41338?collection_id=220&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="42002"
          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-neo ss-common ss-fw ss-2x mr-4"></i>
              Swamp


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Basic Land — Swamp
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $4.71

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      12%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $6.24

                    <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">
                $1.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $3.60
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.33
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="42002"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_42002" src="/boxset_card/42002?collection_id=220&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="79896"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              406
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tsr ss-special ss-fw ss-2x mr-4"></i>
              Bojuka Bog


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $5.80

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $4.40
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.45
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="79896"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_79896" src="/boxset_card/79896?collection_id=220&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="41999"
          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-neo ss-common ss-fw ss-2x mr-4"></i>
              Swamp


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Basic Land — Swamp
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $4.53

                    <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">
                <div class="flex items-center gap-2">
                  $5.76

                    <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">
                $2.50
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $3.20
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.33
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="41999"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_41999" src="/boxset_card/41999?collection_id=220&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="20758"
          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">
              267
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2xm ss-uncommon ss-fw ss-2x mr-4"></i>
              Lightning Greaves


            </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">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $5.44

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      8%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $3.60
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.53
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="20758"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_20758" src="/boxset_card/20758?collection_id=220&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="40423"
          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">
              68
            </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>
              Marwyn, the Nurturer


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Elf Druid
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $5.43

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      8%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $5.30
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.55
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="40423"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_40423" src="/boxset_card/40423?collection_id=220&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="19402"
          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">
              414
            </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>
              Leaf-Crowned Visionary


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Elf Druid
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $5.21

                    <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">
                $5.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.28
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="19402"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_19402" src="/boxset_card/19402?collection_id=220&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="64309"
          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">
              110
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-scg ss-uncommon ss-fw ss-2x mr-4"></i>
              Alpha Status


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Enchantment — Aura
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $5.12

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $3.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.25
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="64309"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_64309" src="/boxset_card/64309?collection_id=220&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="85016"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              LRW-268
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-rare ss-fw ss-2x mr-4"></i>
              Gilt-Leaf Palace


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $4.68

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      4%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $2.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.04
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="85016"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_85016" src="/boxset_card/85016?collection_id=220&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="12071"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              234
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-cmr ss-rare ss-fw ss-2x mr-4"></i>
              Immaculate Magistrate


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Elf Shaman
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $4.49

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $2.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.25
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="12071"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_12071" src="/boxset_card/12071?collection_id=220&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="41298"
          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">
              378
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-khm ss-rare ss-fw ss-2x mr-4"></i>
              Canopy Tactician


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Elf Warrior
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.86

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      24%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $2.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.29
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="41298"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_41298" src="/boxset_card/41298?collection_id=220&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="20434"
          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">
              156
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2xm ss-rare ss-fw ss-2x mr-4"></i>
              Champion of Lambholt


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Human Warrior
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.54

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $2.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.58
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="20434"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_20434" src="/boxset_card/20434?collection_id=220&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="42015"
          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">
              302
            </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-common ss-fw ss-2x mr-4"></i>
              Forest


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Basic Land — Forest
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.87

                    <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">
                <div class="flex items-center gap-2">
                  $3.38

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      7%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.65
            </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="42015"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_42015" src="/boxset_card/42015?collection_id=220&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="42011"
          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">
              301
            </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-common ss-fw ss-2x mr-4"></i>
              Forest


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Basic Land — Forest
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.05

                    <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">
                <div class="flex items-center gap-2">
                  $3.08

                    <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">
                $1.60
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.58
            </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="42011"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_42011" src="/boxset_card/42011?collection_id=220&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="40447"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              76
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-khc ss-common ss-fw ss-2x mr-4"></i>
              Timberwatch Elf


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Elf
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.71

                    <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">
                $2.05
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.29
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="40447"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_40447" src="/boxset_card/40447?collection_id=220&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="49571"
          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">
              285
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mh2 ss-uncommon ss-fw ss-2x mr-4"></i>
              Quirion Ranger

                <span
                  class="
                    ml-2 px-1.5 py-0.5 text-xs rounded bg-purple-900/30
                    text-purple-400 border border-purple-500/30
                  "
                  title="Etched finish"
                >
                  E
                </span>

            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Elf Ranger
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.53

                    <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.30
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.40
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="49571"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_49571" src="/boxset_card/49571?collection_id=220&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="44273"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              221
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-m11 ss-uncommon ss-fw ss-2x mr-4"></i>
              Whispersilk Cloak


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact — Equipment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.49

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.00
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.44
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="44273"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_44273" src="/boxset_card/44273?collection_id=220&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="40223"
          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">
              1
            </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-mythic ss-fw ss-2x mr-4"></i>
              Lathril, Blade of the Elves


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Elf Noble
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.33

                    <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">
                $1.25
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.91
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="40223"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_40223" src="/boxset_card/40223?collection_id=220&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="40420"
          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">
              67
            </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>
              Lys Alana Huntmaster


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Elf Warrior
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.23

                    <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">
                $0.60
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.25
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="40420"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_40420" src="/boxset_card/40420?collection_id=220&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="78872"
          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">
              222
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-tsp ss-rare ss-fw ss-2x mr-4"></i>
              Squall Line


            </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-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.06

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.60
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.10
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="78872"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_78872" src="/boxset_card/78872?collection_id=220&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="85639"
          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-wth ss-common ss-fw ss-2x mr-4"></i>
              Vitalize


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.98

                    <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.36
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.44
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="85639"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_85639" src="/boxset_card/85639?collection_id=220&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="49265"
          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">
              176
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mh2 ss-rare ss-fw ss-2x mr-4"></i>
              Sylvan Anthem


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Enchantment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.84

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      5%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.60
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.22
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="49265"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_49265" src="/boxset_card/49265?collection_id=220&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=220&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="40488"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              90
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-khc ss-uncommon ss-fw ss-2x mr-4"></i>
              Poison-Tip Archer


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Elf Archer
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.81

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      29%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.05
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.33
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="40488"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_40488" src="/boxset_card/40488?collection_id=220&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="20887"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              312
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2xm ss-uncommon ss-fw ss-2x mr-4"></i>
              Buried Ruin


            </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.74

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.30
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.12
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="20887"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_20887" src="/boxset_card/20887?collection_id=220&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="40437"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              73
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-khc ss-rare ss-fw ss-2x mr-4"></i>
              Rhys the Exiled


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Elf Warrior
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.56

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      1%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.35
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.48
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="40437"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_40437" src="/boxset_card/40437?collection_id=220&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="40258"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              13
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-khc ss-rare ss-fw ss-2x mr-4"></i>
              Crown of Skemfar


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Enchantment — Aura
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.51

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.25
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.40
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="40258"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_40258" src="/boxset_card/40258?collection_id=220&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="87808"
          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">
              C18-138
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-mb1 ss-common ss-fw ss-2x mr-4"></i>
              Cultivate


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.44

                    <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">
                $0.60
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.20
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="87808"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_87808" src="/boxset_card/87808?collection_id=220&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="40417"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              66
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-khc ss-uncommon ss-fw ss-2x mr-4"></i>
              Llanowar Tribe


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Elf Druid
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.33

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.17
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="40417"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_40417" src="/boxset_card/40417?collection_id=220&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="40495"
          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">
              92
            </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>
              Shaman of the Pack


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Elf Shaman
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-b'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.17

                    <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.19
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.30
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="40495"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_40495" src="/boxset_card/40495?collection_id=220&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="40392"
          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-khc ss-common ss-fw ss-2x mr-4"></i>
              Elvish Mystic


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Elf Druid
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.04

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.60
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.19
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="40392"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_40392" src="/boxset_card/40392?collection_id=220&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="20929"
          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">
              328
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-2xm ss-rare ss-fw ss-2x mr-4"></i>
              Twilight Mire


            </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.02

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.65
            </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.08
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="20929"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_20929" src="/boxset_card/20929?collection_id=220&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>
    </tbody>
  </table>

    <div class="flex flex-row items-center justify-between w-full p-6 space-x-4">
      <span class="pagy info">Displaying items 1-50 of 80 in total</span>
      <nav class="pagy series-nav" aria-label="Pages"><a role="link" aria-disabled="true" aria-label="Previous">&lt;</a><a role="link" aria-disabled="true" aria-current="page">1</a><a href="/load_collection?collection_id=220&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next">2</a><a href="/load_collection?collection_id=220&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next" aria-label="Next">&gt;</a></nav>
    </div>
</div>

</template></turbo-stream>