<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="328" 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="109071"
  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-soc 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">
            Ozolith, the Shattered Spire
        </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">
              ↑
              3%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $7.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="Ozolith, the Shattered Spire" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/d/1d5bab94-362e-45e6-8988-69e2b2c681b1.jpg?1782683171" />

        <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">
            Ozolith, the Shattered Spire
        </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 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><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="Ozolith, the Shattered Spire" src="https://cards.scryfall.io/large/front/1/d/1d5bab94-362e-45e6-8988-69e2b2c681b1.jpg?1782683171" />
    </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.51
              </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">
                $0.00
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:4.67},{&quot;2026-06-11&quot;:4.6},{&quot;2026-06-12&quot;:4.65},{&quot;2026-06-13&quot;:4.73},{&quot;2026-06-14&quot;:4.63},{&quot;2026-06-15&quot;:4.56},{&quot;2026-06-16&quot;:4.71},{&quot;2026-06-17&quot;:4.67},{&quot;2026-06-18&quot;:4.55},{&quot;2026-06-19&quot;:4.27},{&quot;2026-06-20&quot;:4.32},{&quot;2026-06-21&quot;:4.51},{&quot;2026-06-22&quot;:4.55},{&quot;2026-06-23&quot;:4.54},{&quot;2026-06-24&quot;:4.8},{&quot;2026-06-25&quot;:4.99},{&quot;2026-06-26&quot;:4.87},{&quot;2026-06-27&quot;:4.87},{&quot;2026-06-28&quot;:4.78},{&quot;2026-06-29&quot;:4.81},{&quot;2026-06-30&quot;:4.79},{&quot;2026-07-01&quot;:4.82},{&quot;2026-07-02&quot;:4.93},{&quot;2026-07-03&quot;:4.96},{&quot;2026-07-04&quot;:4.88},{&quot;2026-07-05&quot;:4.86},{&quot;2026-07-06&quot;:4.85},{&quot;2026-07-07&quot;:4.86},{&quot;2026-07-08&quot;:5.0},{&quot;2026-07-09&quot;:4.97},{&quot;2026-07-10&quot;:5.01},{&quot;2026-07-11&quot;:5.06},{&quot;2026-07-12&quot;:5.05},{&quot;2026-07-13&quot;:5.0},{&quot;2026-07-14&quot;:4.96},{&quot;2026-07-15&quot;:5.03},{&quot;2026-07-16&quot;:4.95},{&quot;2026-07-17&quot;:4.84},{&quot;2026-07-18&quot;:4.97},{&quot;2026-07-19&quot;:4.45},{&quot;2026-07-20&quot;:4.22},{&quot;2026-07-21&quot;:4.62},{&quot;2026-07-23&quot;:4.95},{&quot;2026-07-25&quot;:5.34},{&quot;2026-07-26&quot;:5.2},{&quot;2026-07-27&quot;:5.11},{&quot;2026-07-29&quot;:5.24},{&quot;2026-07-30&quot;:5.41},{&quot;2026-07-31&quot;:5.74},{&quot;2026-08-01&quot;:5.76},{&quot;2026-08-02&quot;:5.75},{&quot;2026-08-03&quot;:5.72},{&quot;2026-08-04&quot;:5.45},{&quot;2026-08-05&quot;:4.97},{&quot;2026-08-07&quot;:5.51},{&quot;2026-08-08&quot;:5.47},{&quot;2026-08-09&quot;:5.76},{&quot;2026-08-10&quot;:5.95},{&quot;2026-08-11&quot;:5.65},{&quot;2026-08-12&quot;:5.88},{&quot;2026-08-13&quot;:6.09},{&quot;2026-08-14&quot;:6.06},{&quot;2026-08-15&quot;:5.93},{&quot;2026-08-16&quot;:6.01},{&quot;2026-08-17&quot;:5.84},{&quot;2026-08-18&quot;:5.98},{&quot;2026-08-19&quot;:5.97},{&quot;2026-08-20&quot;:5.97},{&quot;2026-08-21&quot;:5.92},{&quot;2026-08-22&quot;:6.03},{&quot;2026-08-23&quot;:6.34},{&quot;2026-08-24&quot;:7.02},{&quot;2026-08-25&quot;:7.02},{&quot;2026-08-26&quot;:6.64},{&quot;2026-08-27&quot;:6.52},{&quot;2026-08-28&quot;:6.66},{&quot;2026-08-29&quot;:6.66},{&quot;2026-08-30&quot;:7.15},{&quot;2026-08-31&quot;:7.12},{&quot;2026-09-01&quot;:7.12},{&quot;2026-09-02&quot;:6.69},{&quot;2026-09-03&quot;:6.84},{&quot;2026-09-04&quot;:7.26},{&quot;2026-09-05&quot;:7.28},{&quot;2026-09-06&quot;:7.23},{&quot;2026-09-07&quot;:7.38},{&quot;2026-09-08&quot;:7.38},{&quot;2026-09-09&quot;:7.71},{&quot;2026-09-10&quot;:7.64},{&quot;2026-09-11&quot;:7.51}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="109079"
  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-soc 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">
            Three Visits
        </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">
              ↑
              10%
            </span>

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

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

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

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Three Visits" src="https://cards.scryfall.io/large/front/d/7/d74f59cd-0b58-4dbc-a4e7-742b012ba749.jpg?1782683164" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$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;normal&quot;:[{&quot;2026-06-10&quot;:5.45},{&quot;2026-06-11&quot;:5.2},{&quot;2026-06-12&quot;:5.0},{&quot;2026-06-13&quot;:4.97},{&quot;2026-06-14&quot;:4.93},{&quot;2026-06-15&quot;:5.1},{&quot;2026-06-16&quot;:5.14},{&quot;2026-06-17&quot;:5.15},{&quot;2026-06-18&quot;:5.17},{&quot;2026-06-19&quot;:5.41},{&quot;2026-06-20&quot;:5.32},{&quot;2026-06-21&quot;:5.26},{&quot;2026-06-22&quot;:5.33},{&quot;2026-06-23&quot;:5.63},{&quot;2026-06-24&quot;:5.67},{&quot;2026-06-25&quot;:5.65},{&quot;2026-06-26&quot;:5.26},{&quot;2026-06-27&quot;:5.3},{&quot;2026-06-28&quot;:5.35},{&quot;2026-06-29&quot;:5.28},{&quot;2026-06-30&quot;:5.28},{&quot;2026-07-01&quot;:5.27},{&quot;2026-07-02&quot;:5.15},{&quot;2026-07-03&quot;:5.55},{&quot;2026-07-04&quot;:5.6},{&quot;2026-07-05&quot;:5.58},{&quot;2026-07-06&quot;:5.57},{&quot;2026-07-07&quot;:5.57},{&quot;2026-07-08&quot;:5.39},{&quot;2026-07-09&quot;:5.66},{&quot;2026-07-10&quot;:5.41},{&quot;2026-07-11&quot;:5.41},{&quot;2026-07-12&quot;:5.46},{&quot;2026-07-13&quot;:5.42},{&quot;2026-07-14&quot;:5.3},{&quot;2026-07-15&quot;:5.37},{&quot;2026-07-16&quot;:5.1},{&quot;2026-07-17&quot;:4.99},{&quot;2026-07-18&quot;:5.13},{&quot;2026-07-19&quot;:5.26},{&quot;2026-07-20&quot;:4.92},{&quot;2026-07-21&quot;:4.87},{&quot;2026-07-23&quot;:5.04},{&quot;2026-07-25&quot;:5.68},{&quot;2026-07-26&quot;:5.4},{&quot;2026-07-27&quot;:5.39},{&quot;2026-07-29&quot;:5.96},{&quot;2026-07-30&quot;:6.07},{&quot;2026-07-31&quot;:6.14},{&quot;2026-08-01&quot;:6.11},{&quot;2026-08-02&quot;:6.4},{&quot;2026-08-03&quot;:6.77},{&quot;2026-08-04&quot;:6.67},{&quot;2026-08-05&quot;:6.56},{&quot;2026-08-07&quot;:6.31},{&quot;2026-08-08&quot;:6.29},{&quot;2026-08-09&quot;:6.51},{&quot;2026-08-10&quot;:7.07},{&quot;2026-08-11&quot;:6.77},{&quot;2026-08-12&quot;:6.77},{&quot;2026-08-13&quot;:6.6},{&quot;2026-08-14&quot;:6.83},{&quot;2026-08-15&quot;:6.23},{&quot;2026-08-16&quot;:6.17},{&quot;2026-08-17&quot;:6.74},{&quot;2026-08-18&quot;:6.73},{&quot;2026-08-19&quot;:7.74},{&quot;2026-08-20&quot;:7.74},{&quot;2026-08-21&quot;:7.07},{&quot;2026-08-22&quot;:7.08},{&quot;2026-08-23&quot;:6.72},{&quot;2026-08-24&quot;:6.6},{&quot;2026-08-25&quot;:6.6},{&quot;2026-08-26&quot;:6.05},{&quot;2026-08-27&quot;:6.02},{&quot;2026-08-28&quot;:5.89},{&quot;2026-08-29&quot;:5.89},{&quot;2026-08-30&quot;:6.34},{&quot;2026-08-31&quot;:6.22},{&quot;2026-09-01&quot;:6.22},{&quot;2026-09-02&quot;:6.22},{&quot;2026-09-03&quot;:6.35},{&quot;2026-09-04&quot;:6.5},{&quot;2026-09-05&quot;:6.48},{&quot;2026-09-06&quot;:6.39},{&quot;2026-09-07&quot;:6.6},{&quot;2026-09-08&quot;:6.65},{&quot;2026-09-09&quot;:7.23},{&quot;2026-09-10&quot;:7.12},{&quot;2026-09-11&quot;:7.16}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="108898"
  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-soc 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">
            Turbulent Wilderness
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Turbulent Wilderness
        </h3>

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Turbulent Wilderness" src="https://cards.scryfall.io/large/front/b/6/b6ca755c-4b17-450b-b995-bfec8a55396f.jpg?1782683339" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

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

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

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$4.20</span>
              <span class="text-xs text-grey-text">Credit: $5.46</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;:5.95},{&quot;2026-06-12&quot;:6.01},{&quot;2026-06-13&quot;:5.98},{&quot;2026-06-14&quot;:5.83},{&quot;2026-06-15&quot;:5.24},{&quot;2026-06-16&quot;:5.08},{&quot;2026-06-17&quot;:5.16},{&quot;2026-06-18&quot;:5.12},{&quot;2026-06-19&quot;:5.13},{&quot;2026-06-20&quot;:5.18},{&quot;2026-06-21&quot;:5.0},{&quot;2026-06-22&quot;:4.84},{&quot;2026-06-23&quot;:4.9},{&quot;2026-06-24&quot;:4.91},{&quot;2026-06-25&quot;:4.96},{&quot;2026-06-26&quot;:5.0},{&quot;2026-06-27&quot;:4.94},{&quot;2026-06-28&quot;:5.02},{&quot;2026-06-29&quot;:4.96},{&quot;2026-06-30&quot;:5.07},{&quot;2026-07-01&quot;:5.21},{&quot;2026-07-02&quot;:5.32},{&quot;2026-07-03&quot;:5.34},{&quot;2026-07-04&quot;:5.31},{&quot;2026-07-05&quot;:5.31},{&quot;2026-07-06&quot;:5.33},{&quot;2026-07-07&quot;:5.26},{&quot;2026-07-08&quot;:5.19},{&quot;2026-07-09&quot;:5.11},{&quot;2026-07-10&quot;:5.4},{&quot;2026-07-11&quot;:5.42},{&quot;2026-07-12&quot;:5.42},{&quot;2026-07-13&quot;:4.96},{&quot;2026-07-14&quot;:4.51},{&quot;2026-07-15&quot;:4.46},{&quot;2026-07-16&quot;:4.39},{&quot;2026-07-17&quot;:4.32},{&quot;2026-07-18&quot;:4.23},{&quot;2026-07-19&quot;:4.14},{&quot;2026-07-20&quot;:4.28},{&quot;2026-07-21&quot;:4.33},{&quot;2026-07-23&quot;:4.37},{&quot;2026-07-25&quot;:4.58},{&quot;2026-07-26&quot;:4.62},{&quot;2026-07-27&quot;:4.67},{&quot;2026-07-28&quot;:4.73},{&quot;2026-07-29&quot;:4.97},{&quot;2026-07-30&quot;:5.03},{&quot;2026-07-31&quot;:5.1},{&quot;2026-08-01&quot;:5.07},{&quot;2026-08-02&quot;:5.1},{&quot;2026-08-03&quot;:5.12},{&quot;2026-08-04&quot;:5.21},{&quot;2026-08-05&quot;:5.22},{&quot;2026-08-07&quot;:5.33},{&quot;2026-08-08&quot;:5.34},{&quot;2026-08-09&quot;:5.41},{&quot;2026-08-10&quot;:5.61},{&quot;2026-08-11&quot;:5.41},{&quot;2026-08-12&quot;:5.03},{&quot;2026-08-13&quot;:4.97},{&quot;2026-08-14&quot;:4.9},{&quot;2026-08-15&quot;:4.92},{&quot;2026-08-16&quot;:4.98},{&quot;2026-08-17&quot;:5.42},{&quot;2026-08-18&quot;:5.9},{&quot;2026-08-19&quot;:5.79},{&quot;2026-08-20&quot;:5.79},{&quot;2026-08-21&quot;:5.82},{&quot;2026-08-22&quot;:5.89},{&quot;2026-08-23&quot;:5.89},{&quot;2026-08-24&quot;:6.04},{&quot;2026-08-25&quot;:6.04},{&quot;2026-08-26&quot;:6.11},{&quot;2026-08-27&quot;:6.1},{&quot;2026-08-28&quot;:6.14},{&quot;2026-08-29&quot;:6.14},{&quot;2026-08-30&quot;:6.19},{&quot;2026-08-31&quot;:6.17},{&quot;2026-09-01&quot;:6.17},{&quot;2026-09-02&quot;:6.1},{&quot;2026-09-03&quot;:6.17},{&quot;2026-09-04&quot;:6.17},{&quot;2026-09-05&quot;:6.28},{&quot;2026-09-06&quot;:6.28},{&quot;2026-09-07&quot;:6.3},{&quot;2026-09-08&quot;:6.2},{&quot;2026-09-09&quot;:6.21},{&quot;2026-09-10&quot;:6.26},{&quot;2026-09-11&quot;:6.29}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="109064"
  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-soc 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">
            Kami of Whispered Hopes
        </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">
              ↑
              13%
            </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="Kami of Whispered Hopes" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/0/b/0be4e5f6-a1fc-4a91-aafe-f963878cd1b3.jpg?1782683176" />

        <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">
            Kami of Whispered Hopes
        </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 — Spirit</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="Kami of Whispered Hopes" src="https://cards.scryfall.io/large/front/0/b/0be4e5f6-a1fc-4a91-aafe-f963878cd1b3.jpg?1782683176" />
    </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.71
              </span>

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

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

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

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$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;:2.52},{&quot;2026-06-14&quot;:2.49},{&quot;2026-06-15&quot;:2.5},{&quot;2026-06-16&quot;:2.48},{&quot;2026-06-17&quot;:2.46},{&quot;2026-06-18&quot;:2.54},{&quot;2026-06-19&quot;:2.5},{&quot;2026-06-20&quot;:2.44},{&quot;2026-06-21&quot;:2.46},{&quot;2026-06-22&quot;:2.5},{&quot;2026-06-23&quot;:2.6},{&quot;2026-06-24&quot;:2.57},{&quot;2026-06-25&quot;:2.68},{&quot;2026-06-26&quot;:2.68},{&quot;2026-06-27&quot;:2.6},{&quot;2026-06-28&quot;:2.56},{&quot;2026-06-29&quot;:2.56},{&quot;2026-06-30&quot;:2.58},{&quot;2026-07-01&quot;:2.61},{&quot;2026-07-02&quot;:2.59},{&quot;2026-07-03&quot;:2.56},{&quot;2026-07-04&quot;:2.48},{&quot;2026-07-05&quot;:2.46},{&quot;2026-07-06&quot;:2.48},{&quot;2026-07-07&quot;:2.54},{&quot;2026-07-08&quot;:2.47},{&quot;2026-07-09&quot;:2.48},{&quot;2026-07-10&quot;:2.43},{&quot;2026-07-11&quot;:2.43},{&quot;2026-07-12&quot;:2.46},{&quot;2026-07-13&quot;:2.5},{&quot;2026-07-14&quot;:2.53},{&quot;2026-07-15&quot;:2.54},{&quot;2026-07-16&quot;:2.56},{&quot;2026-07-17&quot;:2.54},{&quot;2026-07-18&quot;:2.6},{&quot;2026-07-19&quot;:2.59},{&quot;2026-07-20&quot;:2.61},{&quot;2026-07-21&quot;:2.64},{&quot;2026-07-22&quot;:2.65},{&quot;2026-07-23&quot;:2.67},{&quot;2026-07-24&quot;:2.73},{&quot;2026-07-25&quot;:2.92},{&quot;2026-07-26&quot;:2.94},{&quot;2026-07-27&quot;:2.84},{&quot;2026-07-28&quot;:2.87},{&quot;2026-07-29&quot;:2.86},{&quot;2026-07-30&quot;:2.91},{&quot;2026-07-31&quot;:2.95},{&quot;2026-08-01&quot;:3.0},{&quot;2026-08-02&quot;:3.06},{&quot;2026-08-03&quot;:3.07},{&quot;2026-08-04&quot;:3.0},{&quot;2026-08-05&quot;:3.01},{&quot;2026-08-07&quot;:3.94},{&quot;2026-08-08&quot;:3.95},{&quot;2026-08-09&quot;:3.93},{&quot;2026-08-10&quot;:4.05},{&quot;2026-08-11&quot;:4.0},{&quot;2026-08-12&quot;:3.87},{&quot;2026-08-13&quot;:4.03},{&quot;2026-08-14&quot;:4.14},{&quot;2026-08-15&quot;:4.08},{&quot;2026-08-16&quot;:3.84},{&quot;2026-08-17&quot;:3.24},{&quot;2026-08-18&quot;:3.05},{&quot;2026-08-19&quot;:3.13},{&quot;2026-08-20&quot;:3.22},{&quot;2026-08-21&quot;:3.48},{&quot;2026-08-22&quot;:3.62},{&quot;2026-08-23&quot;:3.8},{&quot;2026-08-24&quot;:3.63},{&quot;2026-08-25&quot;:3.68},{&quot;2026-08-26&quot;:3.56},{&quot;2026-08-27&quot;:3.91},{&quot;2026-08-28&quot;:4.09},{&quot;2026-08-29&quot;:4.09},{&quot;2026-08-30&quot;:4.06},{&quot;2026-08-31&quot;:3.81},{&quot;2026-09-01&quot;:3.8},{&quot;2026-09-02&quot;:3.95},{&quot;2026-09-03&quot;:3.97},{&quot;2026-09-04&quot;:4.05},{&quot;2026-09-05&quot;:4.15},{&quot;2026-09-06&quot;:4.19},{&quot;2026-09-07&quot;:4.24},{&quot;2026-09-08&quot;:4.4},{&quot;2026-09-09&quot;:4.64},{&quot;2026-09-10&quot;:4.71},{&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="109063"
  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-soc 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">
            Hardened Scales
        </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">
              ↑
              14%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $3.96
          </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="Hardened Scales" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/9/9/99cfd1a8-49fd-4cc0-96f2-f9f159ce5d55.jpg?1782683178" />

        <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">
            Hardened Scales
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Hardened Scales" src="https://cards.scryfall.io/large/front/9/9/99cfd1a8-49fd-4cc0-96f2-f9f159ce5d55.jpg?1782683178" />
    </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.96
              </span>

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

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

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

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$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;normal&quot;:[{&quot;2026-06-10&quot;:1.76},{&quot;2026-06-11&quot;:1.73},{&quot;2026-06-12&quot;:1.69},{&quot;2026-06-13&quot;:1.58},{&quot;2026-06-14&quot;:1.59},{&quot;2026-06-15&quot;:1.63},{&quot;2026-06-16&quot;:1.64},{&quot;2026-06-17&quot;:1.61},{&quot;2026-06-18&quot;:1.62},{&quot;2026-06-19&quot;:1.61},{&quot;2026-06-20&quot;:1.64},{&quot;2026-06-21&quot;:1.76},{&quot;2026-06-22&quot;:1.79},{&quot;2026-06-23&quot;:1.67},{&quot;2026-06-24&quot;:1.75},{&quot;2026-06-25&quot;:1.78},{&quot;2026-06-26&quot;:1.81},{&quot;2026-06-27&quot;:1.84},{&quot;2026-06-28&quot;:1.83},{&quot;2026-06-29&quot;:1.83},{&quot;2026-06-30&quot;:1.81},{&quot;2026-07-01&quot;:1.87},{&quot;2026-07-02&quot;:1.88},{&quot;2026-07-03&quot;:1.76},{&quot;2026-07-04&quot;:1.78},{&quot;2026-07-05&quot;:1.83},{&quot;2026-07-06&quot;:1.75},{&quot;2026-07-07&quot;:1.77},{&quot;2026-07-08&quot;:1.79},{&quot;2026-07-09&quot;:1.68},{&quot;2026-07-10&quot;:2.09},{&quot;2026-07-11&quot;:2.14},{&quot;2026-07-12&quot;:1.95},{&quot;2026-07-13&quot;:1.95},{&quot;2026-07-14&quot;:1.93},{&quot;2026-07-15&quot;:1.94},{&quot;2026-07-16&quot;:1.85},{&quot;2026-07-17&quot;:1.79},{&quot;2026-07-18&quot;:1.82},{&quot;2026-07-19&quot;:1.76},{&quot;2026-07-20&quot;:1.84},{&quot;2026-07-21&quot;:1.87},{&quot;2026-07-23&quot;:1.99},{&quot;2026-07-25&quot;:2.18},{&quot;2026-07-26&quot;:2.22},{&quot;2026-07-27&quot;:2.26},{&quot;2026-07-29&quot;:2.33},{&quot;2026-07-30&quot;:2.44},{&quot;2026-07-31&quot;:2.58},{&quot;2026-08-01&quot;:2.71},{&quot;2026-08-02&quot;:2.8},{&quot;2026-08-03&quot;:2.74},{&quot;2026-08-04&quot;:2.62},{&quot;2026-08-05&quot;:2.6},{&quot;2026-08-07&quot;:2.36},{&quot;2026-08-08&quot;:2.41},{&quot;2026-08-09&quot;:2.45},{&quot;2026-08-10&quot;:2.54},{&quot;2026-08-11&quot;:2.6},{&quot;2026-08-12&quot;:2.59},{&quot;2026-08-13&quot;:3.0},{&quot;2026-08-14&quot;:3.17},{&quot;2026-08-15&quot;:3.23},{&quot;2026-08-16&quot;:3.13},{&quot;2026-08-17&quot;:3.12},{&quot;2026-08-18&quot;:2.95},{&quot;2026-08-19&quot;:3.05},{&quot;2026-08-20&quot;:3.05},{&quot;2026-08-21&quot;:3.21},{&quot;2026-08-22&quot;:3.08},{&quot;2026-08-23&quot;:3.06},{&quot;2026-08-24&quot;:3.1},{&quot;2026-08-25&quot;:3.1},{&quot;2026-08-26&quot;:2.88},{&quot;2026-08-27&quot;:2.87},{&quot;2026-08-28&quot;:3.0},{&quot;2026-08-29&quot;:3.0},{&quot;2026-08-30&quot;:3.61},{&quot;2026-08-31&quot;:3.97},{&quot;2026-09-01&quot;:3.97},{&quot;2026-09-02&quot;:3.9},{&quot;2026-09-03&quot;:3.6},{&quot;2026-09-04&quot;:3.56},{&quot;2026-09-05&quot;:3.48},{&quot;2026-09-06&quot;:3.23},{&quot;2026-09-07&quot;:3.55},{&quot;2026-09-08&quot;:3.91},{&quot;2026-09-09&quot;:3.85},{&quot;2026-09-10&quot;:3.9},{&quot;2026-09-11&quot;:3.96}]}"
        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="109188"
  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-soc 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">
            Reliquary Tower
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Reliquary Tower
        </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="Reliquary Tower" src="https://cards.scryfall.io/large/front/e/2/e2a27742-08c1-4153-af7f-25a7a98f585e.jpg?1782683076" />
    </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.78
              </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">
                $0.00
              </span>

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:2.98},{&quot;2026-06-14&quot;:2.92},{&quot;2026-06-15&quot;:3.02},{&quot;2026-06-16&quot;:2.98},{&quot;2026-06-17&quot;:2.77},{&quot;2026-06-18&quot;:2.81},{&quot;2026-06-19&quot;:2.95},{&quot;2026-06-20&quot;:2.93},{&quot;2026-06-21&quot;:2.92},{&quot;2026-06-22&quot;:3.09},{&quot;2026-06-23&quot;:2.91},{&quot;2026-06-24&quot;:3.04},{&quot;2026-06-25&quot;:3.1},{&quot;2026-06-26&quot;:3.03},{&quot;2026-06-27&quot;:3.09},{&quot;2026-06-28&quot;:3.06},{&quot;2026-06-29&quot;:3.07},{&quot;2026-06-30&quot;:3.12},{&quot;2026-07-01&quot;:3.22},{&quot;2026-07-02&quot;:3.14},{&quot;2026-07-03&quot;:3.14},{&quot;2026-07-04&quot;:3.11},{&quot;2026-07-05&quot;:3.13},{&quot;2026-07-06&quot;:3.07},{&quot;2026-07-07&quot;:3.38},{&quot;2026-07-08&quot;:2.97},{&quot;2026-07-09&quot;:2.99},{&quot;2026-07-10&quot;:3.36},{&quot;2026-07-11&quot;:3.32},{&quot;2026-07-12&quot;:3.41},{&quot;2026-07-13&quot;:3.21},{&quot;2026-07-14&quot;:3.39},{&quot;2026-07-15&quot;:3.49},{&quot;2026-07-16&quot;:3.38},{&quot;2026-07-17&quot;:3.14},{&quot;2026-07-18&quot;:3.21},{&quot;2026-07-19&quot;:3.21},{&quot;2026-07-20&quot;:3.53},{&quot;2026-07-21&quot;:3.54},{&quot;2026-07-22&quot;:3.85},{&quot;2026-07-23&quot;:3.86},{&quot;2026-07-24&quot;:4.08},{&quot;2026-07-25&quot;:3.82},{&quot;2026-07-26&quot;:3.8},{&quot;2026-07-27&quot;:3.67},{&quot;2026-07-28&quot;:3.67},{&quot;2026-07-29&quot;:3.85},{&quot;2026-07-30&quot;:4.1},{&quot;2026-07-31&quot;:4.25},{&quot;2026-08-01&quot;:4.22},{&quot;2026-08-02&quot;:4.2},{&quot;2026-08-03&quot;:4.05},{&quot;2026-08-04&quot;:4.07},{&quot;2026-08-05&quot;:4.28},{&quot;2026-08-07&quot;:4.64},{&quot;2026-08-08&quot;:4.52},{&quot;2026-08-09&quot;:4.79},{&quot;2026-08-10&quot;:4.89},{&quot;2026-08-11&quot;:4.74},{&quot;2026-08-12&quot;:5.0},{&quot;2026-08-13&quot;:5.05},{&quot;2026-08-14&quot;:5.09},{&quot;2026-08-15&quot;:5.08},{&quot;2026-08-16&quot;:5.18},{&quot;2026-08-17&quot;:5.22},{&quot;2026-08-18&quot;:4.98},{&quot;2026-08-19&quot;:4.49},{&quot;2026-08-20&quot;:4.35},{&quot;2026-08-21&quot;:3.87},{&quot;2026-08-22&quot;:3.62},{&quot;2026-08-23&quot;:3.54},{&quot;2026-08-24&quot;:3.48},{&quot;2026-08-25&quot;:3.53},{&quot;2026-08-26&quot;:3.55},{&quot;2026-08-27&quot;:3.7},{&quot;2026-08-28&quot;:3.58},{&quot;2026-08-29&quot;:3.58},{&quot;2026-08-30&quot;:3.82},{&quot;2026-08-31&quot;:3.56},{&quot;2026-09-01&quot;:3.43},{&quot;2026-09-02&quot;:3.49},{&quot;2026-09-03&quot;:3.58},{&quot;2026-09-04&quot;:3.57},{&quot;2026-09-05&quot;:3.71},{&quot;2026-09-06&quot;:3.89},{&quot;2026-09-07&quot;:3.64},{&quot;2026-09-08&quot;:3.68},{&quot;2026-09-09&quot;:3.63},{&quot;2026-09-10&quot;:3.61},{&quot;2026-09-11&quot;:3.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="109061"
  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-soc 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">
            Goldvein Hydra
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Goldvein Hydra
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-x'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Goldvein Hydra" src="https://cards.scryfall.io/large/front/3/b/3baebc29-bc89-4b56-a821-b5d3ca0cd3b4.jpg?1782683179" />
    </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.29
              </span>

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

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

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

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$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-12&quot;:2.95},{&quot;2026-06-13&quot;:2.99},{&quot;2026-06-14&quot;:2.85},{&quot;2026-06-15&quot;:2.85},{&quot;2026-06-16&quot;:2.86},{&quot;2026-06-17&quot;:2.78},{&quot;2026-06-18&quot;:2.78},{&quot;2026-06-19&quot;:2.78},{&quot;2026-06-20&quot;:2.74},{&quot;2026-06-21&quot;:2.68},{&quot;2026-06-22&quot;:2.62},{&quot;2026-06-23&quot;:2.61},{&quot;2026-06-24&quot;:2.64},{&quot;2026-06-25&quot;:2.68},{&quot;2026-06-26&quot;:2.69},{&quot;2026-06-27&quot;:2.67},{&quot;2026-06-28&quot;:2.65},{&quot;2026-06-29&quot;:2.66},{&quot;2026-06-30&quot;:2.68},{&quot;2026-07-01&quot;:2.68},{&quot;2026-07-02&quot;:2.7},{&quot;2026-07-03&quot;:2.7},{&quot;2026-07-04&quot;:2.72},{&quot;2026-07-05&quot;:2.72},{&quot;2026-07-06&quot;:2.73},{&quot;2026-07-07&quot;:2.75},{&quot;2026-07-08&quot;:2.8},{&quot;2026-07-09&quot;:2.79},{&quot;2026-07-10&quot;:2.74},{&quot;2026-07-11&quot;:3.06},{&quot;2026-07-12&quot;:3.06},{&quot;2026-07-13&quot;:2.85},{&quot;2026-07-14&quot;:2.85},{&quot;2026-07-15&quot;:2.82},{&quot;2026-07-16&quot;:2.79},{&quot;2026-07-17&quot;:2.77},{&quot;2026-07-18&quot;:2.77},{&quot;2026-07-19&quot;:2.74},{&quot;2026-07-20&quot;:2.82},{&quot;2026-07-21&quot;:2.84},{&quot;2026-07-23&quot;:2.75},{&quot;2026-07-24&quot;:2.74},{&quot;2026-07-25&quot;:2.82},{&quot;2026-07-26&quot;:2.79},{&quot;2026-07-27&quot;:2.77},{&quot;2026-07-28&quot;:2.97},{&quot;2026-07-29&quot;:3.01},{&quot;2026-07-30&quot;:3.04},{&quot;2026-07-31&quot;:2.85},{&quot;2026-08-01&quot;:2.84},{&quot;2026-08-02&quot;:2.81},{&quot;2026-08-03&quot;:2.88},{&quot;2026-08-04&quot;:2.91},{&quot;2026-08-05&quot;:2.93},{&quot;2026-08-07&quot;:3.03},{&quot;2026-08-08&quot;:3.17},{&quot;2026-08-09&quot;:2.96},{&quot;2026-08-10&quot;:3.0},{&quot;2026-08-11&quot;:2.89},{&quot;2026-08-12&quot;:2.82},{&quot;2026-08-13&quot;:2.83},{&quot;2026-08-14&quot;:2.92},{&quot;2026-08-15&quot;:2.9},{&quot;2026-08-16&quot;:2.99},{&quot;2026-08-17&quot;:3.04},{&quot;2026-08-18&quot;:2.9},{&quot;2026-08-19&quot;:2.95},{&quot;2026-08-20&quot;:2.95},{&quot;2026-08-21&quot;:3.12},{&quot;2026-08-22&quot;:3.17},{&quot;2026-08-23&quot;:3.14},{&quot;2026-08-24&quot;:3.06},{&quot;2026-08-25&quot;:3.13},{&quot;2026-08-26&quot;:3.04},{&quot;2026-08-27&quot;:2.96},{&quot;2026-08-28&quot;:2.78},{&quot;2026-08-29&quot;:2.78},{&quot;2026-08-30&quot;:3.11},{&quot;2026-08-31&quot;:3.11},{&quot;2026-09-01&quot;:3.09},{&quot;2026-09-02&quot;:3.2},{&quot;2026-09-03&quot;:3.22},{&quot;2026-09-04&quot;:3.12},{&quot;2026-09-05&quot;:3.0},{&quot;2026-09-06&quot;:3.09},{&quot;2026-09-07&quot;:3.13},{&quot;2026-09-08&quot;:3.2},{&quot;2026-09-09&quot;:3.22},{&quot;2026-09-10&quot;:3.29},{&quot;2026-09-11&quot;:3.29}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $2.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="Nature&#39;s Lore" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/c/7caedde3-8a02-4384-b8f5-5529b0ed27a5.jpg?1782683173" />

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

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

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Nature&#39;s Lore" src="https://cards.scryfall.io/large/front/7/c/7caedde3-8a02-4384-b8f5-5529b0ed27a5.jpg?1782683173" />
    </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.98
              </span>

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

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

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

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$1.10</span>
              <span class="text-xs text-grey-text">Credit: $1.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-12&quot;:2.41},{&quot;2026-06-13&quot;:2.45},{&quot;2026-06-14&quot;:2.37},{&quot;2026-06-15&quot;:2.33},{&quot;2026-06-16&quot;:2.32},{&quot;2026-06-17&quot;:2.33},{&quot;2026-06-18&quot;:2.35},{&quot;2026-06-19&quot;:2.4},{&quot;2026-06-20&quot;:2.38},{&quot;2026-06-21&quot;:2.42},{&quot;2026-06-22&quot;:2.47},{&quot;2026-06-23&quot;:2.52},{&quot;2026-06-24&quot;:2.51},{&quot;2026-06-25&quot;:2.54},{&quot;2026-06-26&quot;:2.49},{&quot;2026-06-27&quot;:2.44},{&quot;2026-06-28&quot;:2.4},{&quot;2026-06-29&quot;:2.4},{&quot;2026-06-30&quot;:2.47},{&quot;2026-07-01&quot;:2.51},{&quot;2026-07-02&quot;:2.49},{&quot;2026-07-03&quot;:2.41},{&quot;2026-07-04&quot;:2.33},{&quot;2026-07-05&quot;:2.35},{&quot;2026-07-06&quot;:2.34},{&quot;2026-07-07&quot;:2.39},{&quot;2026-07-08&quot;:2.33},{&quot;2026-07-09&quot;:2.31},{&quot;2026-07-10&quot;:2.33},{&quot;2026-07-11&quot;:2.38},{&quot;2026-07-12&quot;:2.41},{&quot;2026-07-13&quot;:2.45},{&quot;2026-07-14&quot;:2.46},{&quot;2026-07-15&quot;:2.45},{&quot;2026-07-16&quot;:2.44},{&quot;2026-07-17&quot;:2.39},{&quot;2026-07-18&quot;:2.39},{&quot;2026-07-19&quot;:3.05},{&quot;2026-07-20&quot;:3.07},{&quot;2026-07-21&quot;:3.08},{&quot;2026-07-23&quot;:2.85},{&quot;2026-07-24&quot;:2.9},{&quot;2026-07-25&quot;:3.0},{&quot;2026-07-26&quot;:2.96},{&quot;2026-07-27&quot;:2.74},{&quot;2026-07-28&quot;:2.75},{&quot;2026-07-29&quot;:2.74},{&quot;2026-07-30&quot;:2.75},{&quot;2026-07-31&quot;:2.8},{&quot;2026-08-01&quot;:2.81},{&quot;2026-08-02&quot;:2.89},{&quot;2026-08-03&quot;:2.88},{&quot;2026-08-04&quot;:2.92},{&quot;2026-08-05&quot;:2.92},{&quot;2026-08-07&quot;:3.05},{&quot;2026-08-08&quot;:3.08},{&quot;2026-08-09&quot;:3.26},{&quot;2026-08-10&quot;:3.27},{&quot;2026-08-11&quot;:3.24},{&quot;2026-08-12&quot;:3.28},{&quot;2026-08-13&quot;:3.26},{&quot;2026-08-14&quot;:3.28},{&quot;2026-08-15&quot;:3.23},{&quot;2026-08-16&quot;:3.23},{&quot;2026-08-17&quot;:3.04},{&quot;2026-08-18&quot;:3.02},{&quot;2026-08-19&quot;:3.0},{&quot;2026-08-20&quot;:3.0},{&quot;2026-08-21&quot;:3.03},{&quot;2026-08-22&quot;:2.97},{&quot;2026-08-23&quot;:2.97},{&quot;2026-08-24&quot;:3.02},{&quot;2026-08-25&quot;:2.92},{&quot;2026-08-26&quot;:2.91},{&quot;2026-08-27&quot;:2.95},{&quot;2026-08-28&quot;:3.02},{&quot;2026-08-29&quot;:3.02},{&quot;2026-08-30&quot;:3.19},{&quot;2026-08-31&quot;:3.27},{&quot;2026-09-01&quot;:3.5},{&quot;2026-09-02&quot;:3.48},{&quot;2026-09-03&quot;:3.47},{&quot;2026-09-04&quot;:3.43},{&quot;2026-09-05&quot;:3.41},{&quot;2026-09-06&quot;:3.26},{&quot;2026-09-07&quot;:3.15},{&quot;2026-09-08&quot;:3.17},{&quot;2026-09-09&quot;:3.12},{&quot;2026-09-10&quot;:3.0},{&quot;2026-09-11&quot;:2.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="108919"
  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-soc 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">
            Unbound Flourishing
        </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">
            $2.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="Unbound Flourishing" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/a/aa5931c8-e453-4bfd-98b2-0baf5c55f1cb.jpg?1782683285" />

        <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">
            Unbound Flourishing
        </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-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="Unbound Flourishing" src="https://cards.scryfall.io/large/front/a/a/aa5931c8-e453-4bfd-98b2-0baf5c55f1cb.jpg?1782683285" />
    </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.43
              </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">
                $0.00
              </span>

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.75</span>
              <span class="text-xs text-grey-text">Credit: $0.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-13&quot;:2.77},{&quot;2026-06-14&quot;:2.72},{&quot;2026-06-15&quot;:2.72},{&quot;2026-06-16&quot;:2.71},{&quot;2026-06-17&quot;:2.63},{&quot;2026-06-18&quot;:2.55},{&quot;2026-06-19&quot;:2.52},{&quot;2026-06-20&quot;:2.47},{&quot;2026-06-21&quot;:2.51},{&quot;2026-06-22&quot;:2.53},{&quot;2026-06-23&quot;:2.61},{&quot;2026-06-24&quot;:2.62},{&quot;2026-06-25&quot;:2.68},{&quot;2026-06-26&quot;:2.74},{&quot;2026-06-27&quot;:2.68},{&quot;2026-06-28&quot;:2.66},{&quot;2026-06-29&quot;:2.63},{&quot;2026-06-30&quot;:2.63},{&quot;2026-07-01&quot;:2.65},{&quot;2026-07-02&quot;:2.69},{&quot;2026-07-03&quot;:2.74},{&quot;2026-07-04&quot;:2.72},{&quot;2026-07-05&quot;:2.66},{&quot;2026-07-06&quot;:2.59},{&quot;2026-07-07&quot;:2.57},{&quot;2026-07-08&quot;:2.54},{&quot;2026-07-09&quot;:2.37},{&quot;2026-07-10&quot;:2.29},{&quot;2026-07-11&quot;:2.26},{&quot;2026-07-12&quot;:2.25},{&quot;2026-07-13&quot;:2.25},{&quot;2026-07-14&quot;:2.27},{&quot;2026-07-15&quot;:2.25},{&quot;2026-07-16&quot;:2.2},{&quot;2026-07-17&quot;:2.16},{&quot;2026-07-18&quot;:1.97},{&quot;2026-07-19&quot;:2.09},{&quot;2026-07-20&quot;:2.08},{&quot;2026-07-21&quot;:2.17},{&quot;2026-07-22&quot;:2.03},{&quot;2026-07-23&quot;:1.98},{&quot;2026-07-24&quot;:1.99},{&quot;2026-07-25&quot;:2.0},{&quot;2026-07-26&quot;:1.98},{&quot;2026-07-27&quot;:1.99},{&quot;2026-07-28&quot;:1.99},{&quot;2026-07-29&quot;:2.01},{&quot;2026-07-30&quot;:1.99},{&quot;2026-07-31&quot;:2.02},{&quot;2026-08-01&quot;:2.05},{&quot;2026-08-02&quot;:2.41},{&quot;2026-08-03&quot;:2.41},{&quot;2026-08-04&quot;:2.43},{&quot;2026-08-05&quot;:2.51},{&quot;2026-08-07&quot;:2.43},{&quot;2026-08-08&quot;:2.47},{&quot;2026-08-09&quot;:2.46},{&quot;2026-08-10&quot;:2.48},{&quot;2026-08-11&quot;:2.26},{&quot;2026-08-12&quot;:2.56},{&quot;2026-08-13&quot;:2.56},{&quot;2026-08-14&quot;:2.61},{&quot;2026-08-15&quot;:2.37},{&quot;2026-08-16&quot;:2.34},{&quot;2026-08-17&quot;:2.34},{&quot;2026-08-18&quot;:2.33},{&quot;2026-08-19&quot;:2.36},{&quot;2026-08-20&quot;:2.36},{&quot;2026-08-21&quot;:2.36},{&quot;2026-08-22&quot;:2.33},{&quot;2026-08-23&quot;:2.29},{&quot;2026-08-24&quot;:2.22},{&quot;2026-08-25&quot;:2.27},{&quot;2026-08-26&quot;:2.24},{&quot;2026-08-27&quot;:2.3},{&quot;2026-08-28&quot;:2.34},{&quot;2026-08-29&quot;:2.34},{&quot;2026-08-30&quot;:2.35},{&quot;2026-08-31&quot;:2.33},{&quot;2026-09-01&quot;:2.36},{&quot;2026-09-02&quot;:2.3},{&quot;2026-09-03&quot;:2.37},{&quot;2026-09-04&quot;:2.37},{&quot;2026-09-05&quot;:2.38},{&quot;2026-09-06&quot;:2.38},{&quot;2026-09-07&quot;:2.35},{&quot;2026-09-08&quot;:2.36},{&quot;2026-09-09&quot;:2.36},{&quot;2026-09-10&quot;:2.37},{&quot;2026-09-11&quot;:2.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="108850"
  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-soc 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">
            Expansion Algorithm
        </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">
              ↑
              14%
            </span>

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

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

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

        <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">
            Expansion Algorithm
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Expansion Algorithm" src="https://cards.scryfall.io/large/front/e/f/ef261999-1c18-46f3-bbd6-72911e14328f.jpg?1782683372" />
    </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.12
              </span>

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

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

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

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.95</span>
              <span class="text-xs text-grey-text">Credit: $1.24</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.45},{&quot;2026-06-14&quot;:2.39},{&quot;2026-06-15&quot;:2.36},{&quot;2026-06-16&quot;:2.35},{&quot;2026-06-17&quot;:2.39},{&quot;2026-06-18&quot;:2.33},{&quot;2026-06-19&quot;:2.25},{&quot;2026-06-20&quot;:2.25},{&quot;2026-06-21&quot;:2.24},{&quot;2026-06-22&quot;:2.21},{&quot;2026-06-23&quot;:2.17},{&quot;2026-06-24&quot;:2.19},{&quot;2026-06-25&quot;:2.22},{&quot;2026-06-26&quot;:2.23},{&quot;2026-06-27&quot;:2.23},{&quot;2026-06-28&quot;:2.21},{&quot;2026-06-29&quot;:2.19},{&quot;2026-06-30&quot;:2.21},{&quot;2026-07-01&quot;:2.26},{&quot;2026-07-02&quot;:2.27},{&quot;2026-07-03&quot;:2.29},{&quot;2026-07-04&quot;:2.32},{&quot;2026-07-05&quot;:2.26},{&quot;2026-07-06&quot;:2.23},{&quot;2026-07-07&quot;:2.22},{&quot;2026-07-08&quot;:2.19},{&quot;2026-07-09&quot;:2.23},{&quot;2026-07-10&quot;:2.22},{&quot;2026-07-11&quot;:2.13},{&quot;2026-07-12&quot;:2.14},{&quot;2026-07-13&quot;:2.2},{&quot;2026-07-14&quot;:2.27},{&quot;2026-07-15&quot;:2.22},{&quot;2026-07-16&quot;:2.21},{&quot;2026-07-17&quot;:2.21},{&quot;2026-07-18&quot;:2.28},{&quot;2026-07-19&quot;:2.22},{&quot;2026-07-20&quot;:2.2},{&quot;2026-07-21&quot;:2.12},{&quot;2026-07-22&quot;:2.12},{&quot;2026-07-23&quot;:2.09},{&quot;2026-07-24&quot;:2.05},{&quot;2026-07-25&quot;:2.07},{&quot;2026-07-26&quot;:2.14},{&quot;2026-07-27&quot;:2.14},{&quot;2026-07-28&quot;:2.17},{&quot;2026-07-29&quot;:2.16},{&quot;2026-07-30&quot;:2.16},{&quot;2026-07-31&quot;:2.13},{&quot;2026-08-01&quot;:2.12},{&quot;2026-08-02&quot;:2.15},{&quot;2026-08-03&quot;:2.13},{&quot;2026-08-04&quot;:2.12},{&quot;2026-08-05&quot;:2.1},{&quot;2026-08-07&quot;:2.09},{&quot;2026-08-08&quot;:2.1},{&quot;2026-08-09&quot;:2.08},{&quot;2026-08-10&quot;:2.07},{&quot;2026-08-11&quot;:2.1},{&quot;2026-08-12&quot;:2.1},{&quot;2026-08-13&quot;:2.09},{&quot;2026-08-14&quot;:2.1},{&quot;2026-08-15&quot;:2.1},{&quot;2026-08-16&quot;:2.08},{&quot;2026-08-17&quot;:2.06},{&quot;2026-08-18&quot;:2.05},{&quot;2026-08-19&quot;:2.08},{&quot;2026-08-20&quot;:2.12},{&quot;2026-08-21&quot;:2.14},{&quot;2026-08-22&quot;:2.09},{&quot;2026-08-23&quot;:2.07},{&quot;2026-08-24&quot;:2.13},{&quot;2026-08-25&quot;:2.08},{&quot;2026-08-26&quot;:2.08},{&quot;2026-08-27&quot;:2.07},{&quot;2026-08-28&quot;:1.89},{&quot;2026-08-29&quot;:1.89},{&quot;2026-08-30&quot;:1.89},{&quot;2026-08-31&quot;:1.83},{&quot;2026-09-01&quot;:1.86},{&quot;2026-09-02&quot;:1.9},{&quot;2026-09-03&quot;:1.85},{&quot;2026-09-04&quot;:1.8},{&quot;2026-09-05&quot;:1.86},{&quot;2026-09-06&quot;:1.92},{&quot;2026-09-07&quot;:2.01},{&quot;2026-09-08&quot;:2.08},{&quot;2026-09-09&quot;:2.18},{&quot;2026-09-10&quot;:2.12},{&quot;2026-09-11&quot;:2.12}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="109074"
  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-soc 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">
            Primordial Hydra
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Primordial Hydra" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/9/29515c55-3b48-4c1d-a10b-b27fd1eb7a93.jpg?1782683169" />

        <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">
            Primordial Hydra
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-x'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Primordial Hydra" src="https://cards.scryfall.io/large/front/2/9/29515c55-3b48-4c1d-a10b-b27fd1eb7a93.jpg?1782683169" />
    </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.58
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.49},{&quot;2026-06-14&quot;:1.75},{&quot;2026-06-15&quot;:1.78},{&quot;2026-06-16&quot;:1.47},{&quot;2026-06-17&quot;:1.45},{&quot;2026-06-18&quot;:1.39},{&quot;2026-06-19&quot;:1.36},{&quot;2026-06-20&quot;:1.36},{&quot;2026-06-21&quot;:1.35},{&quot;2026-06-22&quot;:1.34},{&quot;2026-06-23&quot;:1.34},{&quot;2026-06-24&quot;:1.34},{&quot;2026-06-25&quot;:1.34},{&quot;2026-06-26&quot;:1.34},{&quot;2026-06-27&quot;:1.33},{&quot;2026-06-28&quot;:1.31},{&quot;2026-06-29&quot;:1.61},{&quot;2026-06-30&quot;:1.64},{&quot;2026-07-01&quot;:1.7},{&quot;2026-07-02&quot;:1.44},{&quot;2026-07-03&quot;:1.42},{&quot;2026-07-04&quot;:1.45},{&quot;2026-07-05&quot;:1.43},{&quot;2026-07-06&quot;:1.43},{&quot;2026-07-07&quot;:1.44},{&quot;2026-07-08&quot;:1.43},{&quot;2026-07-09&quot;:1.42},{&quot;2026-07-10&quot;:1.34},{&quot;2026-07-11&quot;:1.26},{&quot;2026-07-12&quot;:1.26},{&quot;2026-07-13&quot;:1.28},{&quot;2026-07-14&quot;:1.36},{&quot;2026-07-15&quot;:1.41},{&quot;2026-07-16&quot;:1.38},{&quot;2026-07-17&quot;:1.43},{&quot;2026-07-18&quot;:1.41},{&quot;2026-07-19&quot;:1.41},{&quot;2026-07-20&quot;:1.33},{&quot;2026-07-21&quot;:1.31},{&quot;2026-07-22&quot;:1.28},{&quot;2026-07-23&quot;:1.29},{&quot;2026-07-24&quot;:1.29},{&quot;2026-07-25&quot;:1.33},{&quot;2026-07-26&quot;:1.39},{&quot;2026-07-27&quot;:1.42},{&quot;2026-07-28&quot;:1.42},{&quot;2026-07-29&quot;:1.58},{&quot;2026-07-30&quot;:1.42},{&quot;2026-07-31&quot;:1.4},{&quot;2026-08-01&quot;:1.4},{&quot;2026-08-02&quot;:1.39},{&quot;2026-08-03&quot;:1.39},{&quot;2026-08-04&quot;:1.39},{&quot;2026-08-05&quot;:1.42},{&quot;2026-08-07&quot;:1.74},{&quot;2026-08-08&quot;:1.74},{&quot;2026-08-09&quot;:1.76},{&quot;2026-08-10&quot;:1.75},{&quot;2026-08-11&quot;:1.43},{&quot;2026-08-12&quot;:1.72},{&quot;2026-08-13&quot;:1.67},{&quot;2026-08-14&quot;:1.7},{&quot;2026-08-15&quot;:1.69},{&quot;2026-08-16&quot;:1.47},{&quot;2026-08-17&quot;:1.48},{&quot;2026-08-18&quot;:1.47},{&quot;2026-08-19&quot;:1.43},{&quot;2026-08-20&quot;:1.4},{&quot;2026-08-21&quot;:1.41},{&quot;2026-08-22&quot;:1.48},{&quot;2026-08-23&quot;:1.49},{&quot;2026-08-24&quot;:1.67},{&quot;2026-08-25&quot;:1.67},{&quot;2026-08-26&quot;:1.72},{&quot;2026-08-27&quot;:1.71},{&quot;2026-08-28&quot;:1.74},{&quot;2026-08-29&quot;:1.74},{&quot;2026-08-30&quot;:1.47},{&quot;2026-08-31&quot;:1.46},{&quot;2026-09-01&quot;:1.48},{&quot;2026-09-02&quot;:1.44},{&quot;2026-09-03&quot;:1.43},{&quot;2026-09-04&quot;:1.39},{&quot;2026-09-05&quot;:1.4},{&quot;2026-09-06&quot;:1.43},{&quot;2026-09-07&quot;:1.48},{&quot;2026-09-08&quot;:1.48},{&quot;2026-09-09&quot;:1.48},{&quot;2026-09-10&quot;:1.48},{&quot;2026-09-11&quot;:1.58}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

        <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/8/7/870ec754-a76c-40ea-9b81-81b3dca1f62c.jpg?1782683284" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.18},{&quot;2026-06-14&quot;:1.0},{&quot;2026-06-15&quot;:1.14},{&quot;2026-06-16&quot;:1.17},{&quot;2026-06-17&quot;:1.25},{&quot;2026-06-18&quot;:1.38},{&quot;2026-06-19&quot;:1.36},{&quot;2026-06-20&quot;:1.38},{&quot;2026-06-21&quot;:1.25},{&quot;2026-06-22&quot;:1.17},{&quot;2026-06-23&quot;:1.23},{&quot;2026-06-24&quot;:1.28},{&quot;2026-06-25&quot;:1.32},{&quot;2026-06-26&quot;:1.35},{&quot;2026-06-27&quot;:1.2},{&quot;2026-06-28&quot;:1.42},{&quot;2026-06-29&quot;:1.49},{&quot;2026-06-30&quot;:1.28},{&quot;2026-07-01&quot;:1.51},{&quot;2026-07-02&quot;:1.42},{&quot;2026-07-03&quot;:1.44},{&quot;2026-07-04&quot;:1.53},{&quot;2026-07-05&quot;:1.48},{&quot;2026-07-06&quot;:1.49},{&quot;2026-07-07&quot;:1.49},{&quot;2026-07-08&quot;:1.39},{&quot;2026-07-09&quot;:1.29},{&quot;2026-07-10&quot;:1.43},{&quot;2026-07-11&quot;:1.45},{&quot;2026-07-12&quot;:1.46},{&quot;2026-07-13&quot;:1.42},{&quot;2026-07-14&quot;:1.41},{&quot;2026-07-15&quot;:1.42},{&quot;2026-07-16&quot;:1.07},{&quot;2026-07-17&quot;:1.16},{&quot;2026-07-18&quot;:1.2},{&quot;2026-07-19&quot;:1.22},{&quot;2026-07-20&quot;:1.33},{&quot;2026-07-21&quot;:1.4},{&quot;2026-07-22&quot;:1.71},{&quot;2026-07-23&quot;:1.71},{&quot;2026-07-24&quot;:1.62},{&quot;2026-07-25&quot;:1.71},{&quot;2026-07-26&quot;:1.72},{&quot;2026-07-27&quot;:1.64},{&quot;2026-07-28&quot;:1.59},{&quot;2026-07-29&quot;:1.78},{&quot;2026-07-30&quot;:1.76},{&quot;2026-07-31&quot;:1.72},{&quot;2026-08-01&quot;:1.71},{&quot;2026-08-02&quot;:1.86},{&quot;2026-08-03&quot;:1.73},{&quot;2026-08-04&quot;:1.62},{&quot;2026-08-05&quot;:1.6},{&quot;2026-08-07&quot;:1.5},{&quot;2026-08-08&quot;:1.51},{&quot;2026-08-09&quot;:1.74},{&quot;2026-08-10&quot;:1.54},{&quot;2026-08-11&quot;:1.56},{&quot;2026-08-12&quot;:1.55},{&quot;2026-08-13&quot;:1.66},{&quot;2026-08-14&quot;:1.72},{&quot;2026-08-15&quot;:1.86},{&quot;2026-08-16&quot;:1.87},{&quot;2026-08-17&quot;:2.21},{&quot;2026-08-18&quot;:1.84},{&quot;2026-08-19&quot;:1.73},{&quot;2026-08-20&quot;:1.7},{&quot;2026-08-21&quot;:1.73},{&quot;2026-08-22&quot;:1.44},{&quot;2026-08-23&quot;:1.39},{&quot;2026-08-24&quot;:1.37},{&quot;2026-08-25&quot;:1.58},{&quot;2026-08-26&quot;:1.58},{&quot;2026-08-27&quot;:1.52},{&quot;2026-08-28&quot;:1.52},{&quot;2026-08-29&quot;:1.52},{&quot;2026-08-30&quot;:1.71},{&quot;2026-08-31&quot;:1.58},{&quot;2026-09-01&quot;:1.58},{&quot;2026-09-02&quot;:1.7},{&quot;2026-09-03&quot;:1.82},{&quot;2026-09-04&quot;:1.97},{&quot;2026-09-05&quot;:1.98},{&quot;2026-09-06&quot;:1.88},{&quot;2026-09-07&quot;:1.72},{&quot;2026-09-08&quot;:2.8},{&quot;2026-09-09&quot;:1.43},{&quot;2026-09-10&quot;:1.35},{&quot;2026-09-11&quot;:1.39}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="109081"
  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-soc 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">
            Tyvar&#39;s Stand
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Tyvar&#39;s Stand" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/6/b6ab0855-782a-498c-a885-b3ab3d1bb362.jpg?1782683163" />

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

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-x'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Tyvar&#39;s Stand" src="https://cards.scryfall.io/large/front/b/6/b6ab0855-782a-498c-a885-b3ab3d1bb362.jpg?1782683163" />
    </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.22
              </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">
                $0.00
              </span>

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$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;normal&quot;:[{&quot;2026-06-13&quot;:0.44},{&quot;2026-06-14&quot;:0.44},{&quot;2026-06-15&quot;:0.43},{&quot;2026-06-16&quot;:0.43},{&quot;2026-06-17&quot;:0.45},{&quot;2026-06-18&quot;:0.46},{&quot;2026-06-19&quot;:0.45},{&quot;2026-06-20&quot;:0.44},{&quot;2026-06-21&quot;:0.46},{&quot;2026-06-22&quot;:0.46},{&quot;2026-06-23&quot;:0.49},{&quot;2026-06-24&quot;:0.79},{&quot;2026-06-25&quot;:0.85},{&quot;2026-06-26&quot;:0.55},{&quot;2026-06-27&quot;:0.52},{&quot;2026-06-28&quot;:0.5},{&quot;2026-06-29&quot;:0.52},{&quot;2026-06-30&quot;:0.53},{&quot;2026-07-01&quot;:0.49},{&quot;2026-07-02&quot;:0.48},{&quot;2026-07-03&quot;:0.47},{&quot;2026-07-04&quot;:0.49},{&quot;2026-07-05&quot;:0.5},{&quot;2026-07-06&quot;:0.57},{&quot;2026-07-07&quot;:0.59},{&quot;2026-07-08&quot;:0.64},{&quot;2026-07-09&quot;:0.67},{&quot;2026-07-10&quot;:0.6},{&quot;2026-07-11&quot;:0.55},{&quot;2026-07-12&quot;:0.61},{&quot;2026-07-13&quot;:0.68},{&quot;2026-07-14&quot;:0.65},{&quot;2026-07-15&quot;:0.64},{&quot;2026-07-16&quot;:0.58},{&quot;2026-07-17&quot;:0.58},{&quot;2026-07-18&quot;:0.6},{&quot;2026-07-19&quot;:0.61},{&quot;2026-07-20&quot;:0.63},{&quot;2026-07-21&quot;:0.62},{&quot;2026-07-22&quot;:0.63},{&quot;2026-07-23&quot;:0.62},{&quot;2026-07-24&quot;:0.65},{&quot;2026-07-25&quot;:0.65},{&quot;2026-07-26&quot;:0.64},{&quot;2026-07-27&quot;:0.65},{&quot;2026-07-28&quot;:0.65},{&quot;2026-07-29&quot;:0.64},{&quot;2026-07-30&quot;:0.66},{&quot;2026-07-31&quot;:0.67},{&quot;2026-08-01&quot;:0.67},{&quot;2026-08-02&quot;:0.83},{&quot;2026-08-03&quot;:0.84},{&quot;2026-08-04&quot;:0.84},{&quot;2026-08-05&quot;:0.85},{&quot;2026-08-07&quot;:0.86},{&quot;2026-08-08&quot;:0.85},{&quot;2026-08-09&quot;:0.89},{&quot;2026-08-10&quot;:0.93},{&quot;2026-08-11&quot;:0.99},{&quot;2026-08-12&quot;:1.02},{&quot;2026-08-13&quot;:1.02},{&quot;2026-08-14&quot;:1.04},{&quot;2026-08-15&quot;:1.04},{&quot;2026-08-16&quot;:1.02},{&quot;2026-08-17&quot;:1.03},{&quot;2026-08-18&quot;:1.05},{&quot;2026-08-19&quot;:1.05},{&quot;2026-08-20&quot;:1.1},{&quot;2026-08-21&quot;:1.11},{&quot;2026-08-22&quot;:1.13},{&quot;2026-08-23&quot;:1.14},{&quot;2026-08-24&quot;:1.16},{&quot;2026-08-25&quot;:1.11},{&quot;2026-08-26&quot;:1.11},{&quot;2026-08-27&quot;:1.16},{&quot;2026-08-28&quot;:1.32},{&quot;2026-08-29&quot;:1.32},{&quot;2026-08-30&quot;:1.38},{&quot;2026-08-31&quot;:1.14},{&quot;2026-09-01&quot;:1.04},{&quot;2026-09-02&quot;:1.01},{&quot;2026-09-03&quot;:1.16},{&quot;2026-09-04&quot;:1.18},{&quot;2026-09-05&quot;:1.2},{&quot;2026-09-06&quot;:1.2},{&quot;2026-09-07&quot;:1.2},{&quot;2026-09-08&quot;:1.22},{&quot;2026-09-09&quot;:1.24},{&quot;2026-09-10&quot;:1.21},{&quot;2026-09-11&quot;:1.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="109062"
  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-soc 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">
            Guardian Augmenter
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $1.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="Guardian Augmenter" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/8/78ba1a2a-a2dd-4e90-900e-1421b5e3924a.jpg?1782683179" />

        <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">
            Guardian Augmenter
        </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 — Troll Wizard</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Guardian Augmenter" src="https://cards.scryfall.io/large/front/7/8/78ba1a2a-a2dd-4e90-900e-1421b5e3924a.jpg?1782683179" />
    </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.08
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-11&quot;:1.06},{&quot;2026-06-12&quot;:0.92},{&quot;2026-06-13&quot;:0.86},{&quot;2026-06-14&quot;:0.78},{&quot;2026-06-15&quot;:0.9},{&quot;2026-06-16&quot;:0.93},{&quot;2026-06-17&quot;:0.88},{&quot;2026-06-18&quot;:0.8},{&quot;2026-06-19&quot;:0.82},{&quot;2026-06-20&quot;:0.86},{&quot;2026-06-21&quot;:0.85},{&quot;2026-06-22&quot;:0.88},{&quot;2026-06-23&quot;:0.89},{&quot;2026-06-24&quot;:0.88},{&quot;2026-06-25&quot;:0.87},{&quot;2026-06-26&quot;:0.91},{&quot;2026-06-27&quot;:0.94},{&quot;2026-06-28&quot;:0.93},{&quot;2026-06-29&quot;:0.91},{&quot;2026-06-30&quot;:0.9},{&quot;2026-07-01&quot;:0.9},{&quot;2026-07-02&quot;:0.91},{&quot;2026-07-03&quot;:0.94},{&quot;2026-07-04&quot;:0.94},{&quot;2026-07-05&quot;:0.94},{&quot;2026-07-06&quot;:0.98},{&quot;2026-07-07&quot;:1.03},{&quot;2026-07-08&quot;:0.96},{&quot;2026-07-09&quot;:0.92},{&quot;2026-07-10&quot;:0.89},{&quot;2026-07-11&quot;:0.82},{&quot;2026-07-12&quot;:0.84},{&quot;2026-07-13&quot;:0.83},{&quot;2026-07-14&quot;:0.85},{&quot;2026-07-15&quot;:1.04},{&quot;2026-07-16&quot;:1.01},{&quot;2026-07-17&quot;:1.01},{&quot;2026-07-18&quot;:0.84},{&quot;2026-07-19&quot;:0.9},{&quot;2026-07-20&quot;:0.92},{&quot;2026-07-21&quot;:0.98},{&quot;2026-07-23&quot;:0.93},{&quot;2026-07-25&quot;:0.9},{&quot;2026-07-26&quot;:0.9},{&quot;2026-07-27&quot;:1.01},{&quot;2026-07-28&quot;:1.01},{&quot;2026-07-29&quot;:1.07},{&quot;2026-07-30&quot;:1.1},{&quot;2026-07-31&quot;:0.98},{&quot;2026-08-01&quot;:0.99},{&quot;2026-08-02&quot;:0.98},{&quot;2026-08-03&quot;:1.02},{&quot;2026-08-04&quot;:1.02},{&quot;2026-08-05&quot;:1.02},{&quot;2026-08-07&quot;:1.02},{&quot;2026-08-08&quot;:1.01},{&quot;2026-08-09&quot;:1.0},{&quot;2026-08-10&quot;:1.0},{&quot;2026-08-11&quot;:0.97},{&quot;2026-08-12&quot;:0.96},{&quot;2026-08-13&quot;:0.96},{&quot;2026-08-14&quot;:0.96},{&quot;2026-08-15&quot;:0.99},{&quot;2026-08-16&quot;:1.1},{&quot;2026-08-17&quot;:1.38},{&quot;2026-08-18&quot;:1.35},{&quot;2026-08-19&quot;:1.36},{&quot;2026-08-20&quot;:1.36},{&quot;2026-08-21&quot;:1.02},{&quot;2026-08-22&quot;:1.04},{&quot;2026-08-23&quot;:1.04},{&quot;2026-08-24&quot;:1.03},{&quot;2026-08-25&quot;:1.03},{&quot;2026-08-26&quot;:1.07},{&quot;2026-08-27&quot;:1.07},{&quot;2026-08-28&quot;:1.08},{&quot;2026-08-29&quot;:1.08},{&quot;2026-08-30&quot;:0.98},{&quot;2026-08-31&quot;:1.02},{&quot;2026-09-01&quot;:1.02},{&quot;2026-09-02&quot;:0.99},{&quot;2026-09-03&quot;:0.95},{&quot;2026-09-04&quot;:1.25},{&quot;2026-09-05&quot;:1.28},{&quot;2026-09-06&quot;:1.33},{&quot;2026-09-07&quot;:1.05},{&quot;2026-09-08&quot;:1.09},{&quot;2026-09-09&quot;:1.08},{&quot;2026-09-10&quot;:1.06},{&quot;2026-09-11&quot;:1.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="108923"
  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-soc ss-rare ss-fw ss-2x flex-shrink-0"></i>

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $1.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="Fabled Passage" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/1/8119d329-6ee5-433c-bd81-8579bb061162.jpg?1782683281" />

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Fabled Passage" src="https://cards.scryfall.io/large/front/8/1/8119d329-6ee5-433c-bd81-8579bb061162.jpg?1782683281" />
    </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.05
              </span>

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:1.09},{&quot;2026-06-14&quot;:1.17},{&quot;2026-06-15&quot;:1.13},{&quot;2026-06-16&quot;:1.03},{&quot;2026-06-17&quot;:0.93},{&quot;2026-06-18&quot;:0.94},{&quot;2026-06-19&quot;:0.89},{&quot;2026-06-20&quot;:0.94},{&quot;2026-06-21&quot;:1.06},{&quot;2026-06-22&quot;:1.06},{&quot;2026-06-23&quot;:1.07},{&quot;2026-06-24&quot;:1.13},{&quot;2026-06-25&quot;:1.13},{&quot;2026-06-26&quot;:1.02},{&quot;2026-06-27&quot;:1.09},{&quot;2026-06-28&quot;:1.02},{&quot;2026-06-29&quot;:0.94},{&quot;2026-06-30&quot;:0.98},{&quot;2026-07-01&quot;:1.0},{&quot;2026-07-02&quot;:1.01},{&quot;2026-07-03&quot;:1.04},{&quot;2026-07-04&quot;:1.08},{&quot;2026-07-05&quot;:1.04},{&quot;2026-07-06&quot;:1.01},{&quot;2026-07-07&quot;:1.02},{&quot;2026-07-08&quot;:1.04},{&quot;2026-07-09&quot;:0.98},{&quot;2026-07-10&quot;:1.26},{&quot;2026-07-11&quot;:1.01},{&quot;2026-07-12&quot;:1.01},{&quot;2026-07-13&quot;:1.06},{&quot;2026-07-14&quot;:1.02},{&quot;2026-07-15&quot;:1.01},{&quot;2026-07-16&quot;:0.97},{&quot;2026-07-17&quot;:0.93},{&quot;2026-07-18&quot;:0.95},{&quot;2026-07-19&quot;:0.96},{&quot;2026-07-20&quot;:1.03},{&quot;2026-07-21&quot;:1.14},{&quot;2026-07-22&quot;:1.08},{&quot;2026-07-23&quot;:1.04},{&quot;2026-07-24&quot;:1.05},{&quot;2026-07-25&quot;:1.15},{&quot;2026-07-26&quot;:1.09},{&quot;2026-07-27&quot;:1.13},{&quot;2026-07-28&quot;:1.1},{&quot;2026-07-29&quot;:1.09},{&quot;2026-07-30&quot;:1.05},{&quot;2026-07-31&quot;:1.04},{&quot;2026-08-01&quot;:1.09},{&quot;2026-08-02&quot;:1.08},{&quot;2026-08-03&quot;:1.16},{&quot;2026-08-04&quot;:1.18},{&quot;2026-08-05&quot;:0.99},{&quot;2026-08-07&quot;:0.9},{&quot;2026-08-08&quot;:0.96},{&quot;2026-08-09&quot;:1.06},{&quot;2026-08-10&quot;:1.02},{&quot;2026-08-11&quot;:1.03},{&quot;2026-08-12&quot;:0.96},{&quot;2026-08-13&quot;:0.91},{&quot;2026-08-14&quot;:0.99},{&quot;2026-08-15&quot;:0.98},{&quot;2026-08-16&quot;:0.95},{&quot;2026-08-17&quot;:0.91},{&quot;2026-08-18&quot;:0.99},{&quot;2026-08-19&quot;:1.06},{&quot;2026-08-20&quot;:1.15},{&quot;2026-08-21&quot;:1.02},{&quot;2026-08-22&quot;:1.1},{&quot;2026-08-23&quot;:1.01},{&quot;2026-08-24&quot;:1.0},{&quot;2026-08-25&quot;:1.0},{&quot;2026-08-26&quot;:1.11},{&quot;2026-08-27&quot;:1.17},{&quot;2026-08-28&quot;:1.08},{&quot;2026-08-29&quot;:1.08},{&quot;2026-08-30&quot;:1.06},{&quot;2026-08-31&quot;:1.02},{&quot;2026-09-01&quot;:0.99},{&quot;2026-09-02&quot;:0.99},{&quot;2026-09-03&quot;:0.99},{&quot;2026-09-04&quot;:1.05},{&quot;2026-09-05&quot;:1.3},{&quot;2026-09-06&quot;:1.06},{&quot;2026-09-07&quot;:1.05},{&quot;2026-09-08&quot;:1.03},{&quot;2026-09-09&quot;:1.09},{&quot;2026-09-10&quot;:1.1},{&quot;2026-09-11&quot;:1.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="108990"
  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-soc 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">
            Rapid Hybridization
        </span>


      </div>

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

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

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-100 text-badge-text">
              ↓
              5%
            </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="Rapid Hybridization" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/c/ccda5bda-5afd-4548-bd48-12c780bfa68b.jpg?1782683237" />

        <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">
            Rapid Hybridization
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Rapid Hybridization" src="https://cards.scryfall.io/large/front/c/c/ccda5bda-5afd-4548-bd48-12c780bfa68b.jpg?1782683237" />
    </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">
                  ↓
                  5%
                </span>
            </div>
          </div>

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:0.56},{&quot;2026-06-11&quot;:0.56},{&quot;2026-06-12&quot;:0.56},{&quot;2026-06-13&quot;:0.54},{&quot;2026-06-14&quot;:0.5},{&quot;2026-06-15&quot;:0.5},{&quot;2026-06-16&quot;:0.51},{&quot;2026-06-17&quot;:0.51},{&quot;2026-06-18&quot;:0.51},{&quot;2026-06-19&quot;:0.71},{&quot;2026-06-20&quot;:0.71},{&quot;2026-06-21&quot;:0.71},{&quot;2026-06-22&quot;:0.52},{&quot;2026-06-23&quot;:0.54},{&quot;2026-06-24&quot;:0.55},{&quot;2026-06-25&quot;:0.56},{&quot;2026-06-26&quot;:0.6},{&quot;2026-06-27&quot;:0.57},{&quot;2026-06-28&quot;:0.93},{&quot;2026-06-29&quot;:0.92},{&quot;2026-06-30&quot;:0.94},{&quot;2026-07-01&quot;:0.97},{&quot;2026-07-02&quot;:0.62},{&quot;2026-07-03&quot;:0.64},{&quot;2026-07-04&quot;:0.64},{&quot;2026-07-05&quot;:0.64},{&quot;2026-07-06&quot;:0.65},{&quot;2026-07-07&quot;:0.66},{&quot;2026-07-08&quot;:0.65},{&quot;2026-07-09&quot;:0.66},{&quot;2026-07-10&quot;:0.96},{&quot;2026-07-11&quot;:0.97},{&quot;2026-07-12&quot;:1.01},{&quot;2026-07-13&quot;:0.7},{&quot;2026-07-14&quot;:0.72},{&quot;2026-07-15&quot;:0.73},{&quot;2026-07-16&quot;:0.69},{&quot;2026-07-17&quot;:0.66},{&quot;2026-07-18&quot;:0.66},{&quot;2026-07-19&quot;:0.67},{&quot;2026-07-20&quot;:0.68},{&quot;2026-07-21&quot;:0.68},{&quot;2026-07-23&quot;:0.69},{&quot;2026-07-25&quot;:1.04},{&quot;2026-07-26&quot;:1.09},{&quot;2026-07-27&quot;:1.11},{&quot;2026-07-29&quot;:1.01},{&quot;2026-07-30&quot;:1.08},{&quot;2026-07-31&quot;:1.08},{&quot;2026-08-01&quot;:1.15},{&quot;2026-08-02&quot;:1.54},{&quot;2026-08-03&quot;:1.51},{&quot;2026-08-04&quot;:1.51},{&quot;2026-08-05&quot;:1.5},{&quot;2026-08-07&quot;:1.27},{&quot;2026-08-08&quot;:1.36},{&quot;2026-08-09&quot;:1.32},{&quot;2026-08-10&quot;:1.26},{&quot;2026-08-11&quot;:1.21},{&quot;2026-08-12&quot;:1.21},{&quot;2026-08-13&quot;:1.19},{&quot;2026-08-14&quot;:1.19},{&quot;2026-08-15&quot;:1.19},{&quot;2026-08-16&quot;:1.19},{&quot;2026-08-17&quot;:1.21},{&quot;2026-08-18&quot;:1.25},{&quot;2026-08-19&quot;:1.25},{&quot;2026-08-20&quot;:1.25},{&quot;2026-08-21&quot;:1.31},{&quot;2026-08-22&quot;:1.31},{&quot;2026-08-23&quot;:1.25},{&quot;2026-08-24&quot;:1.22},{&quot;2026-08-25&quot;:1.22},{&quot;2026-08-26&quot;:1.07},{&quot;2026-08-27&quot;:1.06},{&quot;2026-08-28&quot;:1.05},{&quot;2026-08-29&quot;:1.05},{&quot;2026-08-30&quot;:1.04},{&quot;2026-08-31&quot;:1.03},{&quot;2026-09-01&quot;:1.03},{&quot;2026-09-02&quot;:1.03},{&quot;2026-09-03&quot;:1.0},{&quot;2026-09-04&quot;:1.06},{&quot;2026-09-05&quot;:1.07},{&quot;2026-09-06&quot;:1.05},{&quot;2026-09-07&quot;:1.05},{&quot;2026-09-08&quot;:1.05},{&quot;2026-09-09&quot;:1.05},{&quot;2026-09-10&quot;:1.02},{&quot;2026-09-11&quot;:1.02}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="108917"
  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-soc 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">
            Benevolent Hydra
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Benevolent Hydra
        </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 — Hydra</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-x'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Benevolent Hydra" src="https://cards.scryfall.io/large/front/0/6/064595cb-089e-4cf2-afe3-223235ce3f92.jpg?1782683286" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$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;:1.42},{&quot;2026-06-14&quot;:1.34},{&quot;2026-06-15&quot;:1.25},{&quot;2026-06-16&quot;:1.22},{&quot;2026-06-17&quot;:1.15},{&quot;2026-06-18&quot;:1.01},{&quot;2026-06-19&quot;:1.0},{&quot;2026-06-20&quot;:0.99},{&quot;2026-06-21&quot;:0.97},{&quot;2026-06-22&quot;:1.02},{&quot;2026-06-23&quot;:1.07},{&quot;2026-06-24&quot;:1.11},{&quot;2026-06-25&quot;:1.13},{&quot;2026-06-26&quot;:1.05},{&quot;2026-06-27&quot;:0.95},{&quot;2026-06-28&quot;:0.96},{&quot;2026-06-29&quot;:0.95},{&quot;2026-06-30&quot;:0.94},{&quot;2026-07-01&quot;:0.91},{&quot;2026-07-02&quot;:0.94},{&quot;2026-07-03&quot;:0.92},{&quot;2026-07-04&quot;:0.94},{&quot;2026-07-05&quot;:0.95},{&quot;2026-07-06&quot;:0.95},{&quot;2026-07-07&quot;:0.94},{&quot;2026-07-08&quot;:0.94},{&quot;2026-07-09&quot;:0.98},{&quot;2026-07-10&quot;:0.96},{&quot;2026-07-11&quot;:0.95},{&quot;2026-07-12&quot;:0.9},{&quot;2026-07-13&quot;:0.89},{&quot;2026-07-14&quot;:0.92},{&quot;2026-07-15&quot;:0.93},{&quot;2026-07-16&quot;:0.93},{&quot;2026-07-17&quot;:0.99},{&quot;2026-07-18&quot;:0.97},{&quot;2026-07-19&quot;:1.02},{&quot;2026-07-20&quot;:0.99},{&quot;2026-07-21&quot;:0.91},{&quot;2026-07-22&quot;:0.89},{&quot;2026-07-23&quot;:0.87},{&quot;2026-07-24&quot;:0.93},{&quot;2026-07-25&quot;:1.01},{&quot;2026-07-26&quot;:0.98},{&quot;2026-07-27&quot;:0.92},{&quot;2026-07-28&quot;:0.94},{&quot;2026-07-29&quot;:0.94},{&quot;2026-07-30&quot;:0.96},{&quot;2026-07-31&quot;:0.93},{&quot;2026-08-01&quot;:0.92},{&quot;2026-08-02&quot;:0.89},{&quot;2026-08-03&quot;:0.9},{&quot;2026-08-04&quot;:0.94},{&quot;2026-08-05&quot;:0.97},{&quot;2026-08-07&quot;:0.98},{&quot;2026-08-08&quot;:0.94},{&quot;2026-08-09&quot;:0.94},{&quot;2026-08-10&quot;:0.98},{&quot;2026-08-11&quot;:0.99},{&quot;2026-08-12&quot;:0.99},{&quot;2026-08-13&quot;:0.99},{&quot;2026-08-14&quot;:1.01},{&quot;2026-08-15&quot;:0.91},{&quot;2026-08-16&quot;:0.89},{&quot;2026-08-17&quot;:0.9},{&quot;2026-08-18&quot;:0.9},{&quot;2026-08-19&quot;:0.89},{&quot;2026-08-20&quot;:0.91},{&quot;2026-08-21&quot;:0.92},{&quot;2026-08-22&quot;:0.93},{&quot;2026-08-23&quot;:0.94},{&quot;2026-08-24&quot;:0.89},{&quot;2026-08-25&quot;:0.9},{&quot;2026-08-26&quot;:0.85},{&quot;2026-08-27&quot;:0.85},{&quot;2026-08-28&quot;:0.8},{&quot;2026-08-29&quot;:0.8},{&quot;2026-08-30&quot;:0.85},{&quot;2026-08-31&quot;:0.85},{&quot;2026-09-01&quot;:0.86},{&quot;2026-09-02&quot;:0.87},{&quot;2026-09-03&quot;:0.87},{&quot;2026-09-04&quot;:0.89},{&quot;2026-09-05&quot;:0.89},{&quot;2026-09-06&quot;:0.87},{&quot;2026-09-07&quot;:0.84},{&quot;2026-09-08&quot;:0.83},{&quot;2026-09-09&quot;:0.83},{&quot;2026-09-10&quot;:0.82},{&quot;2026-09-11&quot;:0.82}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="109070"
  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-soc 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">
            Open the Way
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.73
          </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="Open the Way" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/5/d/5d928e0d-a586-4de1-a469-0591122659fa.jpg?1782683172" />

        <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">
            Open the Way
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-x'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Open the Way" src="https://cards.scryfall.io/large/front/5/d/5d928e0d-a586-4de1-a469-0591122659fa.jpg?1782683172" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.79},{&quot;2026-06-14&quot;:0.72},{&quot;2026-06-15&quot;:0.75},{&quot;2026-06-16&quot;:0.77},{&quot;2026-06-17&quot;:0.72},{&quot;2026-06-18&quot;:0.66},{&quot;2026-06-19&quot;:0.7},{&quot;2026-06-20&quot;:0.72},{&quot;2026-06-21&quot;:0.74},{&quot;2026-06-22&quot;:0.72},{&quot;2026-06-23&quot;:0.71},{&quot;2026-06-24&quot;:0.69},{&quot;2026-06-25&quot;:0.68},{&quot;2026-06-26&quot;:0.67},{&quot;2026-06-27&quot;:0.66},{&quot;2026-06-28&quot;:0.66},{&quot;2026-06-29&quot;:0.65},{&quot;2026-06-30&quot;:0.67},{&quot;2026-07-01&quot;:0.71},{&quot;2026-07-02&quot;:0.72},{&quot;2026-07-03&quot;:0.7},{&quot;2026-07-04&quot;:0.68},{&quot;2026-07-05&quot;:0.65},{&quot;2026-07-06&quot;:0.67},{&quot;2026-07-07&quot;:0.65},{&quot;2026-07-08&quot;:0.63},{&quot;2026-07-09&quot;:0.62},{&quot;2026-07-10&quot;:0.59},{&quot;2026-07-11&quot;:0.6},{&quot;2026-07-12&quot;:0.63},{&quot;2026-07-13&quot;:0.63},{&quot;2026-07-14&quot;:0.64},{&quot;2026-07-15&quot;:0.66},{&quot;2026-07-16&quot;:0.65},{&quot;2026-07-17&quot;:0.6},{&quot;2026-07-18&quot;:0.54},{&quot;2026-07-19&quot;:0.52},{&quot;2026-07-20&quot;:0.55},{&quot;2026-07-21&quot;:0.55},{&quot;2026-07-22&quot;:0.53},{&quot;2026-07-23&quot;:0.56},{&quot;2026-07-24&quot;:0.58},{&quot;2026-07-25&quot;:0.63},{&quot;2026-07-26&quot;:0.62},{&quot;2026-07-27&quot;:0.95},{&quot;2026-07-28&quot;:0.93},{&quot;2026-07-29&quot;:0.92},{&quot;2026-07-30&quot;:0.89},{&quot;2026-07-31&quot;:0.6},{&quot;2026-08-01&quot;:0.6},{&quot;2026-08-02&quot;:0.62},{&quot;2026-08-03&quot;:0.63},{&quot;2026-08-04&quot;:0.62},{&quot;2026-08-05&quot;:0.61},{&quot;2026-08-07&quot;:0.62},{&quot;2026-08-08&quot;:0.6},{&quot;2026-08-09&quot;:0.6},{&quot;2026-08-10&quot;:0.6},{&quot;2026-08-11&quot;:0.6},{&quot;2026-08-12&quot;:0.6},{&quot;2026-08-13&quot;:0.92},{&quot;2026-08-14&quot;:0.94},{&quot;2026-08-15&quot;:0.96},{&quot;2026-08-16&quot;:1.02},{&quot;2026-08-17&quot;:0.8},{&quot;2026-08-18&quot;:0.84},{&quot;2026-08-19&quot;:0.96},{&quot;2026-08-20&quot;:0.93},{&quot;2026-08-21&quot;:0.87},{&quot;2026-08-22&quot;:0.9},{&quot;2026-08-23&quot;:0.78},{&quot;2026-08-24&quot;:0.78},{&quot;2026-08-25&quot;:0.76},{&quot;2026-08-26&quot;:0.75},{&quot;2026-08-27&quot;:0.72},{&quot;2026-08-28&quot;:0.68},{&quot;2026-08-29&quot;:0.68},{&quot;2026-08-30&quot;:0.72},{&quot;2026-08-31&quot;:0.73},{&quot;2026-09-01&quot;:0.68},{&quot;2026-09-02&quot;:0.66},{&quot;2026-09-03&quot;:0.67},{&quot;2026-09-04&quot;:0.65},{&quot;2026-09-05&quot;:0.69},{&quot;2026-09-06&quot;:0.67},{&quot;2026-09-07&quot;:0.68},{&quot;2026-09-08&quot;:0.7},{&quot;2026-09-09&quot;:0.67},{&quot;2026-09-10&quot;:0.72},{&quot;2026-09-11&quot;:0.73}]}"
        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="109054"
  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-soc 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">
            Beast Within
        </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">
              ↑
              8%
            </span>

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

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

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

        <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 Within
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Beast Within" src="https://cards.scryfall.io/large/front/2/a/2a000bb0-1dc4-4fda-b26d-d89cc8daf930.jpg?1782683185" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Exotic Orchard" src="https://cards.scryfall.io/large/front/7/d/7db2934a-43a0-46ad-8380-ff6703f8fd6d.jpg?1782683101" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="108838"
  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-soc 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">
            Primo, the Unbounded
        </span>


      </div>

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Primo, the Unbounded" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/a/2/a2d14b99-15e2-4e96-89a2-7e0ee5dc059f.jpg?1782683382" />

        <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">
            Primo, the Unbounded
        </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 — Fractal Wolf</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><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Primo, the Unbounded" src="https://cards.scryfall.io/large/front/a/2/a2d14b99-15e2-4e96-89a2-7e0ee5dc059f.jpg?1782683382" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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


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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-12&quot;:1.16},{&quot;2026-06-13&quot;:1.11},{&quot;2026-06-14&quot;:1.14},{&quot;2026-06-15&quot;:1.25},{&quot;2026-06-16&quot;:1.28},{&quot;2026-06-17&quot;:1.27},{&quot;2026-06-18&quot;:1.24},{&quot;2026-06-19&quot;:1.19},{&quot;2026-06-20&quot;:1.13},{&quot;2026-06-21&quot;:1.16},{&quot;2026-06-22&quot;:1.22},{&quot;2026-06-23&quot;:1.14},{&quot;2026-06-24&quot;:1.09},{&quot;2026-06-25&quot;:1.11},{&quot;2026-06-26&quot;:1.14},{&quot;2026-06-27&quot;:1.14},{&quot;2026-06-28&quot;:1.15},{&quot;2026-06-29&quot;:1.02},{&quot;2026-06-30&quot;:1.31},{&quot;2026-07-01&quot;:1.26},{&quot;2026-07-02&quot;:1.32},{&quot;2026-07-03&quot;:1.03},{&quot;2026-07-04&quot;:1.04},{&quot;2026-07-05&quot;:1.06},{&quot;2026-07-06&quot;:1.09},{&quot;2026-07-07&quot;:1.09},{&quot;2026-07-08&quot;:1.04},{&quot;2026-07-09&quot;:1.01},{&quot;2026-07-10&quot;:1.02},{&quot;2026-07-11&quot;:1.02},{&quot;2026-07-12&quot;:1.03},{&quot;2026-07-13&quot;:1.02},{&quot;2026-07-14&quot;:1.02},{&quot;2026-07-15&quot;:1.11},{&quot;2026-07-16&quot;:1.05},{&quot;2026-07-17&quot;:1.03},{&quot;2026-07-18&quot;:0.97},{&quot;2026-07-19&quot;:0.97},{&quot;2026-07-20&quot;:0.96},{&quot;2026-07-21&quot;:0.97},{&quot;2026-07-23&quot;:0.95},{&quot;2026-07-24&quot;:0.92},{&quot;2026-07-25&quot;:0.83},{&quot;2026-07-26&quot;:0.79},{&quot;2026-07-27&quot;:0.78},{&quot;2026-07-28&quot;:0.79},{&quot;2026-07-29&quot;:0.81},{&quot;2026-07-30&quot;:0.8},{&quot;2026-07-31&quot;:0.79},{&quot;2026-08-01&quot;:0.81},{&quot;2026-08-02&quot;:0.81},{&quot;2026-08-03&quot;:0.8},{&quot;2026-08-04&quot;:0.83},{&quot;2026-08-05&quot;:0.82},{&quot;2026-08-07&quot;:0.8},{&quot;2026-08-08&quot;:0.86},{&quot;2026-08-09&quot;:0.85},{&quot;2026-08-10&quot;:0.89},{&quot;2026-08-11&quot;:0.91},{&quot;2026-08-12&quot;:0.81},{&quot;2026-08-13&quot;:0.81},{&quot;2026-08-14&quot;:0.78},{&quot;2026-08-15&quot;:0.76},{&quot;2026-08-16&quot;:0.75},{&quot;2026-08-17&quot;:0.73},{&quot;2026-08-18&quot;:0.72},{&quot;2026-08-19&quot;:0.7},{&quot;2026-08-20&quot;:0.7},{&quot;2026-08-21&quot;:0.69},{&quot;2026-08-22&quot;:0.69},{&quot;2026-08-23&quot;:0.69},{&quot;2026-08-24&quot;:0.69},{&quot;2026-08-25&quot;:0.7},{&quot;2026-08-26&quot;:0.67},{&quot;2026-08-27&quot;:0.67},{&quot;2026-08-28&quot;:0.66},{&quot;2026-08-29&quot;:0.66},{&quot;2026-08-30&quot;:0.68},{&quot;2026-08-31&quot;:0.68},{&quot;2026-09-01&quot;:0.67},{&quot;2026-09-02&quot;:0.71},{&quot;2026-09-03&quot;:0.71},{&quot;2026-09-04&quot;:0.67},{&quot;2026-09-05&quot;:0.66},{&quot;2026-09-06&quot;:0.68},{&quot;2026-09-07&quot;:0.72},{&quot;2026-09-08&quot;:0.65},{&quot;2026-09-09&quot;:0.65},{&quot;2026-09-10&quot;:0.65},{&quot;2026-09-11&quot;:0.57}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:1.84},{&quot;2026-06-13&quot;:1.84},{&quot;2026-06-14&quot;:1.81},{&quot;2026-06-15&quot;:1.82},{&quot;2026-06-16&quot;:1.85},{&quot;2026-06-17&quot;:1.93},{&quot;2026-06-18&quot;:1.77},{&quot;2026-06-19&quot;:1.8},{&quot;2026-06-20&quot;:1.8},{&quot;2026-06-21&quot;:1.82},{&quot;2026-06-22&quot;:1.81},{&quot;2026-06-23&quot;:1.73},{&quot;2026-06-24&quot;:1.79},{&quot;2026-06-25&quot;:1.74},{&quot;2026-06-26&quot;:1.76},{&quot;2026-06-27&quot;:1.75},{&quot;2026-06-28&quot;:1.73},{&quot;2026-06-29&quot;:1.68},{&quot;2026-06-30&quot;:1.64},{&quot;2026-07-01&quot;:1.69},{&quot;2026-07-02&quot;:1.6},{&quot;2026-07-03&quot;:1.49},{&quot;2026-07-04&quot;:1.47},{&quot;2026-07-05&quot;:1.39},{&quot;2026-07-06&quot;:1.37},{&quot;2026-07-07&quot;:1.34},{&quot;2026-07-08&quot;:1.35},{&quot;2026-07-09&quot;:1.35},{&quot;2026-07-10&quot;:1.35},{&quot;2026-07-11&quot;:1.32},{&quot;2026-07-12&quot;:1.32},{&quot;2026-07-13&quot;:1.32},{&quot;2026-07-14&quot;:1.31},{&quot;2026-07-15&quot;:1.33},{&quot;2026-07-16&quot;:1.3},{&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.25},{&quot;2026-07-21&quot;:1.22},{&quot;2026-07-23&quot;:1.19},{&quot;2026-07-24&quot;:1.25},{&quot;2026-07-25&quot;:1.25},{&quot;2026-07-26&quot;:1.2},{&quot;2026-07-27&quot;:1.19},{&quot;2026-07-28&quot;:1.26},{&quot;2026-07-29&quot;:1.26},{&quot;2026-07-30&quot;:1.24},{&quot;2026-07-31&quot;:1.22},{&quot;2026-08-01&quot;:1.22},{&quot;2026-08-02&quot;:1.22},{&quot;2026-08-03&quot;:1.22},{&quot;2026-08-04&quot;:1.22},{&quot;2026-08-05&quot;:1.22},{&quot;2026-08-07&quot;:1.19},{&quot;2026-08-08&quot;:1.19},{&quot;2026-08-09&quot;:1.19},{&quot;2026-08-10&quot;:1.18},{&quot;2026-08-11&quot;:1.18},{&quot;2026-08-12&quot;:1.2},{&quot;2026-08-13&quot;:1.15},{&quot;2026-08-14&quot;:1.15},{&quot;2026-08-15&quot;:1.15},{&quot;2026-08-16&quot;:1.14},{&quot;2026-08-17&quot;:1.09},{&quot;2026-08-18&quot;:1.05},{&quot;2026-08-19&quot;:1.05},{&quot;2026-08-20&quot;:1.05},{&quot;2026-08-21&quot;:1.05},{&quot;2026-08-22&quot;:1.04},{&quot;2026-08-23&quot;:1.04},{&quot;2026-08-24&quot;:1.04},{&quot;2026-08-25&quot;:1.08},{&quot;2026-08-26&quot;:1.1},{&quot;2026-08-27&quot;:1.1},{&quot;2026-08-28&quot;:1.1},{&quot;2026-08-29&quot;:1.1},{&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.07},{&quot;2026-09-03&quot;:1.07},{&quot;2026-09-04&quot;:1.07},{&quot;2026-09-05&quot;:1.08},{&quot;2026-09-06&quot;:1.08},{&quot;2026-09-07&quot;:1.08},{&quot;2026-09-08&quot;:1.08},{&quot;2026-09-09&quot;:1.07},{&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="108920"
  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-soc 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">
            Arcane Signet
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.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="Arcane Signet" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/7/8/7811dd72-61b9-4067-ac20-cea153e625d2.jpg?1782683284" />

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

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

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            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="Arcane Signet" src="https://cards.scryfall.io/large/front/7/8/7811dd72-61b9-4067-ac20-cea153e625d2.jpg?1782683284" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

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

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

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

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.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="Rogue&#39;s Passage" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/3/3/335444f0-0848-4c17-b056-56d4fc876a58.jpg?1782683075" />

        <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">
            Rogue&#39;s Passage
        </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="Rogue&#39;s Passage" src="https://cards.scryfall.io/large/front/3/3/335444f0-0848-4c17-b056-56d4fc876a58.jpg?1782683075" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Alchemist&#39;s Refuge" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/3/6/36a11c11-1ea9-48e2-b1bc-49cba1390620.jpg?1782683110" />

        <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">
            Alchemist&#39;s Refuge
        </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="Alchemist&#39;s Refuge" src="https://cards.scryfall.io/large/front/3/6/36a11c11-1ea9-48e2-b1bc-49cba1390620.jpg?1782683110" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="109181"
  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-soc 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">
            Oran-Rief, the Vastwood
        </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">
            $0.38
          </span>
        </div>
      </div>
    </div>

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Oran-Rief, the Vastwood" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/4/d46d3ef7-b81f-42f4-9c1b-fa53f11eae65.jpg?1782683083" />

        <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">
            Oran-Rief, the Vastwood
        </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="Oran-Rief, the Vastwood" src="https://cards.scryfall.io/large/front/d/4/d46d3ef7-b81f-42f4-9c1b-fa53f11eae65.jpg?1782683083" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="109052"
  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-soc 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">
            Animist&#39;s Awakening
        </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">
              ↓
              8%
            </span>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Animist&#39;s Awakening" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/5/d5ace571-0644-40d6-a05f-15f2e47d8861.jpg?1782683186" />

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

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-x'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Animist&#39;s Awakening" src="https://cards.scryfall.io/large/front/d/5/d5ace571-0644-40d6-a05f-15f2e47d8861.jpg?1782683186" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="109076"
  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-soc 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">
            Silkguard
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Silkguard
        </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>
          </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="Silkguard" src="https://cards.scryfall.io/large/front/2/b/2b5fbcb8-9023-4a1c-b082-db44be8d8325.jpg?1782683167" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="109196"
  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-soc 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">
            Sodden Verdure
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Sodden Verdure" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/4/f/4fe29050-54cd-44d7-90a9-b34cfff8ef93.jpg?1782683074" />

        <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">
            Sodden Verdure
        </h3>

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Sodden Verdure" src="https://cards.scryfall.io/large/front/4/f/4fe29050-54cd-44d7-90a9-b34cfff8ef93.jpg?1782683074" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="108207"
  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-soc 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">
            Zimone, Infinite Analyst
        </span>


      </div>

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

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

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

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Zimone, Infinite Analyst" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/6/0/605afac4-d2e5-4e68-97d2-3ac2ead5f3a9.jpg?1783903866" />

        <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">
            Zimone, Infinite Analyst
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Zimone, Infinite Analyst" src="https://cards.scryfall.io/large/front/6/0/605afac4-d2e5-4e68-97d2-3ac2ead5f3a9.jpg?1783903866" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[{&quot;2026-06-12&quot;:0.38},{&quot;2026-06-13&quot;:0.38},{&quot;2026-06-14&quot;:0.39},{&quot;2026-06-15&quot;:0.4},{&quot;2026-06-16&quot;:0.43},{&quot;2026-06-17&quot;:0.44},{&quot;2026-06-18&quot;:0.41},{&quot;2026-06-19&quot;:0.41},{&quot;2026-06-20&quot;:0.41},{&quot;2026-06-21&quot;:0.45},{&quot;2026-06-22&quot;:0.44},{&quot;2026-06-23&quot;:0.44},{&quot;2026-06-24&quot;:0.43},{&quot;2026-06-25&quot;:0.4},{&quot;2026-06-26&quot;:0.4},{&quot;2026-06-27&quot;:0.39},{&quot;2026-06-28&quot;:0.39},{&quot;2026-06-29&quot;:0.4},{&quot;2026-06-30&quot;:0.42},{&quot;2026-07-01&quot;:0.42},{&quot;2026-07-02&quot;:0.42},{&quot;2026-07-03&quot;:0.42},{&quot;2026-07-04&quot;:0.42},{&quot;2026-07-05&quot;:0.39},{&quot;2026-07-06&quot;:0.4},{&quot;2026-07-07&quot;:0.39},{&quot;2026-07-08&quot;:0.37},{&quot;2026-07-09&quot;:0.37},{&quot;2026-07-10&quot;:0.37},{&quot;2026-07-11&quot;:0.4},{&quot;2026-07-12&quot;:0.4},{&quot;2026-07-13&quot;:0.4},{&quot;2026-07-14&quot;:0.4},{&quot;2026-07-15&quot;:0.43},{&quot;2026-07-16&quot;:0.42},{&quot;2026-07-17&quot;:0.4},{&quot;2026-07-18&quot;:0.43},{&quot;2026-07-19&quot;:0.41},{&quot;2026-07-20&quot;:0.42},{&quot;2026-07-21&quot;:0.44},{&quot;2026-07-23&quot;:0.37},{&quot;2026-07-24&quot;:0.38},{&quot;2026-07-25&quot;:0.38},{&quot;2026-07-26&quot;:0.4},{&quot;2026-07-27&quot;:0.41},{&quot;2026-07-28&quot;:0.43},{&quot;2026-07-29&quot;:0.42},{&quot;2026-07-30&quot;:0.48},{&quot;2026-07-31&quot;:0.46},{&quot;2026-08-01&quot;:0.46},{&quot;2026-08-02&quot;:0.46},{&quot;2026-08-03&quot;:0.43},{&quot;2026-08-04&quot;:0.43},{&quot;2026-08-05&quot;:0.39},{&quot;2026-08-07&quot;:0.4},{&quot;2026-08-08&quot;:0.4},{&quot;2026-08-09&quot;:0.39},{&quot;2026-08-10&quot;:0.41},{&quot;2026-08-11&quot;:0.74},{&quot;2026-08-12&quot;:0.72},{&quot;2026-08-13&quot;:0.73},{&quot;2026-08-14&quot;:0.44},{&quot;2026-08-15&quot;:0.43},{&quot;2026-08-16&quot;:0.42},{&quot;2026-08-17&quot;:0.45},{&quot;2026-08-18&quot;:0.45},{&quot;2026-08-19&quot;:0.43},{&quot;2026-08-20&quot;:0.43},{&quot;2026-08-21&quot;:0.38},{&quot;2026-08-22&quot;:0.39},{&quot;2026-08-23&quot;:0.38},{&quot;2026-08-24&quot;:0.37},{&quot;2026-08-25&quot;:0.39},{&quot;2026-08-26&quot;:0.39},{&quot;2026-08-27&quot;:0.39},{&quot;2026-08-28&quot;:0.4},{&quot;2026-08-29&quot;:0.4},{&quot;2026-08-30&quot;:0.39},{&quot;2026-08-31&quot;:0.38},{&quot;2026-09-01&quot;:0.37},{&quot;2026-09-02&quot;:0.38},{&quot;2026-09-03&quot;:0.38},{&quot;2026-09-04&quot;:0.37},{&quot;2026-09-05&quot;:0.37},{&quot;2026-09-06&quot;:0.38},{&quot;2026-09-07&quot;:0.38},{&quot;2026-09-08&quot;:0.38},{&quot;2026-09-09&quot;:0.38},{&quot;2026-09-10&quot;:0.38},{&quot;2026-09-11&quot;:0.36}],&quot;normal&quot;:[{&quot;2026-06-12&quot;:1.45},{&quot;2026-06-13&quot;:1.46},{&quot;2026-06-14&quot;:1.64},{&quot;2026-06-15&quot;:1.7},{&quot;2026-06-16&quot;:1.64},{&quot;2026-06-17&quot;:1.7},{&quot;2026-06-18&quot;:1.7},{&quot;2026-06-19&quot;:1.8},{&quot;2026-06-20&quot;:1.73},{&quot;2026-06-21&quot;:1.78},{&quot;2026-06-22&quot;:1.76},{&quot;2026-06-23&quot;:1.57},{&quot;2026-06-24&quot;:1.62},{&quot;2026-06-25&quot;:1.62},{&quot;2026-06-26&quot;:1.66},{&quot;2026-06-27&quot;:1.66},{&quot;2026-06-28&quot;:1.61},{&quot;2026-06-29&quot;:1.59},{&quot;2026-06-30&quot;:1.59},{&quot;2026-07-01&quot;:1.57},{&quot;2026-07-02&quot;:1.5},{&quot;2026-07-03&quot;:1.5},{&quot;2026-07-04&quot;:1.4},{&quot;2026-07-05&quot;:1.13},{&quot;2026-07-06&quot;:1.13},{&quot;2026-07-07&quot;:1.17},{&quot;2026-07-08&quot;:1.17},{&quot;2026-07-09&quot;:1.17},{&quot;2026-07-10&quot;:1.17},{&quot;2026-07-11&quot;:1.2},{&quot;2026-07-12&quot;:1.2},{&quot;2026-07-13&quot;:1.2},{&quot;2026-07-14&quot;:0.97},{&quot;2026-07-15&quot;:0.98},{&quot;2026-07-16&quot;:0.98},{&quot;2026-07-17&quot;:0.98},{&quot;2026-07-18&quot;:1.0},{&quot;2026-07-19&quot;:0.99},{&quot;2026-07-20&quot;:0.99},{&quot;2026-07-21&quot;:1.02},{&quot;2026-07-23&quot;:0.98},{&quot;2026-07-24&quot;:0.98},{&quot;2026-07-25&quot;:0.98},{&quot;2026-07-26&quot;:0.98},{&quot;2026-07-27&quot;:0.93},{&quot;2026-07-28&quot;:0.93},{&quot;2026-07-29&quot;:0.98},{&quot;2026-07-30&quot;:0.96},{&quot;2026-07-31&quot;:0.95},{&quot;2026-08-01&quot;:0.98},{&quot;2026-08-02&quot;:0.98},{&quot;2026-08-03&quot;:0.92},{&quot;2026-08-04&quot;:0.92},{&quot;2026-08-05&quot;:0.92},{&quot;2026-08-07&quot;:0.94},{&quot;2026-08-08&quot;:0.88},{&quot;2026-08-09&quot;:0.88},{&quot;2026-08-10&quot;:0.9},{&quot;2026-08-11&quot;:0.88},{&quot;2026-08-12&quot;:0.85},{&quot;2026-08-13&quot;:0.85},{&quot;2026-08-14&quot;:0.84},{&quot;2026-08-15&quot;:0.83},{&quot;2026-08-16&quot;:0.84},{&quot;2026-08-17&quot;:0.84},{&quot;2026-08-18&quot;:0.82},{&quot;2026-08-19&quot;:0.85},{&quot;2026-08-20&quot;:0.85},{&quot;2026-08-21&quot;:0.82},{&quot;2026-08-22&quot;:0.82},{&quot;2026-08-23&quot;:0.82},{&quot;2026-08-24&quot;:0.82},{&quot;2026-08-25&quot;:0.81},{&quot;2026-08-26&quot;:0.79},{&quot;2026-08-27&quot;:0.79},{&quot;2026-08-28&quot;:0.79},{&quot;2026-08-29&quot;:0.79},{&quot;2026-08-30&quot;:0.76},{&quot;2026-08-31&quot;:0.76},{&quot;2026-09-01&quot;:0.76},{&quot;2026-09-02&quot;:0.76},{&quot;2026-09-03&quot;:0.79},{&quot;2026-09-04&quot;:0.79},{&quot;2026-09-05&quot;:0.79},{&quot;2026-09-06&quot;:0.79},{&quot;2026-09-07&quot;:0.79},{&quot;2026-09-08&quot;:0.77},{&quot;2026-09-09&quot;:0.71},{&quot;2026-09-10&quot;:0.71},{&quot;2026-09-11&quot;:0.72}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="109215"
  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-soc 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">
            Yavimaya Coast
        </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">
              ↑
              20%
            </span>

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

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

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

        <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">
            Yavimaya Coast
        </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="Yavimaya Coast" src="https://cards.scryfall.io/large/front/f/4/f4c1500b-1f4c-4d33-810c-25e3bb0a4666.jpg?1782875521" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="109058"
  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-soc 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">
            Forgotten Ancient
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Forgotten Ancient
        </h3>

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

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

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-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="Forgotten Ancient" src="https://cards.scryfall.io/large/front/f/8/f8c9d744-8294-4747-ae7e-99be2b6e7479.jpg?1782683182" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


      </div>

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

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

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

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

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

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

        <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">
            Steelbane Hydra
        </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 — Turtle Hydra</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-x'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Steelbane Hydra" src="https://cards.scryfall.io/large/front/c/9/c9889a59-519c-4adb-9002-dbed400a0d33.jpg?1782683165" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="108985"
  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-soc 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">
            Deekah, Fractal Theorist
        </span>


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.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="Deekah, Fractal Theorist" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/1/8/186e15a7-d97e-40df-adaa-96d9bd64f3ca.jpg?1782683239" />

        <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">
            Deekah, Fractal Theorist
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Legendary Creature — Human Wizard</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-u'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Deekah, Fractal Theorist" src="https://cards.scryfall.io/large/front/1/8/186e15a7-d97e-40df-adaa-96d9bd64f3ca.jpg?1782683239" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.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="Lifeblood Hydra" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/3/4/3431a77c-2027-406b-9230-5d0f8837af62.jpg?1782683176" />

        <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">
            Lifeblood Hydra
        </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 — Hydra</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-x'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Lifeblood Hydra" src="https://cards.scryfall.io/large/front/3/4/3431a77c-2027-406b-9230-5d0f8837af62.jpg?1782683176" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


      </div>

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

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

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

          <span class="text-sm font-medium text-nine-white">
            $0.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="Temple of Mystery" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/2/5/258077cf-edef-40fe-ab46-03c965ebe990.jpg?1782683065" />

        <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">
            Temple of Mystery
        </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="Temple of Mystery" src="https://cards.scryfall.io/large/front/2/5/258077cf-edef-40fe-ab46-03c965ebe990.jpg?1782683065" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

            </div>
          </div>

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

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

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

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

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

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


      </div>

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

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

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

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

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

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

        <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">
            Decisive Denial
        </h3>

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

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

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

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Decisive Denial" src="https://cards.scryfall.io/large/front/b/1/b1ad1949-1c8e-4566-9286-caf240c88fcc.jpg?1782683152" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="109147"
  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-soc 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">
            Stonecoil Serpent
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Stonecoil Serpent
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Artifact Creature — Snake</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>
          </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="Stonecoil Serpent" src="https://cards.scryfall.io/large/front/4/9/4909ee20-f84e-480e-8215-78946cedf877.jpg?1782683111" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="109139"
  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-soc 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">
            Hangarback Walker
        </span>


      </div>

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

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

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

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

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

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

        <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">
            Hangarback Walker
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Artifact Creature — Construct</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-x'></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="Hangarback Walker" src="https://cards.scryfall.io/large/front/c/c/cc387ccf-f746-4855-81e5-64f5a5e0fdda.jpg?1782683115" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="109171"
  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-soc 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">
            Hinterland Harbor
        </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">
              ↓
              14%
            </span>

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

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

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Hinterland Harbor" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/1/c13adc8c-03bb-4088-98af-0c06d83369aa.jpg?1782683092" />

        <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">
            Hinterland Harbor
        </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="Hinterland Harbor" src="https://cards.scryfall.io/large/front/c/1/c13adc8c-03bb-4088-98af-0c06d83369aa.jpg?1782683092" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$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-08&quot;:0.33},{&quot;2026-06-10&quot;:0.29},{&quot;2026-06-11&quot;:0.31},{&quot;2026-06-12&quot;:0.33},{&quot;2026-06-13&quot;:0.33},{&quot;2026-06-14&quot;:0.61},{&quot;2026-06-15&quot;:0.62},{&quot;2026-06-16&quot;:0.32},{&quot;2026-06-17&quot;:0.29},{&quot;2026-06-18&quot;:0.29},{&quot;2026-06-19&quot;:0.32},{&quot;2026-06-20&quot;:0.32},{&quot;2026-06-21&quot;:0.31},{&quot;2026-06-22&quot;:0.33},{&quot;2026-06-24&quot;:0.33},{&quot;2026-06-25&quot;:0.34},{&quot;2026-06-26&quot;:0.33},{&quot;2026-06-27&quot;:0.33},{&quot;2026-06-28&quot;:0.33},{&quot;2026-06-29&quot;:0.36},{&quot;2026-06-30&quot;:0.36},{&quot;2026-07-01&quot;:0.35},{&quot;2026-07-02&quot;:0.35},{&quot;2026-07-03&quot;:0.36},{&quot;2026-07-04&quot;:0.36},{&quot;2026-07-05&quot;:0.33},{&quot;2026-07-06&quot;:0.32},{&quot;2026-07-07&quot;:0.32},{&quot;2026-07-08&quot;:0.31},{&quot;2026-07-09&quot;:0.32},{&quot;2026-07-10&quot;:0.31},{&quot;2026-07-11&quot;:0.31},{&quot;2026-07-12&quot;:0.32},{&quot;2026-07-13&quot;:0.31},{&quot;2026-07-14&quot;:0.29},{&quot;2026-07-15&quot;:0.29},{&quot;2026-07-16&quot;:0.3},{&quot;2026-07-17&quot;:0.31},{&quot;2026-07-18&quot;:0.3},{&quot;2026-07-19&quot;:0.3},{&quot;2026-07-20&quot;:0.31},{&quot;2026-07-21&quot;:0.31},{&quot;2026-07-23&quot;:0.32},{&quot;2026-07-25&quot;:0.34},{&quot;2026-07-26&quot;:0.35},{&quot;2026-07-27&quot;:0.35},{&quot;2026-07-29&quot;:0.38},{&quot;2026-07-30&quot;:0.38},{&quot;2026-07-31&quot;:0.38},{&quot;2026-08-01&quot;:0.38},{&quot;2026-08-02&quot;:0.68},{&quot;2026-08-03&quot;:0.69},{&quot;2026-08-04&quot;:0.71},{&quot;2026-08-05&quot;:0.7},{&quot;2026-08-07&quot;:0.69},{&quot;2026-08-08&quot;:0.68},{&quot;2026-08-09&quot;:0.69},{&quot;2026-08-10&quot;:0.38},{&quot;2026-08-11&quot;:0.37},{&quot;2026-08-12&quot;:0.38},{&quot;2026-08-13&quot;:0.37},{&quot;2026-08-14&quot;:0.36},{&quot;2026-08-15&quot;:0.34},{&quot;2026-08-16&quot;:0.35},{&quot;2026-08-17&quot;:0.34},{&quot;2026-08-18&quot;:0.34},{&quot;2026-08-19&quot;:0.33},{&quot;2026-08-20&quot;:0.33},{&quot;2026-08-21&quot;:0.32},{&quot;2026-08-22&quot;:0.33},{&quot;2026-08-23&quot;:0.33},{&quot;2026-08-24&quot;:0.32},{&quot;2026-08-25&quot;:0.32},{&quot;2026-08-26&quot;:0.33},{&quot;2026-08-27&quot;:0.33},{&quot;2026-08-28&quot;:0.32},{&quot;2026-08-29&quot;:0.32},{&quot;2026-08-30&quot;:0.32},{&quot;2026-08-31&quot;:0.32},{&quot;2026-09-01&quot;:0.32},{&quot;2026-09-02&quot;:0.31},{&quot;2026-09-03&quot;:0.33},{&quot;2026-09-04&quot;:0.35},{&quot;2026-09-05&quot;:0.36},{&quot;2026-09-06&quot;:0.35},{&quot;2026-09-07&quot;:0.32},{&quot;2026-09-08&quot;:0.32},{&quot;2026-09-09&quot;:0.32},{&quot;2026-09-10&quot;:0.32},{&quot;2026-09-11&quot;:0.31}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

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

    <!-- Quick Actions -->

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

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

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


      </div>

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

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

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

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

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

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

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

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

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

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

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Command Tower" src="https://cards.scryfall.io/large/front/c/4/c46a217c-0ed2-4b3c-9a01-ee38d12d76f3.jpg?1782683284" />
    </div>

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

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

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

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

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

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

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

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

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

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

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

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

                <span class="text-xs text-accent-100">
                  ↓
                  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">
                $0.00
              </span>

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

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

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

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

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

    <!-- Quick Actions -->

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

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="109073"
  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-soc 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">
            Primal Might
        </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">
              ↑
              3%
            </span>

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

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

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

        <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">
            Primal Might
        </h3>

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

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Sorcery</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-x'></i><i class='no-tailwind ms ms-cost ml-0 ms-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="Primal Might" src="https://cards.scryfall.io/large/front/5/b/5b95e07d-fb9f-4f0b-8d7c-43a1548c1bb1.jpg?1782683170" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.30
              </span>

                <span class="text-xs text-accent-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">
                $0.00
              </span>

            </div>
          </div>
      </div>


      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-11&quot;:0.3},{&quot;2026-06-12&quot;:0.3},{&quot;2026-06-13&quot;:0.29},{&quot;2026-06-14&quot;:0.29},{&quot;2026-06-15&quot;:0.29},{&quot;2026-06-16&quot;:0.29},{&quot;2026-06-17&quot;:0.29},{&quot;2026-06-18&quot;:0.29},{&quot;2026-06-19&quot;:0.29},{&quot;2026-06-20&quot;:0.29},{&quot;2026-06-21&quot;:0.3},{&quot;2026-06-22&quot;:0.29},{&quot;2026-06-23&quot;:0.29},{&quot;2026-06-24&quot;:0.3},{&quot;2026-06-25&quot;:0.29},{&quot;2026-06-26&quot;:0.3},{&quot;2026-06-27&quot;:0.29},{&quot;2026-06-28&quot;:0.3},{&quot;2026-06-29&quot;:0.28},{&quot;2026-06-30&quot;:0.29},{&quot;2026-07-01&quot;:0.28},{&quot;2026-07-02&quot;:0.29},{&quot;2026-07-03&quot;:0.3},{&quot;2026-07-04&quot;:0.3},{&quot;2026-07-05&quot;:0.29},{&quot;2026-07-06&quot;:0.27},{&quot;2026-07-07&quot;:0.27},{&quot;2026-07-08&quot;:0.27},{&quot;2026-07-09&quot;:0.28},{&quot;2026-07-10&quot;:0.3},{&quot;2026-07-11&quot;:0.32},{&quot;2026-07-12&quot;:0.32},{&quot;2026-07-13&quot;:0.32},{&quot;2026-07-14&quot;:0.31},{&quot;2026-07-15&quot;:0.29},{&quot;2026-07-16&quot;:0.3},{&quot;2026-07-17&quot;:0.31},{&quot;2026-07-18&quot;:0.31},{&quot;2026-07-19&quot;:0.33},{&quot;2026-07-20&quot;:0.33},{&quot;2026-07-21&quot;:0.31},{&quot;2026-07-23&quot;:0.3},{&quot;2026-07-25&quot;:0.27},{&quot;2026-07-26&quot;:0.26},{&quot;2026-07-27&quot;:0.27},{&quot;2026-07-28&quot;:0.27},{&quot;2026-07-29&quot;:0.27},{&quot;2026-07-30&quot;:0.27},{&quot;2026-07-31&quot;:0.26},{&quot;2026-08-01&quot;:0.26},{&quot;2026-08-02&quot;:0.26},{&quot;2026-08-03&quot;:0.28},{&quot;2026-08-04&quot;:0.26},{&quot;2026-08-05&quot;:0.25},{&quot;2026-08-07&quot;:0.26},{&quot;2026-08-08&quot;:0.25},{&quot;2026-08-09&quot;:0.26},{&quot;2026-08-10&quot;:0.26},{&quot;2026-08-11&quot;:0.25},{&quot;2026-08-12&quot;:0.26},{&quot;2026-08-13&quot;:0.26},{&quot;2026-08-14&quot;:0.25},{&quot;2026-08-15&quot;:0.24},{&quot;2026-08-16&quot;:0.24},{&quot;2026-08-17&quot;:0.25},{&quot;2026-08-18&quot;:0.26},{&quot;2026-08-19&quot;:0.26},{&quot;2026-08-20&quot;:0.26},{&quot;2026-08-21&quot;:0.24},{&quot;2026-08-22&quot;:0.27},{&quot;2026-08-23&quot;:0.27},{&quot;2026-08-24&quot;:0.26},{&quot;2026-08-25&quot;:0.26},{&quot;2026-08-26&quot;:0.27},{&quot;2026-08-27&quot;:0.29},{&quot;2026-08-28&quot;:0.29},{&quot;2026-08-29&quot;:0.29},{&quot;2026-08-30&quot;:0.3},{&quot;2026-08-31&quot;:0.28},{&quot;2026-09-01&quot;:0.28},{&quot;2026-09-02&quot;:0.28},{&quot;2026-09-03&quot;:0.28},{&quot;2026-09-04&quot;:0.28},{&quot;2026-09-05&quot;:0.29},{&quot;2026-09-06&quot;:0.27},{&quot;2026-09-07&quot;:0.31},{&quot;2026-09-08&quot;:0.31},{&quot;2026-09-09&quot;:0.31},{&quot;2026-09-10&quot;:0.31},{&quot;2026-09-11&quot;:0.3}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="108853"
  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-soc 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">
            Owlin Spiralmancer
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Bird Wizard
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-100 text-badge-text">
              ↓
              6%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.29
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Owlin Spiralmancer" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/8/e/8e6266b5-9a02-4b06-b80c-048926a4eda7.jpg?1782683369" />

        <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">
            Owlin Spiralmancer
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            rare
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Creature — Bird Wizard</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Owlin Spiralmancer" src="https://cards.scryfall.io/large/front/8/e/8e6266b5-9a02-4b06-b80c-048926a4eda7.jpg?1782683369" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.29
              </span>

                <span class="text-xs text-accent-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">
                $0.00
              </span>

            </div>
          </div>
      </div>


      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-11&quot;:0.3},{&quot;2026-06-12&quot;:0.28},{&quot;2026-06-13&quot;:0.29},{&quot;2026-06-14&quot;:0.31},{&quot;2026-06-15&quot;:0.31},{&quot;2026-06-16&quot;:0.3},{&quot;2026-06-17&quot;:0.3},{&quot;2026-06-18&quot;:0.28},{&quot;2026-06-19&quot;:0.27},{&quot;2026-06-20&quot;:0.28},{&quot;2026-06-21&quot;:0.27},{&quot;2026-06-22&quot;:0.29},{&quot;2026-06-23&quot;:0.31},{&quot;2026-06-24&quot;:0.3},{&quot;2026-06-25&quot;:0.31},{&quot;2026-06-26&quot;:0.31},{&quot;2026-06-27&quot;:0.3},{&quot;2026-06-28&quot;:0.3},{&quot;2026-06-29&quot;:0.3},{&quot;2026-06-30&quot;:0.31},{&quot;2026-07-01&quot;:0.3},{&quot;2026-07-02&quot;:0.32},{&quot;2026-07-03&quot;:0.3},{&quot;2026-07-04&quot;:0.3},{&quot;2026-07-05&quot;:0.29},{&quot;2026-07-06&quot;:0.31},{&quot;2026-07-07&quot;:0.31},{&quot;2026-07-08&quot;:0.27},{&quot;2026-07-09&quot;:0.27},{&quot;2026-07-10&quot;:0.28},{&quot;2026-07-11&quot;:0.27},{&quot;2026-07-12&quot;:0.24},{&quot;2026-07-13&quot;:0.24},{&quot;2026-07-14&quot;:0.25},{&quot;2026-07-15&quot;:0.25},{&quot;2026-07-16&quot;:0.26},{&quot;2026-07-17&quot;:0.26},{&quot;2026-07-18&quot;:0.25},{&quot;2026-07-19&quot;:0.25},{&quot;2026-07-20&quot;:0.27},{&quot;2026-07-21&quot;:0.26},{&quot;2026-07-23&quot;:0.3},{&quot;2026-07-25&quot;:0.31},{&quot;2026-07-26&quot;:0.32},{&quot;2026-07-27&quot;:0.32},{&quot;2026-07-28&quot;:0.29},{&quot;2026-07-29&quot;:0.29},{&quot;2026-07-30&quot;:0.3},{&quot;2026-07-31&quot;:0.3},{&quot;2026-08-01&quot;:0.3},{&quot;2026-08-02&quot;:0.29},{&quot;2026-08-03&quot;:0.3},{&quot;2026-08-04&quot;:0.32},{&quot;2026-08-05&quot;:0.35},{&quot;2026-08-07&quot;:0.34},{&quot;2026-08-08&quot;:0.35},{&quot;2026-08-09&quot;:0.33},{&quot;2026-08-10&quot;:0.32},{&quot;2026-08-11&quot;:0.34},{&quot;2026-08-12&quot;:0.32},{&quot;2026-08-13&quot;:0.32},{&quot;2026-08-14&quot;:0.32},{&quot;2026-08-15&quot;:0.29},{&quot;2026-08-16&quot;:0.29},{&quot;2026-08-17&quot;:0.28},{&quot;2026-08-18&quot;:0.25},{&quot;2026-08-19&quot;:0.25},{&quot;2026-08-20&quot;:0.25},{&quot;2026-08-21&quot;:0.25},{&quot;2026-08-22&quot;:0.26},{&quot;2026-08-23&quot;:0.26},{&quot;2026-08-24&quot;:0.28},{&quot;2026-08-25&quot;:0.28},{&quot;2026-08-26&quot;:0.28},{&quot;2026-08-27&quot;:0.32},{&quot;2026-08-28&quot;:0.32},{&quot;2026-08-29&quot;:0.32},{&quot;2026-08-30&quot;:0.31},{&quot;2026-08-31&quot;:0.29},{&quot;2026-09-01&quot;:0.29},{&quot;2026-09-02&quot;:0.28},{&quot;2026-09-03&quot;:0.3},{&quot;2026-09-04&quot;:0.3},{&quot;2026-09-05&quot;:0.31},{&quot;2026-09-06&quot;:0.29},{&quot;2026-09-07&quot;:0.29},{&quot;2026-09-08&quot;:0.29},{&quot;2026-09-09&quot;:0.31},{&quot;2026-09-10&quot;:0.29},{&quot;2026-09-11&quot;:0.29}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="108872"
  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-soc 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">
            Kinetic Ooze
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Ooze
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-100 text-badge-text">
              ↓
              3%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.29
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Kinetic Ooze" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/f/1/f18ee3a2-997e-47e6-96b9-7438307f4bc5.jpg?1782683353" />

        <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">
            Kinetic Ooze
        </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 — Ooze</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>
          </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="Kinetic Ooze" src="https://cards.scryfall.io/large/front/f/1/f18ee3a2-997e-47e6-96b9-7438307f4bc5.jpg?1782683353" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.29
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  3%
                </span>
            </div>
          </div>

          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Foil</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $0.00
              </span>

            </div>
          </div>
      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.05</span>
              <span class="text-xs text-grey-text">Credit: $0.07</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.32},{&quot;2026-06-14&quot;:0.32},{&quot;2026-06-15&quot;:0.32},{&quot;2026-06-16&quot;:0.32},{&quot;2026-06-17&quot;:0.31},{&quot;2026-06-18&quot;:0.31},{&quot;2026-06-19&quot;:0.32},{&quot;2026-06-20&quot;:0.31},{&quot;2026-06-21&quot;:0.3},{&quot;2026-06-22&quot;:0.33},{&quot;2026-06-23&quot;:0.32},{&quot;2026-06-24&quot;:0.32},{&quot;2026-06-25&quot;:0.32},{&quot;2026-06-26&quot;:0.33},{&quot;2026-06-27&quot;:0.32},{&quot;2026-06-28&quot;:0.35},{&quot;2026-06-29&quot;:0.35},{&quot;2026-06-30&quot;:0.35},{&quot;2026-07-01&quot;:0.35},{&quot;2026-07-02&quot;:0.35},{&quot;2026-07-03&quot;:0.31},{&quot;2026-07-04&quot;:0.32},{&quot;2026-07-05&quot;:0.35},{&quot;2026-07-06&quot;:0.36},{&quot;2026-07-07&quot;:0.35},{&quot;2026-07-08&quot;:0.33},{&quot;2026-07-09&quot;:0.32},{&quot;2026-07-10&quot;:0.33},{&quot;2026-07-11&quot;:0.32},{&quot;2026-07-12&quot;:0.33},{&quot;2026-07-13&quot;:0.33},{&quot;2026-07-14&quot;:0.33},{&quot;2026-07-15&quot;:0.32},{&quot;2026-07-16&quot;:0.32},{&quot;2026-07-17&quot;:0.34},{&quot;2026-07-18&quot;:0.35},{&quot;2026-07-19&quot;:0.34},{&quot;2026-07-20&quot;:0.35},{&quot;2026-07-21&quot;:0.36},{&quot;2026-07-22&quot;:0.37},{&quot;2026-07-23&quot;:0.35},{&quot;2026-07-24&quot;:0.36},{&quot;2026-07-25&quot;:0.36},{&quot;2026-07-26&quot;:0.38},{&quot;2026-07-27&quot;:0.37},{&quot;2026-07-28&quot;:0.38},{&quot;2026-07-29&quot;:0.38},{&quot;2026-07-30&quot;:0.38},{&quot;2026-07-31&quot;:0.36},{&quot;2026-08-01&quot;:0.36},{&quot;2026-08-02&quot;:0.36},{&quot;2026-08-03&quot;:0.36},{&quot;2026-08-04&quot;:0.35},{&quot;2026-08-05&quot;:0.34},{&quot;2026-08-07&quot;:0.33},{&quot;2026-08-08&quot;:0.32},{&quot;2026-08-09&quot;:0.31},{&quot;2026-08-10&quot;:0.29},{&quot;2026-08-11&quot;:0.28},{&quot;2026-08-12&quot;:0.29},{&quot;2026-08-13&quot;:0.29},{&quot;2026-08-14&quot;:0.29},{&quot;2026-08-15&quot;:0.29},{&quot;2026-08-16&quot;:0.29},{&quot;2026-08-17&quot;:0.29},{&quot;2026-08-18&quot;:0.32},{&quot;2026-08-19&quot;:0.32},{&quot;2026-08-20&quot;:0.32},{&quot;2026-08-21&quot;:0.32},{&quot;2026-08-22&quot;:0.32},{&quot;2026-08-23&quot;:0.32},{&quot;2026-08-24&quot;:0.32},{&quot;2026-08-25&quot;:0.32},{&quot;2026-08-26&quot;:0.33},{&quot;2026-08-27&quot;:0.32},{&quot;2026-08-28&quot;:0.34},{&quot;2026-08-29&quot;:0.34},{&quot;2026-08-30&quot;:0.3},{&quot;2026-08-31&quot;:0.3},{&quot;2026-09-01&quot;:0.27},{&quot;2026-09-02&quot;:0.26},{&quot;2026-09-03&quot;:0.27},{&quot;2026-09-04&quot;:0.29},{&quot;2026-09-05&quot;:0.3},{&quot;2026-09-06&quot;:0.29},{&quot;2026-09-07&quot;:0.29},{&quot;2026-09-08&quot;:0.31},{&quot;2026-09-09&quot;:0.3},{&quot;2026-09-10&quot;:0.29},{&quot;2026-09-11&quot;:0.29}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="108877"
  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-soc 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">
            Yavimaya Bloomsage 
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Dryad 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">
              ↓
              12%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.29
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Yavimaya Bloomsage // Channel" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/f/c/fc962e45-ab71-47e2-b736-644901ffe7d6.jpg?1782683352" />

        <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">
            Yavimaya Bloomsage 
        </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 — Dryad 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"
    >
        <div data-controller="card-flip" class="flex flex-col items-center">
          <div
            data-action="click->card-flip#flip"
            class="flip-container cursor-pointer w-full max-w-xs mx-auto"
          >
            <div data-card-flip-target="card" class="flip-card">
              <div class="flip-card-front">
                <img class="w-full h-auto rounded-2xl" alt="Yavimaya Bloomsage // Channel" src="https://cards.scryfall.io/large/front/f/c/fc962e45-ab71-47e2-b736-644901ffe7d6.jpg?1782683352" />
              </div>

              <div class="flip-card-back">
                <img class="w-full h-auto rounded-2xl" alt="Yavimaya Bloomsage // Channel" src="https://cards.scryfall.io/large/front/f/c/fc962e45-ab71-47e2-b736-644901ffe7d6.jpg?1782683352" />
              </div>
            </div>
          </div>

          <p class="mt-2 text-sm text-grey-text">Tap card to flip</p>
        </div>
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.29
              </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">
                $0.00
              </span>

            </div>
          </div>
      </div>


      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-08&quot;:1.12},{&quot;2026-06-10&quot;:1.21},{&quot;2026-06-11&quot;:1.23},{&quot;2026-06-12&quot;:1.18},{&quot;2026-06-13&quot;:1.21},{&quot;2026-06-14&quot;:1.17},{&quot;2026-06-15&quot;:1.06},{&quot;2026-06-16&quot;:1.05},{&quot;2026-06-17&quot;:1.07},{&quot;2026-06-18&quot;:1.03},{&quot;2026-06-19&quot;:1.02},{&quot;2026-06-20&quot;:0.99},{&quot;2026-06-21&quot;:0.97},{&quot;2026-06-22&quot;:0.95},{&quot;2026-06-24&quot;:0.92},{&quot;2026-06-25&quot;:0.93},{&quot;2026-06-26&quot;:0.9},{&quot;2026-06-27&quot;:0.88},{&quot;2026-06-28&quot;:0.89},{&quot;2026-06-29&quot;:0.84},{&quot;2026-06-30&quot;:0.82},{&quot;2026-07-01&quot;:0.8},{&quot;2026-07-02&quot;:0.82},{&quot;2026-07-03&quot;:0.81},{&quot;2026-07-04&quot;:0.81},{&quot;2026-07-05&quot;:0.8},{&quot;2026-07-06&quot;:0.8},{&quot;2026-07-07&quot;:0.8},{&quot;2026-07-08&quot;:0.77},{&quot;2026-07-09&quot;:0.7},{&quot;2026-07-10&quot;:0.67},{&quot;2026-07-11&quot;:0.62},{&quot;2026-07-12&quot;:0.57},{&quot;2026-07-13&quot;:0.51},{&quot;2026-07-14&quot;:0.49},{&quot;2026-07-15&quot;:0.47},{&quot;2026-07-16&quot;:0.47},{&quot;2026-07-17&quot;:0.44},{&quot;2026-07-18&quot;:0.44},{&quot;2026-07-19&quot;:0.45},{&quot;2026-07-20&quot;:0.44},{&quot;2026-07-21&quot;:0.44},{&quot;2026-07-23&quot;:0.45},{&quot;2026-07-25&quot;:0.41},{&quot;2026-07-26&quot;:0.41},{&quot;2026-07-27&quot;:0.41},{&quot;2026-07-29&quot;:0.4},{&quot;2026-07-30&quot;:0.4},{&quot;2026-07-31&quot;:0.39},{&quot;2026-08-01&quot;:0.38},{&quot;2026-08-02&quot;:0.39},{&quot;2026-08-03&quot;:0.4},{&quot;2026-08-04&quot;:0.4},{&quot;2026-08-05&quot;:0.4},{&quot;2026-08-07&quot;:0.4},{&quot;2026-08-08&quot;:0.4},{&quot;2026-08-09&quot;:0.41},{&quot;2026-08-10&quot;:0.41},{&quot;2026-08-11&quot;:0.39},{&quot;2026-08-12&quot;:0.42},{&quot;2026-08-13&quot;:0.4},{&quot;2026-08-14&quot;:0.4},{&quot;2026-08-15&quot;:0.4},{&quot;2026-08-16&quot;:0.4},{&quot;2026-08-17&quot;:0.42},{&quot;2026-08-18&quot;:0.42},{&quot;2026-08-19&quot;:0.42},{&quot;2026-08-20&quot;:0.42},{&quot;2026-08-21&quot;:0.39},{&quot;2026-08-22&quot;:0.41},{&quot;2026-08-23&quot;:0.41},{&quot;2026-08-24&quot;:0.41},{&quot;2026-08-25&quot;:0.41},{&quot;2026-08-26&quot;:0.41},{&quot;2026-08-27&quot;:0.41},{&quot;2026-08-28&quot;:0.41},{&quot;2026-08-29&quot;:0.41},{&quot;2026-08-30&quot;:0.41},{&quot;2026-08-31&quot;:0.4},{&quot;2026-09-01&quot;:0.4},{&quot;2026-09-02&quot;:0.35},{&quot;2026-09-03&quot;:0.35},{&quot;2026-09-04&quot;:0.34},{&quot;2026-09-05&quot;:0.33},{&quot;2026-09-06&quot;:0.33},{&quot;2026-09-07&quot;:0.31},{&quot;2026-09-08&quot;:0.3},{&quot;2026-09-09&quot;:0.3},{&quot;2026-09-10&quot;:0.3},{&quot;2026-09-11&quot;:0.29}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="109096"
  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-soc 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">
            Elusive Otter 
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Creature — Otter
      </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">
              ↑
              21%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.29
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Elusive Otter // Grove&#39;s Bounty" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/d/bdb79d68-c3af-4091-b7db-005247191da8.jpg?1782683151" />

        <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">
            Elusive Otter 
        </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 — Otter</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <div data-controller="card-flip" class="flex flex-col items-center">
          <div
            data-action="click->card-flip#flip"
            class="flip-container cursor-pointer w-full max-w-xs mx-auto"
          >
            <div data-card-flip-target="card" class="flip-card">
              <div class="flip-card-front">
                <img class="w-full h-auto rounded-2xl" alt="Elusive Otter // Grove&#39;s Bounty" src="https://cards.scryfall.io/large/front/b/d/bdb79d68-c3af-4091-b7db-005247191da8.jpg?1782683151" />
              </div>

              <div class="flip-card-back">
                <img class="w-full h-auto rounded-2xl" alt="Elusive Otter // Grove&#39;s Bounty" src="https://cards.scryfall.io/large/front/b/d/bdb79d68-c3af-4091-b7db-005247191da8.jpg?1782683151" />
              </div>
            </div>
          </div>

          <p class="mt-2 text-sm text-grey-text">Tap card to flip</p>
        </div>
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.29
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  21%
                </span>
            </div>
          </div>

          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Foil</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $0.00
              </span>

            </div>
          </div>
      </div>


      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.29},{&quot;2026-06-14&quot;:0.29},{&quot;2026-06-15&quot;:0.28},{&quot;2026-06-16&quot;:0.27},{&quot;2026-06-17&quot;:0.27},{&quot;2026-06-18&quot;:0.3},{&quot;2026-06-19&quot;:0.29},{&quot;2026-06-20&quot;:0.28},{&quot;2026-06-21&quot;:0.25},{&quot;2026-06-22&quot;:0.25},{&quot;2026-06-23&quot;:0.26},{&quot;2026-06-24&quot;:0.26},{&quot;2026-06-25&quot;:0.24},{&quot;2026-06-26&quot;:0.27},{&quot;2026-06-27&quot;:0.26},{&quot;2026-06-28&quot;:0.25},{&quot;2026-06-29&quot;:0.24},{&quot;2026-06-30&quot;:0.23},{&quot;2026-07-01&quot;:0.25},{&quot;2026-07-02&quot;:0.27},{&quot;2026-07-03&quot;:0.22},{&quot;2026-07-04&quot;:0.22},{&quot;2026-07-05&quot;:0.23},{&quot;2026-07-06&quot;:0.22},{&quot;2026-07-07&quot;:0.23},{&quot;2026-07-08&quot;:0.22},{&quot;2026-07-09&quot;:0.23},{&quot;2026-07-10&quot;:0.23},{&quot;2026-07-11&quot;:0.26},{&quot;2026-07-12&quot;:0.26},{&quot;2026-07-13&quot;:0.26},{&quot;2026-07-14&quot;:0.25},{&quot;2026-07-15&quot;:0.27},{&quot;2026-07-16&quot;:0.28},{&quot;2026-07-17&quot;:0.29},{&quot;2026-07-18&quot;:0.3},{&quot;2026-07-19&quot;:0.29},{&quot;2026-07-20&quot;:0.28},{&quot;2026-07-21&quot;:0.27},{&quot;2026-07-22&quot;:0.27},{&quot;2026-07-23&quot;:0.26},{&quot;2026-07-24&quot;:0.26},{&quot;2026-07-25&quot;:0.25},{&quot;2026-07-26&quot;:0.27},{&quot;2026-07-27&quot;:0.27},{&quot;2026-07-28&quot;:0.25},{&quot;2026-07-29&quot;:0.26},{&quot;2026-07-30&quot;:0.26},{&quot;2026-07-31&quot;:0.28},{&quot;2026-08-01&quot;:0.27},{&quot;2026-08-02&quot;:0.28},{&quot;2026-08-03&quot;:0.31},{&quot;2026-08-04&quot;:0.31},{&quot;2026-08-05&quot;:0.31},{&quot;2026-08-07&quot;:0.34},{&quot;2026-08-08&quot;:0.34},{&quot;2026-08-09&quot;:0.34},{&quot;2026-08-10&quot;:0.33},{&quot;2026-08-11&quot;:0.3},{&quot;2026-08-12&quot;:0.31},{&quot;2026-08-13&quot;:0.29},{&quot;2026-08-14&quot;:0.28},{&quot;2026-08-15&quot;:0.28},{&quot;2026-08-16&quot;:0.26},{&quot;2026-08-17&quot;:0.27},{&quot;2026-08-18&quot;:0.26},{&quot;2026-08-19&quot;:0.25},{&quot;2026-08-20&quot;:0.25},{&quot;2026-08-21&quot;:0.25},{&quot;2026-08-22&quot;:0.25},{&quot;2026-08-23&quot;:0.31},{&quot;2026-08-24&quot;:0.31},{&quot;2026-08-25&quot;:0.31},{&quot;2026-08-26&quot;:0.32},{&quot;2026-08-27&quot;:0.31},{&quot;2026-08-28&quot;:0.32},{&quot;2026-08-29&quot;:0.32},{&quot;2026-08-30&quot;:0.26},{&quot;2026-08-31&quot;:0.24},{&quot;2026-09-01&quot;:0.22},{&quot;2026-09-02&quot;:0.24},{&quot;2026-09-03&quot;:0.23},{&quot;2026-09-04&quot;:0.23},{&quot;2026-09-05&quot;:0.24},{&quot;2026-09-06&quot;:0.23},{&quot;2026-09-07&quot;:0.25},{&quot;2026-09-08&quot;:0.27},{&quot;2026-09-09&quot;:0.26},{&quot;2026-09-10&quot;:0.29},{&quot;2026-09-11&quot;:0.29}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="109137"
  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-soc 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">
            Elementalist&#39;s Palette
        </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">
              ↑
              4%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.29
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Elementalist&#39;s Palette" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/f/8/f892e316-95c9-4e68-8eb0-96f71a862f2b.jpg?1782683119" />

        <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">
            Elementalist&#39;s Palette
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            rare
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Artifact</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-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="Elementalist&#39;s Palette" src="https://cards.scryfall.io/large/front/f/8/f892e316-95c9-4e68-8eb0-96f71a862f2b.jpg?1782683119" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.29
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  4%
                </span>
            </div>
          </div>

          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Foil</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $0.00
              </span>

            </div>
          </div>
      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.04</span>
              <span class="text-xs text-grey-text">Credit: $0.05</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-10&quot;:0.46},{&quot;2026-06-11&quot;:0.5},{&quot;2026-06-12&quot;:0.37},{&quot;2026-06-13&quot;:0.35},{&quot;2026-06-14&quot;:0.34},{&quot;2026-06-15&quot;:0.33},{&quot;2026-06-16&quot;:0.33},{&quot;2026-06-17&quot;:0.34},{&quot;2026-06-18&quot;:0.34},{&quot;2026-06-19&quot;:0.33},{&quot;2026-06-20&quot;:0.32},{&quot;2026-06-21&quot;:0.33},{&quot;2026-06-22&quot;:0.3},{&quot;2026-06-23&quot;:0.29},{&quot;2026-06-24&quot;:0.29},{&quot;2026-06-25&quot;:0.3},{&quot;2026-06-26&quot;:0.28},{&quot;2026-06-27&quot;:0.31},{&quot;2026-06-28&quot;:0.32},{&quot;2026-06-29&quot;:0.33},{&quot;2026-06-30&quot;:0.33},{&quot;2026-07-01&quot;:0.3},{&quot;2026-07-02&quot;:0.3},{&quot;2026-07-03&quot;:0.3},{&quot;2026-07-04&quot;:0.32},{&quot;2026-07-05&quot;:0.31},{&quot;2026-07-06&quot;:0.31},{&quot;2026-07-07&quot;:0.3},{&quot;2026-07-08&quot;:0.3},{&quot;2026-07-09&quot;:0.3},{&quot;2026-07-10&quot;:0.29},{&quot;2026-07-11&quot;:0.29},{&quot;2026-07-12&quot;:0.28},{&quot;2026-07-13&quot;:0.29},{&quot;2026-07-14&quot;:0.32},{&quot;2026-07-15&quot;:0.31},{&quot;2026-07-16&quot;:0.31},{&quot;2026-07-17&quot;:0.31},{&quot;2026-07-18&quot;:0.32},{&quot;2026-07-19&quot;:0.32},{&quot;2026-07-20&quot;:0.33},{&quot;2026-07-21&quot;:0.33},{&quot;2026-07-23&quot;:0.33},{&quot;2026-07-25&quot;:0.33},{&quot;2026-07-26&quot;:0.34},{&quot;2026-07-27&quot;:0.34},{&quot;2026-07-29&quot;:0.31},{&quot;2026-07-30&quot;:0.32},{&quot;2026-07-31&quot;:0.33},{&quot;2026-08-01&quot;:0.33},{&quot;2026-08-02&quot;:0.34},{&quot;2026-08-03&quot;:0.35},{&quot;2026-08-04&quot;:0.35},{&quot;2026-08-05&quot;:0.35},{&quot;2026-08-07&quot;:0.35},{&quot;2026-08-08&quot;:0.34},{&quot;2026-08-09&quot;:0.31},{&quot;2026-08-10&quot;:0.32},{&quot;2026-08-11&quot;:0.31},{&quot;2026-08-12&quot;:0.3},{&quot;2026-08-13&quot;:0.3},{&quot;2026-08-14&quot;:0.29},{&quot;2026-08-15&quot;:0.27},{&quot;2026-08-16&quot;:0.27},{&quot;2026-08-17&quot;:0.29},{&quot;2026-08-18&quot;:0.29},{&quot;2026-08-19&quot;:0.29},{&quot;2026-08-20&quot;:0.29},{&quot;2026-08-21&quot;:0.32},{&quot;2026-08-22&quot;:0.33},{&quot;2026-08-23&quot;:0.33},{&quot;2026-08-24&quot;:0.35},{&quot;2026-08-25&quot;:0.35},{&quot;2026-08-26&quot;:0.36},{&quot;2026-08-27&quot;:0.35},{&quot;2026-08-28&quot;:0.33},{&quot;2026-08-29&quot;:0.33},{&quot;2026-08-30&quot;:0.3},{&quot;2026-08-31&quot;:0.28},{&quot;2026-09-01&quot;:0.28},{&quot;2026-09-02&quot;:0.26},{&quot;2026-09-03&quot;:0.26},{&quot;2026-09-04&quot;:0.26},{&quot;2026-09-05&quot;:0.28},{&quot;2026-09-06&quot;:0.28},{&quot;2026-09-07&quot;:0.27},{&quot;2026-09-08&quot;:0.28},{&quot;2026-09-09&quot;:0.28},{&quot;2026-09-10&quot;:0.29},{&quot;2026-09-11&quot;:0.29}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="109185"
  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-soc 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">
            Quandrix Campus
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Land
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-100 text-badge-text">
              ↓
              6%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.29
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Quandrix Campus" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/c/e/ce75bbae-99ff-4822-9835-5372ebaedb07.jpg?1782683083" />

        <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">
            Quandrix Campus
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            common
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Land</span>
        </div>

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Quandrix Campus" src="https://cards.scryfall.io/large/front/c/e/ce75bbae-99ff-4822-9835-5372ebaedb07.jpg?1782683083" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.29
              </span>

                <span class="text-xs text-accent-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">
                $0.00
              </span>

            </div>
          </div>
      </div>


      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-11&quot;:0.23},{&quot;2026-06-12&quot;:0.23},{&quot;2026-06-13&quot;:0.23},{&quot;2026-06-14&quot;:0.22},{&quot;2026-06-15&quot;:0.21},{&quot;2026-06-16&quot;:0.19},{&quot;2026-06-17&quot;:0.19},{&quot;2026-06-18&quot;:0.19},{&quot;2026-06-19&quot;:0.19},{&quot;2026-06-20&quot;:0.19},{&quot;2026-06-21&quot;:0.19},{&quot;2026-06-22&quot;:0.19},{&quot;2026-06-23&quot;:0.19},{&quot;2026-06-24&quot;:0.19},{&quot;2026-06-25&quot;:0.18},{&quot;2026-06-26&quot;:0.18},{&quot;2026-06-27&quot;:0.18},{&quot;2026-06-28&quot;:0.18},{&quot;2026-06-29&quot;:0.17},{&quot;2026-06-30&quot;:0.17},{&quot;2026-07-01&quot;:0.15},{&quot;2026-07-02&quot;:0.15},{&quot;2026-07-03&quot;:0.17},{&quot;2026-07-04&quot;:0.18},{&quot;2026-07-05&quot;:0.18},{&quot;2026-07-06&quot;:0.18},{&quot;2026-07-07&quot;:0.18},{&quot;2026-07-08&quot;:0.18},{&quot;2026-07-09&quot;:0.18},{&quot;2026-07-10&quot;:0.18},{&quot;2026-07-11&quot;:0.18},{&quot;2026-07-12&quot;:0.19},{&quot;2026-07-13&quot;:0.18},{&quot;2026-07-14&quot;:0.17},{&quot;2026-07-15&quot;:0.16},{&quot;2026-07-16&quot;:0.17},{&quot;2026-07-17&quot;:0.17},{&quot;2026-07-18&quot;:0.17},{&quot;2026-07-19&quot;:0.17},{&quot;2026-07-20&quot;:0.17},{&quot;2026-07-21&quot;:0.18},{&quot;2026-07-23&quot;:0.19},{&quot;2026-07-25&quot;:0.2},{&quot;2026-07-26&quot;:0.2},{&quot;2026-07-27&quot;:0.2},{&quot;2026-07-28&quot;:0.21},{&quot;2026-07-29&quot;:0.21},{&quot;2026-07-30&quot;:0.21},{&quot;2026-07-31&quot;:0.22},{&quot;2026-08-01&quot;:0.23},{&quot;2026-08-02&quot;:0.23},{&quot;2026-08-03&quot;:0.23},{&quot;2026-08-04&quot;:0.23},{&quot;2026-08-05&quot;:0.23},{&quot;2026-08-07&quot;:0.26},{&quot;2026-08-08&quot;:0.26},{&quot;2026-08-09&quot;:0.28},{&quot;2026-08-10&quot;:0.28},{&quot;2026-08-11&quot;:0.28},{&quot;2026-08-12&quot;:0.28},{&quot;2026-08-13&quot;:0.28},{&quot;2026-08-14&quot;:0.28},{&quot;2026-08-15&quot;:0.28},{&quot;2026-08-16&quot;:0.28},{&quot;2026-08-17&quot;:0.28},{&quot;2026-08-18&quot;:0.27},{&quot;2026-08-19&quot;:0.28},{&quot;2026-08-20&quot;:0.28},{&quot;2026-08-21&quot;:0.28},{&quot;2026-08-22&quot;:0.29},{&quot;2026-08-23&quot;:0.29},{&quot;2026-08-24&quot;:0.29},{&quot;2026-08-25&quot;:0.29},{&quot;2026-08-26&quot;:0.29},{&quot;2026-08-27&quot;:0.29},{&quot;2026-08-28&quot;:0.29},{&quot;2026-08-29&quot;:0.29},{&quot;2026-08-30&quot;:0.29},{&quot;2026-08-31&quot;:0.3},{&quot;2026-09-01&quot;:0.3},{&quot;2026-09-02&quot;:0.31},{&quot;2026-09-03&quot;:0.31},{&quot;2026-09-04&quot;:0.31},{&quot;2026-09-05&quot;:0.31},{&quot;2026-09-06&quot;:0.29},{&quot;2026-09-07&quot;:0.29},{&quot;2026-09-08&quot;:0.29},{&quot;2026-09-09&quot;:0.29},{&quot;2026-09-10&quot;:0.29},{&quot;2026-09-11&quot;:0.29}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="109201"
  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-soc 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">
            Tangled Islet
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Land — Forest Island
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-50 text-badge-text">
              ↑
              16%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.29
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Tangled Islet" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/b/b/bb1920f1-aab3-4066-8be9-029102886d03.jpg?1782683065" />

        <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">
            Tangled Islet
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            common
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Land — Forest Island</span>
        </div>

      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Tangled Islet" src="https://cards.scryfall.io/large/front/b/b/bb1920f1-aab3-4066-8be9-029102886d03.jpg?1782683065" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.29
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  16%
                </span>
            </div>
          </div>

          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Foil</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $0.00
              </span>

            </div>
          </div>
      </div>

        <div class="grid grid-cols-2 gap-3 mt-3">
            <div class="flex flex-col">
              <span class="text-xs text-grey-text">Sell Regular</span>
              <span class="text-lg font-medium text-nine-white">$0.02</span>
              <span class="text-xs text-grey-text">Credit: $0.03</span>
            </div>
        </div>

      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.31},{&quot;2026-06-14&quot;:0.31},{&quot;2026-06-15&quot;:0.31},{&quot;2026-06-16&quot;:0.3},{&quot;2026-06-17&quot;:0.3},{&quot;2026-06-18&quot;:0.26},{&quot;2026-06-19&quot;:0.26},{&quot;2026-06-20&quot;:0.29},{&quot;2026-06-21&quot;:0.27},{&quot;2026-06-22&quot;:0.26},{&quot;2026-06-23&quot;:0.23},{&quot;2026-06-24&quot;:0.22},{&quot;2026-06-25&quot;:0.22},{&quot;2026-06-26&quot;:0.22},{&quot;2026-06-27&quot;:0.36},{&quot;2026-06-28&quot;:0.35},{&quot;2026-06-29&quot;:0.35},{&quot;2026-06-30&quot;:0.35},{&quot;2026-07-01&quot;:0.34},{&quot;2026-07-02&quot;:0.34},{&quot;2026-07-03&quot;:0.36},{&quot;2026-07-04&quot;:0.39},{&quot;2026-07-05&quot;:0.24},{&quot;2026-07-06&quot;:0.25},{&quot;2026-07-07&quot;:0.27},{&quot;2026-07-08&quot;:0.29},{&quot;2026-07-09&quot;:0.29},{&quot;2026-07-10&quot;:0.29},{&quot;2026-07-11&quot;:0.29},{&quot;2026-07-12&quot;:0.29},{&quot;2026-07-13&quot;:0.29},{&quot;2026-07-14&quot;:0.27},{&quot;2026-07-15&quot;:0.24},{&quot;2026-07-16&quot;:0.24},{&quot;2026-07-17&quot;:0.25},{&quot;2026-07-18&quot;:0.23},{&quot;2026-07-19&quot;:0.21},{&quot;2026-07-20&quot;:0.21},{&quot;2026-07-21&quot;:0.21},{&quot;2026-07-22&quot;:0.21},{&quot;2026-07-23&quot;:0.21},{&quot;2026-07-24&quot;:0.21},{&quot;2026-07-25&quot;:0.22},{&quot;2026-07-26&quot;:0.22},{&quot;2026-07-27&quot;:0.22},{&quot;2026-07-28&quot;:0.22},{&quot;2026-07-29&quot;:0.22},{&quot;2026-07-30&quot;:0.21},{&quot;2026-07-31&quot;:0.21},{&quot;2026-08-01&quot;:0.21},{&quot;2026-08-02&quot;:0.21},{&quot;2026-08-03&quot;:0.21},{&quot;2026-08-04&quot;:0.22},{&quot;2026-08-05&quot;:0.24},{&quot;2026-08-07&quot;:0.25},{&quot;2026-08-08&quot;:0.25},{&quot;2026-08-09&quot;:0.26},{&quot;2026-08-10&quot;:0.27},{&quot;2026-08-11&quot;:0.27},{&quot;2026-08-12&quot;:0.28},{&quot;2026-08-13&quot;:0.28},{&quot;2026-08-14&quot;:0.28},{&quot;2026-08-15&quot;:0.28},{&quot;2026-08-16&quot;:0.28},{&quot;2026-08-17&quot;:0.28},{&quot;2026-08-18&quot;:0.28},{&quot;2026-08-19&quot;:0.29},{&quot;2026-08-20&quot;:0.27},{&quot;2026-08-21&quot;:0.26},{&quot;2026-08-22&quot;:0.24},{&quot;2026-08-23&quot;:0.23},{&quot;2026-08-24&quot;:0.23},{&quot;2026-08-25&quot;:0.23},{&quot;2026-08-26&quot;:0.24},{&quot;2026-08-27&quot;:0.24},{&quot;2026-08-28&quot;:0.24},{&quot;2026-08-29&quot;:0.24},{&quot;2026-08-30&quot;:0.24},{&quot;2026-08-31&quot;:0.23},{&quot;2026-09-01&quot;:0.23},{&quot;2026-09-02&quot;:0.24},{&quot;2026-09-03&quot;:0.24},{&quot;2026-09-04&quot;:0.24},{&quot;2026-09-05&quot;:0.25},{&quot;2026-09-06&quot;:0.23},{&quot;2026-09-07&quot;:0.26},{&quot;2026-09-08&quot;:0.28},{&quot;2026-09-09&quot;:0.28},{&quot;2026-09-10&quot;:0.29},{&quot;2026-09-11&quot;:0.29}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="108852"
  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-soc 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">
            Nexus Mentality
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Instant
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-100 text-badge-text">
              ↓
              10%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.28
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Nexus Mentality" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/d/9/d9ed2ef7-9433-4f2f-957b-b58d2ec391fe.jpg?1782683370" />

        <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">
            Nexus Mentality
        </h3>

        <div class="flex items-center gap-2 mt-1">
          <span class="text-xs text-grey-text capitalize">
            rare
          </span>

          <span class="text-grey-text">·</span>
          <span class="text-xs text-grey-text">Instant</span>
        </div>

          <div class="flex items-center mt-2 space-x-0.5">
            <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
          </div>
      </div>
    </div>

    <!-- Full Image (Hidden by default) -->
    <div
      data-mobile-card-target="fullImage"
      class="hidden p-4 bg-menu/50 border-t border-highlight/50"
    >
        <img class="w-full max-w-xs mx-auto h-auto rounded-2xl" alt="Nexus Mentality" src="https://cards.scryfall.io/large/front/d/9/d9ed2ef7-9433-4f2f-957b-b58d2ec391fe.jpg?1782683370" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.28
              </span>

                <span class="text-xs text-accent-100">
                  ↓
                  10%
                </span>
            </div>
          </div>

          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Foil</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $0.00
              </span>

            </div>
          </div>
      </div>


      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-13&quot;:0.27},{&quot;2026-06-14&quot;:0.27},{&quot;2026-06-15&quot;:0.26},{&quot;2026-06-16&quot;:0.26},{&quot;2026-06-17&quot;:0.25},{&quot;2026-06-18&quot;:0.23},{&quot;2026-06-19&quot;:0.27},{&quot;2026-06-20&quot;:0.29},{&quot;2026-06-21&quot;:0.29},{&quot;2026-06-22&quot;:0.3},{&quot;2026-06-23&quot;:0.31},{&quot;2026-06-24&quot;:0.3},{&quot;2026-06-25&quot;:0.29},{&quot;2026-06-26&quot;:0.29},{&quot;2026-06-27&quot;:0.27},{&quot;2026-06-28&quot;:0.26},{&quot;2026-06-29&quot;:0.28},{&quot;2026-06-30&quot;:0.28},{&quot;2026-07-01&quot;:0.28},{&quot;2026-07-02&quot;:0.29},{&quot;2026-07-03&quot;:0.29},{&quot;2026-07-04&quot;:0.34},{&quot;2026-07-05&quot;:0.32},{&quot;2026-07-06&quot;:0.37},{&quot;2026-07-07&quot;:0.37},{&quot;2026-07-08&quot;:0.37},{&quot;2026-07-09&quot;:0.36},{&quot;2026-07-10&quot;:0.35},{&quot;2026-07-11&quot;:0.34},{&quot;2026-07-12&quot;:0.33},{&quot;2026-07-13&quot;:0.3},{&quot;2026-07-14&quot;:0.29},{&quot;2026-07-15&quot;:0.3},{&quot;2026-07-16&quot;:0.31},{&quot;2026-07-17&quot;:0.28},{&quot;2026-07-18&quot;:0.28},{&quot;2026-07-19&quot;:0.3},{&quot;2026-07-20&quot;:0.29},{&quot;2026-07-21&quot;:0.3},{&quot;2026-07-22&quot;:0.31},{&quot;2026-07-23&quot;:0.31},{&quot;2026-07-24&quot;:0.33},{&quot;2026-07-25&quot;:0.33},{&quot;2026-07-26&quot;:0.35},{&quot;2026-07-27&quot;:0.33},{&quot;2026-07-28&quot;:0.34},{&quot;2026-07-29&quot;:0.34},{&quot;2026-07-30&quot;:0.34},{&quot;2026-07-31&quot;:0.33},{&quot;2026-08-01&quot;:0.33},{&quot;2026-08-02&quot;:0.32},{&quot;2026-08-03&quot;:0.33},{&quot;2026-08-04&quot;:0.33},{&quot;2026-08-05&quot;:0.33},{&quot;2026-08-07&quot;:0.33},{&quot;2026-08-08&quot;:0.32},{&quot;2026-08-09&quot;:0.32},{&quot;2026-08-10&quot;:0.31},{&quot;2026-08-11&quot;:0.32},{&quot;2026-08-12&quot;:0.32},{&quot;2026-08-13&quot;:0.32},{&quot;2026-08-14&quot;:0.33},{&quot;2026-08-15&quot;:0.33},{&quot;2026-08-16&quot;:0.3},{&quot;2026-08-17&quot;:0.31},{&quot;2026-08-18&quot;:0.29},{&quot;2026-08-19&quot;:0.29},{&quot;2026-08-20&quot;:0.28},{&quot;2026-08-21&quot;:0.27},{&quot;2026-08-22&quot;:0.26},{&quot;2026-08-23&quot;:0.26},{&quot;2026-08-24&quot;:0.25},{&quot;2026-08-25&quot;:0.25},{&quot;2026-08-26&quot;:0.25},{&quot;2026-08-27&quot;:0.25},{&quot;2026-08-28&quot;:0.26},{&quot;2026-08-29&quot;:0.26},{&quot;2026-08-30&quot;:0.27},{&quot;2026-08-31&quot;:0.28},{&quot;2026-09-01&quot;:0.32},{&quot;2026-09-02&quot;:0.31},{&quot;2026-09-03&quot;:0.32},{&quot;2026-09-04&quot;:0.31},{&quot;2026-09-05&quot;:0.31},{&quot;2026-09-06&quot;:0.26},{&quot;2026-09-07&quot;:0.26},{&quot;2026-09-08&quot;:0.27},{&quot;2026-09-09&quot;:0.27},{&quot;2026-09-10&quot;:0.28},{&quot;2026-09-11&quot;:0.28}]}"
        class="w-full"
        style="max-height: 275px;"
      ></canvas>
    </div>
  </div>
</div>

          </div>
        </div>
    </div>

    <!-- Quick Actions -->

    <!-- Destructive Action (Admin Only) -->
  </div>
</div>

    
<div
  data-controller="mobile-card"
  data-mobile-card-card-id-value="108873"
  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-soc 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">
            Lattice Library
        </span>


      </div>

      <!-- Card Type -->
      <div class="text-xs text-grey-text truncate mt-0.5">
        Enchantment
      </div>

      <!-- Quantity & Price Row -->
      <div class="flex items-center justify-between mt-1.5">
          <div class="text-xs text-grey-text">
            1 owned
          </div>

        <!-- Primary Price with Trend -->
        <div class="flex items-center gap-1.5 flex-shrink-0 ml-auto">
            <span class="px-1.5 py-0.5 text-xs rounded-full bg-accent-50 text-badge-text">
              ↑
              40%
            </span>

          <span class="text-sm font-medium text-nine-white">
            $0.28
          </span>
        </div>
      </div>
    </div>

    <!-- Expand/Collapse Indicator -->
    <div
      data-mobile-card-target="chevron"
      class="text-grey-text transition-transform duration-200 flex-shrink-0"
    >
      <svg
        xmlns="http://www.w3.org/2000/svg"
        class="w-5 h-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
      >
        <path
          stroke-linecap="round"
          stroke-linejoin="round"
          stroke-width="2"
          d="M19 9l-7 7-7-7"
        />
      </svg>
    </div>
  </div>

  <!-- Expanded State -->
  <div
    data-mobile-card-target="content"
    class="hidden border-t border-highlight overflow-hidden"
    style="transition: max-height 250ms ease-out;"
  >
    <!-- Card Header with Thumbnail -->
    <div class="flex items-start gap-4 p-4 bg-menu/50">
      <button
        data-action="click->mobile-card#toggleImage"
        class="flex-shrink-0 focus:outline-none"
      >
        <img alt="Lattice Library" class="w-16 h-auto rounded-lg" loading="lazy" src="https://cards.scryfall.io/small/front/5/1/51aa3511-e588-4b40-b98c-c5dc3a05bb2d.jpg?1782683353" />

        <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">
            Lattice Library
        </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-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="Lattice Library" src="https://cards.scryfall.io/large/front/5/1/51aa3511-e588-4b40-b98c-c5dc3a05bb2d.jpg?1782683353" />
    </div>

    <!-- Ownership Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Ownership
      </h4>

      <div class="grid grid-cols-2 gap-3">
        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Regular</span>

          <span class="text-lg font-medium text-nine-white">
            1
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>

        <div class="flex flex-col">
          <span class="text-xs text-grey-text">Proxy Foil</span>

          <span class="text-lg font-medium text-grey-text">
            0
          </span>
        </div>
      </div>
    </div>

    <!-- Price Section -->
    <div class="p-4 border-t border-highlight/50">
      <h4 class="text-xs font-semibold tracking-wider uppercase text-grey-text mb-3">
        Prices
      </h4>

      <div class="grid grid-cols-2 gap-3">
          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Regular</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-nine-white">
                $0.28
              </span>

                <span class="text-xs text-accent-50">
                  ↑
                  40%
                </span>
            </div>
          </div>

          <div class="flex flex-col">
            <span class="text-xs text-grey-text">Foil</span>

            <div class="flex items-center gap-1.5">
              <span class="text-lg font-medium text-purple-400">
                $0.00
              </span>

            </div>
          </div>
      </div>


      <!-- Price History Toggle -->
        <button
          data-action="click->mobile-card#toggleChart"
          data-mobile-card-target="chartToggle"
          class="
            flex items-center gap-2 mt-4 text-sm text-accent-50
            hover:text-nine-white transition-colors
          "
        >
          <svg
            xmlns="http://www.w3.org/2000/svg"
            class="w-4 h-4"
            fill="none"
            viewBox="0 0 24 24"
            stroke="currentColor"
          >
            <path
              stroke-linecap="round"
              stroke-linejoin="round"
              stroke-width="2"
              d="M7 12l3-3 3 3 4-4M8 21l4-4 4 4M3 4h18M4 4h16v12a1 1 0 01-1 1H5a1 1 0 01-1-1V4z"
            />
          </svg>

          <span data-mobile-card-target="chartToggleText">
            Show price history
          </span>
        </button>
        <div
          data-mobile-card-target="chart"
          class="hidden mt-4 -mx-2 overflow-x-auto"
        >
          <div class="min-w-[300px] px-2">
            <div
  class="
    flex flex-col items-center w-full h-auto px-8 py-4 mt-2 rounded-xl
    bg-background
  "
>
  <div class="flex flex-row w-full h-full md:w-full">
    <div data-controller="card-price-chart" class="w-full p-0 bg-background">
      <canvas
        id="small-users-chart"
        data-card-price-chart-target="cardPriceChart"
        data-card-price-chart-events="{&quot;foil&quot;:[],&quot;normal&quot;:[{&quot;2026-06-12&quot;:0.26},{&quot;2026-06-13&quot;:0.28},{&quot;2026-06-14&quot;:0.27},{&quot;2026-06-15&quot;:0.26},{&quot;2026-06-16&quot;:0.25},{&quot;2026-06-17&quot;:0.26},{&quot;2026-06-18&quot;:0.23},{&quot;2026-06-19&quot;:0.24},{&quot;2026-06-20&quot;:0.27},{&quot;2026-06-21&quot;:0.28},{&quot;2026-06-22&quot;:0.29},{&quot;2026-06-23&quot;:0.3},{&quot;2026-06-24&quot;:0.32},{&quot;2026-06-25&quot;:0.3},{&quot;2026-06-26&quot;:0.3},{&quot;2026-06-27&quot;:0.29},{&quot;2026-06-28&quot;:0.27},{&quot;2026-06-29&quot;:0.27},{&quot;2026-06-30&quot;:0.26},{&quot;2026-07-01&quot;:0.26},{&quot;2026-07-02&quot;:0.26},{&quot;2026-07-03&quot;:0.24},{&quot;2026-07-04&quot;:0.25},{&quot;2026-07-05&quot;:0.24},{&quot;2026-07-06&quot;:0.24},{&quot;2026-07-07&quot;:0.24},{&quot;2026-07-08&quot;:0.22},{&quot;2026-07-09&quot;:0.22},{&quot;2026-07-10&quot;:0.22},{&quot;2026-07-11&quot;:0.23},{&quot;2026-07-12&quot;:0.23},{&quot;2026-07-13&quot;:0.21},{&quot;2026-07-14&quot;:0.21},{&quot;2026-07-15&quot;:0.24},{&quot;2026-07-16&quot;:0.25},{&quot;2026-07-17&quot;:0.24},{&quot;2026-07-18&quot;:0.27},{&quot;2026-07-19&quot;:0.26},{&quot;2026-07-20&quot;:0.26},{&quot;2026-07-21&quot;:0.25},{&quot;2026-07-23&quot;:0.27},{&quot;2026-07-24&quot;:0.28},{&quot;2026-07-25&quot;:0.27},{&quot;2026-07-26&quot;:0.27},{&quot;2026-07-27&quot;:0.24},{&quot;2026-07-28&quot;:0.24},{&quot;2026-07-29&quot;:0.23},{&quot;2026-07-30&quot;:0.23},{&quot;2026-07-31&quot;:0.24},{&quot;2026-08-01&quot;:0.26},{&quot;2026-08-02&quot;:0.28},{&quot;2026-08-03&quot;:0.29},{&quot;2026-08-04&quot;:0.3},{&quot;2026-08-05&quot;:0.32},{&quot;2026-08-07&quot;:0.32},{&quot;2026-08-08&quot;:0.33},{&quot;2026-08-09&quot;:0.32},{&quot;2026-08-10&quot;:0.31},{&quot;2026-08-11&quot;:0.31},{&quot;2026-08-12&quot;:0.29},{&quot;2026-08-13&quot;:0.28},{&quot;2026-08-14&quot;:0.28},{&quot;2026-08-15&quot;:0.27},{&quot;2026-08-16&quot;:0.24},{&quot;2026-08-17&quot;:0.23},{&quot;2026-08-18&quot;:0.22},{&quot;2026-08-19&quot;:0.23},{&quot;2026-08-20&quot;:0.23},{&quot;2026-08-21&quot;:0.21},{&quot;2026-08-22&quot;:0.21},{&quot;2026-08-23&quot;:0.2},{&quot;2026-08-24&quot;:0.21},{&quot;2026-08-25&quot;:0.21},{&quot;2026-08-26&quot;:0.21},{&quot;2026-08-27&quot;:0.22},{&quot;2026-08-28&quot;:0.24},{&quot;2026-08-29&quot;:0.24},{&quot;2026-08-30&quot;:0.23},{&quot;2026-08-31&quot;:0.22},{&quot;2026-09-01&quot;:0.22},{&quot;2026-09-02&quot;:0.23},{&quot;2026-09-03&quot;:0.22},{&quot;2026-09-04&quot;:0.21},{&quot;2026-09-05&quot;:0.2},{&quot;2026-09-06&quot;:0.19},{&quot;2026-09-07&quot;:0.2},{&quot;2026-09-08&quot;:0.2},{&quot;2026-09-09&quot;:0.22},{&quot;2026-09-10&quot;:0.28},{&quot;2026-09-11&quot;:0.28}]}"
        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 91 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=328&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next">2</a><a href="/load_collection?collection_id=328&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=328&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=328&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=328&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=328&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=328&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=328&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=328&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=328&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=328&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="109071"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              281
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Ozolith, the Shattered Spire


            </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-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $7.51

                    <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.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.35
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109071"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109071" src="/boxset_card/109071?collection_id=328&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109079"
          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">
              289
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-uncommon ss-fw ss-2x mr-4"></i>
              Three Visits


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $7.16

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      10%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $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.22
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109079"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109079" src="/boxset_card/109079?collection_id=328&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108898"
          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-soc ss-rare ss-fw ss-2x mr-4"></i>
              Turbulent Wilderness


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land — Forest Island
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $6.29

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $4.20
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108898"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108898" src="/boxset_card/108898?collection_id=328&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109064"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              273
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-uncommon ss-fw ss-2x mr-4"></i>
              Kami of Whispered Hopes


            </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-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">
                  $4.71

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      13%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $2.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.40
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109064"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109064" src="/boxset_card/109064?collection_id=328&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109063"
          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">
              272
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Hardened Scales


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Enchantment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.96

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      14%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $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.42
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109063"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109063" src="/boxset_card/109063?collection_id=328&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109188"
          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">
              398
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-uncommon ss-fw ss-2x mr-4"></i>
              Reliquary Tower


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.78

                    <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">
                $3.25
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.20
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109188"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109188" src="/boxset_card/109188?collection_id=328&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109061"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              270
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-mythic ss-fw ss-2x mr-4"></i>
              Goldvein Hydra


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Hydra
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-x'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $3.29

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      10%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $2.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.38
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109061"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109061" src="/boxset_card/109061?collection_id=328&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109068"
          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">
              278
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-uncommon ss-fw ss-2x mr-4"></i>
              Nature&#39;s Lore


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.98

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      13%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $1.10
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.24
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109068"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109068" src="/boxset_card/109068?collection_id=328&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108919"
          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">
              126
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-mythic ss-fw ss-2x mr-4"></i>
              Unbound Flourishing


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Enchantment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.43

                    <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.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.47
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108919"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108919" src="/boxset_card/108919?collection_id=328&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108850"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              19
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Expansion Algorithm


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-x'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $2.12

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      14%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.95
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108850"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108850" src="/boxset_card/108850?collection_id=328&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109074"
          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">
              284
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-mythic ss-fw ss-2x mr-4"></i>
              Primordial Hydra


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Hydra
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-x'></i><i class='no-tailwind ms ms-cost ml-0 ms-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.58

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      13%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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="109074"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109074" src="/boxset_card/109074?collection_id=328&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108921"
          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">
              128
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc 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.39

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      30%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.90
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                1.46
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108921"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108921" src="/boxset_card/108921?collection_id=328&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109081"
          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">
              291
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-uncommon ss-fw ss-2x mr-4"></i>
              Tyvar&#39;s Stand


            </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>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.22

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      2%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $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.26
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109081"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109081" src="/boxset_card/109081?collection_id=328&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109062"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              271
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Guardian Augmenter


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Troll Wizard
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.08

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      16%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.28
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109062"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109062" src="/boxset_card/109062?collection_id=328&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108923"
          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">
              130
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Fabled Passage


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $1.05

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      19%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.80
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.10
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108923"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108923" src="/boxset_card/108923?collection_id=328&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108990"
          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">
              198
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-uncommon ss-fw ss-2x mr-4"></i>
              Rapid Hybridization


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <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">
                      ↓
                      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.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.32
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108990"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108990" src="/boxset_card/108990?collection_id=328&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108917"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              124
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Benevolent Hydra


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Hydra
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-x'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.82

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      8%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </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.36
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108917"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108917" src="/boxset_card/108917?collection_id=328&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109070"
          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">
              280
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Open the Way


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-x'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.73

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      6%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.45
            </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="109070"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109070" src="/boxset_card/109070?collection_id=328&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109054"
          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">
              263
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-uncommon ss-fw ss-2x mr-4"></i>
              Beast Within


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.66

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      8%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.72
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.32
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109054"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109054" src="/boxset_card/109054?collection_id=328&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109159"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              369
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Exotic Orchard


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.66

                    <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.09
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.14
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109159"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109159" src="/boxset_card/109159?collection_id=328&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108838"
          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">
              6
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-mythic ss-fw ss-2x mr-4"></i>
              Primo, the Unbounded


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Fractal Wolf
            </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><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.57

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      14%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108838"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108838" src="/boxset_card/108838?collection_id=328&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108920"
          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">
              127
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-uncommon ss-fw ss-2x mr-4"></i>
              Arcane Signet


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-2'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.53

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.33
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.24
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108920"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108920" src="/boxset_card/108920?collection_id=328&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109190"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              400
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-uncommon ss-fw ss-2x mr-4"></i>
              Rogue&#39;s Passage


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.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">
                $0.26
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.35
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109190"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109190" src="/boxset_card/109190?collection_id=328&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109150"
          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">
              360
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Alchemist&#39;s Refuge


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.39

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.20
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.21
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109150"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109150" src="/boxset_card/109150?collection_id=328&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109181"
          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-soc ss-rare ss-fw ss-2x mr-4"></i>
              Oran-Rief, the Vastwood


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.38

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      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.17
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.19
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109181"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109181" src="/boxset_card/109181?collection_id=328&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109052"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              261
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Animist&#39;s Awakening


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-x'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.37

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      8%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.30
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109052"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109052" src="/boxset_card/109052?collection_id=328&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109076"
          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">
              286
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Silkguard


            </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>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.37

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      14%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.33
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.25
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109076"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109076" src="/boxset_card/109076?collection_id=328&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109196"
          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-soc ss-rare ss-fw ss-2x mr-4"></i>
              Sodden Verdure


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land — Forest Island
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.37

                </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.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109196"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109196" src="/boxset_card/109196?collection_id=328&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108207"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              10
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-mythic ss-fw ss-2x mr-4"></i>
              Zimone, Infinite Analyst


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Human Wizard
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-1'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.36

                    <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">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108207"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108207" src="/boxset_card/108207?collection_id=328&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109215"
          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">
              425
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Yavimaya Coast


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.36

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      20%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $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.09
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109215"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109215" src="/boxset_card/109215?collection_id=328&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109058"
          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-soc ss-rare ss-fw ss-2x mr-4"></i>
              Forgotten Ancient


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Elemental
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.35

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      5%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.08
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.37
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109058"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109058" src="/boxset_card/109058?collection_id=328&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109078"
          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">
              288
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Steelbane Hydra


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Turtle Hydra
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-x'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.34

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.08
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.15
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109078"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109078" src="/boxset_card/109078?collection_id=328&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108985"
          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">
              193
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Deekah, Fractal Theorist


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Legendary Creature — Human Wizard
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-4'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.33

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      18%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.11
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.32
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108985"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108985" src="/boxset_card/108985?collection_id=328&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109065"
          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">
              274
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Lifeblood Hydra


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Hydra
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-x'></i><i class='no-tailwind ms ms-cost ml-0 ms-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">
                  $0.33

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      6%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.20
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.18
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109065"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109065" src="/boxset_card/109065?collection_id=328&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109204"
          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-soc ss-rare ss-fw ss-2x mr-4"></i>
              Temple of Mystery


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.33

                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.08
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.11
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109204"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109204" src="/boxset_card/109204?collection_id=328&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109094"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              304
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-uncommon ss-fw ss-2x mr-4"></i>
              Decisive Denial


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-g'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.32

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      7%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.01
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.13
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109094"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109094" src="/boxset_card/109094?collection_id=328&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109147"
          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">
              356
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Stonecoil Serpent


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact Creature — Snake
            </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>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.32

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      20%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $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.25
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109147"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109147" src="/boxset_card/109147?collection_id=328&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109139"
          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">
              348
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Hangarback Walker


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact Creature — Construct
            </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-x'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.31

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.05
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.34
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109139"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109139" src="/boxset_card/109139?collection_id=328&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109171"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              381
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Hinterland Harbor


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.31

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      14%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.08
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109171"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109171" src="/boxset_card/109171?collection_id=328&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108922"
          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">
              129
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-common ss-fw ss-2x mr-4"></i>
              Command Tower


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.30

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      12%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.08
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.38
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108922"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108922" src="/boxset_card/108922?collection_id=328&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109073"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              283
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Primal Might


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Sorcery
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-x'></i><i class='no-tailwind ms ms-cost ml-0 ms-g'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.30

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-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">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.14
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109073"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109073" src="/boxset_card/109073?collection_id=328&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108853"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              22
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Owlin Spiralmancer


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Bird Wizard
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.29

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      6%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108853"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108853" src="/boxset_card/108853?collection_id=328&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108872"
          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">
              39
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Kinetic Ooze


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Ooze
            </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>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.29

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      3%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.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.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108872"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108872" src="/boxset_card/108872?collection_id=328&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108877"
          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">
              44
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Yavimaya Bloomsage // Channel


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Dryad 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">
                  $0.29

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      12%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108877"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108877" src="/boxset_card/108877?collection_id=328&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109096"
          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">
              306
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Elusive Otter // Grove&#39;s Bounty


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Creature — Otter
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.29

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      21%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.24
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109096"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109096" src="/boxset_card/109096?collection_id=328&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109137"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              346
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Elementalist&#39;s Palette


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Artifact
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.29

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      4%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.04
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109137"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109137" src="/boxset_card/109137?collection_id=328&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109185"
          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">
              395
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-common ss-fw ss-2x mr-4"></i>
              Quandrix Campus


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.29

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      6%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.07
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109185"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109185" src="/boxset_card/109185?collection_id=328&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="109201"
          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">
              411
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-common ss-fw ss-2x mr-4"></i>
              Tangled Islet


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Land — Forest Island
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.29

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      16%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                $0.02
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.09
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="109201"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_109201" src="/boxset_card/109201?collection_id=328&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108852"
          class="
            border border-background text-grey-text bg-foreground
            hover:bg-menu hover:cursor-pointer
          "
        >
            <td class="pl-4 pr-0 text-sm py-7 whitespace-nowrap">
              21
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Nexus Mentality


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Instant
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-3'></i><i class='no-tailwind ms ms-cost ml-0 ms-u'></i>
              </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
                <div class="flex items-center gap-2">
                  $0.28

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-100 text-badge-text">
                      ↓
                      10%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108852"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108852" src="/boxset_card/108852?collection_id=328&amp;show_other_printings=true&amp;username=denvermullets"></turbo-frame>
          </td>
        </tr>

        <tr
          data-action="click->expandable-row#toggle"
          data-card-id="108873"
          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">
              40
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <i class="drop-shadow-nine py-1 rounded-xl ss ss-grad ss-soc ss-rare ss-fw ss-2x mr-4"></i>
              Lattice Library


            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
              Enchantment
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
              <div class="flex items-center m-0 space-x-1">
                <i class='no-tailwind ms ms-cost ml-0 ms-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">
                  $0.28

                    <span class="px-2 py-1 text-xs rounded-full bg-accent-50 text-badge-text">
                      ↑
                      40%
                    </span>
                </div>
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="px-4 py-2 text-sm whitespace-nowrap">
            </td>

            <td class="hidden px-4 py-2 text-sm whitespace-nowrap lg:table-cell">
                0.00
            </td>
        </tr>

        <tr
          data-expandable-row-target="content"
          data-card-id="108873"
          class="hidden border border-background"
        >
          <td colspan="9">
            <turbo-frame loading="lazy" id="card_details_108873" src="/boxset_card/108873?collection_id=328&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 91 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=328&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next">2</a><a href="/load_collection?collection_id=328&amp;direction=asc&amp;username=denvermullets&amp;page=2" rel="next" aria-label="Next">&gt;</a></nav>
    </div>
</div>

</template></turbo-stream>