/* store-b.css */
/* ==================== */
/* GALERIA / CARROSSEL  */
/* ==================== */
.mg-arrow {
  position: absolute;
  z-index: 10;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #fff;
  opacity: 0;
  transition: opacity 0.2s ease, background-color 0.2s ease;
}

.mg-arrow:hover {
  background: rgba(0, 0, 0, 0.8);
}

.group\/gal:hover .mg-arrow {
  opacity: 1;
}

/* No touch não existe hover: mantém os controles sempre visíveis. */
@media (hover: none) {
  .mg-arrow,
  .mg-counter {
    opacity: 1;
  }
}

.mg-arrow-prev {
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.mg-arrow-next {
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.mg-zoom {
  right: 0.5rem;
  top: 0.5rem;
  width: 2rem;
  height: 2rem;
}

.mg-counter {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  z-index: 10;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  font-size: 0.6875rem;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.group\/gal:hover .mg-counter {
  opacity: 1;
}

/* Botao de som do trailer (ele comeca mudo, como na Steam). */
.mg-sound {
  position: absolute;
  left: 0.5rem;
  bottom: 0.5rem;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.6rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.mg-sound:hover {
  background: rgba(0, 0, 0, 0.85);
}

.mg-sound.is-on {
  border-color: hsl(var(--primary) / 0.6);
  background: hsl(var(--primary) / 0.85);
}

/* Os controles nativos do <video> ficam embaixo: some com o botao no hover
   para nao brigar com a barra de progresso. */
.mg-slide:hover .mg-sound {
  opacity: 0.25;
}

.mg-slide .mg-sound:hover {
  opacity: 1;
}

.mg-thumb {
  border: 2px solid transparent;
  opacity: 0.55;
  transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.mg-thumb:hover {
  opacity: 0.9;
  border-color: hsl(var(--primary) / 0.5);
}

.mg-thumb.is-active {
  opacity: 1;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 1px hsl(var(--primary) / 0.35), 0 8px 20px -10px hsl(var(--primary) / 0.6);
}

/* Barrinha de progresso das miniaturas. */
.mg-thumbs-bar {
  position: relative;
  height: 2px;
  margin-top: 0.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.mg-thumbs-bar-fill {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  border-radius: 9999px;
  background: hsl(var(--primary));
  transition: left 0.15s ease-out;
}

/* ==================== */
/* SEÇÕES DA PÁGINA DE PRODUTO */
/* ==================== */
.nv-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  border: 1px solid hsl(var(--primary) / 0.25);
  background: hsl(var(--primary) / 0.12);
  color: hsl(var(--primary));
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
}

.nv-section-icon {
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border-radius: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(150deg, hsl(var(--primary)), hsl(var(--primary) / 0.55));
  box-shadow: 0 10px 24px -12px hsl(var(--primary) / 0.9);
}

.nv-card {
  display: flex;
  gap: 0.9rem;
  padding: 1.1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(0, 0, 0, 0.25);
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.nv-card:hover {
  border-color: hsl(var(--primary) / 0.3);
  background: rgba(0, 0, 0, 0.4);
}

.nv-card-icon {
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  border-radius: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.12);
  border: 1px solid hsl(var(--primary) / 0.22);
}

.nv-card-kicker {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: hsl(var(--primary));
}

/* Passos numerados 01 / 02 / 03. */
.nv-step {
  position: relative;
  padding: 1.4rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(0, 0, 0, 0.25);
  text-align: center;
}

.nv-step-icon {
  position: relative;
  width: 3rem;
  height: 3rem;
  margin: 0 auto;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.12);
  border: 1px solid hsl(var(--primary) / 0.22);
}

.nv-step-num {
  position: absolute;
  top: -0.5rem;
  right: -0.6rem;
  min-width: 1.4rem;
  height: 1.4rem;
  padding: 0 0.3rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--primary));
  color: lch(from hsl(var(--primary)) calc((49.44 - l) * infinity) 0 0);
  font-size: 0.625rem;
  font-weight: 800;
  line-height: 1;
}

/* FAQ e requisitos: <details> nativo, sem JS. */
.nv-faq {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.nv-faq summary,
.nv-req > summary {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.875rem;
  list-style: none;
  transition: background-color 0.2s ease;
}

.nv-faq summary::-webkit-details-marker,
.nv-req > summary::-webkit-details-marker {
  display: none;
}

.nv-faq summary:hover {
  background: rgba(255, 255, 255, 0.03);
}

.nv-req > summary {
  background: none;
  transition: none;
}

.nv-req > summary:hover {
  background: none;
}

/* Sem o brilho azul atrás do ícone dentro do painel de requisitos */
.nv-req .nv-section-icon {
  box-shadow: none;
}

.nv-faq-num {
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.12);
  border: 1px solid hsl(var(--primary) / 0.22);
  border-radius: 0.35rem;
  padding: 0.2rem 0.35rem;
  flex-shrink: 0;
}

.nv-faq-chevron {
  margin-left: auto;
  flex-shrink: 0;
  color: rgb(var(--muted-foreground));
  transition: transform 0.25s ease;
}

.nv-faq[open] .nv-faq-chevron,
.nv-req[open] .nv-faq-chevron {
  transform: rotate(180deg);
}

.nv-faq-body {
  padding: 0 1rem 1rem 3rem;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: rgb(var(--muted-foreground));
}

/* Requisitos: SEM efeito nenhum. O vidro do cc-panel (gradiente claro + blur) num
   painel baixo vira um clarão no canto — aqui é fundo liso, sem brilho, sem hover. */
.nv-req {
  overflow: hidden;
  background: rgba(12, 14, 20, 0.96);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: none;
}

.nv-req > summary {
  padding: 1.25rem 1rem;
  font-size: 1rem;
  justify-content: space-between;
  border-radius: inherit;
}

@media (min-width: 640px) {
  .nv-req > summary {
    padding: 1.5rem 2rem;
  }
}

/* ==================== */
/* PAINEL DE COMPRA     */
/* Painel de compra + azul da marca #0335fc */
/* ==================== */

.package-purchase-panel--fluid {
  background: rgba(10, 12, 18, 0.82);
  border: 1px solid rgba(3, 53, 252, 0.32);
  border-radius: 1rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 8px 32px -12px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(3, 53, 252, 0.12),
    0 0 40px -16px rgba(3, 53, 252, 0.28);
  transition: border-color 0.2s ease, box-shadow 0.25s ease;
}

.package-purchase-panel--fluid:hover {
  border-color: rgba(3, 53, 252, 0.48);
  box-shadow:
    0 12px 36px -14px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(3, 53, 252, 0.2),
    0 0 48px -12px rgba(3, 53, 252, 0.35);
}

#package-purchase-panel .package-purchase-cover-wrap.buy-poster,
#package-purchase-panel .buy-poster {
  width: 7.75rem;
  opacity: 1;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 36px -14px rgba(0, 0, 0, 0.75);
}

@media (min-width: 640px) {
  #package-purchase-panel .package-purchase-cover-wrap.buy-poster,
  #package-purchase-panel .buy-poster {
    width: 9rem;
  }
}

#package-purchase-panel .package-purchase-cover,
#package-purchase-panel .buy-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

/* Uma linha reta: cabe inteira no painel (sem cortar a borda direita). */
#package-purchase-panel .product-quickfacts {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: visible;
  box-sizing: border-box;
  padding: 0.4rem 0.55rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(10, 12, 16, 0.75);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

#package-purchase-panel .product-quickfacts__item {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
  gap: 0.28rem;
  line-height: 1.2;
  white-space: nowrap;
  font-size: clamp(0.62rem, 1.55vw, 0.72rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0;
}

#package-purchase-panel .product-quickfacts__item + .product-quickfacts__item {
  padding-left: 0.4rem;
  margin-left: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

#package-purchase-panel .product-quickfacts--stock-only {
  justify-content: flex-start;
}

#package-purchase-panel .product-quickfacts--stock-only .product-quickfacts__item + .product-quickfacts__item {
  padding-left: 0;
  border-left: 0;
}

#package-purchase-panel .product-quickfacts__item--ok {
  color: rgba(255, 255, 255, 0.82);
}

#package-purchase-panel .product-quickfacts__item--ok .product-quickfacts__lucide {
  color: rgba(96, 165, 250, 0.95);
}

#package-purchase-panel .product-quickfacts__steam-icon {
  display: block;
  width: 13px;
  height: 13px;
  max-width: 13px;
  max-height: 13px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

#package-purchase-panel .product-quickfacts__lucide {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.7);
  opacity: 0.95;
}

@media (min-width: 640px) {
  #package-purchase-panel .product-quickfacts {
    gap: 0.45rem;
    padding: 0.45rem 0.65rem;
  }

  #package-purchase-panel .product-quickfacts__item {
    font-size: 0.72rem;
    gap: 0.32rem;
  }

  #package-purchase-panel .product-quickfacts__item + .product-quickfacts__item {
    padding-left: 0.5rem;
  }

  #package-purchase-panel .product-quickfacts__lucide,
  #package-purchase-panel .product-quickfacts__steam-icon {
    width: 14px;
    height: 14px;
    max-width: 14px;
    max-height: 14px;
  }
}

#package-price {
  color: #fff;
}

.product-discount-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(135deg, #0335fc 0%, #0229c9 100%);
  box-shadow: 0 2px 12px -4px rgba(3, 53, 252, 0.5);
}

.product-variant-selector {
  margin-top: 0.15rem;
}

.product-variant-selector__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.35rem;
}

.product-variant-selector__wrap {
  position: relative;
}

.product-variant-selector__wrap::after {
  content: '';
  position: absolute;
  right: 0.85rem;
  top: 50%;
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid rgba(255, 255, 255, 0.45);
  border-bottom: 2px solid rgba(255, 255, 255, 0.45);
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}

.product-variant-selector__select,
select#package-edition-select.product-variant-selector__select {
  width: 100%;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  display: block;
  font-size: 16px !important;
  font-weight: 600;
  line-height: 1.5 !important;
  padding: 12px 44px 12px 12px !important;
  min-height: 48px;
  color: #fff;
  background-color: #12141a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  transition: border-color 0.18s ease, box-shadow 0.2s ease, background-color 0.18s ease;
}

.product-variant-selector__select:hover {
  border-color: rgba(3, 53, 252, 0.4);
  background: #15171e;
}

.product-variant-selector__select:focus-visible {
  outline: none;
  border-color: rgba(3, 53, 252, 0.8);
  box-shadow: 0 0 0 3px rgba(3, 53, 252, 0.25);
}

.product-cart-btn {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.9);
}

.product-cart-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(3, 53, 252, 0.35);
}

.product-cart-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.product-buy-btn-premium {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0335fc;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}

.product-buy-btn-premium:hover:not(:disabled) {
  background: #022fd9;
}

.product-buy-btn-premium:active:not(:disabled) {
  transform: scale(0.985);
}

.product-buy-btn-premium:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(3, 53, 252, 0.35);
}

.nv-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgb(var(--muted-foreground));
}

.nv-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.8rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
}

/* Botão que abre o seletor de edição (legado). */
.nv-select {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.3);
  font-size: 0.875rem;
  font-weight: 600;
  text-align: left;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.nv-select:hover {
  border-color: hsl(var(--primary) / 0.45);
}

.nv-select.is-open {
  border-color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.08);
}

.nv-select.is-open i {
  transform: rotate(180deg);
}

.nv-select-panel {
  margin-top: 0.5rem;
}

/* O #variation-list já vem do componente: aqui só ajusta o encaixe no dropdown. */
.nv-select-panel #variation-list {
  margin-bottom: 0;
  padding: 0.4rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

/* Rodapé do painel: Steam · Varia por edição · Windows 10/11 */
.nv-buy-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
  padding: 0.8rem 0.6rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(0, 0, 0, 0.25);
}

.nv-buy-footer span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgb(var(--muted-foreground));
  white-space: nowrap;
}

.nv-buy-footer i,
.nv-buy-footer svg {
  color: hsl(var(--primary));
}

/* ==================== */
/* PÔSTER NO BLOCO DE COMPRA */
/* ==================== */
/* Imagem do produto no painel CentralCart (sem troca automática da Steam). */
.buy-poster {
  position: relative;
  flex-shrink: 0;
  width: 5.5rem;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgb(var(--background) / 0.6);
  box-shadow: 0 14px 30px -18px rgba(0, 0, 0, 0.95);
  opacity: 1;
  transition: opacity 0.35s ease;
}

@media (min-width: 640px) {
  .buy-poster {
    width: 7rem;
  }
}

.buy-poster.is-ready {
  opacity: 1;
}

/* Jogo sem arte vertical: a capa deitada entra inteira, sobre uma cópia desfocada dela
   mesma — igualzinho ao card. */
.buy-poster::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--poster-fallback, none);
  background-size: cover;
  background-position: center;
  filter: blur(22px) saturate(1.35) brightness(0.75);
  transform: scale(1.4);
  opacity: 0.95;
}

.buy-poster img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.buy-poster img.is-fallback {
  object-fit: contain;
  padding: 0 0.25rem;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.75));
}

/* ==================== */
/* NAVBAR FLUTUANTE     */
/* ==================== */
/*
  Esquema Kingdom (pílula), sem ícones de plataforma:
  logo + nome | busca | suporte + entrar + carrinho
*/
/* Shell full-bleed: pílula sempre no centro da tela */
.site-header {
  width: 100%;
}

.nav-shell {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  max-width: 100vw;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-pill {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: 0.75rem;
  width: min(100%, 42rem);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  min-height: 3.25rem;
  padding: 0.35rem 0.55rem; /* padding igual dos dois lados */
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 8, 11, 0.72);
  -webkit-backdrop-filter: blur(22px) saturate(1.45);
  backdrop-filter: blur(22px) saturate(1.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 14px 36px rgba(0, 0, 0, 0.38);
}

@media (min-width: 768px) {
  .nav-pill {
    min-height: 3.45rem;
    width: min(100%, 48rem);
    max-width: 48rem;
    padding: 0.4rem 0.65rem;
  }
}

@media (min-width: 1280px) {
  .nav-pill {
    width: min(100%, 52rem);
    max-width: 52rem;
  }
}

.nav-left {
  grid-column: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.4rem;
  min-width: 0;
}

.nav-burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  color: #fff;
  transition: background-color 0.2s ease;
}

.nav-burger:hover {
  background: rgba(255, 255, 255, 0.08);
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  text-decoration: none;
  color: #fff;
}

.nav-brand-logo {
  width: 2rem;
  height: 2rem;
  border-radius: 0.45rem;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-brand-name {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 7.5rem;
  color: #fff;
}

@media (min-width: 640px) {
  .nav-brand-logo {
    width: 2.15rem;
    height: 2.15rem;
  }

  .nav-brand-name {
    max-width: 11rem;
    font-size: 1.05rem;
  }
}

/* Coluna do meio = centro real da pílula */
.nav-search {
  grid-column: 2;
  position: relative;
  width: 14rem;
  min-width: 0;
  margin: 0;
  justify-self: center;
}

@media (min-width: 768px) {
  .nav-search {
    width: 16rem;
  }
}

@media (min-width: 1280px) {
  .nav-search {
    width: 18rem;
  }
}

.nav-search-icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  width: 1rem;
  height: 1rem;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

.nav-search-input {
  width: 100%;
  height: 2.2rem;
  padding-left: 2.35rem;
  padding-right: 0.9rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  font-size: 0.84rem;
  color: #fff;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-search-input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.nav-search-input:focus {
  outline: none;
  border-color: rgba(3, 53, 252, 0.55);
  background: rgba(0, 0, 0, 0.45);
  box-shadow: 0 0 0 3px rgba(3, 53, 252, 0.18);
}

.nav-actions {
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-icon-btn,
.nav-avatar-btn,
.nav-login,
.nav-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 9999px;
  transition: background-color 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}

.nav-icon-btn,
.nav-avatar-btn {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(24, 24, 27, 0.95);
  color: #fff;
}

.nav-icon-btn:hover,
.nav-avatar-btn:hover {
  background: rgba(39, 39, 42, 0.98);
}

.nav-avatar-btn {
  flex-shrink: 0;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
}

.nav-login,
.nav-cart {
  border: 1px solid rgba(141, 172, 255, 0.45);
  background: linear-gradient(180deg, #4d7dff 0%, #0f45ff 55%, #0335fc 100%);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 8px 18px -8px rgba(3, 53, 252, 0.75);
}

.nav-login:hover,
.nav-cart:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.nav-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.nav-menu-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.nav-menu {
  position: absolute;
  z-index: 55;
  top: calc(100% + 0.65rem);
  left: 50%;
  width: min(22.5rem, calc(100vw - 1.5rem));
  max-height: min(78vh, 36rem);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0;
  border-radius: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 38%),
    rgba(10, 12, 18, 0.96);
  -webkit-backdrop-filter: blur(22px) saturate(1.5);
  backdrop-filter: blur(22px) saturate(1.5);
  box-shadow:
    0 0 0 1px rgba(3, 53, 252, 0.12),
    0 28px 60px -24px rgba(0, 0, 0, 0.95),
    0 0 40px -18px rgba(3, 53, 252, 0.45);
  opacity: 0;
  transform: translate(-50%, -8px) scale(0.97);
  transform-origin: top center;
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-menu.is-open {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
  pointer-events: auto;
}

.nav-menu__glow {
  position: absolute;
  inset: -40% auto auto 50%;
  width: 70%;
  height: 7rem;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(3, 53, 252, 0.35), transparent 70%);
  pointer-events: none;
}

.nav-menu__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.95rem 1rem 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-menu__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.nav-menu__logo {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 0.55rem;
  object-fit: contain;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.nav-menu__title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.15;
}

.nav-menu__subtitle {
  margin: 0.1rem 0 0;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 12rem;
}

.nav-menu__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.nav-menu__close:hover {
  background: rgba(3, 53, 252, 0.2);
  border-color: rgba(3, 53, 252, 0.45);
}

.nav-menu__section {
  position: relative;
  z-index: 1;
  padding: 0.85rem 0.75rem 0.35rem;
  overflow-y: auto;
  flex: 1 1 auto;
  min-height: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(3, 53, 252, 0.45) transparent;
}

.nav-menu__section--footer {
  flex: 0 0 auto;
  overflow: visible;
  padding: 0.55rem 0.75rem 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, transparent, rgba(3, 53, 252, 0.06));
}

.nav-menu-title {
  padding: 0 0.4rem;
  margin: 0 0 0.45rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(165, 180, 252, 0.75);
}

.nav-menu-list {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.nav-menu-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.6rem;
  border-radius: 0.85rem;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}

.nav-menu-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.65rem;
  background: rgba(3, 53, 252, 0.16);
  border: 1px solid rgba(3, 53, 252, 0.28);
  color: #8db4ff;
  flex-shrink: 0;
}

.nav-menu-item__label {
  flex: 1 1 auto;
  min-width: 0;
}

.nav-menu-item__chevron {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.28);
  transition: transform 0.18s ease, color 0.18s ease;
}

.nav-menu-item:hover {
  background: rgba(3, 53, 252, 0.14);
  border-color: rgba(3, 53, 252, 0.28);
  transform: translateX(2px);
}

.nav-menu-item:hover .nav-menu-item__chevron {
  color: #8db4ff;
  transform: translateX(2px);
}

.nav-menu-item:hover .nav-menu-item__icon {
  background: rgba(3, 53, 252, 0.28);
  color: #fff;
}

.nav-menu-quick {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.nav-menu-quick__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  min-height: 3.5rem;
  padding: 0.55rem 0.35rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.nav-menu-quick__btn i {
  color: #8db4ff;
}

.nav-menu-quick__btn:hover {
  background: rgba(3, 53, 252, 0.18);
  border-color: rgba(3, 53, 252, 0.4);
  transform: translateY(-1px);
  color: #fff;
}

.nav-menu-quick__btn:hover i {
  color: #fff;
}

.nav-mobile-search input {
  border-radius: 9999px;
  padding-left: 2.25rem;
  background: rgba(8, 8, 11, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  backdrop-filter: blur(18px) saturate(1.4);
}

/* Perfil logado: só o avatar redondo na pílula */
.nav-actions .relative {
  display: flex;
  align-items: center;
}

.nav-actions #profile-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 2.2rem !important;
  height: 2.2rem !important;
  min-width: 2.2rem !important;
  padding: 0 !important;
  gap: 0 !important;
  border-radius: 9999px !important;
  border: 1px solid rgba(141, 172, 255, 0.45) !important;
  background: linear-gradient(180deg, #4d7dff 0%, #0f45ff 55%, #0335fc 100%) !important;
  overflow: hidden;
}

.nav-actions #profile-button > div,
.nav-actions #profile-button > i {
  display: none !important;
}

.nav-actions #profile-button img,
.nav-actions #profile-button > .size-9,
.nav-actions #profile-button > .bg-primary {
  width: 100% !important;
  height: 100% !important;
  border-radius: 9999px !important;
  margin: 0 !important;
}

.nav-actions #profile-menu {
  right: 0;
  left: auto;
}

@media (max-width: 767px) {
  .site-header {
    padding-top: 0.65rem !important;
    padding-bottom: 0.5rem !important;
  }

  .nav-shell {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .nav-pill {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 3.1rem;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0.3rem 0.4rem;
    column-gap: 0.35rem;
  }

  .nav-left {
    gap: 0.2rem;
  }

  /* No mobile a busca abre abaixo */
  .nav-search {
    display: none;
  }

  .nav-actions {
    grid-column: 2;
  }

  .nav-burger {
    width: 1.9rem;
    height: 1.9rem;
    flex-shrink: 0;
  }

  .nav-brand {
    gap: 0.4rem;
    min-width: 0;
  }

  .nav-brand-logo {
    width: 1.85rem;
    height: 1.85rem;
  }

  /* No celular o nome some — só o logo cabe bem */
  .nav-brand-name {
    display: none;
  }

  .nav-actions {
    gap: 0.3rem;
    margin-left: 0;
  }

  .nav-icon-btn,
  .nav-avatar-btn,
  .nav-login,
  .nav-cart,
  .nav-actions #profile-button {
    width: 1.95rem !important;
    height: 1.95rem !important;
    min-width: 1.95rem !important;
  }

  .nav-menu {
    left: 50%;
    right: auto;
    width: min(22.5rem, calc(100vw - 1.5rem));
  }
}

/* ==================== */
/* FILEIRA DE CATEGORIA (carrossel) */
/* ==================== */
/* Na home cada categoria é um TRILHO que se arrasta para o lado — não uma grade que
   quebra linha. No celular o dedo arrasta; no computador tem as setas e a roda do mouse.
   A barra de rolagem fica escondida: o que se vê é só a fileira de capas. */
.category-section {
  overflow: visible;
}

.cat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.cat-title {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #fff;
}

@media (min-width: 640px) {
  .cat-title {
    font-size: 1.35rem;
  }
}

.cat-controls {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

/* Pílula azul com gradiente e brilho (estilo Nuvem Games). */
.cat-all {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0 1rem;
  height: 2.15rem;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(180deg, #4d7dff 0%, #0f45ff 55%, #0335fc 100%);
  border: 1px solid rgba(141, 172, 255, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 0 16px rgba(3, 53, 252, 0.4),
    0 8px 18px -8px rgba(3, 53, 252, 0.7);
  transition:
    filter 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.cat-all svg {
  transition: transform 0.2s ease;
}

.cat-all:hover {
  color: #fff;
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 0 22px rgba(3, 53, 252, 0.55),
    0 10px 22px -8px rgba(3, 53, 252, 0.8);
}

.cat-all:hover svg {
  transform: translateX(2px);
}

/* No celular as setas não aparecem: elas roubavam a largura do nome da categoria (que
   quebrava em três linhas) para fazer o que o dedo já faz melhor — arrastar. */
.cat-arrow {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

@media (min-width: 640px) {
  .cat-arrow {
    display: flex;
  }
}

/* O main.js apaga as setas de uma categoria que cabe inteira na tela com `botao.hidden`.
   Sem esta linha, o `display: flex` daqui de cima ganharia do `[hidden]` do navegador
   (regra de autor vence regra do navegador) e as setas ficavam lá, acesas e inúteis. */
.cat-arrow[hidden] {
  display: none;
}

.cat-arrow:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Chegou na ponta: a seta apaga, em vez de sumir e pular o layout. */
.cat-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

/*
  Scroll nativo no .cat-rail.
  A largura exata de cada card é definida em scripts/main.js (pixels com ceil),
  para N cards cobrirem a fileira sem vazar pedaço do próximo.
  cache-bust: 2026-07-15-v6
*/
.cat-rail {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.15rem 0 0.35rem;
  overflow-clip-margin: 0;
}

.cat-rail::-webkit-scrollbar {
  display: none;
}

#categories-container,
.category-section,
#store {
  overflow: visible;
}

.cat-track {
  display: flex;
  gap: 0.5rem;
  width: max-content;
  overflow: visible;
}

/*
  Cards do trilho: a animação roda UMA vez quando a fileira entra na tela
  (main.js marca todos .visible juntos). Assim o swipe horizontal não mostra
  capa em branco — só o scroll vertical dispara o reveal.
*/

.cat-track > * {
  position: relative;
  flex: 0 0 auto;
  scroll-snap-align: start;
  box-sizing: border-box;
}

.cat-track > *:hover,
.cat-track > *:focus-within {
  z-index: 6;
}

/* ==================== */
/* CARD DE PRODUTO      */
/* ==================== */
/* Hover no estilo Nuvem Games: sobe + escala suave, sem borda fixa. */
.game-card {
  overflow: visible;
  background: transparent;
  border: none;
  box-shadow: none;
}

.game-card-frame {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0.75rem;
  background: #0b0d12;
  border: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  transform-origin: center center;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.game-card-frame::after {
  display: none;
}

@media (hover: hover) {
  .game-card:hover,
  .game-card:focus-visible {
    z-index: 8;
  }

  .game-card:hover .game-card-frame,
  .game-card:focus-visible .game-card-frame {
    transform: translate3d(0, -3px, 0) scale3d(1.05, 1.05, 1);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.55);
  }

  /* No carrossel da home, só sobe (sem scale) pra não empurrar os vizinhos. */
  .cat-track .game-card:hover .game-card-frame,
  .cat-track .game-card:focus-visible .game-card-frame {
    transform: translate3d(0, -3px, 0);
  }
}

.game-card-media::after {
  display: none;
}

.game-card-media {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 0.75rem 0.75rem 0 0;
  background: #0b0d12;
}

.game-card-media::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--card-fallback, none);
  background-size: cover;
  background-position: center;
  filter: blur(28px) saturate(1.35) brightness(0.75);
  transform: scale(1.4);
  opacity: 0.95;
}

.game-card-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transform: none;
  transform-origin: center center;
  transition: none;
  backface-visibility: hidden;
}

.game-card-img.is-ready {
  opacity: 1;
}

.game-card:hover .game-card-img,
.game-card:focus-visible .game-card-img,
.game-card:hover .game-card-img.is-fallback,
.game-card:focus-visible .game-card-img.is-fallback {
  transform: none;
  filter: none;
}

.game-card-img.is-fallback {
  object-fit: contain;
  padding: 0 0.35rem;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.75));
}

.game-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0.75rem 0.75rem 0.8rem;
  background: #141820;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
  .game-card-body {
    padding: 0.9rem 0.875rem 1rem;
  }
}

/* "À vista no Pix": linha discreta embaixo do preço (Nuvem Games). */
.game-card-pix {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.68rem;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}

.game-card-title-wrap {
  min-width: 0;
  flex-shrink: 0;
  margin: 0 0 0.5rem;
  padding: 0 0 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.game-card-title {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 0;
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
  text-transform: none;
  letter-spacing: 0;
  color: #fff;
}

.game-card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  min-width: 0;
  padding-right: 0.15rem;
}

.game-card-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  min-width: 0;
  flex: 1;
}

/* Linha de cima: preço antigo riscado + pílula verde de desconto (Nuvem Games). */
.game-card-price-top {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-width: 0;
}

.game-card-off {
  display: inline-flex;
  align-items: center;
  gap: 0.24rem;
  flex-shrink: 0;
  padding: 0.2rem 0.46rem;
  border-radius: 9999px;
  background: rgba(3, 53, 252, 0.16);
  color: #0335fc;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.game-card-off svg {
  width: 0.68rem;
  height: 0.68rem;
  display: block;
}

.game-card-price-old {
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: line-through;
  color: #a1a1aa;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-card-price-now {
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #fff;
  white-space: nowrap;
}

/* Ícone Steam branco (Kingdom). */
.game-card-steam {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 0;
  background: transparent;
  color: #fff;
  box-shadow: none;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.45));
}

.game-card.is-steam .game-card-steam,
.game-card-steam:not([hidden]) {
  display: inline-flex;
}

.game-card-steam[hidden] {
  display: none !important;
}

.game-card-steam svg {
  width: 1.85rem;
  height: 1.85rem;
  display: block;
}

@media (min-width: 640px) {
  .game-card-title-wrap {
    padding-bottom: 0.75rem;
    margin-bottom: 0.55rem;
  }

  .game-card-title {
    font-size: 1.02rem;
  }

  .game-card-off {
    font-size: 0.66rem;
    padding: 0.22rem 0.5rem;
  }

  .game-card-price-old {
    font-size: 0.8rem;
  }

  .game-card-price-now {
    font-size: 1.42rem;
  }

  .game-card-steam,
  .game-card-steam svg {
    width: 2.05rem;
    height: 2.05rem;
  }
}

@media (min-width: 1024px) {
  .game-card-title {
    font-size: 1.08rem;
  }

  .game-card-price-old {
    font-size: 0.84rem;
  }

  .game-card-price-now {
    font-size: 1.5rem;
  }

  .game-card-steam,
  .game-card-steam svg {
    width: 2.2rem;
    height: 2.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .game-card-frame,
  .game-card-img,
  .product-card-shine,
  .product-card-shine::after,
  .game-card-media::after {
    transition-duration: 0.01ms !important;
  }

  .game-card:hover .game-card-frame,
  .game-card:focus-visible .game-card-frame,
  .cat-track .game-card:hover .game-card-frame,
  .cat-track .game-card:focus-visible .game-card-frame {
    transform: none;
  }

  .game-card:hover .game-card-img,
  .game-card:focus-visible .game-card-img,
  .game-card:hover .game-card-img.is-fallback,
  .game-card:focus-visible .game-card-img.is-fallback {
    transform: none;
    filter: none;
  }

  .group:hover .product-card-shine::after {
    left: -120%;
  }
}