:root {
  /* Dark v3 ? carbon + dual ambient wash + tangerine */
  --bg: #0b0b0d;
  --bg-2: #121214;
  --bg-3: #1a1a1e;
  --bg-mix-a: #4a1830;
  --bg-mix-b: #162038;
  --card: #161618;
  --card-2: #202024;
  --line: rgba(250, 250, 250, .08);
  --line-2: rgba(250, 250, 250, .14);
  --text: #fafafa;
  --muted: #a1a1aa;
  --muted-2: #71717a;
  --orange: #ff8f3c;
  --orange-2: #ffb06e;
  --orange-d: #e06f20;
  --green: #3dd68c;
  --green-d: #1faa65;
  --red: #ff5c5c;
  --blue: #4d9fff;
  --purple: #b388ff;
  --shadow: 0 12px 28px rgba(0, 0, 0, .55);
  --glow: transparent;
  --surface-shine: rgba(255, 255, 255, .03);
  --radius: 12px;
  --radius-sm: 10px;
  --header: 70px;
  --max: 1680px;
  --font: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

html[data-theme="light"] {
  /* Light twin ? cool zinc + soft dual wash + tangerine */
  --bg: #f2f3f5;
  --bg-2: #ffffff;
  --bg-3: #e4e4e7;
  --bg-mix-a: #f0e4ea;
  --bg-mix-b: #e4eaf2;
  --card: #ffffff;
  --card-2: #f4f4f5;
  --line: rgba(24, 24, 27, .1);
  --line-2: rgba(24, 24, 27, .16);
  --text: #18181b;
  --muted: #71717a;
  --muted-2: #a1a1aa;
  --orange: #f07828;
  --orange-2: #ff9448;
  --orange-d: #d45f14;
  --green: #16a34a;
  --green-d: #15803d;
  --red: #e11d48;
  --blue: #2563eb;
  --purple: #7c3aed;
  --shadow: 0 10px 28px rgba(24, 24, 27, .08);
  --glow: transparent;
  --surface-shine: rgba(255, 255, 255, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { min-height: 100%; }
body {
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 62% 85% at -8% 18%, color-mix(in srgb, var(--bg-mix-a) 88%, transparent), transparent 68%),
    radial-gradient(ellipse 58% 80% at 108% 42%, color-mix(in srgb, var(--bg-mix-b) 82%, transparent), transparent 64%),
    radial-gradient(ellipse 80% 50% at 50% -10%, color-mix(in srgb, var(--bg-mix-a) 28%, transparent), transparent 58%),
    linear-gradient(180deg, #0e0a0c 0%, var(--bg) 38%, #08080a 100%);
  background-attachment: fixed;
  background-repeat: no-repeat;
}
html[data-theme="light"] body {
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 58% 70% at -6% 20%, color-mix(in srgb, var(--bg-mix-a) 70%, transparent), transparent 65%),
    radial-gradient(ellipse 52% 65% at 106% 40%, color-mix(in srgb, var(--bg-mix-b) 65%, transparent), transparent 62%),
    linear-gradient(180deg, #f5f4f6 0%, var(--bg) 45%, #eef0f3 100%);
  background-attachment: fixed;
  background-repeat: no-repeat;
}
::selection {
  background: color-mix(in srgb, var(--orange) 55%, transparent);
  color: #0c0c0e;
}
html[data-theme="light"] ::selection {
  color: #18181b;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
img { max-width: 100%; display: block; }
svg { display: inline-block; vertical-align: -0.15em; width: 1.05em; height: 1.05em; flex: none; }
button { cursor: pointer; background: none; border: 0; }
.container { width: min(var(--max), 100%); margin: 0 auto; padding: 0 24px; }
.muted { color: var(--muted); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.icon { width: 18px; height: 18px; display: inline-flex; align-items: center; justify-content: center; }
.icon svg { width: 100%; height: 100%; max-width: none; }
.ico-btn {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  color: var(--text); border: 0; background: transparent;
  transition: background .2s, color .2s;
}
.ico-btn svg { width: 18px; height: 18px; }
.ico-btn:hover { background: color-mix(in srgb, var(--text) 8%, transparent); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  height: 42px; padding: 0 16px; border-radius: 12px;
  font-weight: 600; font-size: 13px; line-height: 1;
  border: 1px solid transparent; white-space: nowrap;
  transition: background .2s, color .2s, border-color .2s, transform .15s, box-shadow .2s;
}
.btn:active { transform: scale(.97); }
.btn-gold, .btn-primary {
  background: color-mix(in srgb, var(--orange) 82%, transparent);
  color: #0a0a0a;
  border-color: color-mix(in srgb, #fff 26%, var(--orange));
  font-weight: 700;
  backdrop-filter: blur(14px) saturate(180%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.45),
    0 6px 16px -8px color-mix(in srgb, var(--orange) 55%, transparent);
}
.btn-gold:hover, .btn-primary:hover {
  background: color-mix(in srgb, var(--orange) 92%, transparent);
}
.btn-outline, .btn-ghost {
  background: transparent; border-color: transparent; color: var(--text); font-weight: 600;
}
.btn-outline:hover, .btn-ghost:hover {
  background: color-mix(in srgb, var(--text) 8%, transparent);
}
.btn-outline.btn-bordered {
  border-color: var(--line-2);
}
.btn-dark { background: var(--card-2); border-color: var(--line); }
.btn-green { background: var(--green); color: #06210c; border-radius: 999px; height: 32px; padding: 0 12px; font-size: 12px; font-weight: 800; }
.btn-red { background: var(--red); color: #fff; border-radius: 999px; height: 32px; padding: 0 12px; font-size: 12px; font-weight: 800; }
.btn-lg { height: 48px; padding: 0 22px; font-size: 14px; font-weight: 700; }
.btn-sm { height: 34px; padding: 0 12px; font-size: 12.5px; }
.btn-block { width: 100%; }
.btn-pill {
  border-radius: 999px; border: 1px solid var(--line-2); background: transparent; font-weight: 600;
}
.btn-pill:hover { background: color-mix(in srgb, var(--text) 6%, transparent); border-color: var(--line-2); }
.btn-buy {
  height: 32px; padding: 0 12px; border-radius: 9px; font-size: 12px; font-weight: 700;
  background: color-mix(in srgb, var(--orange) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--orange) 28%, transparent);
  color: color-mix(in srgb, var(--orange) 80%, var(--text));
}
.product-card:hover .btn-buy, .btn-buy:hover {
  background: color-mix(in srgb, var(--orange) 88%, #000);
  color: #fff; border-color: transparent;
}

.topbar {
  display: block;
  background: transparent;
  font-size: 12px;
  height: 36px;
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  height: 36px;
}
.topbar-links {
  display: flex; align-items: center; gap: 2px;
  height: 100%;
}
.topbar a {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 0 10px; height: 100%;
  color: var(--muted); font-weight: 500;
}
.topbar a:hover { color: var(--text); background: color-mix(in srgb, var(--text) 6%, transparent); }
.topbar .sep { display: none; }
.topbar-tools {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  height: 100%;
}
.topbar .lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--text) 16%, transparent);
  background: color-mix(in srgb, var(--bg-3) 88%, transparent);
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
}
.topbar .lang:hover {
  background: color-mix(in srgb, var(--bg-3) 100%, transparent);
  border-color: color-mix(in srgb, var(--text) 28%, transparent);
}
.topbar .flag {
  width: 16px;
  height: 11px;
}
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--text) 16%, transparent);
  background: color-mix(in srgb, var(--bg-3) 88%, transparent);
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s, border-color .2s, color .2s;
}
.theme-toggle:hover {
  background: color-mix(in srgb, var(--bg-3) 100%, transparent);
  border-color: color-mix(in srgb, var(--text) 28%, transparent);
}
.theme-mode {
  display: none;
  align-items: center;
  gap: 6px;
  line-height: 1;
}
.theme-mode svg { width: 13px; height: 13px; }
.theme-mode-to-light { display: inline-flex; }
html[data-theme="light"] .theme-mode-to-light { display: none; }
html[data-theme="light"] .theme-mode-to-dark { display: inline-flex; }
html[data-theme="light"] .topbar {
  background: transparent;
  border-bottom: 1px solid var(--line);
}
html[data-theme="light"] .topbar a {
  color: var(--muted);
}
html[data-theme="light"] .topbar a:hover {
  color: var(--text);
  background: color-mix(in srgb, var(--text) 5%, transparent);
}
html[data-theme="light"] .theme-toggle {
  background: var(--card-2);
  border-color: var(--line);
  color: var(--text);
}
html[data-theme="light"] .topbar .lang {
  background: var(--card-2);
  border-color: var(--line);
  color: var(--text);
}

.site-header {
  position: relative; z-index: 50;
  background:
    linear-gradient(
      180deg,
      color-mix(in srgb, var(--bg-mix-a) 22%, #141218 78%) 0%,
      color-mix(in srgb, var(--bg-mix-b) 14%, #101014 86%) 100%
    );
  border-bottom: 1px solid var(--line);
  overflow: visible;
  padding-bottom: 6px;
}
html[data-theme="light"] .site-header {
  background:
    linear-gradient(
      180deg,
      color-mix(in srgb, var(--bg-mix-a) 35%, #ffffff 65%) 0%,
      color-mix(in srgb, var(--bg-mix-b) 28%, #fafafa 72%) 100%
    );
  backdrop-filter: none;
}
.header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: var(--header);
  padding: 8px 0;
}
.logo {
  display: grid; line-height: .85; letter-spacing: .4px;
}
.logo-img {
  display: block;
  height: 40px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
.logo-img-light { display: none; }
html[data-theme="light"] .logo-img-dark { display: none; }
html[data-theme="light"] .logo-img-light { display: block; }
html:not([data-theme="light"]) .logo-img-dark { display: block; }
html:not([data-theme="light"]) .logo-img-light { display: none; }
/* Tek logo varsa her temada g?ster */
.logo:not(:has(.logo-img-light)) .logo-img-dark,
.logo:not(:has(.logo-img-dark)) .logo-img-light {
  display: block;
}
html[data-theme="light"] .logo:not(:has(.logo-img-light)) .logo-img-dark,
html:not([data-theme="light"]) .logo:not(:has(.logo-img-dark)) .logo-img-light {
  display: block;
}
.logo-k {
  font-family: Oswald, Impact, sans-serif;
  font-weight: 700; font-size: 26px; font-style: italic;
  letter-spacing: .5px;
}
.logo-s {
  font-size: 10px; letter-spacing: 2.2px; font-weight: 800;
  display: flex; align-items: center; gap: 6px; margin-top: 2px;
}
.logo-s::after {
  content: ""; flex: 1; height: 3px; border-radius: 99px;
  background: linear-gradient(90deg, #e11d2e, #ff7a1a 55%, transparent);
  max-width: 92px;
}
.search {
  display: flex; align-items: center;
  background: var(--card);
  border-radius: 999px; height: 46px; padding: 4px 4px 4px 16px;
  border: 1px solid var(--line);
  max-width: 640px; width: 100%; margin: 0 auto;
  transition: border-color .2s, box-shadow .2s;
}
.search:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(247,180,40,.18);
}
.search input {
  flex: 1; background: transparent; border: 0; outline: 0; min-width: 0;
  color: var(--text); font-size: 13.5px;
}
.search input::placeholder { color: var(--muted-2); }
.search .btn { height: 38px; min-width: 72px; border-radius: 999px; }
.header-actions { display: flex; align-items: center; gap: 6px; }
.social-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1.5px solid;
  background: transparent;
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  transition: background .2s, border-color .2s, color .2s, transform .15s;
}
.social-chip svg { width: 17px; height: 17px; flex-shrink: 0; }
.social-chip:active { transform: scale(.97); }
.social-tg {
  color: #38b6ef;
  border-color: color-mix(in srgb, #38b6ef 72%, transparent);
}
.social-tg:hover {
  color: #5fc4f3;
  border-color: #38b6ef;
  background: color-mix(in srgb, #38b6ef 12%, transparent);
}
.social-dc {
  color: #9aa5ff;
  border-color: color-mix(in srgb, #9aa5ff 70%, transparent);
}
.social-dc:hover {
  color: #b4bcff;
  border-color: #9aa5ff;
  background: color-mix(in srgb, #5865f2 14%, transparent);
}
html[data-theme="light"] .social-tg {
  color: #1a9fd9;
  border-color: color-mix(in srgb, #1a9fd9 55%, transparent);
}
html[data-theme="light"] .social-tg:hover {
  background: color-mix(in srgb, #2aabee 10%, transparent);
  border-color: #1a9fd9;
}
html[data-theme="light"] .social-dc {
  color: #5865f2;
  border-color: color-mix(in srgb, #5865f2 50%, transparent);
}
html[data-theme="light"] .social-dc:hover {
  background: color-mix(in srgb, #5865f2 8%, transparent);
  border-color: #5865f2;
}
.social-forum {
  color: var(--orange);
  border-color: color-mix(in srgb, var(--orange) 55%, transparent);
}
.social-forum:hover {
  background: color-mix(in srgb, var(--orange) 14%, transparent);
  border-color: var(--orange);
}
html[data-theme="light"] .social-forum {
  color: var(--orange-d);
  border-color: color-mix(in srgb, var(--orange) 50%, transparent);
}
html[data-theme="light"] .social-forum:hover {
  background: color-mix(in srgb, var(--orange) 10%, transparent);
  border-color: var(--orange-d);
}
.lang {
  display: flex; align-items: center; gap: 6px; font-weight: 700; font-size: 13px;
  padding: 8px 10px; border-radius: 12px;
  border: 0; background: transparent; color: var(--text);
}
.flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 14px;
  line-height: 0;
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.18);
}
.flag .flag-svg,
.flag-svg {
  display: block;
  width: 20px;
  height: 14px;
}
.topbar .flag,
.topbar .flag .flag-svg,
.topbar .flag-svg {
  width: 16px;
  height: 11px;
}
.lang-menu {
  right: 0;
  left: auto;
  min-width: 120px;
  max-height: min(70vh, 420px);
  overflow-y: auto;
}
.lang-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lang-menu a[aria-current="true"] {
  color: var(--orange, #c9a227);
  font-weight: 700;
}
.cart-wrap { position: relative; }
.cart-badge {
  position: absolute; top: 2px; right: 2px;
  min-width: 16px; height: 16px; border-radius: 99px;
  background: var(--orange); color: #1a1208;
  font-size: 10px; font-weight: 800; display: grid; place-items: center;
}

.catnav {
  display: flex; align-items: center; gap: 2px;
  padding: 0; height: 44px; overflow-x: auto; scrollbar-width: none;
  border-top: 1px solid var(--line);
  margin-bottom: 4px;
}
.catnav::-webkit-scrollbar { display: none; }
.cat-link {
  position: relative;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 10px; border-radius: 9px;
  font-size: 12px; font-weight: 700;
  letter-spacing: .02em; color: var(--text); text-transform: uppercase;
  white-space: nowrap; transition: background .2s;
}
.cat-link:hover { background: color-mix(in srgb, var(--text) 8%, transparent); }
.cat-link::after {
  content: ""; position: absolute; left: 50%; bottom: 4px;
  width: 0; height: 2px; border-radius: 2px; background: var(--orange);
  transform: translateX(-50%); transition: width .25s;
}
.cat-ico {
  width: 20px; height: 20px; border-radius: 4px; display: grid; place-items: center;
  overflow: hidden;
}
.cat-ico .icon { width: 14px; height: 14px; color: #fff; }

.shortcuts {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  gap: 0;
  overflow: hidden;
  flex-wrap: nowrap;
  padding: 0 6px;
  margin: 0;
  background: color-mix(in srgb, var(--bg-mix-a) 16%, #101014 84%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
}
.shortcuts::-webkit-scrollbar { display: none; }
.shortcuts > .dropdown {
  flex: 1 1 0;
  width: auto;
  max-width: none;
  min-width: 0;
  position: relative;
  border-right: 0;
}
.shortcuts > .dropdown[hidden] { display: none !important; }
.shortcuts > .dropdown:last-child { border-right: 0; }
.search .icon { color: var(--muted); margin-right: 8px; }
.short-item {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: transparent; border: 0;
  border-radius: 10px; padding: 10px 8px;
  min-width: 0; width: 100%;
  position: relative;
}
.short-item:hover { background: color-mix(in srgb, var(--text) 5%, transparent); }
.short-item::after {
  content: ""; position: absolute; left: 8px; right: 8px; bottom: 0; height: 3px;
  background: var(--orange); opacity: 0; border-radius: 3px 3px 0 0; transition: opacity .2s;
}
.short-item:hover::after,
.dropdown:hover .short-item::after { opacity: 1; }
.shortcuts > .dropdown:hover {
  background: color-mix(in srgb, var(--text) 4%, transparent);
}
html[data-theme="light"] .short-item, html[data-theme="light"] .search { background: transparent; }
html[data-theme="light"] .search { background: var(--card); }
html[data-theme="light"] .shortcuts {
  background: color-mix(in srgb, var(--bg-mix-b) 32%, #f7f8fa 68%);
  box-shadow: none;
}
.short-av {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  min-width: 40px;
  max-width: 40px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-3);
  display: block;
  position: relative;
}
.short-av img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  object-position: center;
  display: block;
}
.short-item b {
  display: block; font-size: 12px; font-weight: 700; letter-spacing: .02em;
  text-transform: uppercase; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.short-item span {
  display: block; font-size: 10px; color: var(--muted); font-weight: 500;
  text-transform: uppercase; letter-spacing: .04em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.short-item > span { min-width: 0; flex: 1; }

.hero {
  display: grid; grid-template-columns: 1.7fr .72fr; gap: 16px 16px; padding: 18px 0 28px;
  position: relative;
}
.hero > .shortcuts {
  grid-column: 1 / -1;
  width: 100%;
  position: relative;
  z-index: 40;
  margin-bottom: 4px;
}
.hero > .shortcuts > .dropdown:hover,
.hero > .shortcuts > .dropdown:focus-within {
  z-index: 50;
}
.hero-main {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  width: 100%;
  position: relative;
  z-index: 1;
}
.slider {
  position: relative; border-radius: 22px; overflow: hidden; min-height: 360px;
  background: var(--bg-3); box-shadow: var(--shadow);
  flex: 1 1 auto;
  width: 100%;
  z-index: 1;
}
.slide {
  position: absolute; inset: 0; opacity: 0; pointer-events: none;
  transition: opacity .45s ease;
  background-size: cover; background-position: center;
}
.slide.active { opacity: 1; pointer-events: auto; }
.slide-inner {
  height: 100%; padding: 42px 48px; display: flex; flex-direction: column; justify-content: flex-end;
  align-items: flex-start;
  background: linear-gradient(90deg, rgba(8,4,12,.45), transparent 60%);
  gap: 10px;
}
.slide h2 { font-size: 18px; letter-spacing: 3px; font-weight: 800; opacity: .9; }
.slide .kicker {
  position: absolute; right: 36px; top: 36px;
  background: rgba(0, 0, 0, .55);
  color: #ffe2a8;
  border: 1px solid rgba(255,172,63,.35);
  padding: 7px 12px;
  border-radius: 8px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.slide .giant {
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: #fff;
  display: inline-block;
  max-width: min(92%, 480px);
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(0, 0, 0, .58);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
  text-shadow: none;
}
.slide .slide-desc {
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(13px, 1.15vw, 15px);
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, .92);
  display: inline-block;
  max-width: min(92%, 420px);
  margin: 0;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(0, 0, 0, .5);
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .2);
}
.slide .cta-text { font-size: 28px; margin: 10px 0 24px; font-weight: 600; }
.slider-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(10,8,12,.45); color: #fff; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.12);
}
.slider-nav.prev { left: 14px; }
.slider-nav.next { right: 14px; }
.slider-dots {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 10px; background: linear-gradient(90deg, #ffac3f, #ffac3f 18%, rgba(255,255,255,.12) 18%);
  display: flex; gap: 8px; align-items: center; justify-content: center;
  padding-bottom: 18px; height: 42px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.35));
}
.slider-dots button {
  width: 28px; height: 4px; border-radius: 99px; background: rgba(255,255,255,.28);
}
.slider-dots button.active { background: var(--orange); width: 42px; }

.side-banners {
  display: grid; gap: 16px;
  position: relative;
  z-index: 1;
}
.side-card {
  border-radius: 18px; overflow: hidden; min-height: 172px; position: relative;
  border: 1px solid rgba(255, 196, 80, .28);
  box-shadow: var(--shadow);
  display: block;
  transform: translateY(0) scale(1);
  transition:
    transform .35s cubic-bezier(.22, .7, .25, 1),
    border-color .3s ease,
    box-shadow .35s ease;
}
.side-card::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, .45) 100%);
  opacity: .85;
  pointer-events: none;
  transition: opacity .35s ease;
}
.side-card img, .side-card .art {
  width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0;
  transition: transform .55s cubic-bezier(.22, .7, .25, 1);
}
.side-card .art {
  transform: scale(1);
}
.side-card .copy {
  position: relative; z-index: 2; height: 100%; padding: 18px 18px 16px;
  display: flex; flex-direction: column; justify-content: flex-end;
  align-items: flex-start;
  text-shadow: none;
}
.side-card h2 {
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(14px, 1.35vw, 18px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: #fff;
  display: inline-block;
  max-width: 100%;
  margin: 0;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(0, 0, 0, .58);
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .22);
  text-shadow: none;
  transform: translateY(0);
  transition: transform .35s cubic-bezier(.22, .7, .25, 1);
}
.side-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 172, 63, .7);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .45), 0 0 0 1px rgba(255, 172, 63, .18);
}
.side-card:hover::after {
  opacity: 1;
}
.side-card:hover .art {
  transform: scale(1.08);
}
.side-card:hover h2 {
  transform: translateY(-4px);
}
@media (prefers-reduced-motion: reduce) {
  .side-card,
  .side-card .art,
  .side-card h2,
  .side-card::after {
    transition: none;
  }
  .side-card:hover {
    transform: none;
  }
  .side-card:hover .art,
  .side-card:hover h2 {
    transform: none;
  }
}
.side-actions { display: flex; gap: 8px; margin-top: 10px; }
.side-actions .btn { height: 32px; min-width: 78px; font-size: 12px; font-weight: 800; }

.sec { padding: 10px 0 34px; position: relative; }
.sec-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 16px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.sec-popular .sec-head {
  z-index: 0;
  margin-bottom: 8px;
}
.sec-popular,
.sec-home-cats,
.home-seo {
  content-visibility: auto;
  contain-intrinsic-size: 1px 640px;
}
.sec-popular {
  /* K?rm?z? ?izgi: karakter en fazla buraya kadar y?kselir */
  --pop-char-max-rise: 35px;
}
.sec-title { display: flex; align-items: center; gap: 12px; }
.sec-title h2 { font-size: 22px; font-weight: 800; letter-spacing: -.01em; }
.sec-title p { color: var(--muted); font-size: 13px; margin-top: 2px; }
.flame {
  width: 42px; height: 42px; border-radius: 50%; background: #e11d2e;
  display: grid; place-items: center; color: #fff; box-shadow: 0 8px 20px rgba(225,29,46,.35);
}
.flame svg { width: 20px; height: 20px; }
.sec-nav { display: flex; gap: 8px; align-items: center; }
.round-nav {
  width: 40px; height: 40px; border-radius: 999px; border: 1px solid var(--line-2);
  display: grid; place-items: center; background: color-mix(in srgb, var(--card) 55%, transparent);
  backdrop-filter: blur(14px);
  transition: background .2s, transform .15s, box-shadow .2s;
}
.round-nav:hover {
  background: var(--orange); color: #0a0a0a; border-color: var(--orange);
  transform: scale(1.06); box-shadow: 0 6px 16px -6px rgba(247,180,40,.55);
}
.round-nav svg, .slider-nav svg { width: 18px; height: 18px; }

.cards-row, .hscroll {
  display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 60px) / 6);
  gap: 12px; overflow-x: auto; overflow-y: visible; scrollbar-width: none;
  padding-top: 0; margin-top: 0; padding-bottom: 12px;
  position: relative;
}
.sec-popular .pop-stage {
  position: relative;
  z-index: 2;
  overflow: visible;
  padding-top: 0;
}
.sec-popular .hscroll {
  padding-top: var(--pop-char-max-rise);
  overflow-x: auto;
  overflow-y: hidden; /* k?rm?z? ?izginin ?st?n? keser */
}
.sec-popular .hscroll.is-static {
  overflow-x: hidden;
  display: grid;
  grid-auto-flow: unset;
  grid-auto-columns: unset;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  padding-bottom: 0;
}
.sec-home-cats {
  padding-top: 8px;
}
.sec-home-cats .home-cat-grid {
  padding-top: var(--pop-char-max-rise, 48px);
}
.sec-home-cats .home-cat-grid .cat-card .meta {
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 14px 14px;
}
@media (max-width: 1100px) {
  .sec-popular .hscroll.is-static {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .sec-popular .hscroll.is-static {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.hscroll::-webkit-scrollbar, .cards-row::-webkit-scrollbar { display: none; }
.pop-card, .product-card, .list-card, .gift-card, .store-card, .blog-card, .cat-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.pop-card:hover, .product-card:hover, .list-card:hover, .gift-card:hover, .cat-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--orange) 50%, var(--line));
  box-shadow: 0 10px 24px -18px rgba(0,0,0,.7);
}
.pop-card.has-character {
  overflow: visible;
  position: relative;
  z-index: 1;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}
.pop-card.has-character .meta,
.pop-card.has-character .body {
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 14px 14px;
  z-index: 5;
}
.pop-card.has-character:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: none;
  z-index: 20;
}
.pop-card.has-character:hover .meta,
.pop-card.has-character:hover .body {
  border-color: color-mix(in srgb, var(--orange) 70%, var(--line));
  box-shadow: 0 18px 36px -14px rgba(0,0,0,.55);
}
.pop-card .thumb, .product-card .thumb, .list-card .thumb, .gift-card .thumb, .blog-card .thumb, .cat-card .thumb {
  aspect-ratio: 1/1; background: color-mix(in srgb, var(--orange) 8%, var(--bg-3)); overflow: hidden;
}
.pop-card .thumb,
.cat-card .thumb {
  aspect-ratio: 4 / 5;
  position: relative;
  border-radius: 14px 14px 0 0;
}
.pop-card.has-character .thumb {
  overflow: visible;
  background: transparent;
  border-radius: 0;
  /* ?stte max-rise kadar ta??r; altta kategori ismine ta?may? kes */
  clip-path: inset(calc(var(--pop-char-max-rise, 35px) * -1) 0 0 0);
}
.pop-card .thumb-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
  background: color-mix(in srgb, var(--orange) 8%, var(--bg-3));
  border: 1px solid var(--line);
  border-bottom: 0;
  z-index: 1;
}
.pop-card.has-character:hover .thumb-frame {
  border-color: color-mix(in srgb, var(--orange) 70%, var(--line));
}
.pop-card .pop-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px 14px 0 0;
  z-index: 0;
  transition: filter .35s ease, transform .35s ease;
}
.pop-card:hover .pop-poster {
  filter: brightness(.85) saturate(1.04) blur(2.5px);
  transform: scale(1.03);
}
.pop-card.has-character:hover .pop-poster {
  filter: brightness(.82) saturate(1.05) blur(3px);
  transform: scale(1.04);
}
.pop-card .pop-logo {
  position: absolute;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
  width: min(72%, 140px);
  height: auto;
  max-height: 28%;
  object-fit: contain;
  z-index: 4;
  opacity: 1;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.45));
  pointer-events: none;
}
.pop-card .pop-character {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) scale(.96);
  width: auto;
  height: 100%;
  max-height: calc(100% + var(--pop-char-max-rise, 35px));
  max-width: none;
  object-fit: contain;
  object-position: bottom center;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 10px 16px rgba(0,0,0,.4));
  transition: opacity .28s ease, transform .36s cubic-bezier(.2,.85,.2,1), height .36s ease;
}
.pop-card.has-character:hover .pop-character {
  opacity: 1;
  /* Tam olarak max-rise kadar ta?ar; ?st s?n?r k?rm?z? ?izgi */
  height: calc(100% + var(--pop-char-max-rise, 35px));
  transform: translateX(-50%) scale(1.02);
}
.cat-count {
  position: absolute;
  left: 8px;
  top: 8px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(10, 8, 12, .72);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .01em;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  white-space: nowrap;
}
html[data-theme="light"] .cat-count {
  background: rgba(23, 21, 19, .78);
}
.pop-card img, .product-card img, .list-card img, .gift-card img, .blog-card img, .cat-card img {
  width: 100%; height: 100%; object-fit: cover;
}
.pop-card .pop-logo,
.pop-card .pop-character {
  width: auto;
  max-width: none;
}
.pop-card .pop-logo {
  height: auto;
}
.pop-card .meta, .product-card .body, .list-card .body, .gift-card .body, .cat-card .body {
  padding: 12px;
  position: relative;
  z-index: 1;
  background: var(--card);
  border-radius: 0 0 14px 14px;
}
.pop-card h3, .cat-card h3 { font-size: 14px; font-weight: 700; }
.price { color: var(--orange); font-weight: 800; letter-spacing: -.02em; }
.seller {
  color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; margin-bottom: 4px;
  display: inline-flex; align-items: center; gap: 4px;
}
.buy-row { display: flex; justify-content: space-between; align-items: center; gap: 8px; margin-top: 10px; }

.tabs { display: flex; gap: 8px; overflow: auto; padding-bottom: 14px; }
.tab {
  padding: 10px 14px; border-radius: 12px; background: var(--card); border: 1px solid var(--line);
  font-weight: 700; font-size: 13px; color: var(--muted); white-space: nowrap;
}
.tab.active { color: var(--text); border-color: color-mix(in srgb, var(--orange) 55%, transparent); background: color-mix(in srgb, var(--orange) 10%, transparent); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.product-grid {
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px;
}
.product-grid.cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.product-card .thumb { aspect-ratio: 1/1; }
.product-card h3 {
  font-size: 13.5px; font-weight: 700; line-height: 1.3; min-height: 36px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.kv { display: grid; gap: 8px; margin: 16px 0; color: var(--muted); font-size: 14px; }
.kv > div { display: flex; align-items: center; gap: 8px; }
.kv svg { width: 16px; height: 16px; color: var(--orange); }
.badge {
  display: inline-flex; align-items: center; padding: 3px 8px; border-radius: 999px;
  font-size: 10px; font-weight: 800; background: rgba(247,180,40,.16); color: var(--orange);
}
.badge-red { background: rgba(239,68,68,.16); color: #ff8a94; }
.badge-green { background: rgba(34,197,94,.14); color: var(--green); }

.list-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.list-card .thumb { position: relative; }
.list-card .play {
  position: absolute; inset: auto 10px 10px auto;
  width: 34px; height: 34px; border-radius: 50%; background: rgba(0,0,0,.55);
  display: grid; place-items: center; color: #fff;
}
.list-card h3 { font-size: 13px; line-height: 1.35; min-height: 36px; }
.list-meta { display: flex; justify-content: space-between; color: var(--muted); font-size: 11px; margin-top: 8px; }

.gift-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.gift-card .thumb { aspect-ratio: 1.4; }
.gift-card .body { text-align: center; font-size: 12.5px; font-weight: 700; min-height: 52px; display: grid; place-items: center; }

.cta-band {
  display: grid; grid-template-columns: 1.4fr .8fr; gap: 18px; align-items: center;
  background: linear-gradient(90deg, #20141c, #3a2410 70%, #ffac3f);
  border-radius: 22px; padding: 28px 32px; overflow: hidden;
}
.cta-band h2 { font-size: 30px; margin-bottom: 8px; }
.cta-band p { max-width: 520px; color: #f3e6d2; }

.store-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.store-card { padding: 16px; text-align: center; }
.store-av { width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 10px; overflow: hidden; }
.store-card .btn { margin-top: 12px; height: 34px; }

.blog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.blog-card .body { padding: 14px; }
.blog-card .tag { color: var(--orange); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.blog-card h3 { font-size: 15px; margin: 6px 0 8px; line-height: 1.3; color: var(--text); }
.blog-card p { color: var(--muted); font-size: 13px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card .thumb {
  aspect-ratio: 16 / 10 !important;
  background: linear-gradient(135deg, color-mix(in srgb, var(--orange) 22%, var(--bg-3)), var(--bg-3));
}
.blog-card .thumb img {
  object-fit: cover;
  object-position: center;
}
.blog-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--orange) 50%, var(--line));
  box-shadow: 0 10px 24px -18px rgba(0,0,0,.7);
}

.blog-page-head { margin-bottom: 18px; }
.blog-toolbar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.blog-search { flex: 1 1 220px; min-width: 0; }
.blog-search input {
  width: 100%; height: 42px; padding: 0 14px;
  border-radius: 12px; border: 1px solid var(--line-2);
  background: var(--card); color: var(--text);
}
.blog-toolbar .btn { flex: 0 0 auto; }
.blog-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 20px;
}
.blog-tag {
  display: inline-flex; align-items: center;
  height: 32px; padding: 0 12px; border-radius: 999px;
  border: 1px solid var(--line); background: transparent;
  font-size: 12px; font-weight: 700; color: var(--muted);
  transition: background .2s, color .2s, border-color .2s;
}
.blog-tag:hover, .blog-tag.is-active {
  color: var(--text);
  border-color: color-mix(in srgb, var(--orange) 45%, var(--line));
  background: color-mix(in srgb, var(--orange) 12%, transparent);
}
.blog-tag-label {
  display: inline-flex; color: var(--orange); font-weight: 800;
  font-size: 12px; text-transform: uppercase; letter-spacing: .02em;
}
.blog-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  color: var(--muted); font-size: 13px; margin-bottom: 10px;
}
.blog-featured {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 0;
  align-items: center;
  margin-bottom: 22px; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--line);
  background: var(--card);
}
.blog-featured-media {
  position: relative;
  aspect-ratio: 16 / 10;
  max-height: 320px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--orange) 22%, var(--bg-3)), var(--bg-3));
  overflow: hidden;
}
.blog-featured-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.blog-featured-body {
  padding: 28px 26px; display: flex; flex-direction: column; justify-content: center;
}
.blog-featured-body h2 {
  font-size: clamp(22px, 2.4vw, 30px); line-height: 1.25; margin: 0 0 10px; color: var(--text);
}
.blog-featured-body p { color: var(--muted); margin: 0 0 16px; line-height: 1.55; }
.blog-read-more {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--orange); font-weight: 700; font-size: 13px;
}
.blog-pager {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-top: 28px;
}
.blog-article-wrap { max-width: 860px; }
.blog-article-head { margin-bottom: 18px; }
.blog-article-head h1 {
  font-size: clamp(26px, 3vw, 36px); line-height: 1.2; margin: 0 0 12px;
}
.blog-article-lead {
  color: var(--muted); font-size: 16px; line-height: 1.6; margin: 0;
}
.blog-article-cover {
  margin: 0 0 22px; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line); background: var(--bg-3);
}
.blog-article-cover img {
  width: 100%; max-height: 420px; object-fit: cover; display: block;
}
.blog-article-body {
  color: var(--text); font-size: 15.5px; line-height: 1.75;
}
.blog-article-body.bbcode-content h2 {
  font-size: 22px; margin: 1.4em 0 .5em;
}
.blog-article-body.bbcode-content h3 {
  font-size: 18px; margin: 1.3em 0 .45em;
}
.blog-article-body.bbcode-content p { margin: 0 0 1em; }
.blog-article-body.bbcode-content ul,
.blog-article-body.bbcode-content ol { margin: 0 0 1em; padding-left: 1.25em; }
.blog-article-body.bbcode-content img {
  max-width: 100%; border-radius: 10px; margin: 12px 0;
}
.blog-related { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); }
.blog-related h2 { font-size: 20px; margin: 0 0 14px; }
.blog-grid-related { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 1100px) {
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-media { max-height: 280px; }
  .blog-grid-related { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .blog-grid-related { grid-template-columns: 1fr; }
}

.trust-bar {
  margin-top: 28px;
  padding: 28px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
html[data-theme="light"] .trust-bar {
  background: var(--bg-2);
  border-top-color: var(--line);
  border-bottom-color: var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.trust-ico {
  width: 42px; height: 42px; flex: none;
  display: grid; place-items: center;
  color: var(--orange);
}
.trust-ico svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.7;
}
.trust-item strong {
  display: block;
  font-size: 15px; font-weight: 700;
  color: var(--text); letter-spacing: -.01em;
}
.trust-item span:not(.trust-ico) {
  display: block;
  margin-top: 2px;
  font-size: 13px; color: var(--muted);
}

.site-footer {
  margin-top: 0;
  padding: 36px 0 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  color: var(--text);
}
.site-footer .container {
  display: grid;
  gap: 28px;
}
.foot-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.foot-logo .logo-k { color: var(--text); }
.foot-logo .logo-s { color: var(--orange); }
.foot-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.foot-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  transition: border-color .15s, background .15s, transform .15s;
}
.foot-cta:hover {
  border-color: color-mix(in srgb, var(--orange) 55%, var(--line));
  background: var(--card-2);
  transform: translateY(-1px);
}
.foot-cta-ico {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  flex: 0 0 auto;
}
.foot-cta-ico svg { width: 20px; height: 20px; }
.foot-cta-ico.is-cart {
  background: color-mix(in srgb, var(--green) 16%, transparent);
  color: var(--green);
}
.foot-cta-ico.is-grid {
  background: color-mix(in srgb, var(--blue) 18%, transparent);
  color: var(--blue);
}
.foot-cta-text {
  display: grid;
  gap: 2px;
  min-width: 0;
  flex: 1;
}
.foot-cta-text strong {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  color: inherit;
}
.foot-cta-text small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}
.foot-cta-arrow {
  color: var(--muted-2);
  display: grid;
  place-items: center;
}
.foot-cta-arrow svg { width: 16px; height: 16px; }

.foot-cols {
  display: grid;
  grid-template-columns: 1.35fr 1.35fr 1fr;
  gap: 28px 32px;
  padding-top: 6px;
}
.foot-col h3 {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text);
}
.foot-col-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}
.site-footer li a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color .15s;
}
.site-footer li a:hover { color: var(--orange); }

.foot-trust {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 4px 0 2px;
}
.foot-badges,
.foot-pay {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.foot-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 32px;
  padding: 0 12px;
  border-radius: 8px;
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
}
.foot-badge.is-secure {
  background: color-mix(in srgb, var(--green) 14%, transparent);
  border-color: color-mix(in srgb, var(--green) 32%, var(--line));
  color: #6ee7b7;
}
html[data-theme="light"] .foot-badge.is-secure {
  color: var(--green-d);
  background: color-mix(in srgb, var(--green) 12%, var(--card));
}
.foot-badge.is-secure svg { width: 13px; height: 13px; }
.foot-pay-logo {
  display: inline-grid;
  place-items: center;
  min-width: 52px;
  height: 32px;
  padding: 0 10px;
  border-radius: 6px;
  background: color-mix(in srgb, #e8ecf4 88%, var(--card-2));
  color: #151820;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .02em;
  white-space: nowrap;
  border: 1px solid color-mix(in srgb, var(--line) 50%, transparent);
}
html[data-theme="light"] .foot-pay-logo {
  background: var(--card-2);
  color: var(--text);
  border-color: var(--line);
}
html[data-theme="light"] .site-footer {
  background: var(--bg-3);
}

.foot-copy {
  margin: 0;
  padding: 16px 0 20px;
  border-top: 1px solid var(--line);
}
.foot-copy p {
  margin: 0;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 500;
}

/* legacy legal (unused) */
.legal {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-top: 28px; padding-top: 16px; border-top: 1px solid var(--line);
  color: var(--muted); font-size: 12px;
}
.legal nav { display: flex; gap: 14px; }

.page { padding: 22px 0 50px; }
.page-head { margin-bottom: 22px; }
.page-head h1 { font-size: 32px; margin-bottom: 6px; }

/* ?? Category banner ?? */
.page-category { padding-top: 16px; }
.cat-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 280px;
  margin: 0 0 28px;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--line);
  background: var(--card);
}
.cat-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.cat-banner-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.02);
  filter: saturate(1.05) brightness(.72);
}
.cat-banner-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 8, 10, .92) 0%, rgba(8, 8, 10, .78) 42%, rgba(8, 8, 10, .35) 68%, rgba(8, 8, 10, .55) 100%),
    linear-gradient(180deg, transparent 40%, rgba(8, 8, 10, .55) 100%);
}
html[data-theme="light"] .cat-banner-shade {
  background:
    linear-gradient(105deg, rgba(244, 244, 245, .94) 0%, rgba(244, 244, 245, .82) 44%, rgba(244, 244, 245, .28) 70%, rgba(244, 244, 245, .5) 100%),
    linear-gradient(180deg, transparent 35%, rgba(244, 244, 245, .55) 100%);
}
html[data-theme="light"] .cat-banner-poster {
  filter: saturate(1.02) brightness(.9);
}
.cat-banner-glow {
  position: absolute;
  left: -8%;
  bottom: -40%;
  width: 48%;
  height: 90%;
  background: radial-gradient(ellipse at center, color-mix(in srgb, var(--orange) 28%, transparent), transparent 70%);
  opacity: .55;
  pointer-events: none;
}
.cat-banner-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 12px;
  align-items: end;
  min-height: 280px;
  padding: 22px 28px 26px;
}
.cat-banner:not(.has-character) .cat-banner-grid {
  grid-template-columns: 1fr;
  max-width: 720px;
}
.cat-banner-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0 10px;
  animation: catBannerIn .55s ease both;
}
.cat-banner-crumb {
  margin: 0;
  color: color-mix(in srgb, var(--text) 72%, var(--muted));
}
.cat-banner-crumb a { color: inherit; }
.cat-banner-crumb a:hover { color: var(--orange); }
.cat-banner-logo-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.cat-banner-logo {
  display: block;
  width: auto;
  height: clamp(72px, 12vw, 110px);
  max-width: min(40%, 260px);
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .5));
}
.cat-banner-title {
  margin: 0;
  max-width: 22ch;
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.08;
  color: var(--text);
  text-wrap: balance;
}
.cat-banner-text {
  margin: 0;
  max-width: 42ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.cat-banner-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
.cat-banner-count {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid var(--line-2);
  background: color-mix(in srgb, var(--bg-2) 72%, transparent);
  color: var(--text);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .01em;
  backdrop-filter: blur(8px);
}
.cat-banner-figure {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-height: 240px;
  pointer-events: none;
  animation: catBannerChar .7s .08s cubic-bezier(.2, .85, .2, 1) both;
}
.cat-banner-character {
  display: block;
  width: auto;
  height: min(320px, 52vw);
  max-width: min(100%, 380px);
  object-fit: contain;
  object-position: bottom right;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, .45));
  transform-origin: bottom center;
}
.cat-products-block {
  scroll-margin-top: calc(var(--header) + 16px);
  margin-bottom: 8px;
}
@keyframes catBannerIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
@keyframes catBannerChar {
  from { opacity: 0; transform: translateY(18px) scale(.96); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .cat-banner-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 18px 18px 0;
  }
  .cat-banner.has-character .cat-banner-grid {
    padding-bottom: 0;
  }
  .cat-banner-title { max-width: none; }
  .cat-banner-figure {
    min-height: 0;
    justify-content: center;
    margin-top: -8px;
  }
  .cat-banner-character {
    height: min(260px, 58vw);
    max-width: 280px;
    object-position: bottom center;
  }
}
@media (max-width: 560px) {
  .cat-banner { min-height: 0; border-radius: var(--radius); }
  .cat-banner-logo {
    height: clamp(56px, 16vw, 84px);
    max-width: min(55%, 200px);
  }
  .cat-banner-text { font-size: 14px; }
}

.alpha-result-head { margin-top: 4px; }

.alpha-panel {
  margin: 0 0 20px;
  padding: 20px 20px 16px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 color-mix(in srgb, var(--text) 4%, transparent);
}
.alpha-panel-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.alpha-panel-title {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.02em;
}
.alpha-panel-sub {
  margin: 0;
  max-width: 640px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
}
.alpha-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 2px;
}
.alpha-btn {
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  color: var(--text);
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s, box-shadow .15s;
}
.alpha-btn:hover:not(:disabled) {
  border-color: color-mix(in srgb, var(--orange) 45%, var(--line));
  background: color-mix(in srgb, var(--orange) 10%, var(--bg-2));
  color: var(--text);
}
.alpha-btn.is-active {
  background: var(--orange);
  border-color: transparent;
  color: #0c0c0e;
  box-shadow: 0 6px 16px -8px color-mix(in srgb, var(--orange) 70%, transparent);
}
.alpha-btn.is-disabled,
.alpha-btn:disabled {
  color: var(--muted-2);
  background: transparent;
  border-color: color-mix(in srgb, var(--line) 70%, transparent);
  cursor: default;
  opacity: .55;
}
.alpha-empty { margin-top: 18px; text-align: center; }
[data-alpha-list] > [hidden],
[data-alpha-list] > .is-alpha-hidden { display: none !important; }
@media (prefers-reduced-motion: reduce) {
  .cat-banner-copy,
  .cat-banner-figure {
    animation: none;
  }
}

.breadcrumb { color: var(--muted); font-size: 13px; margin-bottom: 8px; display: flex; gap: 8px; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--orange); }

.auth-wrap { width: min(460px, 100%); margin: 30px auto; }
.auth-wrap--wide { width: min(820px, 100%); }
.auth-panel-head {
  margin-bottom: 18px;
}
.auth-panel-head h1 { margin: 0 0 6px; }
.auth-panel-head p { margin: 0; }
.auth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 28px;
  align-items: start;
}
.auth-col { min-width: 0; }
.auth-form-foot {
  margin-top: 8px;
  padding-top: 4px;
}
.auth-terms {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.45;
}
.auth-req-note {
  margin: 0 0 14px;
  font-size: 12px;
  color: var(--muted);
}
.auth-switch {
  margin-top: 16px;
  text-align: center;
}
.form-row .req {
  color: #ef4444;
  font-weight: 800;
  margin-left: 2px;
}
.form-row .opt {
  margin-left: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}
@media (max-width: 720px) {
  .auth-grid { grid-template-columns: 1fr; gap: 0; }
}
.panel {
  background: var(--card); border: 1px solid var(--line); border-radius: 20px; padding: 28px;
}
.form-row { display: grid; gap: 6px; margin-bottom: 14px; }
.form-row label { font-size: 13px; font-weight: 700; }
.form-row input, .form-row textarea, .form-row select {
  height: 46px; border-radius: 12px; border: 1px solid var(--line);
  background: var(--bg-2); padding: 0 14px; outline: 0;
}
.form-row textarea { height: 120px; padding: 12px 14px; resize: vertical; }
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  border-color: rgba(255,172,63,.7);
}
.password-field {
  position: relative;
}
.password-field input {
  width: 100%;
  padding-inline-end: 46px;
}
.password-toggle {
  position: absolute;
  top: 50%;
  inset-inline-end: 8px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
}
.password-toggle svg {
  width: 18px;
  height: 18px;
  display: block;
}
.password-toggle:hover,
.password-toggle:focus-visible {
  color: var(--text);
  background: color-mix(in srgb, var(--orange) 12%, transparent);
  outline: 0;
}
.password-toggle:disabled {
  opacity: .45;
  cursor: not-allowed;
}
.password-toggle-hide { display: none; }
.password-toggle.is-on .password-toggle-show { display: none; }
.password-toggle.is-on .password-toggle-hide { display: block; }
.form-hint {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.lang-picker {
  position: relative;
}
.lang-picker-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  color: var(--text);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}
.lang-picker-btn:focus {
  outline: 0;
  border-color: rgba(255,172,63,.7);
}
.lang-picker-current {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.lang-picker-current .flag {
  width: 22px;
  height: 15px;
}
.lang-picker-current .flag-svg {
  width: 22px;
  height: 15px;
}
.lang-picker-caret {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--muted);
  flex-shrink: 0;
}
.lang-picker.is-open .lang-picker-caret {
  transform: rotate(180deg);
}
.lang-picker-menu {
  position: absolute;
  z-index: 40;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  max-height: 280px;
  overflow-y: auto;
  padding: 6px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  box-shadow: 0 12px 32px rgba(0,0,0,.28);
  display: none;
  gap: 2px;
}
.lang-picker.is-open .lang-picker-menu,
.lang-picker-menu:not([hidden]) {
  display: grid;
}
.lang-picker-menu[hidden] {
  display: none !important;
}
.lang-picker-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}
.lang-picker-option small {
  color: var(--muted);
  font-weight: 600;
}
.lang-picker-option:hover,
.lang-picker-option.is-active {
  background: color-mix(in srgb, var(--orange) 14%, transparent);
}
.lang-picker-option .flag,
.lang-picker-option .flag-svg {
  width: 20px;
  height: 14px;
  flex-shrink: 0;
}
.flag-placeholder {
  width: 22px;
  height: 15px;
  border-radius: 2px;
  background: color-mix(in srgb, var(--text) 12%, transparent);
  box-shadow: none;
}
.flag-other {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.alert {
  padding: 12px 14px; border-radius: 12px; margin-bottom: 14px; font-size: 14px;
  border: 1px solid var(--line);
}
.alert-error { background: rgba(225,29,46,.12); color: #ffb4ba; }
.alert-ok { background: rgba(99,240,120,.1); color: #b6ffc0; }
html[data-theme="light"] .alert-error { color: #9f1239; }
html[data-theme="light"] .alert-ok { color: #166534; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  --pop-char-max-rise: 35px;
  padding-top: var(--pop-char-max-rise);
  margin-top: 0;
  position: relative;
  z-index: 2;
  overflow-x: visible;
  overflow-y: hidden;
}
.cat-product-one {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.cat-product-one .product-card { max-width: none; }
.product-card .thumb { position: relative; }
.product-hero {
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 0;
  background: var(--card); border: 1px solid var(--line); border-radius: 22px; overflow: hidden;
}
.product-hero--solo {
  grid-template-columns: 1fr;
  margin-top: 8px;
}
.product-hero .visual { min-height: 420px; background: var(--bg-3); }
.product-hero .visual img { width: 100%; height: 100%; object-fit: cover; }
.product-hero .info { padding: 32px; }
.product-hero h1 { font-size: 28px; margin: 8px 0 12px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.hero-actions .btn-lg { height: 46px; padding: 0 18px; }

.pg-media {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .95fr);
  gap: 18px;
  align-items: start;
  margin: 8px 0 24px;
}
.pg-gallery {
  margin: 0;
  max-width: none;
  min-width: 0;
}
.pg-frame {
  position: relative;
  overflow: hidden;
}
.pg-track {
  display: flex;
  align-items: center;
  gap: 12px;
  will-change: transform;
  transition: transform .45s cubic-bezier(.22, .7, .25, 1);
}
.pg-slide {
  flex: 0 0 78%;
  aspect-ratio: 16 / 9;
  max-height: 340px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-3);
  opacity: .45;
  filter: brightness(.65);
  transform: scale(.96);
  transition: opacity .35s ease, filter .35s ease, transform .35s ease;
  cursor: pointer;
}
.pg-slide.is-active {
  opacity: 1;
  filter: none;
  transform: scale(1);
}
.pg-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pg-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(10, 8, 12, .55);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  backdrop-filter: blur(8px);
  transition: background .2s, transform .15s;
}
.pg-nav:hover { background: rgba(10, 8, 12, .78); }
.pg-nav:active { transform: translateY(-50%) scale(.96); }
.pg-nav.prev { left: calc((100% - 78%) / 2 - 6px); }
.pg-nav.next { right: calc((100% - 78%) / 2 - 6px); }
.pg-nav svg { width: 16px; height: 16px; }
.pg-dots {
  display: flex; justify-content: center; align-items: center; gap: 8px;
  margin-top: 12px;
}
.pg-dots button {
  width: 20px; height: 3px; border-radius: 99px;
  background: rgba(255,255,255,.22);
  transition: width .2s, background .2s;
}
.pg-dots button.active {
  width: 32px;
  background: var(--orange);
}
html[data-theme="light"] .pg-dots button { background: rgba(0,0,0,.18); }
html[data-theme="light"] .pg-dots button.active { background: var(--orange); }

body.pg-lightbox-open { overflow: hidden; }
.pg-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 24px;
}
.pg-lightbox[hidden] { display: none !important; }
.pg-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 3, 8, .88);
  backdrop-filter: blur(8px);
}
.pg-lightbox-stage {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: min(1100px, 94vw);
  max-height: 88vh;
  display: grid;
  place-items: center;
}
.pg-lightbox-stage img {
  max-width: 100%;
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0,0,0,.55);
  background: #0a0810;
}
.pg-lightbox-count {
  margin-top: 10px;
  text-align: center;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
}
.pg-lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(12,10,16,.7);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.pg-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(12,10,16,.7);
  color: #fff;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M15 6l-6 6 6 6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
}
.pg-lightbox-nav.next {
  right: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M9 6l6 6-6 6'/%3E%3C/svg%3E");
}
.pg-lightbox-nav.prev { left: 16px; }
.pg-lightbox-nav:hover,
.pg-lightbox-close:hover {
  background-color: rgba(255,172,63,.28);
  border-color: rgba(255,172,63,.45);
}
@media (max-width: 700px) {
  .pg-lightbox-nav { width: 40px; height: 40px; }
  .pg-lightbox-nav.prev { left: 8px; }
  .pg-lightbox-nav.next { right: 8px; }
  .pg-lightbox-close { top: 10px; right: 10px; width: 40px; height: 40px; }
}

.pg-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 340px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-3);
  border: 1px solid var(--line);
  align-self: start;
}
.pg-video iframe,
.pg-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.pg-video video {
  object-fit: contain;
  background: #000;
}

@media (max-width: 900px) {
  .pg-media { grid-template-columns: 1fr; gap: 14px; }
  .pg-slide { flex-basis: 80%; max-height: 280px; border-radius: 12px; }
  .pg-nav.prev { left: calc((100% - 80%) / 2 - 4px); }
  .pg-nav.next { right: calc((100% - 80%) / 2 - 4px); }
  .pg-nav { width: 34px; height: 34px; }
  .pg-video { max-height: none; }
}

@media (max-width: 820px) {
  .pg-gallery { max-width: 100%; }
  .pg-slide { flex-basis: 80%; max-height: 260px; border-radius: 12px; }
  .pg-nav.prev { left: calc((100% - 80%) / 2 - 4px); }
  .pg-nav.next { right: calc((100% - 80%) / 2 - 4px); }
  .pg-nav { width: 34px; height: 34px; }
}
.qty {
  display: flex; align-items: center; gap: 0; margin: 16px 0;
  border: 1px solid var(--line); border-radius: 10px; overflow: hidden; width: fit-content;
  background: var(--bg-2);
}
.qty button {
  width: 36px; height: 36px; border: 0; border-radius: 0; background: transparent; color: var(--text);
}
.qty button:hover { background: color-mix(in srgb, var(--text) 6%, transparent); }
.qty input {
  width: 44px; height: 36px; text-align: center; border: 0; border-left: 1px solid var(--line); border-right: 1px solid var(--line);
  border-radius: 0; background: transparent; outline: 0;
}
.qty-sm { margin: 0; }
.qty-sm button, .qty-sm input { height: 34px; }
.qty-sm button { width: 32px; }
.qty-sm input { width: 36px; }

.seller .verified, .var-seller .verified {
  display: inline-flex; color: #3b82f6; margin-left: 2px; vertical-align: -2px;
}
.seller .verified svg, .var-seller .verified svg { width: 14px; height: 14px; }

.var-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  margin: 32px 0 14px;
}
.var-head h2 { font-size: 22px; font-weight: 800; }
.var-table {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0 8px;
}
.var-thead {
  display: table-row;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.var-thead > span {
  display: table-cell;
  padding: 0 8px 6px;
  vertical-align: bottom;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.var-thead > span:first-child { padding-left: 14px; width: 28%; }
.var-thead > span:nth-child(2) { width: 8%; }
.var-thead > span:nth-child(3) { width: 12%; }
.var-thead > span:nth-child(4) { width: 11%; }
.var-thead > span:nth-child(5) { width: 10%; }
.var-thead > span:nth-child(6) { width: 12%; }
.var-thead > span:nth-child(7) { width: 10%; }
.var-thead > span:last-child { width: 108px; padding-right: 14px; }
.var-list { display: table-row-group; }
.var-row {
  display: table-row;
}
.var-row > * {
  display: table-cell;
  vertical-align: middle;
  padding: 12px 8px;
  background: var(--card);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: border-color .2s, background .2s;
}
.var-row > *:first-child {
  padding-left: 14px;
  border-left: 1px solid var(--line);
  border-radius: 14px 0 0 14px;
}
.var-row > *:last-child {
  padding-right: 14px;
  border-right: 1px solid var(--line);
  border-radius: 0 14px 14px 0;
  width: 108px;
}
.var-row:hover > * {
  border-color: color-mix(in srgb, var(--orange) 35%, var(--line));
  background: color-mix(in srgb, var(--orange) 4%, var(--card));
}
.var-row.is-current > * {
  border-color: color-mix(in srgb, var(--orange) 55%, var(--line));
  background: color-mix(in srgb, var(--orange) 5%, var(--card));
}
.var-name {
  display: flex; align-items: center; gap: 12px; min-width: 0;
}
.var-thumb {
  width: 48px; height: 48px; min-width: 48px;
  border-radius: 10px; overflow: hidden; background: var(--bg-3);
}
.var-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.var-name h3 {
  margin: 0; font-size: 14px; font-weight: 700; line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.var-name h3 a:hover { color: var(--orange); }
.var-days {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--orange) 16%, transparent);
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.var-days-col { font-weight: 700; }
.var-col { min-width: 0; }
.var-price strong {
  font-size: 15px; font-weight: 800; color: var(--text);
  letter-spacing: -.02em; white-space: nowrap;
}
.var-buy { width: 108px; }
.btn-buy-solid {
  width: 100%; height: 36px; padding: 0 10px; border-radius: 10px;
  background: var(--orange); color: #0a0a0a;
  font-size: 13px; font-weight: 800; border: 0;
  white-space: nowrap; justify-content: center;
}
.btn-buy-solid:hover { background: var(--orange-2); }
.status-pill {
  display: inline-flex; align-items: center; gap: 7px;
  height: 28px; padding: 0 10px; border-radius: 999px;
  background: rgba(34, 197, 94, .12);
  color: #86efac;
  font-size: 12px; font-weight: 700;
  white-space: nowrap;
}
.status-pill i {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, .2);
}
html[data-theme="light"] .status-pill {
  background: rgba(22, 163, 74, .12);
  color: #15803d;
}
.pop-badge {
  display: inline-flex; align-items: center; gap: 6px;
  height: 28px; padding: 0 10px; border-radius: 999px;
  font-size: 12px; font-weight: 700; white-space: nowrap;
}
.pop-badge svg { width: 13px; height: 13px; }
.pop-hot {
  background: color-mix(in srgb, var(--orange) 88%, #000);
  color: #0a0a0a;
}
.pop-prefer {
  background: transparent;
  color: #c084fc;
  border: 1px solid rgba(192, 132, 252, .45);
}
.pop-trend {
  background: transparent;
  color: #60a5fa;
  border: 1px solid rgba(96, 165, 250, .45);
}
.btn-cart {
  height: 36px; padding: 0 14px; border-radius: 10px;
  background: var(--bg-3); color: #fff; border: 1px solid var(--line-2);
  font-size: 12.5px; font-weight: 700; gap: 6px;
}
.btn-cart:hover { background: var(--card-2); }
.btn-cart svg { width: 15px; height: 15px; }
html[data-theme="light"] .btn-cart {
  background: var(--text); border-color: transparent; color: var(--bg-2);
}
.btn-buy-now {
  height: 36px; padding: 0 14px; border-radius: 10px;
  background: var(--orange);
  color: #0c0c0e; border: 0; font-size: 12.5px; font-weight: 800; gap: 6px;
}
.btn-buy-now:hover { background: var(--orange-2); }
.btn-buy-now svg { width: 14px; height: 14px; }

@media (max-width: 1200px) {
  .var-table,
  .var-thead,
  .var-list,
  .var-row,
  .var-row > * {
    display: block;
    width: auto;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
  }
  .var-thead { display: none; }
  .var-list { display: grid; gap: 8px; }
  .var-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "name name"
      "c1 c2"
      "c3 c4"
      "c5 price"
      "buy buy";
    gap: 10px 12px;
    padding: 12px 14px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 14px;
  }
  .var-row.is-current {
    border-color: color-mix(in srgb, var(--orange) 55%, var(--line));
    background: color-mix(in srgb, var(--orange) 5%, var(--card));
  }
  .var-name { grid-area: name; }
  .var-row > .var-col:nth-child(2) { grid-area: c1; }
  .var-row > .var-col:nth-child(3) { grid-area: c2; }
  .var-row > .var-col:nth-child(4) { grid-area: c3; }
  .var-row > .var-col:nth-child(5) { grid-area: c4; }
  .var-row > .var-col:nth-child(6) { grid-area: c5; }
  .var-price { grid-area: price; align-self: center; }
  .var-buy { grid-area: buy; width: 100%; }
  .var-col::before,
  .var-price::before {
    content: attr(data-label);
    display: block;
    font-size: 10px; font-weight: 700; letter-spacing: .04em;
    text-transform: uppercase; color: var(--muted);
    margin-bottom: 4px;
  }
}
.prod-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin: 8px 0 18px;
  flex-wrap: wrap;
}
.prod-head-copy h1 {
  margin: 6px 0 4px;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  letter-spacing: -.02em;
}
.prod-badge {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--orange) 18%, transparent);
  border: 1px solid color-mix(in srgb, var(--orange) 45%, var(--line));
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
}

.prod-features {
  margin: 22px 0;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--card);
}
.prod-features-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.prod-features-head h2 { font-size: 20px; font-weight: 800; margin: 0; }
.prod-features-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.prod-feature-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  margin: 0;
}
.prod-feature-group {
  padding: 14px 16px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--bg-3) 70%, transparent);
  border: 1px solid var(--line);
  min-width: 0;
}
.prod-feature-group-title {
  margin: 0;
  padding: 0 2px;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.2;
}
.prod-feature-group-icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.prod-feature-group-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}
.prod-feature-group dl {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 18px;
  align-items: start;
}
.prod-feature-group dl > div {
  display: grid;
  gap: 3px;
  min-width: 0;
}
.prod-feature-group dt {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 7px;
}
.prod-feature-item-icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.prod-feature-item-icon svg {
  width: 14px;
  height: 14px;
  display: block;
}
.prod-feature-group dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: break-word;
}
@media (max-width: 900px) {
  .prod-feature-group dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .prod-feature-group dl {
    grid-template-columns: 1fr;
  }
}

.prod-desc {
  margin: 36px 0 8px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 24px 26px;
}
.prod-desc-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.prod-desc-head h2 { font-size: 20px; font-weight: 800; margin: 0; }
.prod-desc-body { color: var(--muted); font-size: 14.5px; line-height: 1.65; }
.prod-desc-body > p { margin: 0 0 12px; max-width: 920px; }
.prod-desc-body h3 {
  margin: 22px 0 10px;
  font-size: 15px; font-weight: 800;
  color: var(--text);
}
.prod-desc-steps,
.prod-desc-notes {
  margin: 0;
  padding-left: 1.2em;
  display: grid;
  gap: 8px;
  max-width: 920px;
}
.prod-desc-steps li,
.prod-desc-notes li { padding-left: 4px; }
.prod-desc-steps li::marker { color: var(--orange); font-weight: 800; }
.prod-desc-notes li::marker { color: var(--orange); }

.prod-reqs {
  margin: 28px 0 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 24px 24px;
}
.prod-reqs-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.prod-reqs-head h2 { font-size: 20px; font-weight: 800; margin: 0; }
.prod-reqs-note {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  max-width: 920px;
}
.prod-reqs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.prod-reqs-col {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 16px 12px;
}
.prod-reqs-col h3 {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--orange);
}
.prod-reqs-col dl { margin: 0; display: grid; gap: 0; }
.prod-reqs-col dl > div {
  display: grid;
  grid-template-columns: minmax(110px, .9fr) 1.2fr;
  gap: 10px;
  padding: 9px 0;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
}
.prod-reqs-col dl > div:first-child { border-top: 0; padding-top: 0; }
.prod-reqs-col dt { color: var(--muted); font-weight: 600; }
.prod-reqs-col dd { margin: 0; color: var(--text); font-weight: 600; }

@media (max-width: 820px) {
  .prod-reqs-grid { grid-template-columns: 1fr; }
  .prod-reqs-col dl > div { grid-template-columns: 1fr; gap: 2px; }
}

/* ?? Status page ?? */
.status-page-head { margin-bottom: 22px; }
.status-page-head h1 { font-size: 32px; margin-bottom: 6px; }
.status-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}
.status-stat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.status-stat span { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.status-stat strong { font-size: 26px; font-weight: 800; letter-spacing: -.02em; }
.status-stat.is-current strong { color: #22c55e; }
.status-stat.is-passive strong { color: #94a3b8; }
.status-stat.is-updating strong { color: var(--orange); }

.status-toolbar {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 18px;
}
.status-search {
  flex: 1 1 260px;
  display: flex; align-items: center; gap: 8px;
  height: 42px; padding: 0 12px;
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
}
.status-search svg { width: 16px; height: 16px; color: var(--muted); }
.status-search input {
  flex: 1; border: 0; background: transparent; outline: none;
  color: var(--text); font-size: 14px;
}
.status-filter-wrap { flex: 0 0 auto; }
.status-filter {
  height: 42px; padding: 0 14px;
  border-radius: 12px; border: 1px solid var(--line);
  background: var(--card); color: var(--text);
  font-weight: 600; min-width: 180px;
}

.status-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.status-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.status-card.is-filtered-out { display: none; }
.status-card-head {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background:
    linear-gradient(120deg, color-mix(in srgb, var(--orange) 16%, transparent), transparent 55%),
    var(--bg-3);
  border-bottom: 1px solid var(--line);
}
.status-card-icon {
  width: 44px; height: 44px; border-radius: 12px; overflow: hidden; flex: none;
  background: var(--bg-2); border: 1px solid var(--line);
}
.status-card-icon img { width: 100%; height: 100%; object-fit: cover; }
.status-card-title strong { display: block; font-size: 16px; font-weight: 800; }
.status-card-title small { color: var(--muted); font-size: 12px; font-weight: 600; }
.status-card-body { padding: 12px 14px 8px; flex: 1; }
.status-card-label {
  margin: 0 0 8px;
  font-size: 11px; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; color: var(--muted);
}
.status-card-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.status-card-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 10px;
  background: var(--bg-2);
  border: 1px solid transparent;
}
.status-card-row.is-filtered-out { display: none; }
.status-card-product { min-width: 0; }
.status-card-product a {
  display: block;
  font-size: 13px; font-weight: 700;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.status-card-product a:hover { color: var(--orange); }
.status-card-time {
  font-size: 11px; color: var(--muted); font-weight: 600; white-space: nowrap;
}
.status-pill {
  display: inline-flex; align-items: center;
  height: 24px; padding: 0 9px; border-radius: 999px;
  font-size: 11px; font-weight: 800; white-space: nowrap;
}
.status-pill.is-current { background: rgba(34,197,94,.14); color: #4ade80; }
.status-pill.is-passive { background: rgba(148,163,184,.16); color: #94a3b8; }
.status-pill.is-updating { background: rgba(247,180,40,.16); color: var(--orange); }
.status-pill.is-closed { background: rgba(239,68,68,.14); color: #f87171; }
.status-pill.is-testing { background: rgba(59,130,246,.14); color: #60a5fa; }
html[data-theme="light"] .status-pill.is-current { color: #15803d; }
html[data-theme="light"] .status-pill.is-passive { color: #64748b; }
html[data-theme="light"] .status-pill.is-closed { color: #b91c1c; }
html[data-theme="light"] .status-pill.is-testing { color: #1d4ed8; }

.status-card-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px; margin-top: auto;
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  font-size: 13px; font-weight: 700; color: var(--muted);
}
.status-card-foot:hover { color: var(--orange); background: color-mix(in srgb, var(--orange) 6%, transparent); }
.status-card-foot svg { width: 16px; height: 16px; }
.status-no-results { text-align: center; padding: 28px 12px; }

@media (max-width: 900px) {
  .status-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .status-cards { grid-template-columns: 1fr; }
  .status-card-row {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "name pill" "time pill";
  }
  .status-card-product { grid-area: name; }
  .status-card-time { grid-area: time; }
  .status-pill { grid-area: pill; justify-self: end; align-self: center; }
}

.cat-seo {
  margin: 36px 0 8px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 24px 26px;
}
.cat-seo-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.cat-seo-head h2 { font-size: 20px; font-weight: 800; margin: 0; }
.cat-seo-body { color: var(--muted); font-size: 14.5px; line-height: 1.7; }
.cat-seo-lead { color: var(--text); font-weight: 600; }
.cat-seo-body > p { margin: 0 0 12px; max-width: 920px; }
.cat-seo-body h3 {
  margin: 22px 0 10px;
  font-size: 15px; font-weight: 800;
  color: var(--text);
}
.cat-seo-bullets,
.cat-seo-steps {
  margin: 0;
  padding-left: 1.2em;
  display: grid;
  gap: 8px;
  max-width: 920px;
}
.cat-seo-bullets li,
.cat-seo-steps li { padding-left: 4px; }
.cat-seo-bullets li::marker,
.cat-seo-steps li::marker { color: var(--orange); font-weight: 800; }

.seo-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}
.seo-keywords li {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 999px;
}

.home-seo {
  padding: 8px 0 36px;
}
.home-seo-body,
.bbcode-content {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
}
.home-seo-body {
  max-width: none;
  padding: 28px 30px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
}
.home-seo-body.bbcode-content h2 {
  color: var(--text);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 0 0 14px;
  line-height: 1.25;
}
.home-seo-body.bbcode-content h3 {
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
  margin: 26px 0 10px;
  line-height: 1.3;
}
.home-seo-body.bbcode-content p {
  margin: 0 0 14px;
  max-width: 920px;
}
.home-seo-body.bbcode-content strong {
  color: var(--text);
  font-weight: 700;
}
.home-seo-body.bbcode-content ul,
.home-seo-body.bbcode-content ol {
  margin: 0 0 16px;
  padding-left: 1.25em;
  max-width: 920px;
}
.home-seo-body.bbcode-content li {
  margin: 0 0 8px;
  padding-left: 4px;
}
.home-seo-body.bbcode-content ul li::marker,
.home-seo-body.bbcode-content ol li::marker {
  color: var(--orange);
  font-weight: 800;
}
.bbcode-content h2 {
  color: var(--text);
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 12px;
}
.bbcode-content h3 {
  color: var(--text);
  font-size: 16px;
  font-weight: 800;
  margin: 18px 0 8px;
}
.bbcode-content p { margin: 0 0 12px; }
.bbcode-content ul,
.bbcode-content ol { margin: 0 0 14px; padding-left: 1.2em; }
.bbcode-notice {
  margin: 12px 0;
  padding: 12px 14px;
  border-left: 3px solid var(--orange);
  background: color-mix(in srgb, var(--orange) 12%, transparent);
  border-radius: 8px;
  color: var(--text);
}
.bbcode-hr { border: 0; border-top: 1px solid var(--line); margin: 18px 0; }

.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th, .cart-table td { text-align: left; padding: 14px 8px; border-bottom: 1px solid var(--line); }
.cart-layout { display: grid; grid-template-columns: 1.5fr .7fr; gap: 18px; }
.sum-box .row { display: flex; justify-content: space-between; margin-bottom: 10px; }

.help-grid, .topic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.faq details {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px; margin-bottom: 10px;
}
.faq summary { cursor: pointer; font-weight: 700; }
.faq p { margin-top: 8px; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: minmax(0, 640px); gap: 18px; }

.account-grid { display: grid; grid-template-columns: 260px 1fr; gap: 18px; align-items: start; }
.side-menu { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 10px; }
.side-menu a { display: block; padding: 10px 12px; border-radius: 10px; color: var(--muted); font-weight: 600; font-size: 14px; }
.side-menu a.active, .side-menu a:hover { background: color-mix(in srgb, var(--orange) 12%, transparent); color: var(--text); }
.side-menu-danger { color: #f87171 !important; margin-top: 6px; border-top: 1px solid var(--line); padding-top: 12px !important; border-radius: 0 0 10px 10px !important; }
.side-menu-danger:hover { background: color-mix(in srgb, #ef4444 12%, transparent) !important; color: #fecaca !important; }

.page-account { padding-bottom: 40px; }
.account-hero {
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 18px;
  margin-bottom: 18px;
  padding: 22px 24px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--orange) 10%, var(--card)), var(--card) 55%);
}
.account-hero-main { display: flex; align-items: center; gap: 16px; min-width: 0; }
.account-avatar {
  width: 64px; height: 64px; border-radius: 18px; flex: none;
  display: grid; place-items: center;
  font-weight: 800; font-size: 24px; color: #fff;
  background: linear-gradient(145deg, var(--orange), color-mix(in srgb, var(--orange) 55%, #7c2d12));
  box-shadow: 0 10px 24px -12px color-mix(in srgb, var(--orange) 70%, transparent);
  overflow: hidden;
}
.account-avatar.has-image {
  background: var(--bg-2);
  box-shadow: none;
  border: 1px solid var(--line);
}
.account-avatar img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.account-kicker {
  margin: 0 0 4px; color: var(--orange); font-size: 12px; font-weight: 800;
  letter-spacing: .04em; text-transform: uppercase;
}
.account-hero h1 {
  margin: 0 0 6px; font-size: clamp(24px, 3vw, 32px); line-height: 1.15;
}
.account-hero-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  margin: 0; font-size: 14px;
}
.account-role-pill {
  display: inline-flex; align-items: center; height: 22px; padding: 0 8px;
  border-radius: 999px; font-size: 11px; font-weight: 800;
  background: color-mix(in srgb, var(--orange) 18%, transparent);
  color: var(--orange);
}
.account-hero-stats {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px;
}
.account-hero-stats > div {
  padding: 12px 14px; border-radius: 14px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 55%, var(--card));
}
.account-hero-stats span {
  display: block; color: var(--muted); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .03em; margin-bottom: 6px;
}
.account-hero-stats strong {
  display: block; font-size: 15px; font-weight: 800; color: var(--text);
  word-break: break-all;
}
.account-hero-stats .mono,
.account-dl .mono { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 13px; }

.account-side { display: grid; gap: 12px; }
.account-side-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 14px 16px;
}
.account-side-card h3 { margin: 0 0 10px; font-size: 14px; }
.account-dl { margin: 0; display: grid; gap: 10px; }
.account-dl div { display: grid; gap: 2px; }
.account-dl dt { color: var(--muted); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.account-dl dd { margin: 0; font-size: 13px; font-weight: 600; color: var(--text); }

.account-panel { padding: 22px 24px; }
.account-panel-head { margin-bottom: 18px; }
.account-panel-head h2 { margin: 0 0 6px; font-size: 22px; }
.account-panel-head .muted { margin: 0; }

.account-avatar-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 22px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg-2) 55%, var(--card));
}
.account-avatar-preview {
  width: 96px; height: 96px; border-radius: 22px; flex: none;
  display: grid; place-items: center;
  font-weight: 800; font-size: 32px; color: #fff;
  background: linear-gradient(145deg, var(--orange), color-mix(in srgb, var(--orange) 55%, #7c2d12));
  overflow: hidden;
  border: 1px solid transparent;
}
.account-avatar-preview.has-image {
  background: var(--bg-2);
  border-color: var(--line);
}
.account-avatar-preview img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.account-avatar-copy strong { display: block; margin-bottom: 4px; font-size: 15px; }
.account-avatar-copy .muted { margin: 0 0 12px; font-size: 13px; line-height: 1.45; max-width: 48ch; }
.account-avatar-actions {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
}
.account-avatar-form {
  display: inline-flex; flex-wrap: wrap; align-items: center; gap: 8px;
}
.account-avatar-file {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  margin: 0;
}
.account-avatar-file input[type="file"] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer;
  width: 100%; height: 100%;
  font-size: 0;
}
.account-avatar-remove { margin: 0; }
@media (max-width: 560px) {
  .account-avatar-box { grid-template-columns: 1fr; justify-items: start; }
}

.account-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
}
.account-form-grid-security { max-width: 560px; }
.account-form-span { grid-column: 1 / -1; }
.account-form .form-row { margin: 0; }
.account-form label {
  display: block; margin-bottom: 6px; font-size: 13px; font-weight: 700; color: var(--text);
}
.account-form .opt { color: var(--muted); font-weight: 500; font-size: 12px; }
.account-form input,
.account-form .lang-picker-btn {
  width: 100%; height: 44px; padding: 0 14px;
  border-radius: 12px; border: 1px solid var(--line-2);
  background: var(--bg-2); color: var(--text);
}
.account-form .field-hint {
  margin: 8px 0 0; color: var(--muted); font-size: 12px; line-height: 1.45;
}
.account-form-actions {
  margin-top: 18px; display: flex; justify-content: flex-end; gap: 10px;
}

.account-empty {
  text-align: center; padding: 36px 16px;
  border: 1px dashed var(--line); border-radius: 16px;
  background: color-mix(in srgb, var(--bg-2) 70%, transparent);
}
.account-empty strong { display: block; margin-bottom: 6px; font-size: 17px; }
.account-empty .btn { margin-top: 14px; }

.account-orders { overflow-x: auto; }
.account-table {
  width: 100%; border-collapse: collapse; min-width: 520px;
}
.account-table th,
.account-table td {
  padding: 12px 10px; text-align: left; border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.account-table th {
  color: var(--muted); font-size: 11px; text-transform: uppercase;
  letter-spacing: .03em; font-weight: 800;
}
.account-table a { color: var(--orange); font-weight: 700; }
.account-status {
  display: inline-flex; align-items: center; height: 24px; padding: 0 10px;
  border-radius: 999px; font-size: 12px; font-weight: 700;
  background: color-mix(in srgb, var(--text) 6%, transparent);
}

@media (max-width: 980px) {
  .account-hero { grid-template-columns: 1fr; }
  .account-hero-stats { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .account-form-grid { grid-template-columns: 1fr; }
}

.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 18px; z-index: 70;
  background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  padding: 14px 16px; display: flex; gap: 12px; align-items: center; justify-content: space-between;
  box-shadow: var(--shadow); max-width: 920px; margin: 0 auto;
}
.cookie .btn { border-radius: 12px; }

.dropdown { position: relative; }
.menu {
  display: none; position: absolute; top: 100%; left: 0; min-width: 240px;
  background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 8px;
  box-shadow: var(--shadow); z-index: 40;
}
/* Hover k?pr?s?: tetikleyici ile men? aras? bo?lukta men? kapanmas?n */
.menu::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: -14px;
  height: 14px;
}
.dropdown:hover .menu, .dropdown:focus-within .menu, .dropdown.open .menu { display: grid; }
.dropdown:hover { z-index: 50; }
.menu a { padding: 8px 10px; border-radius: 8px; font-size: 13px; color: var(--muted); }
.menu a:hover { background: color-mix(in srgb, var(--text) 6%, transparent); color: var(--text); }
html[data-theme="light"] .menu a:hover { background: rgba(0,0,0,.04); }
.shortcuts .menu {
  min-width: 280px;
  max-width: min(360px, 90vw);
  max-height: min(420px, 70vh);
  overflow-y: auto;
  gap: 2px;
  padding: 8px;
  z-index: 60;
}
.menu-product {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px !important;
}
.menu-product strong {
  min-width: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.menu-product em {
  flex: 0 0 auto;
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
  color: var(--orange);
  white-space: nowrap;
}
.menu-empty {
  padding: 10px 12px;
  font-size: 12px;
  color: var(--muted);
}
.menu-all {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 4px;
  border-top: 1px solid var(--line);
  border-radius: 0 0 8px 8px !important;
  padding: 10px 12px !important;
  font-weight: 700 !important;
  color: var(--text) !important;
}
.menu-all svg { width: 14px; height: 14px; }

.mob-toggle, .mob-search { display: none; }
.empty { padding: 40px 16px; text-align: center; color: var(--muted); }

.swatch-row { display: flex; gap: 12px; flex-wrap: wrap; }
.swatch {
  width: 160px; border-radius: 16px; overflow: hidden; border: 1px solid var(--line);
}
.swatch .chip { height: 86px; }
.swatch p { padding: 10px 12px; font-size: 13px; }

@media (max-width: 1400px) {
  .product-grid, .product-grid.cols-6, .cat-grid, .list-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .gift-grid { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .product-grid, .product-grid.cols-6, .list-grid, .blog-grid, .cat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .gift-grid { grid-template-columns: repeat(4, 1fr); }
  .store-grid { grid-template-columns: repeat(3, 1fr); }
  .cards-row, .hscroll { grid-auto-columns: calc((100% - 24px) / 3); }
  .foot-cols { grid-template-columns: 1fr 1fr; }
  .foot-col-blogs { grid-column: 1 / -1; }
  .header-row { grid-template-columns: auto 1fr auto; }
  .container { padding: 0 16px; }
  .shortcuts { display: flex; overflow-x: auto; grid-template-columns: none; }
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
}
@media (max-width: 1100px) {
  .social-chip { width: 40px; padding: 0; }
  .social-chip span { display: none; }
}
@media (max-width: 820px) {
  .topbar, .catnav, .header-actions .btn, .header-actions .social-chip { display: none; }
  .mob-toggle, .mob-search { display: none !important; }
  .topbar-inner { justify-content: flex-end; }
  .header-row { grid-template-columns: 1fr auto; min-height: 54px; padding: 6px 0; gap: 10px; }
  .logo-img { height: 32px; }
  .search.desktop { display: none; }
  .site-header { padding-bottom: 2px; }
  .social-chip { width: 40px; padding: 0; }
  .social-chip span { display: none; }
  .product-grid, .product-grid.cols-6, .list-grid, .blog-grid, .cat-grid, .help-grid, .topic-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gift-grid { grid-template-columns: repeat(3, 1fr); }
  .product-hero, .cart-layout, .contact-grid, .account-grid, .cta-band { grid-template-columns: 1fr; }
  .foot-cols { grid-template-columns: 1fr; }
  .foot-col-blogs { grid-column: auto; }
  .foot-col-split { grid-template-columns: 1fr 1fr; }
  .foot-cta { min-width: 0; flex: 1 1 100%; }
  .foot-trust { flex-direction: column; align-items: flex-start; }
  .slide-inner { padding: 24px; }
  .slide .giant { font-size: 18px; }
  .shortcuts { margin-bottom: 10px; }
}
@media (max-width: 560px) {
  .product-grid, .product-grid.cols-6, .list-grid, .blog-grid, .cat-grid, .gift-grid, .store-grid, .help-grid { grid-template-columns: 1fr 1fr; }
  .cards-row, .hscroll { grid-auto-columns: 72%; }
  .trust-grid { grid-template-columns: 1fr; gap: 14px; }
  .trust-item strong { font-size: 14px; }
}

/* ?? Maintenance page ??????????????????????????????????????? */
.maintenance-body {
  min-height: 100vh;
  margin: 0;
  position: relative;
  overflow-x: hidden;
  background:
    radial-gradient(900px 480px at 12% -10%, color-mix(in srgb, var(--orange) 18%, transparent), transparent 60%),
    radial-gradient(800px 420px at 92% 8%, color-mix(in srgb, #3b82f6 14%, transparent), transparent 55%),
    var(--bg);
  color: var(--text);
}
.maintenance-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  color: color-mix(in srgb, var(--orange) 78%, #fff);
}
.maintenance-lines {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  opacity: .72;
}
.maintenance-grid {
  animation: maint-grid-pulse 6s ease-in-out infinite;
}
.maintenance-circuit {
  opacity: .75;
}
.maintenance-trace {
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  animation: maint-trace 7.5s ease-in-out infinite;
}
.maintenance-trace:nth-child(2) { animation-delay: -.9s; animation-duration: 8.2s; }
.maintenance-trace:nth-child(3) { animation-delay: -1.8s; animation-duration: 9s; }
.maintenance-trace:nth-child(4) { animation-delay: -2.4s; animation-duration: 7.8s; }
.maintenance-trace:nth-child(5) { animation-delay: -3.1s; animation-duration: 8.6s; }
.maintenance-trace:nth-child(6) { animation-delay: -3.7s; animation-duration: 9.4s; }
.maintenance-trace:nth-child(7) { animation-delay: -4.2s; animation-duration: 8s; }
.maintenance-trace:nth-child(8) { animation-delay: -5s; animation-duration: 8.8s; }
.maintenance-node {
  opacity: .35;
  animation: maint-node 2.4s ease-in-out infinite;
}
.maintenance-node:nth-child(3n) { animation-delay: -.4s; }
.maintenance-node:nth-child(3n+1) { animation-delay: -.9s; }
.maintenance-node:nth-child(3n+2) { animation-delay: -1.5s; }
.maintenance-hud {
  animation: maint-hud 3.2s ease-in-out infinite;
}
@keyframes maint-grid-pulse {
  0%, 100% { opacity: .18; }
  50% { opacity: .32; }
}
@keyframes maint-trace {
  0% { stroke-dashoffset: 420; opacity: .25; }
  35% { opacity: .95; }
  70% { stroke-dashoffset: 0; opacity: .85; }
  100% { stroke-dashoffset: -420; opacity: .2; }
}
@keyframes maint-node {
  0%, 100% { opacity: .25; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.35); }
}
@keyframes maint-hud {
  0%, 100% { opacity: .35; }
  50% { opacity: .7; }
}
@media (prefers-reduced-motion: reduce) {
  .maintenance-grid,
  .maintenance-trace,
  .maintenance-node,
  .maintenance-hud {
    animation: none;
  }
  .maintenance-trace { stroke-dasharray: none; stroke-dashoffset: 0; opacity: .7; }
}
.maintenance-shell {
  position: relative;
  z-index: 1;
  width: min(560px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 48px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.maintenance-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
}
.maintenance-tools { display: flex; align-items: center; gap: 8px; }
.maintenance-main { flex: 1; display: grid; place-items: center; }
.maintenance-card {
  width: 100%;
  padding: 28px 26px 30px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--card) 92%, transparent);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 48px -28px rgba(0,0,0,.55);
}
.maintenance-kicker {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.maintenance-card h1 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.15;
}
.maintenance-lead {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 15px;
}
.maintenance-soon { margin: 0 0 18px; font-size: 13px; }
.maintenance-home { margin-top: 8px; }
.maintenance-login {
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.maintenance-login h2 {
  margin: 0 0 6px;
  font-size: 18px;
}
.maintenance-login .muted { margin: 0 0 14px; font-size: 13px; }
.maintenance-login .form-row { margin-bottom: 12px; }
.maintenance-login label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
}
.maintenance-login input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid var(--line-2);
  background: var(--bg-2);
  color: var(--text);
}
.maintenance-admin-banner {
  background: color-mix(in srgb, var(--orange) 16%, var(--bg-2));
  border-bottom: 1px solid color-mix(in srgb, var(--orange) 35%, var(--line));
  font-size: 13px;
}
.maintenance-admin-banner .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.maintenance-admin-banner a {
  color: var(--orange);
  font-weight: 700;
}

.account-session-list { display: grid; gap: 10px; }
.account-session-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg-2) 65%, var(--card));
}
.account-session-card.is-latest {
  border-color: color-mix(in srgb, var(--orange) 40%, var(--line));
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--orange) 12%, transparent);
}
.account-session-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  color: var(--orange);
  background: color-mix(in srgb, var(--orange) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--orange) 25%, var(--line));
}
.account-session-top {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  margin-bottom: 2px;
}
.account-session-top strong { font-size: 15px; }
.account-session-badge {
  display: inline-flex; align-items: center; height: 22px; padding: 0 8px;
  border-radius: 999px; font-size: 11px; font-weight: 800;
  background: color-mix(in srgb, var(--orange) 18%, transparent);
  color: var(--orange);
}
.account-session-device {
  margin: 0 0 10px; color: var(--muted); font-size: 13px;
}
.account-session-meta {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.account-session-meta dt {
  color: var(--muted); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .03em; margin-bottom: 2px;
}
.account-session-meta dd { margin: 0; font-size: 13px; font-weight: 600; }
@media (max-width: 720px) {
  .account-session-meta { grid-template-columns: 1fr; }
}

/* Auth login modal (guest buy gate) */
body.auth-modal-open { overflow: hidden; }
.auth-modal {
  position: fixed; inset: 0; z-index: 1200;
  display: grid; place-items: center; padding: 20px;
}
.auth-modal[hidden] { display: none !important; }
.auth-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(8, 10, 14, .72);
  backdrop-filter: blur(4px);
}
.auth-modal-dialog {
  position: relative; z-index: 1;
  width: min(420px, 100%);
  padding: 28px 24px 22px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.55);
}
.auth-modal-dialog h2 {
  margin: 0 0 18px; font-size: 22px; line-height: 1.2;
}
.auth-modal-close {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px; border-radius: 10px;
  border: 1px solid var(--line); background: transparent;
  color: var(--muted); font-size: 22px; line-height: 1; cursor: pointer;
}
.auth-modal-close:hover { color: var(--text); border-color: var(--text); }
.auth-modal-foot { margin: 16px 0 0; text-align: center; font-size: 14px; }
.auth-modal .form-row input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  color: var(--text);
}
.auth-modal .btn-block { width: 100%; }


/* Forum */
.forum-page { padding-bottom: 48px; }
.forum-hero {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 20px;
  align-items: end;
  margin-bottom: 22px;
  padding: 28px 26px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background:
    radial-gradient(1200px 280px at 10% -40%, color-mix(in srgb, var(--orange) 22%, transparent), transparent 60%),
    linear-gradient(180deg, color-mix(in srgb, var(--bg-3) 80%, var(--card)), var(--card));
}
.forum-eyebrow {
  margin: 0 0 6px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.forum-hero h1 { margin: 0 0 8px; font-size: clamp(28px, 3.4vw, 40px); line-height: 1.1; }
.forum-hero-copy .muted { margin: 0; max-width: 54ch; }
.forum-game-head {
  display: flex; align-items: center; gap: 14px;
}
.forum-game-logo {
  width: 52px; height: 52px; border-radius: 14px; object-fit: contain;
  background: var(--bg-2); border: 1px solid var(--line); padding: 4px; flex: none;
  box-sizing: border-box;
}
.forum-nav-item.is-active {
  background: color-mix(in srgb, var(--orange) 14%, transparent);
  border-color: color-mix(in srgb, var(--orange) 40%, var(--line));
}
.forum-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
.forum-search {
  display: flex; align-items: center; gap: 8px;
  height: 44px; min-width: min(280px, 100%); padding: 0 14px;
  border-radius: 12px; border: 1px solid var(--line); background: var(--bg-2);
}
.forum-search svg { width: 16px; height: 16px; color: var(--muted); flex: none; }
.forum-search input {
  flex: 1; border: 0; outline: 0; background: transparent; color: var(--text); font-size: 14px; min-width: 0;
}
.forum-stats {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin-bottom: 22px;
}
.forum-stat {
  padding: 14px 16px; border-radius: 14px; border: 1px solid var(--line);
  background: var(--card); display: grid; gap: 4px;
}
.forum-stat span { color: var(--muted); font-size: 12px; font-weight: 700; }
.forum-stat strong { font-size: 22px; font-weight: 800; letter-spacing: -.02em; }
.forum-stat.is-live strong { color: #34d399; }
.forum-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 18px;
  align-items: start;
}
.forum-layout-category {
  grid-template-columns: minmax(0, 1fr);
}
.forum-games-board { margin-top: 22px; }
.forum-products-board { margin-top: 22px; }
.forum-games-table .forum-games-head,
.forum-games-table .forum-game-row {
  display: grid;
  grid-template-columns: minmax(180px, 1.5fr) 90px 90px 110px minmax(150px, 200px);
  gap: 12px;
  align-items: center;
}
.forum-games-table .forum-game-stat {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.forum-games-table .forum-game-stat strong {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}
.forum-game-row-title {
  display: flex; align-items: center; gap: 12px; min-width: 0;
}
.forum-game-row-title .forum-topic-title { margin: 0; }
.forum-games-table .forum-game-row.is-active {
  background: color-mix(in srgb, var(--orange) 8%, transparent);
  box-shadow: inset 3px 0 0 var(--orange);
}
@media (max-width: 900px) {
  .forum-games-table .forum-games-head,
  .forum-games-table .forum-game-row {
    grid-template-columns: minmax(0, 1fr) 70px 70px 80px;
  }
  .forum-games-table .forum-topic-last { display: none !important; }
  .forum-games-table .forum-games-head > span:last-child { display: none !important; }
}
.forum-nav { position: sticky; top: 16px; }
.forum-nav-card {
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--card);
}
.forum-nav-head {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  margin-bottom: 10px; padding: 0 4px 10px; border-bottom: 1px solid var(--line);
}
.forum-nav-head h2 { margin: 0; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.forum-nav-all {
  font-size: 12px; font-weight: 700; color: var(--muted); text-decoration: none;
}
.forum-nav-all:hover,
.forum-nav-all.is-active { color: var(--orange); }
.forum-nav-empty { margin: 8px 4px; font-size: 13px; }
.forum-nav-list { display: grid; gap: 4px; }
.forum-nav-games {
  gap: 2px;
}
.forum-nav-item {
  display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: center;
  padding: 8px 10px; border-radius: 12px; text-decoration: none; color: inherit;
  border: 1px solid transparent;
  transition: background .12s ease, border-color .12s ease;
}
.forum-nav-item:hover {
  background: color-mix(in srgb, var(--orange) 10%, transparent);
  border-color: color-mix(in srgb, var(--orange) 25%, transparent);
}
.forum-nav-item.is-active {
  background: color-mix(in srgb, var(--forum-accent, var(--orange)) 14%, transparent);
  border-color: color-mix(in srgb, var(--forum-accent, var(--orange)) 40%, var(--line));
}
.forum-nav-ico {
  width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; flex: none;
  color: var(--forum-accent, var(--orange));
  background: color-mix(in srgb, var(--forum-accent, var(--orange)) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--forum-accent, var(--orange)) 28%, var(--line));
}
.forum-nav-ico svg { width: 17px; height: 17px; }
.forum-nav-logo {
  width: 36px; height: 36px; border-radius: 10px; flex: none;
  display: grid; place-items: center; overflow: hidden;
  background: var(--bg-2); border: 1px solid var(--line);
  font-size: 12px; font-weight: 800; color: var(--orange);
}
.forum-nav-logo img {
  width: 100%; height: 100%; object-fit: contain; display: block;
  border-radius: 10px;
  padding: 3px;
  box-sizing: border-box;
}
.forum-nav-text { display: grid; gap: 1px; min-width: 0; }
.forum-nav-text strong {
  font-size: 13px; font-weight: 700; line-height: 1.25;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.forum-nav-text small { color: var(--muted-2); font-size: 11px; font-weight: 650; }
.forum-section-head { margin-bottom: 12px; }
.forum-section-head h2 { margin: 0 0 4px; font-size: 18px; }
.forum-section-head .muted { margin: 0; font-size: 13px; }
.forum-cat-list { display: grid; gap: 10px; }
.forum-cat-card {
  display: grid; grid-template-columns: auto 1fr minmax(160px, 220px); gap: 14px; align-items: center;
  padding: 16px; border-radius: 16px; border: 1px solid var(--line);
  background: var(--card); text-decoration: none; color: inherit;
  transition: border-color .15s ease, transform .15s ease, background .15s ease;
}
.forum-cat-card:hover {
  border-color: color-mix(in srgb, var(--forum-accent, var(--orange)) 55%, var(--line));
  background: color-mix(in srgb, var(--forum-accent, var(--orange)) 6%, var(--card));
  transform: translateY(-1px);
}
.forum-cat-ico {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  color: var(--forum-accent, var(--orange));
  background: color-mix(in srgb, var(--forum-accent, var(--orange)) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--forum-accent, var(--orange)) 28%, var(--line));
  flex: none;
}
.forum-cat-ico svg { width: 22px; height: 22px; }
.forum-cat-ico-lg { width: 56px; height: 56px; border-radius: 16px; }
.forum-cat-ico-lg svg { width: 26px; height: 26px; }
.forum-cat-top { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 4px; }
.forum-cat-top h3 { margin: 0; font-size: 16px; }
.forum-cat-body > p { margin: 0 0 8px; color: var(--muted); font-size: 13px; line-height: 1.45; }
.forum-cat-meta { display: flex; flex-wrap: wrap; gap: 10px; color: var(--muted-2); font-size: 12px; font-weight: 700; }
.forum-cat-last { display: grid; gap: 2px; font-size: 12px; min-width: 0; }
.forum-cat-last-label { color: var(--muted-2); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: 10px; }
.forum-cat-last strong { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.forum-chip {
  display: inline-flex; align-items: center; gap: 4px; height: 22px; padding: 0 8px;
  border-radius: 999px; font-size: 11px; font-weight: 800; white-space: nowrap;
  background: color-mix(in srgb, var(--text) 8%, transparent); color: var(--muted);
}
.forum-chip svg { width: 11px; height: 11px; }
.forum-chip.is-pin { background: color-mix(in srgb, var(--orange) 18%, transparent); color: var(--orange); }
.forum-chip.is-hot { background: color-mix(in srgb, #ef4444 18%, transparent); color: #fb7185; }
.forum-chip.is-lock { background: color-mix(in srgb, #94a3b8 16%, transparent); color: #cbd5e1; }
.forum-chip.is-muted { background: color-mix(in srgb, var(--muted) 14%, transparent); }
.forum-side { display: grid; gap: 12px; position: sticky; top: 16px; }
.forum-side-card {
  padding: 16px; border-radius: 16px; border: 1px solid var(--line); background: var(--card);
}
.forum-side-card h3 { margin: 0 0 12px; font-size: 14px; }
.forum-side-list, .forum-activity { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.forum-side-list a {
  display: grid; grid-template-columns: auto 1fr; gap: 8px; align-items: start;
  color: inherit; text-decoration: none; font-size: 13px; font-weight: 600; line-height: 1.35;
}
.forum-side-list a:hover { color: var(--orange); }
.forum-side-badge {
  width: 22px; height: 22px; border-radius: 8px; display: grid; place-items: center; flex: none;
  background: color-mix(in srgb, #ef4444 18%, transparent); color: #fb7185;
}
.forum-side-badge svg { width: 12px; height: 12px; }
.forum-activity li { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; }
.forum-activity a { color: inherit; text-decoration: none; font-size: 13px; font-weight: 650; }
.forum-activity a:hover { color: var(--orange); }
.forum-activity .muted { margin: 2px 0 0; font-size: 12px; }
.forum-side-tip strong { display: block; margin-bottom: 6px; }
.forum-side-tip .muted { margin: 0; font-size: 13px; line-height: 1.45; }
.forum-avatar {
  width: 36px; height: 36px; border-radius: 12px; display: grid; place-items: center;
  font-weight: 800; font-size: 14px; color: #fff; flex: none;
  background: linear-gradient(145deg, #64748b, #334155);
}
.forum-avatar.sm { width: 28px; height: 28px; border-radius: 9px; font-size: 12px; }
.forum-avatar.lg { width: 52px; height: 52px; border-radius: 16px; font-size: 20px; }
.forum-avatar[data-role="admin"] { background: linear-gradient(145deg, var(--orange), #c2410c); }
.forum-avatar[data-role="mod"] { background: linear-gradient(145deg, #38bdf8, #0369a1); }
.forum-crumbs {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  margin-bottom: 16px; font-size: 13px; color: var(--muted);
}
.forum-crumbs a { color: var(--muted); text-decoration: none; }
.forum-crumbs a:hover { color: var(--orange); }
.forum-cat-hero {
  display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: center;
  margin-bottom: 18px; padding: 20px; border-radius: 18px; border: 1px solid var(--line);
  background: color-mix(in srgb, var(--forum-accent, var(--orange)) 8%, var(--card));
}
.forum-cat-hero h1 { margin: 0 0 6px; font-size: clamp(22px, 2.6vw, 30px); }
.forum-cat-hero .muted { margin: 0 0 8px; }
.forum-topic-board {
  border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: var(--card);
}
.forum-topic-head {
  display: grid; grid-template-columns: 1fr 140px 180px; gap: 12px;
  padding: 12px 16px; font-size: 11px; font-weight: 800; letter-spacing: .04em;
  text-transform: uppercase; color: var(--muted-2); border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg-2) 70%, transparent);
}
.forum-topic-list { display: grid; }
.forum-topic-row {
  display: grid; grid-template-columns: 1fr 140px 180px; gap: 12px; align-items: center;
  padding: 14px 16px; border-bottom: 1px solid var(--line); color: inherit; text-decoration: none;
  transition: background .12s ease;
}
.forum-topic-row:last-child { border-bottom: 0; }
.forum-topic-row:hover { background: color-mix(in srgb, var(--forum-accent, var(--orange)) 7%, transparent); }
.forum-topic-row.is-pinned { background: color-mix(in srgb, var(--orange) 5%, transparent); }
.forum-topic-flags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 6px; }
.forum-topic-title { display: block; font-size: 15px; line-height: 1.35; margin-bottom: 4px; }
.forum-topic-excerpt { margin: 0 0 8px; font-size: 13px; line-height: 1.4; }
.forum-topic-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.forum-tag {
  font-size: 11px; font-weight: 700; color: var(--muted);
  padding: 2px 8px; border-radius: 999px; border: 1px solid var(--line);
}
.forum-topic-author { display: flex; align-items: center; gap: 8px; font-size: 12px; }
.forum-topic-stats { display: grid; gap: 8px; }
.forum-topic-stats > div { display: grid; gap: 2px; }
.forum-topic-stats span { font-size: 11px; color: var(--muted-2); font-weight: 700; }
.forum-topic-stats strong { font-size: 15px; }
.forum-topic-last { display: flex; align-items: center; gap: 8px; min-width: 0; }
.forum-topic-last strong { display: block; font-size: 13px; }
.forum-topic-last .muted { font-size: 12px; }
.forum-topic-hero {
  margin-bottom: 18px; padding: 22px; border-radius: 18px; border: 1px solid var(--line);
  background:
    radial-gradient(700px 180px at 0% 0%, color-mix(in srgb, var(--forum-accent, var(--orange)) 18%, transparent), transparent 55%),
    var(--card);
}
.forum-topic-hero h1 { margin: 8px 0; font-size: clamp(22px, 3vw, 32px); line-height: 1.2; }
.forum-topic-hero > .muted { margin: 0 0 12px; max-width: 70ch; }
.forum-topic-hero-meta {
  display: flex; flex-wrap: wrap; gap: 14px; color: var(--muted); font-size: 13px; font-weight: 650; margin-bottom: 10px;
}
.forum-topic-hero-meta span { display: inline-flex; align-items: center; gap: 6px; }
.forum-topic-hero-meta svg { width: 14px; height: 14px; }
.forum-posts { display: grid; gap: 12px; margin-bottom: 16px; }
.forum-post {
  display: grid; grid-template-columns: 160px 1fr; gap: 0;
  border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: var(--card);
}
.forum-post.is-op { border-color: color-mix(in srgb, var(--forum-accent, var(--orange)) 35%, var(--line)); }
.forum-post-user {
  padding: 18px 14px; display: grid; justify-items: center; align-content: start; gap: 8px; text-align: center;
  background: color-mix(in srgb, var(--bg-2) 80%, transparent); border-right: 1px solid var(--line);
}
.forum-post-user strong { font-size: 13px; word-break: break-word; }
.forum-role {
  display: inline-flex; height: 20px; align-items: center; padding: 0 8px; border-radius: 999px;
  font-size: 10px; font-weight: 800; letter-spacing: .03em; text-transform: uppercase;
}
.forum-role-admin { background: color-mix(in srgb, var(--orange) 20%, transparent); color: var(--orange); }
.forum-role-mod { background: color-mix(in srgb, #38bdf8 20%, transparent); color: #7dd3fc; }
.forum-role-member { background: color-mix(in srgb, var(--text) 8%, transparent); color: var(--muted); }
.forum-post-body { padding: 16px 18px 18px; min-width: 0; }
.forum-post-head {
  display: flex; justify-content: space-between; gap: 10px; margin-bottom: 12px;
  font-size: 12px; color: var(--muted); border-bottom: 1px solid var(--line); padding-bottom: 10px;
}
.forum-post-content { font-size: 14.5px; line-height: 1.65; }
.forum-post-content p { margin: 0 0 12px; }
.forum-post-content p:last-child { margin-bottom: 0; }
.forum-reply-box {
  padding: 18px; border-radius: 16px; border: 1px dashed var(--line); background: color-mix(in srgb, var(--bg-2) 55%, var(--card));
}
.forum-locked-note, .forum-reply-disabled {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
}
.forum-locked-note svg { width: 22px; height: 22px; color: var(--muted); flex: none; }
.forum-locked-note strong, .forum-reply-disabled strong { display: block; margin-bottom: 2px; }
.forum-locked-note .muted, .forum-reply-disabled .muted { margin: 0; font-size: 13px; }
.forum-empty-panel { padding: 36px 20px; text-align: center; }
.forum-empty { margin: 14px 0 0; }
@media (max-width: 1100px) {
  .forum-layout { grid-template-columns: minmax(0, 1fr); }
  .forum-layout .forum-side { position: static; grid-template-columns: 1fr 1fr; display: grid; }
  .forum-side-tip { grid-column: 1 / -1; }
}
@media (max-width: 980px) {
  .forum-layout,
  .forum-layout-category { grid-template-columns: 1fr; }
  .forum-side { position: static; grid-template-columns: 1fr 1fr; display: grid; }
  .forum-side-tip { grid-column: 1 / -1; }
  .forum-hero { grid-template-columns: 1fr; }
  .forum-hero-actions { justify-content: flex-start; }
  .forum-cat-card { grid-template-columns: auto 1fr; }
  .forum-cat-last { grid-column: 2; }
}
@media (max-width: 720px) {
  .forum-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .forum-side { grid-template-columns: 1fr; }
  .forum-cat-hero { grid-template-columns: auto 1fr; }
  .forum-cat-hero-tools { grid-column: 1 / -1; }
  .forum-search { min-width: 0; width: 100%; }
  .forum-topic-head, .forum-topic-row { grid-template-columns: 1fr; }
  .forum-games-table .forum-games-head,
  .forum-games-table .forum-game-row {
    grid-template-columns: 1fr;
  }
  .forum-games-table .forum-games-head { display: none; }
  .forum-games-table .forum-game-stat {
    justify-content: space-between;
    padding: 2px 0;
  }
  .forum-games-table .forum-game-stat::before {
    content: attr(data-label);
    font-size: 11px;
    font-weight: 700;
    color: var(--muted-2);
    text-transform: uppercase;
    letter-spacing: .04em;
  }
  .hide-sm { display: none !important; }
  .forum-games-table .forum-game-stat.hide-sm,
  .forum-games-table .forum-topic-last.hide-sm {
    display: flex !important;
  }
  .forum-post { grid-template-columns: 1fr; }
  .forum-post-user {
    grid-template-columns: auto 1fr auto; justify-items: start; text-align: left;
    border-right: 0; border-bottom: 1px solid var(--line);
    align-items: center;
  }
  .forum-post-user .forum-avatar.lg { width: 40px; height: 40px; border-radius: 12px; font-size: 16px; }
}

/* Mobile bottom bar */
.mbar,
.mbar-overlay,
.mbar-sheet { display: none; }

@media (max-width: 820px) {
  .header-actions { display: none; }
  .header-row { grid-template-columns: 1fr; }
  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px));
  }
  .cookie {
    bottom: calc(76px + env(safe-area-inset-bottom, 0px));
  }
  .mbar {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    background: color-mix(in srgb, var(--card) 92%, transparent);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--line);
    padding: 6px 4px calc(6px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -8px 24px rgba(0, 0, 0, .28);
  }
  html[data-theme="light"] .mbar {
    background: color-mix(in srgb, var(--card) 94%, transparent);
    box-shadow: 0 -8px 24px rgba(24, 24, 27, .08);
  }
  .mbar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    min-width: 0;
    min-height: 48px;
    padding: 4px 2px;
    border: 0;
    background: transparent;
    color: var(--muted);
    text-decoration: none;
    font: inherit;
    cursor: pointer;
    border-radius: 10px;
  }
  .mbar-item:hover,
  .mbar-item.is-active,
  .mbar-item.is-open {
    color: var(--orange);
    background: color-mix(in srgb, var(--orange) 10%, transparent);
  }
  .mbar-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
  }
  .mbar-ico svg { width: 20px; height: 20px; display: block; }
  .mbar-flag .flag,
  .mbar-flag .flag-svg { width: 18px; height: 12px; }
  .mbar-label {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 9px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: .01em;
  }
  .mbar .theme-mode {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: none;
    border: 0;
    padding: 0;
    height: auto;
  }
  .mbar .theme-mode svg { width: 20px; height: 20px; }
  .mbar .theme-mode-to-light { display: inline-flex; }
  html[data-theme="light"] .mbar .theme-mode-to-light { display: none; }
  html[data-theme="light"] .mbar .theme-mode-to-dark { display: inline-flex; }
  .mbar-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 78;
    background: rgba(0, 0, 0, .46);
  }
  .mbar-overlay[hidden] { display: none !important; }
  .mbar-sheet {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: calc(62px + env(safe-area-inset-bottom, 0px));
    z-index: 79;
    background: var(--card);
    border: 1px solid var(--line);
    border-bottom: 0;
    border-radius: 18px 18px 0 0;
    padding: 14px 16px 16px;
    box-shadow: var(--shadow);
    max-height: min(70vh, 480px);
    overflow: auto;
  }
  .mbar-sheet[hidden] { display: none !important; }
  .mbar-sheet-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
  }
  .mbar-sheet-head strong { font-size: 15px; }
  .mbar-sheet-close {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 10px;
    background: var(--card-2);
    color: var(--text);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
  }
  .mbar-search { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 8px; }
  .mbar-lang-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .mbar-lang-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: var(--card-2);
    color: var(--text);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
  }
  .mbar-lang-list a[aria-current="true"] {
    border-color: var(--orange);
    color: var(--orange);
  }
}
