@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  --ink: #f6f4ef;
  --muted: #a9aaa9;
  --paper: #0c0d0f;
  --panel: #15171a;
  --panel-2: #1d2024;
  --line: #2d3035;
  --red: #ee3d45;
  --orange: #ff8a2a;
  --green: #9fe870;
  --radius: 18px;
  --site-navigation-offset: 150px;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--site-navigation-offset);
}
html, body { max-width: 100%; overflow-x: clip; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.55 "DM Sans", system-ui, sans-serif;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 10;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button, .button { cursor: pointer; }
img { display: block; max-width: 100%; }
h1, h2, h3, .brand { font-family: "Space Grotesk", sans-serif; }
h1, h2, h3, p { margin-top: 0; }
main, section, article, aside, div, form, nav { min-width: 0; }
h1, h2, h3, p, a, strong, dd { overflow-wrap: anywhere; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.site-navigation {
  position: sticky;
  top: 0;
  z-index: 11;
}
.site-header {
  min-height: 78px;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) minmax(280px, 620px) minmax(190px, 1fr);
  align-items: center;
  gap: 28px;
  padding: 14px clamp(20px, 4vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(12,13,15,.92);
  backdrop-filter: blur(16px);
}
.brand { display: flex; align-items: center; gap: 10px; font-size: 23px; font-weight: 700; }
.brand > span:last-child > span, .footer-brand > span:last-child { color: var(--red); }
.brand-logo {
  width: 104px;
  height: 53px;
  object-fit: contain;
}
.search-shell { position: relative; width: 100%; }
.search {
  display: flex; padding: 4px; border: 1px solid var(--line);
  background: var(--panel); border-radius: 999px;
}
.search:focus-within { border-color: #74777d; }
.search input { flex: 1; min-width: 0; padding: 8px 16px; color: var(--ink); border: 0; outline: 0; background: transparent; }
.search button { padding: 8px 18px; color: var(--ink); border: 0; border-radius: 999px; background: var(--panel-2); }
.search button { display: inline-flex; align-items: center; gap: 7px; }
.search-shell.is-loading .search { border-color: var(--orange); }
.search-suggestions {
  position: absolute;
  top: calc(100% + 9px);
  left: 0;
  right: 0;
  z-index: 30;
  max-height: min(520px, calc(100vh - var(--site-navigation-offset) - 20px));
  overflow-y: auto;
  padding: 8px;
  border: 1px solid #3a3e44;
  border-radius: 16px;
  background: rgba(21,23,26,.98);
  box-shadow: 0 22px 55px rgba(0,0,0,.58);
  backdrop-filter: blur(18px);
}
.search-suggestions[hidden] { display: none; }
.search-suggestion-label {
  padding: 6px 10px 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.search-suggestion {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 11px;
}
.search-suggestion:hover,
.search-suggestion.is-active { background: var(--panel-2); }
.search-suggestion-image {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 9px;
  background: #0d0f12;
}
.search-suggestion-image > img {
  width: 100%;
  height: 100%;
  padding: 4px;
  object-fit: contain;
}
.search-suggestion-image .gamez-placeholder {
  width: 100%;
  border: 0;
  border-radius: 9px;
  box-shadow: none;
}
.search-suggestion-copy { min-width: 0; display: grid; }
.search-suggestion-copy strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.search-suggestion-copy small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.search-suggestion-price {
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.search-all-results {
  display: block;
  margin-top: 5px;
  padding: 11px 10px 7px;
  border-top: 1px solid var(--line);
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
}
.search-all-results.is-active { color: var(--ink); }
.search-suggestion-empty {
  padding: 18px 14px;
  display: grid;
  gap: 3px;
}
.search-suggestion-empty span { color: var(--muted); font-size: 13px; }
.site-header nav { justify-self: end; display: flex; align-items: center; gap: 10px; white-space: nowrap; }
.site-header nav a:hover, .link-button:hover { color: var(--orange); }
.inline-form { display: inline; }
.link-button { border: 0; padding: 0; background: transparent; color: var(--ink); }
.icon {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.header-action {
  min-height: 38px;
  padding: 7px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 9px;
}
.header-action:hover { background: var(--panel-2); }
.icon-action { width: 38px; padding: 7px; }
.button.header-action:hover { color: white; background: var(--red); }
.category-nav {
  display: flex; justify-content: center; gap: clamp(18px, 4vw, 54px);
  padding: 11px 20px; overflow-x: auto; border-bottom: 1px solid var(--line);
  color: var(--muted); font-size: 14px; font-weight: 600;
  background: rgba(16,17,20,.96); backdrop-filter: blur(16px);
  scrollbar-width: none;
}
.category-nav::-webkit-scrollbar { display: none; }
.category-nav a {
  position: relative;
  flex: 0 0 auto;
  transition: color .2s ease;
}
.category-nav a:hover { color: var(--ink); }
.category-nav a[aria-current="page"] { color: var(--ink); }
.category-menu { position: relative; flex: 0 0 auto; color: var(--muted); }
.category-menu-trigger {
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: inherit;
  border: 0;
  background: transparent;
  font: inherit;
  white-space: nowrap;
  cursor: pointer;
}
.category-menu-trigger:hover,
.category-menu-trigger[aria-expanded="true"] { color: var(--ink); }
.category-menu-trigger:focus-visible { outline: 2px solid var(--orange); outline-offset: 5px; border-radius: 3px; }
.category-menu-chevron {
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: translateY(-2px) rotate(45deg);
  transition: transform .18s ease;
}
.category-menu-trigger[aria-expanded="true"] .category-menu-chevron { transform: translateY(2px) rotate(225deg); }
.category-menu-panel {
  z-index: 100;
  width: max-content;
  min-width: 190px;
  max-width: calc(100vw - 24px);
  padding: 8px;
  display: grid;
  gap: 2px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #111416;
  box-shadow: 0 18px 55px #000c;
}
.category-menu-panel[hidden] { display: none; }
.category-menu-panel a {
  padding: 10px 11px;
  display: block;
  border-radius: 8px;
  font-size: 13px;
  white-space: nowrap;
}
.category-menu-panel a:hover,
.category-menu-panel a:focus-visible { color: var(--ink); background: var(--panel-2); outline: none; }
.category-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--red), var(--orange));
}

.button {
  display: inline-flex; justify-content: center; align-items: center;
  min-height: 46px; padding: 11px 22px; border: 1px solid var(--red);
  border-radius: 10px; background: var(--red); color: white; font-weight: 700;
  transition: transform .2s ease, filter .2s ease;
}
.button:hover { transform: translateY(-2px); filter: brightness(1.08); }
.button.secondary { background: transparent; color: var(--ink); }
.button.light { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.button.small { min-height: 36px; padding: 7px 15px; }
.button.ghost { background: transparent; }
.button.danger { color: #ff747b; }
.button[disabled] { opacity: .45; pointer-events: none; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }

#app {
  min-height: 65vh;
  scroll-margin-top: var(--site-navigation-offset);
}
.home-carousel {
  --carousel-height: 650px;
  position: relative;
  height: var(--carousel-height);
  overflow: hidden;
  outline: none;
  background:
    radial-gradient(circle at 75% 40%, rgba(238,61,69,.18), transparent 31%),
    radial-gradient(circle at 55% 85%, rgba(255,138,42,.10), transparent 22%);
}
.home-carousel:focus-visible { box-shadow: inset 0 0 0 2px var(--orange); }
.carousel-viewport { height: 100%; }
.carousel-slide {
  height: 100%;
  animation: carousel-reveal .45s ease both;
}
.carousel-slide[hidden] { display: none; }
.carousel-slide--content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(30px, 6vw, 110px);
  padding: clamp(60px, 8vw, 120px) clamp(60px, 9vw, 150px);
}
.carousel-copy h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(52px, 7vw, 104px);
  line-height: .92;
  letter-spacing: -.065em;
}
.carousel-copy > p:not(.eyebrow) {
  max-width: 630px;
  color: var(--muted);
  font-size: clamp(17px, 1.4vw, 21px);
}
.carousel-art {
  position: relative;
  min-height: 380px;
  display: grid;
  place-items: center;
}
.carousel-art::before {
  content: "";
  position: absolute;
  width: min(420px, 80%);
  aspect-ratio: 1;
  border: 1px solid #55282b;
  border-radius: 50%;
}
.carousel-art img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 470px;
  object-fit: contain;
  filter: drop-shadow(0 30px 45px #000);
}
.carousel-slide--banner,
.carousel-banner-link {
  height: 100%;
}
.carousel-slide--banner { background: #111318; }
.carousel-banner-link {
  position: relative;
  display: block;
  overflow: hidden;
}
.carousel-banner-link img {
  width: 100%;
  height: 100%;
}
.carousel-banner-backdrop {
  position: absolute;
  inset: 0;
  object-fit: cover;
  filter: blur(28px) brightness(.34) saturate(.75);
  transform: scale(1.1);
}
.carousel-banner-image {
  position: relative;
  z-index: 1;
  object-fit: contain;
}
.carousel-control {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(12,13,15,.72);
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
  transition: border-color .2s, background .2s, transform .2s;
}
.carousel-control:hover,
.carousel-control:focus-visible {
  border-color: var(--red);
  background: rgba(238,61,69,.85);
  transform: translateY(-50%) scale(1.06);
}
.carousel-control .icon { width: 26px; height: 26px; }
.carousel-control--previous { left: clamp(12px, 2.5vw, 40px); }
.carousel-control--next { right: clamp(12px, 2.5vw, 40px); }
.carousel-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 25px;
  display: flex;
  gap: 9px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(12,13,15,.65);
  backdrop-filter: blur(10px);
  transform: translateX(-50%);
}
.carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #76797f;
  transition: width .2s, background .2s;
}
.carousel-dots button[aria-current="true"] {
  width: 28px;
  background: var(--red);
}
@keyframes carousel-reveal {
  from { opacity: .2; }
  to { opacity: 1; }
}
.hero {
  min-height: 650px; display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  gap: clamp(30px, 6vw, 110px); padding: clamp(60px, 8vw, 120px) clamp(24px, 7vw, 120px);
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 40%, rgba(238,61,69,.18), transparent 31%),
    radial-gradient(circle at 55% 85%, rgba(255,138,42,.10), transparent 22%);
}
.hero h1 { font-size: clamp(56px, 8vw, 118px); line-height: .88; letter-spacing: -.07em; margin-bottom: 30px; }
.hero h1 em { color: var(--red); font-style: normal; }
.hero-copy > p:not(.eyebrow) { max-width: 630px; color: var(--muted); font-size: clamp(17px, 1.4vw, 21px); }
.eyebrow { color: var(--orange); font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.hero-art { display: grid; place-items: center; position: relative; min-height: 380px; }
.hero-art::before { content: ""; position: absolute; width: 420px; height: 420px; border: 1px solid #55282b; border-radius: 50%; }
.hero-art img { position: relative; max-height: 510px; object-fit: contain; filter: drop-shadow(0 30px 45px #000); }
.gamez-placeholder {
  position: relative;
  z-index: 1;
  width: min(210px, 78%);
  aspect-ratio: 1;
  display: block;
  overflow: hidden;
  border: 1px solid #3b3f46;
  border-radius: 24px;
  background: #111316;
  box-shadow: 0 18px 34px rgba(0,0,0,.34);
}
.gamez-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 62%, rgba(4,7,9,.28));
}
.gamez-placeholder img {
  width: 100%;
  height: 100%;
  display: block;
  padding: 0;
  object-fit: cover;
}
.gamez-placeholder--hero {
  width: min(390px, 76%);
  border-radius: 36px;
  transform: rotate(-4deg);
  box-shadow: 0 35px 55px #000;
}

.trust-strip {
  max-width: 1400px; margin: -35px auto 0; position: relative; display: grid;
  grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--panel);
}
.trust-strip div { padding: 24px 28px; border-right: 1px solid var(--line); }
.trust-strip div:last-child { border: 0; }
.trust-strip strong, .trust-strip span { display: block; }
.trust-strip span { color: var(--muted); font-size: 14px; }

.section-shell { max-width: 1440px; margin: 0 auto; padding: clamp(65px, 7vw, 110px) clamp(20px, 4vw, 58px); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 35px; }
.section-heading h2 { margin: 0; font-size: clamp(30px, 4vw, 52px); letter-spacing: -.04em; }
.section-heading > a { color: var(--orange); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card {
  min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--panel); transition: transform .25s, border-color .25s;
}
.product-card:hover { transform: translateY(-6px); border-color: #565a61; }
.product-image {
  aspect-ratio: .95; display: grid; place-items: center; overflow: hidden;
  background: radial-gradient(circle, #292d33 0, #17191d 72%);
}
.product-image img { width: 100%; height: 100%; object-fit: contain; padding: 18px; transition: transform .3s; }
.product-card:hover img { transform: scale(1.04); }
.product-image > .gamez-placeholder { width: min(210px, 78%); }
.product-copy { padding: 20px; }
.product-copy h3 { min-height: 47px; margin-bottom: 16px; font-size: 18px; line-height: 1.3; }
.product-copy .eyebrow { margin-bottom: 7px; font-size: 10px; }
.product-meta { display: flex; justify-content: space-between; align-items: end; gap: 10px; }
.product-meta strong { color: var(--green); font-size: 21px; }
.product-meta span { color: var(--muted); font-size: 12px; text-align: right; }

.sell-banner {
  max-width: 1324px; margin: 0 auto 30px; padding: clamp(35px, 5vw, 70px);
  display: flex; justify-content: space-between; align-items: center; gap: 30px;
  border-radius: 24px; background: linear-gradient(125deg, #d92933, #ff6a31);
}
.sell-banner h2 { max-width: 750px; margin: 0; font-size: clamp(30px, 4vw, 55px); line-height: 1; }
.sell-banner .eyebrow { color: #2a0709; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-grid blockquote { margin: 0; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.review-grid blockquote > p { min-height: 90px; font-size: 18px; }
.review-grid footer strong, .review-grid footer span { display: block; }
.review-grid footer span { color: var(--muted); font-size: 13px; }
.customer-stories { padding-top: clamp(42px, 6vw, 72px); }
.review-stars { min-height: 0 !important; margin: 0 0 14px; color: #ffcb45; letter-spacing: .08em; }
.product-review-list { display: grid; gap: 12px; }
.product-review-list article { padding: 22px; display: grid; grid-template-columns: minmax(170px, .35fr) 1fr auto; gap: 22px; border: 1px solid var(--line); border-radius: 14px; background: var(--panel); }
.product-review-list article > div { display: flex; flex-direction: column; align-items: flex-start; gap: 5px; }
.product-review-list article > p { margin: 0; color: #d2d4d2; line-height: 1.7; }
.product-review-list time { color: var(--muted); font-size: 12px; white-space: nowrap; }
.verified-label { padding: 4px 7px; border-radius: 999px; color: var(--green); background: #9fe87012; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.review-empty { padding-block: 35px; border: 1px dashed var(--line); border-radius: 14px; }
.review-account-section { margin-top: 22px; padding: 22px; border: 1px solid var(--line); border-radius: 15px; background: #111417; }
.review-account-section h3 { margin: 3px 0 6px; font-size: 23px; }
.review-account-section > div > p:last-child { margin: 0; color: var(--muted); }
.review-form { margin-top: 20px; display: grid; gap: 14px; }
.review-form label { display: grid; gap: 7px; color: var(--muted); font-size: 13px; font-weight: 700; }
.review-form input, .review-form select, .review-form textarea { width: 100%; padding: 12px 13px; border: 1px solid var(--line); border-radius: 9px; color: var(--ink); background: var(--paper); }
.review-form textarea { min-height: 125px; resize: vertical; }
.review-form .button { width: fit-content; }
.review-trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.customer-review-history { margin-top: 18px; display: grid; gap: 10px; }
.customer-review-history article { padding: 15px; border: 1px solid var(--line); border-radius: 10px; background: var(--paper); }
.customer-review-history article > div { display: flex; justify-content: space-between; gap: 15px; }
.customer-review-history article p { margin: 8px 0 0; color: var(--muted); line-height: 1.5; }

.page-hero { padding: 80px clamp(24px, 7vw, 120px); background: linear-gradient(135deg, #17191d, #101113); }
.page-hero.compact {
  min-height: 220px;
  padding-block: clamp(34px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.page-hero h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 84px);
  line-height: .98;
  letter-spacing: -.06em;
}
.page-hero > p:last-of-type { color: var(--muted); }
.page-hero.compact > .eyebrow { margin-bottom: 8px; }
.page-hero.compact > p:last-of-type { margin: 12px 0 0; }
.search-summary {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.search-summary p { margin: 0; color: var(--muted); }
.search-summary a { color: var(--orange); font-weight: 700; }
.page-hero.cart-hero {
  min-height: 0;
  padding-block: clamp(30px, 4vw, 48px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
}
.cart-hero h1 { font-size: clamp(40px, 5vw, 64px); }
.cart-hero .eyebrow { margin-bottom: 8px; }
.cart-hero .segmented { margin-top: 0; }
.pagination { display: flex; justify-content: center; align-items: center; gap: 24px; margin-top: 45px; }
.pagination a { color: var(--orange); }
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.category-grid > a { min-height: 190px; padding: 30px; display: flex; flex-direction: column; justify-content: end; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.category-grid > a > span { margin-bottom: auto; color: var(--red); font-size: 28px; }
.category-grid strong { font: 700 27px "Space Grotesk"; }
.category-grid small { color: var(--muted); }

.product-detail { max-width: 1400px; margin: auto; padding: clamp(45px, 6vw, 95px) clamp(20px, 5vw, 70px); display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(35px, 6vw, 90px); }
.product-main-image { aspect-ratio: 1; display: grid; place-items: center; overflow: hidden; border-radius: 24px; background: radial-gradient(circle, #2b2f35, #141619 70%); }
.product-main-image img { width: 100%; height: 100%; padding: 35px; object-fit: contain; }
.product-main-image > .gamez-placeholder { width: min(420px, 78%); }
.thumbnail-row { display: flex; gap: 12px; margin-top: 14px; padding-bottom: 5px; overflow-x: auto; overscroll-behavior-inline: contain; scrollbar-width: thin; }
.product-thumbnail { flex: 0 0 auto; padding: 0; border: 1px solid var(--line); border-radius: 9px; background: var(--panel); cursor: pointer; }
.product-thumbnail img { display: block; width: 84px; height: 84px; padding: 6px; object-fit: contain; border-radius: 9px; }
.product-thumbnail.is-active { border-color: var(--orange); box-shadow: 0 0 0 2px color-mix(in srgb, var(--orange) 20%, transparent); }
.product-info h1 { font-size: clamp(39px, 5vw, 68px); line-height: .98; letter-spacing: -.055em; }
.lead { color: var(--muted); font-size: 18px; }
.rating { color: #ffcb45; }
.rating span { color: var(--muted); }
.wishlist-status,
.cart-status {
  width: fit-content;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 14px;
  color: var(--green);
}
.wishlist-status a,
.cart-status a {
  color: var(--orange);
  font-weight: 700;
}
.wishlist-status a:hover,
.cart-status a:hover { text-decoration: underline; }
.purchase-panel { margin: 20px 0; padding: 20px; display: grid; grid-template-columns: minmax(110px, 1fr) auto; align-items: center; gap: 14px; border: 1px solid var(--line); border-radius: 14px; background: var(--panel); }
.purchase-panel > div:first-child span,
.purchase-panel > div:first-child del,
.purchase-panel > div:first-child strong { display: block; }
.purchase-panel > div:first-child span { color: var(--muted); font-size: 13px; }
.purchase-panel .product-price del {
  width: fit-content;
  margin: 3px 0 1px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.15;
  text-decoration-color: #ff747b;
  text-decoration-thickness: 2px;
}
.purchase-panel .product-price del,
.purchase-panel .product-price strong { white-space: nowrap; }
.purchase-panel > div:first-child strong { color: var(--green); font-size: 28px; }
.purchase-panel.sell > div:first-child strong { color: var(--orange); }
.purchase-action { justify-self: end; }
.purchase-action form { margin: 0; }
.cart-status {
  display: grid;
  justify-items: end;
  gap: 1px;
  text-align: right;
}
.product-info details { padding: 18px 0; border-bottom: 1px solid var(--line); }
.product-info summary { cursor: pointer; font-weight: 700; }
.rich-copy { color: var(--muted); line-height: 1.7; }
.rich-copy > :first-child { margin-top: 0; }
.rich-copy > :last-child { margin-bottom: 0; }
.rich-copy h1,
.rich-copy h2,
.rich-copy h3,
.rich-copy h4 { margin: 1.1em 0 .45em; color: var(--ink); line-height: 1.2; }
.rich-copy p { margin: .75em 0; }
.rich-copy ul,
.rich-copy ol { margin: .75em 0; padding-left: 1.5em; }
.rich-copy blockquote { margin: 1em 0; padding-left: 1em; border-left: 3px solid var(--red); }
.rich-copy a { color: var(--orange); text-decoration: underline; }
.rich-copy img { max-width: 100%; height: auto; }

.auth-shell { min-height: 690px; display: grid; grid-template-columns: 1fr 1fr; }
.auth-aside { padding: clamp(60px, 8vw, 130px); display: flex; flex-direction: column; justify-content: center; background: radial-gradient(circle at 25% 30%, #422126, #17191c 48%); }
.auth-aside h1 { max-width: 650px; font-size: clamp(45px, 6vw, 88px); line-height: .95; letter-spacing: -.06em; }
.auth-aside > p:last-child { max-width: 540px; color: var(--muted); font-size: 18px; }
.auth-card { width: min(500px, calc(100% - 40px)); margin: auto; padding: 40px; border: 1px solid var(--line); border-radius: 20px; background: var(--panel); }
.auth-card h2 { font-size: 36px; }
.auth-card form { display: grid; gap: 18px; }
.auth-card label { display: grid; gap: 7px; color: var(--muted); font-size: 13px; font-weight: 600; }
.auth-card input { width: 100%; padding: 13px 14px; border: 1px solid var(--line); border-radius: 9px; outline: 0; color: var(--ink); background: var(--paper); }
.auth-card input:focus { border-color: var(--orange); }
.auth-card > p { margin: 22px 0 0; color: var(--muted); text-align: center; }
.auth-card > p a { color: var(--orange); }

.segmented { display: flex; width: fit-content; margin-top: 20px; padding: 4px; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); }
.segmented a { padding: 8px 20px; border-radius: 999px; color: var(--muted); }
.segmented a.active { background: var(--red); color: white; }
.cart-list { display: grid; gap: 14px; }
.cart-row { display: grid; grid-template-columns: 84px 1fr auto auto; align-items: center; gap: 20px; padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: var(--panel); }
.cart-item-image {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 10px;
  background: radial-gradient(circle, #292d33 0, #17191d 72%);
}
.cart-item-image img { width: 100%; height: 100%; padding: 7px; object-fit: contain; }
.cart-item-image .gamez-placeholder {
  width: 82%;
  border-radius: 8px;
  box-shadow: none;
}
.cart-row h2, .cart-row h3 { margin: 0; font-size: 19px; }
.cart-item-details p { margin: 4px 0 0; color: var(--muted); }
.quantity-control {
  width: fit-content;
  margin-top: 10px;
  display: inline-grid;
  grid-template-columns: 32px minmax(34px, auto) 32px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  overflow: hidden;
}
.quantity-control button {
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: var(--panel-2);
  font-size: 20px;
  line-height: 1;
}
.quantity-control button:hover:not(:disabled) { color: var(--orange); }
.quantity-control button:disabled { cursor: not-allowed; opacity: .35; }
.quantity-control span { color: var(--ink); text-align: center; font-weight: 700; }
.cart-line-price {
  display: grid;
  justify-items: end;
  line-height: 1.25;
  white-space: nowrap;
}
.cart-line-price del { color: var(--muted); font-size: 13px; }
.cart-unit-price { color: var(--muted); font-size: 13px; }
.cart-line-total { color: var(--green); }
.cart-line-total span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.cart-summary { margin: 22px 0 0 auto; max-width: 430px; padding: 25px; display: grid; gap: 13px; border: 1px solid var(--line); border-radius: 14px; background: var(--panel); }
.cart-summary span { color: var(--muted); }
.cart-summary strong { font-size: 28px; }
.checkout-form { display: grid; gap: 12px; }
.checkout-form label { display: grid; gap: 5px; color: var(--muted); font-size: 13px; }
.checkout-form select, .checkout-form input { width: 100%; min-width: 0; padding: 11px; color: var(--ink); border: 1px solid var(--line); border-radius: 8px; background: var(--paper); }
.checkout-payment-note { margin: 0; color: var(--green); font-size: 13px; font-weight: 700; }
.checkout-address { padding: 14px; display: grid; gap: 3px; border: 1px solid var(--line); border-radius: 10px; background: var(--paper); }
.checkout-address > span { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.checkout-address > strong { font-size: 16px; }
.checkout-address > small { color: var(--muted); }
.checkout-address .link-button { width: fit-content; margin-top: 7px; color: var(--orange); }
.address-dialog { width: min(680px, calc(100% - 28px)); max-height: min(800px, calc(100vh - 28px)); padding: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; color: var(--ink); background: var(--panel); box-shadow: 0 30px 100px #000b; }
.address-dialog::backdrop { background: #050608d9; backdrop-filter: blur(7px); }
.address-dialog-shell { max-height: min(800px, calc(100vh - 28px)); padding: clamp(20px, 4vw, 32px); overflow-y: auto; }
.address-dialog-header { margin-bottom: 24px; display: flex; align-items: start; justify-content: space-between; gap: 18px; }
.address-dialog-header .eyebrow { margin: 0 0 5px; }
.address-dialog-header h2 { margin: 0; font-size: clamp(27px, 4vw, 38px); }
.address-dialog-header p:last-child { margin: 6px 0 0; color: var(--muted); }
.dialog-close { width: 38px; height: 38px; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 50%; color: var(--muted); background: var(--paper); font-size: 25px; line-height: 1; cursor: pointer; }
.address-options { display: grid; gap: 10px; }
.address-option { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 12px; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); }
.address-option.is-selected { border-color: var(--orange); box-shadow: 0 0 0 2px color-mix(in srgb, var(--orange) 15%, transparent); }
.address-option-select { padding: 16px; display: grid; grid-template-columns: 18px 1fr; gap: 12px; border: 0; color: inherit; text-align: left; background: transparent; cursor: pointer; }
.address-option-select > span:last-child { min-width: 0; display: grid; gap: 3px; }
.address-option-select strong { font-size: 15px; }
.address-option-select span span { color: var(--muted); font-size: 13px; }
.address-option-select .badge { width: fit-content; float: none; }
.address-radio { width: 17px; height: 17px; margin-top: 2px; border: 2px solid var(--muted); border-radius: 50%; box-shadow: inset 0 0 0 3px var(--paper); }
.address-option.is-selected .address-radio { border-color: var(--orange); background: var(--orange); }
.address-option > .link-button { margin-right: 16px; color: var(--orange); }
.address-dialog-actions { margin-top: 20px; display: flex; justify-content: space-between; gap: 10px; }
.address-empty { padding: 40px 20px; display: grid; place-items: center; text-align: center; border: 1px dashed var(--line); border-radius: 12px; }
.address-empty > span { color: var(--orange); font-size: 30px; }
.address-empty p { margin: 5px 0 0; color: var(--muted); }
.address-editor-heading { margin-bottom: 20px; }
.address-editor-heading h3 { margin: 14px 0 0; font-size: 25px; }
.address-editor-form { display: grid; gap: 14px; }
.address-editor-form > div { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.address-editor-form label { display: grid; gap: 6px; color: var(--muted); font-size: 13px; }
.address-editor-form input { width: 100%; min-width: 0; padding: 11px 12px; color: var(--ink); border: 1px solid var(--line); border-radius: 8px; background: var(--paper); }
.address-editor-form .check { display: flex; align-items: center; gap: 8px; }
.address-editor-form .check input { width: auto; }
.order-detail { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 24px; align-items: start; }

.account-shell { max-width: 1400px; min-height: 650px; margin: auto; padding: clamp(50px, 7vw, 100px) clamp(20px, 5vw, 70px); display: grid; grid-template-columns: 280px 1fr; gap: 50px; }
.account-shell aside h1 { font-size: 34px; }
.account-shell aside nav { display: grid; gap: 4px; }
.account-shell aside nav a { padding: 11px 14px; border-radius: 8px; color: var(--muted); }
.account-shell aside nav a.active { color: white; background: var(--panel-2); }
.account-content { align-self: start; padding: 35px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.account-content > h2 { font-size: 35px; }
.account-content .product-grid { grid-template-columns: repeat(3, 1fr); }
.account-section-heading {
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.account-section-heading h2 { margin: 0; font-size: 35px; }
.account-section-heading p { margin: 3px 0 0; color: var(--muted); }
.wishlist-list { display: grid; gap: 14px; }
.wishlist-row {
  padding: 16px;
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--paper);
}
.wishlist-image {
  width: 138px;
  height: 138px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: radial-gradient(circle, #292d33 0, #17191d 72%);
}
.wishlist-image > img {
  width: 100%;
  height: 100%;
  padding: 9px;
  object-fit: contain;
}
.wishlist-image .gamez-placeholder {
  width: 88%;
  border-radius: 10px;
  box-shadow: none;
}
.wishlist-copy .eyebrow { margin-bottom: 5px; font-size: 10px; }
.wishlist-copy h3 { margin: 0 0 15px; font-size: clamp(18px, 2vw, 23px); }
.wishlist-prices {
  display: flex;
  align-items: end;
  flex-wrap: wrap;
  gap: 16px 30px;
}
.wishlist-prices > div { display: grid; line-height: 1.25; }
.wishlist-prices span { color: var(--muted); font-size: 11px; }
.wishlist-prices del { color: var(--muted); font-size: 12px; text-decoration-color: #ff747b; }
.wishlist-prices strong { color: var(--green); font-size: 20px; }
.wishlist-prices .sell-price { color: var(--orange); }
.wishlist-actions {
  min-width: 132px;
  display: grid;
  gap: 9px;
}
.wishlist-actions form,
.wishlist-actions .button { width: 100%; }
.wishlist-actions .button { min-height: 40px; padding: 8px 13px; }
.profile-list { display: grid; gap: 0; }
.profile-list > div { padding: 18px 0; display: grid; grid-template-columns: 150px 1fr; border-bottom: 1px solid var(--line); }
.profile-list dt { color: var(--muted); }
.profile-list dd { margin: 0; }
.address-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.address-grid article { padding: 20px; border: 1px solid var(--line); border-radius: 12px; }
.address-grid article p { color: var(--muted); }
.badge { float: right; padding: 3px 9px; color: var(--green); border: 1px solid #3a5530; border-radius: 99px; font-size: 11px; }
.wishlist-button { margin-bottom: 16px; color: var(--orange); }
.remove-link { margin-top: 10px; color: #ff747b; }
.account-form { margin-top: 25px; padding: 18px; border: 1px solid var(--line); border-radius: 12px; }
.account-form summary { cursor: pointer; font-weight: 700; }
.account-form form { margin-top: 20px; display: grid; gap: 14px; }
.account-form label { display: grid; gap: 6px; color: var(--muted); font-size: 13px; }
.account-form input { padding: 11px 12px; color: var(--ink); border: 1px solid var(--line); border-radius: 8px; background: var(--paper); }
.account-form form > div { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.account-form label.check { display: flex; align-items: center; }
.orders-heading { margin-bottom: 22px; }
.order-count { padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 13px; white-space: nowrap; }
.order-list { display: grid; gap: 16px; }
.order-card { display: block; border: 1px solid var(--line); border-radius: 15px; overflow: hidden; background: #111417; transition: border-color .2s ease, transform .2s ease, background .2s ease; }
.order-card:hover { border-color: #62676c; background: #15191d; transform: translateY(-2px); }
.order-card article { display: block; }
.order-card-header { padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; gap: 18px; border-bottom: 1px solid var(--line); }
.order-card-identity { min-width: 0; display: flex; align-items: center; gap: 10px; }
.order-card-identity strong { overflow: hidden; text-overflow: ellipsis; font-size: 14px; white-space: nowrap; }
.order-kind { display: inline-flex; align-items: center; width: fit-content; padding: 5px 9px; border: 1px solid #345e48; border-radius: 999px; color: #8ee5ae; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.order-kind.sell { color: #ffb16c; border-color: #6b492d; }
.order-state { display: inline-flex; align-items: center; width: fit-content; padding: 6px 10px; border-radius: 999px; color: #b8c3cd; background: #252b31; font-size: 10px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; white-space: nowrap; }
.order-state[data-status="CONFIRMED"],
.order-state[data-status="PICKUP"],
.order-state[data-status="DISPATCHED"],
.order-state[data-status="IN_TRANSIT"],
.order-state[data-status="TESTING"] { color: #9ccfff; background: #152d42; }
.order-state[data-status="DELIVERED"],
.order-state[data-status="PAID"] { color: #9af0ac; background: #173923; }
.order-state[data-status="REJECTED"],
.order-state[data-status="PICKUP_ERROR"] { color: #ff9ca2; background: #422126; }
.order-card-body { padding: 18px; display: grid; grid-template-columns: minmax(220px, 1fr) auto; align-items: center; gap: 24px; }
.order-card-product { min-width: 0; display: flex; align-items: center; gap: 14px; }
.order-card-image { width: 58px; height: 58px; flex: 0 0 58px; display: grid; place-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: 10px; background: var(--paper); }
.order-card-image img,
.order-card-image svg { width: 100%; height: 100%; object-fit: cover; }
.order-card-product > div:last-child { min-width: 0; display: grid; gap: 4px; }
.order-card-product strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.order-card-product small { color: var(--muted); }
.order-card-meta { margin: 0; display: flex; align-items: center; gap: 28px; }
.order-card-meta div { display: grid; gap: 3px; }
.order-card-meta dt { color: var(--muted); font-size: 10px; letter-spacing: .07em; text-transform: uppercase; }
.order-card-meta dd { margin: 0; font-size: 13px; white-space: nowrap; }
.order-card-meta .order-card-total dd { color: var(--green); font-size: 18px; font-weight: 800; }
.order-card-footer { padding: 12px 18px; display: flex; align-items: center; justify-content: flex-end; gap: 9px; border-top: 1px solid var(--line); color: var(--orange); font-size: 13px; font-weight: 700; }

.order-hero { border-bottom: 1px solid var(--line); background: radial-gradient(circle at 80% 30%, #261b18 0, transparent 34%), linear-gradient(125deg, #12171a, #0c0f11); }
.order-hero-inner { max-width: 1400px; margin: auto; padding: clamp(38px, 6vw, 72px) clamp(20px, 5vw, 70px); }
.order-back { display: inline-block; margin-bottom: 24px; color: var(--muted); font-size: 14px; }
.order-back:hover { color: var(--ink); }
.order-hero-main { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; }
.order-hero h1 { margin: 13px 0 8px; font-size: clamp(34px, 5vw, 62px); letter-spacing: -.045em; overflow-wrap: anywhere; }
.order-hero p { margin: 0; color: var(--muted); }
.order-state-large { padding: 9px 13px; font-size: 11px; }
.order-page { display: grid; gap: 24px; }
.order-progress-card,
.order-panel,
.order-summary { padding: clamp(20px, 3vw, 30px); border: 1px solid var(--line); border-radius: 16px; background: var(--panel); }
.order-section-title { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.order-section-title .eyebrow,
.order-summary .eyebrow,
.order-info .eyebrow,
.order-note .eyebrow { margin: 0 0 7px; }
.order-section-title h2,
.order-summary h2 { margin: 0; font-size: clamp(24px, 3vw, 34px); }
.order-timeline { --progress: var(--green); margin: 34px 0 3px; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); list-style: none; }
.order-timeline li { position: relative; display: grid; justify-items: center; gap: 10px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .05em; text-align: center; text-transform: uppercase; }
.order-timeline li::before { content: ""; position: absolute; z-index: 0; top: 15px; right: 50%; width: 100%; height: 2px; background: var(--line); }
.order-timeline li:first-child::before { display: none; }
.order-timeline li.complete::before,
.order-timeline li.current::before { background: var(--progress); }
.timeline-dot { position: relative; z-index: 1; width: 31px; height: 31px; display: grid; place-items: center; border: 2px solid var(--line); border-radius: 50%; background: var(--panel); }
.order-timeline li.complete,
.order-timeline li.current { color: var(--ink); }
.order-timeline li.complete .timeline-dot,
.order-timeline li.current .timeline-dot { color: #101310; border-color: var(--progress); background: var(--progress); }
.order-timeline li.current .timeline-dot { box-shadow: 0 0 0 6px #9fe87018; }
.order-problem { margin-top: 24px; padding: 16px; border: 1px solid #69353a; border-radius: 10px; background: #2b1719; }
.order-problem strong { color: #ff979e; }
.order-problem p { margin: 5px 0 0; color: #d6aaad; }
.order-detail-main { min-width: 0; display: grid; gap: 24px; }
.order-items { margin-top: 22px; display: grid; }
.order-item { padding: 18px 0; display: grid; grid-template-columns: 78px minmax(0, 1fr) auto; align-items: center; gap: 18px; border-top: 1px solid var(--line); }
.order-item:first-child { padding-top: 0; border-top: 0; }
.order-item:last-child { padding-bottom: 0; }
.order-item-image { width: 78px; height: 78px; display: grid; place-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: 10px; background: var(--paper); }
.order-item-image img,
.order-item-image svg { width: 100%; height: 100%; object-fit: cover; }
.order-item-copy { min-width: 0; }
.order-item-copy p { margin: 0 0 5px; color: var(--orange); font-size: 10px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.order-item-copy h3 { margin: 0 0 7px; font-size: 18px; }
.order-item-copy span,
.order-item-price small { color: var(--muted); font-size: 12px; }
.order-item-price { display: grid; gap: 4px; text-align: right; }
.order-item-price strong { color: var(--green); font-size: 18px; }
.order-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.order-info h3 { margin: 0 0 10px; font-size: 20px; }
.order-info p { margin: 0 0 10px; color: var(--muted); line-height: 1.65; }
.order-info small { color: var(--ink); }
.order-note > p:last-child { margin-bottom: 0; color: var(--muted); line-height: 1.65; }
.order-summary { position: sticky; top: 20px; }
.order-summary > h2 { margin-bottom: 25px; color: var(--green); font-size: 38px; }
.order-summary dl { margin: 0; display: grid; }
.order-summary dl > div { padding: 12px 0; display: flex; justify-content: space-between; gap: 18px; border-top: 1px solid var(--line); }
.order-summary dt { color: var(--muted); }
.order-summary dd { margin: 0; text-align: right; }
.order-summary .summary-saving dt,
.order-summary .summary-saving dd { color: var(--green); }
.order-summary .summary-total { margin-top: 5px; align-items: center; }
.order-summary .summary-total dt { color: var(--ink); font-weight: 800; }
.order-summary .summary-total dd { font-size: 22px; font-weight: 800; }
.order-help { width: 100%; margin-top: 22px; text-align: center; }

.prose { max-width: 900px; min-height: 580px; margin: auto; padding: clamp(70px, 9vw, 140px) 24px; }
.prose h1 { font-size: clamp(44px, 7vw, 80px); letter-spacing: -.06em; }
.prose > p:last-child { color: #c6c7c5; font-size: 20px; line-height: 1.9; }
.legal-prose { max-width: 980px; }
.legal-updated { margin: 10px 0 42px; color: var(--muted); font-size: 14px; }
.legal-content { color: #c6c7c5; font-size: 18px; line-height: 1.85; }
.legal-content h2,
.legal-content h3,
.legal-content h4 { margin: 42px 0 14px; color: var(--ink); letter-spacing: -.025em; }
.legal-content h2 { font-size: 30px; }
.legal-content h3 { font-size: 23px; }
.legal-content p,
.legal-content ul,
.legal-content ol,
.legal-content blockquote { margin: 0 0 20px; }
.legal-content li + li { margin-top: 8px; }
.legal-content a { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }
.legal-content blockquote { padding: 18px 22px; border-left: 3px solid var(--green); background: #ffffff08; }
.empty-state { grid-column: 1 / -1; padding: 60px 20px; text-align: center; color: var(--muted); }
.empty-state > span { display: block; margin-bottom: 10px; font-size: 60px; filter: grayscale(1); }
.empty-state.full-page { min-height: 650px; display: grid; place-content: center; justify-items: center; }
.notice { padding: 12px 15px; border-radius: 8px; }
.notice.success { border: 1px solid #33562e; background: #172417; color: var(--green); }
.notice.error { border: 1px solid #69353a; background: #2b1719; color: #ff878d; }
.notice a { margin-left: 8px; text-decoration: underline; }
.cart-original-total { width: fit-content; margin: 6px 0 -8px; color: var(--muted); text-decoration-color: #ff747b; text-decoration-thickness: 2px; }
.coupon-box { margin-top: 18px; padding: 16px; border: 1px solid var(--line); border-radius: 12px; background: #0d1013; }
.coupon-box-heading { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.coupon-box-heading > div { display: grid; gap: 3px; }
.coupon-box-heading > div > span { color: var(--muted); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.coupon-box-heading > div > strong { font-size: 16px; }
.coupon-applied { padding: 5px 8px; border-radius: 999px; color: var(--green); background: #9fe87012; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.coupon-box .notice { margin: 12px 0 0; font-size: 12px; }
.coupon-form { margin-top: 13px; display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.coupon-form input { min-width: 0; padding: 11px 12px; border: 1px solid var(--line); border-radius: 9px; color: var(--ink); background: var(--paper); text-transform: uppercase; }
.coupon-form .button { min-height: 42px; padding-inline: 16px; }
.applied-coupon { margin-top: 13px; padding: 12px; display: flex; align-items: center; justify-content: space-between; gap: 12px; border: 1px dashed #3e6138; border-radius: 9px; background: #152017; }
.applied-coupon > div { display: grid; gap: 3px; }
.applied-coupon > div strong { color: var(--green); letter-spacing: .06em; }
.applied-coupon > div span { color: var(--muted); font-size: 11px; }
.available-coupons { margin-top: 14px; display: grid; gap: 7px; }
.available-coupons > span { color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.available-coupons form { margin: 0; }
.available-coupons button { width: 100%; padding: 10px 11px; display: flex; align-items: center; justify-content: space-between; gap: 12px; border: 1px solid var(--line); border-radius: 8px; color: var(--ink); background: var(--paper); cursor: pointer; }
.available-coupons button:hover { border-color: #586058; }
.available-coupons button strong { color: var(--orange); font-size: 12px; letter-spacing: .05em; }
.available-coupons button small { color: var(--muted); text-align: right; }

.site-footer { padding: 64px clamp(24px, 6vw, 90px) 28px; border-top: 1px solid var(--line); background: #090a0b; }
.footer-grid { display: grid; grid-template-columns: 1.05fr 1fr minmax(240px, 1.25fr) .85fr; gap: clamp(28px, 4vw, 64px); align-items: start; }
.footer-grid section,
.footer-grid nav { min-width: 0; }
.footer-grid h2 { margin: 0 0 18px; color: var(--ink); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
.site-footer p,
.site-footer address { color: var(--muted); }
.footer-brand { width: fit-content; margin-bottom: 18px; }
.footer-brand .brand-logo { width: 124px; height: 64px; }
.footer-brand-line { width: 52px; height: 2px; margin-bottom: 18px; display: block; background: linear-gradient(90deg, var(--red), var(--orange)); }
.footer-brand-column p { margin: 0; line-height: 1.7; }
.footer-socials { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 9px; }
.footer-socials a,
.footer-socials span { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: #ffffff05; }
.footer-socials a { color: var(--ink); transition: color .18s ease, border-color .18s ease, transform .18s ease; }
.footer-socials a:hover { color: var(--orange); border-color: #ff8a384d; transform: translateY(-2px); }
.footer-socials svg { width: 17px; height: 17px; display: block; fill: currentColor; }
.footer-social-disabled { color: #777a7f; cursor: not-allowed; opacity: .6; }
.footer-support-email { margin-top: 15px; display: block; width: fit-content; color: var(--orange); font-size: 13px; overflow-wrap: anywhere; }
.site-footer address { display: grid; gap: 6px; font-style: normal; line-height: 1.6; }
.footer-contact { margin-top: 10px; display: block; width: fit-content; color: var(--orange); font-size: 13px; }
.footer-map { width: 100%; height: 180px; display: block; border: 1px solid var(--line); border-radius: 14px; filter: grayscale(.8) invert(.92) contrast(.85); }
.footer-map-empty { min-height: 180px; margin: 0; padding: 20px; display: grid; place-items: center; text-align: center; border: 1px dashed var(--line); border-radius: 14px; }
.site-footer nav ul { margin: 0; padding: 0; display: grid; gap: 12px; list-style: none; }
.site-footer nav li { margin: 0; }
.site-footer nav a { color: var(--muted); transition: color .18s ease; }
.site-footer nav a:hover { color: var(--orange); }
.footer-bottom { margin-top: 46px; padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); }
.footer-bottom p { margin: 0; font-size: 12px; }
.footer-bottom a { color: var(--muted); font-size: 12px; }
.whatsapp-float { position: fixed; right: 24px; bottom: 24px; z-index: 35; display: flex; align-items: center; gap: 10px; color: #fff; filter: drop-shadow(0 12px 24px #0009); }
.whatsapp-float-label { padding: 9px 13px; border: 1px solid #ffffff26; border-radius: 999px; background: #111513e8; font-size: 12px; font-weight: 750; opacity: 0; transform: translateX(8px); pointer-events: none; transition: opacity .18s ease, transform .18s ease; }
.whatsapp-float-icon { width: 56px; height: 56px; display: grid; place-items: center; border: 1px solid #ffffff38; border-radius: 50%; background: #25d366; transition: transform .18s ease, background .18s ease; }
.whatsapp-float-icon svg { width: 29px; height: 29px; display: block; fill: currentColor; }
.whatsapp-float:hover .whatsapp-float-label,
.whatsapp-float:focus-visible .whatsapp-float-label { opacity: 1; transform: translateX(0); }
.whatsapp-float:hover .whatsapp-float-icon { transform: translateY(-2px) scale(1.03); background: #20bd5a; }
.whatsapp-float:focus-visible { outline: none; }
.whatsapp-float:focus-visible .whatsapp-float-icon { outline: 3px solid #ffffff80; outline-offset: 3px; }
.page-loader { position: fixed; top: 0; left: 0; z-index: 20; width: 0; height: 3px; background: linear-gradient(90deg, var(--red), var(--orange)); opacity: 0; }
.htmx-request .page-loader, .htmx-request.page-loader { width: 70%; opacity: 1; transition: width 8s cubic-bezier(.1,.7,.2,1); }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header .search-shell { grid-column: 1 / -1; grid-row: 2; }
  .home-carousel { --carousel-height: 680px; }
  .carousel-slide--content { grid-template-columns: 1fr; text-align: center; padding-top: 70px; padding-bottom: 75px; }
  .carousel-copy { display: flex; flex-direction: column; align-items: center; }
  .carousel-art { min-height: 260px; }
  .carousel-art img { max-height: 290px; }
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-art { min-height: 300px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .product-detail { grid-template-columns: 1fr; }
  .order-detail { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .order-card-body { grid-template-columns: 1fr; }
  .order-card-meta { justify-content: space-between; }
}
@media (max-width: 760px) {
  .whatsapp-float { right: 16px; bottom: 16px; }
  .whatsapp-float-label { display: none; }
  .whatsapp-float-icon { width: 50px; height: 50px; }
  .whatsapp-float-icon svg { width: 26px; height: 26px; }
  .site-header { gap: 12px; padding: 12px 16px; }
  .site-header nav { gap: 12px; font-size: 14px; }
  .account-action span { display: none; }
  .category-nav { justify-content: start; }
  .home-carousel { --carousel-height: 590px; }
  .carousel-slide--content { gap: 16px; padding: 58px 48px 70px; }
  .carousel-copy h1 { font-size: clamp(42px, 14vw, 64px); }
  .carousel-art { min-height: 220px; }
  .carousel-art::before { width: 230px; }
  .carousel-art img { max-height: 240px; }
  .carousel-control { width: 38px; height: 38px; }
  .carousel-control--previous { left: 7px; }
  .carousel-control--next { right: 7px; }
  .carousel-dots { bottom: 14px; }
  .hero { min-height: auto; padding-top: 70px; }
  .hero-art::before { width: 290px; height: 290px; }
  .trust-strip { margin: 0; grid-template-columns: 1fr 1fr; border-radius: 0; }
  .trust-strip div:nth-child(2) { border-right: 0; }
  .trust-strip div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-copy { padding: 14px; }
  .product-copy h3 { font-size: 15px; }
  .product-meta { display: grid; }
  .product-meta span { text-align: left; }
  .sell-banner { margin: 0 14px; display: grid; }
  .sell-banner .button { width: 100%; }
  .review-grid, .category-grid { grid-template-columns: 1fr; }
  .auth-shell { grid-template-columns: 1fr; }
  .auth-aside { padding: 60px 25px; }
  .auth-card { margin: 36px auto; }
  .account-shell { grid-template-columns: 1fr; gap: 20px; }
  .account-shell aside nav {
    grid-template-columns: repeat(5, max-content);
    overflow-x: auto;
    scrollbar-width: none;
  }
  .account-shell aside nav::-webkit-scrollbar { display: none; }
  .account-content { padding: 22px; }
  .account-content .product-grid { grid-template-columns: 1fr 1fr; }
  .address-grid { grid-template-columns: 1fr; }
  .cart-summary { width: 100%; max-width: none; }
  .order-hero-main { align-items: flex-start; flex-direction: column; }
  .order-timeline { margin-top: 26px; grid-template-columns: 1fr; gap: 0; }
  .order-timeline li { min-height: 54px; grid-template-columns: 32px 1fr; justify-items: start; align-items: start; gap: 13px; text-align: left; }
  .order-timeline li::before { top: auto; right: auto; bottom: 22px; left: 15px; width: 2px; height: 100%; }
  .order-timeline li:last-child { min-height: 31px; }
  .order-info-grid { grid-template-columns: 1fr; }
  .product-review-list article { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  .carousel-slide { animation: none; }
  .carousel-control, .carousel-dots button { transition: none; }
}
@media (max-width: 600px) {
  .account-section-heading {
    align-items: stretch;
    flex-direction: column;
  }
  .account-section-heading .button { width: 100%; }
  .wishlist-row {
    grid-template-columns: 96px minmax(0, 1fr);
    align-items: start;
    gap: 14px;
  }
  .wishlist-image { width: 96px; height: 96px; }
  .wishlist-copy h3 { margin-bottom: 11px; font-size: 17px; }
  .wishlist-prices { gap: 10px 20px; }
  .wishlist-prices strong { font-size: 17px; }
  .wishlist-actions {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
  }
  .page-hero.cart-hero {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 20px;
    padding-block: 32px;
  }
  .cart-hero .segmented { width: 100%; }
  .cart-hero .segmented a { flex: 1; text-align: center; }
  .cart-list .cart-row {
    grid-template-columns: 68px minmax(0, 1fr);
    grid-template-areas:
      "image details"
      "image price"
      ". remove";
    align-items: start;
    gap: 14px 16px;
    padding: 16px;
  }
  .cart-list .cart-item-image { grid-area: image; width: 68px; height: 68px; }
  .cart-list .cart-item-details { grid-area: details; }
  .cart-list .cart-line-price {
    grid-area: price;
    justify-items: start;
    white-space: normal;
  }
  .cart-list .cart-remove {
    grid-area: remove;
    width: 100%;
  }
}
@media (max-width: 430px) {
  .brand { font-size: 19px; }
  .brand-logo { width: 82px; height: 42px; }
  .site-header { padding-inline: 12px; }
  .site-header nav { gap: 4px; }
  .site-header nav a[title="Cart"] span { display: none; }
  .site-header nav .account-action,
  .site-header nav a[title="Cart"],
  .site-header nav .icon-action { width: 38px; padding-inline: 7px; }
  .site-header nav .button { display: none; }
  .search input { padding-inline: 12px; }
  .search button { padding-inline: 14px; }
  .search button span { display: none; }
  .search-suggestion {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 10px;
  }
  .search-suggestion-image { width: 48px; height: 48px; }
  .search-suggestion-price { display: none; }
  .category-nav { gap: 24px; padding-inline: 16px; }
  .page-hero { padding: 52px 20px; }
  .page-hero.compact:not(.cart-hero) { min-height: 190px; padding-block: 34px; }
  .section-shell { padding: 48px 16px; }
  .section-heading { align-items: start; }
  .section-heading > a { flex: 0 0 auto; }
  .product-grid,
  .account-content .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .product-card { border-radius: 12px; }
  .product-image { aspect-ratio: 1.15; }
  .product-image img { padding: 10px; }
  .product-image > .gamez-placeholder { width: 82%; border-radius: 14px; }
  .product-copy { padding: 10px; }
  .product-copy h3 {
    min-height: 49px;
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.25;
  }
  .product-copy .eyebrow {
    margin-bottom: 5px;
    font-size: 8px;
    letter-spacing: .12em;
  }
  .product-meta { gap: 3px; }
  .product-meta strong { font-size: 16px; }
  .product-meta span { font-size: 9px; }
  .product-detail { padding: 32px 16px 54px; gap: 28px; }
  .product-main-image { border-radius: 16px; }
  .product-info h1 { font-size: clamp(34px, 11vw, 46px); }
  .purchase-panel { grid-template-columns: 1fr; }
  .purchase-action { width: 100%; justify-self: stretch; }
  .purchase-panel form,
  .purchase-panel .button { width: 100%; }
  .cart-status { justify-items: start; text-align: left; }
  .auth-aside { padding: 46px 20px; }
  .auth-aside h1 { font-size: 42px; }
  .auth-card { width: calc(100% - 28px); padding: 24px 18px; }
  .account-shell { padding: 38px 16px 54px; }
  .account-content { padding: 20px 16px; }
  .profile-list > div { grid-template-columns: 1fr; gap: 5px; }
  .account-form { padding: 14px; }
  .account-form form > div { grid-template-columns: 1fr; }
  .order-card-header { align-items: flex-start; flex-direction: column; }
  .order-card-identity { width: 100%; align-items: flex-start; flex-direction: column; }
  .order-card-identity strong { width: 100%; }
  .order-card-body { padding: 16px; }
  .order-card-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .order-card-meta .order-card-total { grid-column: 1 / -1; }
  .order-card-footer { justify-content: space-between; }
  .order-section-title { align-items: stretch; flex-direction: column; }
  .order-section-title .button { width: 100%; }
  .order-item { grid-template-columns: 64px minmax(0, 1fr); align-items: start; gap: 14px; }
  .order-item-image { width: 64px; height: 64px; }
  .order-item-price { grid-column: 2; text-align: left; }
  .cart-summary { padding: 20px 16px; }
  .cart-summary strong { font-size: 24px; }
  .address-dialog-shell { padding: 20px 16px; }
  .address-dialog-actions { display: grid; }
  .address-editor-form > div { grid-template-columns: 1fr; }
  .segmented { width: 100%; }
  .segmented a { flex: 1; text-align: center; }
  .prose { padding: 58px 18px; }
  .prose > p:last-child { font-size: 17px; }
  .site-footer { padding: 42px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 350px) {
  .site-header nav .header-action { width: 34px; min-height: 34px; padding: 6px; }
  .brand-logo { width: 72px; height: 38px; }
  .carousel-slide--content { padding-inline: 40px; }
  .carousel-copy h1 { font-size: 38px; }
  .button-row { display: grid; width: 100%; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip div { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-strip div:last-child { border-bottom: 0; }
}
