:root {
  --ink: #0d0814;
  --paper: #160f22;
  --panel: #fff8ea;
  --panel-dark: #21132f;
  --line: rgba(255, 255, 255, 0.16);
  --muted: #b9a8cc;
  --yellow: #dcff4f;
  --blue: #7c5cff;
  --red: #ff5d73;
  --purple: #8d4dff;
  --pink: #ff83d1;
  --green: #47f0bd;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #fff;
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(135deg, rgba(141, 77, 255, 0.38), transparent 34%),
    linear-gradient(315deg, rgba(71, 240, 189, 0.16), transparent 30%),
    radial-gradient(circle at 78% 9%, rgba(255, 131, 209, 0.16), transparent 28%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 34px);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.announcement {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 5vw, 58px);
  min-height: 38px;
  padding: 10px 18px;
  overflow-x: auto;
  color: #fff;
  background: linear-gradient(90deg, #0d0814, #2a163b, #0d0814);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0.08em;
}

.announcement a {
  opacity: 0.88;
  transition:
    color 160ms ease,
    opacity 160ms ease;
}

.announcement a:hover {
  color: var(--yellow);
  opacity: 1;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 76px;
  padding: 13px clamp(18px, 4vw, 58px);
  background: rgba(13, 8, 20, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--yellow);
  background: #241236;
  border: 3px solid rgba(220, 255, 79, 0.95);
  border-radius: 10px;
  box-shadow: 5px 5px 0 var(--purple);
  font-family: Archivo, Inter, sans-serif;
  font-weight: 900;
}

.brand-name {
  font-family: Archivo, Inter, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav {
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
}

.nav a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  font-weight: 900;
}

.nav a:hover {
  color: var(--yellow);
}

.nav-cta,
.button,
.buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 19px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  font-weight: 900;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.nav-cta,
.button.primary {
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--purple);
}

.button.dark {
  color: #fff;
  background: #221230;
  box-shadow: 5px 5px 0 var(--red);
}

.nav-cta:hover,
.button:hover,
.buy:hover {
  transform: translate(-2px, -2px);
}

.hero {
  position: relative;
  min-height: calc(100vh - 114px);
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 34%, rgba(255, 131, 209, 0.45), transparent 20%),
    radial-gradient(circle at 84% 68%, rgba(71, 240, 189, 0.3), transparent 22%),
    linear-gradient(125deg, #12091c 0%, #29153c 44%, #7b4cff 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero::before {
  right: -12vw;
  bottom: -24vw;
  width: 66vw;
  min-width: 520px;
  aspect-ratio: 1;
  background:
    linear-gradient(90deg, var(--ink) 48%, transparent 48% 52%, var(--ink) 52%) center / 100% 14% no-repeat,
    radial-gradient(circle, #fff 0 31%, var(--ink) 31% 37%, var(--purple) 37% 100%);
  border: 10px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  opacity: 0.16;
  transform: rotate(-14deg);
}

.hero::after {
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(0deg, var(--paper), transparent);
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
  align-items: center;
  gap: clamp(28px, 6vw, 92px);
  width: min(1360px, calc(100% - 36px));
  min-height: calc(100vh - 114px);
  margin: 0 auto;
  padding: clamp(46px, 7vw, 82px) 0 clamp(42px, 6vw, 72px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Archivo, Inter, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 8.6ch;
  margin-bottom: 22px;
  font-size: clamp(4rem, 7.9vw, 8.8rem);
  line-height: 0.82;
  text-transform: uppercase;
}

.hero-copy p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  line-height: 1.65;
}

.hero-actions,
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stage {
  position: relative;
  min-height: 640px;
  isolation: isolate;
}

.pokemon {
  position: absolute;
  user-select: none;
  filter: drop-shadow(0 30px 34px rgba(16, 16, 21, 0.24));
}

.pokemon-gengar {
  right: 6%;
  bottom: 0;
  width: min(39vw, 455px);
  z-index: 3;
  transform: rotate(2deg);
  filter: drop-shadow(0 36px 34px rgba(0, 0, 0, 0.36));
}

.pokemon-charizard {
  left: 0;
  bottom: 9%;
  width: min(28vw, 305px);
  z-index: 2;
  transform: rotate(-7deg);
}

.pokemon-pikachu {
  right: 0;
  top: 0;
  width: min(23vw, 245px);
  z-index: 2;
  transform: rotate(7deg);
}

.hero-card {
  position: absolute;
  z-index: 4;
  width: min(215px, 44vw);
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(255, 248, 234, 0.94);
  border: 3px solid rgba(13, 8, 20, 0.94);
  border-radius: 12px;
  box-shadow: 7px 7px 0 var(--ink);
}

.hero-card span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-card strong {
  font-family: Archivo, Inter, sans-serif;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.hero-card-left {
  left: 2%;
  top: 10%;
  transform: rotate(-4deg);
}

.hero-card-right {
  right: 1%;
  bottom: 8%;
  transform: rotate(5deg);
}

.quick-shop {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: min(1280px, calc(100% - 36px));
  margin: -26px auto 0;
  position: relative;
  z-index: 2;
}

.quick-shop a {
  padding: 18px 20px;
  color: var(--ink);
  background: var(--panel);
  border: 3px solid var(--ink);
  border-radius: 12px;
  box-shadow: 5px 5px 0 var(--ink);
  font-family: Archivo, Inter, sans-serif;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.pokemon-section,
.catalog-section,
.boxes-library,
.auction-band,
.trust-section {
  width: min(1280px, calc(100% - 36px));
  margin: clamp(70px, 9vw, 118px) auto;
  scroll-margin-top: 110px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
}

.section-heading h2,
.auction-band h2,
.trust-copy h2 {
  max-width: 910px;
  margin-bottom: 0;
  font-size: clamp(2.6rem, 5vw, 6rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.pokemon-section .section-heading h2 {
  max-width: 1040px;
  font-size: clamp(2.35rem, 4vw, 4.8rem);
}

.pokemon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.catalog-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.benefit-card {
  display: grid;
  align-content: space-between;
  min-height: 270px;
  padding: 24px;
  color: var(--ink);
  background: linear-gradient(145deg, #ffffff 0%, #fbf8ff 64%, #eefbd0 100%);
  border: 3px solid var(--ink);
  border-radius: 14px;
  box-shadow: 6px 6px 0 var(--purple);
}

.benefit-card span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 44px;
  padding: 8px 11px;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-family: Archivo, Inter, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

.benefit-card h3 {
  max-width: 11ch;
  margin-bottom: 12px;
  font-size: clamp(1.75rem, 3.1vw, 3.2rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.benefit-card p {
  max-width: 32ch;
  margin: 0;
  color: rgba(16, 16, 21, 0.68);
  font-weight: 850;
  line-height: 1.52;
}

.spotlight {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  padding: 24px;
  border: 3px solid var(--ink);
  border-radius: 16px;
  box-shadow: 7px 7px 0 var(--ink);
}

.spotlight img {
  position: absolute;
  right: -10%;
  bottom: 24%;
  width: 95%;
  max-height: 330px;
  object-fit: contain;
  filter: drop-shadow(0 28px 28px rgba(16, 16, 21, 0.22));
}

.spotlight div {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
}

.spotlight span,
.badge,
.live {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.spotlight h3 {
  margin-bottom: 8px;
  font-size: clamp(2.2rem, 4vw, 4.7rem);
  line-height: 0.86;
  text-transform: uppercase;
}

.spotlight p {
  max-width: 360px;
  margin-bottom: 0;
  color: rgba(16, 16, 21, 0.72);
  font-weight: 800;
  line-height: 1.55;
}

.fire {
  color: var(--ink);
  background: linear-gradient(160deg, #fff0ad, #ff697f);
}

.electric {
  color: var(--ink);
  background: linear-gradient(160deg, #fff7a5, #7bd9ff);
}

.ghost {
  color: #fff;
  background:
    radial-gradient(circle at 70% 18%, rgba(220, 255, 79, 0.28), transparent 26%),
    linear-gradient(160deg, #8d4dff, #12091c 72%);
}

.ghost p {
  color: rgba(255, 255, 255, 0.78);
}

.catalog-heading {
  align-items: start;
}

.controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.catalog-note {
  max-width: 760px;
  margin: -8px 0 22px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55;
}

.catalog-box-link {
  flex: 0 0 auto;
}

.boxes-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
  gap: clamp(22px, 5vw, 70px);
  width: min(1280px, calc(100% - 36px));
  margin: clamp(58px, 8vw, 108px) auto 0;
  align-items: end;
  padding: clamp(34px, 6vw, 72px);
  color: #fff;
  background:
    radial-gradient(circle at 16% 18%, rgba(220, 255, 79, 0.22), transparent 30%),
    radial-gradient(circle at 86% 6%, rgba(255, 131, 209, 0.25), transparent 34%),
    linear-gradient(135deg, rgba(42, 22, 59, 0.98), rgba(13, 8, 20, 0.94));
  border: 3px solid rgba(255, 255, 255, 0.82);
  border-radius: 18px;
  box-shadow: 10px 10px 0 var(--purple);
}

.boxes-hero h1 {
  max-width: 900px;
  margin-bottom: 16px;
  font-size: clamp(3.4rem, 7vw, 8.8rem);
  line-height: 0.84;
  text-transform: uppercase;
}

.boxes-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.8vw, 1.24rem);
  font-weight: 800;
  line-height: 1.6;
}

.boxes-hero-card {
  display: grid;
  align-content: end;
  min-height: 280px;
  padding: 22px;
  color: var(--ink);
  background: linear-gradient(155deg, var(--yellow), var(--green));
  border: 3px solid var(--ink);
  border-radius: 16px;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.35);
}

.boxes-hero-card strong {
  font-family: Archivo, Inter, sans-serif;
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 0.82;
}

.boxes-hero-card span {
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.box-controls {
  justify-content: end;
}

.box-page-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.box-page-card {
  display: grid;
  overflow: hidden;
  min-height: 100%;
  color: var(--ink);
  background: #fff;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow: none;
}

.box-page-card.without-official-visual {
  align-content: start;
  border-color: rgba(220, 255, 79, 0.35);
  background: #fff;
}

.box-page-media {
  position: relative;
  display: grid;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  isolation: isolate;
  place-items: center;
  padding: 0;
  background: #fff;
}

.box-page-media::after {
  display: none;
}

.box-page-media img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  padding: 0;
  object-fit: cover;
  object-position: center;
  filter: none;
  transition: transform 180ms ease;
}

.box-set-visual {
  position: relative !important;
  z-index: 3 !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  padding: 0 !important;
  background: transparent;
  border: 0;
  border-radius: 0;
  filter: none !important;
}

.box-page-card.fit-contain .box-page-media {
  background: #fff;
}

.box-page-card.fit-contain .box-set-visual {
  width: calc(100% - 34px) !important;
  height: calc(100% - 34px) !important;
  object-fit: contain !important;
  object-position: center !important;
}

.box-page-card:hover .box-set-visual {
  transform: translateY(-3px);
}

.box-page-media span {
  display: none;
}

.box-page-info {
  display: grid;
  align-content: space-between;
  gap: 14px;
  min-height: 230px;
  padding: 16px;
}

.without-official-visual .box-page-info {
  padding: 16px;
}

.box-page-info p {
  margin: 0;
  color: #7650b2;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.box-page-info h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.2vw, 2.35rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.box-page-list {
  display: grid;
  gap: 6px;
  min-height: 74px;
}

.box-expansion-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.box-expansion-summary span,
.box-kind {
  display: inline-flex;
  width: fit-content;
  padding: 5px 7px;
  color: #fff;
  background: rgba(22, 15, 34, 0.86);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.box-page-list span {
  overflow: hidden;
  color: rgba(16, 16, 21, 0.68);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.box-page-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 6px;
}

.box-page-actions strong {
  font-size: 0.84rem;
  font-weight: 900;
}

.search {
  position: relative;
}

.search span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.search input,
select {
  min-height: 48px;
  color: var(--ink);
  background: var(--panel);
  border: 3px solid var(--ink);
  border-radius: 10px;
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 900;
}

.search input {
  width: min(340px, 78vw);
  padding: 0 14px;
}

select {
  padding: 0 36px 0 12px;
}

.chips {
  margin-bottom: 26px;
}

.chip {
  min-height: 43px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--panel);
  border: 3px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
}

.chip.active,
.chip:hover {
  background: var(--yellow);
}

.card-grid {
  display: grid;
  gap: 44px;
}

.box-group {
  display: grid;
  gap: 22px;
}

.box-title {
  position: sticky;
  top: 116px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  padding: 18px 22px;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0, rgba(255, 131, 209, 0.4), transparent 28%),
    linear-gradient(90deg, var(--yellow), var(--green));
  border: 3px solid var(--ink);
  border-radius: 18px;
  box-shadow: 7px 7px 0 var(--purple);
  font-size: clamp(1.8rem, 4vw, 4rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.box-title span {
  flex: 0 0 auto;
  padding: 8px 10px;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  font-family: Inter, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
}

.box-expansions {
  display: grid;
  gap: 26px;
}

.expansion-group {
  display: grid;
  gap: 14px;
}

.expansion-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  padding: 12px 16px;
  color: #fff;
  background: linear-gradient(90deg, rgba(141, 77, 255, 0.72), rgba(33, 19, 47, 0.88));
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  font-size: clamp(1.1rem, 2.2vw, 1.9rem);
  line-height: 1;
  text-transform: uppercase;
}

.expansion-title span {
  color: var(--yellow);
  font-family: Inter, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
}

.expansion-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 270px), 1fr));
  gap: 16px;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.3);
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  margin: 0;
  padding: 6px 8px;
  border: 0;
  background: rgba(13, 8, 20, 0.88);
  color: #fff;
  box-shadow: none;
  font-size: 0.66rem;
}

.card-art {
  --photo-scale: 1.14;
  --photo-shift: -5%;
  --photo-y: 50%;
  position: relative;
  display: grid;
  aspect-ratio: 1 / 1.08;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  padding: 0;
  background: #15101c;
  border-bottom: 1px solid rgba(16, 16, 21, 0.08);
}

.card-art.no-photo {
  align-content: center;
  gap: 14px;
  padding: 28px;
}

.card-art::before {
  display: none;
}

.card-art img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center var(--photo-y);
  filter: drop-shadow(0 12px 16px rgba(16, 16, 21, 0.12));
  transform: translateY(var(--photo-shift)) scale(var(--photo-scale));
  transform-origin: center var(--photo-y);
}

.rarionis-card {
  position: relative;
  display: grid;
  width: min(170px, 70%);
  aspect-ratio: 4 / 5;
  place-items: center;
  padding: 18px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent),
    linear-gradient(145deg, rgba(13, 8, 20, 0.95), rgba(33, 19, 47, 0.8));
  border: 4px solid rgba(255, 255, 255, 0.74);
  border-radius: 16px;
  box-shadow: 0 24px 34px rgba(0, 0, 0, 0.32);
  transform: rotate(-4deg);
}

.rarionis-card::before {
  position: absolute;
  inset: 14px;
  content: "";
  border: 1px solid rgba(220, 255, 79, 0.42);
  border-radius: 10px;
}

.rarionis-card span {
  color: var(--yellow);
  font-family: Archivo, Inter, sans-serif;
  font-size: clamp(2.5rem, 7vw, 4.2rem);
  font-weight: 900;
  line-height: 1;
}

.rarionis-card strong {
  align-self: end;
  font-size: 0.82rem;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.card-art small {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 900;
  text-transform: uppercase;
}

.product-open {
  display: block;
  width: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.product-info {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 14px;
}

.product-expansion {
  margin: 0;
  color: #7650b2;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.product-title {
  margin-bottom: 0;
  display: -webkit-box;
  min-height: 3.9em;
  overflow: hidden;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.3;
  text-transform: none;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-short {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: rgba(13, 8, 20, 0.62);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.34;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
}

.tag {
  padding: 4px 7px;
  background: #f0eaf8;
  border: 0;
  border-radius: 999px;
}

.price-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.price {
  grid-column: 1 / -1;
  min-width: 0;
  font-family: Archivo, Inter, sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  font-weight: 900;
  line-height: 0.98;
  overflow-wrap: anywhere;
}

.buy {
  display: inline-grid;
  width: 100%;
  min-width: 0;
  min-height: 36px;
  place-items: center;
  padding: 0 10px;
  color: #fff;
  background: var(--ink);
  border: 0;
  border-radius: 9px;
  box-shadow: none;
  font-size: clamp(0.72rem, 1vw, 0.82rem);
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.buy.secondary {
  color: var(--ink);
  background: #f0eaf8;
}

.empty {
  grid-column: 1 / -1;
  padding: 34px;
  color: var(--muted);
  background: var(--panel);
  border: 3px solid var(--ink);
  border-radius: 12px;
  text-align: center;
  font-weight: 900;
}

.sealed-empty {
  display: grid;
  justify-items: start;
  gap: 14px;
  padding: clamp(30px, 5vw, 58px);
  color: var(--ink);
  text-align: left;
}

.sealed-empty span {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.sealed-empty h3 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.6rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.sealed-empty p {
  max-width: 680px;
  margin: 0;
  color: rgba(16, 16, 21, 0.68);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.55;
}

.auction-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(28px, 5vw, 52px);
  color: #fff;
  background:
    radial-gradient(circle at 72% 18%, rgba(220, 255, 79, 0.38), transparent 24%),
    linear-gradient(135deg, #7037d6, #12091c 66%);
  border: 3px solid var(--ink);
  border-radius: 18px;
  box-shadow: 9px 9px 0 var(--ink);
}

.auction-band .eyebrow {
  color: var(--yellow);
}

.auction-band p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  line-height: 1.7;
}

.auction-panel {
  padding: 24px;
  color: var(--ink);
  background: var(--panel);
  border: 3px solid var(--ink);
  border-radius: 14px;
  box-shadow: 6px 6px 0 var(--yellow);
}

.auction-panel strong {
  display: block;
  margin-bottom: 22px;
  font-family: Archivo, Inter, sans-serif;
  font-size: 2rem;
  line-height: 0.96;
  text-transform: uppercase;
}

.trust-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(24px, 5vw, 70px);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.trust-grid article {
  min-height: 260px;
  padding: 20px;
  background: var(--panel);
  border: 3px solid var(--ink);
  border-radius: 14px;
  box-shadow: 5px 5px 0 var(--purple);
}

.trust-grid span {
  display: block;
  margin-bottom: 44px;
  color: var(--red);
  font-family: Archivo, Inter, sans-serif;
  font-size: 2rem;
  font-weight: 900;
}

.trust-grid h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.trust-grid p,
.footer p {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.65;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 32px clamp(18px, 4vw, 58px);
  color: #fff;
  background: var(--ink);
}

.footer p {
  max-width: 620px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.58);
}

.footer a {
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.footer-link {
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.cart-open {
  cursor: pointer;
}

.cart-open span {
  display: inline-grid;
  min-width: 24px;
  height: 24px;
  margin-left: 8px;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  font-size: 0.78rem;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  background: rgba(8, 4, 13, 0.62);
  opacity: 0;
  transition: opacity 180ms ease;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 70;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(460px, 100vw);
  height: 100vh;
  color: var(--ink);
  background: #fff;
  border-left: 4px solid var(--yellow);
  box-shadow: -22px 0 60px rgba(0, 0, 0, 0.34);
  transform: translateX(104%);
  transition: transform 220ms ease;
}

.cart-visible .cart-backdrop {
  pointer-events: auto;
  opacity: 1;
}

.cart-visible .cart-drawer {
  transform: translateX(0);
}

.cart-head,
.cart-foot {
  padding: 22px;
}

.cart-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(13, 8, 20, 0.1);
}

.cart-head p,
.cart-foot p {
  margin: 0;
  color: #7650b2;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-head h2 {
  margin: 4px 0 0;
  font-size: 1.7rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.cart-head button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.7rem;
  font-weight: 900;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
  overflow: auto;
  background: #faf9fb;
}

.cart-empty {
  margin: 0;
  color: rgba(13, 8, 20, 0.58);
  font-weight: 800;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  padding: 10px;
  background: #fff;
  border: 1px solid rgba(13, 8, 20, 0.1);
  border-radius: 8px;
}

.cart-item img {
  width: 72px;
  height: 92px;
  object-fit: cover;
  object-position: center;
  background: #eee;
  border-radius: 6px;
}

.cart-item strong {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 6px;
  font-size: 0.92rem;
  line-height: 1.18;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.cart-item span {
  color: #7650b2;
  font-weight: 900;
}

.cart-qty {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.cart-qty button {
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  color: #fff;
  background: var(--ink);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
}

.cart-qty b {
  min-width: 24px;
  text-align: center;
}

.cart-foot {
  display: grid;
  gap: 14px;
  border-top: 1px solid rgba(13, 8, 20, 0.1);
}

.cart-select {
  display: grid;
  gap: 7px;
}

.cart-select span,
.payment-method span {
  margin: 0;
  color: #7650b2;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-select select {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  color: var(--ink);
  background: #f8f5fb;
  border: 1px solid rgba(13, 8, 20, 0.12);
  border-radius: 9px;
  font-weight: 850;
}

.payment-method {
  display: grid;
  gap: 5px;
  padding: 11px 12px;
  background: #f8f5fb;
  border: 1px solid rgba(13, 8, 20, 0.1);
  border-radius: 9px;
  line-height: 1.35;
}

.payment-method strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
}

.payment-method p {
  margin: 0;
  color: rgba(13, 8, 20, 0.58);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: none;
}

.payment-method b {
  color: var(--ink);
  font-weight: 900;
  line-height: 1.25;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-weight: 900;
}

.cart-total-row.muted {
  color: rgba(13, 8, 20, 0.58);
  font-size: 0.9rem;
}

.cart-total-row strong {
  color: #7650b2;
}

.cart-foot .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.product-modal-layer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  overflow-y: auto;
  padding: 17px;
}

.product-modal-visible .product-modal-layer {
  display: grid;
  align-items: start;
  justify-items: center;
}

.product-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 4, 13, 0.72);
  backdrop-filter: blur(10px);
}

.product-modal {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(320px, 1.05fr);
  gap: 0;
  width: min(1120px, calc(100vw - 34px));
  min-height: min(860px, calc(100vh - 34px));
  margin: auto 0;
  overflow: visible;
  color: var(--ink);
  background: #fff;
  border: 3px solid rgba(220, 255, 79, 0.82);
  border-radius: 16px;
}

.product-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.7rem;
  font-weight: 900;
}

.product-modal-media {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-height: 0;
  padding: 28px;
  gap: 14px;
  align-items: center;
  justify-items: center;
  background: #12091c;
}

.product-modal-media span {
  justify-self: start;
  align-self: start;
  padding: 8px 12px;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-modal-media img {
  width: 100%;
  height: min(58vh, 600px);
  object-fit: contain;
  object-position: center;
}

.product-thumbs {
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 100%;
  overflow-x: auto;
}

.product-thumb {
  flex: 0 0 auto;
  width: 72px;
  height: 92px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
}

.product-thumb.active {
  border-color: var(--yellow);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #12091c;
  border-radius: 5px;
}

.product-modal .product-thumb img,
.product-modal-quick .product-thumb img {
  width: 100%;
  height: 100%;
}

.product-modal-info {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(24px, 4vw, 46px);
  min-width: 0;
  overflow: visible;
}

.product-modal-info h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.product-modal-quick {
  grid-template-columns: minmax(280px, 0.82fr) minmax(300px, 0.9fr);
  width: min(920px, calc(100vw - 34px));
  min-height: auto;
}

.product-modal-quick .product-modal-media {
  min-height: 520px;
}

.product-modal-quick .product-modal-media img {
  height: min(50vh, 480px);
}

.product-modal-quick .product-modal-info h2 {
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  line-height: 0.95;
}

.product-modal-lead {
  margin: 0;
  color: rgba(13, 8, 20, 0.66);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.5;
}

.product-modal-description {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 18px;
  color: rgba(13, 8, 20, 0.76);
  background: #f8f5fb;
  border: 1px solid rgba(118, 80, 178, 0.16);
  border-radius: 12px;
}

.product-modal-description h3 {
  margin: 0 0 2px;
  color: var(--ink);
  font-family: Archivo, Inter, sans-serif;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.product-modal-description p {
  margin: 0;
  color: rgba(13, 8, 20, 0.72);
  font-size: 0.98rem;
  font-weight: 750;
  line-height: 1.62;
}

.product-specs {
  display: grid;
  gap: 8px;
  margin: 0;
}

.product-specs div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(13, 8, 20, 0.1);
}

.product-specs dt {
  color: #7650b2;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-specs dd {
  margin: 0;
  color: rgba(13, 8, 20, 0.82);
  font-weight: 850;
  line-height: 1.35;
}

.product-modal-actions {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 6px;
}

.product-modal-actions strong {
  font-family: Archivo, Inter, sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
}

.product-detail-hero,
.product-description-page,
.related-section,
.product-not-found {
  width: min(1280px, calc(100% - 36px));
  margin: clamp(48px, 7vw, 86px) auto;
}

.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
  background: #fff;
  border: 3px solid rgba(220, 255, 79, 0.82);
  border-radius: 18px;
}

.product-main-photo {
  display: grid;
  aspect-ratio: 1 / 1.05;
  place-items: center;
  overflow: hidden;
  background: #12091c;
  border-radius: 14px;
}

.product-main-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-page-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.product-page-thumbs button {
  display: grid;
  aspect-ratio: 1 / 1.18;
  place-items: center;
  overflow: hidden;
  padding: 3px;
  background: #f8f5fb;
  border: 2px solid rgba(13, 8, 20, 0.12);
  border-radius: 10px;
  cursor: pointer;
}

.product-page-thumbs button.active {
  border-color: var(--purple);
}

.product-page-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 7px;
}

.product-detail-copy {
  display: grid;
  gap: 18px;
  min-width: 0;
  padding: clamp(24px, 4vw, 46px);
  color: var(--ink);
  background: #fff;
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 18px;
}

.back-link {
  width: fit-content;
  color: #7650b2;
  font-weight: 900;
  text-decoration: none;
}

.product-detail-copy h1 {
  margin: 0;
  font-size: clamp(2.25rem, 4.7vw, 5.25rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.product-buy-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px;
  background: #f8f5fb;
  border: 1px solid rgba(118, 80, 178, 0.16);
  border-radius: 14px;
}

.product-buy-panel strong {
  font-family: Archivo, Inter, sans-serif;
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 0.92;
}

.product-buy-panel span {
  grid-column: 1 / -1;
  color: rgba(13, 8, 20, 0.62);
  font-weight: 850;
}

.product-page-specs {
  padding-top: 8px;
}

.product-description-page {
  display: grid;
  grid-template-columns: minmax(240px, 0.45fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 70px);
  padding: clamp(24px, 4vw, 48px);
  color: var(--ink);
  background: #fff;
  border: 3px solid rgba(220, 255, 79, 0.82);
  border-radius: 18px;
}

.product-description-page h2 {
  font-size: clamp(2rem, 4.4vw, 5rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.description-flow {
  display: grid;
  gap: 14px;
}

.description-flow p {
  margin: 0;
  color: rgba(13, 8, 20, 0.72);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  font-weight: 760;
  line-height: 1.62;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.related-card {
  display: grid;
  gap: 10px;
  min-width: 0;
  overflow: hidden;
  padding: 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  text-decoration: none;
}

.related-card img {
  width: 100%;
  aspect-ratio: 1 / 1.06;
  object-fit: contain;
  background: #12091c;
  border-radius: 10px;
}

.related-card span {
  color: #7650b2;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.related-card strong {
  display: -webkit-box;
  min-height: 2.7em;
  overflow: hidden;
  font-size: 0.92rem;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.related-card em {
  font-style: normal;
  font-weight: 900;
}

.product-back-button {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

@media (max-width: 1080px) {
  .topbar {
    grid-template-columns: auto auto;
  }

  .nav {
    display: none;
  }

  .hero-shell,
  .boxes-hero,
  .auction-band,
  .trust-section {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 560px;
  }

  .pokemon-grid {
    grid-template-columns: 1fr;
  }

  .catalog-benefits {
    grid-template-columns: 1fr;
  }

  .spotlight {
    min-height: 430px;
  }

  .spotlight img {
    width: min(72vw, 440px);
    right: 0;
  }

  .quick-shop {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .expansion-products {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  }

  .box-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-modal {
    grid-template-columns: 1fr;
  }

  .product-modal-quick {
    grid-template-columns: 1fr;
    width: min(720px, calc(100vw - 34px));
  }

  .product-modal-media {
    min-height: 420px;
  }

  .product-modal-quick .product-modal-media {
    min-height: 380px;
  }

  .product-detail-hero,
  .product-description-page {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    position: static;
  }

  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .topbar {
    min-height: 68px;
  }

  .brand-name {
    display: none;
  }

  .nav-cta {
    min-height: 42px;
    padding: 0 13px;
    font-size: 0.86rem;
  }

  .hero,
  .hero-shell {
    min-height: auto;
  }

  .hero-shell {
    padding-top: 42px;
  }

  h1 {
    max-width: 8ch;
    font-size: clamp(3.1rem, 15vw, 5.1rem);
    line-height: 0.86;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-stage {
    min-height: 430px;
  }

  .pokemon-charizard {
    width: 34vw;
    left: 2vw;
    bottom: 12%;
  }

  .pokemon-pikachu {
    width: 34vw;
    right: 3vw;
    top: 7%;
  }

  .pokemon-gengar {
    width: 52vw;
    right: 8vw;
    bottom: 0;
  }

  .hero-card {
    width: 170px;
    padding: 12px;
  }

  .hero-card-right {
    right: 0;
    bottom: 2%;
  }

  .quick-shop,
  .expansion-products,
  .box-page-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .boxes-hero {
    padding: 28px 20px;
  }

  .boxes-hero-card {
    min-height: 170px;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .card-art {
    --photo-scale: 1.08;
    --photo-shift: -3%;
    --photo-y: 50%;
    aspect-ratio: 1 / 1.02;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(16, 16, 21, 0.08);
  }

  .product-title {
    min-height: 0;
  }

  .section-heading {
    display: grid;
  }

  .controls,
  .search,
  .search input,
  select {
    width: 100%;
  }

  .spotlight {
    min-height: 390px;
  }

  .spotlight img {
    width: 94%;
    right: -18%;
    bottom: 29%;
  }

  .footer {
    display: grid;
  }

  .product-modal {
    width: 100vw;
    min-height: 100vh;
    border-radius: 0;
  }

  .product-modal-layer {
    padding: 0;
  }

  .product-modal-media {
    min-height: 360px;
    padding: 18px;
  }

  .product-modal-quick .product-modal-media {
    min-height: 340px;
  }

  .product-modal-media img {
    height: 340px;
  }

  .product-modal-quick .product-modal-media img {
    height: 300px;
  }

  .product-modal-info {
    padding: 22px;
  }

  .product-specs div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .product-modal-actions {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .product-page-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-buy-panel {
    grid-template-columns: 1fr;
  }

  .product-detail-copy h1 {
    font-size: clamp(2.2rem, 13vw, 4.2rem);
  }
}

.product-modal-media .product-thumb img,
.product-modal-quick .product-modal-media .product-thumb img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  transform: none;
}

/* Pokenews */
.nav a[aria-current="page"] { color: var(--yellow); }
.news-main { max-width: 1320px; margin: auto; padding: 54px clamp(20px, 5vw, 68px) 88px; }
.news-heading { margin-bottom: 48px; }
.news-heading h1 { font-family: Archivo, sans-serif; font-size: clamp(3.5rem, 10vw, 8rem); letter-spacing: -.055em; line-height: 1.08; margin: 14px 0; }
.news-heading h1 > span:first-child { color: var(--yellow); }
.news-dot { color: var(--pink); }
.news-heading > p:last-child { color: var(--muted); font-size: 1.15rem; }
.news-section-label { display:flex; align-items:center; justify-content:space-between; gap:20px; border-top:1px solid var(--line); padding:20px 0; }
.news-section-label h2 { margin:0; font-size:1rem; }
.news-section-label > span { color:var(--muted); font-size:.875rem; }
.news-feature { display:grid; grid-template-columns:1fr 1fr; border:1px solid var(--line); border-radius:22px; overflow:hidden; background:#21132f; }
.news-art { position:relative; min-height:440px; overflow:hidden; display:grid; place-items:center; background:linear-gradient(140deg,#6834cd,#34185f); }
.news-art-word { position:absolute; top:24px; left:28px; color:rgba(255,255,255,.13); font:900 clamp(5rem,9vw,8rem)/.95 Archivo,sans-serif; letter-spacing:-.06em; }
.news-art img { position:relative; width:90%; max-width:440px; height:auto; filter:drop-shadow(0 25px 22px #160f2266); transform:rotate(-8deg); }
.news-feature-copy { padding:clamp(24px,4vw,48px); align-self:center; }
.news-meta { display:flex; align-items:center; flex-wrap:wrap; gap:12px; color:#c9badb; font-size:.875rem; }
.news-tag { color:var(--yellow); font-weight:700; }
.news-feature h2 { font:800 clamp(1.8rem,3vw,2.7rem)/1.15 Archivo,sans-serif; letter-spacing:-.025em; margin:24px 0 18px; }
.news-feature h2 a:hover { color:var(--yellow); }
.news-feature-copy > p { color:#c9badb; line-height:1.75; margin-bottom:28px; }
.news-feature .button { gap:24px; }
.news-feature small { display:block; color:#c9badb; font-size:.875rem; margin-top:18px; }
.news-back { display:inline-block; color:var(--yellow); margin-bottom:36px; }
.news-article-heading { max-width:880px; margin:0 auto 36px; }
.news-article-heading h1 { font:800 clamp(2.3rem,5.2vw,4.4rem)/1.1 Archivo,sans-serif; letter-spacing:-.035em; margin:24px 0; }
.news-article-heading > p { font-size:1.2rem; line-height:1.7; color:#c9badb; }
.news-byline { display:flex; align-items:center; gap:14px; margin-top:28px; }
.news-author-icon { display:grid; place-items:center; width:44px; height:44px; border-radius:50%; background:var(--yellow); color:var(--ink); font-weight:900; }
.news-byline strong,.news-byline div > span { display:block; font-size:.875rem; line-height:1.7; }
.news-byline div > span { color:var(--muted); }
.news-article-visual { border-radius:20px; overflow:hidden; margin-bottom:48px; }
.news-article-visual .news-art { min-height:360px; }
.news-article-visual .news-art img { width:340px; max-width:90%; }
.news-article-visual .news-art-word { font-size:clamp(5rem,14vw,12rem); }
.news-prose { max-width:720px; margin:auto; color:#e0d7eb; font-size:1.0625rem; line-height:1.85; }
.news-prose h2 { font:800 clamp(1.5rem,3vw,2rem)/1.25 Archivo,sans-serif; color:#fff; margin:42px 0 18px; }
.news-prose blockquote { border-left:4px solid var(--yellow); margin:36px 0; padding:10px 0 10px 26px; color:var(--yellow); font-size:1.5rem; font-weight:700; line-height:1.5; }
.news-demo-note { padding:20px; border:1px solid var(--line); border-radius:12px; color:var(--muted); font-size:.875rem; margin:36px 0; }
a:focus-visible { outline:3px solid var(--yellow); outline-offset:5px; }
@media(max-width:1080px) { .topbar .nav { display:flex; grid-column:1/-1; grid-row:2; justify-content:flex-start; flex-wrap:wrap; gap:14px 22px; padding-top:10px; } }
@media(max-width:760px) { .news-feature { grid-template-columns:1fr; } .news-art { min-height:300px; } .news-art img { max-width:300px; } .news-main { padding-top:30px; } .news-heading { margin-bottom:30px; } .news-section-label { align-items:flex-start; } .news-article-visual .news-art { min-height:280px; } }

/* Box selection in the card catalog */
#cardBoxes[hidden], #cardGrid[hidden], #backToBoxes[hidden] { display: none; }
#backToBoxes { margin-bottom: 24px; }

.arrivals { padding: 42px clamp(18px,4vw,58px) 48px; border-block:1px solid var(--line); background:#100b19; }
.arrivals-heading { display:flex; justify-content:space-between; align-items:center; gap:20px; margin-bottom:24px; }
.arrivals-heading h2 { font:900 clamp(2rem,4vw,3.5rem)/1.1 Archivo,sans-serif; margin:8px 0 0; }
.arrivals-buttons { display:flex; gap:10px; }
.arrivals-buttons button { width:46px; height:46px; border:1px solid var(--line); background:var(--yellow); color:var(--ink); font-size:1.4rem; border-radius:10px; cursor:pointer; }
.arrivals-buttons button:disabled { opacity:.35; cursor:default; }
.arrivals-track { display:flex; gap:20px; overflow-x:auto; scroll-snap-type:x mandatory; padding-bottom:18px; scrollbar-color:var(--purple) #21132f; }
.arrival-card { flex:0 0 220px; scroll-snap-align:start; overflow:hidden; border:1px solid var(--line); border-radius:14px; background:#21132f; }
.arrival-image { height:230px; padding:18px; background:#f7f5fa; }
.arrival-image img { width:100%; height:100%; object-fit:contain; }
.arrival-info { padding:18px; }
.arrival-info > span { font-size:.875rem; color:var(--muted); }
.arrival-info h3 { font-size:1rem; line-height:1.45; margin:10px 0 16px; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; min-height:2.9em; }
.arrival-info strong { color:var(--yellow); font-size:1.15rem; }
.arrival-card:hover { border-color:var(--yellow); }
@media(max-width:680px) { .arrival-card { flex-basis:190px; } .arrival-image { height:200px; } }

/* Chi siamo */
.about-intro { display:grid; grid-template-columns:1fr 1fr; align-items:center; padding:60px clamp(20px,5vw,72px); overflow:hidden; background:radial-gradient(ellipse at 80% 45%,#63309466,transparent 60%); }
.about-opening { position:relative; z-index:2; }
.about-opening h1 { font:900 clamp(2.7rem,5.4vw,5.7rem)/1.07 Archivo,sans-serif; letter-spacing:-.035em; margin:24px 0; }
.about-opening h1 span { color:var(--yellow); }
.about-opening > p:last-child { max-width:490px; color:#d2c3e2; line-height:1.8; font-size:1.15rem; }
.about-intro .hero-stage { min-height:520px; width:100%; }
.about-story { max-width:1160px; padding:80px 28px; margin:auto; display:grid; grid-template-columns:1fr 1.2fr; gap:20px 70px; border-top:1px solid var(--line); }
.about-story > .eyebrow { grid-column:1/-1; }
.about-story h2,.about-ending h2 { font:800 clamp(2rem,4vw,3.5rem)/1.15 Archivo,sans-serif; letter-spacing:-.025em; margin:0; }
.about-story div p { margin:0 0 24px; font-size:1.1rem; line-height:1.85; color:#d2c3e2; }
.about-quote { padding:64px 24px; text-align:center; background:#21132f; border-block:1px solid var(--line); }
.about-quote p { margin:0; font:800 clamp(1.8rem,4vw,3.6rem)/1.35 Archivo,sans-serif; }
.about-quote em { font-style:normal; color:var(--yellow); }
.about-values { max-width:1240px; margin:auto; padding:80px 28px; display:grid; grid-template-columns:repeat(3,1fr); gap:40px; }
.about-values article > span { color:var(--yellow); font-size:.875rem; font-weight:700; }
.about-values h2 { font-size:1.4rem; line-height:1.3; margin:20px 0 16px; }
.about-values p { color:#d2c3e2; line-height:1.8; }
.about-ending { text-align:center; padding:20px 24px 90px; }
.about-ending .button { margin-top:30px; }
@media(max-width:800px) { .about-intro { grid-template-columns:1fr; padding-top:36px; } .about-intro .hero-stage { min-height:410px; } .about-story { grid-template-columns:1fr; padding-block:50px; gap:20px; } .about-values { grid-template-columns:1fr; padding-block:50px; gap:28px; } }

.support-footer { display:block; padding:54px clamp(20px,5vw,70px) 24px; }
.support-footer-top { display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:40px; }
.support-footer-top h2 { font-size:1rem; margin:0 0 20px; color:var(--yellow); }
.support-footer-top a { display:block; margin-bottom:13px; font-size:.95rem; }
.support-footer-top a:hover { color:var(--yellow); }
.support-brand p { color:var(--muted); line-height:1.7; max-width:270px; }
.support-footer-bottom { border-top:1px solid var(--line); margin-top:36px; padding-top:22px; color:var(--muted); font-size:.875rem; }
.support-footer-bottom p { line-height:1.6; }
.support-main { max-width:1260px; margin:auto; padding:54px 28px 80px; }
.support-heading { margin-bottom:40px; }
.support-heading h1 { font:800 clamp(2rem,5vw,4rem)/1.15 Archivo,sans-serif; margin:18px 0; letter-spacing:-.025em; }
.support-heading > p:last-child { color:var(--muted); font-size:1.1rem; line-height:1.7; }
.support-layout { display:grid; grid-template-columns:240px 1fr; gap:60px; }
.support-sidebar { display:flex; flex-direction:column; gap:8px; align-self:start; }
.support-sidebar a { padding:13px 15px; border-radius:8px; color:#d2c3e2; font-size:.95rem; }
.support-sidebar a[aria-current],.support-sidebar a:hover { background:#2a193c; color:var(--yellow); }
.support-content { max-width:780px; min-width:0; color:#d2c3e2; line-height:1.85; font-size:1rem; }
.support-content h2 { color:#fff; font-size:1.4rem; line-height:1.4; margin:34px 0 12px; }
.support-content a { color:var(--yellow); text-decoration:underline; }
.support-draft { border-left:3px solid var(--yellow); padding:15px 20px; background:#21132f; font-size:.9rem; margin-bottom:30px; }
.support-rates > div { display:flex; justify-content:space-between; gap:20px; padding:18px 0; border-bottom:1px solid var(--line); flex-wrap:wrap; }
.support-rates span { color:var(--yellow); }
.support-content details { border-bottom:1px solid var(--line); padding:20px 0; }
.support-content summary { cursor:pointer; color:#fff; font-weight:700; }
.support-source { font-size:.875rem; margin-top:30px; }
@media(max-width:760px) { .support-footer-top { grid-template-columns:1fr; gap:28px; } .support-layout { grid-template-columns:1fr; gap:30px; } .support-sidebar { flex-direction:row; flex-wrap:wrap; gap:4px; } .support-sidebar a { border:1px solid var(--line); } }

/* Keep catalog cards compact even in single-item expansion groups. */
.expansion-products { grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr)); justify-content: stretch; align-items: start; }
.expansion-products > .product-card { width: 100%; max-width: none; min-width: 0; }
@media (max-width: 360px) { .expansion-products { grid-template-columns: minmax(0, 1fr); } }

/* Catalog box gallery: large artwork and essential information. */
#cardBoxes .box-page-card { grid-template-rows: auto 1fr; }
#cardBoxes .box-page-media { aspect-ratio: 4 / 3; }
#cardBoxes .box-set-visual { object-fit: contain !important; }
#cardBoxes .box-page-info { min-height: 180px; gap: 12px; }
#cardBoxes .box-page-actions .buy { width: 100%; text-align: center; }

#cardBoxes .box-page-info .box-description { color: #625b6c; font-size: .9rem; font-weight: 500; line-height: 1.45; text-transform: none; }
#cardBoxes .box-page-info { grid-template-rows: auto auto 1fr auto; align-content: start; }
/* Collection purchase enquiry */
.sell-banner,.sell-opening{display:grid;grid-template-columns:1.15fr 1fr;align-items:center;gap:48px;padding:64px;overflow:hidden}.sell-banner{margin:70px auto;max-width:1400px;border:1px solid #8d4dff;border-radius:30px;background:radial-gradient(ellipse at 85% 20%,#673aad 0,transparent 60%),#1a1029}.sell-banner h2,.sell-opening h1{font-family:Archivo,sans-serif;font-size:clamp(36px,4.4vw,68px);line-height:1.03;margin:18px 0 24px;letter-spacing:-2px}.sell-banner em,.sell-opening em{font-style:normal;color:#dcff4f}.sell-banner p:not(.eyebrow),.sell-opening p:not(.eyebrow){color:#d8d0e3;font-size:18px;line-height:1.65;max-width:580px}.sell-note{display:block;margin-top:18px;color:#d8d0e3;font-size:14px}.sell-art{display:flex;align-items:center;justify-content:center;min-height:380px;position:relative;padding:30px 10px}.sell-art img{width:40%;aspect-ratio:3/4;object-fit:cover;border-radius:14px;box-shadow:0 22px 45px #0008;border:3px solid #f5ecff;transform:rotate(-13deg);margin-right:-17%}.sell-art img:nth-child(2){transform:translateY(-22px) rotate(2deg);z-index:2}.sell-art img:nth-child(3){transform:rotate(15deg);margin-right:0}.sell-main{max-width:1440px;margin:auto;padding:0 32px 80px}.sell-opening{padding:72px 0 48px}.sell-small{font-size:14px!important;line-height:1.6}.sell-steps{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;border-top:1px solid #ffffff26;border-bottom:1px solid #ffffff26;padding:40px 0}.sell-steps article>span{color:#dcff4f;font:900 32px Archivo}.sell-steps h2{font-size:23px;margin:18px 0 12px}.sell-steps p{color:#c6bdd1;line-height:1.6;margin:0}.sell-form-layout{display:grid;grid-template-columns:1fr 1.7fr;gap:64px;padding-top:80px;scroll-margin-top:160px}.sell-form-layout aside h2{font:900 clamp(40px,5vw,64px)/1 Archivo;margin:20px 0}.sell-form-layout aside p,.photo-guide li{color:#d0c6dc;line-height:1.7}.photo-guide{padding:24px;background:#ffffff08;border:1px solid #ffffff20;border-radius:18px;margin:32px 0}.photo-guide h3{margin-top:0}.photo-guide ul{padding-left:20px}.photo-guide li{margin-bottom:12px}.valuation-form{padding:36px;background:#fff;color:#1a1029;border-radius:24px}.valuation-form fieldset{border:0;border-bottom:1px solid #e3dce9;padding:0 0 28px;margin:0 0 28px;min-width:0}.valuation-form legend{font:800 21px Archivo;padding:0 0 24px}.valuation-form legend span{display:inline-grid;place-items:center;background:#ede5ff;color:#6632ae;width:36px;height:36px;border-radius:50%;font-size:14px;margin-right:8px}.sell-fields{display:grid;grid-template-columns:1fr 1fr;gap:18px}.valuation-form label{display:flex;flex-direction:column;gap:9px;font-size:14px;font-weight:700;margin-bottom:18px}.valuation-form input:not([type=checkbox]):not([type=file]),.valuation-form select,.valuation-form textarea{width:100%;min-width:0;padding:13px;border:1px solid #bcb2c8;border-radius:9px;color:#1a1029;background:#faf8fc;font:400 16px Inter}.valuation-form textarea{resize:vertical}.valuation-form :focus-visible{outline:3px solid #8d4dff;outline-offset:3px}.photo-drop{display:flex;flex-direction:column;align-items:center;text-align:center;gap:12px;padding:28px 18px;border:2px dashed #b59ad9;border-radius:14px;background:#faf7ff}.photo-drop.dragging{background:#edffd1;border-color:#6b8e00}.photo-drop input{max-width:100%;font-size:14px}.photo-drop small{color:#665875;line-height:1.5}.photo-previews{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}.photo-previews figure{margin:0;min-width:0}.photo-previews img{width:100%;aspect-ratio:1;object-fit:cover;border-radius:9px}.photo-previews figcaption{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:12px}.photo-previews button{border:0;background:#efe7f7;padding:8px;width:100%;border-radius:6px;margin-top:6px;cursor:pointer;color:#4c2675}.valuation-form .sell-consent{flex-direction:row;align-items:flex-start;line-height:1.5}.sell-consent input{width:18px;height:18px;flex-shrink:0;margin-top:2px}.valuation-form a{color:#6132a0}.valuation-form .button{width:100%;border:0;cursor:pointer}.valuation-form .button:disabled{opacity:.6;cursor:wait}#valuationStatus{line-height:1.6;font-weight:600}#valuationStatus.error,#photoStatus.error{color:#a1203b}#valuationStatus.success{color:#25652b}.sell-faq{max-width:900px;margin:80px auto 0}.sell-faq h2{font:900 36px Archivo}.sell-faq details{border-bottom:1px solid #ffffff24;padding:22px 0}.sell-faq summary{font-weight:700;font-size:18px;cursor:pointer}.sell-faq details p{line-height:1.7;color:#d0c6dc}.sell-banner .button,.sell-opening .button{display:inline-flex}
@media(max-width:800px){.sell-banner,.sell-opening{grid-template-columns:1fr;gap:10px;padding:30px 24px}.sell-banner{margin:40px 16px}.sell-main{padding:0 20px 50px}.sell-opening{padding:40px 0}.sell-art{min-height:280px;max-width:460px;width:100%;margin:auto}.sell-form-layout{grid-template-columns:1fr;gap:24px;padding-top:45px}.sell-steps{grid-template-columns:1fr;gap:28px}.sell-fields{grid-template-columns:1fr;gap:0}.valuation-form{padding:24px 18px}.sell-banner h2,.sell-opening h1{letter-spacing:-1px}.photo-previews{grid-template-columns:repeat(2,minmax(0,1fr))}}

.sell-opening h1{max-width:none;text-transform:none}.sell-opening .sell-small{margin-top:16px}.sell-banner h2{text-transform:none}

/* Spazio tra i Pokémon nella composizione desktop della home. */
@media (min-width: 1081px) {
  .hero-shell .pokemon-gengar { right: -10%; }
  .hero-shell .pokemon-charizard { left: -3%; bottom: 17%; }
}

.home-featured { padding:64px max(24px, 4vw); max-width:1600px; margin:auto; }
.featured-heading { display:flex; align-items:center; justify-content:space-between; gap:24px; }
.featured-heading h2 { font-size:clamp(32px,4vw,60px); margin:0; }
.featured-filters { display:flex; gap:10px; margin:28px 0; flex-wrap:wrap; }
.featured-filters button { border:1px solid #76648d; border-radius:24px; padding:10px 22px; background:transparent; color:white; font:inherit; font-weight:800; cursor:pointer; }
.featured-filters button[aria-pressed="true"] { background:#dcff4f; color:#100a1b; border-color:#dcff4f; }
.featured-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:24px; }
.featured-card { min-width:0; overflow:hidden; border:1px solid #655575; border-radius:22px; background:#20152e; }
.featured-photo { display:block; position:relative; aspect-ratio:4/5; background:#100d15; overflow:hidden; }
.featured-photo img { width:100%; height:100%; object-fit:contain; transition:transform .2s; }
.featured-photo:hover img { transform:scale(1.035); }
.featured-photo span { position:absolute; top:12px; left:12px; background:#160e24; color:white; padding:7px 12px; border-radius:20px; font-size:12px; font-weight:800; }
.featured-info { padding:20px; }
.featured-info small { color:#c6b7d8; }
.featured-info h3 { font-size:17px; line-height:1.4; margin:10px 0 20px; height:4.2em; overflow:hidden; }
.featured-info a { color:white; text-decoration:none; }
.featured-buy { display:flex; justify-content:space-between; align-items:center; gap:10px; }
.featured-buy strong { color:#dcff4f; font-size:21px; }
.featured-buy button { background:#dcff4f; color:#100a1b; border:0; border-radius:10px; padding:10px; font-weight:800; cursor:pointer; }
@media(max-width:1080px){ .featured-grid { grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media(max-width:600px){ .home-featured { padding:36px 16px; } .featured-heading { align-items:flex-start; flex-direction:column; } .featured-grid { gap:12px; } .featured-info { padding:12px; } .featured-buy { flex-direction:column; align-items:stretch; } .featured-info h3 { font-size:14px; } }

/* Keep expansion content inside its grid column, including long names. */
.box-page-card { min-width:0; grid-template-columns:minmax(0,1fr); }
.box-page-media, .box-page-info, .box-page-actions { min-width:0; max-width:100%; }
.box-page-info { grid-template-columns:minmax(0,1fr); }
.box-page-info h3 { overflow-wrap:anywhere; line-height:1.12; font-size:clamp(1.25rem,1.7vw,1.9rem); }
.box-page-info p { overflow-wrap:anywhere; white-space:normal; }
.box-page-actions .buy { box-sizing:border-box; min-width:0; max-width:100%; white-space:normal; }
#cardBoxes .box-page-media { width:100%; }
#cardBoxes .box-page-media .box-set-visual { object-fit:contain !important; }

/* Chi siamo: titolo e illustrazioni con proporzioni autonome. */
.about-intro { grid-template-columns:minmax(0,1.12fr) minmax(0,1fr); gap:40px; max-width:1600px; margin:auto; padding-block:72px; }
.about-opening { min-width:0; }
.about-opening h1 { max-width:none; width:100%; font-size:clamp(2.3rem,4.3vw,4.6rem); line-height:1.08; letter-spacing:-.035em; }
.about-opening h1 span { display:inline-block; }
.about-opening > p:last-child { max-width:540px; font-size:1.05rem; line-height:1.7; }
.about-intro .hero-stage { min-height:500px; }
.about-intro .pokemon-gengar { width:63%; right:0; bottom:0; }
.about-intro .pokemon-charizard { width:40%; left:0; bottom:18%; }
.about-intro .pokemon-pikachu { width:33%; right:5%; top:0; }
@media(max-width:800px) { .about-intro { grid-template-columns:minmax(0,1fr); gap:24px; padding:36px 24px 48px; } .about-opening h1 { font-size:clamp(2rem,7.5vw,3.5rem); } .about-intro .hero-stage { min-height:0; aspect-ratio:1.25; max-width:560px; margin:auto; } }

.collection-hero { display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1fr); align-items:center; gap:60px; max-width:1500px; margin:auto; padding:80px clamp(24px,5vw,80px) 72px; background:radial-gradient(ellipse at 78% 45%,#6933aa55,transparent 60%); }
.collection-copy h1 { max-width:none; font-size:clamp(42px,5vw,78px); line-height:1.02; letter-spacing:-.045em; margin:24px 0; text-transform:none; }
.collection-copy h1 span { color:#dcff4f; }
.collection-copy .collection-lead { max-width:460px; color:#d1c5db; font-size:18px; line-height:1.7; margin-bottom:28px; }
.collection-copy .collection-count { font-size:13px; color:#b5a5c6; margin-top:24px; line-height:1.5; }
.collection-count strong { color:white; font-size:16px; }
.collection-art { position:relative; min-width:0; aspect-ratio:1; }
.collection-art img { position:absolute; width:76%; aspect-ratio:4/3; object-fit:contain; background:#fff; padding:8px; border-radius:20px; box-shadow:0 24px 60px #0008; }
.collection-art-back { top:3%; right:0; transform:rotate(9deg); }
.collection-art-front { left:0; top:34%; transform:rotate(-9deg); }
.collection-caption { position:absolute; right:0; bottom:0; color:#dacde9; font-size:14px; line-height:1.5; text-align:right; }
@media(max-width:800px){ .collection-hero { grid-template-columns:1fr; gap:24px; padding:40px 24px; } .collection-copy h1 { font-size:clamp(42px,9vw,64px); } .collection-art { max-width:480px; width:100%; margin:auto; } }

.cards-catalog .catalog-heading { display:block; }
.cards-catalog .catalog-heading h2 { font-size:clamp(28px,3vw,44px); max-width:none; line-height:1.15; margin:12px 0 28px; }
.cards-catalog .controls { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:16px; width:100%; max-width:none; padding:24px; border:1px solid #63516f; border-radius:18px; background:#21162e; box-sizing:border-box; }
.cards-catalog .controls .search { grid-column:1/-1; width:100%; }
.cards-catalog .filter-field,.cards-catalog .search { display:flex; flex-direction:column; gap:8px; min-width:0; }
.cards-catalog .controls label span { display:block; position:static; width:auto; height:auto; clip:auto; overflow:visible; color:#cbbbda; font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.07em; }
.cards-catalog .controls select,.cards-catalog .controls input { width:100%; min-width:0; max-width:100%; height:48px; box-sizing:border-box; padding:10px 12px; border:1px solid #7a698a; border-radius:9px; box-shadow:none; font-size:14px; background:#fffaf1; color:#1a1024; }
.cards-catalog .catalog-note { font-size:14px; line-height:1.6; margin:18px 0; }
.cards-catalog .chips { margin-bottom:28px; }
@media(max-width:800px){ .cards-catalog .controls { grid-template-columns:repeat(2,minmax(0,1fr)); padding:16px; gap:12px; } }
@media(max-width:420px){ .cards-catalog .controls { grid-template-columns:minmax(0,1fr); } }
.catalog-views { display:flex; align-items:center; flex-wrap:wrap; gap:12px; margin:20px 0; }
.catalog-views a,.catalog-views button { color:#fff; background:#2b1a3b; border:1px solid #786488; padding:12px 18px; border-radius:10px; text-decoration:none; font:inherit; cursor:pointer; }
.catalog-views button:disabled { opacity:.4; cursor:default; }
.flat-catalog #cardGrid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:20px; }
.flat-catalog #cardGrid > * { min-width:0; }
@media(max-width:1100px){.flat-catalog #cardGrid { grid-template-columns:repeat(2,minmax(0,1fr)); }}
@media(max-width:500px){.flat-catalog #cardGrid { grid-template-columns:minmax(0,1fr); }}

.featured-catalog-links { display:flex; flex-wrap:wrap; gap:12px; justify-content:flex-end; }
@media(max-width:800px){.featured-heading{flex-wrap:wrap}.featured-catalog-links{justify-content:flex-start}}
