.store-page {
  background:
    radial-gradient(circle at 50% 8%, rgba(76, 201, 240, 0.14), transparent 20%),
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.06) 0 1px, transparent 1.6px),
    radial-gradient(circle at 84% 22%, rgba(255, 255, 255, 0.05) 0 1px, transparent 1.4px),
    radial-gradient(circle at 64% 48%, rgba(255, 255, 255, 0.04) 0 1px, transparent 1.5px),
    linear-gradient(180deg, #050608 0%, #090a0d 38%, #0c0d11 100%);
  background-size: auto, 180px 180px, 220px 220px, 260px 260px, auto;
}

.store-header {
  position: relative;
  z-index: 20;
}

.store-page {
  --scroll-progress: 0;
}

.store-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at calc(12% + (var(--scroll-progress) * 18%)) calc(8% + (var(--scroll-progress) * 12%)), rgba(76, 201, 240, 0.18), transparent 22%),
    radial-gradient(circle at calc(82% - (var(--scroll-progress) * 14%)) calc(16% + (var(--scroll-progress) * 18%)), rgba(11, 113, 170, 0.18), transparent 24%);
}

.store-topbar {
  padding-top: 18px;
}

.store-topbar-inner {
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto auto;
  gap: 16px;
  border-radius: 24px;
}

.store-brand {
  white-space: nowrap;
}

.store-brand i,
.nav-link i,
.btn i,
.store-stage-title i,
.store-stage-count i,
.eyebrow i,
.store-hero-kicker i,
.store-price-stack i,
.game-footer .price i,
.pill i,
.detail-item span i,
.detail-copy-block strong i,
.profile-meta p i {
  opacity: 0.92;
}

.nav-link,
.btn,
.store-stage-title,
.store-stage-count,
.store-price-stack small,
.store-products-count,
.pill,
.eyebrow,
.store-chip,
.detail-item span,
.detail-copy-block strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.store-searchbox {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.store-search-label {
  color: var(--text-secondary);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.store-searchbox input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--text-primary);
  background: transparent;
  font-weight: 800;
}

.store-searchbox input::placeholder {
  color: rgba(255, 255, 255, 0.44);
}

.store-search-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(7, 11, 16, 0.96);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.search-result,
.nav-dropdown-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  transition: background 180ms ease, transform 180ms ease;
}

.search-result:hover,
.nav-dropdown-item:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
}

.search-result-thumb {
  width: 56px;
  height: 56px;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.search-result-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-result-copy {
  display: grid;
  gap: 4px;
}

.search-result-copy strong {
  font-size: 1rem;
}

.search-result-empty {
  padding: 10px 12px;
  color: var(--text-secondary);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 18px;
}

.nav-dropdown-trigger {
  border: 0;
  padding: 0;
  background: transparent;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  z-index: 40;
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(7, 11, 16, 0.96);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.32);
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown-item {
  grid-template-columns: 1fr auto;
}

.nav-dropdown-item small {
  color: var(--text-secondary);
}

.account-menu {
  position: relative;
}

.account-menu::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 16px;
}

.account-menu-trigger {
  min-width: 0;
}

.account-menu-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 240px;
  z-index: 45;
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(7, 11, 16, 0.96);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.32);
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.account-menu:hover .account-menu-panel,
.account-menu:focus-within .account-menu-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.account-menu-panel .nav-dropdown-item {
  grid-template-columns: auto 1fr;
  width: 100%;
}

.account-menu-item {
  border: 0;
  background: transparent;
  color: var(--text-primary);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.account-menu-logout {
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.store-searchbox input::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.store-nav {
  justify-content: flex-end;
}

.store-actions {
  justify-content: flex-end;
}

.storefront-main {
  padding-bottom: 40px;
}

.store-stage-section {
  padding: 10px 0 20px;
}

.store-stage {
  display: grid;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.store-stage::before {
  display: none;
}

.store-stage-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.store-stage-title {
  margin: 0;
  font-family: "Nunito", "Segoe UI", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.store-stage-count {
  display: none;
}

.store-hero-showcase {
  display: grid;
}

.store-hero-stage {
  display: grid;
  grid-template-columns: minmax(140px, 180px) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.store-hero-stage-solo {
  grid-template-columns: 1fr;
}

.store-hero-side-column {
  display: grid;
  gap: 12px;
}

.store-hero-side-card,
.store-hero-feature-card,
.store-hero-placeholder {
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.store-hero-side-card:hover,
.store-hero-feature-card:hover,
.store-product-card:hover,
.game-card:hover,
.category-card:hover,
.detail-surface:hover,
.quick-actions-card:hover,
.detail-poster:hover {
  transform: translateY(-4px);
  border-color: rgba(76, 201, 240, 0.18);
  box-shadow: 0 28px 68px rgba(0, 0, 0, 0.32);
}

.store-hero-side-card,
.store-hero-placeholder {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 22px;
}

.store-hero-side-card strong,
.store-hero-placeholder strong,
.store-hero-feature-card h2 {
  margin: 0;
}

.store-hero-side-copy {
  display: grid;
  gap: 4px;
}

.store-hero-side-copy span {
  color: var(--text-secondary);
}

.store-hero-side-copy span,
.store-stage-count,
.store-products-count,
.store-price-stack small,
.store-product-meta span,
.price,
.pill,
.detail-item span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.store-hero-side-thumb,
.store-hero-feature-media,
.store-hero-side-thumb-static {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(11, 113, 170, 0.18), rgba(76, 201, 240, 0.1));
}

.store-hero-side-thumb {
  min-height: 112px;
}

.store-hero-side-thumb img,
.store-hero-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-hero-side-thumb-static {
  min-height: 112px;
}

.store-hero-side-card strong,
.store-hero-placeholder span {
  color: var(--text-primary);
}

.store-hero-feature-card {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 600px;
  border-radius: 28px;
}

.store-hero-feature-card {
  color: inherit;
}

.store-hero-feature-media,
.store-hero-feature-overlay {
  position: absolute;
  inset: 0;
}

.store-hero-feature-overlay {
  background:
    linear-gradient(180deg, rgba(4, 5, 7, 0.04) 0%, rgba(4, 5, 7, 0.28) 36%, rgba(4, 5, 7, 0.92) 100%),
    linear-gradient(120deg, rgba(76, 201, 240, 0.14), transparent 38%);
}

.store-hero-feature-body {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  gap: 14px;
  padding: 28px;
}

.store-hero-kicker {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.store-hero-feature-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.store-hero-feature-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.store-hero-feature-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  min-height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f8fbff;
  font-weight: 700;
}

.store-hero-placeholder {
  min-height: 320px;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.store-hero-placeholder strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.store-hero-placeholder span {
  color: var(--text-secondary);
}

.store-toolbar-shell {
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(7, 8, 11, 0.72);
  backdrop-filter: blur(12px);
}

.store-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
}

.store-category-rail {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.store-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.store-chip small {
  color: rgba(255, 255, 255, 0.46);
}

.store-chip:hover {
  transform: translateY(-1px);
  color: var(--text-primary);
}

.store-chip.is-active {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.store-chip.is-active small {
  color: var(--text-primary);
}

.store-toolbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.store-products-count {
  color: var(--text-secondary);
  white-space: nowrap;
}

.store-sortbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
}

.store-sortbox select {
  border: 0;
  outline: 0;
  color: var(--text-primary);
  background: transparent;
}

.store-catalog-section {
  padding-top: 28px;
}

.store-section-heading {
  margin-bottom: 16px;
}

.storefront-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.store-product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  min-height: 100%;
}

.store-product-media {
  display: block;
  position: relative;
  min-height: 220px;
  aspect-ratio: 16 / 9;
  padding: 12px;
  background: linear-gradient(135deg, rgba(11, 113, 170, 0.18), rgba(76, 201, 240, 0.08));
}

.store-product-media img,
.store-product-placeholder {
  width: 100%;
  height: 100%;
}

.store-product-media img {
  display: block;
  object-fit: contain;
}

.store-product-art {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 18px;
}

.store-product-placeholder {
  background: linear-gradient(135deg, rgba(76, 201, 240, 0.18), rgba(255, 255, 255, 0.04));
}

.store-product-overlay {
  position: absolute;
  inset: 12px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(4, 5, 7, 0.02), rgba(4, 5, 7, 0.38));
  pointer-events: none;
}

.store-product-body {
  display: grid;
  gap: 18px;
  padding: 20px;
}

.store-product-heading {
  display: grid;
  gap: 12px;
}

.store-product-body h3 {
  margin: 0;
  font-family: "Nunito", "Segoe UI", sans-serif;
  font-size: 1.5rem;
  line-height: 1.05;
}

.store-product-title {
  transition: color 180ms ease;
}

.store-product-title:hover {
  color: #f8fbff;
}

.store-product-footer {
  display: grid;
  gap: 16px;
  margin-top: auto;
}

.store-price-stack {
  display: grid;
  gap: 4px;
}

.store-price-stack small {
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.store-price-stack .price-was,
.price-stack small,
.detail-price-was {
  color: rgba(202, 214, 225, 0.7);
  text-decoration: line-through;
  text-transform: none;
  letter-spacing: 0;
}

.store-price-stack strong {
  font-family: "Nunito", "Segoe UI", sans-serif;
  font-size: 2rem;
  color: #37e07c;
}

.tag-discount {
  background: rgba(76, 201, 240, 0.12);
  border-color: rgba(76, 201, 240, 0.24);
  color: #86e5ff;
}

.store-buy-btn {
  width: 100%;
}

.store-empty-state {
  grid-column: 1 / -1;
  padding: 34px;
}

.store-empty-state p {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 28px;
  align-items: stretch;
  padding: 26px 0 42px;
}

.hero-copy,
.hero-panel {
  padding: 30px;
}

.hero-copy {
  display: grid;
  gap: 22px;
}

.hero-copy p {
  max-width: 700px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-stat {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-stat strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.5rem;
  font-family: "Nunito", "Segoe UI", sans-serif;
}

.hero-panel {
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(76, 201, 240, 0.12);
  filter: blur(10px);
}

.stack-list,
.detail-list,
.meta-list,
.news-list {
  display: grid;
  gap: 14px;
}

.stack-item,
.detail-item,
.news-card {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.stack-item strong,
.detail-item strong,
.news-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.feature-grid,
.category-grid,
.library-grid,
.store-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.game-card,
.category-card {
  overflow: hidden;
}

.game-thumb,
.gallery-thumb,
.category-thumb {
  position: relative;
  min-height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(11, 113, 170, 0.16), rgba(76, 201, 240, 0.08));
}

.gallery-thumb img,
.category-thumb img,
.detail-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-thumb img,
.game-thumb-art {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.game-body,
.category-body {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.game-body h3,
.category-body h3,
.profile-card h2,
.detail-copy h1,
.detail-copy h2 {
  margin: 0;
}

.game-body p,
.category-body p,
.detail-copy p,
.profile-meta p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.7;
}

.game-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.price {
  font-size: 1.12rem;
  font-weight: 700;
  color: #37e07c;
}

.price-stack {
  display: grid;
  gap: 4px;
}

.dashboard-shell {
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.profile-card,
.launcher-card,
.quick-actions-card,
.detail-banner,
.detail-poster,
.category-cloud,
.detail-surface {
  padding: 24px;
}

.profile-card {
  display: grid;
  gap: 18px;
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.profile-avatar {
  width: 72px;
  height: 72px;
  border-radius: 24px;
}

.profile-meta {
  display: grid;
  gap: 6px;
}

.library-section,
.keys-section,
.store-section,
.categories-section {
  display: grid;
  gap: 18px;
}

.quick-actions-card {
  display: grid;
  gap: 18px;
}

.category-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 380px);
  gap: 28px;
  align-items: start;
  padding: 26px 0 30px;
}

.detail-media-column {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
  min-width: 0;
}

.detail-banner {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 18px;
  min-height: 0;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(18, 20, 26, 0.96), rgba(10, 12, 16, 0.92)),
    radial-gradient(circle at 16% 12%, rgba(76, 201, 240, 0.12), transparent 32%);
}

.detail-banner-stage {
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(11, 113, 170, 0.16), rgba(76, 201, 240, 0.06)),
    #0c1118;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  cursor: zoom-in;
}

.detail-banner-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-banner-stage .detail-banner-art {
  position: absolute;
  inset: 0;
}

.detail-banner-stage .detail-banner-art.is-incoming {
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 220ms ease, transform 220ms ease;
}

.detail-banner-stage .detail-banner-art.is-incoming.is-visible {
  opacity: 1;
  transform: scale(1);
}

.detail-stage-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  color: #eef8ff;
  background: rgba(9, 13, 19, 0.72);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease;
}

.detail-stage-nav:hover {
  background: rgba(18, 27, 38, 0.92);
  transform: translateY(-50%) scale(1.04);
}

.detail-stage-nav.is-prev {
  left: 16px;
}

.detail-stage-nav.is-next {
  right: 16px;
}

.detail-stage-nav.is-hidden {
  display: none;
}

.detail-poster {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 16px;
  min-height: 0;
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(16, 18, 24, 0.94), rgba(10, 12, 16, 0.9));
  overflow: hidden;
}

.detail-gallery-rail {
  display: grid;
  gap: 12px;
  height: 100%;
  overflow: auto;
}

.detail-gallery-thumb,
.gallery-shot {
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.detail-gallery-thumb:hover,
.gallery-shot:hover,
.detail-gallery-thumb.is-active,
.gallery-shot.is-active {
  border-color: rgba(76, 201, 240, 0.34);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
  transform: translateY(-2px);
}

.detail-gallery-thumb-art {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.detail-thumb-strip {
  width: 100%;
  max-width: 100%;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior-x: contain;
}

.detail-thumb-strip::-webkit-scrollbar {
  display: none;
}

.detail-thumb-strip.is-dragging {
  cursor: grabbing;
}

.detail-thumb-strip.is-empty {
  min-height: 76px;
  align-items: center;
  justify-content: center;
}

.detail-thumb-strip .muted {
  white-space: nowrap;
}

.detail-gallery-thumb {
  flex: 0 0 156px;
  user-select: none;
}

.detail-copy {
  display: grid;
  gap: 18px;
  align-self: start;
  justify-self: stretch;
  position: sticky;
  top: 108px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 28px;
  border-color: rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(24, 22, 26, 0.98) 0%, rgba(14, 16, 20, 0.96) 100%),
    radial-gradient(circle at top right, rgba(76, 201, 240, 0.08), transparent 42%);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.detail-copy > * {
  min-width: 0;
  max-width: 100%;
}

.detail-copy-head {
  display: grid;
  gap: 12px;
}

.detail-copy-head h1 {
  font-size: clamp(1.95rem, 3.2vw, 3.55rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-all;
  hyphens: none;
}

.detail-price-strip {
  display: grid;
  gap: 4px;
  min-width: 0;
  max-width: 100%;
  padding: 20px 0 6px;
  border-radius: 24px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.detail-price-value {
  font-family: "Nunito", "Segoe UI", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 900;
  color: #37e07c;
  letter-spacing: -0.04em;
  line-height: 0.92;
  text-shadow: 0 8px 24px rgba(55, 224, 124, 0.18);
}

.detail-price-badge {
  width: fit-content;
}

.detail-price-note {
  color: #b8c8d6;
  font-size: 1rem;
  line-height: 1.65;
}

.detail-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
}

.detail-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 4, 7, 0.84);
  backdrop-filter: blur(10px);
}

.detail-lightbox-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  width: min(100vw - 48px, 1400px);
  height: 100%;
  margin: 0 auto;
}

.detail-lightbox-media {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  margin: 0;
}

.detail-lightbox-image {
  max-width: 100%;
  max-height: min(88vh, 1080px);
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
}

.detail-lightbox-close,
.detail-lightbox-nav {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  color: #f8fdff;
  background: rgba(15, 21, 29, 0.84);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.detail-lightbox-close {
  position: absolute;
  top: 24px;
  right: 0;
}

.detail-cta-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.detail-action-primary,
.detail-action-secondary {
  display: inline-flex;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 56px;
  font-weight: 800;
}

.detail-benefit-grid {
  display: grid;
  gap: 14px;
}

.detail-benefit-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.detail-benefit-card i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.detail-benefit-card strong,
.site-footer-brand strong,
.cart-line-copy strong,
.cart-payment-state strong,
.cart-card-head h2 {
  display: block;
  margin-bottom: 4px;
}

.detail-benefit-card span,
.site-footer-brand p,
.cart-payment-state p {
  color: var(--text-secondary);
}

.detail-copy-stack {
  display: grid;
  gap: 14px;
}

.detail-copy-block {
  display: grid;
  gap: 10px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
}

.detail-copy-block strong {
  font-size: 0.96rem;
}

.detail-rich-copy {
  margin: 0;
}

.detail-description-text {
  white-space: pre-line;
}

.detail-description-clamped {
  display: -webkit-box;
  line-clamp: 5;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.detail-description-clamped.is-expanded {
  display: block;
  line-clamp: unset;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.detail-more-btn {
  justify-self: start;
}

.detail-panels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.detail-surface {
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(18, 20, 25, 0.94), rgba(11, 13, 17, 0.92));
}

.detail-about-surface {
  width: 100%;
}

.detail-about-copy {
  gap: 16px;
}

.gallery-shot {
  aspect-ratio: 16 / 9;
}

.gallery-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.keys-table-card {
  padding: 12px 14px;
}

.key-game-cell {
  display: flex;
  align-items: center;
}

.key-game-thumb {
  width: 108px;
  height: 64px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.key-code-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #eef8ff;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.requirements-box {
  white-space: pre-line;
  color: var(--text-secondary);
  line-height: 1.7;
}

.hero-copy,
.hero-panel,
.game-card,
.category-card,
.profile-card,
.launcher-card,
.quick-actions-card,
.detail-banner,
.detail-poster,
.detail-surface,
.category-cloud {
  animation: rise-in 500ms ease both;
}

.store-sortbox select,
.store-sortbox option {
  color: #eef8ff;
  background: #0f1722;
}

.site-footer {
  margin-top: 40px;
  padding: 28px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(5, 8, 12, 0.72);
}

.site-footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 20px;
  align-items: center;
}

.site-footer-brand {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.site-footer-links a {
  color: var(--text-secondary);
}

.site-footer-links a:hover {
  color: var(--text-primary);
}

.cart-page-shell {
  min-height: calc(100vh - 240px);
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 22px;
  align-items: start;
}

.cart-column {
  display: grid;
  gap: 18px;
}

.cart-card {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.cart-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cart-items-list {
  display: grid;
  gap: 14px;
}

.cart-line {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.cart-line-thumb {
  display: block;
  width: 116px;
  height: 72px;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.cart-line-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.cart-line-copy {
  display: grid;
  gap: 8px;
}

.cart-line-price,
.cart-summary-price,
.cart-summary-total,
.search-result-price {
  color: #37e07c;
  font-weight: 800;
}

.cart-line-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-qty-value {
  min-width: 28px;
  text-align: center;
  font-weight: 800;
}

.cart-qty-btn,
.cart-remove-btn {
  min-width: 42px;
  padding: 0;
}

.cart-summary {
  display: grid;
  gap: 18px;
}

.cart-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--text-secondary);
}

.cart-summary-row-total {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cart-checkout-btn {
  width: 100%;
  color: #f4fff8;
  border: 1px solid rgba(111, 232, 165, 0.26);
  background: linear-gradient(135deg, #17894c, #24c16a);
  box-shadow: 0 18px 40px rgba(36, 193, 106, 0.24);
}

.cart-payment-state {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(14, 18, 26, 0.96), rgba(8, 12, 18, 0.92));
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition: opacity 520ms ease, transform 520ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .store-topbar-inner {
    grid-template-columns: auto 1fr auto;
  }

  .store-actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }

  .storefront-grid,
  .store-hero-stage,
  .hero,
  .dashboard-shell,
  .detail-hero,
  .detail-panels {
    grid-template-columns: 1fr;
  }

  .detail-media-column {
    grid-template-columns: 1fr;
  }

  .detail-copy {
    position: static;
  }

  .detail-poster {
    min-height: 0;
  }

  .detail-gallery-rail {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .detail-thumb-strip {
    flex-wrap: nowrap;
  }

  .cart-layout,
  .site-footer-inner {
    grid-template-columns: 1fr;
  }

  .site-footer-links {
    justify-content: flex-start;
  }

  .storefront-grid,
  .feature-grid,
  .category-grid,
  .library-grid,
  .store-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .store-hero-side-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .store-topbar-inner {
    grid-template-columns: 1fr;
  }

  .store-nav,
  .store-actions {
    justify-content: flex-start;
  }

  .store-stage,
  .store-product-body {
    padding: 20px;
  }

  .storefront-grid,
  .store-toolbar,
  .hero-copy,
  .hero-panel,
  .profile-card,
  .launcher-card,
  .quick-actions-card,
  .detail-banner,
  .detail-poster,
  .detail-surface,
  .category-cloud {
    padding: 20px;
  }

  .store-toolbar,
  .store-stage-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .detail-copy {
    position: static;
    padding: 22px;
  }

  .detail-copy-head h1 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .detail-price-strip {
    padding: 18px 0 4px;
  }

  .detail-gallery-thumb {
    flex-basis: 132px;
  }

  .detail-stage-nav {
    width: 42px;
    height: 42px;
  }

  .detail-lightbox-dialog {
    width: min(100vw - 28px, 1400px);
    grid-template-columns: minmax(0, 1fr);
    align-content: center;
    justify-items: center;
    padding: 76px 0 24px;
  }

  .detail-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .detail-lightbox-nav.is-prev {
    left: 8px;
  }

  .detail-lightbox-nav.is-next {
    right: 8px;
  }

  .detail-cta-row,
  .cart-line {
    grid-template-columns: 1fr;
  }

  .cart-line-thumb {
    width: 100%;
    height: 180px;
  }

  .store-hero-feature-card {
    min-height: 420px;
  }

  .store-product-footer {
    grid-template-columns: 1fr;
  }

  .hero-stats,
  .storefront-grid,
  .feature-grid,
  .category-grid,
  .library-grid,
  .store-grid {
    grid-template-columns: 1fr;
  }
}

/* Storefront, product and account refresh */
.store-page {
  background:
    linear-gradient(180deg, #080a0d 0%, #0b0f14 42%, #090b0f 100%);
}

.store-page::before {
  display: none;
}

.store-topbar-inner {
  grid-template-columns: auto minmax(300px, 1fr) auto auto;
  border-radius: var(--radius-md);
}

.store-searchbox {
  min-height: 46px;
  border-radius: var(--radius-sm);
  background: #0d131b;
}

.store-search-label {
  letter-spacing: 0;
}

.store-search-dropdown,
.nav-dropdown-menu,
.account-menu-panel {
  border-radius: var(--radius-md);
  background: #0d131b;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.42);
}

.search-result,
.nav-dropdown-item {
  border-radius: var(--radius-sm);
}

.storefront-main {
  padding-bottom: 56px;
}

.store-stage-section {
  padding: 12px 0 28px;
}

.store-stage {
  gap: 18px;
}

.store-hero-stage {
  grid-template-columns: minmax(190px, 250px) minmax(0, 1fr);
  align-items: stretch;
}

.store-hero-side-column {
  gap: 14px;
}

.store-hero-side-card,
.store-hero-feature-card,
.store-hero-placeholder,
.store-product-card {
  border-radius: var(--radius-md);
  border-color: rgba(255, 255, 255, 0.1);
  background: #121720;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
}

.store-hero-feature-card:hover,
.store-product-card:hover,
.game-card:hover,
.category-card:hover,
.detail-surface:hover,
.quick-actions-card:hover,
.detail-poster:hover {
  transform: translateY(-2px);
  border-color: rgba(88, 199, 247, 0.26);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.36);
}

.store-hero-side-card {
  min-height: 100%;
}

.store-hero-side-thumb,
.store-hero-side-thumb-static {
  min-height: 128px;
  border-radius: var(--radius-sm);
  background: #0b1118;
}

.store-hero-feature-card {
  min-height: 560px;
}

.store-hero-feature-media {
  background: #05080c;
}

.store-hero-feature-media img {
  filter: saturate(1.04) contrast(1.02);
}

.store-hero-feature-overlay {
  background:
    linear-gradient(180deg, rgba(5, 8, 12, 0.02) 0%, rgba(5, 8, 12, 0.24) 44%, rgba(5, 8, 12, 0.92) 100%),
    linear-gradient(90deg, rgba(5, 8, 12, 0.46), transparent 45%);
}

.store-hero-feature-body {
  gap: 16px;
  max-width: 780px;
  padding: 34px;
}

.store-hero-kicker,
.store-price-stack small,
.store-products-count {
  letter-spacing: 0;
}

.store-hero-feature-body h2 {
  max-width: 13ch;
  font-size: 3rem;
  line-height: 1;
  overflow-wrap: anywhere;
}

.store-hero-feature-body p {
  max-width: 68ch;
  color: rgba(246, 248, 251, 0.8);
}

.store-hero-feature-link {
  min-height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
}

.store-toolbar-shell {
  margin-top: 0;
  background: #0b0f14;
  backdrop-filter: none;
}

.store-toolbar {
  padding: 16px 0;
}

.store-chip,
.store-sortbox {
  border-radius: var(--radius-sm);
  background: #111821;
}

.store-chip.is-active {
  border-color: rgba(88, 199, 247, 0.36);
  background: #173144;
}

.storefront-grid {
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
}

.store-product-card {
  overflow: hidden;
}

.store-product-media {
  min-height: 210px;
  padding: 14px;
  background: #0b1118;
}

.store-product-art,
.store-product-overlay {
  border-radius: var(--radius-sm);
}

.store-product-overlay {
  background: linear-gradient(180deg, transparent, rgba(4, 7, 10, 0.24));
}

.store-product-body {
  gap: 16px;
  padding: 18px;
}

.store-product-body h3 {
  font-size: 1.28rem;
  line-height: 1.15;
}

.store-price-stack strong,
.price,
.cart-line-price,
.cart-summary-price,
.cart-summary-total,
.search-result-price {
  color: var(--accent-green);
}

.store-price-stack strong {
  font-size: 1.55rem;
}

.tag-discount {
  color: #a8edff;
  background: rgba(88, 199, 247, 0.12);
}

.dashboard-shell {
  grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
  gap: 24px;
}

.profile-card,
.keys-table-card,
.detail-banner,
.detail-poster,
.detail-copy,
.detail-surface,
.cart-card {
  border-radius: var(--radius-md);
  background: #121720;
}

.profile-card {
  position: sticky;
  top: 104px;
}

.profile-avatar {
  border-radius: var(--radius-md);
}

.detail-hero {
  grid-template-columns: minmax(0, 1.65fr) minmax(360px, 0.75fr);
  gap: 24px;
  padding: 22px 0 30px;
}

.detail-banner {
  padding: 12px;
  background: #121720;
}

.detail-banner-stage {
  border-radius: var(--radius-md);
  background: #070b10;
}

.detail-poster {
  padding: 12px;
  background: #10161e;
}

.detail-gallery-thumb,
.gallery-shot,
.detail-gallery-thumb-art {
  border-radius: var(--radius-sm);
}

.detail-copy {
  top: 96px;
  gap: 18px;
  padding: 24px;
  background: #121720;
  box-shadow: var(--shadow-soft);
}

.detail-copy-head h1 {
  font-size: 2.7rem;
  line-height: 1;
  letter-spacing: 0;
  word-break: normal;
}

.detail-price-strip {
  padding-top: 8px;
}

.detail-price-value {
  color: var(--accent-green);
  font-size: 3rem;
  letter-spacing: 0;
}

.detail-copy-block,
.detail-benefit-card,
.detail-item,
.stack-item,
.news-card,
.cart-line,
.cart-payment-state {
  border-radius: var(--radius-md);
  background: #0f151d;
}

.detail-action-primary,
.detail-action-secondary {
  min-height: 52px;
}

.detail-lightbox-image {
  border-radius: var(--radius-md);
}

.site-footer {
  background: #080b0f;
}

@media (max-width: 1080px) {
  .store-topbar-inner,
  .store-hero-stage,
  .dashboard-shell,
  .detail-hero {
    grid-template-columns: 1fr;
  }

  .profile-card,
  .detail-copy {
    position: static;
  }

  .store-hero-side-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .store-stage,
  .store-product-body,
  .storefront-grid,
  .store-toolbar,
  .profile-card,
  .launcher-card,
  .quick-actions-card,
  .detail-banner,
  .detail-poster,
  .detail-surface,
  .category-cloud {
    padding: 0;
  }

  .store-hero-side-column {
    grid-template-columns: 1fr;
  }

  .store-hero-feature-card {
    min-height: 430px;
  }

  .store-hero-feature-body {
    padding: 22px;
  }

  .store-hero-feature-body h2,
  .detail-copy-head h1 {
    font-size: 2.05rem;
  }

  .detail-copy,
  .cart-card {
    padding: 18px;
  }

  .detail-price-value {
    font-size: 2.35rem;
  }
}

/* Requested store fixes */
.store-hero-showcase {
  width: 100%;
  min-width: 0;
}

.store-hero-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.store-hero-track {
  display: flex;
  width: 100%;
  transition: transform 360ms ease;
}

.store-hero-slide {
  flex: 0 0 100%;
  width: 100%;
}

.store-hero-feature-card {
  min-height: 590px;
}

.store-hero-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  background: rgba(7, 10, 14, 0.72);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  transform: translateY(-50%);
  cursor: pointer;
}

.store-hero-nav:hover {
  background: rgba(17, 25, 34, 0.92);
}

.store-hero-nav.is-prev {
  left: 18px;
}

.store-hero-nav.is-next {
  right: 18px;
}

.store-hero-dots {
  position: absolute;
  left: 34px;
  bottom: 24px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.store-hero-dots span {
  width: 26px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

.store-hero-dots span.is-active {
  background: #fff;
}

.store-product-card {
  min-width: 0;
}

.store-product-media {
  min-height: 280px;
  aspect-ratio: 16 / 11;
  padding: 0;
  overflow: hidden;
}

.store-product-media img,
.store-product-art {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  padding: 0;
}

.store-product-overlay {
  inset: 0;
  border-radius: 0;
}

.store-product-body,
.store-product-footer,
.store-buy-btn {
  min-width: 0;
  max-width: 100%;
}

.store-buy-btn {
  width: 100%;
}

.cart-line {
  grid-template-columns: 132px minmax(0, 1fr) minmax(220px, auto);
}

.cart-line-controls {
  justify-content: flex-end;
  flex-wrap: wrap;
}

.cart-qty-control {
  display: inline-grid;
  grid-template-columns: 40px 42px 40px;
  align-items: center;
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-sm);
  background: #0b1118;
}

.cart-qty-btn {
  min-width: 40px;
  width: 40px;
  min-height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 1.1rem;
}

.cart-qty-value {
  min-width: 42px;
  text-align: center;
}

.detail-thumb-strip,
.detail-gallery-thumb,
.detail-gallery-thumb-art {
  user-select: none;
  -webkit-user-drag: none;
  touch-action: pan-x;
}

.detail-gallery-thumb-art {
  pointer-events: none;
}

@media (max-width: 760px) {
  .store-hero-feature-card {
    min-height: 460px;
  }

  .store-hero-nav {
    width: 42px;
    height: 42px;
  }

  .store-hero-nav.is-prev {
    left: 10px;
  }

  .store-hero-nav.is-next {
    right: 10px;
  }

  .store-hero-dots {
    left: 22px;
    bottom: 16px;
  }

  .store-product-media {
    min-height: 250px;
  }

  .cart-line {
    grid-template-columns: 1fr;
  }

  .cart-line-controls {
    justify-content: flex-start;
  }
}

/* Banner carousel and catalog refinements */
.store-stage {
  overflow: visible;
}

.store-hero-carousel {
  overflow: visible;
  padding-inline: 34px;
}

.store-hero-viewport {
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: none;
}

.store-hero-track {
  will-change: transform;
}

.store-hero-feature-card {
  border: 0;
  min-height: 560px;
  box-shadow: none;
}

.store-hero-feature-footer {
  justify-content: flex-start;
}

.store-hero-price-stack {
  gap: 6px;
}

.store-hero-price-row {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.store-hero-price-row .tag-discount {
  min-height: 34px;
}

.store-hero-feature-link {
  display: none;
}

.store-hero-nav {
  width: 46px;
  height: 46px;
  background: #121720;
  border-color: rgba(255, 255, 255, 0.14);
}

.store-hero-nav.is-prev {
  left: 0;
}

.store-hero-nav.is-next {
  right: 0;
}

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

.store-product-card {
  grid-template-rows: auto 1fr;
  min-height: 0;
}

.store-product-media {
  min-height: 0;
  aspect-ratio: 460 / 215;
  display: block;
  background: #070b10;
}

.store-product-media img,
.store-product-art {
  object-fit: cover;
  object-position: center;
}

.store-info-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 4px auto 22px;
}

.store-info-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 86px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: #101720;
}

.store-info-card > i {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  color: #71d7ff;
  background: rgba(88, 199, 247, 0.1);
}

.store-info-card strong,
.store-info-card span {
  display: block;
  min-width: 0;
}

.store-info-card strong {
  color: var(--text-primary);
  font-size: 0.98rem;
}

.store-info-card span {
  margin-top: 3px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.35;
}

.account-avatar {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 50%;
  object-fit: cover;
  background: #1b2530;
}

.store-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.store-header .topbar {
  position: static;
}

.account-menu-trigger span {
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.store-product-body {
  padding: 16px;
}

.store-product-body h3 {
  font-size: 1.15rem;
  line-height: 1.18;
}

.store-product-footer {
  gap: 12px;
}

.store-buy-btn {
  min-height: 40px;
}

@media (max-width: 1080px) {
  .storefront-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .store-info-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .store-hero-carousel {
    padding-inline: 28px;
  }

  .store-hero-feature-card {
    min-height: 460px;
  }

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