

/**
 * Descrição do produto (#package-description): o Preflight do Tailwind zera margens em p/ul/ol.
 * Sem isso, Enter no editor vira <p> ou <br> mas visualmente tudo fica “colado”.
 */
#package-description.centralcart-content {
  line-height: 1.75;
}



#package-description.centralcart-content :where(p) {
  margin-bottom: 0.875rem;
}



#package-description.centralcart-content :where(p:last-child) {
  margin-bottom: 0;
}



#package-description.centralcart-content :where(ul, ol) {
  margin-bottom: 0.875rem;
  padding-left: 1.25rem;
}



#package-description.centralcart-content :where(ul:last-child, ol:last-child) {
  margin-bottom: 0;
}



#package-description.centralcart-content :where(li) {
  margin-bottom: 0.35rem;
}



#package-description.centralcart-content :where(li:last-child) {
  margin-bottom: 0;
}



#package-description.centralcart-content :where(h1, h2, h3, h4) {
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: rgb(var(--foreground));
}



#package-description.centralcart-content :where(h1:first-child, h2:first-child, h3:first-child, h4:first-child) {
  margin-top: 0;
}



#package-description.centralcart-content :where(blockquote) {
  margin-bottom: 0.875rem;
  padding-left: 1rem;
  border-left: 3px solid hsl(var(--primary) / 0.45);
}



.package-description--hydrating img,
.package-description--hydrating iframe,
.package-description--hydrating video {
  display: none !important;
}



/* Mídia da descrição — estilo Steam: largura total, proporção nativa por item */
#package-description .package-desc-media {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 1.25rem 0;
  padding: 0;
  border: 0;
  background: transparent;
  line-height: 0;
  aspect-ratio: var(--desc-media-ar, auto);
}



#package-description .package-desc-media__player {
  display: block;
  width: 100%;
  max-width: 100%;
  background: transparent;
  line-height: 0;
  aspect-ratio: var(--desc-media-ar, auto);
}



#package-description.package-description--ready .package-desc-media__img,
#package-description.package-description--ready .package-desc-media__video,
.package-description--ready img[data-keep-in-description="true"],
.package-description--ready iframe[data-keep-in-description="true"],
.package-description--ready video[data-keep-in-description="true"] {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  vertical-align: top;
  background: transparent !important;
  object-fit: unset !important;
}



/* Saiba mais — descrição do produto */
.package-desc-read-more-wrap {
  position: relative;
}



.package-desc-read-more-fade {
  display: block;
  height: 4rem;
  margin-top: -3.25rem;
  margin-bottom: -0.35rem;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 15, 0) 0%,
    rgba(10, 10, 15, 0.55) 42%,
    rgba(10, 10, 15, 0.94) 78%,
    rgba(10, 10, 15, 1) 100%
  );
}



.package-desc-read-more-fade[hidden] {
  display: none !important;
}



.package-desc-more[hidden] {
  display: none !important;
}



.package-desc-read-more {
  display: none !important;
  width: 100%;
  margin: 0.35rem 0 0;
  padding: 0.55rem 0.5rem 0.15rem;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1.3;
  text-align: center;
  cursor: pointer;
  transition: color 0.15s ease;
}



.package-desc-read-more.is-visible {
  display: block !important;
}



.package-desc-read-more:hover {
  color: rgb(245 255 150);
  background: transparent;
}


/* Sidebar categories */

/* ===== Galeria estilo Astrokey (só imagens) ===== */
#image-gallery {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.28) transparent;
  scroll-snap-type: x proximity;
  /* Ajuda o último thumb a encostar inteiro na área visível ao soltar o scroll */
  scroll-padding-inline: 4px;
}



#gallery-thumbnails-container .gallery-thumb {
  scroll-snap-align: start;
}

@container gallery-thumb-strip (min-width: 0px) {

  /* -2px: tolerância de arredondamento no modo flex (8+ itens) */
  #gallery-thumbnails-container:not(.gallery-thumbs--desktop-fit) .gallery-thumb.gallery-thumb-tile {
    flex: 0 0 calc((100cqi - 4.5rem - 2px) / 7);
    width: calc((100cqi - 4.5rem - 2px) / 7);
    height: auto;
    aspect-ratio: 3 / 2;
    max-width: none;
  }
}



/* Só mostra barra azul quando há overflow real (JS: .image-gallery--overflowing) */
#image-gallery.image-gallery--fits {
  overflow-x: hidden;
  scrollbar-width: none;
}


#image-gallery.image-gallery--fits::-webkit-scrollbar {
  display: none;
  height: 0;
}

@media (min-width: 1024px) {

  #image-gallery.image-gallery--fits {
    padding-bottom: 0.25rem;
  }
}


#image-gallery::-webkit-scrollbar {
  height: 6px;
}


#image-gallery::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}


#image-gallery::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 3px;
}


#image-gallery::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.32);
}



.gallery-thumb {
  box-sizing: border-box;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}


.gallery-thumb-img {
  transition: transform 0.25s ease;
  transform-origin: center;
}


.gallery-thumb:hover .gallery-thumb-img {
  transform: scale(1.05);
}


.gallery-thumb.active img {
  opacity: 1 !important;
}



.gallery-thumb--video {
  position: relative;
  background: #0c0c10;
}



.gallery-thumb--video.is-thumb-loading {
  background: linear-gradient(110deg, #0c0c10 42%, #18181f 50%, #0c0c10 58%);
  background-size: 220% 100%;
  animation: gallery-thumb-shimmer 1.1s ease-in-out infinite;
}



@keyframes gallery-thumb-shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}



.gallery-thumb-img {
  visibility: visible;
  transition: opacity 0.22s ease;
}



.gallery-thumb-img--pending {
  opacity: 0;
  visibility: hidden;
}



.gallery-thumb-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.08) 45%, transparent 100%);
}



.gallery-thumb-play-ring {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
}



.gallery-thumb-play-icon {
  width: 1.05rem;
  height: 1.05rem;
  color: #fff;
  padding-left: 0.1rem;
}



.gallery-thumb-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}


.gallery-thumb-play svg {
  width: 1.5rem;
  height: 1.5rem;
}



.package-gallery-viewer {
  position: relative;
}



.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 10, 15, 0.7);
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.25s ease, background 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(8px);
}


.package-gallery-viewer:hover .gallery-arrow {
  opacity: 1;
}


.gallery-arrow:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-50%) scale(1.08);
}


.gallery-arrow-prev {
  left: 0.75rem;
}


.gallery-arrow-next {
  right: 0.75rem;
}



/* Entre o player principal e a faixa de miniaturas (layout astrokey) */
.gallery-progress-wrapper {
  position: relative;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
}


/* Barra sobre o player (template Apex Storms: progresso dentro de #package-gallery-viewer) */
.package-gallery-viewer > .gallery-progress-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 15;
  overflow: hidden;
  border-radius: 0 0 0.75rem 0.75rem;
}


.gallery-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.28));
  border-radius: 2px;
  transition: width 0.08s linear;
}



/* Trailer na galeria: iframe 16:9 no host (Apex) */
#package-gallery-video-host {
  pointer-events: auto;
}


.package-trailer-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}


#package-gallery-trailer-root .package-trailer-iframe,
.package-trailer-frame iframe,
#package-gallery-trailer-root video.package-trailer-hls {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  border: 0;
  display: block;
}



#package-gallery-trailer-root video.package-trailer-hls {
  object-fit: contain;
  background: #000;
}



#package-image-wrapper {
  transition: opacity 0.2s ease;
}


#package-image-wrapper:hover {
  opacity: 0.95;
}



.package-page-root {
  position: relative;
  /* Não use overflow-x aqui: quebra position:sticky do card lateral (coluna direita). */
  /* Mesma base do body para o degradê do hero não “quebrar” cor ao sumir a máscara */
  background-color: rgb(var(--background));
}



.package-page-bg {
  position: absolute;
  top: -5rem;
  left: 0;
  right: 0;
  height: calc(85vh + 5rem);
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  isolation: isolate;
  --package-bg-image: none;
  background-image: var(--package-bg-image, none);
  background-size: cover;
  background-position: center 22%;
  background-repeat: no-repeat;
  /* Menos zoom = sensação de imagem um pouco mais nítida */
  transform: scale(1.02);
  transform-origin: center top;
  /* Máscara inferior mais suave: mantém a imagem visível mais tempo antes de esvanecer */
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 min(78%, calc(100% - 5rem)),
    rgba(0, 0, 0, 0.35) 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 min(78%, calc(100% - 5rem)),
    rgba(0, 0, 0, 0.35) 92%,
    transparent 100%
  );
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}



/* Camada escura (reduzida) para o texto continuar legível sem “apagar” o wallpaper */
.package-page-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgb(var(--background) / 0.72) 0%,
    rgb(var(--background) / 0.42) 10%,
    rgba(9, 11, 18, 0.28) 22%,
    rgba(10, 13, 22, 0.16) 38%,
    rgba(11, 15, 24, 0.08) 55%,
    rgba(14, 18, 30, 0.04) 72%,
    transparent 100%
  );
  pointer-events: none;
}



/* Brilho tema + vinheta leve (antes mais pesada — escondia detalhes da imagem) */
.package-page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 110% 55% at 50% -5%, rgba(255, 255, 255, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse 90% 65% at 50% 105%, rgba(0, 0, 0, 0.22) 0%, transparent 55%),
    linear-gradient(90deg, rgba(9, 9, 11, 0.14) 0%, transparent 14%, transparent 86%, rgba(9, 9, 11, 0.14) 100%);
}



.package-lightbox-img-inner {
  animation: package-lightbox-in 0.3s ease-out forwards;
}


@keyframes package-lightbox-in {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}



/* Botão Adicionar Favorito (snapshot astrokey.store) */
.favorite-btn {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}


.favorite-btn:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}


.favorite-btn.is-added {
  border: 1px solid rgb(52 168 115);
  background: rgb(52 168 115);
  color: rgb(255 255 255);
}


.favorite-btn.is-added:hover {
  background: rgb(64 180 128);
  border-color: rgb(64 180 128);
}


.favorite-btn.is-added .favorite-btn-icon {
  color: rgb(255 255 255);
  transform: scale(1.1);
}


.favorite-btn .favorite-btn-icon {
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.4s ease;
}


.favorite-btn.is-added .favorite-btn-icon {
  animation: favorite-star-pop 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}



/* ============================================
   Feature Cards - Efeitos Modernos com Luz (Astrokey)
   ============================================ */

/* Base do card — hover discreto (alinhado a referências compactas tipo astrokey) */
.feature-card {
  position: relative;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0) scale(1);
  will-change: transform;
  min-height: auto;
  height: auto;
  border-radius: 1rem;
}



.feature-card:hover {
  transform: translateY(-3px) scale(1.008);
}



/* Efeito de brilho que segue o mouse */
.feature-card-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  transition: opacity 0.2s ease, transform 0.2s ease;
  filter: blur(60px);
  z-index: 0;
  left: 50%;
  top: 50%;
}



.feature-card:hover .feature-card-glow {
  opacity: 0.7;
  transform: translate(-50%, -50%) scale(0.9);
}



/* Brilho azul/verde */
.feature-card-blue .feature-card-glow {
  background: radial-gradient(circle, rgba(229, 255, 0, 0.2) 0%, rgba(229, 255, 0, 0.06) 40%, transparent 70%);
}


.feature-card-green .feature-card-glow {
  background: radial-gradient(circle, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0.06) 40%, transparent 70%);
}



/* Cards azul/verde */
.feature-card-blue {
  background: linear-gradient(135deg, rgba(10, 10, 15, 0.98) 0%, rgba(20, 20, 18, 0.95) 100%);
  border: 1px solid rgba(229, 255, 0, 0.18);
  box-shadow: 0 8px 32px -8px rgba(229, 255, 0, 0.08), 0 0 0 1px rgba(229, 255, 0, 0.06) inset, 0 0 30px -20px rgba(229, 255, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}


.feature-card-blue:hover {
  border-color: rgba(229, 255, 0, 0.35);
  box-shadow: 0 16px 48px -12px rgba(229, 255, 0, 0.18), 0 0 0 1px rgba(229, 255, 0, 0.15) inset, 0 0 50px -30px rgba(229, 255, 0, 0.2), 0 4px 8px rgba(0, 0, 0, 0.3);
}



.feature-card-green {
  background: linear-gradient(135deg, rgba(10, 10, 15, 0.98) 0%, rgba(20, 20, 18, 0.95) 100%);
  border: 1px solid rgba(34, 197, 94, 0.18);
  box-shadow: 0 8px 32px -8px rgba(34, 197, 94, 0.08), 0 0 0 1px rgba(34, 197, 94, 0.06) inset, 0 0 30px -20px rgba(34, 197, 94, 0.1), 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}


.feature-card-green:hover {
  border-color: rgba(34, 197, 94, 0.35);
  box-shadow: 0 16px 48px -12px rgba(34, 197, 94, 0.18), 0 0 0 1px rgba(34, 197, 94, 0.15) inset, 0 0 50px -30px rgba(34, 197, 94, 0.2), 0 4px 8px rgba(0, 0, 0, 0.3);
}



/* Gradientes de luz no hover */
.feature-card-light-blue,
.feature-card-light-green {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}


.feature-card-light-blue {
  background: radial-gradient(circle at 20% 30%, rgba(229, 255, 0, 0.08) 0%, transparent 50%), linear-gradient(135deg, rgba(229, 255, 0, 0.05) 0%, transparent 70%);
}


.feature-card-blue:hover .feature-card-light-blue {
  opacity: 1;
}


.feature-card-light-green {
  background: radial-gradient(circle at 80% 30%, rgba(34, 197, 94, 0.08) 0%, transparent 50%), linear-gradient(225deg, rgba(34, 197, 94, 0.05) 0%, transparent 70%);
}


.feature-card-green:hover .feature-card-light-green {
  opacity: 1;
}



/* Conteúdo */
.feature-card-content {
  position: relative;
  z-index: 2;
}



/* Padrão de grade futurista */
.feature-card-grid-pattern {
  position: absolute;
  inset: 0;
  background-size: 20px 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}


.feature-card-blue .feature-card-grid-pattern {
  background-image: linear-gradient(rgba(229, 255, 0, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(229, 255, 0, 0.03) 1px, transparent 1px);
}


.feature-card-green .feature-card-grid-pattern {
  background-image: linear-gradient(rgba(34, 197, 94, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(34, 197, 94, 0.03) 1px, transparent 1px);
}


.feature-card:hover .feature-card-grid-pattern {
  opacity: 1;
}



/* Wrapper do ícone */
.feature-card-icon-wrapper {
  position: relative;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


.feature-card:hover .feature-card-icon-wrapper {
  transform: translateY(-2px) scale(1.04);
}



/* Transições suaves para ícones e textos */
.feature-card-icon {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}


.feature-card:hover .feature-card-icon {
  transform: scale(1.06) rotate(3deg);
  box-shadow: 0 0 14px rgba(229, 255, 0, 0.14);
}


.feature-card-green:hover .feature-card-icon {
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.18);
}



.feature-card-title {
  transition: all 0.3s ease;
  letter-spacing: -0.02em;
}


.feature-card:hover .feature-card-title {
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}



/* Barra inferior */
.feature-card-bar {
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}


.feature-card-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}


.feature-card:hover .feature-card-bar::before {
  left: 100%;
}


.feature-card:hover .feature-card-bar {
  box-shadow: 0 6px 16px -4px rgba(229, 255, 0, 0.15);
}


.feature-card-green:hover .feature-card-bar {
  box-shadow: 0 6px 16px -4px rgba(34, 197, 94, 0.15);
}



/* Cards da seção “Experiência rápida” — vidro escuro tipo astrokey */
.package-features-section .package-feature-card.feature-card-blue,
.package-features-section .package-feature-card.feature-card-green {
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 24px -8px rgba(0, 0, 0, 0.45);
}


.package-features-section .package-feature-card.feature-card-blue {
  border-color: rgba(229, 255, 0, 0.22);
}


.package-features-section .package-feature-card.feature-card-green {
  border-color: rgba(34, 197, 94, 0.22);
}


.package-features-section .package-feature-card .feature-card-bar {
  background: rgba(0, 0, 0, 0.35);
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}



/* Versão limpa (página de produto): sem grade, brilho, pseudo-linhas nem overlays no hover */
.package-features-section .package-feature-card--clean {
  cursor: default;
  overflow: visible;
}


.package-features-section .package-feature-card--clean::before,
.package-features-section .package-feature-card--clean::after {
  content: none !important;
  display: none !important;
}


.package-features-section .package-feature-card--clean:hover {
  transform: none;
  box-shadow: 0 4px 24px -8px rgba(0, 0, 0, 0.45);
}


.package-features-section .package-feature-card--clean.feature-card-blue:hover {
  border-color: rgba(229, 255, 0, 0.22);
}


.package-features-section .package-feature-card--clean.feature-card-green:hover {
  border-color: rgba(34, 197, 94, 0.22);
}


.package-features-section .package-feature-card--clean:hover .feature-card-title {
  text-shadow: none;
}


.package-features-section .package-feature-card--clean:hover .feature-card-icon {
  transform: none;
  box-shadow: none;
}


.package-features-section .package-feature-card--clean:hover .feature-card-icon-wrapper {
  transform: none;
}


.package-features-section .package-feature-card--clean:hover .feature-card-icon i {
  animation: none;
}



.package-features-section .feature-card-grid-pattern {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}


.feature-card:hover .feature-card-icon i {
  animation: iconPulse 2s ease-in-out infinite;
}



/* Linha superior animada */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 3;
}


.feature-card-blue::before { color: rgba(229, 255, 0, 0.35); }


.feature-card-green::before { color: rgba(34, 197, 94, 0.35); }


.feature-card:hover::before { opacity: 1; }



/* Profundidade adicional */
.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent, rgba(255, 255, 255, 0.05));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 2;
}


.feature-card:hover::after { opacity: 1; }



.package-list .package,
.package-list a {
  height: 100%;
}



.package-list img {
  display: block;
}



/* ===== Steam-like media hub (package page) ===== */
.package-media-tab.is-active {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.95);
}



.package-media-thumb {
  flex: 0 0 auto;
  width: 120px;
  height: 68px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  position: relative;
  transition: border-color 0.18s ease, transform 0.18s ease;
}



.package-media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (hover: hover) and (pointer: fine) {

  .package-media-thumb:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.18);
  }
}



.package-media-thumb--trailer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}



.package-media-thumb__play {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}



.package-media-thumb__play::before {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.14);
}



.package-media-main {
  aspect-ratio: 16 / 9;
  min-height: 220px;
}



.package-media-main img,
.package-media-main iframe,
.package-media-main video {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 0.375rem;
}



.package-media-main img,
.package-media-main video {
  object-fit: cover;
}



.package-media-main iframe {
  border: 0;
}



#package-media-thumbs {
  margin-top: 12px;
}



/* ===== Galeria: fundo blur dinâmico (profissional) =====
   Usa somente a variável --package-media-bg (sem fallback "none")
   para evitar comportamento inconsistente em alguns navegadores. */
#package-media {
  position: relative;
  z-index: 0;
  border-radius: 16px;
  isolation: isolate;
}



#package-media::before {
  content: "";
  position: absolute;
  inset: -18%;
  z-index: 0;
  background-image: var(--package-media-bg);
  background-color: #0b0f17;
  background-size: cover;
  background-position: center;
  /* Fundo mais forte (mais detalhe, menos blur) */
  filter: blur(28px);
  transform: scale(1.05);
  opacity: var(--package-media-bg-opacity, 0.42);
  transition: opacity 240ms ease;
  pointer-events: none;
}



#package-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(85% 70% at 40% 22%, rgba(229, 255, 0, 0.10), rgba(0,0,0,0) 58%),
    linear-gradient(180deg, rgba(0,0,0,0.50), rgba(0,0,0,0.82));
  pointer-events: none;
}



.package-media-main,
#package-media-thumbs {
  position: relative;
  z-index: 2;
}



/* Layout igual Astrokey */
.package-media-main {
  cursor: pointer;
}



.package-media-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}


.package-media-nav:hover {
  background: rgba(0, 0, 0, 0.55);
  border-color: rgba(255, 255, 255, 0.22);
}


.package-media-nav:active {
  transform: translateY(-50%) scale(0.98);
}


.package-media-nav--prev { left: 12px; }


.package-media-nav--next { right: 12px; }


.package-media-nav svg { width: 18px; height: 18px; display: block; }



.package-media-thumb {
  flex: 0 0 auto;
  width: 96px;  /* w-24 */
  height: 64px; /* h-16 */
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
  position: relative;
  transition: border-color 0.18s ease, background 0.18s ease;
}


.package-media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.6;
  transform: scale(1);
  filter: brightness(1);
  transition:
    transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform, opacity, filter;
}

@media (hover: hover) and (pointer: fine) {

  .package-media-thumb:hover img {
    transform: scale(1.04);
    opacity: 0.9;
    filter: brightness(1.08);
  }


  .package-media-thumb.is-active:hover img {
    transform: scale(1.03);
    opacity: 1;
    filter: brightness(1.06);
  }


  .package-media-thumb--trailer .package-media-thumb__play {
    transform: scale(1);
    opacity: 0.96;
    transition:
      transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
      opacity 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform, opacity;
  }


  .package-media-thumb--trailer:hover .package-media-thumb__play {
    transform: scale(1.06);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {

  .package-media-thumb img,
  .package-media-thumb--trailer .package-media-thumb__play {
    transition: none;
    transform: none;
    filter: none;
  }
}



.package-media-thumb.is-active {
  border-color: rgba(229, 255, 0, 0.55); /* roxo */
  background: rgba(229, 255, 0, 0.10);
  box-shadow: none;
}


.package-media-thumb.is-active img { opacity: 1; }



.package-media-progress {
  height: 2px;
  width: 100%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin-top: 10px;
}



.package-media-progress--overlay {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  margin-top: 0;
  pointer-events: none;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
}



.package-media-progress--overlay::after {
  /* Roxo (padrão do site/botão) */
  background: rgba(229, 255, 0, 0.95);
}



.package-media-progress::after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: rgba(255, 255, 255, 0.45);
}



.package-media-progress.is-running::after {
  animation: package-media-progress var(--media-progress-duration, 5s) linear infinite;
}



@keyframes package-media-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}



.package-media-thumb.is-active {
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

@media (prefers-reduced-motion: reduce) {

  .package-media-thumb {
    transition: none;
  }

  .package-media-thumb:hover {
    transform: none;
  }
}



/* --------------------------------------------------------------------------
   Página de produto — alinhamento AstroKey (segurança, requisitos, FAQ)
   -------------------------------------------------------------------------- */

.requirements-toggle-btn {
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0.15rem 0 0;
  margin: 0;
  border-radius: 0.5rem;
  outline: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}



.requirements-toggle-btn:hover,
.requirements-toggle-btn:focus:not(:focus-visible) {
  background: transparent;
  outline: none;
  box-shadow: none;
}



.requirements-toggle-btn:focus-visible {
  outline: 2px solid rgba(229, 255, 0, 0.45);
  outline-offset: 2px;
}



.security-card {
  background: linear-gradient(135deg, rgba(10, 10, 15, 0.95) 0%, rgba(20, 20, 18, 0.9) 100%);
  border: 1px solid rgba(229, 255, 0, 0.35);
  box-shadow:
    0 0 0 1px rgba(229, 255, 0, 0.08) inset,
    0 4px 24px -4px rgba(229, 255, 0, 0.15),
    0 1px 2px rgba(0, 0, 0, 0.2);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}



.security-card:hover {
  border-color: rgba(229, 255, 0, 0.5);
  box-shadow:
    0 0 0 1px rgba(229, 255, 0, 0.12) inset,
    0 8px 32px -8px rgba(229, 255, 0, 0.2),
    0 1px 2px rgba(0, 0, 0, 0.2);
}



.requirements-content-wrap {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s cubic-bezier(0.33, 1, 0.68, 1);
}



.requirements-content-wrap.requirements-open {
  max-height: 900px;
  margin-top: 1rem;
  transition:
    max-height 0.45s cubic-bezier(0.33, 1, 0.68, 1),
    margin-top 0.3s ease;
}



.requirements-content-inner {
  opacity: 0;
  transition: opacity 0.25s ease-out;
}



.requirements-content-wrap.requirements-open .requirements-content-inner {
  opacity: 1;
  transition-delay: 0.08s;
}



.requirements-chevron {
  transform: rotate(0deg);
  transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}



.requirements-toggle-btn.is-open .requirements-chevron {
  transform: rotate(180deg);
}



.package-faq-header {
  position: relative;
}



.package-faq-title {
  letter-spacing: -0.02em;
  background: linear-gradient(to right, #fff, rgba(245, 255, 150, 0.9));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}



.package-faq-item {
  position: relative;
}



.package-faq-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(229, 255, 0, 0.15), transparent 50%, rgba(229, 255, 0, 0.08));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}



.package-faq-item:hover::before,
.package-faq-item.is-open::before {
  opacity: 1;
}



.package-faq-question {
  outline: none;
  transition: color 0.2s ease;
}



.package-faq-question:hover {
  color: rgba(245, 255, 150, 0.95);
}



.package-faq-icon {
  transition: transform 0.26s cubic-bezier(0.33, 1, 0.32, 1);
}



.package-faq-answer-wrapper {
  max-height: 0;
  transition: max-height 0.28s cubic-bezier(0.33, 1, 0.32, 1);
}



.package-faq-item.is-open .package-faq-answer-wrapper {
  max-height: 720px;
}



.package-faq-item.is-open .package-faq-icon {
  transform: rotate(180deg);
}



.package-faq-item.is-open {
  border-color: rgba(229, 255, 0, 0.35);
  box-shadow:
    0 0 0 1px rgba(229, 255, 0, 0.1) inset,
    0 4px 20px -4px rgba(229, 255, 0, 0.15);
}



/* Acessibilidade: estoque legível para leitores (texto fora do layout) */
#package-stock.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}



/* ========== ProductCard / PriceSection / VariantSelector / BuyButton (página pacote) ========== */

#package-purchase-panel .package-purchase-top {
  min-width: 0;
}



/* Painel compra — uma linha sempre (override do flex-wrap global); scroll horizontal se faltar largura */
#package-purchase-panel .product-quickfacts {
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}



#package-purchase-panel .product-quickfacts::-webkit-scrollbar {
  display: none;
}



#package-purchase-panel .product-quickfacts--slim {
  padding: 0.45rem 0.6rem;
}



#package-purchase-panel .product-quickfacts__item {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.4rem;
  line-height: 1.2;
  white-space: nowrap;
}



#package-purchase-panel .product-quickfacts__item span {
  line-height: 1.2;
}



#package-purchase-panel .product-quickfacts__steam-icon {
  width: 15px !important;
  height: 15px !important;
  max-width: 15px;
  max-height: 15px;
  object-fit: contain;
  flex-shrink: 0;
  margin: 0;
}



#package-purchase-panel .product-quickfacts__item > i[data-lucide] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin: 0;
  line-height: 0;
}



#package-purchase-panel .product-quickfacts__item .product-quickfacts__lucide {
  width: 15px;
  height: 15px;
}



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



.product-quickfacts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(12, 14, 18, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}



.product-quickfacts--slim {
  padding: 0.45rem 0.6rem;
  gap: 0.35rem 0.6rem;
  border-color: rgba(255, 255, 255, 0.06);
  background: rgba(10, 12, 16, 0.75);
}



.product-quickfacts__item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.01em;
}



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



.product-quickfacts__item--ok .product-quickfacts__lucide {
  color: rgba(240, 255, 90, 0.95);
}



.product-quickfacts__item--steam-key-global span {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.25;
}

@media (min-width: 380px) {

  .product-quickfacts__item--steam-key-global span {
    font-size: 0.75rem;
  }
}



.product-quickfacts__steam-icon {
  display: block;
  opacity: 0.92;
  filter: brightness(0) invert(1);
}



.product-quickfacts__lucide {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  opacity: 0.95;
}



.product-price-section__hero {
  margin-top: 0.15rem;
}



.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, #e5ff00 0%, #b8cc00 100%);
  box-shadow: 0 2px 12px -4px rgba(229, 255, 0, 0.45);
}



.product-price-section__savings:not(.hidden) {
  margin-top: 0.15rem;
}



.product-price-section__urgency:not(.hidden) {
  margin-top: 0.2rem;
}



.product-activation-note {
  margin: 0.2rem 0 0;
  font-size: 0.65rem;
  line-height: 1.3;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.32);
  letter-spacing: 0.02em;
}



.product-price-section--tight .product-price-section__hero {
  margin-top: 0;
}



/* VariantSelector — Edição: select nativo ou, com JS, controlo segmentado */
.product-variant-selector {
  margin-top: 0.85rem;
}



.product-variant-selector__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.35rem;
}



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



.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__wrap--enhanced::after {
  display: none;
}



/* Pills (substitui lista nativa do SO) */
.product-variant-selector__segmented {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 0.28rem;
  border-radius: 0.75rem;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}



.product-variant-selector__choice {
  flex: 1 1 calc(50% - 0.25rem);
  min-width: 0;
  margin: 0;
  padding: 0.65rem 0.7rem;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.01em;
  text-align: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}



.product-variant-selector__choice:only-child {
  flex-basis: 100%;
}



.product-variant-selector__choice:hover {
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}



.product-variant-selector__choice.is-selected {
  color: #fff;
  background: linear-gradient(165deg, rgba(229, 255, 0, 0.45) 0%, rgba(229, 255, 0, 0.32) 100%);
  border-color: rgba(240, 255, 90, 0.55);
  box-shadow:
    0 0 0 1px rgba(229, 255, 0, 0.18),
    0 4px 16px -6px rgba(229, 255, 0, 0.45);
}



.product-variant-selector__choice:focus {
  outline: none;
}



.product-variant-selector__choice:focus-visible {
  outline: 2px solid rgba(245, 255, 150, 0.95);
  outline-offset: 2px;
}



.product-variant-selector__choice:active:not(.is-selected) {
  transform: scale(0.99);
}

@media (prefers-reduced-motion: reduce) {

  .product-variant-selector__choice {
    transition: none;
  }


  .product-variant-selector__choice:active:not(.is-selected) {
    transform: none;
  }
}



select#package-edition-select.product-variant-selector__select--enhanced {
  position: fixed !important;
  left: -10000px !important;
  top: 0 !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
  opacity: 0;
  pointer-events: none;
}



/*
 * Select nativo + appearance:none no Chromium/Windows corta o texto no eixo Y se
 * line-height/padding forem apertados (16px global em core.css linha ~15).
 */
.product-variant-selector__select,
select#package-edition-select.product-variant-selector__select {
  width: 100%;
  max-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;
  height: auto;
  max-height: none;
  overflow: visible;
  color: #fff;
  background-color: #12141a;
  background-image: none;
  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(229, 255, 0, 0.35);
  background: #15171e;
}



.product-variant-selector__select:focus {
  outline: none;
}



.product-variant-selector__select:focus-visible {
  border-color: rgba(229, 255, 0, 0.75);
  box-shadow: 0 0 0 3px rgba(229, 255, 0, 0.22);
}



.product-variant-selector__hint {
  margin: 0.35rem 0 0;
  font-size: 0.72rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.42);
  min-height: 0;
}



.product-variant-selector__hint.hidden {
  display: none;
}



/* Comprar agora — minimal (sem gradiente/brilho), press fluido */
.product-buy-btn-premium {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #e5ff00;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
  transition:
    transform 0.45s cubic-bezier(0.34, 1.45, 0.64, 1),
    background-color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.25s ease;
}



.product-buy-btn-premium:hover:not(:disabled) {
  background: #b8cc00;
  border-color: rgba(255, 255, 255, 0.14);
}



.product-buy-btn-premium:active:not(:disabled) {
  transform: scale(0.972);
  background: #a3b800;
  border-color: rgba(255, 255, 255, 0.08);
  transition:
    transform 0.12s cubic-bezier(0.33, 1, 0.68, 1),
    background-color 0.12s ease;
}



.product-buy-btn-premium:focus-visible {
  outline: 2px solid rgba(245, 255, 150, 0.85);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {

  .product-buy-btn-premium {
    transition: background-color 0.2s ease, border-color 0.2s ease;
  }


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



/* Favorito no card de compra — discreto; estado “salvo” em azul (não verde) */
#package-purchase-panel .product-favorite-btn:not(.is-added) {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(6, 8, 12, 0.55);
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  box-shadow: none;
}



#package-purchase-panel .product-favorite-btn:not(.is-added):hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(12, 14, 20, 0.75);
  color: rgba(255, 255, 255, 0.88);
}



#package-purchase-panel .product-favorite-btn.is-added {
  border-color: rgba(229, 255, 0, 0.9) !important;
  background: linear-gradient(180deg, #e5ff00 0%, #b8cc00 100%) !important;
  color: #fff !important;
}



#package-purchase-panel .product-favorite-btn.is-added:hover {
  border-color: rgba(229, 255, 0, 1) !important;
  filter: brightness(1.05);
}