/* AusTV — inventory.css
   CSS puro (sem @apply / @layer): a plataforma limita cada arquivo a 64 KB
   e este é servido cru, linkado em layouts/layout.html DEPOIS do CSS
   compilado pelo Tailwind — por isso as regras aqui vencem as utilitárias
   de mesma especificidade. Tokens (--tone, --accent, --surface-code...)
   vêm do <style> do layout.

   Seções: Liquid glass + MetalButton · Página de categoria (dock) ·
   Slot de inventário (package-card / dialog) · Depoimentos e Doadores ·
   Carrinho (drawer) e Checkout. */

/* AusTV — Liquid glass (port em CSS do liquid-glass-button do shadcn/21st)
   e Metal button (port do MetalButton do mesmo arquivo). Sem WebGL.

   Três peças:
   .liquid-glass  — chips e botões de vidro: preenchimento escuro sutil,
                    blur do fundo, fio de luz de 1px no topo e sombra de
                    1px na base. Sem inset brancas com spread nem filtro
                    de refração: sobre fundo escuro elas viram névoa
                    leitosa e manchas — foi o que se tentou antes e
                    ficou ruim. Não reintroduza.
   .glass-surface — a mesma linguagem para cards e painéis grandes.
   .btn-metal     — MetalButton "primary": aro externo preto→cinza, aro
                    interno roxo escovado, placa roxa com sombra no texto;
                    afunda 2.5px ao pressionar. Feito com border
                    transparente + pseudo-elementos, sem wrappers.

   O amarelo do CTA de compra fica de fora de propósito (hierarquia de
   CTA). Tudo desliga sob prefers-reduced-motion (bloco global no fim). */

.liquid-glass,
.btn-secondary,
.btn-outline,
.btn-ghost:hover,
.nav-btn--outline,
.nav-link:hover,
.nav-link:focus-visible,
.nav-link[aria-current='page'] {
  position: relative;
  border: 1px solid rgb(255 255 255 / .12);
  background: rgb(255 255 255 / .06);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / .12),
    inset 0 -1px 0 rgb(0 0 0 / .35),
    0 4px 14px rgb(0 0 0 / .25);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  backdrop-filter: blur(12px) saturate(1.2);
  transition: transform .25s cubic-bezier(.2, .8, .2, 1), background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.liquid-glass:hover,
.btn-secondary:hover,
.btn-outline:hover,
.nav-btn--outline:hover {
  background: rgb(255 255 255 / .1);
  border-color: rgb(255 255 255 / .2);
  transform: scale(1.02);
}

.liquid-glass:active,
.btn-secondary:active,
.btn-outline:active,
.nav-btn--outline:active {
  transform: scale(.98);
  background: rgb(255 255 255 / .04);
  box-shadow:
    inset 0 2px 4px rgb(0 0 0 / .35),
    inset 0 -1px 0 rgb(0 0 0 / .2);
}

/* Cards e painéis */
/* Sombra externa por filter: drop-shadow, não box-shadow. Com box-shadow +
   backdrop-filter no mesmo elemento o Chrome pintava um retângulo
   esmaecido em volta do card (a área do blur do fundo incluía a sombra).
   Os cards ficam sobre fundo chapado, então o backdrop-filter aqui não
   fazia diferença visual e saiu; só o dialog (--solid) mantém o blur. */
.glass-surface {
  position: relative;
  background: linear-gradient(180deg, rgb(255 255 255 / .06), rgb(255 255 255 / .025));
  border: 1px solid rgb(255 255 255 / .1);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / .12),
    inset 0 -1px 0 rgb(0 0 0 / .25);
  filter: drop-shadow(0 10px 18px rgb(0 0 0 / .28));
}

/* Painéis que ficam sobre conteúdo (dialogs): fundo mais denso para o
   texto não competir com o que está atrás. */
.glass-surface--solid {
  background: linear-gradient(180deg, rgb(var(--surface-from) / .92), rgb(var(--surface-to) / .92));
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  filter: none; /* filter + backdrop-filter juntos voltariam ao retângulo */
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / .12),
    inset 0 -1px 0 rgb(0 0 0 / .25),
    0 24px 60px rgb(0 0 0 / .45);
}

/* Vidro decorativo (faixas, pílulas de status): sem o scale do hover. */
.liquid-glass--static:hover,
.liquid-glass--static:active {
  transform: none;
}

.glass-surface--hover:hover,
.glass-surface--hover:focus-within {
  border-color: rgb(255 255 255 / .2);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / .18),
    inset 0 -1px 0 rgb(0 0 0 / .25);
  filter: drop-shadow(0 16px 24px rgb(0 0 0 / .36));
}

/* MetalButton — variante primary (roxo escovado) */
.btn-metal,
.btn-primary,
.nav-btn--primary {
  position: relative;
  isolation: isolate;
  border: 2px solid transparent;
  background:
    linear-gradient(180deg, rgb(var(--purple-700)), rgb(var(--purple-900))) padding-box;
  color: #fff;
  text-shadow: 0 -1px 0 rgb(var(--purple-950));
  box-shadow: 0 3px 8px rgb(0 0 0 / .08);
  transform: translateY(0) scale(1);
  transform-origin: center;
  transition: transform 250ms cubic-bezier(.1, .4, .2, 1), box-shadow 250ms cubic-bezier(.1, .4, .2, 1), filter 250ms cubic-bezier(.1, .4, .2, 1);
  will-change: transform;
}

/* Aro externo (from-#000 to-#A0A0A0) */
.btn-metal::before,
.btn-primary::before,
.nav-btn--primary::before {
  content: '';
  position: absolute;
  inset: -2px;
  z-index: -2;
  border-radius: inherit;
  background: linear-gradient(180deg, #000, #a0a0a0);
  pointer-events: none;
}

/* Aro interno (from-primary via-secondary to-muted) */
.btn-metal::after,
.btn-primary::after,
.nav-btn--primary::after {
  content: '';
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(180deg, rgb(var(--primary-light)), hsl(var(--primary)), rgb(var(--muted-solid)));
  pointer-events: none;
}

@media (hover: hover) {
  .btn-metal:hover,
  .btn-primary:hover,
  .nav-btn--primary:hover {
    filter: brightness(1.06);
    box-shadow: 0 4px 12px rgb(0 0 0 / .12);
  }
}

.btn-metal:active,
.btn-primary:active,
.nav-btn--primary:active {
  transform: translateY(2.5px) scale(.97);
  filter: none;
  box-shadow: 0 1px 2px rgb(0 0 0 / .15);
}

/* AusTV — Página de categoria (pages/category.html)

   .cat-dock      — dock de categorias (components/category_dock.html; port
                    do Dock do motion-primitives). Ícones numa barra de
                    vidro; scripts/dock.js anima a largura de cada item
                    conforme a distância do cursor. A largura é o que
                    cresce — o ícone acompanha porque ocupa 100% do item.
                    O label sobe do ícone no hover/foco. Categoria atual
                    tem um ponto embaixo. Em toque não há magnificação e
                    a barra rola na horizontal.
   A comparação de planos VIP continua sendo o bloco estático original em
   pages/category.html (cards de tier + tabelas). */

.cat-dock-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 1.5rem; /* espaço para os labels flutuantes */
}

.cat-dock {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: .5rem;
  height: 64px;
  max-width: 100%;
  padding: 0 .75rem;
  border: 1px solid rgb(var(--primary-light) / .22);
  border-radius: 1.25rem;
  background: linear-gradient(180deg, rgb(var(--purple-900) / .85), rgb(var(--purple-950) / .95));
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / .1),
    inset 0 -1px 0 rgb(0 0 0 / .4),
    0 12px 32px rgb(0 0 0 / .35);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  backdrop-filter: blur(14px) saturate(1.2);
  overflow: visible;
}

.cat-dock__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-width: 44px;
  max-width: 84px; /* teto duro: mesmo que o JS erre, o item não passa disso */
  aspect-ratio: 1;
  margin-bottom: 10px;
  border-radius: 9999px;
  background: rgb(var(--primary) / .22);
  border: 1px solid rgb(var(--primary-light) / .22);
  color: rgb(var(--primary-light));
  flex: none;
  outline-offset: 3px;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
  will-change: width;
}

.cat-dock__item:hover,
.cat-dock__item:focus-visible {
  background: rgb(var(--primary) / .45);
  border-color: rgb(var(--primary-light) / .5);
  color: #fff;
}

.cat-dock__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56%;
  aspect-ratio: 1;
  pointer-events: none;
}

/* Ícone cadastrado no painel (PNG) */
.cat-dock__icon .cat-dock__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: pixelated;
  filter: drop-shadow(0 2px 4px rgb(0 0 0 / .4));
}

/* Glifo Lucide: preenche a área do ícone e escala junto com o item */
.cat-dock__icon .cat-dock__glyph,
.cat-dock__icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.75;
}

/* Label flutuante (DockLabel): nasce colado ao ícone e sobe 10px ao aparecer. */
.cat-dock__label {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 4px);
  transform: translate(-50%, 6px);
  padding: .2rem .55rem;
  border-radius: .5rem;
  border: 1px solid rgb(var(--primary-light) / .25);
  background: rgb(var(--purple-950) / .96);
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.cat-dock__item:hover .cat-dock__label,
.cat-dock__item:focus-visible .cat-dock__label {
  opacity: 1;
  transform: translate(-50%, -4px);
}

/* Categoria atual: bolinha roxa sólida + ponto embaixo, como app aberto */
.cat-dock__dot {
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 4px;
  height: 4px;
  border-radius: 9999px;
  background: rgb(var(--primary-light));
  transform: translateX(-50%);
  opacity: 0;
}

.cat-dock__item[aria-current='page'] {
  background: hsl(var(--primary));
  border-color: rgb(var(--primary-light) / .7);
  color: #fff;
  box-shadow: 0 0 16px hsl(var(--primary) / .55);
}

.cat-dock__item[aria-current='page'] .cat-dock__dot {
  opacity: 1;
}

/* Promoções: o único item amarelo; brilho estático, sem animação em repouso. */
.cat-dock__item--promo {
  color: rgb(var(--accent));
  border-color: rgb(var(--accent) / .45);
  background: rgb(var(--accent) / .12);
}

.cat-dock__item--promo:hover,
.cat-dock__item--promo:focus-visible {
  background: rgb(var(--accent) / .25);
  border-color: rgb(var(--accent) / .7);
  color: rgb(var(--accent));
}

.cat-dock__item--promo[aria-current='page'] {
  background: rgb(var(--accent));
  border-color: rgb(var(--accent));
  color: rgb(var(--accent-foreground));
  box-shadow: 0 0 16px rgb(var(--accent) / .45);
}

.cat-dock__item--promo[aria-current='page'] .cat-dock__dot {
  background: rgb(var(--accent));
}

/* NPC apoiado na ponta direita do dock */
.cat-dock__npc {
  position: absolute;
  left: calc(100% - 10px);
  bottom: 2px;
  height: 104px;
  width: auto;
  pointer-events: none;
  filter: drop-shadow(0 8px 12px rgb(0 0 0 / .45));
  transform-origin: bottom center;
  animation: npc-idle 4s ease-in-out infinite;
}

@keyframes npc-idle {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-3px) rotate(-1.5deg); }
}

/* Toque / telas estreitas: sem magnificação, barra rolável, NPC some. */
@media (hover: none), (max-width: 767px) {
  .cat-dock-wrap {
    justify-content: flex-start;
    padding-top: 0;
    margin-inline: -.75rem;
    padding-inline: .75rem;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .cat-dock-wrap::-webkit-scrollbar { display: none; }
  .cat-dock { height: 60px; gap: .4rem; }
  .cat-dock__item { width: 42px; margin-bottom: 8px; }
  .cat-dock__label { display: none; }
  .cat-dock__npc { display: none; }
}

/* AusTV — Card de produto "slot de inventário" (components/package-card.html)

   O card é um item no inventário: poço escuro com bisel (escuro em cima/
   esquerda, claro embaixo/direita, como o slot do jogo), brilho radial na
   cor da categoria atrás do item, quantidade ×N no canto em fonte pixel,
   selo verde de bônus e o tooltip do jogo no hover. A cor vem de --tone
   (tripla RGB) definida por .pkg-slot--<tom>; tudo o mais lê --tone. */

.pkg-slot {
  --tone: var(--primary-light);
  border-radius: 1.25rem;
  border: 1px solid rgb(255 255 255 / .1);
  background: linear-gradient(180deg, rgb(255 255 255 / .06), rgb(255 255 255 / .025));
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / .12),
    inset 0 -1px 0 rgb(0 0 0 / .25);
  /* sombra por filter (segue a silhueta), sem backdrop-filter — ver
     .glass-surface */
  filter: drop-shadow(0 10px 18px rgb(0 0 0 / .28));
  transition: transform .3s cubic-bezier(.2, .8, .2, 1), border-color .3s ease, filter .3s ease;
}

.pkg-slot:hover,
.pkg-slot:focus-within {
  transform: translateY(-4px);
  border-color: rgb(var(--tone) / .45);
  filter:
    drop-shadow(0 16px 24px rgb(0 0 0 / .36))
    drop-shadow(0 0 14px rgb(var(--tone) / .22));
}

/* Base do tom fora do card (dialog): quem usa .pkg-slot__* sem ser .pkg-slot
   precisa de --tone definido. */
.pkg-tone { --tone: var(--primary-light); }

.pkg-slot--purple { --tone: var(--primary-light); }
.pkg-slot--amber  { --tone: 251 191 36; }
.pkg-slot--pink   { --tone: 244 114 182; }
.pkg-slot--green  { --tone: 74 222 128; }
.pkg-slot--cyan   { --tone: 34 211 238; }
.pkg-slot--blue   { --tone: 96 165 250; }
.pkg-slot--gold   { --tone: var(--accent); }

.pkg-slot--highlight {
  border-color: rgb(var(--accent) / .55);
}

.pkg-slot__flag {
  position: absolute;
  top: .75rem;
  right: .75rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  padding: .15rem .5rem;
  border-radius: 9999px;
  border: 1px solid rgb(var(--accent) / .5);
  background: rgb(var(--accent) / .15);
  color: rgb(var(--accent));
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* Poço do slot: bisel do inventário */
.pkg-slot__well {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: .75rem .75rem 0;
  aspect-ratio: 1 / .82;
  border-radius: .9rem;
  border: 2px solid;
  border-color: rgb(0 0 0 / .55) rgb(255 255 255 / .16) rgb(255 255 255 / .16) rgb(0 0 0 / .55);
  background:
    radial-gradient(60% 55% at 50% 58%, rgb(var(--tone) / .22), transparent 70%),
    linear-gradient(180deg, rgb(var(--surface-code)), rgb(var(--background)));
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  color: inherit;
  transition: border-color .25s ease;
}

.pkg-slot__well:hover {
  border-color: rgb(var(--tone) / .5) rgb(var(--tone) / .5) rgb(var(--tone) / .5) rgb(var(--tone) / .5);
}

/* Poço no dialog: não é botão, sem margem, quadrado */
.pkg-slot__well--static {
  margin: 0;
  aspect-ratio: 1;
  cursor: default;
}

.pkg-slot__well--static:hover {
  border-color: rgb(0 0 0 / .55) rgb(255 255 255 / .16) rgb(255 255 255 / .16) rgb(0 0 0 / .55);
}

.pkg-slot__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(45% 40% at 50% 60%, rgb(var(--tone) / .35), transparent 70%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}

.pkg-slot:hover .pkg-slot__glow {
  opacity: 1;
}

.pkg-slot__img {
  position: relative;
  max-width: 68%;
  max-height: 68%;
  object-fit: contain;
  filter: drop-shadow(0 10px 14px rgb(0 0 0 / .55));
  transition: transform .35s cubic-bezier(.2, .8, .2, 1);
}

.pkg-slot:hover .pkg-slot__img {
  transform: translateY(-4px) scale(1.06) rotate(-2deg);
}

.pkg-slot__img--fallback {
  width: 40%;
  height: 40%;
  color: rgb(var(--tone) / .7);
}

/* ×N: quantidade no canto, fonte pixel com sombra dura, como o inventário */
.pkg-slot__qty {
  position: absolute;
  right: .6rem;
  bottom: .5rem;
  font-family: 'Press Start 2P', 'Roboto', monospace;
  font-size: 11px;
  line-height: 1;
  color: #fff;
  text-shadow: 2px 2px 0 rgb(0 0 0 / .85);
  letter-spacing: -.02em;
}

/* +bônus: selo verde, como encantamento */
.pkg-slot__bonus {
  position: absolute;
  left: .6rem;
  top: .6rem;
  padding: .15rem .45rem;
  border-radius: .4rem;
  background: rgb(74 222 128 / .18);
  border: 1px solid rgb(74 222 128 / .5);
  color: rgb(134 239 172);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .02em;
}

.pkg-slot__soldout {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(var(--background) / .7);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Tooltip do jogo: caixa escura com borda na cor do item, aparece no hover */
.pkg-slot__tip {
  position: absolute;
  left: .6rem;
  right: .6rem;
  bottom: .6rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding: .5rem .6rem;
  border-radius: .5rem;
  border: 2px solid rgb(var(--tone) / .8);
  outline: 2px solid rgb(16 0 16 / .95);
  background: rgb(16 0 16 / .94);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease;
  pointer-events: none;
}

.pkg-slot__well:hover .pkg-slot__tip,
.pkg-slot__well:focus-visible .pkg-slot__tip {
  opacity: 1;
  transform: translateY(0);
}

.pkg-slot__tip-name {
  font-size: .8rem;
  font-weight: 700;
  color: rgb(var(--tone));
}

.pkg-slot__tip-desc {
  font-size: .72rem;
  line-height: 1.3;
  color: rgb(229 231 235);
}

.pkg-slot__tip-hint {
  font-size: .65rem;
  color: rgb(var(--muted-foreground));
}

/* Etiqueta de preço */
.pkg-slot__price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 6.5rem;
  padding: .35rem .75rem;
  border-radius: .75rem;
  border: 1px solid rgb(var(--tone) / .3);
  background: rgb(var(--tone) / .08);
  line-height: 1.1;
}

.pkg-slot__price-label,
.pkg-slot__price-old {
  font-size: .65rem;
  color: rgb(var(--muted-foreground));
}

.pkg-slot__price-old {
  text-decoration: line-through;
}

.pkg-slot__price-value {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
}

/* Variações (components/variations-list.html): linhas no padrão do slot */
.pkg-var {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 68px;
  align-items: center;
  gap: .75rem;
  padding: .6rem .75rem .6rem .6rem;
  border-radius: .9rem;
  border: 1px solid rgb(255 255 255 / .1);
  background: rgb(255 255 255 / .04);
  text-align: left;
  color: inherit;
  transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.pkg-var:hover {
  background: rgb(255 255 255 / .07);
  border-color: rgb(var(--tone) / .4);
}

.pkg-var[data-selected='true'] {
  background: rgb(var(--tone) / .12);
  border-color: rgb(var(--tone) / .7);
  box-shadow: 0 0 0 1px rgb(var(--tone) / .25), 0 0 18px rgb(var(--tone) / .12);
}

/* Mini-slot com o bisel do inventário */
.pkg-var__slot {
  position: relative;
  display: flex;
  width: 44px;
  height: 44px;
  flex: none;
  align-items: center;
  justify-content: center;
  border-radius: .6rem;
  border: 2px solid;
  border-color: rgb(0 0 0 / .55) rgb(255 255 255 / .16) rgb(255 255 255 / .16) rgb(0 0 0 / .55);
  background:
    radial-gradient(60% 60% at 50% 55%, rgb(var(--tone) / .22), transparent 70%),
    rgb(var(--surface-code));
}

.pkg-var__slot img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  image-rendering: pixelated;
}

.pkg-var__index {
  font-family: 'Press Start 2P', 'Roboto', monospace;
  font-size: 11px;
  color: rgb(var(--tone));
  text-shadow: 2px 2px 0 rgb(0 0 0 / .8);
}

/* Marca de seleção: quadradinho no canto do mini-slot, no tom */
.pkg-var__check {
  position: absolute;
  right: -6px;
  bottom: -6px;
  display: flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  border-radius: .35rem;
  border: 2px solid rgb(var(--background));
  background: rgb(var(--tone));
  color: rgb(var(--background));
  transform: scale(0);
  transition: transform .15s cubic-bezier(.2, .8, .2, 1);
}

.pkg-var[data-selected='true'] .pkg-var__check {
  transform: scale(1);
}

.pkg-var__price {
  display: flex;
  flex: none;
  flex-direction: column;
  align-items: flex-end;
  gap: .15rem;
  padding: .35rem .65rem;
  border-radius: .6rem;
  border: 1px solid rgb(var(--tone) / .3);
  background: rgb(var(--tone) / .08);
  line-height: 1.1;
}

.pkg-var__price-value {
  font-size: .95rem;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* Toque: tooltip não existe (não há hover); o nome e o benefício já estão
   abaixo do poço. */
@media (hover: none) {
  .pkg-slot__tip { display: none; }
}

/* Comparação de planos VIP (pages/category.html) no padrão do slot */
.pkg-slot--silver { --tone: 209 213 219; }

.vip-tier__well {
  margin: .75rem .75rem 0;
  aspect-ratio: 1 / .7;
}

.vip-tier__item {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  line-height: 1.35;
}

/* Tique quadrado, como o check do slot selecionado */
.vip-tier__tick {
  display: inline-flex;
  width: 16px;
  height: 16px;
  flex: none;
  align-items: center;
  justify-content: center;
  margin-top: .1rem;
  border-radius: .3rem;
  background: rgb(var(--tone) / .18);
  border: 1px solid rgb(var(--tone) / .45);
  color: rgb(var(--tone));
}

/* Ícone das tabelas e do cabeçalho: mini-slot com bisel */
.vip-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  flex: none;
  align-items: center;
  justify-content: center;
  border-radius: .6rem;
  border: 2px solid;
  border-color: rgb(0 0 0 / .55) rgb(255 255 255 / .16) rgb(255 255 255 / .16) rgb(0 0 0 / .55);
  background:
    radial-gradient(60% 60% at 50% 55%, rgb(var(--accent) / .2), transparent 70%),
    rgb(var(--surface-code));
  color: rgb(var(--accent));
}

.vip-icon--lg {
  display: flex;
  width: 56px;
  height: 56px;
  border-radius: .9rem;
}

/* collapse: sem ele cada célula pinta o próprio fundo com fresta entre
   elas e o hover da linha sai "picotado". */
.vip-table {
  border-collapse: collapse;
}

.vip-table__head th {
  border-bottom: 1px solid rgb(255 255 255 / .12);
}

.vip-table__row td {
  border-top: 1px solid rgb(255 255 255 / .06);
}

/* A última linha fecha a tabela com a mesma linha fina */
.vip-table__row:last-child td {
  border-bottom: 1px solid rgb(255 255 255 / .06);
}

.vip-table__row:hover td {
  background: rgb(255 255 255 / .04);
}

.vip-table__row td:first-child {
  border-top-left-radius: .4rem;
  border-bottom-left-radius: .4rem;
}

.vip-table__row td:last-child {
  border-top-right-radius: .4rem;
  border-bottom-right-radius: .4rem;
}

/* AusTV — Depoimentos e Doadores do mês no padrão do inventário.
   Reaproveitam o vocabulário do .pkg-slot (bisel, --tone, fonte pixel);
   aqui só o que é específico de cada bloco. */

/* ---------- Depoimentos (components/feedbacks.html) ---------- */
.review-slot {
  border-radius: 1.25rem;
}

/* Pastilha do eyebrow: "ao vivo", na cor do acento */
.review-slot__pip {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: rgb(var(--accent));
  box-shadow: 0 0 0 3px rgb(var(--accent) / .2);
}

/* Avatar: poço pequeno com bisel e iniciais em fonte pixel */
.review-slot__avatar {
  display: flex;
  width: 44px;
  height: 44px;
  flex: none;
  align-items: center;
  justify-content: center;
  border-radius: .6rem;
  border: 2px solid;
  border-color: rgb(0 0 0 / .55) rgb(255 255 255 / .16) rgb(255 255 255 / .16) rgb(0 0 0 / .55);
  background:
    radial-gradient(60% 60% at 50% 55%, rgb(var(--tone) / .28), transparent 70%),
    rgb(var(--surface-code));
}

.review-slot__initials {
  font-family: 'Press Start 2P', 'Roboto', monospace;
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
  color: rgb(var(--tone));
  text-shadow: 2px 2px 0 rgb(0 0 0 / .85);
}

.review-slot__rating {
  display: flex;
  flex: none;
  flex-direction: column;
  align-items: flex-end;
  gap: .3rem;
}

/* Nota como o contador ×N do item */
.review-slot__score {
  font-family: 'Press Start 2P', 'Roboto', monospace;
  font-size: 11px;
  line-height: 1;
  color: #fff;
  text-shadow: 2px 2px 0 rgb(0 0 0 / .85);
}

/* Placa da mensagem: poço escuro com bisel, como a placa do jogo */
.review-slot__msg {
  position: relative;
  margin: 0;
  padding: .85rem .9rem .85rem 2.1rem;
  border-radius: .75rem;
  border: 2px solid;
  border-color: rgb(0 0 0 / .55) rgb(255 255 255 / .14) rgb(255 255 255 / .14) rgb(0 0 0 / .55);
  background: linear-gradient(180deg, rgb(var(--surface-code)), rgb(var(--background)));
  font-size: .9rem;
  line-height: 1.5;
  color: rgb(229 231 235);
}

.review-slot__quote {
  position: absolute;
  left: .7rem;
  top: .8rem;
  width: 16px;
  height: 16px;
  color: rgb(var(--tone) / .8);
}

/* Mini-slot do produto avaliado (também serve a outros lugares) */
.mini-slot {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .4rem .6rem .4rem .4rem;
  border-radius: .75rem;
  border: 1px solid rgb(255 255 255 / .1);
  background: rgb(255 255 255 / .04);
  color: inherit;
  transition: border-color .2s ease, background-color .2s ease;
}

button.mini-slot:hover {
  border-color: rgb(var(--tone) / .5);
  background: rgb(var(--tone) / .08);
}

.mini-slot__well {
  display: flex;
  width: 40px;
  height: 40px;
  flex: none;
  align-items: center;
  justify-content: center;
  border-radius: .5rem;
  border: 2px solid;
  border-color: rgb(0 0 0 / .55) rgb(255 255 255 / .16) rgb(255 255 255 / .16) rgb(0 0 0 / .55);
  background:
    radial-gradient(60% 60% at 50% 60%, rgb(var(--tone) / .25), transparent 70%),
    rgb(var(--surface-code));
  overflow: hidden;
}

.mini-slot__img {
  width: 72%;
  height: 72%;
  object-fit: contain;
  filter: drop-shadow(0 3px 4px rgb(0 0 0 / .6));
}

.mini-slot__cta {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: .15rem;
  font-size: .75rem;
  font-weight: 700;
  color: rgb(var(--tone));
}

/* ---------- Doadores do mês (widgets/top-donators.html) ---------- */
.donor-podium {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1rem;
  margin: 0;
  padding: .5rem 0 0;
  list-style: none;
}

.donor-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  width: 7.75rem;
}

/* Pódio: 2º à esquerda, 1º no meio e mais alto, 3º à direita */
.donor-slot--2 { order: -1; padding-bottom: .75rem; }
.donor-slot--1 { padding-bottom: 1.75rem; }
.donor-slot--3 { padding-bottom: 0; }

.donor-slot__well {
  position: relative;
  display: flex;
  width: 5.5rem;
  height: 5.5rem;
  align-items: center;
  justify-content: center;
  border-radius: .9rem;
  border: 2px solid;
  border-color: rgb(0 0 0 / .55) rgb(255 255 255 / .16) rgb(255 255 255 / .16) rgb(0 0 0 / .55);
  background:
    radial-gradient(60% 55% at 50% 58%, rgb(var(--tone) / .25), transparent 70%),
    linear-gradient(180deg, rgb(var(--surface-code)), rgb(var(--background)));
  box-shadow: 0 0 0 1px rgb(var(--tone) / .25);
  overflow: hidden;
  transition: transform .3s cubic-bezier(.2, .8, .2, 1), box-shadow .3s ease;
}

.donor-slot--1 .donor-slot__well {
  width: 6.5rem;
  height: 6.5rem;
  box-shadow: 0 0 0 1px rgb(var(--tone) / .45), 0 0 18px rgb(var(--tone) / .25);
}

.donor-slot:hover .donor-slot__well {
  transform: translateY(-3px);
}

.donor-slot__glow {
  opacity: 1;
}

.donor-slot__head {
  width: 56%;
  height: 56%;
  image-rendering: pixelated;
  border-radius: .3rem;
  filter: drop-shadow(0 6px 8px rgb(0 0 0 / .6));
}

.donor-slot__medal {
  width: 36%;
  filter: drop-shadow(0 6px 8px rgb(0 0 0 / .6));
}

/* "1º" no canto, como o ×N do item */
.donor-slot__rank {
  position: absolute;
  right: .45rem;
  bottom: .4rem;
  font-family: 'Press Start 2P', 'Roboto', monospace;
  font-size: 10px;
  line-height: 1;
  color: rgb(var(--tone));
  text-shadow: 2px 2px 0 rgb(0 0 0 / .85);
}

/* Placa com o nick */
.donor-slot__name {
  max-width: 100%;
  padding: .3rem .6rem;
  border-radius: .4rem;
  border: 1px solid rgb(var(--tone) / .35);
  background: rgb(var(--tone) / .1);
  font-size: .78rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.donor-slot__amount {
  font-size: .75rem;
  font-weight: 600;
  color: rgb(var(--muted-foreground));
}

@media (max-width: 767px) {
  .donor-podium { gap: .5rem; }
  .donor-slot { width: 6.25rem; }
  .donor-slot__well { width: 4.75rem; height: 4.75rem; }
  .donor-slot--1 .donor-slot__well { width: 5.5rem; height: 5.5rem; }
}

/* AusTV — Carrinho (drawer) e Checkout no padrão do inventário.
   Vocabulário do .pkg-slot / .mini-slot (bisel, --tone, fonte pixel). Os
   ganchos de JS (#cart-pricing, data-cart-action, data-[selected]...)
   não mudam — só a casca. */

/* ---------- Drawer: painel ---------- */
.cart-panel {
  --tone: var(--primary-light);
  border-left: 1px solid rgb(255 255 255 / .1);
  background: linear-gradient(180deg, rgb(var(--surface-from) / .96), rgb(var(--background) / .98));
  box-shadow: inset 1px 0 0 rgb(255 255 255 / .06), -24px 0 48px rgb(0 0 0 / .45);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.cart-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid rgb(255 255 255 / .08);
}

.cart-panel__chest {
  color: rgb(var(--tone));
}

.cart-panel__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: .6rem;
  min-height: 0;
  overflow-y: auto;
  padding: 1rem 1.25rem;
}

.cart-panel__foot {
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid rgb(255 255 255 / .08);
  background: rgb(0 0 0 / .18);
}

.cart-panel__total {
  margin-bottom: .75rem;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: .6rem .9rem;
}

.cart-panel__total .pkg-slot__price-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.cart-panel__total .pkg-slot__price-value {
  font-size: 1.35rem;
}

/* ---------- Drawer: item ---------- */
.cart-slot {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .7rem;
  border-radius: 1rem;
  border: 1px solid rgb(255 255 255 / .1);
  background: linear-gradient(180deg, rgb(255 255 255 / .06), rgb(255 255 255 / .025));
  box-shadow: inset 0 1px 0 rgb(255 255 255 / .1), inset 0 -1px 0 rgb(0 0 0 / .25);
}

.cart-slot__well {
  position: relative;
  display: flex;
  width: 64px;
  height: 64px;
  flex: none;
  align-items: center;
  justify-content: center;
  border-radius: .7rem;
  border: 2px solid;
  border-color: rgb(0 0 0 / .55) rgb(255 255 255 / .16) rgb(255 255 255 / .16) rgb(0 0 0 / .55);
  background:
    radial-gradient(60% 60% at 50% 60%, rgb(var(--tone) / .25), transparent 70%),
    rgb(var(--surface-code));
  overflow: hidden;
}

.cart-slot__img {
  width: 72%;
  height: 72%;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgb(0 0 0 / .6));
}

.cart-slot__qty {
  position: absolute;
  right: .3rem;
  bottom: .25rem;
  font-family: 'Press Start 2P', 'Roboto', monospace;
  font-size: 10px;
  line-height: 1;
  color: #fff;
  text-shadow: 2px 2px 0 rgb(0 0 0 / .85);
}

.cart-slot__qty--sm {
  font-size: 8px;
  right: .2rem;
  bottom: .2rem;
}

.cart-slot__actions {
  display: flex;
  flex: none;
  flex-direction: column;
  align-items: flex-end;
  gap: .4rem;
}

/* Stepper com bisel: −  [n]  + */
.cart-stepper {
  display: inline-flex;
  align-items: stretch;
  height: 36px;
  border-radius: .6rem;
  border: 1px solid rgb(255 255 255 / .12);
  background: rgb(0 0 0 / .25);
  overflow: hidden;
}

.cart-stepper--sm {
  height: 32px;
}

.cart-stepper__btn {
  display: inline-flex;
  width: 34px;
  align-items: center;
  justify-content: center;
  color: rgb(255 255 255 / .8);
  transition: background-color .15s ease, color .15s ease;
}

.cart-stepper__btn:hover {
  background: rgb(var(--tone) / .18);
  color: #fff;
}

.cart-stepper__btn:disabled {
  opacity: .35;
  pointer-events: none;
}

.cart-stepper__input {
  width: 40px;
  height: 100% !important;
  padding: 0 !important;
  border: 0 !important;
  border-left: 1px solid rgb(255 255 255 / .1) !important;
  border-right: 1px solid rgb(255 255 255 / .1) !important;
  border-radius: 0 !important;
  background: transparent !important;
  text-align: center;
  font-family: 'Press Start 2P', 'Roboto', monospace;
  font-size: 10px;
  color: #fff;
}

.cart-stepper__input:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 1px rgb(var(--accent)) !important;
}

.cart-slot__remove {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: .6rem;
  border: 1px solid rgb(248 113 113 / .3);
  background: rgb(248 113 113 / .08);
  color: rgb(252 165 165);
  transition: background-color .15s ease, border-color .15s ease;
}

.cart-slot__remove--sm {
  width: 32px;
  height: 32px;
}

.cart-slot__remove:hover {
  background: rgb(248 113 113 / .2);
  border-color: rgb(248 113 113 / .6);
}

/* ---------- Drawer: baú vazio ---------- */
.cart-empty {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1rem;
}

.cart-empty__grid {
  display: grid;
  grid-template-columns: repeat(3, 52px);
  gap: .4rem;
  margin-bottom: 1.25rem;
}

.cart-empty__slot {
  display: flex;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: .6rem;
  border: 2px solid;
  border-color: rgb(0 0 0 / .5) rgb(255 255 255 / .1) rgb(255 255 255 / .1) rgb(0 0 0 / .5);
  background: rgb(var(--surface-code) / .8);
  color: rgb(var(--muted-foreground));
}

.cart-empty__slot--icon {
  color: rgb(var(--tone));
  background:
    radial-gradient(60% 60% at 50% 60%, rgb(var(--tone) / .25), transparent 70%),
    rgb(var(--surface-code));
}

/* ---------- Checkout: painéis ---------- */
.checkout-card {
  height: fit-content;
  border-radius: 1.25rem;
  border: 1px solid rgb(255 255 255 / .1);
  background: linear-gradient(180deg, rgb(255 255 255 / .06), rgb(255 255 255 / .025));
  box-shadow: inset 0 1px 0 rgb(255 255 255 / .12), inset 0 -1px 0 rgb(0 0 0 / .25);
  filter: drop-shadow(0 10px 18px rgb(0 0 0 / .28));
}

.checkout-card__head {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .9rem 1rem;
  border-bottom: 1px solid rgb(255 255 255 / .08);
}

.checkout-card__icon {
  width: 36px;
  height: 36px;
  color: rgb(var(--tone));
}

.checkout-card__rule {
  height: 1px;
  width: 100%;
  background: rgb(255 255 255 / .08);
}

/* Forma de pagamento como slot selecionável */
.pay-slot {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .6rem .75rem;
  border-radius: .9rem;
  border: 1px solid rgb(255 255 255 / .1);
  background: rgb(255 255 255 / .03);
  text-align: left;
  cursor: pointer;
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.pay-slot:hover {
  border-color: rgb(var(--tone) / .4);
  background: rgb(var(--tone) / .06);
}

.pay-slot[data-selected='true'] {
  border-color: rgb(var(--tone) / .7);
  background: rgb(var(--tone) / .1);
  box-shadow: 0 0 0 1px rgb(var(--tone) / .35), 0 0 18px rgb(var(--tone) / .18);
}

.pay-slot__well {
  background: #fff;
  border-color: rgb(0 0 0 / .35) rgb(255 255 255 / .6) rgb(255 255 255 / .6) rgb(0 0 0 / .35);
}

.pay-slot__check {
  display: inline-flex;
  width: 22px;
  height: 22px;
  flex: none;
  align-items: center;
  justify-content: center;
  border-radius: .4rem;
  border: 1px solid rgb(255 255 255 / .15);
  color: transparent;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.pay-slot[data-selected='true'] .pay-slot__check {
  background: rgb(var(--tone));
  border-color: rgb(var(--tone));
  color: rgb(var(--background));
}

/* Recibo */
.receipt {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding: .85rem .9rem;
  border-radius: .9rem;
  border: 2px solid;
  border-color: rgb(0 0 0 / .55) rgb(255 255 255 / .14) rgb(255 255 255 / .14) rgb(0 0 0 / .55);
  background: linear-gradient(180deg, rgb(var(--surface-code)), rgb(var(--background)));
}

.receipt > li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .875rem;
  color: rgb(229 231 235);
}

.receipt__total {
  margin-top: .25rem;
  padding-top: .6rem;
  border-top: 1px dashed rgb(255 255 255 / .18);
  font-size: 1rem !important;
  font-weight: 800;
  color: #fff !important;
}

.receipt__total .total-value {
  font-size: 1.25rem;
  color: rgb(var(--accent));
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}

@keyframes fade-in {
  from {
      background-color: rgba(0, 0, 0, 0);
  }
  to {
      background-color: rgba(0, 0, 0, 0.8);
  }
}

@keyframes fade-out {
  from {
      background-color: rgba(0, 0, 0, 0.8);
  }
  to {
      background-color: rgba(0, 0, 0, 0);
  }
}

@keyframes slide-in {
  from {
      transform: translateX(500px);
  }
  to {
      transform: translateX(0px);
  }
}

@keyframes slide-out {
  from {
      transform: translateX(0px);
  }
  to {
      transform: translateX(500px);
  }
}


#cart-drawer[data-state="open"] {
  animation: fade-in 0.4s forwards;
}

body.cart-open,
body.dialog-open {
  overflow: hidden;
  padding-right: var(--scrollbar-width, 0px);
}

#cart-drawer[data-state="closed"] {
  animation: fade-out 0.4s forwards;
}

#cart-drawer[data-state="open"] > div {
  animation: slide-in 0.4s forwards;
}

#cart-drawer[data-state="closed"] > div {
  animation: slide-out 0.4s forwards;
}

@keyframes slide-in-left {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slide-out-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

#mobile-drawer[data-state="open"] {
  animation: fade-in 0.4s forwards;
}

#mobile-drawer[data-state="closed"] {
  animation: fade-out 0.4s forwards;
}

#mobile-drawer[data-state="open"] > div {
  animation: slide-in-left 0.4s forwards;
}

#mobile-drawer[data-state="closed"] > div {
  animation: slide-out-left 0.4s forwards;
}

.dialog[data-state="open"] {
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  animation: fade-in 0.4s forwards;
}

.dialog[data-state="closed"] {
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  animation: fade-out 0.4s forwards;
}

.dialog[data-state="open"] > div {
  animation: dialog-in 0.15s forwards;
}

.dialog[data-state="closed"] > div {
  animation: dialog-out 0.15s forwards;
}

@keyframes dialog-in {
  from {
      opacity: 0;
      transform: translateY(-24px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes dialog-out {
  from {
      opacity: 1;
      transform: translateY(0);
  }
  to {
      opacity: 0;
      transform: translateY(-24px);
  }
}

.reveal-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition-delay: var(--delay, 0s);
}

.reveal-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.centralcart-content iframe {
  aspect-ratio: 16 / 9;
  border-radius: 0.5rem;
  width: 100%;
  height: auto;
}

.grid-background {
  background-image: linear-gradient(to right,hsla(0,0%,100%,.03) 1px,transparent 1px),linear-gradient(to bottom,hsla(0,0%,100%,.03) 1px,transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 60% 85% at 40% 30%, #000 0%, #fff0 110%)
}

.custom-bg-mask {
	mask-image: linear-gradient(hsl(var(--background)), rgba(0, 0, 0, 0.3), rgb(0, 0, 0, 0));
}

@keyframes loading {
  0% {
      left: -50%;
  }

  to {
      left: 100%;
  }
}

.detail-dash {
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.1) 50%, hsl(var(--foreground) / 0) 0%);
  background-position: center bottom;
  background-size: 16px;
  background-repeat: repeat-x;
  width: 100%;
  height: 1px;
}

.custom-scrollbar::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: hsl(var(--primary));
  border-radius: 0.25rem;
}



.cat-dropdown {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: top;
}

.cat-dropdown:not(.hidden) {
  animation: slideDown 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: scaleY(0);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

#mobile-categories-dropdown:not(.hidden) {
  animation: slideInMobile 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInMobile {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-subcategories:not(.hidden) {
  animation: slideInSub 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInSub {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.nav-link-hover {
  position: relative;
}
.nav-link-hover::after {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 0;
  height: 3px;
  background: hsl(var(--primary));
  border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-link-hover:hover::after {
  width: 100%;
}


@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


.gradient-text {
  background: linear-gradient(
    45deg,
    hsl(var(--primary)),
    hsl(var(--primary) / 0.8),
    hsl(var(--primary) / 0.6),
    hsl(var(--primary) / 0.9),
    hsl(var(--primary)),
    hsl(var(--primary) / 0.7),
    hsl(var(--primary) / 0.5),
    hsl(var(--primary) / 0.8)
  );
  background-size: 400% 400%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 3s ease-in-out infinite;
}

.goal-bar {
  background-color: #181A28;

  margin-top: 8px;
  width: 100%;
  height: 18px;
  border-radius: 99px;

  position: relative;

  overflow: hidden;

  span {
    position: absolute;
    z-index: 1;
    right: 0;
    font-size: 14px;
    font-weight: 600;
    padding-right: 5px;
    top: 50%;
    transform: translateY(-50%);
  }

  &::after {
    content: "";
  
    position: absolute;
  
    width: var(--goal_percent);
    height: 18px;
  
    background-color: hsl(var(--primary));
  
    background-image: linear-gradient(
      -45deg, 
      rgba(255, 255, 255, .1) 25%, 
      transparent 25%, 
      transparent 50%, 
      rgba(255, 255, 255, .1) 50%, 
      rgba(255, 255, 255, .1) 75%, 
      transparent 75%, 
      transparent
    );
  }
}