/** Shopify CDN: Minification failed

Line 1109:12 Expected identifier but found whitespace
Line 1109:13 Unexpected "var("
Line 1120:15 Expected identifier but found whitespace
Line 1120:21 Unexpected ";"
Line 1160:13 Expected identifier but found whitespace
Line 1160:18 Unexpected ";"

**/
/* ============================================================
   THE TAVERN — Custom Theme CSS
   Rustic-modern. Amber gold. Dark wood. Zero Dawn.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:        #C8922A;
  --gold-light:  #E4AF4F;
  --gold-dim:    #9B6E1A;
  --gold-glow:   rgba(200,146,42,0.15);
  --charcoal:    #0C0C0B;
  --dark:        #131210;
  --dark-2:      #1A1815;
  --dark-3:      #22201C;
  --dark-4:      #2C2922;
  --border:      rgba(200,146,42,0.18);
  --border-soft: rgba(255,255,255,0.06);
  --text:        #EDE6D8;
  --text-soft:   #B8AC9A;
  --text-muted:  #7A6E5E;
  --wood-dark:   #2A1F12;
  --wood-mid:    #3D2E1A;
  --radius-sm:   3px;
  --radius:      6px;
  --radius-lg:   12px;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:    cubic-bezier(0, 0, 0.2, 1);
  --max:         1360px;
  --header-h:    74px;
  --font-display:'Cinzel', serif;
  --font-deco:   'Cinzel Decorative', serif;
  --font-body:   'Raleway', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--charcoal);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* Wood grain texture overlay on body */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(0,0,0,0.03) 2px,
      rgba(0,0,0,0.03) 4px
    );
  pointer-events: none;
  z-index: 0;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); color: inherit; }
input, select, textarea { font-family: var(--font-body); }
ul, ol { list-style: none; }

.skip-link {
  position: absolute; top: -100px; left: 1rem; z-index: 9999;
  background: var(--gold); color: var(--charcoal);
  padding: .5rem 1rem; border-radius: var(--radius); font-weight: 700;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: 0.02em;
}

.display-title {
  font-family: var(--font-deco);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .9rem 2.2rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .25s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.07);
  opacity: 0;
  transition: opacity .2s;
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
  box-shadow: 0 0 0 0 rgba(200,146,42,0);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,146,42,0.3);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold-glow);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-soft);
  border-color: var(--border-soft);
}
.btn-ghost:hover {
  color: var(--gold);
  border-color: var(--border);
}

.btn-lg { padding: 1.1rem 2.8rem; font-size: .8rem; }
.btn-sm { padding: .6rem 1.4rem; font-size: .7rem; }

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--header-h);
  background: rgba(12,12,11,0.96);
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.header-logo a {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.header-logo img {
  height: 48px;
  width: auto;
}
.header-logo-text {
  font-family: var(--font-deco);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .06em;
  line-height: 1;
}

.header-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-nav ul {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.header-nav a {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-soft);
  padding: .5rem 1rem;
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
  position: relative;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 1rem; right: 1rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.header-nav a:hover,
.header-nav a.active {
  color: var(--gold);
  background: var(--gold-glow);
}
.header-nav a:hover::after,
.header-nav a.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: .25rem;
  flex-shrink: 0;
}

.header-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  color: var(--text-soft);
  transition: color .2s, background .2s;
  position: relative;
}
.header-icon-btn:hover {
  color: var(--gold);
  background: var(--gold-glow);
}
.header-icon-btn svg { pointer-events: none; }

.cart-badge {
  position: absolute;
  top: 4px; right: 4px;
  width: 15px; height: 15px;
  background: var(--gold);
  color: var(--charcoal);
  border-radius: 50%;
  font-size: .58rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--text-soft);
  transition: color .2s, background .2s;
}
.menu-toggle:hover { color: var(--gold); background: var(--gold-glow); }
.menu-toggle span {
  display: block;
  width: 20px; height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE NAV ── */
.mobile-nav-drawer {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--dark);
  z-index: 800;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform .35s var(--ease-out);
}
.mobile-nav-drawer.open { transform: translateX(0); }
.mobile-nav-drawer a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  letter-spacing: .03em;
  transition: color .2s;
}
.mobile-nav-drawer a:hover { color: var(--gold); }

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: var(--gold);
  color: var(--charcoal);
  text-align: center;
  padding: .55rem 1rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.announcement-bar a { color: inherit; text-decoration: underline; }

/* ── PAGE SECTIONS ── */
.section { padding: 5rem 2rem; position: relative; z-index: 1; }
.section-sm { padding: 3rem 2rem; }
.section-lg { padding: 7rem 2rem; }
.container { max-width: var(--max); margin: 0 auto; }

.section-header {
  margin-bottom: 3rem;
}
.section-header.centered { text-align: center; }
.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-top: .5rem;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .45;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,12,11,0.3) 0%, rgba(12,12,11,0.6) 60%, var(--charcoal) 100%),
    radial-gradient(ellipse at center, transparent 30%, rgba(12,12,11,0.5) 100%);
}

/* Dark wood panel effect at bottom */
.hero-bg::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to top, var(--charcoal), transparent);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 2rem;
  max-width: 820px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  flex: 1;
  min-width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero h1 {
  font-family: var(--font-deco);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 32px rgba(0,0,0,0.6);
  line-height: 1.05;
}

.hero h1 span {
  color: var(--gold);
  display: block;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: var(--text-muted);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll-hint svg { opacity: .5; }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── FEATURED MARQUEE BAR ── */
.marquee-bar {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: .9rem 0;
  position: relative;
  z-index: 1;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marqueeScroll 20s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.marquee-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-33.333%); }
}

/* ── CATEGORY TILES ── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.category-tile {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark-3);
  cursor: pointer;
  group: true;
}
.category-tile:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}

.category-tile-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.category-tile-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease), filter .4s;
}
.category-tile:hover .category-tile-img img {
  transform: scale(1.06);
  filter: brightness(0.85);
}

.category-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,12,11,0.85) 0%, rgba(12,12,11,0.2) 55%, transparent 100%);
  z-index: 1;
  transition: background .4s;
}
.category-tile:hover .category-tile-overlay {
  background: linear-gradient(to top, rgba(12,12,11,0.9) 0%, rgba(12,12,11,0.4) 60%, rgba(12,12,11,0.1) 100%);
}

.category-tile-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 1.5rem;
  transform: translateY(0);
  transition: transform .35s var(--ease);
}

.category-tile h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: .25rem;
  letter-spacing: .04em;
}
.category-tile-count {
  font-size: .72rem;
  color: var(--text-muted);
  letter-spacing: .1em;
  margin-bottom: .75rem;
}
.category-tile-cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s;
}
.category-tile:hover .category-tile-cta {
  opacity: 1;
  transform: translateY(0);
}

/* Gold accent border on hover */
.category-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  transition: border-color .3s;
  z-index: 3;
  pointer-events: none;
}
.category-tile:hover::after { border-color: var(--gold); }

/* ── PRODUCT CARDS ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.product-card {display: flex;
  flex-direction: column;
  background: var(--dark-2);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .3s, transform .3s var(--ease), box-shadow .3s;
  position: relative;
}
.product-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(200,146,42,0.08);
}

.product-card-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--dark-3);
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.product-card:hover .product-card-img img { transform: scale(1.04); }

.product-card-badges {
  position: absolute;
  top: .75rem; left: .75rem;
  display: flex; flex-direction: column;
  gap: .35rem;
  z-index: 2;
}
.badge {
  display: inline-block;
  padding: .25rem .65rem;
  border-radius: 2px;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.badge-new { background: var(--gold); color: var(--charcoal); }
.badge-sold-out { background: var(--dark-4); color: var(--text-muted); border: 1px solid var(--border); }
.badge-sale { background: #8B1A1A; color: #FFB3B3; }

.product-card-quick {
  position: absolute;
  bottom: .75rem; right: .75rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s, transform .25s;
  z-index: 2;
}
.product-card:hover .product-card-quick {
  opacity: 1;
  transform: translateY(0);
}

.product-card-info {
  padding: 1.1rem 1.25rem 1.4rem;
}
.product-card-vendor {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: .3rem;
}
.product-card-title {
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .5rem;
  line-height: 1.35;
  letter-spacing: .02em;
}
.product-card-price {
  display: flex;
  align-items: baseline;
  gap: .5rem;
}
.price-current {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  font-family: var(--font-display);
}
.price-compare {
  font-size: .82rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.product-card-swatches {
  display: flex;
  gap: .3rem;
  margin-top: .6rem;
}
.swatch {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--border-soft);
  cursor: pointer;
  transition: border-color .2s, transform .2s;
}
.swatch:hover { border-color: var(--gold); transform: scale(1.2); }
.swatch.active { border-color: var(--gold); }

/* ── TWITCH BANNER ── */
.twitch-banner {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.twitch-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at left center, rgba(145,70,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.twitch-banner-live {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(145,70,255,0.15);
  border: 1px solid rgba(145,70,255,0.3);
  color: #B388FF;
  padding: .3rem .8rem;
  border-radius: 100px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.live-dot {
  width: 7px; height: 7px;
  background: #9146FF;
  border-radius: 50%;
  animation: livePulse 1.5s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(0.8); }
}
.twitch-banner h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: .75rem;
}
.twitch-banner p { color: var(--text-soft); max-width: 480px; }
.twitch-banner-actions { display: flex; flex-direction: column; gap: .75rem; align-items: flex-end; }
.btn-twitch {
  background: #9146FF;
  color: #fff;
  border-color: #9146FF;
}
.btn-twitch:hover { background: #7B2FE0; border-color: #7B2FE0; }

/* ── ABOUT / RICH TEXT ── */
.rich-section {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.rich-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.rich-inner.reverse { direction: rtl; }
.rich-inner.reverse > * { direction: ltr; }
.rich-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.rich-img img { width: 100%; height: 100%; object-fit: cover; }
.rich-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  pointer-events: none;
}
.rich-text { max-width: 520px; }
.rich-text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  margin-bottom: 1.25rem;
}
.rich-text p {
  color: var(--text-soft);
  margin-bottom: 1rem;
  font-size: .95rem;
  line-height: 1.8;
}
.rich-text ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 2rem;
}
.rich-text ul li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  color: var(--text-soft);
}
.rich-text ul li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── STATS ROW ── */
.stats-row {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-item {
  flex: 1;
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
  background: var(--dark-2);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-deco);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: .3rem;
}
.stat-label {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 5rem 2rem 2rem;
  position: relative;
  z-index: 1;
}

/* Decorative top line */
.site-footer::before {
  content: '';
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-top {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand img { height: 54px; margin-bottom: 1.25rem; }
.footer-brand-name {
  font-family: var(--font-deco);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  gap: .5rem;
}
.footer-social-btn {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: color .2s, border-color .2s, background .2s;
  font-size: .75rem;
  font-weight: 700;
}
.footer-social-btn:hover { color: var(--gold); border-color: var(--gold); background: var(--gold-glow); }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a {
  font-size: .88rem;
  color: var(--text-muted);
  transition: color .2s;
  display: inline-block;
}
.footer-col ul li a:hover { color: var(--text); }

.footer-bottom {
  max-width: var(--max);
  margin: 2rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: .78rem;
  color: var(--text-muted);
}
.footer-payments {
  display: flex;
  gap: .5rem;
  align-items: center;
}
.footer-payments img {
  height: 22px;
  filter: brightness(.5) grayscale(1);
  opacity: .7;
  transition: filter .2s, opacity .2s;
}
.footer-payments img:hover { filter: brightness(.8) grayscale(.5); opacity: 1; }

/* ── BREADCRUMBS ── */
.breadcrumbs {
  padding: 1rem 2rem;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  gap: .5rem;
  align-items: center;
  font-size: .75rem;
  color: var(--text-muted);
}
.breadcrumbs a { color: var(--text-muted); transition: color .2s; }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs-sep { color: var(--border); }

/* ── COLLECTION PAGE ── */
.collection-header {
  padding: 3.5rem 2rem 0;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.collection-header h1 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
.collection-count { font-size: .8rem; color: var(--text-muted); }

.collection-toolbar {
  padding: 1.25rem 2rem;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--border-soft);
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.filter-pill {
  padding: .4rem .9rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: all .2s;
  cursor: pointer;
  background: transparent;
}
.filter-pill:hover,
.filter-pill.active {
  color: var(--gold);
  border-color: var(--gold);
  background: var(--gold-glow);
}

.sort-select {
  background: var(--dark-2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: .45rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .78rem;
  cursor: pointer;
  appearance: none;
  padding-right: 2rem;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%237A6E5E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  transition: border-color .2s;
}
.sort-select:focus { outline: none; border-color: var(--gold); }

/* ── PRODUCT PAGE ── */
  max-width: var(--max);n: 0 auto;
    padding: 2.5rem 2rem;
  margi
  
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
}

.product-gallery { position: sticky; top: calc(var(--header-h) + 1.5rem); min-width: 0; }
  aspect-ratio: unset;
    max-height: 480px;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark-2);
  border: 1px solid var(--border-soft);
  margin-bottom: .75rem;
}
.product-gallery-main img { width: 100%; max-height: 480px; object-fit: contain; }
/* — PRODUCT PAGE — */
.product-layout {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  min-width: 0;
}

.product-gallery-main {
  aspect-ratio: unset;
  max-height: 480px;
  min-width: 0;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark-2);
  border: 1px solid var(--border-soft);
  margin-bottom: .75rem;
}

.product-gallery-main img { width: 100%; max-height: 480px; object-fit: contain; }
  overflow-x: auto;
}
.product-gallery-thumb {
  width: 68px; height: 68px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1.5px solid var(--border-soft);
  cursor: pointer;
  transition: border-color .2s;
  background: var(--dark-2);
}
.product-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery-thumb.active,
.product-gallery-thumb:hover { border-color: var(--gold); }

.product-info { padding-top: .5rem; }
.product-vendor {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: .5rem;
}
.product-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.25;
}
.product-price-row {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.product-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-light);
}
.product-compare-price {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.product-description {
  color: var(--text-soft);
  font-size: .92rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-soft);
  padding-bottom: 2rem;
}

.variant-group { margin-bottom: 1.5rem; }
.variant-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .6rem;
  display: flex;
  gap: .5rem;
  align-items: center;
}
.variant-label span { color: var(--text); font-weight: 600; }
.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.variant-btn {
  padding: .5rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-soft);
  background: transparent;
  cursor: pointer;
  transition: all .2s;
  letter-spacing: .05em;
}
.variant-btn:hover { border-color: var(--gold-dim); color: var(--text); }
.variant-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
}
.variant-btn.unavailable {
  opacity: .35;
  cursor: not-allowed;
  text-decoration: line-through;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.qty-input {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.qty-btn {
  width: 40px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-soft);
  font-size: 1.1rem;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color .2s, background .2s;
}
.qty-btn:hover { color: var(--gold); background: var(--gold-glow); }
.qty-num {
  width: 44px; height: 44px;
  text-align: center;
  border: none;
  background: var(--dark-2);
  color: var(--text);
  font-size: .9rem;
  font-weight: 600;
  font-family: var(--font-body);
}
.qty-num:focus { outline: none; }

.add-to-cart-row { display: flex; gap: .75rem; margin-bottom: 1.5rem; }
.add-to-cart-row .btn-primary { flex: 1; }

.product-meta-row {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  font-size: .8rem;
  color: var(--text-muted);
}
.product-meta-row span {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.product-meta-row svg { color: var(--gold-dim); flex-shrink: 0; }

/* ── CART DRAWER ── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 980;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  backdrop-filter: blur(4px);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 100vw);
  background: var(--dark-2);
  border-left: 1px solid var(--border);
  z-index: 990;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s var(--ease-out);
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.cart-drawer-header h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.cart-close-btn {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: color .2s, background .2s;
}
.cart-close-btn:hover { color: var(--gold); background: var(--gold-glow); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: var(--dark-3);
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
}
.cart-item-img {
  width: 70px; height: 70px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--dark-4);
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-title {
  font-size: .85rem;
  font-weight: 600;
  font-family: var(--font-display);
  margin-bottom: .25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-variant { font-size: .75rem; color: var(--text-muted); margin-bottom: .5rem; }
.cart-item-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-item-price { font-size: .9rem; font-weight: 700; color: var(--gold-light); }
.cart-item-remove {
  font-size: .65rem;
  color: var(--text-muted);
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .2s;
}
.cart-item-remove:hover { color: #FF6B6B; }

.cart-drawer-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--dark);
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: .88rem;
}
.cart-subtotal-label { color: var(--text-muted); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; font-size: .75rem; }
.cart-subtotal-price { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--gold-light); }
.cart-note { font-size: .75rem; color: var(--text-muted); margin-bottom: 1rem; text-align: center; }

/* ── FORMS ── */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .5rem;
}
.form-input {
  width: 100%;
  background: var(--dark-2);
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,146,42,0.1);
}
.form-input::placeholder { color: var(--text-muted); }
textarea.form-input { min-height: 120px; resize: vertical; }

/* ── PAGINATION ── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 3rem 0;
}
.page-btn {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all .2s;
}
.page-btn:hover,
.page-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
}

/* ── EMPTY STATES ── */
.empty-state {
  text-align: center;
  padding: 5rem 2rem;
}
.empty-state-icon { color: var(--text-muted); margin: 0 auto 1.5rem; opacity: .4; }
.empty-state h2 { margin-bottom: .75rem; font-size: 1.4rem; }
.empty-state p { color: var(--text-muted); margin-bottom: 2rem; }

/* ── TOAST NOTIFICATION ── */
.toast {
  position: fixed;
  bottom: 2rem; right: 2rem;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .85rem;
  z-index: 9999;
  transform: translateY(120%);
  opacity: 0;
  transition: transform .3s var(--ease-out), opacity .3s;
  max-width: 320px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { color: var(--gold); flex-shrink: 0; }

/* ── LOADING SPINNER ── */
.spinner {
  width: 20px; height: 20px;
  border: 2px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin .6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── GOLD DIVIDER ── */
.gold-divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 1.25rem 0;
}
.gold-divider.centered { margin: 1.25rem auto; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .category-tile:first-child { grid-row: span 1; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .rich-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .rich-inner.reverse { direction: ltr; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .header-nav { display: none; }
  .menu-toggle { display: flex; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .category-grid { grid-template-columns: 1fr; gap: 1rem; }
  .twitch-banner { grid-template-columns: 1fr; }
  .twitch-banner-actions { align-items: flex-start; }
  .product-layout { grid-template-columns: 1fr; gap: 2rem; }
  .product-gallery { position: static; }
  .section { padding: 3.5rem 1.25rem; }
  .footer-top { grid-template-columns: 1fr; }
  .stats-row { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .products-grid { grid-template-columns: 1fr; }
  .header-inner { padding: 0 1rem; }
  .cart-drawer { width: 100vw; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-fade-up { animation: fadeUp .6s var(--ease-out) both; }
.animate-fade-up-d1 { animation-delay: .1s; }
.animate-fade-up-d2 { animation-delay: .2s; }
.animate-fade-up-d3 { animation-delay: .3s; }
.animate-fade-up-d4 { animation-delay: .4s; }

/* Page load fade-in */
main { animation: fadeIn .4s ease both; }


.product-gallery-nav { display:flex; align-items:center; justify-content:center; gap:1rem; margin-top:.75rem; }
.gallery-prev, .gallery-next { background:var(--dark-2); border:1px solid var(--border); color:var(--text); width:36px; height:36px; border-radius:50%; cursor:pointer; font-size:1.1rem; display:flex; align-items:center; justify-content:center; transition:border-color .2s, color .2s; }
.gallery-prev:hover, .gallery-next:hover { border-color:var(--gold); color:var(--gold); }
.gallery-counter { font-size:.8rem; color:var(--text-muted); letter-spacing:.05em; }