/* Vitrine por categoria — estilos dos cards e do carrossel (JS: store-category-carousel.js). */

.store-category {
  position: relative;
  overflow: visible;
  background-color: rgb(var(--background));
}

.store-category__viewport {
  position: relative;
  z-index: 1;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior-x: contain;
  touch-action: pan-x pan-y;
  background-color: rgb(var(--background));
  margin-left: -1rem;
  margin-right: -1rem;
  width: calc(100% + 2rem);
  scroll-padding-left: 1rem;
  scroll-padding-right: 1rem;
}

/* Tablet/desktop: JS aplica .store-category__viewport--clip (translate no track, sem peek) */
.store-category__viewport.store-category__viewport--clip {
  overflow-x: hidden;
  overflow-y: hidden;
  scroll-snap-type: none;
}

.store-category__viewport::-webkit-scrollbar {
  display: none;
}

.store-category__track {
  display: flex;
  align-items: stretch;
  gap: 0.875rem;
  padding: 0 1rem 1rem;
  width: max-content;
  min-width: 100%;
  background-color: rgb(var(--background));
  transform: translateZ(0);
}

.store-category__track > * {
  flex: 0 0 auto;
  scroll-snap-align: start;
  overflow: visible;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  /* ~6 cards visíveis no desktop (JS ≥1024px); mobile: ~2 com peek (largura um pouco menor no telefone) */
  width: clamp(128px, 38vw, 220px);
  max-width: 220px;
}

@media (min-width: 640px) {
  .store-category__track {
    gap: 1.125rem;
  }

  .store-category__track > * {
    width: clamp(180px, 28vw, 260px);
    max-width: 260px;
  }
}

/* Mobile / telemóvel: 2 cards completos + “berdinha” do 3.º (scroll horizontal) */
@media (max-width: 767px) {
  .store-category__track {
    gap: 0.75rem;
  }

  .store-category__track > * {
    /* 2W + 2×gap + faixa do 3.º ≈ 100vw — ~18px visíveis do card seguinte */
    width: calc((100vw - 2.625rem) / 2);
    min-width: 112px;
    max-width: 182px;
  }
}

/* ≥1024px: largura definida em JS (6 cards); box-sizing consistente */
@media (min-width: 1024px) {
  .store-category__track > * {
    min-width: 0;
    box-sizing: border-box;
  }
}

/* Impede arrasto nativo da imagem e do link */
:is(.store-category, .package-cards-strip) img,
:is(.store-category, .package-cards-strip) a.aaa-card {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  user-select: none;
}

/* === CARD DE PRODUTO (layout e sombra) === */
.product-card {
  position: relative;
  display: block;
  background: #1A1A1A;
  border-radius: 0.625rem !important; /* 10px */
  border: none;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.22),
    0 7px 16px -5px rgba(0, 0, 0, 0.38);
  transition: none;
  outline: none;
  overflow: visible;
  isolation: isolate;
}

.product-card:hover {
  box-shadow:
    0 3px 6px rgba(0, 0, 0, 0.26),
    0 9px 20px -6px rgba(0, 0, 0, 0.42);
}

/* === Cards na vitrine (.store-category) e produtos similares (.package-cards-strip / keen-slider) — modelo Apex Storms === */
/* Grid auto + 1fr: com altura igual na linha (stretch), imagem e corpo ficam sempre proporcionais entre si */
:is(.store-category, .package-cards-strip) .home-carousel-card.product-card {
  background-color: #1c1c1c !important;
  border-radius: 12px !important;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.22),
    0 7px 16px -5px rgba(0, 0, 0, 0.38) !important;
  /* overflow no mesmo nó que box-shadow corta a sombra → listra na base; visível + clip nos filhos */
  isolation: auto !important;
  overflow: visible !important;
  width: 100%;
  height: 100%;
  align-self: stretch;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto minmax(0, 1fr);
  min-height: 0;
}

:is(.store-category, .package-cards-strip) .home-carousel-card > div:first-child {
  grid-row: 1;
  min-width: 0;
}

:is(.store-category, .package-cards-strip) .home-carousel-card__image {
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  /* altura da faixa da imagem fixa por proporção — evita cards mais altos que outros */
  aspect-ratio: 2 / 3;
  flex-shrink: 0;
}

:is(.store-category, .package-cards-strip) .home-carousel-card .aaa-card-image,
:is(.store-category, .package-cards-strip) .home-carousel-card .product-card__img {
  aspect-ratio: unset !important;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

:is(.store-category, .package-cards-strip) .home-carousel-card__body {
  grid-row: 2;
  background-color: #1c1c1c !important;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
  min-height: 0 !important;
  height: auto !important;
  padding: 1rem 1.125rem 1.125rem !important;
  display: flex !important;
  flex-direction: column !important;
}

/* Espaço fixo para desconto + “A partir de” + preço — evita card mais baixo quando falta variação */
:is(.store-category, .package-cards-strip) .home-carousel-card__footer {
  flex: 0 0 auto;
  min-height: 5.25rem;
}

@media (min-width: 640px) {
  :is(.store-category, .package-cards-strip) .home-carousel-card__body {
    padding: 1.125rem 1.25rem 1.25rem !important;
  }
}

:is(.store-category, .package-cards-strip) a.aaa-card .home-carousel-card__title {
  text-transform: uppercase;
  letter-spacing: 0.015em !important;
  font-size: 0.875rem !important;
  line-height: 1.38 !important;
  min-height: calc(1.38em * 2) !important;
  max-height: calc(1.38em * 2);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  flex: 0 0 auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

:is(.store-category, .package-cards-strip) a.aaa-card .home-carousel-card__price {
  color: #39ff14 !important;
  font-weight: 800 !important;
  font-size: 1.125rem !important;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

:is(.store-category, .package-cards-strip) .home-carousel-card__pix {
  color: rgba(255, 255, 255, 0.45) !important;
}

:is(.store-category, .package-cards-strip) .home-carousel-card__discount-row {
  min-height: 1.375rem;
}

/* Mobile: título e preço menores; título no máximo 2 linhas (evita poluir o card) */
@media (max-width: 767px) {
  :is(.store-category, .package-cards-strip) a.aaa-card .home-carousel-card__title {
    font-size: 0.6875rem !important; /* 11px */
    line-height: 1.28 !important;
    letter-spacing: 0.035em !important;
    min-height: calc(1.28em * 2) !important;
    max-height: calc(1.28em * 2);
    -webkit-line-clamp: 2;
  }

  :is(.store-category, .package-cards-strip) a.aaa-card .home-carousel-card__price {
    font-size: 0.875rem !important; /* 14px */
    font-weight: 700 !important;
  }

  :is(.store-category, .package-cards-strip) .home-carousel-card__body {
    padding: 0.625rem 0.5rem 0.75rem !important;
  }

  :is(.store-category, .package-cards-strip) .home-carousel-card__pix {
    font-size: 0.625rem !important;
    margin-bottom: 0.375rem !important;
  }

  :is(.store-category, .package-cards-strip) .home-carousel-card__footer {
    padding-top: 0.5rem !important;
  }

  :is(.store-category, .package-cards-strip) .home-carousel-card__discount-row {
    margin-bottom: 0.25rem !important;
    min-height: 1.375rem !important;
    gap: 0.375rem !important;
  }

  :is(.store-category, .package-cards-strip) .home-carousel-card__discount-row .rounded-full {
    font-size: 0.5625rem !important;
    padding: 0.125rem 0.375rem !important;
  }

  :is(.store-category, .package-cards-strip) .home-carousel-card__discount-row p {
    font-size: 0.5625rem !important;
  }

  :is(.store-category, .package-cards-strip) .home-carousel-card__footer {
    min-height: 4.75rem;
  }
}

/* Keen Slider (produtos similares): esticar card como na vitrine Epic */
.package-cards-strip .keen-slider__slide {
  display: flex;
  align-items: stretch;
  min-height: 0;
}

.package-cards-strip .keen-slider__slide > .aaa-card.home-carousel-card {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  align-self: stretch;
}

/* Performance mode: durante o scroll horizontal desliga hovers pesados */
:is(.store-category, .package-cards-strip).is-scrolling .product-card {
  transition: none !important;
}

:is(.store-category, .package-cards-strip).is-scrolling .product-card:hover {
  background: inherit !important;
}

:is(.store-category, .package-cards-strip).is-scrolling .product-card__body,
:is(.store-category, .package-cards-strip).is-scrolling .product-card__cart-btn,
:is(.store-category, .package-cards-strip).is-scrolling .product-card__cart-icon {
  transition: none !important;
}

:is(.store-category, .package-cards-strip).is-scrolling .product-card__cart-btn,
:is(.store-category, .package-cards-strip).is-scrolling .product-card__cart-btn:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
}

/* Container da imagem e reflexo */
.product-card__image {
  overflow: hidden;
  position: relative;
}

.product-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  pointer-events: none;
  width: 50%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 30%,
    rgba(255, 255, 255, 0.06) 42%,
    rgba(255, 255, 255, 0.18) 50%,
    rgba(255, 255, 255, 0.06) 58%,
    transparent 70%,
    transparent 100%
  );
  opacity: 0;
  transform: translateX(-100%);
}

@keyframes product-card-shine {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 0.6;
  }
  100% {
    transform: translateX(200%);
    opacity: 0;
  }
}

@media (hover: hover) and (pointer: fine) {
  .product-card:hover .product-card__image::after {
    animation: product-card-shine 0.55s ease-out forwards;
  }
}

/* Mobile: brilho ao toque */
.product-card:active .product-card__image::after {
  animation: product-card-shine 0.5s ease-out forwards;
}

:is(.store-category, .package-cards-strip).is-scrolling .product-card__image::after {
  animation: none !important;
  opacity: 0 !important;
  transform: translateX(-100%) !important;
}

.product-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
}

/* Conteúdo do card */
.product-card__body {
  background: inherit;
  height: 146px;
  min-height: 146px;
}

@media (max-width: 640px) {
  .product-card__body {
    height: 126px;
    min-height: 126px;
  }
}

.product-card__title {
  overflow: hidden;
}

.product-card__price {
  color: #39ff14;
  font-weight: 700;
}

.product-card__cart-btn {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  transition: background 0.2s ease, color 0.2s ease;
}

.product-card__cart-icon {
  transition: color 0.2s ease;
}

.product-card:hover .product-card__cart-btn {
  background: #3b82f6;
  color: #000000;
}

/* Cabeçalho estilo Epic Games: título + chevron (mobile e PC) */
.store-category__epic-top {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-bottom: 0.75rem;
}

/* Mobile (<768px): scroll no track; esconde só o bloco das setas — “Ver tudo” fica no .store-category__epic-nav-cluster */
@media (max-width: 767px) {
  .store-category__epic-nav {
    display: none !important;
  }
}

.category-section-toolbar--epic {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
  flex-wrap: wrap;
  gap: 0.75rem;
  min-height: 0;
}

.category-epic-section-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
  text-decoration: none;
  color: inherit;
  background: transparent;
  -webkit-tap-highlight-color: transparent;
  border-radius: 0.25rem;
}

.category-epic-section-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.35);
  outline-offset: 2px;
}

.category-section-title.category-section-title--epic {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  margin: 0;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.category-section-title.category-section-title--epic::after {
  display: none !important;
}

.category-epic-chevron {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  opacity: 1;
  color: #ffffff;
  transform: translateX(0);
  transform-origin: center center;
  transition: transform 0.22s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.category-epic-section-link:hover .category-epic-chevron {
  transform: translateX(6px) scale(1.12);
}

.category-epic-chevron svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 2.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (min-width: 640px) {
  .category-section-title.category-section-title--epic {
    font-size: 1.125rem;
    letter-spacing: -0.035em;
  }

  .category-epic-chevron {
    width: 1.375rem;
    height: 1.375rem;
  }

  .category-epic-section-link {
    gap: 0.5rem;
  }

  .category-epic-chevron svg {
    stroke-width: 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  .category-epic-chevron {
    transition: none;
  }

  .category-epic-section-link:hover .category-epic-chevron {
    transform: none;
  }
}

/* store-category-carousel.js: sem overflow — esconde setas */
.store-category.store-category--hide-nav .store-category__nav-btn {
  display: none !important;
}

/* Setas no cabeçalho — estilo Epic (todas as larguras) */
.store-category__epic-nav .store-category__nav-btn {
  position: relative;
  z-index: 10;
  width: 2.125rem;
  height: 2.125rem;
  border-radius: 50%;
  border: none;
  background: #2a2a2a;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: none;
  flex-shrink: 0;
  transform: none;
  transition:
    background 0.2s ease,
    transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

@media (min-width: 640px) {
  .store-category__epic-nav .store-category__nav-btn {
    width: 2.25rem;
    height: 2.25rem;
  }
}

.store-category__epic-nav .store-category__nav-btn svg,
.store-category__epic-nav .store-category__nav-btn [data-lucide] {
  color: #ffffff;
  stroke: #ffffff;
  width: 1.125rem;
  height: 1.125rem;
  transition: transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.store-category__epic-nav .store-category__nav-btn svg {
  stroke-width: 2.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.store-category__epic-nav .store-category__nav-btn:hover:not(:disabled) {
  background: #383838;
  box-shadow: none;
}

.store-category__epic-nav .store-category__nav-btn--prev:hover:not(:disabled) [data-lucide] {
  transform: translateX(-3px) scale(1.08);
}

.store-category__epic-nav .store-category__nav-btn--next:hover:not(:disabled) [data-lucide] {
  transform: translateX(3px) scale(1.08);
}

.store-category__epic-nav .store-category__nav-btn--prev:active:not(:disabled),
.store-category__epic-nav .store-category__nav-btn--next:active:not(:disabled) {
  transform: scale(0.96);
}

.store-category__epic-nav .store-category__nav-btn--prev:active:not(:disabled) [data-lucide],
.store-category__epic-nav .store-category__nav-btn--next:active:not(:disabled) [data-lucide] {
  transform: scale(0.95);
}

.store-category__epic-nav .store-category__nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .store-category__epic-nav .store-category__nav-btn [data-lucide] {
    transition: none;
  }

  .store-category__epic-nav .store-category__nav-btn--prev:hover:not(:disabled) [data-lucide],
  .store-category__epic-nav .store-category__nav-btn--next:hover:not(:disabled) [data-lucide] {
    transform: none;
  }
}

@media (min-width: 1024px) {
  .store-category.carousel-no-shadow .product-card,
  .store-category.carousel-no-shadow .store-category__track > * {
    box-shadow: none !important;
  }
}

/* Zoom e brilho nos cards da vitrine */
:is(.store-category, .package-cards-strip) .aaa-card:hover .aaa-card-image,
:is(.store-category, .package-cards-strip) .aaa-card:active .aaa-card-image {
  transform: scale(1.02) !important;
  filter: none !important;
}

:is(.store-category, .package-cards-strip) .aaa-card:hover .aaa-card-title {
  color: #ffffff !important;
}

:is(.store-category, .package-cards-strip) .aaa-card:hover .aaa-card-button {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03) !important;
}

.category-section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 8px;
}

.category-section-title {
  margin: 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.category-section-line {
  width: 60%;
  height: 2px;
  margin-top: 6px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

/* Mobile */
@media (max-width: 640px) {
  .category-section-title {
    font-size: 16px;
  }

  .category-section-line {
    height: 2px;
    margin-top: 5px;
  }
}

.category-section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 8px;
}

.category-section-title {
  margin: 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

/* Linha base */
.category-section-line {
  position: relative;
  width: 100%;
  height: 2px;
  margin-top: 6px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  overflow: hidden;
}

/* Linha animada (brilho passando) */
.category-section-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  animation: line-shine 2.8s ease-in-out infinite;
}

/* Hover premium */
.category-section-header:hover .category-section-line::after {
  animation-duration: 1.4s;
}

/* Keyframes */
@keyframes line-shine {
  0% {
    left: -40%;
  }
  100% {
    left: 120%;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .category-section-title {
    font-size: 16px;
  }

  .category-section-line {
    margin-top: 5px;
  }
}

/* ==============================
   Cabeçalho premium (underline)
   (substitui o CSS anterior)
   ============================== */
.category-section-header {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 4px;
  width: 100%;
}

.category-section-toolbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  width: 100%;
  margin-bottom: 4px;
}

/* Sem flex:1 — o traço (::after) acompanha só a largura do texto do título */
.category-section-toolbar .category-section-title {
  flex: 0 1 auto;
  min-width: 0;
  width: fit-content;
  max-width: 100%;
}

.category-section-toolbar--end {
  justify-content: flex-end;
}

.category-section-title {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  display: inline-block;
  position: relative;
}

/* Traço branco só sob o texto — sem barra cinza em largura total */
.category-section-line {
  display: none !important;
}

.category-section-line-active {
  display: none !important;
}

.category-section-line::before,
.category-section-line::after {
  content: none !important;
  animation: none !important;
  display: none !important;
}

/* underline fina exatamente abaixo do texto */
.category-section-title::after {
  content: "";
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
  z-index: 2;
}

/* mobile */
@media (max-width: 640px) {
  .category-section-title {
    font-size: 16px;
  }

  .category-section-toolbar .category-section-title {
    max-width: 100%;
  }

  .category-section-title::after {
    top: calc(100% + 6px);
    height: 2px;
  }
}

/* --------------------------------------------------------------------------
   Cards de produto: título e preço mais nítidos (evita texto “desfocado”)
   -------------------------------------------------------------------------- */
a.aaa-card .aaa-card-title {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-size: 0.875rem !important; /* 14px */
  line-height: 1.38 !important;
  font-weight: 700 !important;
  letter-spacing: 0.015em !important;
  color: #fafafa !important;
  min-height: calc(1.38em * 2) !important;
}

a.aaa-card .aaa-card-price,
a.aaa-card .product-card__price {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-size: 1.125rem !important; /* 18px */
  font-weight: 800 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.15 !important;
  color: #39ff14 !important;
}

a.aaa-card .home-carousel-card__pix,
a.aaa-card .home-carousel-card__from-label {
  -webkit-font-smoothing: antialiased;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
}

a.aaa-card .aaa-card-title-stack {
  min-width: 0;
}

a.aaa-card .aaa-card-full-dlcs-badge {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 767px) {
  a.aaa-card .aaa-card-title {
    font-size: 0.8125rem !important; /* 13px */
    line-height: 1.36 !important;
    letter-spacing: 0.02em !important;
    min-height: calc(1.36em * 2) !important;
  }

  a.aaa-card .aaa-card-price,
  a.aaa-card .product-card__price {
    font-size: 1rem !important; /* 16px no mobile */
    font-weight: 800 !important;
  }
}

/* === Home — vitrine em faixas (referência tipo nextsystem.site) === */
@keyframes home-marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.home-marquee--ltr .home-marquee__track {
  animation: home-marquee-scroll 52s linear infinite;
  will-change: transform;
}

.home-marquee--rtl .home-marquee__track {
  animation: home-marquee-scroll 60s linear infinite reverse;
  will-change: transform;
}

.home-marquee:hover .home-marquee__track {
  animation-play-state: paused;
}

.home-marquee__card.shine-effect {
  position: relative;
}

.home-marquee__card.shine-effect::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.12) 50%,
    transparent 65%
  );
  transform: translateX(-120%);
  transition: transform 0.65s ease;
  pointer-events: none;
}

.home-marquee__card.shine-effect:hover::after {
  transform: translateX(120%);
}