:root {
  --bg: #070B14;
  --bg-deep: #04070D;
  --panel: #0D1524;
  --panel-alt: #121D33;
  --line: #1D2C4A;
  --text: #EAF2FF;
  --muted: #8FA5C9;
  --accent: #2FA8F5;        /* azul elétrico D11 */
  --accent-soft: rgba(47, 168, 245, 0.14);
  --accent-ink: #04121F;
  --silver: #C8D6EE;        /* prata do "11" */
  --danger: #FF5A7A;
  --success: #4CD9A7;

  --font-display: 'Sora', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --glow: 0 0 24px rgba(47, 168, 245, 0.35);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  background-image:
    radial-gradient(circle at 15% 0%, rgba(47, 168, 245, 0.10), transparent 42%),
    radial-gradient(circle at 90% 10%, rgba(200, 214, 238, 0.05), transparent 45%),
    linear-gradient(180deg, var(--bg-deep), var(--bg) 320px);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Grade de "circuito" sutil no fundo */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(47, 168, 245, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 168, 245, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), transparent 60%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), transparent 60%);
  z-index: 0;
}

body > * { position: relative; z-index: 1; }

/* ---------- Camada de efeitos de fundo ---------- */
.fx {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

#fx-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Aurora boreal: cortinas de luz fluindo no topo da tela */
.fx-borealis {
  position: absolute;
  top: -14vh;
  left: -15vw;
  width: 130vw;
  height: 68vh;
  transform: skewY(-5deg);
  transform-origin: top left;
}

.fx-ribbon {
  position: absolute;
  inset: 0;
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  mix-blend-mode: screen;
  will-change: transform, opacity;
}

/* Cortina principal: mais densa e nítida, com hue vivo */
.fx-ribbon-1 {
  background: linear-gradient(100deg,
    transparent 10%,
    rgba(47, 168, 245, 0.34) 30%,
    rgba(76, 217, 167, 0.30) 46%,
    rgba(64, 224, 208, 0.18) 58%,
    rgba(47, 168, 245, 0.22) 70%,
    transparent 90%);
  filter: blur(34px);
  animation: ribbonFlow1 16s ease-in-out infinite alternate;
}

/* Véu violeta mais difuso por trás */
.fx-ribbon-2 {
  top: 7vh;
  background: linear-gradient(95deg,
    transparent 15%,
    rgba(120, 90, 245, 0.26) 38%,
    rgba(47, 168, 245, 0.28) 56%,
    rgba(76, 217, 167, 0.16) 74%,
    transparent 92%);
  filter: blur(58px);
  animation: ribbonFlow2 22s ease-in-out infinite alternate;
}

/* Brilho alto e suave, dá o "teto" da aurora */
.fx-ribbon-3 {
  top: 15vh;
  background: linear-gradient(105deg,
    transparent 12%,
    rgba(76, 217, 167, 0.20) 36%,
    rgba(200, 214, 238, 0.12) 54%,
    rgba(120, 90, 245, 0.20) 72%,
    transparent 92%);
  filter: blur(72px);
  animation: ribbonFlow3 28s ease-in-out infinite alternate;
}

/* Filamentos finos e rápidos, quase nítidos — dão textura de cortina */
.fx-ribbon-4 {
  top: 3vh;
  height: 55%;
  background: repeating-linear-gradient(97deg,
    transparent 0 5%,
    rgba(76, 217, 167, 0.10) 6% 7%,
    rgba(47, 168, 245, 0.14) 8% 9%,
    transparent 10% 15%);
  filter: blur(14px);
  animation: ribbonFlow4 12s ease-in-out infinite alternate;
}

@keyframes ribbonFlow1 {
  0%   { transform: translateX(-6vw) scaleY(1)    skewX(-4deg); opacity: 0.7; }
  50%  { transform: translateX(4vw)  scaleY(1.25) skewX(3deg);  opacity: 1; }
  100% { transform: translateX(8vw)  scaleY(0.9)  skewX(-2deg); opacity: 0.75; }
}
@keyframes ribbonFlow2 {
  0%   { transform: translateX(5vw)  scaleY(1.1)  skewX(4deg);  opacity: 0.6; }
  50%  { transform: translateX(-5vw) scaleY(0.85) skewX(-3deg); opacity: 0.95; }
  100% { transform: translateX(-9vw) scaleY(1.2)  skewX(2deg);  opacity: 0.65; }
}
@keyframes ribbonFlow3 {
  0%   { transform: translateX(-3vw) scaleY(0.9)  skewX(-5deg); opacity: 0.5; }
  50%  { transform: translateX(6vw)  scaleY(1.3)  skewX(4deg);  opacity: 0.85; }
  100% { transform: translateX(-7vw) scaleY(1)    skewX(-2deg); opacity: 0.55; }
}
@keyframes ribbonFlow4 {
  0%   { transform: translateX(-4vw) skewX(-6deg); opacity: 0.35; }
  50%  { transform: translateX(3vw)  skewX(2deg);  opacity: 0.7; }
  100% { transform: translateX(6vw)  skewX(-3deg); opacity: 0.4; }
}

/* Galáxia: nebulosa girando lentamente atrás de tudo */
.fx-nebula {
  position: absolute;
  top: 8vh;
  right: -28vw;
  width: 75vw;
  height: 75vw;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
    rgba(120, 90, 245, 0.12),
    rgba(47, 168, 245, 0.16),
    rgba(200, 214, 238, 0.05),
    rgba(76, 217, 167, 0.08),
    rgba(47, 168, 245, 0.10),
    rgba(120, 90, 245, 0.12));
  filter: blur(85px);
  opacity: 0.6;
  animation: nebulaSpin 120s linear infinite;
  will-change: transform;
}

@keyframes nebulaSpin {
  from { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.08); }
  to   { transform: rotate(360deg) scale(1); }
}

/* Campo de estrelas cintilando em duas camadas */
.fx-stars {
  position: absolute;
  inset: 0;
}
.fx-stars-a {
  background-image:
    radial-gradient(1.5px 1.5px at 25px 35px, rgba(234, 242, 255, 0.9), transparent 100%),
    radial-gradient(1px 1px at 120px 90px, rgba(47, 168, 245, 0.8), transparent 100%),
    radial-gradient(1px 1px at 210px 160px, rgba(234, 242, 255, 0.7), transparent 100%),
    radial-gradient(1.5px 1.5px at 300px 60px, rgba(200, 214, 238, 0.85), transparent 100%),
    radial-gradient(1px 1px at 80px 220px, rgba(234, 242, 255, 0.6), transparent 100%);
  background-size: 340px 280px;
  animation: starTwinkleA 5s ease-in-out infinite;
}
.fx-stars-b {
  background-image:
    radial-gradient(1px 1px at 60px 140px, rgba(234, 242, 255, 0.75), transparent 100%),
    radial-gradient(1.5px 1.5px at 180px 40px, rgba(47, 168, 245, 0.7), transparent 100%),
    radial-gradient(1px 1px at 260px 200px, rgba(200, 214, 238, 0.65), transparent 100%),
    radial-gradient(1px 1px at 340px 120px, rgba(234, 242, 255, 0.55), transparent 100%);
  background-size: 420px 360px;
  animation: starTwinkleB 7s ease-in-out infinite;
}

@keyframes starTwinkleA {
  0%, 100% { opacity: 0.35; }
  50%      { opacity: 0.9; }
}
@keyframes starTwinkleB {
  0%, 100% { opacity: 0.8; }
  50%      { opacity: 0.25; }
}

/* Auroras: manchas de luz azuladas derivando lentamente */
.fx-aurora {
  position: absolute;
  width: 55vw;
  height: 55vw;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  will-change: transform;
}
.fx-aurora-1 {
  top: -25vw;
  left: -12vw;
  background: radial-gradient(circle, rgba(47, 168, 245, 0.22), transparent 65%);
  animation: auroraDrift1 26s ease-in-out infinite;
}
.fx-aurora-2 {
  top: 10vh;
  right: -22vw;
  background: radial-gradient(circle, rgba(120, 90, 245, 0.14), transparent 65%);
  animation: auroraDrift2 34s ease-in-out infinite;
}
.fx-aurora-3 {
  bottom: -30vw;
  left: 25vw;
  background: radial-gradient(circle, rgba(200, 214, 238, 0.08), transparent 60%);
  animation: auroraDrift3 40s ease-in-out infinite;
}

@keyframes auroraDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(10vw, 6vh) scale(1.15); }
}
@keyframes auroraDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-8vw, 10vh) scale(0.9); }
}
@keyframes auroraDrift3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(6vw, -8vh) scale(1.1); }
}

/* Feixes de dados horizontais percorrendo a grade */
.fx-streak {
  position: absolute;
  height: 1px;
  width: 220px;
  background: linear-gradient(90deg, transparent, rgba(47, 168, 245, 0.8), transparent);
  filter: drop-shadow(0 0 6px rgba(47, 168, 245, 0.6));
  opacity: 0;
  animation: streakRun 7s linear infinite;
}
.fx-streak-1 { top: 18%; animation-delay: 0s; animation-duration: 6s; }
.fx-streak-2 { top: 42%; animation-delay: 2.4s; animation-duration: 8s; }
.fx-streak-3 { top: 68%; animation-delay: 4.8s; animation-duration: 7s; }

@keyframes streakRun {
  0%   { transform: translateX(-240px); opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { transform: translateX(calc(100vw + 240px)); opacity: 0; }
}

/* Feixes verticais (caindo, estilo chuva de dados) */
.fx-streak-v {
  position: absolute;
  width: 1px;
  height: 180px;
  background: linear-gradient(180deg, transparent, rgba(47, 168, 245, 0.55), transparent);
  filter: drop-shadow(0 0 5px rgba(47, 168, 245, 0.45));
  opacity: 0;
  animation: streakFall 9s linear infinite;
}
.fx-streak-v1 { left: 22%; animation-delay: 1.2s; }
.fx-streak-v2 { left: 74%; animation-delay: 5.5s; animation-duration: 11s; }

@keyframes streakFall {
  0%   { transform: translateY(-200px); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(100vh); opacity: 0; }
}

/* Skyline no rodapé da tela, como no logo */
.fx-skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  opacity: 0.55;
  mask-image: linear-gradient(180deg, transparent, rgba(0,0,0,0.9) 45%);
  -webkit-mask-image: linear-gradient(180deg, transparent, rgba(0,0,0,0.9) 45%);
}

/* Janelas dos prédios (geradas via JS): acesas, apagadas e acendendo */
.skyline-wins .wn-on  { opacity: 0.75; }
.skyline-wins .wn-off { opacity: 0.07; }
.skyline-wins .wn-cycle {
  opacity: 0.07;
  animation: winCycle 9s ease-in-out infinite;
}

@keyframes winCycle {
  0%, 34%  { opacity: 0.07; }
  40%      { opacity: 0.8; }  /* acende */
  44%      { opacity: 0.3; }  /* tremida de luz ligando */
  48%, 82% { opacity: 0.8; }  /* fica acesa um tempo */
  90%, 100%{ opacity: 0.07; } /* apaga de novo */
}

/* Rua com postes passando na frente da skyline */
.fx-street {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  overflow: hidden;
}

.fx-street-svg {
  display: block;
  /* 4 tiles de 1440 na viewBox; anda 25% = 1 tile e reinicia sem emenda */
  width: 5760px;
  height: 120px;
  animation: streetMove 30s linear infinite;
  will-change: transform;
}

@keyframes streetMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-25%); }
}

.lamp-glow {
  filter: drop-shadow(0 0 6px rgba(47, 168, 245, 0.9));
  animation: lampFlicker 6s ease-in-out infinite;
}
.lamp-glow-b { animation-delay: 3s; animation-duration: 8s; }

@keyframes lampFlicker {
  0%, 100% { opacity: 1; }
  47%      { opacity: 1; }
  50%      { opacity: 0.55; }
  53%      { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .fx-streak, .fx-streak-v { display: none; }
  .fx-street-svg { animation: none; }
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------- Animações base ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 18px rgba(47, 168, 245, 0.25); }
  50%      { box-shadow: 0 0 42px rgba(47, 168, 245, 0.55); }
}

@keyframes scanline {
  from { transform: translateX(-100%); }
  to   { transform: translateX(100%); }
}

@keyframes badgePop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.45); }
  100% { transform: scale(1); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.25; }
}

/* ---------- Carregamento falso (intro) ---------- */
#intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.45s ease;
}
#intro.done { opacity: 0; pointer-events: none; }

.intro-brand {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 3.6rem);
  letter-spacing: 0.02em;
  color: #fff;
  animation: fadeUp 0.7s ease both;
}

/* Varredura a 45°: azul chegando com a junção branca entre as duas cores */
.intro-wipe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320vmax;
  height: 320vmax;
  margin: -160vmax 0 0 -160vmax;
  z-index: 2;
  background: linear-gradient(45deg,
    var(--accent) 47%,
    #7FD0FF 48.8%,
    #FFFFFF 49.5%,
    #FFFFFF 50.5%,
    rgba(255, 255, 255, 0) 51.8%,
    transparent 53%);
  transform: translate(-105vmax, 105vmax);
  transition: transform 1.05s cubic-bezier(0.6, 0.05, 0.3, 1);
  will-change: transform;
}
#intro.wipe .intro-wipe { transform: translate(105vmax, -105vmax); }

/* Depois do azul, fade suave para o mesmo background do site */
.intro-fade {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: var(--bg);
  opacity: 0;
  transition: opacity 0.75s ease;
}
#intro.settle .intro-fade { opacity: 1; }

/* Conteúdo escondido até o intro terminar; entra em ~0.2s escalonado */
.site-header,
.hero-inner > *,
.hero-emblem,
.catalog,
.site-footer {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

body.ready .site-header,
body.ready .hero-inner > *,
body.ready .hero-emblem,
body.ready .catalog,
body.ready .site-footer {
  opacity: 1;
  transform: translateY(0);
}

body.ready .site-header   { transition-delay: 0s; }
body.ready .hero-badge    { transition-delay: 0.04s; }
body.ready .hero-title    { transition-delay: 0.08s; }
body.ready .hero-sub      { transition-delay: 0.14s; }
body.ready .hero-ctas     { transition-delay: 0.2s; }
body.ready .hero-stats    { transition-delay: 0.26s; }
body.ready .hero-emblem   { transition-delay: 0.22s; }
body.ready .catalog       { transition-delay: 0.24s; }
body.ready .site-footer   { transition-delay: 0.24s; }

/* Caracteres em troca durante o efeito de decodificação */
.scr { color: var(--accent); }

/* Reveal ao rolar (ativado via JS com .visible) */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Variantes "profundidade": o conteúdo chega pequeno e distante e cresce
   até o tamanho real — de baixo, da direita ou da esquerda. */
.reveal.depth,
.reveal.depth-left,
.reveal.depth-right {
  opacity: 0;
  transition: opacity 0.75s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.reveal.depth {
  transform: perspective(1200px) translateY(130px) translateZ(-220px) scale(0.86);
  transform-origin: 50% 100%;
}
.reveal.depth-left {
  transform: perspective(1200px) translateX(-170px) translateZ(-200px) rotateY(6deg) scale(0.88);
  transform-origin: 0% 50%;
}
.reveal.depth-right {
  transform: perspective(1200px) translateX(170px) translateZ(-200px) rotateY(-6deg) scale(0.88);
  transform-origin: 100% 50%;
}
.reveal.depth.visible,
.reveal.depth-left.visible,
.reveal.depth-right.visible {
  opacity: 1;
  transform: perspective(1200px) translate(0, 0) translateZ(0) rotateY(0) scale(1);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(7, 11, 20, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

/* Linha de energia varrendo a borda do header */
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: scanline 5s linear infinite;
  opacity: 0.7;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--line);
  transition: box-shadow 0.2s;
}
.brand:hover .brand-logo { box-shadow: var(--glow); }

.brand-name .d11-blue { color: var(--accent); }
.brand-name .d11-silver { color: var(--silver); }

/* Navegação principal do site */
.site-nav {
  display: flex;
  gap: 26px;
  flex: 1;
  justify-content: center;
}
.site-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.15s;
  position: relative;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--silver));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.site-nav a:hover { color: var(--text); }
.site-nav a:hover::after { transform: scaleX(1); }

@media (max-width: 820px) { .site-nav { display: none; } }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Pills de categoria (agora dentro da seção da loja) */
.category-nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: 28px;
}
.category-nav::-webkit-scrollbar { display: none; }

.category-pill {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: transparent;
  white-space: nowrap;
  transition: border-color 0.15s, color 0.15s, background 0.15s, box-shadow 0.2s;
}
.category-pill:hover {
  color: var(--text);
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(47, 168, 245, 0.25);
}
.category-pill.active {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
  font-weight: 600;
  box-shadow: var(--glow);
}

.cart-toggle {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--text);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.2s;
}
.cart-toggle:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 0 14px rgba(47, 168, 245, 0.3);
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.cart-count.pop { animation: badgePop 0.35s ease; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  padding: 13px 24px;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid transparent;
  transition: filter 0.15s, box-shadow 0.2s, border-color 0.15s, transform 0.15s;
}
.btn-primary {
  background: linear-gradient(100deg, var(--accent), #5FBFFF);
  color: var(--accent-ink);
}
.btn-primary:hover { filter: brightness(1.1); box-shadow: var(--glow); transform: translateY(-1px); }
.btn-ghost {
  border-color: rgba(200, 214, 238, 0.22);
  color: var(--text);
  background: rgba(200, 214, 238, 0.04);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--accent); box-shadow: 0 0 14px rgba(47, 168, 245, 0.25); }
.btn-sm { padding: 9px 16px; font-size: 0.82rem; border-radius: 10px; }

/* ---------- Hero ---------- */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 88px 24px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: calc(100vh - 76px);
}

/* Hero compacto usado na página da loja */
.hero--store {
  min-height: 0;
  padding: 72px 24px 24px;
}

.section-store { padding-top: 40px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--accent);
  letter-spacing: 0.06em;
  border: 1px solid rgba(47, 168, 245, 0.35);
  background: rgba(47, 168, 245, 0.08);
  border-radius: 999px;
  padding: 7px 14px;
  margin-bottom: 20px;
}
.hero-badge::before {
  content: "●";
  color: var(--success);
  animation: blink 1.6s ease-in-out infinite;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 12px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.stat-chip {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid rgba(200, 214, 238, 0.12);
  background: rgba(13, 21, 36, 0.4);
  backdrop-filter: blur(8px);
}
.stat-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
}
.stat-label {
  font-size: 0.72rem;
  color: var(--muted);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.08;
  margin: 0 0 16px;
  font-weight: 700;
}
.hero-title .grad {
  background: linear-gradient(100deg, var(--accent) 20%, var(--silver) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  color: var(--muted);
  max-width: 42ch;
  margin: 0;
  font-size: 1rem;
}

.hero-emblem {
  flex-shrink: 0;
  display: none;
}
@media (min-width: 860px) { .hero-emblem { display: block; } }

/* Widget "liquid glass" com a logo deslizando da direita para a esquerda */
.logo-widget {
  position: relative;
  width: 480px;
  height: 176px;
  border-radius: 20px;
  border: 1px solid rgba(200, 214, 238, 0.16);
  background: linear-gradient(120deg, rgba(13, 21, 36, 0.45), rgba(18, 29, 51, 0.30));
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(47, 168, 245, 0.08),
    0 18px 50px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  animation: glowPulse 5s ease-in-out infinite;
}

/* Reflexo especular do vidro no canto superior */
.logo-widget::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -20%;
  width: 90%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.07), transparent 65%);
  transform: rotate(-18deg);
  pointer-events: none;
}

/* Luz que segue o cursor — só dentro do widget */
.widget-cursor-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
  background: radial-gradient(
    170px circle at var(--mx, 50%) var(--my, 50%),
    rgba(47, 168, 245, 0.28),
    rgba(120, 90, 245, 0.10) 45%,
    transparent 72%
  );
  pointer-events: none;
  z-index: 0;
}
.logo-widget:hover .widget-cursor-glow { opacity: 1; }

/* Linha de energia na base do widget */
.logo-widget::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: scanline 4s linear infinite;
  opacity: 0.8;
}

.widget-info {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
body.ready .widget-info {
  animation: infoFade 8s ease 1 forwards;
}

/* Textos somem antes da logo passar por cima e voltam depois que ela sai */
@keyframes infoFade {
  0%, 20%  { opacity: 1; }
  30%      { opacity: 0; }
  64%      { opacity: 0; }
  78%      { opacity: 1; }
  100%     { opacity: 1; }
}
.widget-line.accent { color: var(--accent); font-weight: 600; }
.widget-line .online {
  color: var(--success);
  font-weight: 600;
}
.widget-line .online::before {
  content: "●";
  margin-right: 5px;
  animation: blink 1.6s ease-in-out infinite;
}

/* A logo mora no canto direito e desliza até a esquerda em loop */
.widget-logo-wrap {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 128px;
  height: 128px;
  transform: translateY(-50%);
  will-change: transform;
}
body.ready .widget-logo-wrap {
  animation: logoGlide 8s cubic-bezier(0.45, 0, 0.2, 1) 1 forwards;
}

.widget-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 0 22px rgba(47, 168, 245, 0.35);
  display: block;
  position: relative;
  z-index: 1;
}

/* Rastro de luz que aparece atrás da logo enquanto ela se move */
.widget-trail {
  position: absolute;
  top: 50%;
  left: 100%;
  width: 300px;
  height: 3px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(47, 168, 245, 0.9), transparent);
  filter: drop-shadow(0 0 8px rgba(47, 168, 245, 0.7));
  border-radius: 999px;
  opacity: 0;
}
body.ready .widget-trail {
  animation: trailFlash 8s cubic-bezier(0.45, 0, 0.2, 1) 1 forwards;
}

@keyframes logoGlide {
  0%, 22%  { transform: translateY(-50%) translateX(0); }
  38%      { transform: translateY(-50%) translateX(-324px); }
  58%      { transform: translateY(-50%) translateX(-324px); }
  74%      { transform: translateY(-50%) translateX(0); }
  100%     { transform: translateY(-50%) translateX(0); }
}

@keyframes trailFlash {
  0%, 22%  { opacity: 0; }
  26%      { opacity: 1; }
  38%      { opacity: 0.9; }
  46%      { opacity: 0; }
  100%     { opacity: 0; }
}

/* ---------- Seções da landing ---------- */
.section {
  padding: 90px 0 40px;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-head {
  max-width: 640px;
  margin-bottom: 44px;
  position: relative;
}

/* Número gigante em outline no canto da seção */
.section-index {
  position: absolute;
  right: -10px;
  top: -34px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4.5rem, 11vw, 8rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(47, 168, 245, 0.22);
  pointer-events: none;
  user-select: none;
}
@media (max-width: 720px) { .section-index { display: none; } }
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin: 0 0 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.15;
}
.section-lead {
  color: var(--muted);
  font-size: 1rem;
  margin: 0;
}

/* ---------- Notícias: linhas editoriais estilo "diário oficial" ---------- */
.news-list {
  display: flex;
  flex-direction: column;
}
.news-row {
  display: grid;
  grid-template-columns: 130px 130px 1fr;
  gap: 26px;
  align-items: baseline;
  padding: 30px 14px;
  position: relative;
  transition: transform 0.25s ease, background 0.25s;
}
.news-row + .news-row::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(47, 168, 245, 0.35), rgba(200, 214, 238, 0.08) 60%, transparent);
}
.news-row::after {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--accent), var(--silver));
  opacity: 0;
  transform: scaleY(0.3);
  transition: opacity 0.25s, transform 0.25s;
}
.news-row:hover {
  transform: translateX(10px);
  background: linear-gradient(90deg, rgba(47, 168, 245, 0.05), transparent 60%);
}
.news-row:hover::after { opacity: 1; transform: scaleY(1); }

.news-date {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.news-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  justify-self: start;
}
.tag-update { color: var(--accent); }
.tag-event  { color: var(--danger); }
.tag-vip    { color: var(--silver); }

.news-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin: 0 0 6px;
  transition: color 0.2s;
}
.news-row:hover .news-body h3 { color: var(--accent); }
.news-body p {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0;
  max-width: 60ch;
}

@media (max-width: 720px) {
  .news-row { grid-template-columns: 1fr; gap: 6px; padding: 22px 10px; }
}

/* ---------- Features: lista numerada editorial ---------- */
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(32px, 6vw, 72px);
}
@media (max-width: 760px) { .feature-list { grid-template-columns: 1fr; } }

.feature-item {
  display: flex;
  gap: 20px;
  padding: 28px 4px;
  border-bottom: 1px solid rgba(200, 214, 238, 0.10);
  position: relative;
  transition: transform 0.25s ease;
}
.feature-item:hover { transform: translateX(8px); }

.feature-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  padding-top: 5px;
  flex-shrink: 0;
  transition: text-shadow 0.25s;
}
.feature-item:hover .feature-num { text-shadow: 0 0 12px rgba(47, 168, 245, 0.8); }

.feature-body h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature-ico { font-size: 1.1rem; }
.feature-body p {
  color: var(--muted);
  font-size: 0.87rem;
  margin: 0;
}

/* ---------- Rota GPS (como entrar) ---------- */
.route-wrap {
  position: relative;
  padding: 20px 0 30px;
}
.route-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.route-core { filter: drop-shadow(0 0 6px rgba(47, 168, 245, 0.8)); }

.route-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: clamp(300px, 42vh, 380px);
}
.route-row-right  { justify-content: flex-end; }
.route-row-left   { justify-content: flex-start; }
.route-row-center { justify-content: center; min-height: 240px; }

.route-text { max-width: min(24rem, 44%); }
.route-row-right .route-text { text-align: right; }
.route-text-center { text-align: center; max-width: 30rem; }

.route-step {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.route-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  margin: 8px 0 10px;
}
.route-text p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 14px;
}
.route-text .btn { margin-top: 6px; }

.card-cta {
  font-weight: 600;
  color: var(--accent);
  font-size: 0.88rem;
  transition: text-shadow 0.2s;
}
.card-cta:hover { text-shadow: 0 0 12px rgba(47, 168, 245, 0.6); }

/* Waypoints da rota: apagados até a rota chegar neles */
.route-node .node-halo {
  fill: rgba(47, 168, 245, 0.10);
  transition: fill 0.4s;
}
.route-node .node-core {
  fill: #16233C;
  stroke: rgba(143, 165, 201, 0.5);
  stroke-width: 2;
  transition: fill 0.4s, stroke 0.4s;
}
.route-node.lit .node-halo {
  fill: rgba(47, 168, 245, 0.22);
  animation: nodePulse 2.4s ease-in-out infinite;
}
.route-node.lit .node-core {
  fill: var(--accent);
  stroke: #EAF2FF;
  filter: drop-shadow(0 0 8px rgba(47, 168, 245, 0.9));
}
.route-node-final.lit .node-core { fill: var(--success); }

@keyframes nodePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.35); opacity: 0.5; }
}
.route-node .node-halo { transform-origin: center; transform-box: fill-box; }

@media (max-width: 700px) {
  .route-svg { display: none; }
  .route-row { min-height: 0; margin-bottom: 40px; justify-content: flex-start; }
  .route-text { max-width: 100%; text-align: left !important; }
}

/* ---------- Statements: chamadas abertas, sem caixa ---------- */
.statement {
  position: relative;
  text-align: center;
  padding: clamp(30px, 5vw, 60px) 20px;
}
/* brilho suave atrás do texto, sem moldura */
.statement::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(720px, 90%);
  height: 75%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(47, 168, 245, 0.12), transparent 68%);
  filter: blur(30px);
  pointer-events: none;
}
.statement h2 {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  line-height: 1.18;
  margin: 0 0 14px;
}
.statement h2 .grad {
  background: linear-gradient(100deg, var(--accent) 20%, var(--silver) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.statement p {
  position: relative;
  color: var(--muted);
  margin: 0 auto 26px;
  max-width: 52ch;
  font-size: 1rem;
}
.statement-actions {
  position: relative;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Catalog ---------- */
.catalog {
  padding: 0 0 20px;
}

.category-block { margin-bottom: 56px; }

.category-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.category-title::before {
  content: "";
  width: 4px;
  height: 1.1em;
  background: linear-gradient(180deg, var(--accent), var(--silver));
  border-radius: 2px;
}

.category-desc {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 20px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px;
}

.product-card {
  background: linear-gradient(150deg, rgba(18, 29, 51, 0.55), rgba(13, 21, 36, 0.35));
  backdrop-filter: blur(9px) saturate(140%);
  -webkit-backdrop-filter: blur(9px) saturate(140%);
  border: 1px solid rgba(200, 214, 238, 0.13);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 10px 30px rgba(0, 0, 0, 0.30);
  transition: transform 0.2s ease, border-color 0.2s, box-shadow 0.25s;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 168, 245, 0.6);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    0 12px 34px rgba(0, 0, 0, 0.45),
    0 0 20px rgba(47, 168, 245, 0.18);
}

/* Mini-aurora: uma luz pequena e suave passeando dentro do card */
.product-card::before {
  content: "";
  position: absolute;
  inset: -35%;
  background: linear-gradient(100deg,
    transparent 32%,
    rgba(47, 168, 245, 0.09) 45%,
    rgba(76, 217, 167, 0.07) 55%,
    rgba(120, 90, 245, 0.08) 64%,
    transparent 78%);
  filter: blur(16px);
  animation: cardAurora 10s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes cardAurora {
  from { transform: translateX(-14%) rotate(-2deg); }
  to   { transform: translateX(14%) rotate(2deg); }
}

/* Brilho que atravessa o card no hover */
.product-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(200, 214, 238, 0.08), transparent);
  transform: skewX(-18deg);
  transition: left 0.55s ease;
  pointer-events: none;
}
.product-card:hover::after { left: 130%; }

.product-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--panel-alt);
  display: block;
  transition: transform 0.3s ease;
}
.product-card:hover .product-image { transform: scale(1.04); }

.product-image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(rgba(47, 168, 245, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 168, 245, 0.05) 1px, transparent 1px),
    var(--panel-alt);
  background-size: 24px 24px, 24px 24px, auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.product-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  position: relative;
}

.product-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  border-top: 1px dashed var(--line);
}

.product-name {
  font-weight: 600;
  font-size: 0.98rem;
  margin: 6px 0 0;
}

.product-desc {
  color: var(--muted);
  font-size: 0.82rem;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 4px;
}

.product-price {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--accent);
  font-size: 1rem;
}

.add-btn {
  background: var(--accent);
  color: var(--accent-ink);
  border: none;
  border-radius: 10px;
  padding: 9px 16px;
  font-weight: 700;
  font-size: 0.82rem;
  transition: filter 0.15s, transform 0.1s, box-shadow 0.2s;
}
.add-btn:hover { filter: brightness(1.12); box-shadow: 0 0 14px rgba(47, 168, 245, 0.45); }
.add-btn:active { transform: scale(0.97); }
.add-btn:disabled { opacity: 0.6; cursor: default; box-shadow: none; }

/* ---------- Empty / loading states ---------- */
.state-message {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  border: 1px dashed var(--line);
  border-radius: 16px;
}
.state-message strong { color: var(--text); }
.state-message code {
  background: var(--panel);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--accent);
}

/* ---------- Footer ---------- */
.site-footer {
  margin-top: 60px;
  padding: 50px 24px 160px; /* espaço extra p/ a mini cidade ao fundo */
  color: var(--muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(4, 7, 13, 0.55));
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-brand p { margin: 8px 0 0; line-height: 1.6; }
.foot-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
  letter-spacing: 0.03em;
  display: block;
}
.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--muted);
  font-size: 0.85rem;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--accent); }
.footer-legal {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px dashed var(--line);
  font-size: 0.74rem;
  color: rgba(143, 165, 201, 0.7);
}
.footer-legal p { margin: 4px 0; }

/* ---------- Cart drawer ---------- */
.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 5, 10, 0.65);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 45;
}
.cart-backdrop.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(380px, 100%);
  background: var(--panel);
  border-left: 1px solid var(--line);
  z-index: 50;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open {
  transform: translateX(0);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
}

.cart-drawer-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px dashed var(--line);
}
.cart-header h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0;
}
.cart-close {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.4rem;
  line-height: 1;
  transition: color 0.15s, transform 0.15s;
}
.cart-close:hover { color: var(--accent); transform: rotate(90deg); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 12px 20px;
}

.cart-empty {
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
  margin-top: 40px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  animation: fadeUp 0.3s ease both;
}

.cart-item-name { font-size: 0.88rem; font-weight: 500; }
.cart-item-qty { color: var(--muted); font-family: var(--font-mono); font-size: 0.78rem; }
.cart-item-price { font-family: var(--font-mono); color: var(--accent); font-size: 0.85rem; white-space: nowrap; }

.cart-item-remove {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.1rem;
  transition: color 0.15s;
}
.cart-item-remove:hover { color: var(--danger); }

.cart-footer { padding: 20px; }

.cart-perforation {
  height: 1px;
  background: repeating-linear-gradient(to right, var(--line) 0 6px, transparent 6px 12px);
  margin-bottom: 16px;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 1rem;
  margin-bottom: 16px;
}
.cart-total-value { color: var(--accent); font-weight: 600; }

.checkout-btn {
  width: 100%;
  background: linear-gradient(100deg, var(--accent), #5FBFFF);
  color: var(--accent-ink);
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
  transition: filter 0.15s, box-shadow 0.2s;
}
.checkout-btn:hover:not(:disabled) {
  filter: brightness(1.08);
  box-shadow: var(--glow);
}
.checkout-btn:disabled { opacity: 0.5; cursor: default; }
