:root{
  --bg:#f6f7f9;
  --card:#fff;
  --text:#111;
  --muted:#555;
  --red:#c62828;
  --red2:#e53935;
  --border:#e2e5ea;
  --ui-dark-bar: rgb(48,49,54);
}
html {
  font-size: 14.5px;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
}
a{color:inherit;text-decoration:none}

/* Header */
header{background:var(--red)}
.bar{
  max-width:1300px;
  margin:auto;
  padding:18px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:#fff;
  font-weight:800;
}
.brand img{height:42px}
nav a{color:#fff;margin-left:18px;font-weight:700}
nav a:hover{text-decoration:underline}

/* Shared layout */
.container{max-width:1300px;margin:auto;padding:40px 20px}

/* Hero (Home) */
.hero{background:#fff;padding:80px 20px}
.hero .container{padding:0 20px}
.hero h1{margin:0 0 10px;font-size:2.4rem}
.hero p{margin:0 0 18px;color:var(--muted);max-width:760px}
.cta{
  display:inline-block;
  background:var(--red);
  color:#fff;
  padding:12px 18px;
  border-radius:10px;
  font-weight:800;
}
.cta:hover{background:var(--red2)}

/* Grid / Cards */
.grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
@media(max-width:1200px){.grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:900px){.grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:520px){.grid{grid-template-columns:1fr}}
/* ================================
   SHOP PAGE — 5 CARDS PER ROW
   ================================ */
.shopWrap .grid{
  grid-template-columns:repeat(5,minmax(0,1fr));
}
@media(max-width:1400px){
  .shopWrap .grid{grid-template-columns:repeat(4,1fr)}
}
@media(max-width:1150px){
  .shopWrap .grid{grid-template-columns:repeat(3,1fr)}
}
@media(max-width:820px){
  .shopWrap .grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:520px){
  .shopWrap .grid{grid-template-columns:1fr}
}
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:12px;
  overflow:hidden;
  /* Depth: always-on shadow (requested) */
  box-shadow:0 16px 100px rgba(0,0,0,.35);
  transition:transform .15s ease,box-shadow .15s ease;
}
.card:hover{transform:translateY(-4px);box-shadow:0 18px 46px rgba(0,0,0,.40)}
.card img{width:100%;height:180px;object-fit:contain;background:#fafafa}
.card-body{padding:14px}
.title{font-weight:800;font-size:.9rem;line-height:1.25;margin:0 0 10px}
.btn{
  display:inline-block;
  border:1px solid var(--red);
  color:var(--red);
  padding:8px 12px;
  border-radius:10px;
  font-weight:800;
  font-size:.82rem;
}
.btn:hover{background:var(--red);color:#fff}
.badge{
  display:inline-block;
  margin-left:8px;
  background:#111;
  color:#fff;
  border-radius:999px;
  padding:2px 8px;
  font-size:.75rem;
  font-weight:800;
}

/* Shop layout + filters */
.layout{display:grid;grid-template-columns:320px 1fr;gap:26px;align-items:start}
@media(max-width:980px){.layout{grid-template-columns:1fr}}
.panel{background:#fff;border:1px solid var(--border);border-radius:14px;padding:16px;font-size:.9rem}
.searchRow{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:14px}
input[type="search"]{flex:1;min-width:220px;padding:10px 12px;border:1px solid var(--border);border-radius:12px}
select{padding:10px 12px;border:1px solid var(--border);border-radius:12px}
.count{color:#ffffff;font-size:.9rem;margin:0 0 12px;font-weight:700}
.smallcount{
  font-size:.8rem;
  color:var(--muted);
  background:#f2f3f6;
  border:1px solid var(--border);
  padding:2px 8px;
  border-radius:999px;
}
.divider{height:1px;background:var(--border);margin:14px 0}

/* Pills + nested tree formatting */
.pill{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:8px 10px;
  border-radius:12px;
  border:1px solid transparent;
  color:#111;
  font-weight:700;
  .pill.sub{font-size:.83rem}
  .pill.sub2{font-size:.81rem}
}
.pill:hover{background:#fafafa;border-color:var(--border)}
.pill.active{border-color:var(--red);background:#fff5f5}
.pill.sub,.pill.sub2{font-weight:600}

.treeGroup{display:flex;flex-direction:column;gap:6px}
.treeBlock{margin-top:6px;display:flex;flex-direction:column;gap:6px}
.treeIndent{margin-left:14px;border-left:2px solid var(--border);padding-left:12px}
.treeIndent2{margin-left:28px;border-left:2px solid var(--border);padding-left:12px}

/* Footer */
footer{border-top:1px solid var(--border);background:#fff;margin-top:40px}
.foot{
  max-width:1300px;
  margin:auto;
  padding:26px 20px;
  color:var(--muted);
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:12px;
}

/* ===== Mock-like Home Page Theme (does not affect shop layout) ===== */

.siteHeader{
  background:transparent;
}

.topNav{
  max-width:1300px;
  margin:0 auto;
  padding:10px 20px;
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  color:rgba(255,255,255,.88);
  font-weight:700;
  font-size:.9rem;
}
.topNav a{opacity:.9}
.topNav a:hover{opacity:1;text-decoration:underline}

.headerBar{
  margin:0 auto;
  padding:16px 20px 18px;
  background:rgba(255,255,255,.88);
  border-radius:18px;
  border:1px solid rgba(255,255,255,.55);
  box-shadow:0 10px 24px rgba(0,0,0,.18);
}
.brandDark{color:#111}
.brandDark span{letter-spacing:.6px}

.headerSearch{
  flex:1;
  max-width:640px;
  display:flex;
  align-items:center;
  gap:8px;
  background:#fff;
  border:1px solid rgba(0,0,0,.10);
  border-radius:999px;
  padding:10px 12px;
  margin:0 16px;
}
.headerSearch input{
  border:none;
  outline:none;
  width:100%;
  background:transparent;
  font-size:.95rem;
}
.searchBtn{
  border:none;
  background:transparent;
  cursor:pointer;
  color:#111;
  opacity:.8;
}
.searchBtn:hover{opacity:1}

.headerIcons{display:flex;gap:10px;align-items:center}
.iconBtn{
  width:38px;height:38px;
  display:grid;place-items:center;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.10);
  background:#fff;
  color:#111;
}
.iconBtn:hover{border-color:rgba(0,0,0,.25)}

.heroMock{
  /* Wider than the normal site container, but NOT full-bleed */
  width: min(92vw, 1520px);
  margin: 18px auto 0;
  padding: 0 20px;
}
.heroCopy{
  position:relative;
  z-index:2;
  padding:64px 54px;
  max-width:650px;
  color:#fff;
}
.heroKicker{
  font-weight:900;
  letter-spacing:.06em;
  opacity:.9;
  margin-bottom:6px;
}
.heroCopy h1{
  margin:0 0 10px;
  font-size:3.1rem;
  line-height:1.02;
  font-weight:900;
  text-transform:uppercase;
}
.heroCopy p{
  margin:0 0 18px;
  font-size:1.05rem;
  line-height:1.45;
  opacity:.95;
}
.heroBtn{
  display:inline-block;
  background:rgba(198,40,40,.95);
  color:#fff;
  padding:12px 18px;
  border-radius:12px;
  font-weight:900;
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 10px 22px rgba(0,0,0,.22);
}
.heroBtn:hover{background:rgba(229,57,53,.98)}
.heroArt{
  position:absolute;
  right:-10px;
  bottom:-8px;
  width:min(56%, 720px);
  z-index:1;
  pointer-events:none;
  opacity:1;
}
.heroArt img{width:100%;height:auto;display:block}

.homeSection{
  max-width:1300px;
  margin:0 auto;
  padding:28px 20px 0;
}
.sectionHeading{
  margin:22px 0 16px;
  text-align:center;
  color:#fff;
  font-weight:900;
  font-size:1.8rem;
  letter-spacing:.2px;
}
.sectionHeading .line{
  display:inline-block;
  width:120px;
  height:2px;
  background:rgba(255,255,255,.22);
  vertical-align:middle;
  margin:0 14px;
}

.featuredGrid .card{
  border-radius:16px;
}
.featuredGrid .card-body{color:#111}
.featuredGrid .price{margin-top:-6px}

.categoryGrid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
@media(max-width:900px){.categoryGrid{grid-template-columns:repeat(2,1fr)} .headerSearch{display:none}}
@media(max-width:520px){.categoryGrid{grid-template-columns:1fr} .heroCopy{padding:44px 22px} .heroCopy h1{font-size:2.1rem}}

.catCard{
  background: rgb(255 0 0 / 22%);
  border:1px solid rgba(255,255,255,.16);
  border-radius:16px;
  padding:18px;
  color:#fff;
  backdrop-filter:blur(6px);
  box-shadow:0 12px 28px rgba(0,0,0,.20);
  text-align:center;
}
.catCard:hover{border-color:rgba(255,255,255,.30)}
.catIcon{
  width:54px;height:54px;
  border-radius:14px;
  margin:0 auto 10px;
  display:grid;place-items:center;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
}
.catTitle{font-weight:900;font-size:1.15rem;margin-bottom:6px}
.catSub{opacity:.9;font-size:.95rem;line-height:1.25}

.joinSub{
  text-align:center;
  color:rgba(255,255,255,.85);
  margin:0 0 12px;
}
.joinRow{
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:20px;
}
.joinInput{
  min-width:260px;
  flex:1;
  max-width:520px;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.88);
}
.joinBtn{
  display:inline-block;
  background:rgba(198,40,40,.95);
  color:#fff;
  padding:12px 18px;
  border-radius:12px;
  font-weight:900;
  border:1px solid rgba(255,255,255,.18);
}

.siteFooter{
  background:transparent;
  border-top:1px solid rgba(255,255,255,.14);
  margin-top:34px;
}

/* ===== Typography tuned to match the mockup ===== */
:root{
  --font-body: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-display: "Bebas Neue", Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  --tracking-tight:-0.01em;
  --tracking-wide:0.06em;
}

body{
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.topNav{
  letter-spacing: .02em;
  text-transform: uppercase;
  font-weight: 800;
}

.brandDark span{
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.heroKicker{
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.heroCopy h1{
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.heroCopy p{
  font-weight: 600;
  letter-spacing: var(--tracking-tight);
}

.sectionHeading{
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.catTitle{
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.catSub, .joinSub{
  font-weight: 600;
}

/* Featured card title a bit more like mock */
.featuredGrid .title{
  font-weight: 900;
  letter-spacing: -0.01em;
}


.logoMain{height:36px;width:auto;display:block}


/* Home hero uses the main red mock background image */
/* ===== Universal full-screen background (hi-res, no tiling) ===== */
body.bgTexture{
  background-color:#0e0a0a !important;
  /* background-image:url("./assets/bg-texture-2560x1440.png") !important; */
  background-repeat:no-repeat !important;
  background-size:cover !important;
  background-position:center top !important;
  background-attachment:fixed !important;
}

@supports (background-image: image-set(url("x.png") 1x)){
  body.bgTexture{
    /* background-image:image-set(
      url("./assets/bg-texture-2560x1440.png") 1x,
      url("./assets/bg-texture-5120x2880.png") 2x
    ) !important; */
  }
}

/* Red glow overlay (separate layer so it never tiles) */
body.bgTexture::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  background:
    radial-gradient(1200px 600px at 18% 0%, rgba(198,40,40,.55), transparent 60%),
    radial-gradient(1000px 700px at 75% 10%, rgba(229,57,53,.30), transparent 60%);
}

@media (max-width: 900px){
  body.bgTexture{ background-attachment: scroll !important; }
  body.bgTexture::before{ position:absolute; }
}


/* =========================================================
   FIX (stable): Two-tier header + hero bg + universal background
   ========================================================= */

/* Top dark bar */
.topNav{
  width:100%;
  margin:0;
  padding:10px 20px;
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
  background:rgba(48,49,54,.92);
  color:rgba(255,255,255,.95);
  border-bottom:1px solid rgba(255,255,255,.12);
  font-weight:800;
  font-size:.9rem;
  letter-spacing:.02em;
  text-transform:uppercase;
}
.topNav a{opacity:.92}
.topNav a:hover{opacity:1;text-decoration:underline}

/* Light banner behind logo/search/icons */
.headerWrap{
  width:100%;
  padding:10px auto 12px;
  background:
    radial-gradient(1100px 260px at 15% 0%, rgba(255,255,255,.55), transparent 65%),
    rgba(245, 232, 210, .92);
  border-bottom:1px solid rgba(0,0,0,.08);
  backdrop-filter: blur(6px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.55),
    inset 0 -1px 0 rgba(0,0,0,.08);
}

.headerBarWide{
  width:100%;
  max-width:1300px;
  margin:0 auto;
  border-radius:0;
  background:transparent;
  border:none;
  box-shadow:none;
  padding:0 20px;
}

/* Logo size */
.logoMain{ height:120px; width:auto; display:block; }

/* Search bar matches icon button height */
.headerSearch{
  height:38px;
  padding:0 12px;
  border-radius:999px;
  display:flex !important;
  align-items:center;
  gap:8px;
}
.headerSearch input{ height:100%; line-height:38px; padding:0; }

/* Universal background: no tiling, use hi-res images if present */
body.bgTexture{
  background-color:#0e0a0a !important;
  /* background-image:url("./assets/bg-texture-2560x1440.png") !important; */
  background-repeat:no-repeat !important;
  background-size:cover !important;
  background-position:center top !important;
  background-attachment:fixed !important;
}
@supports (background-image: image-set(url("x.png") 1x)){
  body.bgTexture{
    /* background-image:image-set(
      url("./assets/bg-texture-2560x1440.png") 1x,
      url("./assets/bg-texture-5120x2880.png") 2x
    ) !important; */
  }
}

/* Hero background: regenerated no-text image */
@media (max-width: 900px){
  .heroInner{ min-height: 440px; }
}

.heroInner::before{ background-position: 70% 30%; }


/* Force hero image to render without blend/tint */
.heroInner::before{mix-blend-mode:normal !important;opacity:1 !important;}

/* =========================================================
   Layout fixes requested
   ========================================================= */

/* 1) Force charcoal top header to full viewport width */
.siteHeader,
.siteHeader .topNav{
  width: 100vw;
  max-width: none !important;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* 2) Remove gap between header and hero */
.headerWrap{
  margin-bottom: 0 !important;
}
.heroMock,
.hero{
  margin-top: 0 !important;
}

.heroInner::before{ background-position: right 10% top; }


/* ===== Fix: hero should not sit behind header ===== */
.siteHeader{ position: relative; z-index: 100; }
.siteHeader .topNav{ position: relative; z-index: 110; }
.siteHeader .headerWrap{ position: relative; z-index: 105; }

.heroMock, .hero{ position: relative; z-index: 1; }

/* Keep hero background behind hero text ONLY */
.heroInner{ position: relative; z-index: 0; }
.heroInner::before{ z-index: -1 !important; }

/* ===== Hero background blend (edge fade) =====
   This is the ONLY place the side/bottom transparency is controlled.
   Adjust stops below to tune fades.
*/
.heroInner{
  position: relative;
  overflow: hidden;
  min-height: 690px;
}
.heroInner::before{
  content:"";
  position:absolute;
  inset:0;
  background: url("./assets/hero-bg.png") right top / cover no-repeat;
  z-index:0;

  /* Side fade (more on LEFT than right) */
  -webkit-mask-image:
    linear-gradient(to right,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,1) 26%,
      rgba(0,0,0,1) 88%,
      rgba(0,0,0,0) 100%
    ),
    /* Bottom fade (reduced by ~20%: keep image solid longer) */
    linear-gradient(to bottom,
      rgba(0,0,0,1) 0%,
      rgba(0,0,0,1) 82%,
      rgba(0,0,0,0) 100%
    );
  -webkit-mask-composite: source-in;

  mask-image:
    linear-gradient(to right,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,1) 26%,
      rgba(0,0,0,1) 88%,
      rgba(0,0,0,0) 100%
    ),
    linear-gradient(to bottom,
      rgba(0,0,0,1) 0%,
      rgba(0,0,0,1) 82%,
      rgba(0,0,0,0) 100%
    );
  mask-composite: intersect;

  opacity: 1 !important;
  mix-blend-mode: normal !important;
}
.heroCopy{ position: relative; z-index:1; }

@media (max-width: 900px){
  .heroInner{ min-height: 460px; }
  .heroInner::before{
    background-position: right 10% top;
    -webkit-mask-image:
      linear-gradient(to right,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,1) 22%,
        rgba(0,0,0,1) 90%,
        rgba(0,0,0,0) 100%
      ),
      linear-gradient(to bottom,
        rgba(0,0,0,1) 0%,
        rgba(0,0,0,1) 85%,
        rgba(0,0,0,0) 100%
      );
  }
}

/* =========================================================
   FIX: Restore header nav link color + logo sizing
   ========================================================= */

/* Ensure the primary nav links in the light header are dark (not inherited from generic nav styles) */
.headerWrap .headerLinks a{
  color:#111 !important;
  font-weight:800;
}

/* Keep the 1px gap behavior between header links (requested) */
.headerLinks{
  display:flex;
  align-items:center;
  gap:1px;
  flex-wrap:wrap;
}

/* The generic ".brand img" rule is more specific than ".logoMain" — override it */
.brand img.logoMain{
  height:82px;
  width:auto;
}

/* =========================================================
   FIX: Restore footer styling + right/left alignment
   ========================================================= */

footer.siteFooter{
  background:rgba(48,49,54,.92);
  border-top:1px solid rgba(255,255,255,.12);
  margin-top:34px;
  color:rgba(255,255,255,.92);
  font-size:0.6rem;
}

footer.siteFooter .foot{
  max-width:1300px;
  margin:0 auto;
  padding:8px 20px;
  display:flex;
  flex-direction:column;
  gap:8px;
}

/* Main two-column row: left text + right actions */
footer.siteFooter .footRowMain{
  display:flex;
  justify-content:space-between;
  align-items:flex-end; /* aligns "All purchases..." with the bottom link row */
  gap:18px;
}

/* Left column: copyright on top, purchases line under it */
footer.siteFooter .footLeft{
  display:flex;
  flex-direction:column;
  gap:3px;
  line-height:1.25;
}

footer.siteFooter .footCopy,
footer.siteFooter .footNote{
  color:rgba(255,255,255,.92);
}

/* Right column: social row above, links row below, aligned to far right */
footer.siteFooter .footRight{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:6px;
}

footer.siteFooter .footSocial{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

footer.siteFooter .socialBtn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background:transparent;
  color:rgba(255,255,255,.92);
}

footer.siteFooter .socialBtn:hover{
  border-color:rgba(255,255,255,.38);
}

footer.siteFooter .socialBtn.isDisabled{
  opacity:.55;
  cursor:default;
}

footer.siteFooter .socialIcon{
  width:16px;
  height:16px;
  display:block;
}

footer.siteFooter .footLinks{
  display:flex;
  gap:12px;
  justify-content:flex-end;
  flex-wrap:wrap;
}

footer.siteFooter .footLinks a{
  color:rgba(255,255,255,.92);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.04em;
}

footer.siteFooter .footLinks a:hover{
  text-decoration:underline;
}

/* Mobile stacking */
@media (max-width: 720px){
  footer.siteFooter .footRowMain{
    flex-direction:column;
    align-items:flex-start;
  }
  footer.siteFooter .footRight{
    align-items:flex-start;
  }
  footer.siteFooter .footLinks{
    justify-content:flex-start;
  }
}


/* --- Shop controls: sort + items-per-page --- */
.searchRow select#perPage{
  min-width: 150px;
}

/* --- Card price line --- */
.card .price{
  margin-top: 8px;
  font-weight: 700;
  color: var(--text);
  opacity: .95;
  font-size: .85rem;
}

/* --- Pagination --- */
.pagination{
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:center;
  margin: 22px 0 0;
  flex-wrap: wrap;
}
.pageBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 1px 4px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.08);
  color: #fff;
  cursor:pointer;
  user-select:none;
}
.pageBtn:hover{
  background: rgba(255,255,255,.14);
}
.pageBtn[disabled]{
  opacity:.45;
  cursor:not-allowed;
}
.pageBtn.isActive{
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.35);
}
/* =========================================================
   SHOP PAGE HEADER — MATCH HOME "COLLECTIBLES & FIGURES"
   ========================================================= */

.pageHeaderCard .pageTitle {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
}

.pageHeaderCard .pageSubtitle {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #ffffff;
}

.pageHeaderCard .pageSubtitle * {
  color: #ffffff;
}
.shopWrap .grid{
  grid-template-columns:repeat(5,minmax(0,1fr)) !important;
}
/* step down a bit earlier */
@media(max-width:1250px){
  .shopWrap .grid{grid-template-columns:repeat(4,1fr) !important}
}
@media(max-width:1050px){
  .shopWrap .grid{grid-template-columns:repeat(3,1fr) !important}
}
@media(max-width:820px){
  .shopWrap .grid{grid-template-columns:repeat(2,1fr) !important}
}
@media(max-width:520px){
  .shopWrap .grid{grid-template-columns:1fr !important}
}
/* SHOP PAGE — tighten header spacing */
.pageHeaderCard{
  margin-top: -18px;   /* pulls it closer to the header */
  margin-bottom: 12px; /* keeps breathing room before filters */
}

.pageHeaderCard .pageSubtitle{
  margin-top: 0;
}
/* ===== Sticky footer (keeps footer at bottom when content is short) ===== */
html, body {
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Your main content wrapper should grow */
.container {
  flex: 1 0 auto;
}

/* Footer sticks to bottom */
.siteFooter {
  margin-top: auto;
  flex-shrink: 0;
}
/* ===== Match top bar + footer color exactly =====
   Force both bars to use the exact same solid color (no alpha),
   and prevent any background-image from showing through on the footer.
*/
:root{
  --ui-dark-border: rgba(255,255,255,.12);
}
.topNav{
  background-color: var(--ui-dark-bar) !important;
  border-bottom: 1px solid var(--ui-dark-border) !important;
}
footer.siteFooter{
  background-color: var(--ui-dark-bar) !important;
  background-image: none !important;
  border-top: 1px solid var(--ui-dark-border) !important;
}
/* ==========================================
   WIDTH FIX — restore wider layout (not full-bleed)
   Paste at END of style.css
   ========================================== */

/* Adjust this number if you want a bit wider/narrower */
:root{
  --site-max: 1440px; /* try 1400–1500 */
}

/* Match the “old” wider spacing across header + home content */
.bar,
.headerBarWide,
.heroMock,
.homeSection,
.container,
footer.siteFooter .foot{
  max-width: var(--site-max) !important;
}


/* ===== Global search dropdown ===== */
.cg-headerSearch{ position: relative; }
.cg-searchDropdown{
  position:absolute;
  left:0; right:0;
  top:calc(100% + 8px);
  background:rgba(255,255,255,.96);
  border:1px solid rgba(255,255,255,.16);
  border-radius:14px;
  box-shadow:0 18px 50px rgba(0,0,0,.35);
  overflow:hidden;
  z-index:9999;
}
.cg-searchItem{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  color:rgba(0,0,0,.92);
}
.cg-searchItem:hover{ background:rgba(255,255,255,.08); }
.cg-searchThumb{
  width:62px; height:62px;
  border-radius:10px;
  background:rgba(255,255,255,.10);
  object-fit:contain;
  flex:0 0 auto;
}
.cg-searchMeta{ display:flex; flex-direction:column; gap:2px; min-width:0; }
.cg-searchTitle{ font-weight:900; font-size:.88rem; line-height:1.15; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.cg-searchSub{ font-size:.78rem; opacity:.85; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.cg-searchEmpty{ padding:10px 12px; color:rgba(255,255,255,.70); font-size:.85rem; }
