/** Shopify CDN: Minification failed

Line 516:26 Unexpected "-->"
Line 517:1 Expected identifier but found "%"
Line 519:0 Unexpected "{"
Line 519:1 Expected identifier but found "%"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:consignment-categories (INDEX:16) */
:root {
  --neon-blue: #2bf8ff;
  --neon-purple: #c039ff;
  --dark: #0f0f16;
}

.section-wrap {
  background: #0f0f16;
  color: #e5e5e5;
  padding: 70px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.header {
  text-align: center;
  margin-bottom: 50px;
}

.header h2 {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(90deg, #00ffff, #8a2be2, #00ffff);
  background-size: 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s linear infinite;
}

.header p {
  color: #bfb8f2;
  margin-top: 10px;
  max-width: 700px;
  margin-inline: auto;
}

@keyframes shimmer {
  0% { background-position: 0%; }
  100% { background-position: 400%; }
}

/* CATEGORY LAYOUT */
.category-row {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.category {
  flex: 1;
  min-width: 320px;
  background: #121225;
  border-radius: 16px;
  padding: 25px;
  border: 1px solid rgba(43,248,255,0.15);
  transition: all 0.3s ease;
}

.category:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(43,248,255,0.25);
}

.category h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.category p {
  color: #aaa;
  margin-bottom: 15px;
}

/* FILTERS */
.filter-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
}

.filter-btn {
  padding: 6px 12px;
  border-radius: 20px;
  background: #1a1a2e;
  cursor: pointer;
  font-size: 0.75rem;
}

.filter-btn.active {
  background: var(--neon-purple);
  color: #fff;
}

/* FEATURED */
.featured-card {
  margin-bottom: 20px;
  padding: 10px;
  border: 1px solid var(--neon-purple);
  border-radius: 12px;
  text-align: center;
}

.featured-card img {
  width: 100%;
  border-radius: 8px;
}

/* GRID */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.card {
  background: #0d0d18;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  transition: 0.3s;
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 100%;
  border-radius: 8px;
}

.card-title {
  font-size: 0.8rem;
}

.card-price {
  color: var(--neon-blue);
  font-weight: bold;
}

/* BUTTON */
.neon-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  color: #000;
  font-weight: 700;
  text-align: center;
}

.neon-btn:hover {
  background: transparent;
  color: var(--neon-purple);
  border: 1px solid var(--neon-purple);
}

/* MOBILE */
@media(max-width: 800px){
  .card-grid {
    grid-template-columns: 1fr;
  }
}
/* END_SECTION:consignment-categories */

/* START_SECTION:custom-thank-you (INDEX:28) */
.thank-you-wrapper {
    max-width: 700px;
    margin: 3em auto;
    padding: 2em;
    background-color: #111;
    color: #fff;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: fadeInUp 1s ease-out;
  }

  .thank-you-wrapper h1,
  .thank-you-wrapper h2,
  .thank-you-wrapper p {
    text-align: center;
  }

  table {
    width: 100%;
    margin-top: 1em;
    border-collapse: collapse;
  }

  table th, table td {
    padding: 0.5em;
    border-bottom: 1px solid #444;
    text-align: left;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .print-btn {
    margin-top: 2em;
    padding: 10px 20px;
    background: #00e0d0;
    color: #000;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }
/* END_SECTION:custom-thank-you */

/* START_SECTION:inventory-hub (INDEX:43) */
/* ===== GLOBAL ===== */
:root {
  --neon-blue: #2bf8ff;
  --neon-purple: #c039ff;
  --dark: #0f0f16;
}

.hub-wrap {
  background: #0f0f16;
  color: #e5e5e5;
  padding: 70px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== HEADER ===== */
.hero {
  text-align: center;
  margin-bottom: 50px;
}

.hero h1 {
  font-size: 3.8rem;
  font-weight: 900;
  background: linear-gradient(90deg, #00ffff, #8a2be2, #00ffff);
  background-size: 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s linear infinite;
}

.hero p {
  color: #bfb8f2;
  max-width: 700px;
  margin: 10px auto 0;
}

@keyframes shimmer {
  0% { background-position: 0%; }
  100% { background-position: 400%; }
}

/* ===== CATEGORY GRID ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media(max-width: 900px){
  .grid { grid-template-columns: 1fr; }
}

/* ===== CATEGORY CARD ===== */
.card {
  background: #121225;
  border-radius: 18px;
  padding: 25px;
  border: 1px solid rgba(43,248,255,0.15);
  transition: 0.3s;
  position: relative;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(43,248,255,0.25);
}

/* ===== CATEGORY HEADER ===== */
.category-title {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.sports { color: var(--neon-blue); }
.tcg { color: var(--neon-purple); }

.subtext {
  color: #aaa;
  margin-bottom: 15px;
}

/* ===== BUTTON ===== */
.neon-btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  color: #000;
  margin-bottom: 15px;
  transition: 0.3s;
}

.neon-btn:hover {
  background: transparent;
  color: var(--neon-purple);
  border: 1px solid var(--neon-purple);
}

/* ===== PRODUCT PREVIEW ===== */
.preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.preview-item {
  background: #0d0d18;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
  text-align: center;
}

.preview-item:hover {
  transform: scale(1.05);
}

.preview-item img {
  width: 100%;
  display: block;
}

.preview-item span {
  display: block;
  font-size: 0.75rem;
  padding: 6px;
  color: #ccc;
}
/* END_SECTION:inventory-hub */

/* START_SECTION:inventory-landing (INDEX:44) */
:root {
  --neon-blue: #2bf8ff;
  --neon-purple: #c039ff;
  --dark: #0f0f16;
}

.wrapper {
  background: var(--dark);
  color: #e5e5e5;
  padding: 70px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* HERO */
.hero {
  text-align: center;
  margin-bottom: 40px;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 900;
  background: linear-gradient(90deg, #00ffff, #8a2be2, #00ffff);
  background-size: 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s linear infinite;
}

.hero p {
  color: #bfb8f2;
  max-width: 700px;
  margin: 10px auto 0;
}

@keyframes shimmer {
  0% { background-position: 0%; }
  100% { background-position: 400%; }
}

/* LAYOUT */
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

@media(max-width: 900px){
  .grid { grid-template-columns: 1fr; }
}

/* CARD */
.card {
  background: #121225;
  border-radius: 16px;
  padding: 25px;
  border: 1px solid rgba(43,248,255,0.15);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(43,248,255,0.25);
}

/* TITLES */
.title {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.sports { color: var(--neon-blue); }
.tcg { color: var(--neon-purple); }

.subtext {
  color: #aaa;
  margin-bottom: 15px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 15px;
  transition: 0.3s;
}

.btn.sports {
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  color: #000;
}

.btn.tcg {
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
  color: #000;
}

.btn:hover {
  filter: brightness(1.15);
}

/* PREVIEW GRID */
.preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.preview a {
  text-decoration: none;
  background: #0d0d18;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
}

.preview a:hover {
  transform: scale(1.05);
}

.preview img {
  width: 100%;
  display: block;
}

.preview span {
  display: block;
  font-size: 0.75rem;
  padding: 6px;
  color: #ccc;
}
/* END_SECTION:inventory-landing */

/* START_SECTION:neon-tcg-grid (INDEX:76) */
<!-- Same styles as above -->
{% style %}
/* reuse the entire style block from the sports grid above */
{% endstyle %}
/* END_SECTION:neon-tcg-grid */

/* START_SECTION:store-gateway (INDEX:87) */
/* =========================
   WRAP (NEON RESTORE)
========================= */
.wrap {
  background: radial-gradient(circle at top, #14142a, #0f0f16 65%);
  min-height: 100vh;
  padding: 70px 20px 90px;
  color: white;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* glow orbs restored */
.wrap::before,
.wrap::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.22;
  z-index: 0;
}

.wrap::before {
  background: #2bf8ff;
  top: -180px;
  left: -180px;
}

.wrap::after {
  background: #c039ff;
  bottom: -180px;
  right: -180px;
}

/* =========================
   CONTAINER
========================= */
.container {
  width: 100%;
  max-width: 1100px;
  position: relative;
  z-index: 2;
  text-align: center;
}

/* =========================
   TITLE (NEON BACK)
========================= */
.title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 10px;

  background: linear-gradient(90deg,#2bf8ff,#c039ff,#2bf8ff);
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0%; }
  100% { background-position: 300%; }
}

/* =========================
   SUBTITLE
========================= */
.subtitle {
  color: #bfb8f2;
  max-width: 700px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

/* =========================
   GRID
========================= */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

@media(max-width: 800px){
  .grid { grid-template-columns: 1fr; }
}

/* =========================
   CARD (NEON RESTORED)
========================= */
.card {
  background: rgba(18,18,37,0.75);
  border-radius: 22px;
  padding: 42px 32px;

  border: 1px solid rgba(43,248,255,0.25);
  box-shadow:
    0 0 0 1px rgba(192,57,255,0.12) inset,
    0 25px 60px rgba(0,0,0,0.35);

  transition: 0.25s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 0 1px rgba(43,248,255,0.35),
    0 30px 70px rgba(0,0,0,0.45);
}

/* =========================
   TAG
========================= */
.tag {
  display: inline-block;
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: 999px;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: #ccc;
  margin-bottom: 14px;
}

/* =========================
   HEADINGS
========================= */
.card h2 {
  font-size: 1.9rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.sports { color: #2bf8ff; }
.tcg { color: #c039ff; }

/* =========================
   TEXT
========================= */
.card p {
  color: #b3b3b3;
  margin-bottom: 26px;
  line-height: 1.5;
}

/* =========================
   BUTTONS (FORCED VISIBLE)
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 22px;
  border-radius: 999px;

  font-weight: 900;
  font-size: 0.95rem;

  text-decoration: none;
  color: #0f0f16;

  transition: 0.25s ease;

  background: linear-gradient(135deg,#2bf8ff,#c039ff);
  box-shadow: 0 0 18px rgba(43,248,255,0.25);
}

.btn:hover {
  transform: scale(1.05);
  filter: brightness(1.15);
}
/* END_SECTION:store-gateway */