:root {
  color-scheme: dark;
  --bg: #070a0d;
  --bg-2: #0b1116;
  --panel: #10171d;
  --panel-2: #121c22;
  --line: #24313a;
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #f5f7f4;
  --muted: #99aaa5;
  --soft: #d4ddd8;
  --gold: #f0ca72;
  --gold-2: #d9ab4c;
  --green: #62c8a8;
  --blue: #78a8ff;
  --danger: #ee6b66;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #000;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

button,
input,
select {
  font: inherit;
}

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

button {
  cursor: pointer;
}

.global-header,
.global-main {
  width: min(1500px, calc(100% - 40px));
  margin: 0 auto;
}

.global-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 10, 13, 0.84);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(240, 202, 114, 0.38);
  border-radius: 14px;
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.28), transparent 24%),
    linear-gradient(145deg, #1b2730, #070a0d);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.brand-mark span {
  color: var(--gold);
  font-size: 18px;
  font-weight: 950;
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  font-size: 25px;
  font-weight: 950;
}

.brand-copy small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.global-header nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.global-header nav a,
.global-header nav button,
.account-actions button,
.section-head button {
  min-height: 42px;
  border: 1px solid rgba(240, 202, 114, 0.36);
  border-radius: 11px;
  background: linear-gradient(180deg, rgba(247, 220, 138, 0.96) 0%, rgba(217, 171, 76, 0.95) 100%);
  color: #070a0d;
  font-weight: 900;
}

.global-header nav a {
  display: grid;
  place-items: center;
  min-width: 84px;
  padding: 0 14px;
}

.global-header nav a.active-view-link {
  border-color: rgba(255, 236, 176, 0.82);
  background: linear-gradient(180deg, #ffe7a0 0%, #d9aa44 100%);
  box-shadow: 0 12px 26px rgba(217, 170, 68, 0.22);
}

.global-main {
  padding: 10px 0 64px;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 0 0 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #172119;
  box-shadow: var(--shadow);
}

.signal-strip span {
  display: grid;
  place-items: center;
  min-height: 50px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.035);
  color: #edf8f3;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.store-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 22px;
  align-items: start;
}

.market-panel,
.checkout-panel,
.info-panel {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(16, 23, 29, 0.9);
  box-shadow: var(--shadow);
}

.market-panel {
  padding: 22px;
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: 20px;
  align-items: stretch;
  min-height: 250px;
  padding: 22px;
  border: 1px solid rgba(98, 200, 168, 0.26);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(21, 45, 38, 0.72), rgba(11, 17, 22, 0.94)),
    repeating-linear-gradient(135deg, transparent 0, transparent 20px, rgba(255, 255, 255, 0.035) 21px, transparent 22px);
}

.pill,
.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.pill {
  display: inline-grid;
  min-height: 28px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(98, 200, 168, 0.32);
  border-radius: 999px;
  background: rgba(98, 200, 168, 0.1);
}

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

h1 {
  max-width: 820px;
  margin-bottom: 16px;
  font-size: clamp(40px, 5.6vw, 78px);
  line-height: 0.98;
  font-weight: 950;
}

h2 {
  margin-bottom: 0;
  font-size: 24px;
  line-height: 1.14;
}

.hero-panel p:not(.pill) {
  max-width: 740px;
  margin-bottom: 0;
  color: var(--soft);
  font-size: 16px;
  line-height: 1.65;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.hero-stats > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 66px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  background: rgba(5, 8, 11, 0.52);
}

.hero-stats > span strong {
  color: var(--gold);
  font-size: 26px;
  font-weight: 950;
}

.hero-stats > span small {
  color: var(--muted);
  font-weight: 850;
}

.hero-proof {
  display: grid;
  gap: 7px;
  min-height: 86px;
  padding: 15px;
  border: 1px solid rgba(228, 199, 120, 0.18);
  border-radius: 14px;
  background:
    radial-gradient(circle at 100% 0%, rgba(228, 199, 120, 0.16), transparent 38%),
    rgba(5, 8, 11, 0.52);
}

.hero-proof span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-proof strong {
  color: var(--gold);
  font-size: 16px;
  line-height: 1.2;
}

.hero-proof small {
  color: rgba(220, 229, 223, 0.64);
  line-height: 1.45;
}

.search-box {
  display: grid;
  gap: 8px;
  margin: 18px 0 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.search-box input,
.account-actions input,
.field-row input,
.field-row select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #080d12;
  color: var(--text);
  padding: 0 14px;
  outline: none;
}

.search-box input:focus,
.account-actions input:focus,
.field-row input:focus,
.field-row select:focus {
  border-color: rgba(98, 200, 168, 0.72);
  box-shadow: 0 0 0 3px rgba(98, 200, 168, 0.12);
}

.catalog-section + .catalog-section {
  margin-top: 24px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.section-head > span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
  text-align: right;
}

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

.category-tile {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  min-height: 104px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(10, 16, 21, 0.74);
  color: var(--text);
  padding: 13px;
  text-align: left;
}

.category-tile:hover,
.category-tile.active {
  border-color: rgba(98, 200, 168, 0.72);
  background: rgba(98, 200, 168, 0.1);
}

.app-badge {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid var(--icon-border, rgba(222, 232, 226, 0.14));
  border-radius: 16px;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.16), transparent 24%),
    radial-gradient(circle at 82% 92%, var(--icon-glow, rgba(98, 200, 168, 0.16)), transparent 56%),
    linear-gradient(145deg, #1a232b, #070b10 74%);
  color: var(--icon-c, #f7fbf8);
  font-weight: 950;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -10px 18px rgba(0, 0, 0, 0.18),
    0 12px 24px rgba(0, 0, 0, 0.22);
}

.app-badge::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 9px;
  left: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--icon-border, rgba(98, 200, 168, 0.52));
  box-shadow: 0 0 14px var(--icon-glow, rgba(98, 200, 168, 0.22));
}

.app-badge svg {
  position: relative;
  z-index: 1;
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.85;
}

.app-badge .badge-text {
  position: relative;
  z-index: 1;
  font-size: 19px;
  line-height: 1;
  letter-spacing: 0;
}

.app-badge.all { --icon-c: #dffcf3; --icon-border: rgba(98, 200, 168, 0.52); --icon-glow: rgba(98, 200, 168, 0.23); }
.app-badge.facebook { --icon-c: #dce7ff; --icon-border: rgba(95, 142, 255, 0.50); --icon-glow: rgba(95, 142, 255, 0.22); }
.app-badge.instagram { --icon-c: #ffe3f0; --icon-border: rgba(228, 110, 167, 0.50); --icon-glow: rgba(228, 110, 167, 0.20); }
.app-badge.tiktok { --icon-c: #f5f7fb; --icon-border: rgba(222, 232, 226, 0.28); --icon-glow: rgba(255, 255, 255, 0.10); }
.app-badge.telegram { --icon-c: #d9f2ff; --icon-border: rgba(108, 196, 244, 0.48); --icon-glow: rgba(108, 196, 244, 0.20); }
.app-badge.twitter { --icon-c: #f8fafc; --icon-border: rgba(222, 232, 226, 0.28); --icon-glow: rgba(255, 255, 255, 0.10); }
.app-badge.linkedin { --icon-c: #dceaff; --icon-border: rgba(75, 142, 232, 0.50); --icon-glow: rgba(75, 142, 232, 0.20); }
.app-badge.vk { --icon-c: #e0ecff; --icon-border: rgba(93, 147, 219, 0.46); --icon-glow: rgba(93, 147, 219, 0.18); }
.app-badge.okru { --icon-c: #ffe6bd; --icon-border: rgba(240, 173, 85, 0.44); --icon-glow: rgba(240, 173, 85, 0.20); }
.app-badge.reddit { --icon-c: #ffe2da; --icon-border: rgba(255, 128, 88, 0.50); --icon-glow: rgba(255, 128, 88, 0.20); }
.app-badge.apple { --icon-c: #eef3f8; --icon-border: rgba(154, 166, 180, 0.42); --icon-glow: rgba(154, 166, 180, 0.16); }
.app-badge.email { --icon-c: #dffcf3; --icon-border: rgba(91, 165, 143, 0.48); --icon-glow: rgba(91, 165, 143, 0.20); }
.app-badge.gemini { --icon-c: #e2f4ff; --icon-border: rgba(123, 202, 255, 0.46); --icon-glow: rgba(123, 202, 255, 0.18); }
.app-badge.grok { --icon-c: #ffe7a8; --icon-border: rgba(245, 208, 109, 0.46); --icon-glow: rgba(245, 208, 109, 0.20); }
.app-badge.gpt { --icon-c: #dffcf3; --icon-border: rgba(59, 135, 111, 0.50); --icon-glow: rgba(59, 135, 111, 0.20); }
.app-badge.claude { --icon-c: #ffe7c4; --icon-border: rgba(214, 154, 75, 0.46); --icon-glow: rgba(214, 154, 75, 0.18); }
.app-badge.cursor { --icon-c: #e3e7ff; --icon-border: rgba(93, 121, 255, 0.48); --icon-glow: rgba(93, 121, 255, 0.20); }
.app-badge.digital { --icon-c: #ece8ff; --icon-border: rgba(125, 115, 255, 0.46); --icon-glow: rgba(125, 115, 255, 0.18); }
.app-badge.game { --icon-c: #dffcf3; --icon-border: rgba(104, 208, 170, 0.46); --icon-glow: rgba(104, 208, 170, 0.18); }
.app-badge.proxy { --icon-c: #ffe8b8; --icon-border: rgba(233, 200, 121, 0.46); --icon-glow: rgba(233, 200, 121, 0.18); }
.app-badge.crypto { --icon-c: #ffe8b8; --icon-border: rgba(240, 202, 114, 0.46); --icon-glow: rgba(240, 202, 114, 0.18); }
.app-badge.other { --icon-c: #e8efec; --icon-border: rgba(117, 131, 125, 0.40); --icon-glow: rgba(117, 131, 125, 0.14); }

.category-copy,
.product-copy {
  min-width: 0;
}

.category-copy strong {
  display: block;
  overflow: hidden;
  color: var(--text);
  font-size: 17px;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category-copy small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.product-list {
  display: grid;
  gap: 13px;
}

.skeleton-card {
  pointer-events: none;
}

.skeleton-icon,
.skeleton-copy i,
.skeleton-side i {
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(222, 232, 226, 0.06), rgba(222, 232, 226, 0.14), rgba(222, 232, 226, 0.06));
  background-size: 220% 100%;
  animation: skeletonWave 1.35s ease-in-out infinite;
}

.skeleton-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
}

.skeleton-copy,
.skeleton-side {
  display: grid;
  gap: 11px;
}

.skeleton-copy i {
  width: min(180px, 100%);
  height: 15px;
}

.skeleton-copy i:nth-child(2) {
  width: min(110px, 70%);
}

.skeleton-copy i:nth-child(3),
.skeleton-side i:nth-child(2) {
  width: min(84px, 58%);
  height: 12px;
}

.skeleton-side {
  justify-items: end;
}

.skeleton-side i {
  width: 82px;
  height: 16px;
}

@keyframes skeletonWave {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.product-empty {
  min-height: 230px;
  border: 1px solid rgba(98, 200, 168, 0.18);
  border-radius: 15px;
  background:
    radial-gradient(circle at 50% 0%, rgba(98, 200, 168, 0.11), transparent 42%),
    rgba(8, 13, 18, 0.70);
  padding: 28px;
  text-align: center;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) auto;
  align-items: center;
  gap: 15px;
  width: 100%;
  min-height: 126px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(8, 13, 18, 0.82);
  color: var(--text);
  padding: 16px;
  text-align: left;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 14px auto 14px 0;
  width: 4px;
  border-radius: 999px;
  background: transparent;
}

.product-card:hover,
.product-card.active {
  border-color: rgba(98, 200, 168, 0.72);
  background: rgba(98, 200, 168, 0.08);
}

.product-card.active::before {
  background: var(--green);
}

.product-card .app-badge {
  width: 68px;
  height: 68px;
  font-size: 19px;
}

.product-copy h3 {
  overflow: hidden;
  margin: 0 0 8px;
  color: var(--text);
  font-size: 20px;
  font-weight: 950;
  line-height: 1.18;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-kicker {
  display: block;
  overflow: hidden;
  max-width: 100%;
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-copy p {
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.product-tags span,
.stock-pill,
.select-pill,
.checkout-promises span,
.coin-strip span {
  display: inline-grid;
  place-items: center;
  min-height: 29px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
}

.product-tags span {
  border: 1px solid rgba(98, 200, 168, 0.25);
  background: rgba(98, 200, 168, 0.1);
  color: #cdf8ec;
}

.product-side {
  display: grid;
  justify-items: end;
  gap: 12px;
  min-width: 134px;
}

.price {
  color: var(--gold);
  font-size: 27px;
  font-weight: 950;
  white-space: nowrap;
}

.stock-pill {
  border: 1px solid rgba(98, 200, 168, 0.34);
  background: rgba(98, 200, 168, 0.1);
  color: var(--green);
}

.select-pill {
  border: 1px solid rgba(228, 199, 120, 0.28);
  background: rgba(228, 199, 120, 0.08);
  color: var(--gold);
}

.checkout-panel {
  position: sticky;
  top: 92px;
  align-self: start;
  padding: 24px;
}

.selected-product {
  min-height: 240px;
}

.selected-product h2 {
  margin: 0 0 13px;
  font-size: 34px;
  line-height: 1.08;
  font-weight: 950;
}

.selected-product .hint {
  margin: 12px 0 0;
}

.selected-buy-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  min-height: 58px;
  margin-top: 18px;
  border: 1px solid rgba(246, 226, 166, 0.25);
  border-radius: 16px;
  background:
    linear-gradient(180deg, #e5ca82 0%, #b98d48 100%);
  color: #050607;
  padding: 0 18px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 18px 38px rgba(185, 141, 72, 0.18);
}

.selected-buy-action span {
  font-size: 18px;
  font-weight: 920;
}

.selected-buy-action small {
  color: rgba(5, 6, 7, 0.64);
  font-size: 12px;
  font-weight: 860;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag-row span {
  padding: 8px 11px;
  border: 1px solid rgba(98, 200, 168, 0.28);
  border-radius: 999px;
  background: rgba(98, 200, 168, 0.1);
  color: #cdf8ec;
  font-size: 12px;
  font-weight: 950;
}

.detail-list {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.48;
}

.selected-meta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin-top: 16px;
}

.selected-meta-grid span {
  display: grid;
  gap: 4px;
  min-width: 0;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--soft);
  padding: 11px 12px;
  line-height: 1.45;
}

.selected-meta-grid b {
  color: var(--gold);
  font-size: 11px;
  text-transform: uppercase;
}

.compact-empty {
  min-height: 180px;
}

.field-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 11px;
  margin: 20px 0 14px;
}

.field-row label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.checkout-promises {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 14px 0;
}

.checkout-promises span {
  justify-content: start;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.035);
  color: var(--soft);
}

.checkout-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 16px;
}

.checkout-rail span {
  display: grid;
  gap: 4px;
  min-height: 58px;
  align-content: center;
  border: 1px solid var(--line-soft);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  padding: 10px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.checkout-rail b {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0;
}

.checkout-rail .active {
  border-color: rgba(98, 200, 168, 0.32);
  background: rgba(98, 200, 168, 0.09);
  color: var(--soft);
}

.checkout-total-card {
  display: grid;
  gap: 5px;
  margin: 14px 0;
  border: 1px solid rgba(240, 202, 114, 0.24);
  border-radius: 14px;
  background:
    radial-gradient(circle at 100% 0%, rgba(240, 202, 114, 0.18), transparent 34%),
    rgba(240, 202, 114, 0.07);
  padding: 15px;
}

.checkout-total-card span,
.checkout-total-card small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.checkout-total-card strong {
  color: var(--gold);
  font-size: 36px;
  line-height: 1.05;
  font-weight: 950;
}

.terms {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.terms input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
}

.terms.needs-check,
.pro-store .terms.needs-check {
  padding: 10px 12px;
  border-radius: 13px;
  background: rgba(240, 215, 139, 0.10);
  color: #fff3cf;
  box-shadow:
    0 0 0 1px rgba(240, 215, 139, 0.58),
    0 14px 34px rgba(240, 215, 139, 0.12);
  animation: termsReminder 0.42s ease 0s 2;
}

.terms.needs-check input {
  outline: 2px solid rgba(240, 215, 139, 0.75);
  outline-offset: 3px;
}

.terms.needs-check span::after {
  content: "Required";
  display: inline-flex;
  margin-left: 10px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(240, 215, 139, 0.18);
  color: #f0d78b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  vertical-align: middle;
}

.primary-action.needs-confirm,
.pro-store .primary-action.needs-confirm {
  border-color: rgba(240, 215, 139, 0.74);
  background:
    linear-gradient(180deg, rgba(240, 215, 139, 0.98), rgba(190, 148, 80, 0.98));
  color: #090c10;
  box-shadow:
    0 0 0 1px rgba(240, 215, 139, 0.36),
    0 16px 34px rgba(190, 148, 80, 0.18);
  animation: termsReminder 0.42s ease 0s 2;
}

@keyframes termsReminder {
  0%,
  100% {
    transform: translateX(0);
  }

  35% {
    transform: translateX(-4px);
  }

  70% {
    transform: translateX(4px);
  }
}

.primary-action {
  width: 100%;
  min-height: 58px;
  margin-top: 17px;
  border: 0;
  border-radius: 13px;
  background: linear-gradient(180deg, #f7dc8a 0%, #d7a84b 100%);
  color: #070a0d;
  font-size: 17px;
  font-weight: 950;
}

.primary-action:disabled {
  cursor: wait;
  opacity: 0.7;
}

.primary-action.is-loading,
.pro-store .primary-action.is-loading {
  position: relative;
  opacity: 0.92;
  color: rgba(7, 10, 13, 0.72);
}

.primary-action.is-loading::after,
.pro-store .primary-action.is-loading::after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-left: 9px;
  border: 2px solid rgba(7, 10, 13, 0.28);
  border-top-color: rgba(7, 10, 13, 0.78);
  border-radius: 999px;
  vertical-align: -2px;
  animation: spinLoading 0.7s linear infinite;
}

@keyframes spinLoading {
  to {
    transform: rotate(360deg);
  }
}

.service-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  margin-top: 22px;
}

.service-grid.service-hidden {
  display: none;
}

[data-view]:not(.active-view) {
  display: none !important;
}

[data-view].active-view {
  animation: viewIn 160ms ease both;
}

@keyframes viewIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.info-panel {
  padding: 22px;
}

.account-trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 14px;
}

.account-trust-row span {
  display: grid;
  place-items: center;
  min-height: 42px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--soft);
  padding: 0 12px;
  font-size: 12px;
  font-weight: 950;
  text-align: center;
}

.account-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
}

.account-actions button,
.section-head button {
  padding: 0 15px;
}

.account-code-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(8, 13, 18, 0.72);
  padding: 15px;
}

.account-code-card span,
.account-next span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.account-code-card strong {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-size: 26px;
  font-weight: 950;
  letter-spacing: 0;
}

.account-code-card.signed {
  border-color: rgba(98, 200, 168, 0.46);
  background: rgba(98, 200, 168, 0.08);
}

.account-code-card.just-ready {
  animation: accessReadyPulse 1.8s ease both;
}

@keyframes accessReadyPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(240, 202, 114, 0);
    transform: translateY(0);
  }
  18% {
    box-shadow: 0 0 0 1px rgba(240, 202, 114, 0.45), 0 18px 42px rgba(98, 200, 168, 0.16);
    transform: translateY(-1px);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(240, 202, 114, 0);
    transform: translateY(0);
  }
}

.account-code-card button {
  min-height: 42px;
  border: 1px solid rgba(240, 202, 114, 0.36);
  border-radius: 11px;
  background: rgba(240, 202, 114, 0.12);
  color: var(--gold);
  padding: 0 16px;
  font-weight: 950;
}

.account-code-card button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.account-next {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.account-next span {
  display: grid;
  gap: 8px;
  min-height: 86px;
  align-content: center;
  justify-items: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.035);
  text-align: center;
}

.account-next b {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(98, 200, 168, 0.12);
  color: var(--green);
}

.account-mini-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.account-mini-actions a,
.inline-action {
  display: inline-grid;
  place-items: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--soft);
  padding: 0 14px;
  font-weight: 950;
}

.inline-action {
  margin-top: 12px;
}

.hint,
.support-panel p,
.empty-state {
  color: var(--muted);
  line-height: 1.65;
}

.rich-empty {
  justify-items: center;
  gap: 10px;
}

.rich-empty strong {
  color: var(--text);
  font-size: 20px;
  font-weight: 950;
}

.rich-empty p {
  max-width: 560px;
  margin: 0;
}

.empty-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(620px, 100%);
  margin-top: 8px;
}

.empty-flow span {
  display: grid;
  gap: 7px;
  min-height: 76px;
  align-content: center;
  justify-items: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--soft);
  font-size: 13px;
  font-weight: 900;
}

.empty-flow b {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(240, 202, 114, 0.12);
  color: var(--gold);
}

.payment-card,
.order-item,
.support-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(8, 13, 18, 0.72);
  padding: 15px;
}

.payment-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-bottom: 15px;
}

.payment-progress span {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 46px;
  border: 1px solid var(--line-soft);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  padding: 0 11px;
  font-size: 13px;
  font-weight: 900;
}

.payment-progress b {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--soft);
}

.payment-progress .done,
.payment-progress .current {
  border-color: rgba(98, 200, 168, 0.28);
  background: rgba(98, 200, 168, 0.08);
  color: var(--soft);
}

.payment-progress .done b,
.payment-progress .current b {
  background: rgba(98, 200, 168, 0.16);
  color: var(--green);
}

.payment-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(180px, 0.85fr);
  gap: 12px;
  align-items: stretch;
  margin: 0 0 15px;
}

.payment-hero > div {
  display: grid;
  align-content: center;
  min-width: 0;
  min-height: 118px;
  border: 1px solid rgba(228, 199, 120, 0.22);
  border-radius: 15px;
  background:
    radial-gradient(circle at 100% 0%, rgba(228, 199, 120, 0.17), transparent 42%),
    rgba(228, 199, 120, 0.055);
  padding: 15px;
}

.payment-hero small {
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.45;
}

.payment-provider-card {
  gap: 7px;
  border-color: rgba(98, 200, 168, 0.22) !important;
  background:
    radial-gradient(circle at 0% 0%, rgba(98, 200, 168, 0.12), transparent 42%),
    rgba(98, 200, 168, 0.055) !important;
}

.payment-provider-card span,
.payment-caption {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.payment-provider-card b {
  color: var(--soft);
  font-size: 17px;
  line-height: 1.25;
}

.payment-caption {
  margin: 15px 0 -5px;
}

.payment-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin: 15px 0;
}

.payment-summary span {
  min-width: 0;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--soft);
  padding: 10px;
  overflow-wrap: anywhere;
}

.payment-summary b {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.payment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2px 0 12px;
}

.payment-actions button {
  min-height: 34px;
  border: 1px solid rgba(231, 226, 210, 0.10);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(246, 243, 234, 0.82);
  padding: 0 12px;
  font-size: 12px;
  font-weight: 850;
}

.payment-actions button:hover {
  border-color: rgba(216, 191, 122, 0.34);
  color: #f6e0a0;
}

.payment-support-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 12px;
  border: 1px solid rgba(216, 191, 122, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.026);
  padding: 10px 12px;
}

.payment-support-strip span {
  color: rgba(220, 229, 223, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.payment-support-strip a {
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
}

.payment-card strong {
  color: var(--gold);
  font-size: 34px;
  font-weight: 950;
}

.wallet {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.network-warning {
  display: grid;
  gap: 5px;
  margin: 14px 0;
  border: 1px solid rgba(240, 202, 114, 0.30);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(240, 202, 114, 0.12), rgba(98, 200, 168, 0.05)),
    rgba(5, 8, 11, 0.74);
  padding: 12px 14px;
}

.network-warning b {
  color: var(--gold);
  font-size: 14px;
  font-weight: 950;
}

.network-warning span,
.wallet-label {
  color: rgba(220, 229, 223, 0.72);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.45;
}

.wallet code {
  overflow-wrap: anywhere;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #070a0d;
  padding: 12px;
  color: #d6e5e0;
}

.payment-qr {
  width: min(220px, 100%);
  border: 1px solid rgba(231, 226, 210, 0.12);
  border-radius: 18px;
  background: #fff;
  padding: 10px;
}

.coin-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.coin-strip span {
  border: 1px solid rgba(240, 202, 114, 0.34);
  background: rgba(240, 202, 114, 0.1);
  color: var(--gold);
}

.checkout-link {
  display: grid;
  place-items: center;
  min-height: 54px;
  margin-top: 14px;
  border-radius: 12px;
  background: linear-gradient(180deg, #f7dc8a 0%, #d9aa44 100%);
  color: #080b0f;
  font-weight: 950;
}

.gateway-note {
  margin-top: 14px;
  border: 1px solid rgba(240, 202, 114, 0.25);
  border-radius: 12px;
  background: rgba(240, 202, 114, 0.08);
  color: #f3dfaa;
  padding: 12px;
  line-height: 1.55;
}

.orders-list {
  display: grid;
  gap: 10px;
}

.orders-guide {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  width: min(760px, 100%);
  margin-top: 6px;
}

.orders-guide span {
  display: grid;
  gap: 5px;
  min-height: 76px;
  align-content: center;
  border: 1px solid var(--line-soft);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--soft);
  padding: 12px;
  text-align: left;
}

.orders-guide b {
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
}

.order-item {
  display: grid;
  gap: 12px;
}

.order-item header,
.support-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.order-item header small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.order-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.order-meta span {
  min-width: 0;
  border: 1px solid var(--line-soft);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--soft);
  padding: 10px;
  overflow-wrap: anywhere;
}

.order-meta b {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.order-meta span:last-child {
  border-color: rgba(240, 202, 114, 0.24);
  background: rgba(240, 202, 114, 0.055);
  color: var(--cream);
  user-select: all;
}

.order-actions,
.support-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.order-actions button,
.order-actions a {
  display: inline-grid;
  place-items: center;
  min-height: 40px;
  border: 1px solid rgba(240, 202, 114, 0.32);
  border-radius: 11px;
  background: rgba(240, 202, 114, 0.1);
  color: var(--gold);
  padding: 0 13px;
  font-weight: 950;
}

.order-actions button:first-child {
  background: rgba(98, 200, 168, 0.10);
  border-color: rgba(98, 200, 168, 0.26);
  color: var(--green);
}

.status {
  color: var(--green);
  font-weight: 950;
}

.support-steps {
  margin-top: 16px;
}

.support-steps span {
  display: inline-grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--soft);
  padding: 0 13px;
  font-weight: 900;
}

.support-steps b {
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 999px;
  background: rgba(98, 200, 168, 0.12);
  color: var(--green);
  font-size: 12px;
}

.support-card {
  margin-top: 16px;
}

.support-card > div:first-child {
  min-width: 0;
}

.support-card strong {
  display: block;
  overflow-wrap: anywhere;
}

.support-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.support-actions button,
.support-actions a {
  display: inline-grid;
  place-items: center;
  min-height: 38px;
  border: 1px solid rgba(240, 202, 114, 0.32);
  border-radius: 11px;
  background: rgba(240, 202, 114, 0.10);
  color: var(--gold);
  padding: 0 12px;
  font-size: 12px;
  font-weight: 950;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 140;
  max-width: min(560px, calc(100vw - 32px));
  transform: translate(-50%, 120%);
  border: 1px solid rgba(98, 200, 168, 0.42);
  border-radius: 13px;
  background: #0d1519;
  color: var(--text);
  padding: 13px 16px;
  opacity: 0;
  transition: 0.18s ease;
}

.toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

.mobile-buy-bar {
  display: none;
}

.mobile-buy-bar[hidden] {
  display: none !important;
}

@media (max-width: 1180px) {
  .store-grid {
    grid-template-columns: 1fr;
  }

  .checkout-panel {
    position: static;
  }

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

@media (max-width: 860px) {
  .global-header,
  .global-main {
    width: min(100% - 28px, 1500px);
  }

  .global-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .global-header nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: 100%;
    padding-bottom: 3px;
  }

  .global-header nav a {
    min-width: 92px;
  }

  .signal-strip {
    display: flex;
    overflow-x: auto;
  }

  .signal-strip span {
    min-width: 210px;
  }

  .hero-panel,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {
  body {
    padding-bottom: 104px;
  }

  .global-header,
  .global-main {
    width: 100%;
  }

  .global-header {
    padding: 14px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand-copy strong {
    font-size: 24px;
  }

  .brand-copy small {
    font-size: 12px;
  }

  .global-main {
    padding: 10px 14px 34px;
  }

  .signal-strip {
    margin-bottom: 12px;
    border-radius: 14px;
  }

  .signal-strip span {
    min-width: 178px;
    min-height: 42px;
    font-size: 12px;
  }

  .market-panel,
  .checkout-panel,
  .info-panel {
    border-radius: 14px;
    padding: 16px;
  }

  .hero-panel {
    min-height: 0;
    padding: 16px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 22px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .hero-stats > span {
    display: grid;
    justify-items: start;
    min-height: 58px;
    padding: 10px;
  }

  .hero-stats > span strong {
    font-size: 21px;
  }

  .hero-proof {
    grid-column: 1 / -1;
    min-height: 70px;
    padding: 12px;
  }

  .hero-proof strong {
    font-size: 14px;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-head > span {
    text-align: left;
  }

  .category-grid {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    margin: 0 -2px;
    padding: 0 2px 6px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .category-grid::-webkit-scrollbar {
    display: none;
  }

  .category-tile {
    flex: 0 0 164px;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 10px;
    min-height: 74px;
    padding: 10px;
    scroll-snap-align: start;
  }

  .category-tile .app-badge {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    font-size: 15px;
  }

  .category-copy strong {
    font-size: 14px;
  }

  .category-copy small {
    margin-top: 4px;
    font-size: 12px;
  }

  .product-card {
    grid-template-columns: 56px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    min-height: 0;
    padding: 13px;
  }

  .product-card .app-badge {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    font-size: 16px;
  }

  .product-side {
    grid-column: 1 / -1;
    grid-row: auto;
    grid-template-columns: auto 1fr auto;
    width: 100%;
    gap: 9px;
    justify-content: stretch;
    justify-items: start;
    align-items: center;
    min-width: 0;
    margin-top: 2px;
    padding-top: 10px;
    border-top: 1px solid rgba(222, 232, 226, 0.08);
  }

  .product-copy h3 {
    display: -webkit-box;
    margin-bottom: 6px;
    font-size: 15px;
    white-space: normal;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .product-copy p {
    display: none;
  }

  .product-kicker {
    margin-bottom: 4px;
    font-size: 10px;
  }

  .product-tags {
    flex-wrap: nowrap;
    gap: 5px;
    margin-top: 8px;
    overflow: hidden;
  }

  .product-tags span {
    min-height: 24px;
    max-width: 78px;
    padding: 0 8px;
    font-size: 11px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .product-tags span:nth-child(n + 3) {
    display: none;
  }

  .product-side .price {
    font-size: 22px;
  }

  .stock-pill {
    min-height: 25px;
    padding: 0 9px;
    font-size: 11px;
    justify-self: start;
  }

  .select-pill {
    display: inline-grid;
    min-width: 66px;
    min-height: 32px;
    justify-self: end;
  }

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

  .checkout-rail {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .checkout-rail span {
    min-height: 44px;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
  }

  .selected-product h2 {
    font-size: 30px;
  }

  .checkout-total-card {
    padding: 13px;
  }

  .checkout-total-card strong {
    font-size: 31px;
  }

  .field-row,
  .account-actions {
    grid-template-columns: 1fr;
  }

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

  .account-code-card {
    align-items: stretch;
    flex-direction: column;
  }

  .account-code-card button {
    width: 100%;
  }

  .account-next {
    grid-template-columns: 1fr;
  }

  .empty-flow {
    grid-template-columns: 1fr;
  }

  .payment-progress,
  .payment-hero,
  .payment-summary {
    grid-template-columns: 1fr;
  }

  .orders-guide {
    grid-template-columns: 1fr;
  }

  .order-meta {
    grid-template-columns: 1fr;
  }

  .order-actions button,
  .order-actions a {
    flex: 1 1 140px;
  }

  .support-steps {
    display: grid;
    grid-template-columns: 1fr;
  }

  .account-next span {
    min-height: 58px;
    grid-template-columns: auto minmax(0, 1fr);
    justify-items: start;
    padding: 0 14px;
    text-align: left;
  }

  .service-grid {
    gap: 14px;
  }

  body:not([data-active-view="shop"]) .mobile-buy-bar {
    display: none !important;
  }

  .mobile-buy-bar {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 35;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 132px;
    gap: 12px;
    align-items: center;
    min-height: 78px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(13, 19, 25, 0.96);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
    padding: 12px;
    backdrop-filter: blur(16px);
  }

  .mobile-buy-bar strong,
  .mobile-buy-bar span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-buy-bar strong {
    font-size: 15px;
  }

  .mobile-buy-bar span {
    margin-top: 4px;
    color: var(--gold);
    font-weight: 950;
  }

  .mobile-buy-bar button {
    min-height: 54px;
    border: 0;
    border-radius: 13px;
    background: linear-gradient(180deg, #f7dc8a 0%, #d9aa44 100%);
    color: #070a0d;
    font-weight: 950;
  }
}

/* Professional global storefront pass */
.pro-store {
  --bg: #06090c;
  --panel: #0d1419;
  --panel-2: #111b22;
  --line: rgba(222, 232, 226, 0.13);
  --line-soft: rgba(222, 232, 226, 0.08);
  --text: #f7f8f3;
  --muted: #8f9f99;
  --soft: #dce5df;
  --gold: #e4c778;
  --gold-2: #bb9350;
  --green: #62c8a8;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  background:
    linear-gradient(180deg, #090d10 0%, #06090c 42%, #050708 100%),
    linear-gradient(115deg, rgba(98, 200, 168, 0.10), transparent 38%);
}

.pro-store::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 74%);
}

.pro-store .global-header,
.pro-store .global-main {
  width: min(1480px, calc(100% - 44px));
}

.pro-store .global-header {
  padding: 16px 0;
  border-bottom-color: rgba(222, 232, 226, 0.10);
  background: rgba(6, 9, 12, 0.88);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.22);
}

.pro-store .brand {
  min-width: 250px;
}

.pro-store .brand-mark {
  position: relative;
  overflow: hidden;
  width: 54px;
  height: 54px;
  border-color: rgba(228, 199, 120, 0.42);
  border-radius: 17px;
  background:
    linear-gradient(145deg, rgba(44, 62, 64, 0.94), rgba(8, 12, 15, 0.98)),
    linear-gradient(45deg, rgba(228, 199, 120, 0.20), transparent 58%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -18px 34px rgba(0, 0, 0, 0.18),
    0 16px 34px rgba(0, 0, 0, 0.30);
}

.pro-store .brand-mark span {
  font-size: 0;
}

.pro-store .brand-mark::before,
.pro-store .brand-mark::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 12px;
  width: 22px;
  height: 30px;
  border: 2px solid rgba(228, 199, 120, 0.94);
  border-radius: 9px 9px 4px 4px;
  transform: rotate(34deg);
}

.pro-store .brand-mark::after {
  left: 19px;
  top: 23px;
  width: 16px;
  height: 16px;
  border-color: rgba(98, 200, 168, 0.86);
  border-radius: 999px;
  transform: none;
  background: rgba(98, 200, 168, 0.15);
}

.pro-store .brand-copy strong {
  font-size: 26px;
  letter-spacing: 0;
}

.pro-store .brand-copy small {
  color: rgba(220, 229, 223, 0.62);
}

.pro-store .global-header nav {
  gap: 8px;
}

.pro-store .global-header nav a,
.pro-store .account-actions button,
.pro-store .section-head button {
  min-height: 42px;
  border-color: rgba(222, 232, 226, 0.13);
  background: rgba(255, 255, 255, 0.045);
  color: var(--soft);
  box-shadow: none;
}

.pro-store .global-header nav a:hover,
.pro-store .global-header nav a.active-view-link {
  border-color: rgba(228, 199, 120, 0.54);
  background: linear-gradient(180deg, rgba(238, 211, 139, 0.96), rgba(190, 148, 80, 0.96));
  color: #070a0d;
}

.pro-store .signal-strip {
  margin-bottom: 18px;
  border-color: rgba(222, 232, 226, 0.12);
  border-radius: 16px;
  background: rgba(13, 20, 25, 0.74);
  box-shadow: none;
}

.pro-store .signal-strip span {
  background: rgba(255, 255, 255, 0.035);
  color: rgba(247, 248, 243, 0.84);
}

.pro-store .market-panel,
.pro-store .checkout-panel,
.pro-store .info-panel {
  border-color: rgba(222, 232, 226, 0.12);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(18, 27, 34, 0.94), rgba(10, 16, 20, 0.95)),
    rgba(13, 20, 25, 0.92);
  box-shadow: var(--shadow);
}

.pro-store .market-panel {
  padding: 20px;
}

.pro-store .hero-panel {
  min-height: 198px;
  border-color: rgba(98, 200, 168, 0.25);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(20, 48, 40, 0.86), rgba(12, 18, 23, 0.95) 58%),
    linear-gradient(90deg, rgba(228, 199, 120, 0.10), transparent);
}

.pro-store h1 {
  max-width: 760px;
  margin-bottom: 13px;
  font-size: clamp(36px, 4.5vw, 62px);
  line-height: 1.02;
}

.pro-store .hero-panel p:not(.pill) {
  max-width: 660px;
  color: rgba(220, 229, 223, 0.78);
}

.pro-store .pill,
.pro-store .eyebrow {
  color: var(--gold);
}

.pro-store .pill {
  border-color: rgba(228, 199, 120, 0.24);
  background: rgba(228, 199, 120, 0.08);
}

.pro-store .hero-stats > span,
.pro-store .hero-proof {
  border-color: rgba(222, 232, 226, 0.10);
  background: rgba(4, 7, 9, 0.42);
}

.pro-store .hero-stats > span strong,
.pro-store .hero-proof strong {
  color: var(--gold);
}

.pro-store .search-box {
  margin: 16px 0 20px;
}

.pro-store .search-box input,
.pro-store .account-actions input,
.pro-store .field-row input,
.pro-store .field-row select {
  min-height: 54px;
  border-color: rgba(222, 232, 226, 0.12);
  background: rgba(5, 9, 12, 0.78);
}

.pro-store .section-head {
  margin-bottom: 12px;
}

.pro-store .section-head > span {
  color: rgba(220, 229, 223, 0.52);
}

.pro-store .category-grid {
  gap: 10px;
}

.pro-store .category-tile,
.pro-store .product-card {
  border-color: rgba(222, 232, 226, 0.105);
  background: rgba(6, 11, 15, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.pro-store .category-tile:hover,
.pro-store .category-tile.active,
.pro-store .product-card:hover,
.pro-store .product-card.active {
  border-color: rgba(98, 200, 168, 0.55);
  background:
    linear-gradient(90deg, rgba(98, 200, 168, 0.12), rgba(6, 11, 15, 0.72)),
    rgba(6, 11, 15, 0.72);
}

.pro-store .app-badge {
  border-color: var(--icon-border, rgba(255, 255, 255, 0.13));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -12px 24px rgba(0, 0, 0, 0.20),
    0 12px 24px rgba(0, 0, 0, 0.24);
}

.pro-store .product-card {
  min-height: 118px;
  border-radius: 16px;
}

.pro-store .product-copy h3 {
  font-size: 19px;
}

.pro-store .product-copy p {
  color: rgba(220, 229, 223, 0.54);
}

.pro-store .product-tags span,
.pro-store .stock-pill,
.pro-store .select-pill,
.pro-store .checkout-promises span,
.pro-store .checkout-rail span,
.pro-store .coin-strip span,
.pro-store .selected-meta-grid span,
.pro-store .payment-progress span,
.pro-store .payment-summary span,
.pro-store .orders-guide span {
  border-color: rgba(98, 200, 168, 0.22);
  background: rgba(98, 200, 168, 0.08);
}

.pro-store .stock-pill {
  color: #8be0c7;
}

.pro-store .checkout-rail .active {
  border-color: rgba(228, 199, 120, 0.3);
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.10), transparent 30%),
    rgba(228, 199, 120, 0.09);
}

.pro-store .checkout-panel {
  top: 88px;
  padding: 22px;
}

.pro-store .selected-product {
  min-height: 218px;
}

.pro-store .selected-product h2 {
  font-size: 31px;
}

.pro-store .selected-product .price,
.pro-store .price {
  color: var(--gold);
}

.pro-store .checkout-total-card {
  border-color: rgba(228, 199, 120, 0.25);
  background:
    linear-gradient(145deg, rgba(228, 199, 120, 0.13), rgba(98, 200, 168, 0.06)),
    rgba(8, 12, 15, 0.70);
}

.pro-store .primary-action,
.pro-store .checkout-link,
.pro-store .mobile-buy-bar button {
  background: linear-gradient(180deg, #f0d78b 0%, #c99b51 100%);
  color: #06090c;
  box-shadow: 0 14px 28px rgba(201, 155, 81, 0.22);
}

.pro-store .terms {
  color: rgba(220, 229, 223, 0.58);
}

.pro-store .payment-card,
.pro-store .order-item,
.pro-store .support-card,
.pro-store .account-code-card {
  border-color: rgba(222, 232, 226, 0.105);
  background: rgba(6, 11, 15, 0.60);
}

.pro-store .service-grid {
  width: min(1080px, 100%);
  margin: 24px auto 0;
}

.pro-store .info-panel {
  position: relative;
  overflow: hidden;
  padding: 30px;
}

.pro-store .info-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(98, 200, 168, 0.92), rgba(228, 199, 120, 0.70), transparent);
}

.pro-store .info-panel .section-head > span,
.pro-store .status {
  display: inline-grid;
  place-items: center;
  min-height: 30px;
  border: 1px solid rgba(98, 200, 168, 0.24);
  border-radius: 999px;
  background: rgba(98, 200, 168, 0.08);
  color: #8be0c7;
  padding: 0 11px;
  font-size: 12px;
  font-weight: 950;
}

.pro-store .account-trust-row span {
  border-color: rgba(98, 200, 168, 0.18);
  background: rgba(98, 200, 168, 0.07);
  color: rgba(220, 229, 223, 0.78);
}

@media (max-width: 860px) {
  .pro-store .global-header,
  .pro-store .global-main {
    width: min(100% - 28px, 1480px);
  }
}

@media (max-width: 640px) {
  .pro-store {
    background: linear-gradient(180deg, #070b0e 0%, #05080a 100%);
  }

  .pro-store::before {
    background-size: 42px 42px;
  }

  .pro-store .global-header,
  .pro-store .global-main {
    width: 100%;
  }

  .pro-store .global-header {
    padding: 12px 14px;
  }

  .pro-store .brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 15px;
  }

  .pro-store .brand-copy strong {
    font-size: 23px;
  }

  .pro-store .global-header nav a {
    min-width: auto;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 10px;
  }

  .pro-store .signal-strip {
    margin: 0 14px 12px;
  }

  .pro-store .global-main {
    padding: 10px 14px 34px;
  }

  .pro-store .market-panel,
  .pro-store .checkout-panel,
  .pro-store .info-panel {
    border-radius: 18px;
    padding: 14px;
    box-shadow: none;
  }

  .pro-store .service-grid {
    width: 100%;
    margin-top: 12px;
  }

  .pro-store .info-panel {
    padding: 18px;
  }

  .pro-store .hero-panel {
    padding: 16px;
    border-radius: 16px;
  }

  .pro-store h1 {
    font-size: 31px;
  }

  .pro-store .hero-panel p:not(.pill) {
    font-size: 13px;
    line-height: 1.55;
  }

  .pro-store .category-tile {
    flex-basis: 158px;
  }

  .pro-store .product-card {
    min-height: 108px;
    border-radius: 15px;
  }

  .pro-store .product-copy h3 {
    font-size: 15px;
  }

  .pro-store .selected-product h2 {
    font-size: 27px;
  }

  .pro-store .selected-meta-grid span {
    padding: 10px;
    font-size: 13px;
  }

  .pro-store .mobile-buy-bar {
    min-height: 74px;
    border-color: rgba(222, 232, 226, 0.14);
    background: rgba(8, 13, 17, 0.97);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
    backdrop-filter: none;
  }
}

/* Premium density pass */
.pro-store {
  --bg: #050708;
  --panel: #0a0f13;
  --panel-2: #0e151a;
  --line: rgba(217, 226, 222, 0.095);
  --line-soft: rgba(217, 226, 222, 0.065);
  --muted: #7f8d88;
  --soft: #dbe4de;
  --gold: #d9bd72;
  --green: #5ec4a3;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.30);
  background:
    radial-gradient(circle at 16% 0%, rgba(94, 196, 163, 0.08), transparent 32%),
    radial-gradient(circle at 92% 4%, rgba(217, 189, 114, 0.075), transparent 30%),
    linear-gradient(180deg, #070a0c 0%, #050708 100%);
}

.pro-store::before {
  opacity: 0.34;
  background-size: 96px 96px;
}

.pro-store .global-header,
.pro-store .global-main {
  width: min(1440px, calc(100% - 56px));
}

.pro-store .global-header {
  padding: 12px 0;
  background: rgba(5, 7, 8, 0.88);
  box-shadow: none;
}

.pro-store .brand {
  gap: 12px;
  min-width: 230px;
}

.pro-store .brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 24px rgba(0, 0, 0, 0.26);
}

.pro-store .brand-copy strong {
  font-size: 24px;
  line-height: 1;
}

.pro-store .brand-copy small {
  margin-top: 5px;
  font-size: 12px;
}

.pro-store .global-header nav {
  gap: 7px;
  padding: 4px;
  border: 1px solid rgba(217, 226, 222, 0.09);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.025);
}

.pro-store .global-header nav a {
  min-width: 82px;
  min-height: 38px;
  border-color: transparent;
  border-radius: 11px;
  background: transparent;
  color: rgba(247, 248, 243, 0.72);
  font-size: 14px;
}

.pro-store .global-header nav a:hover,
.pro-store .global-header nav a.active-view-link {
  border-color: rgba(217, 189, 114, 0.36);
  background:
    linear-gradient(180deg, rgba(217, 189, 114, 0.18), rgba(217, 189, 114, 0.10)),
    rgba(255, 255, 255, 0.035);
  color: #f7f2df;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pro-store .global-main {
  padding-top: 12px;
}

.pro-store .signal-strip {
  min-height: 42px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.022);
}

.pro-store .signal-strip span {
  min-height: 42px;
  color: rgba(219, 228, 222, 0.72);
  font-size: 12px;
}

.pro-store .store-grid {
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 18px;
}

.pro-store .market-panel,
.pro-store .checkout-panel,
.pro-store .info-panel {
  border-color: rgba(217, 226, 222, 0.09);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(12, 18, 22, 0.82), rgba(7, 11, 14, 0.86)),
    rgba(7, 11, 14, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 18px 48px rgba(0, 0, 0, 0.28);
}

.pro-store .market-panel {
  padding: 18px;
}

.pro-store .hero-panel {
  min-height: 174px;
  padding: 18px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 14% 0%, rgba(94, 196, 163, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(12, 24, 22, 0.86), rgba(7, 11, 14, 0.96));
}

.pro-store h1 {
  max-width: 660px;
  font-size: clamp(32px, 3.8vw, 52px);
  letter-spacing: 0;
}

.pro-store .hero-panel p:not(.pill) {
  max-width: 600px;
  font-size: 14px;
}

.pro-store .hero-stats > span {
  min-height: 54px;
  padding: 10px 12px;
  border-radius: 12px;
}

.pro-store .hero-stats > span strong {
  font-size: 22px;
}

.pro-store .hero-proof {
  min-height: 74px;
  padding: 12px;
  border-radius: 12px;
}

.pro-store .search-box {
  margin: 14px 0 18px;
}

.pro-store .search-box > span {
  display: none;
}

.pro-store .search-box input {
  min-height: 50px;
  border-radius: 14px;
  padding: 0 18px;
  background: rgba(2, 5, 7, 0.72);
}

.pro-store .catalog-section + .catalog-section {
  margin-top: 22px;
}

.pro-store .section-head {
  align-items: center;
  margin-bottom: 12px;
}

.pro-store .section-head h2 {
  font-size: 22px;
}

.pro-store .section-head > span {
  max-width: 360px;
  color: rgba(219, 228, 222, 0.42);
  font-size: 13px;
}

.pro-store .category-grid {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 9px;
}

.pro-store .category-tile {
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 11px;
  min-height: 78px;
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(5, 9, 12, 0.62);
}

.pro-store .category-tile:hover,
.pro-store .category-tile.active {
  border-color: rgba(94, 196, 163, 0.42);
  background:
    linear-gradient(90deg, rgba(94, 196, 163, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(5, 9, 12, 0.72);
}

.pro-store .category-tile .app-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

.pro-store .category-tile .app-badge svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.75;
}

.pro-store .category-tile .app-badge .badge-text {
  font-size: 15px;
}

.pro-store .app-badge::after {
  right: 10px;
  bottom: 7px;
  left: 10px;
  opacity: 0.72;
}

.pro-store .category-copy strong {
  font-size: 15px;
  line-height: 1.18;
}

.pro-store .category-copy small {
  margin-top: 5px;
  color: rgba(219, 228, 222, 0.56);
  font-size: 12px;
}

.pro-store .checkout-panel {
  top: 78px;
  padding: 18px;
}

.pro-store .checkout-rail {
  gap: 7px;
  margin-bottom: 15px;
}

.pro-store .checkout-rail span {
  min-height: 50px;
  border-radius: 12px;
  padding: 9px;
  color: rgba(219, 228, 222, 0.54);
  font-size: 11px;
}

.pro-store .selected-product {
  min-height: 0;
}

.pro-store .selected-product h2 {
  font-size: 26px;
  line-height: 1.12;
}

.pro-store .selected-product .price,
.pro-store .price {
  font-size: 34px;
  letter-spacing: 0;
}

.pro-store .tag-row span,
.pro-store .product-tags span,
.pro-store .stock-pill,
.pro-store .select-pill {
  min-height: 26px;
  font-size: 11px;
}

.pro-store .selected-meta-grid {
  gap: 8px;
}

.pro-store .selected-meta-grid span {
  border-radius: 12px;
  padding: 10px 12px;
}

.pro-store .detail-list {
  margin-top: 14px;
}

.pro-store .detail-list li {
  font-size: 13px;
  color: rgba(219, 228, 222, 0.54);
}

.pro-store .selected-assurance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin-top: 14px;
}

.pro-store .selected-assurance span {
  display: grid;
  place-items: center;
  min-height: 34px;
  border: 1px solid rgba(217, 226, 222, 0.085);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(219, 228, 222, 0.62);
  padding: 0 8px;
  font-size: 11px;
  font-weight: 850;
  text-align: center;
}

.pro-store .account-actions {
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 9px;
}

.pro-store .account-trust-row {
  gap: 8px;
  margin-top: 12px;
}

.pro-store .account-trust-row span {
  min-height: 34px;
  border-color: rgba(217, 226, 222, 0.08);
  background: rgba(255, 255, 255, 0.025);
  color: rgba(219, 228, 222, 0.62);
  font-size: 11px;
}

.pro-store .account-code-card {
  align-items: stretch;
  border-color: rgba(217, 189, 114, 0.20);
  border-radius: 15px;
  background:
    radial-gradient(circle at 100% 0%, rgba(217, 189, 114, 0.10), transparent 34%),
    rgba(5, 9, 12, 0.70);
  padding: 16px;
}

.pro-store .account-code-card strong {
  font-size: 30px;
  letter-spacing: 1.5px;
}

.pro-store .account-code-card span {
  color: rgba(219, 228, 222, 0.52);
  font-size: 12px;
}

.pro-store .account-code-card button {
  align-self: center;
  min-height: 38px;
  border-color: rgba(217, 189, 114, 0.28);
  background: rgba(217, 189, 114, 0.08);
}

.pro-store .account-next {
  gap: 8px;
  margin-top: 12px;
}

.pro-store .account-next span {
  min-height: 62px;
  border-color: rgba(94, 196, 163, 0.12);
  border-radius: 12px;
  background: rgba(94, 196, 163, 0.045);
  color: rgba(219, 228, 222, 0.58);
  font-size: 12px;
}

.pro-store .account-next b {
  width: auto;
  height: auto;
  background: transparent;
  color: rgba(217, 189, 114, 0.88);
  font-size: 11px;
}

.pro-store .account-mini-actions a {
  min-height: 38px;
  border-color: rgba(217, 226, 222, 0.09);
  background: rgba(255, 255, 255, 0.025);
  font-size: 13px;
}

.pro-store .field-row {
  margin: 16px 0 12px;
}

.pro-store .checkout-total-card {
  border-radius: 14px;
  padding: 13px;
}

.pro-store .checkout-total-card strong {
  font-size: 32px;
}

.pro-store .product-list {
  gap: 9px;
}

.pro-store .product-card {
  grid-template-columns: 52px minmax(0, 1fr) 116px;
  gap: 12px;
  min-height: 96px;
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(4, 8, 11, 0.58);
}

.pro-store .product-card::before {
  inset: 12px auto 12px 0;
  width: 2px;
}

.pro-store .product-card .app-badge {
  width: 52px;
  height: 52px;
  border-radius: 13px;
}

.pro-store .product-card .app-badge svg {
  width: 27px;
  height: 27px;
}

.pro-store .product-card .app-badge .badge-text {
  font-size: 16px;
}

.pro-store .product-copy h3 {
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 1.2;
}

.pro-store .product-kicker {
  margin-bottom: 4px;
  color: rgba(217, 189, 114, 0.82);
  font-size: 10px;
  letter-spacing: 0;
}

.pro-store .product-copy p {
  color: rgba(219, 228, 222, 0.46);
  font-size: 12px;
  line-height: 1.35;
}

.pro-store .product-tags {
  gap: 5px;
  margin-top: 8px;
}

.pro-store .product-tags span {
  min-height: 23px;
  padding: 0 8px;
  border-color: rgba(94, 196, 163, 0.16);
  color: rgba(210, 248, 237, 0.76);
}

.pro-store .product-side {
  min-width: 0;
  gap: 7px;
}

.pro-store .product-side .price {
  font-size: 22px;
  line-height: 1;
}

.pro-store .stock-pill,
.pro-store .select-pill {
  min-height: 24px;
  padding: 0 9px;
}

@media (max-width: 1180px) {
  .pro-store .store-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .pro-store .global-header,
  .pro-store .global-main {
    width: min(100% - 28px, 1440px);
  }

  .pro-store .global-header {
    align-items: stretch;
  }

  .pro-store .global-header nav {
    overflow-x: auto;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .pro-store .global-header,
  .pro-store .global-main {
    width: 100%;
  }

  .pro-store .global-header {
    padding: 12px 14px;
  }

  .pro-store .global-main {
    padding: 10px 12px 34px;
  }

  .pro-store .market-panel,
  .pro-store .checkout-panel,
  .pro-store .info-panel {
    border-radius: 16px;
    padding: 13px;
  }

  .pro-store .hero-panel {
    padding: 15px;
  }

  .pro-store h1 {
    font-size: 29px;
  }

  .pro-store .category-grid {
    display: flex;
    overflow-x: auto;
    gap: 9px;
  }

  .pro-store .category-tile {
    flex: 0 0 152px;
    min-height: 72px;
  }

  .pro-store .product-card {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 11px;
    min-height: 0;
    padding: 12px;
  }

  .pro-store .product-card .app-badge {
    width: 48px;
    height: 48px;
  }

  .pro-store .product-side {
    grid-column: 1 / -1;
    grid-template-columns: auto 1fr auto;
    width: 100%;
    padding-top: 9px;
    border-top: 1px solid rgba(217, 226, 222, 0.07);
  }

  .pro-store .product-side .price {
    font-size: 20px;
  }

  .pro-store .selected-assurance {
    grid-template-columns: 1fr;
  }

  .pro-store .selected-buy-action {
    min-height: 54px;
    margin-top: 12px;
  }

  .pro-store .account-actions,
  .pro-store .account-trust-row,
  .pro-store .account-next {
    grid-template-columns: 1fr;
  }
}

/* Executive luxury pass */
.pro-store {
  --bg: #050607;
  --ink: #f6f3ea;
  --soft: #d8d5ca;
  --muted: #8e968f;
  --gold: #d8bf7a;
  --gold-2: #a77d3d;
  --green: #68b69d;
  --panel-glass: rgba(9, 13, 15, 0.86);
  --panel-deep: rgba(5, 8, 10, 0.92);
  --line: rgba(231, 226, 210, 0.105);
  --line-soft: rgba(231, 226, 210, 0.07);
  background:
    linear-gradient(180deg, rgba(15, 21, 24, 0.96), rgba(5, 6, 7, 1) 38%),
    #050607;
  color: var(--ink);
}

.pro-store::before {
  opacity: 0.18;
}

.pro-store .global-header,
.pro-store .global-main {
  width: min(1360px, calc(100% - 64px));
}

.pro-store .global-header {
  padding: 18px 0 16px;
  border-bottom-color: rgba(231, 226, 210, 0.10);
  background:
    linear-gradient(180deg, rgba(5, 6, 7, 0.92), rgba(5, 6, 7, 0.78));
}

.pro-store .brand-mark {
  position: relative;
  overflow: hidden;
  width: 50px;
  height: 50px;
  border-color: rgba(216, 191, 122, 0.34);
  border-radius: 15px;
  background:
    radial-gradient(circle at 50% 50%, rgba(104, 182, 157, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(216, 191, 122, 0.13), rgba(11, 17, 19, 0.98) 56%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.025),
    0 18px 32px rgba(0, 0, 0, 0.32);
}

.pro-store .brand-mark::before {
  left: 12px;
  top: 12px;
  width: 26px;
  height: 26px;
  border: 2px solid rgba(216, 191, 122, 0.86);
  border-radius: 12px 12px 5px 12px;
  transform: rotate(-38deg);
}

.pro-store .brand-mark::after {
  left: 18px;
  top: 18px;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(104, 182, 157, 0.88);
  background: rgba(104, 182, 157, 0.14);
  box-shadow: 0 0 22px rgba(104, 182, 157, 0.22);
}

.pro-store .brand-copy strong {
  color: #f6f3ea;
  font-size: 25px;
  font-weight: 920;
}

.pro-store .brand-copy small {
  color: rgba(216, 213, 202, 0.56);
  font-size: 12px;
}

.pro-store .global-header nav {
  gap: 3px;
  padding: 5px;
  border-color: rgba(231, 226, 210, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.026);
}

.pro-store .global-header nav a {
  min-width: 86px;
  min-height: 40px;
  border-radius: 13px;
  color: rgba(246, 243, 234, 0.62);
  font-size: 13px;
  font-weight: 860;
}

.pro-store .global-header nav a:hover,
.pro-store .global-header nav a.active-view-link {
  border-color: rgba(216, 191, 122, 0.25);
  background:
    linear-gradient(180deg, rgba(216, 191, 122, 0.16), rgba(216, 191, 122, 0.07)),
    rgba(255, 255, 255, 0.035);
  color: #f8efd0;
  box-shadow: none;
}

.pro-store .signal-strip {
  overflow: visible;
  gap: 10px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.pro-store .signal-strip span {
  min-height: 40px;
  border: 1px solid rgba(231, 226, 210, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.022);
  color: rgba(216, 213, 202, 0.66);
  font-size: 12px;
  font-weight: 780;
}

.pro-store .store-grid {
  grid-template-columns: minmax(0, 1fr) 396px;
  gap: 22px;
}

.pro-store .market-panel,
.pro-store .checkout-panel,
.pro-store .info-panel {
  border-color: rgba(231, 226, 210, 0.085);
  border-radius: 24px;
  background:
    radial-gradient(circle at 0% 0%, rgba(104, 182, 157, 0.055), transparent 30%),
    linear-gradient(180deg, rgba(12, 18, 21, 0.88), rgba(6, 9, 11, 0.92)),
    var(--panel-glass);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 30px 80px rgba(0, 0, 0, 0.28);
}

.pro-store .market-panel {
  padding: 22px;
}

.pro-store .hero-panel {
  min-height: 160px;
  border-color: rgba(231, 226, 210, 0.09);
  border-radius: 22px;
  background:
    radial-gradient(circle at 16% 18%, rgba(104, 182, 157, 0.16), transparent 36%),
    linear-gradient(135deg, rgba(15, 24, 25, 0.92), rgba(6, 9, 11, 0.98));
}

.pro-store .pill,
.pro-store .eyebrow {
  color: rgba(216, 191, 122, 0.86);
  font-size: 11px;
  font-weight: 880;
}

.pro-store .pill {
  border-color: rgba(216, 191, 122, 0.18);
  background: rgba(216, 191, 122, 0.055);
}

.pro-store h1 {
  max-width: 620px;
  color: #f7f4eb;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 880;
}

.pro-store .hero-panel p:not(.pill) {
  color: rgba(216, 213, 202, 0.64);
  font-size: 14px;
}

.pro-store .hero-stats > span,
.pro-store .hero-proof {
  border-color: rgba(231, 226, 210, 0.075);
  background: rgba(255, 255, 255, 0.024);
}

.pro-store .hero-stats > span strong,
.pro-store .hero-proof strong,
.pro-store .checkout-total-card strong,
.pro-store .price {
  color: var(--gold);
  text-shadow: none;
}

.pro-store .search-box input {
  min-height: 52px;
  border-color: rgba(231, 226, 210, 0.09);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.012)),
    rgba(2, 4, 5, 0.72);
  color: #f6f3ea;
}

.pro-store .section-head h2 {
  color: #f7f4eb;
  font-size: 24px;
  font-weight: 880;
}

.pro-store .section-head > span {
  color: rgba(216, 213, 202, 0.42);
  font-weight: 740;
}

.pro-store .category-grid {
  grid-template-columns: repeat(auto-fit, minmax(204px, 1fr));
  gap: 10px;
}

.pro-store .category-tile {
  grid-template-columns: 42px minmax(0, 1fr);
  min-height: 82px;
  border-color: rgba(231, 226, 210, 0.075);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.024), rgba(255, 255, 255, 0.008)),
    rgba(4, 7, 9, 0.62);
  box-shadow: none;
}

.pro-store .category-tile:hover,
.pro-store .category-tile.active {
  border-color: rgba(216, 191, 122, 0.35);
  background:
    linear-gradient(135deg, rgba(216, 191, 122, 0.08), rgba(104, 182, 157, 0.04)),
    rgba(4, 7, 9, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 18px 46px rgba(0, 0, 0, 0.18);
}

.pro-store .app-badge {
  width: 44px;
  height: 44px;
  border-color: color-mix(in srgb, var(--icon-border, rgba(216, 191, 122, 0.28)) 54%, rgba(231, 226, 210, 0.13));
  border-radius: 14px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.11), transparent 30%),
    linear-gradient(145deg, rgba(23, 30, 33, 0.94), rgba(6, 9, 11, 0.98));
  color: color-mix(in srgb, var(--icon-c, #f6f3ea) 78%, #f6f3ea);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    inset 0 -10px 18px rgba(0, 0, 0, 0.20);
}

.pro-store .app-badge::after {
  display: none;
}

.pro-store .app-badge svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.65;
}

.pro-store .app-badge .badge-text {
  color: currentColor;
  font-size: 14px;
  font-weight: 900;
}

.pro-store .category-copy strong {
  color: rgba(246, 243, 234, 0.92);
  font-size: 15px;
  font-weight: 850;
}

.pro-store .category-copy small {
  color: rgba(216, 213, 202, 0.48);
  font-size: 12px;
  font-weight: 740;
}

.pro-store .product-list {
  gap: 10px;
}

.pro-store .product-card {
  grid-template-columns: 50px minmax(0, 1fr) 110px;
  min-height: 92px;
  border-color: rgba(231, 226, 210, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.023), rgba(255, 255, 255, 0.006)),
    rgba(4, 7, 9, 0.62);
  box-shadow: none;
}

.pro-store .product-card::before {
  display: none;
}

.pro-store .product-card:hover,
.pro-store .product-card.active {
  border-color: rgba(104, 182, 157, 0.34);
  background:
    linear-gradient(135deg, rgba(104, 182, 157, 0.070), rgba(216, 191, 122, 0.035)),
    rgba(4, 7, 9, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 20px 48px rgba(0, 0, 0, 0.18);
}

.pro-store .product-card .app-badge {
  width: 50px;
  height: 50px;
  border-radius: 15px;
}

.pro-store .product-copy h3 {
  color: rgba(246, 243, 234, 0.94);
  font-size: 16px;
  font-weight: 860;
}

.pro-store .product-kicker {
  color: rgba(216, 191, 122, 0.64);
  font-weight: 800;
}

.pro-store .product-copy p {
  color: rgba(216, 213, 202, 0.43);
}

.pro-store .product-tags span,
.pro-store .tag-row span,
.pro-store .stock-pill,
.pro-store .select-pill {
  min-height: 24px;
  border-color: rgba(231, 226, 210, 0.09);
  background: rgba(255, 255, 255, 0.025);
  color: rgba(216, 213, 202, 0.62);
  font-weight: 780;
}

.pro-store .stock-pill {
  color: rgba(116, 206, 176, 0.86);
}

.pro-store .select-pill {
  color: rgba(216, 191, 122, 0.82);
}

.pro-store .product-side .price {
  color: var(--gold);
  font-size: 21px;
  font-weight: 860;
}

.pro-store .checkout-panel {
  top: 88px;
  padding: 22px;
  border-color: rgba(216, 191, 122, 0.14);
}

.pro-store .checkout-rail {
  padding: 4px;
  border: 1px solid rgba(231, 226, 210, 0.07);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.018);
}

.pro-store .checkout-rail span {
  min-height: 46px;
  border: 0;
  background: transparent;
  color: rgba(216, 213, 202, 0.48);
}

.pro-store .checkout-rail .active {
  border: 1px solid rgba(216, 191, 122, 0.18);
  background: rgba(216, 191, 122, 0.07);
  color: rgba(246, 243, 234, 0.78);
}

.pro-store .selected-product h2 {
  color: #f7f4eb;
  font-size: 29px;
  font-weight: 880;
}

.pro-store .selected-product .hint,
.pro-store .detail-list li,
.pro-store .terms,
.pro-store .checkout-total-card small {
  color: rgba(216, 213, 202, 0.52);
}

.pro-store .selected-meta-grid span,
.pro-store .selected-assurance span,
.pro-store .checkout-promises span,
.pro-store .payment-progress span,
.pro-store .payment-summary span,
.pro-store .orders-guide span,
.pro-store .account-next span,
.pro-store .account-trust-row span {
  border-color: rgba(231, 226, 210, 0.075);
  background: rgba(255, 255, 255, 0.020);
  color: rgba(216, 213, 202, 0.58);
}

.pro-store .selected-meta-grid b,
.pro-store .account-next b,
.pro-store .checkout-rail b {
  color: rgba(216, 191, 122, 0.84);
}

.pro-store .field-row input,
.pro-store .field-row select,
.pro-store .account-actions input {
  border-color: rgba(231, 226, 210, 0.09);
  border-radius: 14px;
  background: rgba(2, 4, 5, 0.74);
}

.pro-store .checkout-total-card {
  border-color: rgba(216, 191, 122, 0.18);
  background:
    radial-gradient(circle at 100% 0%, rgba(216, 191, 122, 0.10), transparent 38%),
    rgba(255, 255, 255, 0.018);
}

.pro-store .primary-action,
.pro-store .checkout-link,
.pro-store .mobile-buy-bar button,
.pro-store .selected-buy-action {
  border: 1px solid rgba(246, 226, 166, 0.22);
  background:
    linear-gradient(180deg, #e5ca82 0%, #b98d48 100%);
  color: #050607;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.20),
    0 16px 34px rgba(185, 141, 72, 0.18);
}

.pro-store .selected-buy-action {
  min-height: 56px;
  margin-top: 14px;
  border-radius: 15px;
}

.pro-store .account-actions button,
.pro-store .section-head button,
.pro-store .account-mini-actions a,
.pro-store .inline-action {
  border-color: rgba(231, 226, 210, 0.09);
  background: rgba(255, 255, 255, 0.025);
  color: rgba(246, 243, 234, 0.72);
}

.pro-store .payment-card,
.pro-store .order-item,
.pro-store .support-card,
.pro-store .account-code-card {
  border-color: rgba(231, 226, 210, 0.085);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.024), rgba(255, 255, 255, 0.006)),
    rgba(4, 7, 9, 0.70);
}

.pro-store .support-panel p {
  max-width: 680px;
  color: rgba(216, 213, 202, 0.58);
}

.pro-store .support-steps span {
  border-color: rgba(231, 226, 210, 0.075);
  background: rgba(255, 255, 255, 0.020);
  color: rgba(216, 213, 202, 0.60);
}

.pro-store .support-steps b {
  background: rgba(216, 191, 122, 0.10);
  color: rgba(216, 191, 122, 0.90);
}

@media (max-width: 1180px) {
  .pro-store .store-grid {
    grid-template-columns: 1fr;
  }

  .pro-store .checkout-panel {
    position: static;
  }
}

@media (max-width: 860px) {
  .pro-store .global-header,
  .pro-store .global-main {
    width: min(100% - 28px, 1360px);
  }

  .pro-store .signal-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .pro-store .global-header,
  .pro-store .global-main {
    width: 100%;
  }

  .pro-store .global-header {
    gap: 12px;
    padding: 12px;
  }

  .pro-store .global-header nav {
    border-radius: 14px;
  }

  .pro-store .global-header nav a {
    min-width: 72px;
  }

  .pro-store .global-main {
    padding: 10px 10px 92px;
  }

  .pro-store .signal-strip {
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    margin: 0 0 12px;
  }

  .pro-store .signal-strip span {
    min-height: 34px;
    padding: 0 9px;
    font-size: 11px;
  }

  .pro-store .market-panel,
  .pro-store .checkout-panel,
  .pro-store .info-panel {
    border-radius: 20px;
    padding: 14px;
  }

  .pro-store .hero-panel {
    min-height: auto;
    padding: 16px;
  }

  .pro-store h1 {
    font-size: 28px;
  }

  .pro-store .section-head {
    align-items: flex-start;
  }

  .pro-store .section-head > span {
    display: none;
  }

  .pro-store .category-grid {
    display: flex;
    gap: 9px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
  }

  .pro-store .category-tile {
    flex: 0 0 164px;
    scroll-snap-align: start;
  }

  .pro-store .product-card {
    grid-template-columns: 48px minmax(0, 1fr);
    border-radius: 18px;
    padding: 12px;
  }

  .pro-store .product-side {
    grid-column: 1 / -1;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    width: 100%;
  }

  .pro-store .product-tags {
    display: none;
  }

  .pro-store .mobile-buy-bar {
    right: 10px;
    bottom: 10px;
    left: 10px;
    border-color: rgba(231, 226, 210, 0.12);
    border-radius: 18px;
    background: rgba(6, 9, 11, 0.96);
  }
}

/* Buyer checkout modal */
.purchase-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
  touch-action: none;
}

.purchase-modal.hidden {
  display: none;
}

.purchase-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}

.purchase-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(104, 182, 157, 0.14), transparent 36%),
    rgba(0, 0, 0, 0.66);
  backdrop-filter: blur(18px);
}

.purchase-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 15px;
  width: min(560px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  overflow: auto;
  overscroll-behavior: contain;
  touch-action: pan-y;
  border: 1px solid rgba(231, 226, 210, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 0%, rgba(216, 191, 122, 0.10), transparent 34%),
    linear-gradient(180deg, rgba(14, 20, 23, 0.98), rgba(5, 8, 10, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 42px 110px rgba(0, 0, 0, 0.52);
  padding: 24px;
}

.purchase-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(231, 226, 210, 0.10);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(246, 243, 234, 0.68);
  font-size: 22px;
  line-height: 1;
}

.purchase-head {
  padding-right: 34px;
}

.purchase-head h2 {
  margin: 0 0 8px;
  color: #f7f4eb;
  font-size: 28px;
  font-weight: 880;
}

.purchase-head p:not(.eyebrow) {
  margin: 0;
  color: rgba(216, 213, 202, 0.58);
  line-height: 1.55;
}

.purchase-product,
.purchase-access,
.crypto-help,
.purchase-footer {
  border: 1px solid rgba(231, 226, 210, 0.085);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.024), rgba(255, 255, 255, 0.006)),
    rgba(3, 6, 8, 0.58);
}

.purchase-product {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  padding: 14px;
}

.purchase-product strong,
.purchase-access strong,
.purchase-footer strong {
  color: #f7f4eb;
}

.purchase-product strong {
  display: block;
  overflow: hidden;
  font-size: 16px;
  font-weight: 860;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.purchase-product small {
  display: block;
  overflow: hidden;
  margin-top: 5px;
  color: rgba(216, 213, 202, 0.48);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.purchase-product b {
  color: var(--gold);
  font-size: 22px;
}

.purchase-access {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.purchase-access.needs-access {
  border-color: rgba(240, 215, 139, 0.55);
  background:
    radial-gradient(circle at 100% 0%, rgba(240, 215, 139, 0.12), transparent 35%),
    rgba(3, 6, 8, 0.72);
  box-shadow:
    0 0 0 1px rgba(240, 215, 139, 0.22),
    0 16px 38px rgba(240, 215, 139, 0.10);
  animation: termsReminder 0.42s ease 0s 2;
}

.purchase-access.needs-access input {
  border-color: rgba(240, 215, 139, 0.64);
  box-shadow: 0 0 0 3px rgba(240, 215, 139, 0.11);
}

.purchase-access.access-ready {
  border-color: rgba(104, 182, 157, 0.46);
  background:
    radial-gradient(circle at 100% 0%, rgba(104, 182, 157, 0.14), transparent 34%),
    rgba(5, 13, 14, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 14px 34px rgba(104, 182, 157, 0.08);
}

.purchase-access.access-ready::after {
  content: "Ready to checkout";
  display: inline-flex;
  width: fit-content;
  padding: 4px 10px;
  border: 1px solid rgba(104, 182, 157, 0.42);
  border-radius: 999px;
  background: rgba(104, 182, 157, 0.12);
  color: #9be7d0;
  font-size: 11px;
  font-weight: 900;
}

.purchase-access.access-ready input {
  border-color: rgba(104, 182, 157, 0.34);
  background: rgba(3, 8, 10, 0.78);
  color: #f6f3ea;
}

.purchase-access-actions button:disabled {
  cursor: default;
  opacity: 0.58;
}

.purchase-access.access-ready .purchase-access-actions button[data-action="copy-code"] {
  border-color: rgba(104, 182, 157, 0.42);
  background:
    linear-gradient(180deg, rgba(104, 182, 157, 0.18), rgba(104, 182, 157, 0.08));
  color: #aef0dc;
  opacity: 1;
}

.account-actions.needs-access {
  padding: 10px;
  border: 1px solid rgba(240, 215, 139, 0.46);
  border-radius: 15px;
  background: rgba(240, 215, 139, 0.07);
  box-shadow: 0 14px 32px rgba(240, 215, 139, 0.09);
  animation: termsReminder 0.42s ease 0s 2;
}

.account-actions.needs-access input {
  border-color: rgba(240, 215, 139, 0.64);
  box-shadow: 0 0 0 3px rgba(240, 215, 139, 0.11);
}

.purchase-access > div:first-child,
.purchase-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.purchase-access span,
.purchase-footer span {
  display: block;
  color: rgba(216, 213, 202, 0.48);
  font-size: 12px;
  font-weight: 800;
}

.purchase-access strong {
  display: block;
  margin-top: 3px;
  color: rgba(104, 182, 157, 0.92);
  font-size: 14px;
}

.purchase-access-actions,
.purchase-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 9px;
}

.purchase-access-actions input,
.purchase-fields input,
.purchase-fields select {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(231, 226, 210, 0.09);
  border-radius: 13px;
  background: rgba(2, 4, 5, 0.74);
  color: #f6f3ea;
  padding: 0 12px;
  outline: none;
}

.purchase-access-actions button {
  min-height: 44px;
  border: 1px solid rgba(231, 226, 210, 0.10);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.028);
  color: rgba(246, 243, 234, 0.76);
  padding: 0 13px;
  font-weight: 840;
}

.purchase-fields {
  grid-template-columns: 0.75fr 1.25fr;
}

.purchase-fields label {
  display: grid;
  gap: 8px;
  color: rgba(216, 213, 202, 0.50);
  font-size: 12px;
  font-weight: 820;
}

.crypto-help {
  padding: 14px;
}

.crypto-help strong {
  display: block;
  margin-bottom: 5px;
  color: rgba(216, 191, 122, 0.92);
  font-size: 14px;
}

.crypto-help p {
  margin: 0;
  color: rgba(216, 213, 202, 0.58);
  font-size: 13px;
  line-height: 1.5;
}

.purchase-terms {
  margin: 0;
}

.purchase-footer {
  position: sticky;
  bottom: -24px;
  z-index: 2;
  margin: 0 -24px -24px;
  padding: 14px 24px 20px;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  border-radius: 0 0 24px 24px;
  background:
    linear-gradient(180deg, rgba(10, 15, 17, 0.72), rgba(5, 8, 10, 0.98) 45%),
    rgba(5, 8, 10, 0.98);
  backdrop-filter: blur(18px);
  box-shadow: 0 -18px 34px rgba(0, 0, 0, 0.22);
}

.purchase-footer strong {
  display: block;
  margin-top: 3px;
  color: var(--gold);
  font-size: 28px;
}

.purchase-footer .primary-action {
  width: auto;
  min-width: 180px;
  margin: 0;
}

@media (max-width: 640px) {
  .purchase-modal {
    align-items: end;
    padding: 10px;
  }

  .purchase-card {
    max-height: calc(100vh - 20px);
    border-radius: 22px;
    padding: 18px;
  }

  .purchase-head h2 {
    font-size: 24px;
  }

  .purchase-product {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .purchase-product b {
    grid-column: 1 / -1;
    font-size: 24px;
  }

  .purchase-access-actions,
  .purchase-fields,
  .purchase-footer {
    grid-template-columns: 1fr;
  }

  .purchase-access > div:first-child,
  .purchase-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .purchase-footer {
    bottom: -18px;
    margin: 0 -18px -18px;
    padding: 13px 18px 18px;
    border-radius: 0 0 22px 22px;
  }

  .purchase-footer .primary-action {
    width: 100%;
  }
}

/* Mobile storefront polish and desktop mobile-preview mode */
html.mobile-preview {
  min-height: 100%;
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 191, 122, 0.10), transparent 34%),
    #030506;
}

html.mobile-preview body.force-mobile {
  overflow-x: hidden;
  width: 100%;
  max-width: 430px;
  min-height: 100vh;
  margin: 0 auto;
  border-right: 1px solid rgba(231, 226, 210, 0.08);
  border-left: 1px solid rgba(231, 226, 210, 0.08);
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.50);
}

.pro-store.force-mobile .global-header,
.pro-store.force-mobile .global-main {
  width: 100%;
  max-width: 100%;
}

.pro-store.force-mobile .global-header {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 12px 12px 10px;
}

@media (max-width: 640px) {
  .pro-store .global-header {
    position: sticky;
    top: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px 12px 10px;
  }
}

.pro-store.force-mobile .brand {
  min-width: 0;
}

.pro-store.force-mobile .brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 13px;
}

.pro-store.force-mobile .brand-copy strong {
  font-size: 22px;
}

.pro-store.force-mobile .brand-copy small {
  font-size: 12px;
}

.pro-store.force-mobile .global-header nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  overflow: visible;
  padding: 2px 0 4px;
  border: 0;
  border-radius: 0;
  background: transparent;
  scrollbar-width: none;
}

.pro-store.force-mobile .global-header nav::-webkit-scrollbar {
  display: none;
}

.pro-store.force-mobile .global-header nav a {
  min-width: auto;
  min-height: 36px;
  padding: 0 6px;
  border-radius: 14px;
  font-size: 12px;
  letter-spacing: 0;
}

.pro-store.force-mobile .global-main {
  padding: 9px 10px 98px;
}

.pro-store.force-mobile .signal-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  overflow: visible;
  margin: 0 0 12px;
  scrollbar-width: none;
}

.pro-store.force-mobile .signal-strip::-webkit-scrollbar {
  display: none;
}

.pro-store.force-mobile .signal-strip span {
  min-width: 0;
  min-height: 34px;
  padding: 0 10px;
  font-size: 11px;
  white-space: nowrap;
}

.pro-store.force-mobile .store-grid {
  grid-template-columns: 1fr;
}

.pro-store.force-mobile .checkout-panel {
  display: none;
}

.pro-store.force-mobile .market-panel,
.pro-store.force-mobile .info-panel {
  overflow: hidden;
  border-radius: 20px;
  padding: 13px;
}

.pro-store.force-mobile .hero-panel {
  grid-template-columns: 1fr;
  gap: 13px;
  overflow: hidden;
  min-height: auto;
  padding: 15px;
  border-radius: 18px;
}

.pro-store.force-mobile h1 {
  max-width: 100%;
  margin-bottom: 10px;
  font-size: 25px;
  line-height: 1.04;
  overflow-wrap: break-word;
}

.pro-store.force-mobile .hero-panel p:not(.pill) {
  font-size: 13px;
  line-height: 1.55;
}

.pro-store.force-mobile .hero-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.pro-store.force-mobile .hero-stats > span {
  display: grid;
  min-width: 0;
  min-height: 50px;
  justify-items: start;
  padding: 8px;
}

.pro-store.force-mobile .hero-stats > span strong {
  font-size: 16px;
  overflow-wrap: anywhere;
}

.pro-store.force-mobile .hero-stats > span:nth-child(2) strong {
  font-size: 13px;
  white-space: nowrap;
}

.pro-store.force-mobile .hero-stats > span small {
  font-size: 11px;
}

.pro-store.force-mobile .hero-proof {
  display: none;
}

.pro-store.force-mobile .search-box {
  margin: 13px 0 16px;
}

.pro-store.force-mobile .search-box input {
  min-height: 48px;
  border-radius: 15px;
}

.pro-store.force-mobile .section-head {
  align-items: start;
  margin-bottom: 10px;
}

.pro-store.force-mobile .section-head h2 {
  font-size: 21px;
}

.pro-store.force-mobile .section-head > span {
  display: none;
}

.pro-store.force-mobile .category-grid {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  padding-bottom: 4px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.pro-store.force-mobile .category-grid::-webkit-scrollbar {
  display: none;
}

.pro-store.force-mobile .category-tile {
  flex: 0 0 156px;
  grid-template-columns: 42px minmax(0, 1fr);
  min-height: 76px;
  padding: 11px;
  scroll-snap-align: start;
}

.pro-store.force-mobile .category-copy strong {
  font-size: 14px;
}

.pro-store.force-mobile .category-copy small {
  font-size: 11px;
}

.pro-store.force-mobile .product-list {
  gap: 10px;
}

.pro-store.force-mobile .product-card {
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 12px;
  min-height: 0;
  padding: 12px;
  border-radius: 18px;
}

.pro-store.force-mobile .product-card .app-badge {
  width: 52px;
  height: 52px;
}

.pro-store.force-mobile .product-copy h3 {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1.22;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.pro-store.force-mobile .product-copy p {
  display: -webkit-box;
  overflow: hidden;
  font-size: 12px;
  line-height: 1.35;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.pro-store.force-mobile .product-tags {
  display: none;
}

.pro-store.force-mobile .product-side {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto auto minmax(82px, 1fr);
  align-items: center;
  gap: 9px;
  width: 100%;
  padding-top: 10px;
  border-top: 1px solid rgba(231, 226, 210, 0.07);
}

.pro-store.force-mobile .product-side .price {
  font-size: 22px;
}

.pro-store.force-mobile .stock-pill,
.pro-store.force-mobile .select-pill {
  min-height: 31px;
}

.pro-store.force-mobile .select-pill {
  justify-self: end;
  min-width: 84px;
  border-color: rgba(216, 191, 122, 0.24);
  background: rgba(216, 191, 122, 0.13);
  color: #f7e7ad;
}

.pro-store.force-mobile .mobile-buy-bar {
  right: 10px;
  bottom: 10px;
  left: 10px;
  border-color: rgba(231, 226, 210, 0.12);
  border-radius: 18px;
  background: rgba(6, 9, 11, 0.96);
}

.pro-store.force-mobile .mobile-buy-bar[hidden] {
  display: none !important;
}

html.mobile-preview .purchase-modal {
  right: auto;
  left: 50%;
  width: min(100%, 430px);
  padding: 10px;
  transform: translateX(-50%);
  align-items: end;
  justify-items: center;
}

html.mobile-preview .purchase-card {
  width: 100%;
  max-height: calc(100vh - 20px);
  border-radius: 22px;
  padding: 18px;
}

html.mobile-preview .purchase-head h2 {
  font-size: 24px;
}

html.mobile-preview .purchase-product {
  grid-template-columns: 46px minmax(0, 1fr);
}

html.mobile-preview .purchase-product b {
  grid-column: 1 / -1;
  font-size: 24px;
}

html.mobile-preview .purchase-access-actions,
html.mobile-preview .purchase-fields,
html.mobile-preview .purchase-footer {
  grid-template-columns: 1fr;
}

html.mobile-preview .purchase-access > div:first-child,
html.mobile-preview .purchase-footer {
  align-items: stretch;
  flex-direction: column;
}

html.mobile-preview .purchase-footer {
  bottom: -18px;
  margin: 0 -18px -18px;
  padding: 13px 18px 18px;
  border-radius: 0 0 22px 22px;
}

html.mobile-preview .purchase-footer .primary-action {
  width: 100%;
}

@media (max-width: 640px) {
  .pro-store .brand {
    min-width: 0;
  }

  .pro-store .brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  .pro-store .brand-copy strong {
    font-size: 22px;
  }

  .pro-store .brand-copy small {
    font-size: 12px;
  }

  .pro-store .global-header nav {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
    overflow: visible;
    padding: 2px 0 4px;
    border: 0;
    border-radius: 0;
    background: transparent;
    scrollbar-width: none;
  }

  .pro-store .global-header nav::-webkit-scrollbar {
    display: none;
  }

  .pro-store .global-header nav a {
    min-width: auto;
    min-height: 36px;
    padding: 0 6px;
    border-radius: 14px;
    font-size: 12px;
    letter-spacing: 0;
  }

  .pro-store .signal-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    margin: 0 0 12px;
  }

  .pro-store .signal-strip span {
    min-width: 0;
    min-height: 34px;
    padding: 0 10px;
    font-size: 11px;
    white-space: nowrap;
  }

  .pro-store .checkout-panel {
    display: none;
  }

  .pro-store .market-panel,
  .pro-store .info-panel,
  .pro-store .hero-panel {
    overflow: hidden;
  }

  .pro-store h1 {
    max-width: 100%;
    font-size: 25px;
    line-height: 1.04;
    overflow-wrap: break-word;
  }

  .pro-store .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .pro-store .hero-stats > span {
    display: grid;
    min-width: 0;
    min-height: 50px;
    justify-items: start;
    padding: 8px;
  }

  .pro-store .hero-stats > span strong {
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .pro-store .hero-stats > span:nth-child(2) strong {
    font-size: 13px;
    white-space: nowrap;
  }

  .pro-store .hero-stats > span small {
    font-size: 11px;
  }

  .pro-store .hero-proof {
    display: none;
  }

  .pro-store .product-copy h3 {
    display: -webkit-box;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .pro-store .product-copy p {
    display: -webkit-box;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }

  .pro-store .select-pill {
    justify-self: end;
    min-width: 84px;
    border-color: rgba(216, 191, 122, 0.24);
    background: rgba(216, 191, 122, 0.13);
    color: #f7e7ad;
  }
}

/* Extra compact global mobile storefront */
.pro-store.force-mobile .global-header {
  gap: 8px;
  padding: 9px 10px 8px;
}

.pro-store.force-mobile .brand {
  gap: 10px;
}

.pro-store.force-mobile .brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}

.pro-store.force-mobile .brand-copy strong {
  font-size: 21px;
}

.pro-store.force-mobile .brand-copy small {
  display: none;
}

.pro-store.force-mobile .global-header nav {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 5px;
  padding: 0;
}

.pro-store.force-mobile .global-header nav a {
  min-height: 31px;
  padding: 0 4px;
  border-radius: 12px;
  font-size: 11px;
}

.pro-store.force-mobile .signal-strip {
  display: none;
}

.pro-store.force-mobile .global-main {
  padding: 8px 8px 86px;
}

.pro-store.force-mobile .market-panel,
.pro-store.force-mobile .info-panel {
  border-radius: 16px;
  padding: 10px;
}

.pro-store.force-mobile .hero-panel {
  gap: 8px;
  padding: 12px;
  border-radius: 15px;
}

.pro-store.force-mobile .hero-panel .pill,
.pro-store.force-mobile .hero-panel p:not(.pill) {
  display: none;
}

.pro-store.force-mobile h1 {
  margin: 0;
  font-size: 21px;
  line-height: 1.08;
}

.pro-store.force-mobile .hero-stats {
  gap: 6px;
  margin-top: 2px;
}

.pro-store.force-mobile .hero-stats > span {
  min-height: 42px;
  padding: 7px 8px;
  border-radius: 12px;
}

.pro-store.force-mobile .hero-stats > span strong {
  font-size: 14px;
}

.pro-store.force-mobile .hero-stats > span:nth-child(2) strong {
  font-size: 11px;
}

.pro-store.force-mobile .hero-stats > span small {
  font-size: 10px;
}

.pro-store.force-mobile .search-box {
  margin: 10px 0 11px;
}

.pro-store.force-mobile .search-box input {
  min-height: 42px;
  border-radius: 13px;
  font-size: 13px;
}

.pro-store.force-mobile .section-head {
  margin-bottom: 7px;
}

.pro-store.force-mobile .section-head h2 {
  font-size: 19px;
}

.pro-store.force-mobile .category-grid {
  gap: 7px;
}

.pro-store.force-mobile .category-tile {
  flex-basis: 132px;
  grid-template-columns: 36px minmax(0, 1fr);
  min-height: 62px;
  padding: 9px;
  border-radius: 14px;
}

.pro-store.force-mobile .category-tile .app-badge {
  width: 36px;
  height: 36px;
  border-radius: 12px;
}

.pro-store.force-mobile .category-copy strong {
  font-size: 13px;
}

.pro-store.force-mobile .category-copy small {
  font-size: 10px;
}

@media (max-width: 820px) {
  .pro-store .global-header {
    gap: 8px;
    padding: 9px 10px 8px;
  }

  .pro-store .brand {
    gap: 10px;
  }

  .pro-store .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .pro-store .brand-copy strong {
    font-size: 21px;
  }

  .pro-store .brand-copy small {
    display: none;
  }

  .pro-store .global-header nav {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 5px;
    overflow: visible;
    padding: 0;
  }

  .pro-store .global-header nav a {
    min-height: 31px;
    padding: 0 4px;
    border-radius: 12px;
    font-size: 11px;
  }

  .pro-store .signal-strip {
    display: none;
  }

  .pro-store .global-main {
    padding: 8px 8px 86px;
  }

  .pro-store .market-panel,
  .pro-store .info-panel {
    border-radius: 16px;
    padding: 10px;
  }

  .pro-store .hero-panel {
    gap: 8px;
    padding: 12px;
    border-radius: 15px;
  }

  .pro-store .hero-panel .pill,
  .pro-store .hero-panel p:not(.pill) {
    display: none;
  }

  .pro-store h1 {
    margin: 0;
    font-size: 21px;
    line-height: 1.08;
  }

  .pro-store .hero-stats {
    gap: 6px;
    margin-top: 2px;
  }

  .pro-store .hero-stats > span {
    min-height: 42px;
    padding: 7px 8px;
    border-radius: 12px;
  }

  .pro-store .hero-stats > span strong {
    font-size: 14px;
  }

  .pro-store .hero-stats > span:nth-child(2) strong {
    font-size: 11px;
  }

  .pro-store .hero-stats > span small {
    font-size: 10px;
  }

  .pro-store .search-box {
    margin: 10px 0 11px;
  }

  .pro-store .search-box input {
    min-height: 42px;
    border-radius: 13px;
    font-size: 13px;
  }

  .pro-store .section-head {
    margin-bottom: 7px;
  }

  .pro-store .section-head h2 {
    font-size: 19px;
  }

  .pro-store .category-grid {
    gap: 7px;
  }

  .pro-store .category-tile {
    flex-basis: 132px;
    grid-template-columns: 36px minmax(0, 1fr);
    min-height: 62px;
    padding: 9px;
    border-radius: 14px;
  }

  .pro-store .category-tile .app-badge {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .pro-store .category-copy strong {
    font-size: 13px;
  }

  .pro-store .category-copy small {
    font-size: 10px;
  }
}

/* Compact mobile product cards so shoppers see more inventory per screen. */
.pro-store.force-mobile .product-list {
  gap: 8px;
}

.pro-store.force-mobile .product-card {
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 9px;
  padding: 10px;
  border-radius: 15px;
}

.pro-store.force-mobile .product-card .app-badge {
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.pro-store.force-mobile .product-copy h3 {
  margin-bottom: 4px;
  font-size: 14px;
  line-height: 1.18;
}

.pro-store.force-mobile .product-copy p {
  display: none;
}

.pro-store.force-mobile .product-side {
  grid-template-columns: auto auto minmax(70px, 1fr);
  gap: 7px;
  padding-top: 8px;
}

.pro-store.force-mobile .product-side .price {
  font-size: 20px;
}

.pro-store.force-mobile .stock-pill,
.pro-store.force-mobile .select-pill {
  min-height: 27px;
  padding: 0 9px;
  font-size: 11px;
}

.pro-store.force-mobile .select-pill {
  min-width: 72px;
}

@media (max-width: 820px) {
  .pro-store .product-list {
    gap: 8px;
  }

  .pro-store .product-card {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 9px;
    padding: 10px;
    border-radius: 15px;
  }

  .pro-store .product-card .app-badge {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .pro-store .product-copy h3 {
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 1.18;
  }

  .pro-store .product-copy p {
    display: none;
  }

  .pro-store .product-side {
    grid-template-columns: auto auto minmax(70px, 1fr);
    gap: 7px;
    padding-top: 8px;
  }

  .pro-store .product-side .price {
    font-size: 20px;
  }

  .pro-store .stock-pill,
  .pro-store .select-pill {
    min-height: 27px;
    padding: 0 9px;
    font-size: 11px;
  }

  .pro-store .select-pill {
    min-width: 72px;
  }
}

/* Compact mobile service views: keep account, payment, orders, and support task-first. */
.pro-store.force-mobile .service-grid {
  gap: 10px;
}

.pro-store.force-mobile .info-panel {
  gap: 10px;
}

.pro-store.force-mobile .info-panel .eyebrow,
.pro-store.force-mobile .account-trust-row,
.pro-store.force-mobile .account-next,
.pro-store.force-mobile .empty-flow,
.pro-store.force-mobile .orders-guide,
.pro-store.force-mobile .support-steps {
  display: none;
}

.pro-store.force-mobile .account-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.pro-store.force-mobile .account-actions input {
  grid-column: 1 / -1;
  min-height: 40px;
}

.pro-store.force-mobile .account-actions button,
.pro-store.force-mobile .account-code-card button,
.pro-store.force-mobile .account-mini-actions a,
.pro-store.force-mobile .inline-action,
.pro-store.force-mobile .order-actions button,
.pro-store.force-mobile .order-actions a {
  min-height: 34px;
  border-radius: 10px;
  padding: 0 10px;
  font-size: 12px;
}

.pro-store.force-mobile .account-code-card,
.pro-store.force-mobile .support-card,
.pro-store.force-mobile .order-item,
.pro-store.force-mobile .payment-card {
  border-radius: 13px;
  padding: 11px;
}

.pro-store.force-mobile .account-code-card strong {
  font-size: 20px;
}

.pro-store.force-mobile .rich-empty {
  gap: 6px;
  justify-items: start;
  text-align: left;
}

.pro-store.force-mobile .rich-empty strong {
  font-size: 16px;
}

.pro-store.force-mobile .rich-empty p,
.pro-store.force-mobile .support-panel p,
.pro-store.force-mobile .hint {
  font-size: 12px;
  line-height: 1.45;
}

.pro-store.force-mobile .account-mini-actions,
.pro-store.force-mobile .support-card {
  margin-top: 10px;
}

@media (max-width: 820px) {
  .pro-store .service-grid {
    gap: 10px;
  }

  .pro-store .info-panel {
    gap: 10px;
  }

  .pro-store .info-panel .eyebrow,
  .pro-store .account-trust-row,
  .pro-store .account-next,
  .pro-store .empty-flow,
  .pro-store .orders-guide,
  .pro-store .support-steps {
    display: none;
  }

  .pro-store .account-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .pro-store .account-actions input {
    grid-column: 1 / -1;
    min-height: 40px;
  }

  .pro-store .account-actions button,
  .pro-store .account-code-card button,
  .pro-store .account-mini-actions a,
  .pro-store .inline-action,
  .pro-store .order-actions button,
  .pro-store .order-actions a {
    min-height: 34px;
    border-radius: 10px;
    padding: 0 10px;
    font-size: 12px;
  }

  .pro-store .account-code-card,
  .pro-store .support-card,
  .pro-store .order-item,
  .pro-store .payment-card {
    border-radius: 13px;
    padding: 11px;
  }

  .pro-store .order-item header {
    align-items: flex-start;
  }

  .pro-store .order-item header strong,
  .pro-store .order-item header small {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .pro-store .order-meta {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .pro-store .order-meta span {
    padding: 8px 9px;
  }

  .pro-store .order-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .pro-store .account-code-card strong {
    font-size: 20px;
  }

  .pro-store .rich-empty {
    gap: 6px;
    justify-items: start;
    text-align: left;
  }

  .pro-store .rich-empty strong {
    font-size: 16px;
  }

  .pro-store .rich-empty p,
  .pro-store .support-panel p,
  .pro-store .hint {
    font-size: 12px;
    line-height: 1.45;
  }

  .pro-store .account-mini-actions,
  .pro-store .support-card {
    margin-top: 10px;
  }
}

/* Compact mobile checkout and payment review flow. */
html.mobile-preview .purchase-card,
.pro-store.force-mobile .purchase-card {
  gap: 10px;
  padding: 14px;
}

html.mobile-preview .purchase-head,
.pro-store.force-mobile .purchase-head {
  padding-right: 30px;
}

html.mobile-preview .purchase-head .eyebrow,
html.mobile-preview .purchase-head p:not(.eyebrow),
.pro-store.force-mobile .purchase-head .eyebrow,
.pro-store.force-mobile .purchase-head p:not(.eyebrow) {
  display: none;
}

html.mobile-preview .purchase-head h2,
.pro-store.force-mobile .purchase-head h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.12;
}

html.mobile-preview .purchase-close,
.pro-store.force-mobile .purchase-close {
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
}

html.mobile-preview .purchase-product,
.pro-store.force-mobile .purchase-product {
  grid-template-columns: 40px minmax(0, 1fr) auto;
  gap: 9px;
  padding: 10px;
  border-radius: 14px;
}

html.mobile-preview .purchase-product .app-badge,
.pro-store.force-mobile .purchase-product .app-badge {
  width: 40px;
  height: 40px;
  border-radius: 13px;
}

html.mobile-preview .purchase-product strong,
.pro-store.force-mobile .purchase-product strong {
  font-size: 14px;
}

html.mobile-preview .purchase-product small,
.pro-store.force-mobile .purchase-product small {
  margin-top: 3px;
  font-size: 11px;
}

html.mobile-preview .purchase-product b,
.pro-store.force-mobile .purchase-product b {
  grid-column: auto;
  font-size: 19px;
}

html.mobile-preview .purchase-access,
.pro-store.force-mobile .purchase-access,
html.mobile-preview .crypto-help,
.pro-store.force-mobile .crypto-help {
  gap: 8px;
  padding: 10px;
  border-radius: 14px;
}

html.mobile-preview .purchase-access > div:first-child,
.pro-store.force-mobile .purchase-access > div:first-child {
  align-items: center;
  flex-direction: row;
}

html.mobile-preview .purchase-access-actions,
.pro-store.force-mobile .purchase-access-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

html.mobile-preview .purchase-access-actions input,
.pro-store.force-mobile .purchase-access-actions input {
  grid-column: 1 / -1;
}

html.mobile-preview .purchase-access-actions input,
html.mobile-preview .purchase-fields input,
html.mobile-preview .purchase-fields select,
html.mobile-preview .purchase-access-actions button,
.pro-store.force-mobile .purchase-access-actions input,
.pro-store.force-mobile .purchase-fields input,
.pro-store.force-mobile .purchase-fields select,
.pro-store.force-mobile .purchase-access-actions button {
  min-height: 38px;
  border-radius: 11px;
  font-size: 13px;
}

html.mobile-preview .purchase-fields,
.pro-store.force-mobile .purchase-fields {
  grid-template-columns: 0.65fr 1.35fr;
  gap: 8px;
}

html.mobile-preview .crypto-help p,
.pro-store.force-mobile .crypto-help p {
  display: none;
}

html.mobile-preview .crypto-help strong,
.pro-store.force-mobile .crypto-help strong {
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
}

html.mobile-preview .purchase-terms,
.pro-store.force-mobile .purchase-terms {
  font-size: 12px;
  line-height: 1.35;
}

html.mobile-preview .purchase-footer,
.pro-store.force-mobile .purchase-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  bottom: -14px;
  gap: 10px;
  margin: 0 -14px -14px;
  padding: 10px 14px 14px;
}

html.mobile-preview .purchase-footer strong,
.pro-store.force-mobile .purchase-footer strong {
  font-size: 22px;
}

html.mobile-preview .purchase-footer .primary-action,
.pro-store.force-mobile .purchase-footer .primary-action {
  width: 100%;
  min-width: 0;
  min-height: 42px;
}

.pro-store.force-mobile .payment-progress {
  display: none;
}

.pro-store.force-mobile .payment-card strong {
  font-size: 26px;
}

.pro-store.force-mobile .payment-hero {
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 10px;
}

.pro-store.force-mobile .payment-hero > div {
  min-height: 76px;
  padding: 11px;
  border-radius: 13px;
}

.pro-store.force-mobile .payment-summary {
  grid-template-columns: 1fr;
  gap: 7px;
  margin: 10px 0;
}

.pro-store.force-mobile .payment-summary span,
.pro-store.force-mobile .network-warning,
.pro-store.force-mobile .wallet code,
.pro-store.force-mobile .gateway-note {
  padding: 9px;
  border-radius: 11px;
  font-size: 12px;
}

.pro-store.force-mobile .payment-qr {
  width: min(168px, 100%);
  border-radius: 14px;
  padding: 7px;
}

.pro-store.force-mobile .wallet {
  gap: 7px;
  margin-top: 10px;
}

.pro-store.force-mobile .coin-strip {
  gap: 6px;
  margin: 10px 0;
}

@media (max-width: 820px) {
  .pro-store .purchase-card {
    gap: 10px;
    padding: 14px;
  }

  .pro-store .purchase-head {
    padding-right: 30px;
  }

  .pro-store .purchase-head .eyebrow,
  .pro-store .purchase-head p:not(.eyebrow) {
    display: none;
  }

  .pro-store .purchase-head h2 {
    margin: 0;
    font-size: 20px;
    line-height: 1.12;
  }

  .pro-store .purchase-close {
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
  }

  .pro-store .purchase-product {
    grid-template-columns: 40px minmax(0, 1fr) auto;
    gap: 9px;
    padding: 10px;
    border-radius: 14px;
  }

  .pro-store .purchase-product .app-badge {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  .pro-store .purchase-product strong {
    font-size: 14px;
  }

  .pro-store .purchase-product small {
    margin-top: 3px;
    font-size: 11px;
  }

  .pro-store .purchase-product b {
    grid-column: auto;
    font-size: 19px;
  }

  .pro-store .purchase-access,
  .pro-store .crypto-help {
    gap: 8px;
    padding: 10px;
    border-radius: 14px;
  }

  .pro-store .purchase-access > div:first-child {
    align-items: center;
    flex-direction: row;
  }

  .pro-store .purchase-access-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .pro-store .purchase-access-actions input {
    grid-column: 1 / -1;
  }

  .pro-store .purchase-access-actions input,
  .pro-store .purchase-fields input,
  .pro-store .purchase-fields select,
  .pro-store .purchase-access-actions button {
    min-height: 38px;
    border-radius: 11px;
    font-size: 13px;
  }

  .pro-store .purchase-fields {
    grid-template-columns: 0.65fr 1.35fr;
    gap: 8px;
  }

  .pro-store .crypto-help p {
    display: none;
  }

  .pro-store .crypto-help strong {
    margin: 0;
    font-size: 12px;
    line-height: 1.35;
  }

  .pro-store .purchase-terms {
    font-size: 12px;
    line-height: 1.35;
  }

  .pro-store .purchase-footer {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    bottom: -14px;
    gap: 10px;
    margin: 0 -14px -14px;
    padding: 10px 14px 14px;
  }

  .pro-store .purchase-footer strong {
    font-size: 22px;
  }

  .pro-store .purchase-footer .primary-action {
    width: 100%;
    min-width: 0;
    min-height: 42px;
  }

  .pro-store .payment-progress {
    display: none;
  }

  .pro-store .payment-card strong {
    font-size: 26px;
  }

  .pro-store .payment-hero {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 10px;
  }

  .pro-store .payment-hero > div {
    min-height: 76px;
    padding: 11px;
    border-radius: 13px;
  }

  .pro-store .payment-summary {
    grid-template-columns: 1fr;
    gap: 7px;
    margin: 10px 0;
  }

  .pro-store .payment-summary span,
  .pro-store .network-warning,
  .pro-store .wallet code,
  .pro-store .gateway-note {
    padding: 9px;
    border-radius: 11px;
    font-size: 12px;
  }

  .pro-store .payment-qr {
    width: min(168px, 100%);
    border-radius: 14px;
    padding: 7px;
  }

  .pro-store .payment-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin: 0 0 10px;
  }

  .pro-store .payment-actions button {
    min-height: 32px;
    padding: 0 6px;
    font-size: 11px;
    white-space: nowrap;
  }

  .pro-store .wallet {
    gap: 7px;
    margin-top: 10px;
  }

  .pro-store .coin-strip {
    gap: 6px;
    margin: 10px 0;
  }
}

/* Desktop checkout refinement: make the right rail feel like a focused purchase panel. */
@media (min-width: 861px) {
  .pro-store .checkout-panel {
    display: grid;
    gap: 12px;
    max-height: calc(100vh - 104px);
    overflow: auto;
    padding: 20px;
    scrollbar-width: thin;
  }

  .pro-store .checkout-rail {
    gap: 6px;
    margin-bottom: 8px;
  }

  .pro-store .checkout-rail span {
    min-height: 42px;
    padding: 8px;
    border-radius: 11px;
    font-size: 10px;
  }

  .pro-store .selected-product h2 {
    margin-bottom: 9px;
    font-size: 24px;
  }

  .pro-store .selected-product .price,
  .pro-store .price {
    font-size: 32px;
  }

  .pro-store .selected-product .hint {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.45;
  }

  .pro-store .selected-buy-action {
    min-height: 50px;
    margin-top: 13px;
    border-radius: 14px;
  }

  .pro-store .tag-row {
    margin-top: 12px;
  }

  .pro-store .selected-meta-grid {
    margin-top: 12px;
  }

  .pro-store .selected-assurance {
    display: none;
  }

  .pro-store .field-row {
    gap: 9px;
    margin: 12px 0 9px;
  }

  .pro-store .field-row input,
  .pro-store .field-row select {
    min-height: 46px;
    border-radius: 12px;
  }

  .pro-store .checkout-promises {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin: 8px 0;
  }

  .pro-store .checkout-promises span {
    min-height: 32px;
    justify-content: center;
    padding: 0 8px;
    border-radius: 10px;
    font-size: 10px;
    text-align: center;
  }

  .pro-store .checkout-total-card {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 4px 10px;
    margin: 8px 0;
    padding: 13px;
  }

  .pro-store .checkout-total-card small {
    grid-column: 1 / -1;
  }

  .pro-store .checkout-total-card strong {
    font-size: 31px;
  }

  .pro-store .terms {
    font-size: 12px;
    line-height: 1.42;
  }

  .pro-store .primary-action {
    min-height: 52px;
    margin-top: 10px;
    border-radius: 12px;
  }
}

/* Catalog polish: quieter luxury surfaces for categories and product rows. */
.pro-store .category-tile,
.pro-store .product-card {
  border-color: rgba(220, 229, 223, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.030), rgba(255, 255, 255, 0.006)),
    rgba(5, 10, 13, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.040),
    0 12px 34px rgba(0, 0, 0, 0.16);
  transition:
    border-color 140ms ease,
    background 140ms ease,
    box-shadow 140ms ease,
    transform 140ms ease;
}

.pro-store .category-tile:hover,
.pro-store .category-tile.active,
.pro-store .product-card:hover,
.pro-store .product-card.active {
  transform: translateY(-1px);
  border-color: rgba(123, 202, 178, 0.48);
  background:
    radial-gradient(circle at 8% 0%, rgba(123, 202, 178, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.036), rgba(255, 255, 255, 0.008)),
    rgba(7, 13, 16, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 18px 44px rgba(0, 0, 0, 0.20);
}

.pro-store .product-card::before {
  opacity: 0.74;
  background: linear-gradient(180deg, rgba(123, 202, 178, 0.90), rgba(216, 191, 122, 0.62));
}

.pro-store .app-badge {
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(145deg, rgba(20, 29, 33, 0.94), rgba(4, 7, 9, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -10px 22px rgba(0, 0, 0, 0.22),
    0 10px 22px rgba(0, 0, 0, 0.20);
}

.pro-store .category-copy strong,
.pro-store .product-copy h3 {
  color: #f7f4eb;
}

.pro-store .category-copy small,
.pro-store .product-copy p,
.pro-store .product-kicker {
  color: rgba(220, 229, 223, 0.56);
}

.pro-store .stock-pill {
  border-color: rgba(123, 202, 178, 0.26);
  background: rgba(123, 202, 178, 0.075);
  color: #8edfc9;
}

.pro-store .select-pill {
  border-color: rgba(216, 191, 122, 0.34);
  background:
    linear-gradient(180deg, rgba(216, 191, 122, 0.18), rgba(216, 191, 122, 0.08));
  color: #f2dda1;
}

.pro-store .product-card:hover .select-pill,
.pro-store .product-card.active .select-pill {
  border-color: rgba(240, 215, 139, 0.55);
  background: linear-gradient(180deg, #f0d78b 0%, #c69a50 100%);
  color: #080b0f;
}

@media (max-width: 820px) {
  .pro-store .category-tile:hover,
  .pro-store .category-tile.active,
  .pro-store .product-card:hover,
  .pro-store .product-card.active {
    transform: none;
  }
}

/* Header polish: premium, quieter navigation for global storefront. */
.pro-store .global-header {
  padding: 13px 0;
  border-bottom-color: rgba(231, 226, 210, 0.085);
  background:
    linear-gradient(180deg, rgba(5, 8, 10, 0.94), rgba(5, 8, 10, 0.86));
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.20);
}

.pro-store .brand {
  gap: 12px;
  min-width: 230px;
}

.pro-store .brand-mark {
  width: 48px;
  height: 48px;
  border-color: rgba(216, 191, 122, 0.46);
  border-radius: 15px;
  background:
    radial-gradient(circle at 68% 70%, rgba(98, 200, 168, 0.18), transparent 32%),
    linear-gradient(145deg, rgba(20, 28, 31, 0.96), rgba(4, 7, 9, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -14px 26px rgba(0, 0, 0, 0.20),
    0 12px 26px rgba(0, 0, 0, 0.24);
}

.pro-store .brand-mark::before {
  left: 14px;
  top: 10px;
  width: 20px;
  height: 27px;
  border-width: 2px;
}

.pro-store .brand-mark::after {
  left: 17px;
  top: 21px;
  width: 15px;
  height: 15px;
}

.pro-store .brand-copy strong {
  font-size: 24px;
  line-height: 1;
}

.pro-store .brand-copy small {
  margin-top: 4px;
  color: rgba(220, 229, 223, 0.54);
  font-size: 12px;
}

.pro-store .global-header nav {
  gap: 7px;
}

.pro-store .global-header nav a {
  min-width: 88px;
  min-height: 38px;
  border-color: rgba(231, 226, 210, 0.10);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.032);
  color: rgba(246, 243, 234, 0.76);
  font-size: 13px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.pro-store .global-header nav a:hover {
  border-color: rgba(216, 191, 122, 0.34);
  background: rgba(216, 191, 122, 0.10);
  color: #f7e7ad;
}

.pro-store .global-header nav a.active-view-link {
  border-color: rgba(240, 215, 139, 0.58);
  background:
    linear-gradient(180deg, rgba(240, 215, 139, 0.96), rgba(190, 148, 80, 0.96));
  color: #070a0d;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 10px 22px rgba(190, 148, 80, 0.16);
}

@media (max-width: 820px) {
  .pro-store .global-header {
    padding: 8px 10px;
  }

  .pro-store .brand {
    gap: 9px;
    min-width: 0;
  }

  .pro-store .brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .pro-store .brand-mark::before {
    left: 10px;
    top: 8px;
    width: 15px;
    height: 20px;
    border-width: 1.5px;
  }

  .pro-store .brand-mark::after {
    left: 13px;
    top: 16px;
    width: 11px;
    height: 11px;
  }

  .pro-store .brand-copy strong {
    font-size: 20px;
  }

  .pro-store .global-header nav {
    gap: 5px;
  }

  .pro-store .global-header nav a {
    min-width: 0;
    min-height: 30px;
    padding: 0 4px;
    border-radius: 10px;
    font-size: 11px;
  }
}

/* Mobile first-screen refinement: reduce top chrome so catalog appears sooner. */
.pro-store.force-mobile .global-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 7px 10px;
  padding: 7px 10px 8px;
}

.pro-store.force-mobile .brand {
  gap: 8px;
}

.pro-store.force-mobile .brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 11px;
}

.pro-store.force-mobile .brand-mark::before {
  left: 9px;
  top: 7px;
  width: 13px;
  height: 18px;
  border-width: 1.5px;
}

.pro-store.force-mobile .brand-mark::after {
  left: 12px;
  top: 15px;
  width: 9px;
  height: 9px;
}

.pro-store.force-mobile .brand-copy strong {
  font-size: 18px;
}

.pro-store.force-mobile .brand-copy small,
.pro-store.force-mobile .signal-strip,
.pro-store.force-mobile .hero-stats,
.pro-store.force-mobile .section-head > span,
.pro-store.force-mobile .section-head .eyebrow {
  display: none;
}

.pro-store.force-mobile .global-header nav {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 5px;
  overflow: visible;
  width: 100%;
  padding: 0;
}

.pro-store.force-mobile .global-header nav a {
  min-height: 28px;
  border-radius: 9px;
  padding: 0 3px;
  font-size: 10px;
}

.pro-store.force-mobile .global-main {
  padding-top: 8px;
}

.pro-store.force-mobile .hero-panel {
  margin-bottom: 8px;
  padding: 12px;
  border-radius: 17px;
}

.pro-store.force-mobile h1 {
  max-width: 260px;
  font-size: 24px;
  line-height: 1.05;
}

.pro-store.force-mobile .search-box {
  min-height: 38px;
  margin-top: 0;
}

.pro-store.force-mobile .catalog-section {
  margin-top: 10px;
}

.pro-store.force-mobile .section-head {
  margin-bottom: 8px;
}

.pro-store.force-mobile .section-head h2 {
  font-size: 17px;
}

.pro-store.force-mobile .category-grid {
  gap: 7px;
}

.pro-store.force-mobile .category-tile {
  min-height: 58px;
  padding: 8px;
  border-radius: 14px;
}

.pro-store.force-mobile .category-tile .app-badge {
  width: 34px;
  height: 34px;
  border-radius: 11px;
}

.pro-store.force-mobile .product-list {
  margin-top: 8px;
}

/* Black canvas pass: remove the broad green cast while keeping premium accents. */
html,
html.mobile-preview,
body.pro-store,
.pro-store {
  background: #000;
}

.pro-store::before {
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
}

.pro-store .global-header {
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.98), rgba(0, 0, 0, 0.94));
}

.pro-store .global-main {
  background: #000;
}

.pro-store .market-panel,
.pro-store .checkout-panel,
.pro-store .info-panel {
  background:
    linear-gradient(180deg, rgba(12, 12, 12, 0.96), rgba(3, 3, 3, 0.98));
  border-color: rgba(231, 226, 210, 0.10);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 28px 70px rgba(0, 0, 0, 0.36);
}

.pro-store .hero-panel {
  background:
    radial-gradient(circle at 84% 0%, rgba(216, 191, 122, 0.10), transparent 34%),
    linear-gradient(180deg, rgba(14, 14, 14, 0.98), rgba(2, 2, 2, 0.98));
  border-color: rgba(231, 226, 210, 0.10);
}

.pro-store .category-tile,
.pro-store .product-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0.006)),
    rgba(4, 4, 4, 0.92);
}

.pro-store .category-tile:hover,
.pro-store .category-tile.active,
.pro-store .product-card:hover,
.pro-store .product-card.active {
  background:
    radial-gradient(circle at 8% 0%, rgba(123, 202, 178, 0.09), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.034), rgba(255, 255, 255, 0.008)),
    rgba(7, 7, 7, 0.96);
}

.pro-store .search-box input,
.pro-store .field-row input,
.pro-store .field-row select,
.pro-store .account-actions input {
  background: rgba(0, 0, 0, 0.82);
}

html.mobile-preview body.force-mobile,
.pro-store.force-mobile {
  background: #000;
}

.pro-store.force-mobile .mobile-buy-bar {
  background: rgba(0, 0, 0, 0.96);
}

/* Mobile storefront density pass: get buyers to catalog and checkout faster. */
.pro-store.force-mobile .global-header {
  padding: 6px 9px 7px;
}

.pro-store.force-mobile .brand-mark {
  width: 30px;
  height: 30px;
}

.pro-store.force-mobile .brand-copy strong {
  font-size: 17px;
}

.pro-store.force-mobile .global-header nav {
  gap: 4px;
}

.pro-store.force-mobile .global-header nav a {
  min-height: 27px;
  border-radius: 8px;
  font-size: 10px;
}

.pro-store.force-mobile .hero-panel {
  display: flex;
  min-height: 44px;
  align-items: center;
  margin-bottom: 7px;
  padding: 9px 11px;
  border-radius: 14px;
}

.pro-store.force-mobile .hero-panel .pill,
.pro-store.force-mobile .hero-panel p:not(.pill),
.pro-store.force-mobile .hero-stats,
.pro-store.force-mobile .hero-proof {
  display: none;
}

.pro-store.force-mobile h1 {
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  color: #f7f4eb;
  font-size: 18px;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pro-store.force-mobile .market-panel,
.pro-store.force-mobile .info-panel {
  padding: 9px;
}

.pro-store.force-mobile .category-tile {
  min-height: 54px;
}

/* Mobile checkout clarity: keep the required check and pay button visible. */
html.mobile-preview .purchase-card,
.pro-store.force-mobile .purchase-card {
  padding-bottom: 0;
}

html.mobile-preview .purchase-terms,
.pro-store.force-mobile .purchase-terms {
  margin-top: 8px;
  padding: 9px 10px;
  border: 1px solid rgba(216, 191, 122, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.026);
  color: rgba(246, 243, 234, 0.78);
}

html.mobile-preview .purchase-terms.needs-check,
.pro-store.force-mobile .purchase-terms.needs-check {
  border-color: rgba(240, 215, 139, 0.62);
  background: rgba(240, 215, 139, 0.10);
  box-shadow: 0 0 0 3px rgba(240, 215, 139, 0.08);
}

html.mobile-preview .purchase-footer,
.pro-store.force-mobile .purchase-footer {
  bottom: 0;
  margin: 8px -14px 0;
  padding: 10px 14px calc(12px + env(safe-area-inset-bottom));
  border-top-color: rgba(231, 226, 210, 0.12);
  border-radius: 0 0 18px 18px;
  background:
    linear-gradient(180deg, rgba(6, 6, 6, 0.86), rgba(0, 0, 0, 0.98) 48%),
    #000;
}

html.mobile-preview .purchase-footer .primary-action.needs-confirm,
.pro-store.force-mobile .purchase-footer .primary-action.needs-confirm {
  box-shadow:
    0 0 0 3px rgba(240, 215, 139, 0.12),
    0 12px 28px rgba(190, 148, 80, 0.18);
}

/* Runtime comfort pass: lighter scrolling and faster mobile catalog browsing.
   Keep this off category tiles so the mobile category rail does not jump from a tall placeholder to the final compact size. */
.pro-store .product-card {
  content-visibility: auto;
  contain-intrinsic-size: 92px;
}

@media (max-width: 820px) {
  .pro-store *,
  .pro-store *::before,
  .pro-store *::after {
    transition-duration: 0ms !important;
  }

  .pro-store .category-tile,
  .pro-store .product-card,
  .pro-store .market-panel,
  .pro-store .checkout-panel,
  .pro-store .info-panel,
  .pro-store .purchase-card,
  .pro-store .mobile-buy-bar {
    box-shadow: none !important;
  }

  .pro-store .purchase-backdrop,
  .pro-store .global-header,
  .pro-store .purchase-footer,
  .pro-store .mobile-buy-bar {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  .pro-store .category-tile:hover,
  .pro-store .category-tile.active,
  .pro-store .product-card:hover,
  .pro-store .product-card.active {
    transform: none !important;
  }

  .pro-store .app-badge {
    box-shadow: none !important;
  }
}

/* Touch comfort pass: make mobile taps feel immediate and deliberate. */
.pro-store button,
.pro-store a,
.pro-store select,
.pro-store input,
.pro-store .category-tile,
.pro-store .product-card,
.pro-store .mobile-buy-bar {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

@media (max-width: 820px) {
  .pro-store .product-card:active,
  .pro-store .category-tile:active,
  .pro-store .primary-action:active,
  .pro-store .selected-buy-action:active,
  .pro-store .mobile-buy-bar button:active {
    opacity: 0.88;
  }

  .pro-store .mobile-buy-bar {
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
  }
}

/* Final mobile buy bar trim: keep checkout visible without covering the catalog. */
@media (max-width: 820px) {
  .pro-store .mobile-buy-bar,
  .pro-store.force-mobile .mobile-buy-bar {
    right: 8px;
    bottom: 8px;
    left: 8px;
    grid-template-columns: minmax(0, 1fr) 104px;
    gap: 9px;
    min-height: 62px;
    padding: 8px 9px calc(8px + env(safe-area-inset-bottom));
    border-radius: 16px;
  }

  .pro-store .mobile-buy-bar > div,
  .pro-store.force-mobile .mobile-buy-bar > div {
    min-width: 0;
  }

  .pro-store .mobile-buy-bar strong,
  .pro-store.force-mobile .mobile-buy-bar strong {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 13px;
    line-height: 1.2;
  }

  .pro-store .mobile-buy-bar span,
  .pro-store.force-mobile .mobile-buy-bar span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-top: 2px;
    font-size: 12px;
  }

  .pro-store .mobile-buy-bar button,
  .pro-store.force-mobile .mobile-buy-bar button {
    min-height: 44px;
    border-radius: 12px;
    font-size: 13px;
  }
}

/* Mobile support actions: make contact usable without making the card taller than needed. */
@media (max-width: 820px) {
  .pro-store .support-card,
  .pro-store.force-mobile .support-card {
    align-items: stretch;
  }

  .pro-store .support-actions,
  .pro-store.force-mobile .support-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .pro-store .support-actions button,
  .pro-store .support-actions a,
  .pro-store.force-mobile .support-actions button,
  .pro-store.force-mobile .support-actions a {
    min-height: 36px;
  }
}

/* Final Android storefront trim: keep the first screen focused on products. */
@media (max-width: 820px) {
  .pro-store .global-header {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 8px 10px 9px;
  }

  .pro-store .brand {
    gap: 9px;
    min-width: 0;
  }

  .pro-store .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 11px;
  }

  .pro-store .brand-copy strong {
    font-size: 20px;
  }

  .pro-store .brand-copy small {
    display: none;
  }

  .pro-store .global-header nav {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 5px;
    overflow: visible;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .pro-store .global-header nav a {
    min-width: 0;
    min-height: 30px;
    padding: 0 4px;
    border-radius: 11px;
    font-size: 11px;
  }

  .pro-store .global-main {
    padding: 8px 8px 88px;
  }

  .pro-store .signal-strip {
    display: none;
  }

  .pro-store .market-panel,
  .pro-store .info-panel {
    border-radius: 16px;
    padding: 9px;
  }

  .pro-store .hero-panel {
    display: flex;
    min-height: 42px;
    align-items: center;
    margin-bottom: 8px;
    padding: 10px 11px;
    border-radius: 14px;
  }

  .pro-store .hero-panel .pill,
  .pro-store .hero-panel p:not(.pill),
  .pro-store .hero-stats,
  .pro-store .hero-proof {
    display: none;
  }

  .pro-store h1 {
    margin: 0;
    color: #f7f4eb;
    font-size: 19px;
    line-height: 1.12;
  }

  .pro-store .search-box {
    margin: 9px 0 10px;
  }

  .pro-store .search-box input {
    min-height: 42px;
    border-radius: 13px;
    font-size: 13px;
  }

  .pro-store .category-grid {
    gap: 7px;
  }

  .pro-store .category-tile {
    min-height: 56px;
    padding: 8px;
  }
}

/* Premium platform icon pass: align the global storefront with the China storefront quality. */
.pro-store .brand-mark {
  overflow: hidden;
}

.pro-store .brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pro-store .brand-mark span {
  display: none;
}

.pro-store .brand-mark::before,
.pro-store .brand-mark::after {
  display: none !important;
}

.pro-store .app-badge {
  --badge-a: #1b2730;
  --badge-b: #080c10;
  --badge-fg: #ffffff;
  --badge-accent: #d7b56a;
  --badge-glow: rgba(215, 181, 106, 0.22);
  border-color: rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), transparent 38%),
    radial-gradient(circle at 76% 84%, var(--badge-glow), transparent 44%),
    linear-gradient(145deg, var(--badge-a) 0%, var(--badge-b) 100%) !important;
  color: var(--badge-fg) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -14px 24px rgba(0, 0, 0, 0.20),
    0 10px 22px rgba(0, 0, 0, 0.22),
    0 0 18px var(--badge-glow);
}

.pro-store .app-badge::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 8px;
  z-index: 1;
  width: 18px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  filter: blur(3px);
  pointer-events: none;
}

.pro-store .app-badge::after {
  right: auto;
  bottom: -18%;
  left: 34%;
  width: 54%;
  height: 44%;
  border-radius: 999px;
  background: var(--badge-accent);
  opacity: 0.12;
  filter: blur(12px);
  box-shadow: none;
}

.pro-store .app-badge svg {
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.35));
}

.pro-store .app-badge.all { --badge-a: #43c6a6; --badge-b: #145f51; --badge-accent: #e5fff8; --badge-glow: rgba(67, 198, 166, 0.28); }
.pro-store .app-badge.gpt { --badge-a: #1fbf94; --badge-b: #116c59; --badge-accent: #dffcf4; --badge-glow: rgba(31, 191, 148, 0.28); }
.pro-store .app-badge.gemini { --badge-a: #7ea1ff; --badge-b: #3a55d8; --badge-accent: #ffffff; --badge-glow: rgba(90, 123, 255, 0.32); }
.pro-store .app-badge.claude { --badge-a: #e2aa58; --badge-b: #9c6725; --badge-accent: #fff1ca; --badge-glow: rgba(226, 170, 88, 0.26); }
.pro-store .app-badge.grok,
.pro-store .app-badge.twitter { --badge-a: #3c4756; --badge-b: #121820; --badge-accent: #ffffff; --badge-glow: rgba(143, 160, 181, 0.20); }
.pro-store .app-badge.apple { --badge-a: #a8b2c0; --badge-b: #56606d; --badge-accent: #ffffff; --badge-glow: rgba(190, 205, 220, 0.22); }
.pro-store .app-badge.email { --badge-a: #ffffff; --badge-b: #dfe8e4; --badge-fg: #2a3a35; --badge-accent: #e6b949; --badge-glow: rgba(255, 255, 255, 0.20); }
.pro-store .app-badge.cursor { --badge-a: #7aa2ff; --badge-b: #315ce6; --badge-accent: #ffffff; --badge-glow: rgba(73, 118, 255, 0.30); }
.pro-store .app-badge.facebook,
.pro-store .app-badge.vk,
.pro-store .app-badge.linkedin { --badge-a: #5a92ff; --badge-b: #2357c8; --badge-accent: #ffffff; --badge-glow: rgba(54, 114, 255, 0.32); }
.pro-store .app-badge.instagram { --badge-a: #ff6b9d; --badge-b: #7a35e7; --badge-accent: #ffe28a; --badge-glow: rgba(240, 90, 152, 0.30); }
.pro-store .app-badge.tiktok { --badge-a: #1e2933; --badge-b: #05080c; --badge-accent: #6df2df; --badge-glow: rgba(105, 240, 220, 0.22); }
.pro-store .app-badge.telegram { --badge-a: #6cc8ff; --badge-b: #1683c5; --badge-accent: #ffffff; --badge-glow: rgba(72, 181, 236, 0.30); }
.pro-store .app-badge.okru { --badge-a: #ffb657; --badge-b: #d57222; --badge-accent: #ffffff; --badge-glow: rgba(242, 161, 58, 0.30); }
.pro-store .app-badge.reddit { --badge-a: #ff7d51; --badge-b: #e7471c; --badge-accent: #ffffff; --badge-glow: rgba(255, 101, 54, 0.30); }
.pro-store .app-badge.digital { --badge-a: #7582ff; --badge-b: #4551d7; --badge-accent: #a8f4df; --badge-glow: rgba(102, 116, 255, 0.28); }
.pro-store .app-badge.game { --badge-a: #e2b25a; --badge-b: #a97525; --badge-accent: #fff7d8; --badge-glow: rgba(226, 178, 90, 0.26); }
.pro-store .app-badge.proxy,
.pro-store .app-badge.other { --badge-a: #93a39b; --badge-b: #53645f; --badge-accent: #ffffff; --badge-glow: rgba(137, 161, 150, 0.22); }

@media (max-width: 820px) {
  .pro-store .app-badge {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.18),
      inset 0 -10px 18px rgba(0, 0, 0, 0.18),
      0 6px 14px rgba(0, 0, 0, 0.18) !important;
  }

  .pro-store .app-badge::before,
  .pro-store .app-badge::after {
    filter: none;
  }
}

/* Global luxury black pass: reduce the old green wash and keep accents deliberate. */
.pro-store {
  background: #000 !important;
}

.pro-store::before {
  opacity: 0.18;
}

.pro-store .market-panel,
.pro-store .checkout-panel,
.pro-store .info-panel {
  border-color: rgba(226, 218, 198, 0.10);
  background:
    linear-gradient(180deg, rgba(13, 16, 19, 0.97), rgba(3, 5, 7, 0.98)),
    #050607 !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 28px 76px rgba(0, 0, 0, 0.42);
}

.pro-store .hero-panel {
  border-color: rgba(216, 191, 122, 0.18) !important;
  background:
    radial-gradient(circle at 8% 0%, rgba(216, 191, 122, 0.10), transparent 34%),
    linear-gradient(145deg, rgba(10, 12, 14, 0.98), rgba(2, 3, 4, 0.98)) !important;
}

.pro-store .hero-panel .pill,
.pro-store .info-panel .section-head > span,
.pro-store .security-chip,
.pro-store .service-grid span {
  border-color: rgba(216, 191, 122, 0.22);
  background: rgba(216, 191, 122, 0.065);
  color: #e4c778;
}

.pro-store .category-tile,
.pro-store .product-card {
  border-color: rgba(226, 218, 198, 0.095);
  background:
    linear-gradient(180deg, rgba(15, 18, 21, 0.94), rgba(5, 7, 9, 0.96)) !important;
}

.pro-store .category-tile:hover,
.pro-store .category-tile.active,
.pro-store .product-card:hover,
.pro-store .product-card.active {
  border-color: rgba(216, 191, 122, 0.34) !important;
  background:
    radial-gradient(circle at 0% 50%, rgba(216, 191, 122, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(16, 20, 22, 0.98), rgba(4, 6, 7, 0.98)) !important;
}

.pro-store .product-card.active::before {
  background: linear-gradient(180deg, #e4c778, #62c8a8);
}

.pro-store .status-pill,
.pro-store .stock-pill {
  border-color: rgba(98, 200, 168, 0.24);
  background: rgba(98, 200, 168, 0.075);
}

@media (max-width: 820px) {
  .pro-store .market-panel,
  .pro-store .info-panel {
    background: #050607 !important;
  }

  .pro-store .hero-panel {
    min-height: 38px;
    border-color: rgba(216, 191, 122, 0.16) !important;
  }

  .pro-store .category-tile {
    min-height: 54px;
    border-radius: 14px;
  }
}

/* Checkout modal clarity: keep the final action visible and make required confirmation feel responsive. */
.pro-store .purchase-terms {
  padding: 10px 12px;
  border: 1px solid rgba(216, 191, 122, 0.14);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.022);
  color: rgba(246, 243, 234, 0.72);
}

.pro-store .purchase-terms input {
  accent-color: #e4c778;
}

.pro-store .purchase-footer {
  bottom: 0 !important;
  margin: 10px -24px -24px !important;
  border-top-color: rgba(226, 218, 198, 0.12);
  background:
    linear-gradient(180deg, rgba(9, 9, 9, 0.92), rgba(0, 0, 0, 0.98) 52%),
    #000 !important;
  box-shadow:
    0 -18px 36px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.pro-store .purchase-footer .primary-action {
  min-height: 50px;
  border-color: rgba(255, 226, 154, 0.36);
  box-shadow:
    0 14px 30px rgba(190, 148, 80, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.pro-store .purchase-footer .primary-action.needs-confirm {
  animation: termsReminder 0.42s ease 0s 2;
}

@media (max-width: 640px) {
  .pro-store .purchase-card,
  html.mobile-preview .purchase-card,
  .pro-store.force-mobile .purchase-card {
    max-height: calc(100dvh - 14px);
    padding-bottom: 0;
  }

  .pro-store .purchase-footer,
  html.mobile-preview .purchase-footer,
  .pro-store.force-mobile .purchase-footer {
    margin: 8px -14px 0 !important;
    padding: 10px 14px calc(12px + env(safe-area-inset-bottom));
    border-radius: 0 0 18px 18px;
  }

  .pro-store .purchase-footer strong,
  html.mobile-preview .purchase-footer strong,
  .pro-store.force-mobile .purchase-footer strong {
    font-size: 20px;
  }

  .pro-store .purchase-footer .primary-action,
  html.mobile-preview .purchase-footer .primary-action,
  .pro-store.force-mobile .purchase-footer .primary-action {
    min-height: 46px;
  }
}

/* Mobile category rails: GPT/AI first, social accounts directly after. */
.pro-store .category-rail-row {
  display: contents;
}

@media (max-width: 820px) {
  .pro-store .category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    margin-right: -8px;
    padding-right: 8px;
  }

  .pro-store .category-rail-row {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: auto;
    padding: 1px 2px 3px;
    scroll-snap-type: x proximity;
    scroll-padding-inline: 2px;
    scrollbar-width: none;
    touch-action: pan-x pan-y pinch-zoom;
  }

  .pro-store .category-rail-row::-webkit-scrollbar {
    display: none;
  }

  .pro-store .category-rail-row .category-tile {
    flex: 0 0 126px;
    scroll-snap-align: start;
    grid-template-columns: 32px minmax(0, 1fr);
    min-height: 46px;
    padding: 7px 8px;
    gap: 7px;
    border-radius: 13px;
    contain: layout paint;
    touch-action: pan-x pan-y pinch-zoom;
    user-select: none;
  }

  .pro-store .category-rail-row .category-tile .app-badge {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .pro-store .category-rail-row .category-tile .app-badge svg {
    width: 19px;
    height: 19px;
  }

  .pro-store .category-rail-row .category-copy strong {
    font-size: 12px;
  }

  .pro-store .category-rail-row .category-copy small {
    font-size: 10px;
  }
}

/* Final compact mobile category sizing, including the first-loading skeleton state. */
@media (max-width: 820px) {
  .pro-store .category-grid[aria-busy="true"] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .pro-store .category-grid[aria-busy="true"] .category-tile,
  .pro-store .category-rail-row .category-tile {
    height: 44px;
    min-height: 44px !important;
    padding: 6px 7px !important;
    overflow: hidden;
  }

  .pro-store .category-grid[aria-busy="true"] .category-tile {
    contain: layout paint;
    touch-action: pan-x pan-y pinch-zoom;
    user-select: none;
  }

  .pro-store .category-grid[aria-busy="true"] .category-tile {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .pro-store .category-grid[aria-busy="true"] .skeleton-icon,
  .pro-store .category-rail-row .category-tile .app-badge {
    width: 30px !important;
    height: 30px !important;
    border-radius: 10px !important;
  }

  .pro-store .category-rail-row .category-copy,
  .pro-store .category-grid[aria-busy="true"] .skeleton-copy {
    min-width: 0;
    overflow: hidden;
  }

  .pro-store .category-rail-row .category-copy strong,
  .pro-store .category-rail-row .category-copy small {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.15;
  }

  .pro-store .product-card,
  .pro-store.force-mobile .product-card {
    content-visibility: auto;
    contain: layout paint style;
    contain-intrinsic-size: 104px 100%;
  }

  .pro-store .load-more-products,
  .pro-store.force-mobile .load-more-products {
    width: 100%;
    min-height: 44px;
    border: 1px solid rgba(216, 191, 122, 0.28);
    border-radius: 13px;
    background: rgba(216, 191, 122, 0.08);
    color: var(--text);
    font-weight: 900;
  }

  .pro-store .load-more-products small,
  .pro-store.force-mobile .load-more-products small {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 10px;
  }

  .pro-store .product-list[aria-busy="true"] .product-card {
    min-height: 76px !important;
    padding: 10px !important;
    grid-template-columns: 38px minmax(0, 1fr) !important;
    gap: 10px !important;
  }

  .pro-store .product-list[aria-busy="true"] .skeleton-icon {
    width: 38px !important;
    height: 38px !important;
    border-radius: 12px !important;
  }
}

/* Let vertical page scrolling win when a mobile swipe starts on the account-category rails. */
@media (max-width: 820px) {
  .pro-store .category-rail-row {
    overscroll-behavior-x: auto !important;
    scroll-snap-type: none !important;
    touch-action: auto !important;
  }

  .pro-store .category-rail-row .category-tile {
    scroll-snap-align: none !important;
    touch-action: auto !important;
  }
}

/* Final mobile checkout visibility: keep total and action obvious without covering form fields. */
@media (max-width: 640px) {
  .pro-store .purchase-modal,
  html.mobile-preview .purchase-modal,
  .pro-store.force-mobile .purchase-modal {
    align-items: end;
    padding: 8px;
  }

  .pro-store .purchase-card,
  html.mobile-preview .purchase-card,
  .pro-store.force-mobile .purchase-card {
    max-height: calc(100dvh - 10px);
    padding: 13px 13px 0;
    overflow-y: auto;
    scrollbar-width: none;
    scroll-padding-bottom: 92px;
  }

  .pro-store .purchase-card::-webkit-scrollbar,
  html.mobile-preview .purchase-card::-webkit-scrollbar,
  .pro-store.force-mobile .purchase-card::-webkit-scrollbar {
    display: none;
  }

  .pro-store .purchase-terms,
  html.mobile-preview .purchase-terms,
  .pro-store.force-mobile .purchase-terms {
    margin-bottom: 6px;
    padding: 9px 10px;
  }

  .pro-store .purchase-footer,
  html.mobile-preview .purchase-footer,
  .pro-store.force-mobile .purchase-footer {
    position: sticky;
    right: 0;
    bottom: 0 !important;
    left: 0;
    display: grid !important;
    grid-template-columns: minmax(88px, 0.55fr) minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 9px !important;
    margin: 6px -13px 0 !important;
    padding: 9px 13px calc(10px + env(safe-area-inset-bottom)) !important;
    border-radius: 0 0 18px 18px !important;
    background:
      linear-gradient(180deg, rgba(9, 9, 9, 0.82), #000 45%),
      #000 !important;
  }

  .pro-store .purchase-footer > div,
  html.mobile-preview .purchase-footer > div,
  .pro-store.force-mobile .purchase-footer > div {
    min-width: 0;
  }

  .pro-store .purchase-footer span,
  html.mobile-preview .purchase-footer span,
  .pro-store.force-mobile .purchase-footer span {
    font-size: 10px;
  }

  .pro-store .purchase-footer strong,
  html.mobile-preview .purchase-footer strong,
  .pro-store.force-mobile .purchase-footer strong {
    overflow: hidden;
    margin-top: 1px;
    font-size: 19px !important;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .pro-store .purchase-footer .primary-action,
  html.mobile-preview .purchase-footer .primary-action,
  .pro-store.force-mobile .purchase-footer .primary-action {
    min-height: 44px !important;
    min-width: 0 !important;
    width: 100% !important;
    border-radius: 13px;
    font-size: 14px;
  }

  .pro-store .purchase-head,
  html.mobile-preview .purchase-head,
  .pro-store.force-mobile .purchase-head {
    padding-right: 42px;
  }

  .pro-store .purchase-head h2,
  html.mobile-preview .purchase-head h2,
  .pro-store.force-mobile .purchase-head h2 {
    margin-bottom: 4px;
    font-size: 22px;
    line-height: 1.08;
  }

  .pro-store .purchase-head p:not(.eyebrow),
  html.mobile-preview .purchase-head p:not(.eyebrow),
  .pro-store.force-mobile .purchase-head p:not(.eyebrow) {
    display: none;
  }

  .pro-store .purchase-product,
  html.mobile-preview .purchase-product,
  .pro-store.force-mobile .purchase-product {
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 10px;
    padding: 10px;
    border-radius: 15px;
  }

  .pro-store .purchase-product .app-badge,
  html.mobile-preview .purchase-product .app-badge,
  .pro-store.force-mobile .purchase-product .app-badge {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .pro-store .purchase-product strong,
  html.mobile-preview .purchase-product strong,
  .pro-store.force-mobile .purchase-product strong {
    font-size: 14px;
  }

  .pro-store .purchase-product small,
  html.mobile-preview .purchase-product small,
  .pro-store.force-mobile .purchase-product small {
    margin-top: 2px;
  }

  .pro-store .purchase-product b,
  html.mobile-preview .purchase-product b,
  .pro-store.force-mobile .purchase-product b {
    font-size: 18px;
  }

  .pro-store .purchase-access,
  html.mobile-preview .purchase-access,
  .pro-store.force-mobile .purchase-access,
  .pro-store .crypto-help,
  html.mobile-preview .crypto-help,
  .pro-store.force-mobile .crypto-help {
    gap: 8px;
    padding: 10px;
    border-radius: 15px;
  }

  .pro-store .purchase-access.access-ready::after,
  html.mobile-preview .purchase-access.access-ready::after,
  .pro-store.force-mobile .purchase-access.access-ready::after {
    padding: 3px 8px;
    font-size: 10px;
  }

  .pro-store .purchase-access-actions,
  html.mobile-preview .purchase-access-actions,
  .pro-store.force-mobile .purchase-access-actions {
    grid-template-columns: minmax(0, 1fr) minmax(82px, auto);
    gap: 7px;
  }

  .pro-store .purchase-access-actions input,
  html.mobile-preview .purchase-access-actions input,
  .pro-store.force-mobile .purchase-access-actions input {
    grid-column: 1 / -1;
  }

  .pro-store .purchase-access-actions input,
  .pro-store .purchase-access-actions button,
  .pro-store .purchase-fields input,
  .pro-store .purchase-fields select,
  html.mobile-preview .purchase-access-actions input,
  html.mobile-preview .purchase-access-actions button,
  html.mobile-preview .purchase-fields input,
  html.mobile-preview .purchase-fields select,
  .pro-store.force-mobile .purchase-access-actions input,
  .pro-store.force-mobile .purchase-access-actions button,
  .pro-store.force-mobile .purchase-fields input,
  .pro-store.force-mobile .purchase-fields select {
    min-height: 39px;
    border-radius: 12px;
  }

  .pro-store .crypto-help p,
  html.mobile-preview .crypto-help p,
  .pro-store.force-mobile .crypto-help p {
    display: none;
  }
}

/* Mobile category comfort: two slimmer rails make the catalog feel lighter and faster to scan. */
@media (max-width: 820px) {
  .pro-store .category-grid {
    gap: 5px !important;
    margin-top: 4px;
  }

  .pro-store .category-rail-row {
    gap: 5px !important;
    padding: 0 2px 2px !important;
  }

  .pro-store .category-grid[aria-busy="true"] .category-tile,
  .pro-store .category-rail-row .category-tile {
    flex: 0 0 104px !important;
    grid-template-columns: 28px minmax(0, 1fr) !important;
    height: 40px !important;
    min-height: 40px !important;
    padding: 5px 6px !important;
    gap: 5px !important;
    border-radius: 11px !important;
  }

  .pro-store .category-grid[aria-busy="true"] .skeleton-icon,
  .pro-store .category-rail-row .category-tile .app-badge {
    width: 28px !important;
    height: 28px !important;
    border-radius: 9px !important;
  }

  .pro-store .category-rail-row .category-tile .app-badge svg {
    width: 16px !important;
    height: 16px !important;
  }

  .pro-store .category-rail-row .category-copy strong {
    font-size: 11px !important;
    line-height: 1.05;
  }

  .pro-store .category-rail-row .category-copy small {
    font-size: 9px !important;
    line-height: 1.05;
  }

  .pro-store .category-rail-row {
    touch-action: pan-y pinch-zoom !important;
    cursor: grab;
  }

  .pro-store .category-rail-row.is-horizontal-drag {
    scroll-behavior: auto !important;
    cursor: grabbing;
  }

  .pro-store .category-rail-row.is-horizontal-drag .category-tile {
    pointer-events: none;
  }
}

/* Mobile payment page readability: amount, network, and order code should be easy to verify. */
@media (max-width: 640px) {
  .pro-store .payment-card,
  .pro-store.force-mobile .payment-card {
    padding: 12px;
    border-radius: 15px;
  }

  .pro-store .payment-hero > div:first-child,
  .pro-store.force-mobile .payment-hero > div:first-child {
    border-color: rgba(216, 191, 122, 0.30);
    background:
      radial-gradient(circle at 100% 0%, rgba(216, 191, 122, 0.16), transparent 42%),
      rgba(216, 191, 122, 0.055);
  }

  .pro-store .payment-summary span:last-child,
  .pro-store.force-mobile .payment-summary span:last-child {
    border-color: rgba(216, 191, 122, 0.22);
    background: rgba(216, 191, 122, 0.06);
    color: #f3dfaa;
  }

  .pro-store .payment-actions,
  .pro-store.force-mobile .payment-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .pro-store .payment-actions button,
  .pro-store.force-mobile .payment-actions button {
    min-height: 38px;
    padding: 0 8px;
    border-radius: 11px;
    font-size: 12px;
  }

  .pro-store .payment-actions button:nth-child(3),
  .pro-store.force-mobile .payment-actions button:nth-child(3) {
    grid-column: 1 / -1;
  }

  .pro-store .payment-qr,
  .pro-store.force-mobile .payment-qr {
    justify-self: center;
    width: min(210px, 100%) !important;
  }

  .pro-store .network-warning,
  .pro-store.force-mobile .network-warning {
    line-height: 1.45;
  }

  .pro-store .wallet code,
  .pro-store.force-mobile .wallet code {
    user-select: all;
    -webkit-user-select: all;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    line-height: 1.45;
  }
}

/* Final visual polish pass: keep the global storefront pure black with measured gold accents. */
.pro-store .global-header .brand-mark {
  border-color: rgba(216, 191, 122, 0.42);
  background:
    radial-gradient(circle at 34% 20%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(145deg, #15191c, #030405);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 30px rgba(0, 0, 0, 0.34);
}

.pro-store .global-header .brand-mark img {
  filter: drop-shadow(0 7px 16px rgba(216, 191, 122, 0.22));
}

.pro-store .category-tile:hover,
.pro-store .category-tile.active,
.pro-store .product-card:hover,
.pro-store .product-card.active {
  border-color: rgba(216, 191, 122, 0.34) !important;
  background:
    radial-gradient(circle at 0 0, rgba(216, 191, 122, 0.09), transparent 34%),
    linear-gradient(180deg, rgba(11, 13, 15, 0.98), rgba(0, 0, 0, 0.98)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 16px 38px rgba(0, 0, 0, 0.25);
}

.pro-store .product-card.active {
  box-shadow:
    inset 3px 0 0 rgba(216, 191, 122, 0.88),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 20px 46px rgba(0, 0, 0, 0.3);
}

.pro-store .product-card.active::before {
  background: linear-gradient(180deg, #e4c778, #b98d35) !important;
}

.pro-store .product-card .price {
  color: #e9cf82;
}

.pro-store .product-card.active .select-pill {
  background: linear-gradient(180deg, #e8ca73, #b98d35);
  border-color: rgba(255, 225, 142, 0.52);
  color: #100d08;
}

.pro-store .product-card.active .stock-pill {
  border-color: rgba(216, 191, 122, 0.42);
  background: rgba(216, 191, 122, 0.1);
  color: #f0d99a;
}

@media (max-width: 640px) {
  .pro-store .product-card:hover {
    transform: none;
  }

  .pro-store .product-card.active {
    box-shadow: inset 3px 0 0 rgba(216, 191, 122, 0.88);
  }
}

/* Mobile list density pass: keep global catalog rows compact and still obviously purchasable. */
@media (max-width: 820px) {
  .pro-store .product-list,
  .pro-store.force-mobile .product-list {
    gap: 8px !important;
    padding-bottom: 94px !important;
  }

  .pro-store .product-card,
  .pro-store.force-mobile .product-card {
    grid-template-columns: 42px minmax(0, 1fr) !important;
    min-height: 82px !important;
    padding: 10px !important;
    gap: 8px 10px !important;
    border-radius: 14px !important;
  }

  .pro-store .product-card .app-badge,
  .pro-store.force-mobile .product-card .app-badge {
    width: 42px !important;
    height: 42px !important;
    border-radius: 13px !important;
  }

  .pro-store .product-card .app-badge svg,
  .pro-store.force-mobile .product-card .app-badge svg {
    width: 24px !important;
    height: 24px !important;
  }

  .pro-store .product-kicker,
  .pro-store.force-mobile .product-kicker {
    margin-bottom: 2px !important;
    font-size: 10px !important;
  }

  .pro-store .product-copy h3,
  .pro-store.force-mobile .product-copy h3 {
    margin-bottom: 3px !important;
    font-size: 14px !important;
    line-height: 1.16 !important;
  }

  .pro-store .product-copy p,
  .pro-store .product-tags,
  .pro-store.force-mobile .product-copy p,
  .pro-store.force-mobile .product-tags {
    display: none !important;
  }

  .pro-store .product-side,
  .pro-store.force-mobile .product-side {
    grid-column: 1 / -1 !important;
    display: grid !important;
    grid-template-columns: auto auto minmax(66px, 1fr) !important;
    align-items: center !important;
    gap: 6px !important;
    justify-items: stretch !important;
  }

  .pro-store .product-side .price,
  .pro-store.force-mobile .product-side .price {
    font-size: 18px !important;
    line-height: 1 !important;
  }

  .pro-store .stock-pill,
  .pro-store .select-pill,
  .pro-store.force-mobile .stock-pill,
  .pro-store.force-mobile .select-pill {
    min-height: 25px !important;
    padding: 0 8px !important;
    border-radius: 9px !important;
    font-size: 11px !important;
  }

  .pro-store .select-pill,
  .pro-store.force-mobile .select-pill {
    justify-content: center !important;
  }
}

/* Checkout step guidance: after access is ready, make the required confirmation feel like the next action. */
.pro-store .purchase-terms.next-step {
  border-color: rgba(216, 191, 122, 0.36);
  background:
    radial-gradient(circle at 100% 0%, rgba(216, 191, 122, 0.12), transparent 34%),
    rgba(216, 191, 122, 0.055);
}

.pro-store .purchase-terms.next-step::after {
  content: "Next: check this box, then create the order.";
  display: block;
  margin-top: 7px;
  color: #e4c778;
  font-size: 12px;
  font-weight: 800;
}

.pro-store .purchase-terms.ready-step {
  border-color: rgba(104, 182, 157, 0.34);
  background: rgba(104, 182, 157, 0.055);
}

/* Payment clarity pass: keep crypto amount, address, and network warnings legible. */
.pro-store .payment-card,
.pro-store.force-mobile .payment-card {
  border-color: rgba(216, 191, 122, 0.22);
  background:
    radial-gradient(circle at 100% 0, rgba(216, 191, 122, 0.08), transparent 32%),
    #030405;
}

.pro-store .payment-hero > div:first-child,
.pro-store.force-mobile .payment-hero > div:first-child {
  border-color: rgba(216, 191, 122, 0.30);
  background: rgba(216, 191, 122, 0.055);
}

.pro-store .payment-hero strong,
.pro-store .payment-summary b,
.pro-store.force-mobile .payment-hero strong,
.pro-store.force-mobile .payment-summary b {
  font-variant-numeric: tabular-nums;
}

.pro-store .payment-summary span,
.pro-store.force-mobile .payment-summary span {
  background: rgba(255, 255, 255, 0.026);
}

.pro-store .payment-qr,
.pro-store.force-mobile .payment-qr {
  background: #fff;
  padding: 8px;
  border-radius: 14px;
}

.pro-store .wallet code,
.pro-store.force-mobile .wallet code {
  user-select: all;
  -webkit-user-select: all;
  word-break: break-all;
}

.pro-store .network-warning,
.pro-store.force-mobile .network-warning {
  border-color: rgba(216, 191, 122, 0.24);
  background: rgba(216, 191, 122, 0.055);
}

@media (max-width: 820px) {
  .pro-store .payment-card,
  .pro-store.force-mobile .payment-card {
    padding: 12px !important;
    border-radius: 15px !important;
  }

  .pro-store .payment-summary,
  .pro-store.force-mobile .payment-summary {
    grid-template-columns: 1fr !important;
    gap: 7px !important;
  }

  .pro-store .payment-hero,
  .pro-store.force-mobile .payment-hero {
    gap: 10px !important;
  }

  .pro-store .payment-hero > div,
  .pro-store.force-mobile .payment-hero > div {
    min-height: 72px !important;
    padding: 10px !important;
  }

  .pro-store .payment-card strong,
  .pro-store.force-mobile .payment-card strong {
    font-size: 26px !important;
  }

  .pro-store .payment-qr,
  .pro-store.force-mobile .payment-qr {
    justify-self: center;
    width: min(188px, 100%) !important;
  }
}

/* Empty-state clarity pass: signed-in buyers should see the next action immediately. */
.pro-store .rich-empty,
.pro-store.force-mobile .rich-empty {
  border-color: rgba(216, 191, 122, 0.18);
  background:
    radial-gradient(circle at 100% 0, rgba(216, 191, 122, 0.08), transparent 34%),
    #030405;
}

.pro-store .rich-empty .inline-action,
.pro-store.force-mobile .rich-empty .inline-action {
  border-color: rgba(216, 191, 122, 0.34);
  background: linear-gradient(180deg, #e8ca73, #b98d35);
  color: #100d08;
}

@media (max-width: 820px) {
  .pro-store .rich-empty,
  .pro-store.force-mobile .rich-empty {
    justify-items: start;
    text-align: left;
    padding: 14px !important;
    border-radius: 15px !important;
  }

  .pro-store .rich-empty p,
  .pro-store.force-mobile .rich-empty p {
    margin-left: 0;
    margin-right: 0;
  }
}

/* Language switcher: light enough for mobile, visible enough for international buyers. */
.language-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  margin-left: 2px;
  padding: 4px 5px 4px 10px;
  border: 1px solid rgba(217, 189, 114, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(247, 248, 243, 0.66);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.language-control select {
  min-width: 92px;
  min-height: 30px;
  border: 1px solid rgba(217, 189, 114, 0.26);
  border-radius: 999px;
  background: #050708;
  color: #f7f2df;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  outline: none;
  padding: 0 24px 0 10px;
}

.language-control select:focus {
  border-color: rgba(217, 189, 114, 0.62);
  box-shadow: 0 0 0 3px rgba(217, 189, 114, 0.10);
}

/* Pseudo labels cannot be translated reliably, so keep the guided text in real DOM only. */
.terms.needs-check span::after,
.purchase-access.access-ready::after,
.pro-store .purchase-terms.next-step::after {
  content: none !important;
  display: none !important;
}

@media (max-width: 860px) {
  .language-control {
    align-self: flex-start;
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .language-control {
    position: absolute;
    top: 12px;
    right: 14px;
    min-height: 30px;
    padding: 3px;
    background: rgba(6, 9, 12, 0.78);
  }

  .language-control span {
    display: none;
  }

  .language-control select {
    min-width: 72px;
    min-height: 26px;
    padding: 0 18px 0 8px;
    font-size: 11px;
  }
}
