
  :root {
    --gold: #C9A84C; --gold-light: #E8C97A; --gold-dim: #7A6030;
    --dark: #0D0D0F; --dark-2: #141418; --dark-3: #1C1C22; --dark-4: #252530; --dark-5: #2E2E3A;
    --text: #F0EAD6; --text-muted: #9A9080; --text-dim: #5A5448;
    --border: rgba(201,168,76,0.18); --border-bright: rgba(201,168,76,0.4);
    --sidebar-w: 220px;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  body { font-family: 'DM Sans', sans-serif; background: var(--dark); color: var(--text); min-height: 100vh; overflow-x: hidden; }
  body::before { content: ''; position: fixed; inset: 0; background-image: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(201,168,76,0.08) 0%, transparent 70%); pointer-events: none; z-index: 0; }

  /* NAV */
  nav { position: sticky; top: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 0.9rem 2rem; background: rgba(13,13,15,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
  .nav-logo { font-family: 'Cinzel', serif; font-size: 1.1rem; font-weight: 700; letter-spacing: 0.08em; color: var(--gold); }
  .nav-logo span { color: var(--text); }
  .nav-links { display: flex; gap: 1.5rem; }
  nav a { font-size: 0.78rem; color: var(--text-muted); text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.2s; }
  nav a:hover { color: var(--gold); }

  /* HERO */
  .hero { position: relative; z-index: 1; text-align: center; padding: 4rem 2rem 3rem; }
  .hero-title { font-family: 'Cinzel', serif; font-size: clamp(2.5rem, 7vw, 5rem); font-weight: 700; line-height: 1; letter-spacing: 0.04em; color: var(--text); animation: fadeUp 0.8s ease both; }
  .hero-title .accent { color: var(--gold); }
  .hero-sub { font-family: 'Crimson Text', serif; font-style: italic; font-size: 1.1rem; color: var(--text-muted); margin-top: 0.75rem; animation: fadeUp 0.8s 0.1s ease both; }
  .hero-divider { width: 100px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 1.5rem auto; }
  .hero-badges { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
  .badge-pill { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.8rem; border: 1px solid var(--border); border-radius: 20px; color: var(--text-muted); background: rgba(201,168,76,0.04); }

  /* IMPORT */
  .import-section { position: relative; z-index: 1; max-width: 750px; margin: 0 auto 2rem; padding: 0 2rem; }
  .import-box { background: var(--dark-3); border: 1px solid var(--border); border-radius: 14px; padding: 1.25rem; }
  .import-title { font-family: 'Cinzel', serif; font-size: 0.85rem; color: var(--gold); margin-bottom: 0.35rem; }
  .import-desc { font-size: 0.78rem; color: var(--text-dim); margin-bottom: 0.85rem; line-height: 1.5; }
  .import-desc strong { color: var(--text-muted); }
  textarea { width: 100%; height: 110px; background: var(--dark-5); border: 1px solid var(--border); border-radius: 8px; color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 0.8rem; padding: 0.65rem 0.9rem; resize: vertical; outline: none; transition: border-color 0.2s; line-height: 1.6; }
  textarea:focus { border-color: var(--border-bright); }
  textarea::placeholder { color: var(--text-dim); }
  .import-controls { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.85rem; flex-wrap: wrap; }
  .btn-gold { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.6rem 1.4rem; background: var(--gold); color: var(--dark); font-family: 'DM Sans', sans-serif; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; border: none; border-radius: 8px; cursor: pointer; text-decoration: none; transition: background 0.2s, transform 0.15s; }
  .btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
  .btn-gold:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
  .btn-ghost { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.6rem 1.4rem; background: transparent; color: var(--text-muted); font-family: 'DM Sans', sans-serif; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; border: 1px solid var(--border); border-radius: 8px; cursor: pointer; text-decoration: none; transition: border-color 0.2s, color 0.2s; }
  .btn-ghost:hover { border-color: var(--border-bright); color: var(--text); }
  .progress-bar-wrap { margin-top: 0.85rem; display: none; }
  .progress-bar-bg { height: 3px; background: var(--dark-5); border-radius: 4px; overflow: hidden; }
  .progress-bar-fill { height: 3px; background: var(--gold); border-radius: 4px; width: 0%; transition: width 0.3s; }
  .progress-text { font-size: 0.72rem; color: var(--text-dim); margin-top: 0.4rem; }
  .save-status { font-size: 0.72rem; margin-top: 0.6rem; color: var(--text-dim); min-height: 1.1em; }
  .save-status.ok { color: #6DBF6D; }
  .save-status.err { color: #E0A94F; }
  .save-status button { margin-left: 0.6rem; padding: 0.2rem 0.6rem; background: var(--gold); color: var(--dark); border: none; border-radius: 5px; font-size: 0.68rem; font-weight: 600; cursor: pointer; }

  /* MAIN LAYOUT */
  .shop-layout { display: flex; gap: 0; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem 4rem; position: relative; z-index: 1; }

  /* SIDEBAR */
  .sidebar { width: var(--sidebar-w); min-width: var(--sidebar-w); padding-right: 1.5rem; }
  .sidebar-section { margin-bottom: 1.5rem; border-bottom: 1px solid var(--border); padding-bottom: 1.25rem; }
  .sidebar-section:last-child { border-bottom: none; }
  .sidebar-toggle { width: 100%; display: flex; align-items: center; justify-content: space-between; background: none; border: none; color: var(--text-muted); font-family: 'DM Sans', sans-serif; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer; padding: 0.5rem 0; transition: color 0.2s; }
  .sidebar-toggle:hover { color: var(--gold); }
  .sidebar-toggle .arrow { font-size: 0.65rem; transition: transform 0.2s; }
  .sidebar-toggle.open .arrow { transform: rotate(180deg); }
  .sidebar-body { padding-top: 0.75rem; display: flex; flex-direction: column; gap: 0.4rem; }
  .sidebar-body.hidden { display: none; }
  .filter-opt { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; padding: 0.2rem 0; }
  .filter-opt input[type=checkbox] { accent-color: var(--gold); width: 13px; height: 13px; cursor: pointer; }
  .filter-opt label { font-size: 0.8rem; color: var(--text-muted); cursor: pointer; transition: color 0.15s; user-select: none; }
  .filter-opt:hover label { color: var(--text); }
  .filter-opt input:checked + label { color: var(--gold); }

  /* Mana symbols */
  .mana { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; border-radius: 50%; font-size: 0.65rem; font-weight: 700; flex-shrink: 0; }
  .mana-W { background: #F9FAF4; color: #333; }
  .mana-U { background: #1A6BAA; color: #fff; }
  .mana-B { background: #21201E; color: #ccc; border: 1px solid #555; }
  .mana-R { background: #C23B22; color: #fff; }
  .mana-G { background: #2D6B3C; color: #fff; }
  .mana-C { background: #9C9C9C; color: #fff; }

  /* Rarity dots */
  .rarity-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
  .r-C { background: #9A9080; }
  .r-U { background: #7BA7BC; }
  .r-R { background: #C9A84C; }
  .r-M { background: #E8573A; }

  /* Price range */
  .price-range { display: flex; gap: 0.5rem; align-items: center; margin-top: 0.5rem; }
  .price-range input { width: 70px; background: var(--dark-5); border: 1px solid var(--border); border-radius: 6px; color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 0.78rem; padding: 0.3rem 0.5rem; outline: none; }
  .price-range input:focus { border-color: var(--border-bright); }
  .price-range span { color: var(--text-dim); font-size: 0.75rem; }

  /* MAIN CONTENT */
  .main-content { flex: 1; min-width: 0; }
  .top-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; gap: 1rem; flex-wrap: wrap; }
  .search-bar-wrap { margin-bottom: 1.25rem; }
  .search-input { width: 100%; padding: 0.7rem 1rem; border-radius: 8px; border: 1px solid var(--border); background: var(--dark-3); color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 0.85rem; }
  .search-input::placeholder { color: var(--text-muted); }
  .search-input:focus { outline: none; border-color: var(--gold); }
  .result-count { font-size: 0.78rem; color: var(--text-dim); }
  .view-sort { display: flex; align-items: center; gap: 0.75rem; }
  .sort-select { background: var(--dark-4); color: var(--text); border: 1px solid var(--border); border-radius: 6px; padding: 0.35rem 0.6rem; font-size: 0.78rem; font-family: 'DM Sans', sans-serif; cursor: pointer; outline: none; }
  .view-btns { display: flex; gap: 0.3rem; }
  .view-btn { width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; background: var(--dark-4); border: 1px solid var(--border); border-radius: 6px; cursor: pointer; color: var(--text-dim); font-size: 0.85rem; transition: border-color 0.2s, color 0.2s; }
  .view-btn.active { border-color: var(--gold); color: var(--gold); }

  /* GRID VIEW */
  .card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 1rem; }
  .mtg-card-grid { background: var(--dark-3); border: 1px solid var(--border); border-radius: 10px; overflow: visible; position: relative; z-index: 1; transition: transform 0.25s, box-shadow 0.25s, z-index 0s; animation: fadeUp 0.4s ease both; cursor: pointer; }
  .mtg-card-grid:hover { transform: scale(1.12); box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,168,76,0.4); z-index: 20; }
  .mtg-card-grid.reserved { opacity: 0.6; }
  .grid-img-wrap { width: 100%; aspect-ratio: 3/4; background: var(--dark-5); border-radius: 10px 10px 0 0; overflow: hidden; position: relative; }
  .grid-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .grid-img-wrap .card-placeholder { font-size: 0.65rem; }
  .grid-status { position: absolute; top: 6px; right: 6px; font-size: 0.55rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.15rem 0.5rem; border-radius: 20px; font-weight: 500; }
  .grid-status.available { background: rgba(201,168,76,0.15); color: var(--gold-light); border: 1px solid rgba(201,168,76,0.3); }
  .grid-status.reserved { background: rgba(180,80,0,0.2); color: #E8A060; border: 1px solid rgba(180,80,0,0.4); }
  .grid-body { padding: 0.6rem 0.7rem 0.7rem; }
  .grid-name { font-family: 'Cinzel', serif; font-size: 0.68rem; font-weight: 600; color: var(--text); margin-bottom: 0.15rem; line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .grid-set { font-size: 0.62rem; color: var(--text-dim); margin-bottom: 0.4rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .grid-price { font-family: 'Cinzel', serif; font-size: 0.82rem; font-weight: 600; color: var(--gold); }
  .grid-buy { display: block; width: 100%; margin-top: 0.5rem; padding: 0.4rem 0; background: #5B2D8E; color: #fff; border: none; border-radius: 6px; font-family: 'DM Sans', sans-serif; font-size: 0.65rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; transition: background 0.2s; }
  .grid-buy:hover { background: #7B3DB8; }
  .grid-buy.res { background: var(--dark-5); color: var(--text-dim); cursor: default; }
  .grid-remove { display: block; width: 100%; margin-top: 0.3rem; padding: 0.3rem 0; background: transparent; color: var(--text-dim); border: 1px solid rgba(200,50,50,0.25); border-radius: 6px; font-family: 'DM Sans', sans-serif; font-size: 0.6rem; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; transition: background 0.2s, color 0.2s; }
  .grid-remove:hover { background: rgba(200,50,50,0.15); color: #E07070; }

  /* LIST VIEW */
  .card-list { display: flex; flex-direction: column; gap: 0.5rem; }
  .mtg-card-list { display: flex; align-items: center; gap: 1rem; background: var(--dark-3); border: 1px solid var(--border); border-radius: 10px; padding: 0.6rem 1rem; position: relative; transition: border-color 0.2s; animation: fadeUp 0.3s ease both; }
  .mtg-card-list:hover { border-color: var(--border-bright); }
  .mtg-card-list.reserved { opacity: 0.6; }
  .list-img-wrap { width: 44px; height: 44px; border-radius: 6px; overflow: hidden; flex-shrink: 0; background: var(--dark-5); position: relative; }
  .list-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
  /* Hover popup image */
  .list-img-wrap::after { content: ''; display: none; }
  .list-hover-img { display: none; position: fixed; width: 220px; border-radius: 10px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.8); z-index: 999; pointer-events: none; border: 1px solid var(--border-bright); }
  .list-hover-img img { width: 100%; display: block; }
  .list-hover-img.show { display: block; }
  .list-info { flex: 1; min-width: 0; }
  .list-name { font-family: 'Cinzel', serif; font-size: 0.82rem; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .list-meta { font-size: 0.7rem; color: var(--text-dim); margin-top: 0.15rem; display: flex; gap: 0.75rem; flex-wrap: wrap; }
  .list-tag { padding: 0.1rem 0.45rem; border-radius: 4px; background: var(--dark-5); font-size: 0.62rem; letter-spacing: 0.05em; }
  .list-right { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
  .list-price { font-family: 'Cinzel', serif; font-size: 0.95rem; font-weight: 600; color: var(--gold); min-width: 60px; text-align: right; }
  .list-status { font-size: 0.6rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.2rem 0.55rem; border-radius: 20px; }
  .list-status.available { background: rgba(201,168,76,0.15); color: var(--gold-light); border: 1px solid rgba(201,168,76,0.3); }
  .list-status.reserved { background: rgba(180,80,0,0.2); color: #E8A060; border: 1px solid rgba(180,80,0,0.4); }
  .list-buy { padding: 0.4rem 0.9rem; background: #5B2D8E; color: #fff; border: none; border-radius: 6px; font-family: 'DM Sans', sans-serif; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; white-space: nowrap; transition: background 0.2s; }
  .list-buy:hover { background: #7B3DB8; }
  .list-buy.res { background: var(--dark-5); color: var(--text-dim); cursor: default; }
  .list-remove { padding: 0.35rem 0.7rem; background: transparent; color: var(--text-dim); border: 1px solid rgba(200,50,50,0.25); border-radius: 6px; font-family: 'DM Sans', sans-serif; font-size: 0.65rem; cursor: pointer; white-space: nowrap; transition: background 0.2s, color 0.2s; }
  .list-remove:hover { background: rgba(200,50,50,0.15); color: #E07070; }

  /* MODALS */
  .swish-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.8); z-index: 500; display: flex; align-items: center; justify-content: center; padding: 1rem; }
  .swish-modal { background: var(--dark-3); border: 1px solid var(--border-bright); border-radius: 16px; padding: 2rem; max-width: 340px; width: 100%; text-align: center; }
  .swish-modal h3 { font-family: 'Cinzel', serif; font-size: 1.05rem; color: var(--gold); margin-bottom: 0.5rem; }
  .swish-modal p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 0.5rem; }
  .swish-number { font-family: 'Cinzel', serif; font-size: 1.35rem; color: var(--text); margin: 0.85rem 0 0.4rem; }
  .swish-message { font-size: 0.78rem; color: var(--text-dim); margin-bottom: 1.1rem; }
  .swish-message strong { color: var(--text-muted); }
  .swish-btn-confirm { padding: 0.6rem 1.4rem; background: var(--gold); color: var(--dark); border: none; border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 0.8rem; font-weight: 500; cursor: pointer; margin: 0.25rem; transition: background 0.2s; }
  .swish-btn-confirm:hover { background: var(--gold-light); }
  .swish-btn-cancel { padding: 0.6rem 1.4rem; background: var(--dark-5); color: var(--text-muted); border: none; border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 0.8rem; cursor: pointer; margin: 0.25rem; }

  /* BUY & CONTACT */
  .buy-section { position: relative; z-index: 1; background: var(--dark-3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 3.5rem 2rem; }
  .buy-inner { max-width: 580px; margin: 0 auto; }
  .section-eyebrow { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 0.85rem; }
  .section-title { font-family: 'Cinzel', serif; font-size: 1.8rem; font-weight: 600; color: var(--text); margin-bottom: 0.65rem; }
  .section-desc { font-family: 'Crimson Text', serif; font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.75rem; }
  .buy-steps { display: flex; flex-direction: column; gap: 0.85rem; }
  .buy-step { display: flex; align-items: center; gap: 0.85rem; }
  .step-num { width: 26px; height: 26px; min-width: 26px; border-radius: 50%; background: rgba(201,168,76,0.1); border: 1px solid var(--border-bright); display: flex; align-items: center; justify-content: center; font-family: 'Cinzel', serif; font-size: 0.75rem; color: var(--gold); }
  .step-text { font-size: 0.85rem; color: var(--text-muted); }
  .contact-section { position: relative; z-index: 1; background: var(--dark-2); border-top: 1px solid var(--border); padding: 3.5rem 2rem; text-align: center; }
  .contact-inner { max-width: 500px; margin: 0 auto; }
  .contact-links { display: flex; gap: 0.85rem; justify-content: center; flex-wrap: wrap; margin-top: 1.75rem; }
  footer { position: relative; z-index: 1; border-top: 1px solid var(--border); padding: 1.25rem 2rem; display: flex; align-items: center; justify-content: space-between; }
  footer p { font-size: 0.72rem; color: var(--text-dim); }
  .footer-logo { font-family: 'Cinzel', serif; font-size: 0.82rem; color: var(--gold-dim); }
  .loading-overlay { position: fixed; inset: 0; background: var(--dark); z-index: 999; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem; transition: opacity 0.4s; }
  .loading-overlay.hidden { opacity: 0; pointer-events: none; }
  .loading-logo { font-family: 'Cinzel', serif; font-size: 2rem; font-weight: 700; color: var(--text); }
  .loading-logo .accent { color: var(--gold); }
  .loading-bar-bg { width: 160px; height: 2px; background: var(--dark-5); border-radius: 4px; overflow: hidden; }
  .loading-bar-fill { height: 2px; background: var(--gold); border-radius: 4px; width: 0%; animation: loadingAnim 2s ease-in-out infinite; }
  .loading-text { font-size: 0.72rem; color: var(--text-dim); letter-spacing: 0.15em; text-transform: uppercase; }
  @keyframes loadingAnim { 0% { width: 0%; margin-left: 0; } 50% { width: 80%; margin-left: 0; } 100% { width: 0%; margin-left: 100%; } }
  .mobile-filter-btn { display: none; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: var(--dark-3); border: 1px solid var(--border); border-radius: 8px; color: var(--text-muted); font-family: 'DM Sans', sans-serif; font-size: 0.78rem; cursor: pointer; margin-bottom: 1rem; }
  .mobile-filter-btn:hover { border-color: var(--border-bright); color: var(--text); }
  .mobile-filter-overlay { display: none; position: fixed; inset: 0; z-index: 300; background: rgba(0,0,0,0.7); }
  .mobile-filter-overlay.show { display: block; }
  .mobile-filter-panel { position: fixed; left: 0; top: 0; bottom: 0; width: 80vw; max-width: 300px; background: var(--dark-2); border-right: 1px solid var(--border); z-index: 301; overflow-y: auto; padding: 1.5rem 1.25rem; transform: translateX(-100%); transition: transform 0.25s; }
  .mobile-filter-panel.show { transform: translateX(0); }
  .mobile-filter-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
  .mobile-filter-header h3 { font-family: 'Cinzel', serif; font-size: 0.9rem; color: var(--gold); }
  .mobile-filter-close { background: none; border: none; color: var(--text-muted); font-size: 1.2rem; cursor: pointer; }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
  @media (max-width: 700px) {
    /* Nav */
    nav { padding: 0.75rem 1rem; }
    .nav-links { gap: 0.85rem; }
    nav a { font-size: 0.68rem; }

    /* Hero */
    .hero { padding: 2.5rem 1rem 2rem; }

    /* Prevent horizontal scroll */
    html, body { overflow-x: hidden; max-width: 100vw; }

    /* Shop layout */
    .shop-layout { padding: 0 0.75rem 3rem; flex-direction: column; }

    /* Sidebar göms men ersätts av filterknapp */
    .sidebar { display: none; }
    .mobile-filter-btn { display: flex; }

    /* Grid — 2 per rad, lika stora */
    .card-grid { grid-template-columns: repeat(2, 1fr); gap: 0.65rem; overflow: hidden; }
    .mtg-card-grid { width: 100%; overflow: hidden; }
    .grid-img-wrap { aspect-ratio: 3/4; overflow: hidden; }
    .grid-name { font-size: 0.63rem; }
    .grid-set { font-size: 0.58rem; }
    .grid-price { font-size: 0.75rem; }
    .grid-buy { font-size: 0.6rem; padding: 0.35rem 0; }
    .grid-remove { font-size: 0.55rem; }

    /* Topbar */
    .top-bar { flex-direction: row; align-items: center; flex-wrap: nowrap; }
    .mtg-card-list { padding: 0.6rem 0.65rem; gap: 0.6rem; align-items: center; }
    .list-img-wrap { width: 48px; height: 48px; flex-shrink: 0; }
    .list-info { min-width: 0; flex: 1; overflow: hidden; }
    .list-name { font-size: 0.75rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .list-meta { gap: 0.3rem; margin-top: 0.2rem; flex-wrap: nowrap; overflow: hidden; max-width: 100%; }
    .list-tag { font-size: 0.56rem; padding: 0.1rem 0.3rem; white-space: nowrap; }
    .list-right { flex-direction: column; align-items: flex-end; gap: 0.3rem; flex-shrink: 0; }
    .list-price { font-size: 0.85rem; min-width: auto; }
    .list-status { font-size: 0.55rem; }
    .list-buy { font-size: 0.62rem; padding: 0.32rem 0.6rem; white-space: nowrap; }
    .list-remove { font-size: 0.58rem; padding: 0.25rem 0.45rem; }

    /* Ingen zoom på mobil */
    .mtg-card-grid:hover { transform: none; box-shadow: none; z-index: 1; border-color: var(--border); }
    .result-count { font-size: 0.7rem; white-space: nowrap; }

    /* Buy & contact */
    .buy-section, .contact-section { padding: 2.5rem 1rem; }
  }
