:root{
  --bg:#111214;
  --text:rgba(255,255,255,.88);
  --muted:rgba(255,255,255,.62);
  --border:rgba(255,255,255,.12);
  --red:#d22a2a;
  --red2:#ff3b3b;
  --radius:18px;
}

/* Page background (real visitors / logged-out view) */
html, body{
  background: var(--bg);
}

/* Let your template styling show through any Kadence wrappers */
.site, .site-content, #wrapper, #inner-wrap, #content, .content-bg, .content-area{
  background: transparent !important;
}

/* Your main page backdrop */
.merch-bg{
  background:
    radial-gradient(900px 500px at 50% 0%, rgba(210,42,42,.14), transparent 60%),
    radial-gradient(700px 420px at 20% 10%, rgba(255,59,59,.08), transparent 55%),
    var(--bg) !important;
  color: var(--text);
}

/* Layout */
.merch-wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero */
.merch-hero{
  padding: 64px 0 24px;
  border-bottom: 1px solid var(--border);
}
.merch-hero--tight{ padding: 28px 0 18px; }

.merch-logo img{
  height: 44px;
  width: auto;
  display: block;
}
.merch-title{ margin: 18px 0 6px; color:#fff; }
.merch-sub{ margin: 0; color: var(--muted); }

.merch-content{ padding: 40px 0 80px; }

/* Custom topbar */
.merch-topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11,11,13,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.merch-topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 20px;
}
.merch-brand__logo{
  height: 38px;
  width: auto;
  display: block;
}

.merch-nav{
  display:flex;
  gap:16px;
  align-items:center;
}
.merch-nav__link{
  color: rgba(255,255,255,.85);
  text-decoration:none;
  font-weight: 600;
}
.merch-nav__link:hover{ color:#fff; }

.merch-cart-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width: 22px;
  height: 22px;
  margin-left: 8px;
  border-radius: 999px;
  background: rgba(210,42,42,.92);
  color:#fff;
  font-size: 12px;
  line-height: 1;
  padding: 0 7px;
}

/* Curated homepage: hide “shop archive” controls (sorting / toggle row) */
.kadence-shop-top-row{
  display: none !important;
}