:root {
  --red: #e8000d;
  --red-glow: rgba(232,0,13,0.45);
  --red-dim: rgba(232,0,13,0.10);
  --red-border: rgba(232,0,13,0.25);
  --bg: #060608;
  --surface: rgba(14,14,18,0.96);
  --surface2: rgba(20,20,26,0.98);
  --border: rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.11);
  --text: #f0f0f2;
  --text-muted: #6b6b7a;
  --text-dim: #9999a8;
  --mono: 'JetBrains Mono', monospace;
  --sans: 'DM Sans', sans-serif;
  --display: 'Syne', sans-serif;
  --navbar-h: 64px;
  --green: #22c55e;
  --zt-pink: var(--red); --zt-red: var(--red); --zt-white: var(--text);
  --zt-black: var(--bg); --zt-card-bg: var(--surface); --zt-card-text: var(--text);
  --zt-card-border: var(--border); --zt-card-shadow: none;
  --zt-card-hover-shadow: none; --zt-card-hover-border: var(--red-border);
  --zt-card-hover-bg: var(--surface2); --zt-radius: 14px; --zt-shadow: none;
  --zt-gradient: var(--red); --zt-bg-gradient: none;
  --zt-badge-bg: var(--red-dim); --zt-badge-text: var(--red);
  --zt-desc-color: var(--text-dim); --zt-desc-price: var(--red);
  --zt-desc-detail: var(--text-muted); --zt-desc-bg: none;
  --zt-desc-radius: 0; --zt-desc-padding: 0; --zt-desc-shadow: none;
  --zt-desc-border: none; --zt-desc-weight: 400; --zt-desc-price-shadow: none;
  --primary-color: var(--red); --primary-glow: var(--red-glow); --primary-dim: var(--red-dim);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--bg); color: var(--text); min-height: 100vh; overflow-x: hidden; }

.snow,.petals,.flake,.zt-heart,.zt-heart2,.zt-decor,.theme-switcher,.zt-bg-special,
#zt-hearts-container,.zt-heart-falling,.separator-svg,.zt-header,.store-intro,.zt-footer { display: none !important; }

.background-video { position: fixed; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; filter: brightness(0.14) saturate(0.5); }
.bg-overlay { position: fixed; inset: 0; z-index: -1; background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(232,0,13,0.05) 0%, transparent 70%), linear-gradient(180deg, rgba(6,6,8,0.55) 0%, rgba(6,6,8,0.96) 60%); }

.navbar { position: fixed; top: 0; left: 0; right: 0; height: var(--navbar-h); z-index: 100; background: rgba(6,6,8,0.86); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); transition: border-color 0.3s; }
.navbar.scrolled { border-bottom-color: var(--red-border); }
.nav-inner { max-width: 1100px; margin: 0 auto; height: 100%; padding: 0 24px; display: flex; align-items: center; gap: 32px; }
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); font-family: var(--display); font-weight: 800; font-size: 1.1rem; letter-spacing: 1px; flex-shrink: 0; }
.nav-brand img { width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--red); }
.brand-tag { font-size: 0.6rem; font-family: var(--mono); background: var(--red-dim); color: var(--red); border: 1px solid var(--red-border); padding: 1px 6px; border-radius: 4px; letter-spacing: 2px; margin-left: 4px; }
.nav-links { display: flex; align-items: center; gap: 4px; flex: 1; }
.nav-links a { text-decoration: none; color: var(--text-dim); font-size: 0.85rem; font-weight: 500; padding: 6px 12px; border-radius: 8px; transition: all 0.2s; display: flex; align-items: center; gap: 6px; }
.nav-links a:hover { color: var(--text); background: var(--border); }
.nav-links a i { font-size: 0.8rem; }
.nav-status { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px rgba(34,197,94,0.7); animation: pulse-green 2s infinite; }
@keyframes pulse-green { 0%,100% { box-shadow: 0 0 8px rgba(34,197,94,0.7); } 50% { box-shadow: 0 0 16px rgba(34,197,94,1); } }
.status-label { font-size: 0.72rem; font-family: var(--mono); color: var(--green); letter-spacing: 1px; }

.page { max-width: 1100px; margin: 0 auto; padding: calc(var(--navbar-h) + 60px) 24px 80px; }

.store-hero { margin-bottom: 60px; animation: fadeUp 0.7s both; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 0.72rem; color: var(--text-muted); border: 1px solid var(--border); padding: 5px 12px; border-radius: 99px; margin-bottom: 20px; background: var(--surface2); }
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px rgba(34,197,94,0.7); }
.hero-title { font-family: var(--display); font-size: clamp(2rem,4vw,3rem); font-weight: 800; letter-spacing: -1px; margin-bottom: 12px; }
.hero-accent { color: var(--red); text-shadow: 0 0 40px var(--red-glow); }
.hero-sub { font-size: 0.95rem; color: var(--text-dim); line-height: 1.7; max-width: 520px; }

.section-label { font-family: var(--mono); font-size: 0.72rem; color: var(--red); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 24px; display: flex; align-items: center; gap: 10px; }
.section-label::after { content: ''; flex: 1; height: 1px; background: var(--border); max-width: 100px; }

.product-section { margin-bottom: 56px; }
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }

/* ══ CARD ══ */
.card {
  background: var(--surface) !important;
  border: 1px solid var(--border2) !important;
  border-radius: 14px !important;
  padding: 24px !important;
  box-shadow: none !important;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s, background 0.25s !important;
  position: relative !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  background-image: none !important;
}
.card:hover { border-color: var(--red-border) !important; background: var(--surface2) !important; transform: translateY(-4px) !important; box-shadow: 0 16px 40px rgba(0,0,0,0.35) !important; }
.card::before { content: '' !important; position: absolute !important; top: 0 !important; left: 0 !important; right: 0 !important; height: 1px !important; background: linear-gradient(90deg, transparent, var(--red), transparent) !important; opacity: 0 !important; transition: opacity 0.25s !important; pointer-events: none !important; }
.card:hover::before { opacity: 0.55 !important; }
.card-glow { display: none !important; }

/* BADGE */
.zt-badge { display: inline-block !important; font-family: var(--mono) !important; font-size: 0.58rem !important; font-weight: 700 !important; letter-spacing: 1.5px !important; text-transform: uppercase !important; padding: 3px 10px !important; border-radius: 99px !important; margin-bottom: 14px !important; align-self: flex-start !important; box-shadow: none !important; background: var(--red-dim) !important; color: var(--red) !important; border: 1px solid var(--red-border) !important; }
.zt-badge-hot  { background: rgba(232,0,13,0.10)  !important; color: #f87171 !important; border-color: rgba(248,113,113,0.35) !important; }
.zt-badge-new  { background: rgba(56,189,248,0.10) !important; color: #38bdf8 !important; border-color: rgba(56,189,248,0.30) !important; }
.zt-badge-best { background: rgba(251,191,36,0.10) !important; color: #fbbf24 !important; border-color: rgba(251,191,36,0.30) !important; }

/* ICON */
.card-icon-container { width: 44px !important; height: 44px !important; border-radius: 10px !important; background: var(--red-dim) !important; border: 1px solid var(--red-border) !important; display: flex !important; align-items: center !important; justify-content: center !important; margin-bottom: 16px !important; flex-shrink: 0 !important; }
.card-icon-container svg { width: 22px !important; height: 22px !important; filter: brightness(0) saturate(100%) invert(10%) sepia(100%) saturate(6000%) hue-rotate(355deg) brightness(110%) !important; }

/* TITLE */
.card h3 { font-family: var(--display) !important; font-size: 0.95rem !important; font-weight: 700 !important; color: var(--text) !important; margin-bottom: 8px !important; letter-spacing: 0 !important; text-shadow: none !important; line-height: 1.3 !important; }

/* PRICE */
.price-container { margin-bottom: 8px !important; }
.price { font-family: var(--display) !important; font-size: 1.5rem !important; font-weight: 800 !important; color: var(--red) !important; text-shadow: 0 0 20px var(--red-glow) !important; letter-spacing: -0.5px !important; }

/* DESCRIPTION */
.description { font-family: var(--sans) !important; font-size: 0.81rem !important; color: var(--text-muted) !important; line-height: 1.6 !important; margin-bottom: 14px !important; background: none !important; border: none !important; padding: 0 !important; border-radius: 0 !important; box-shadow: none !important; font-weight: 400 !important; text-transform: none !important; letter-spacing: 0 !important; }

/* FEATURES */
.features { list-style: none !important; padding: 0 !important; margin: 0 0 20px !important; display: flex !important; flex-direction: column !important; gap: 6px !important; }
.features li { font-size: 0.8rem !important; color: var(--text-dim) !important; display: flex !important; align-items: flex-start !important; gap: 8px !important; line-height: 1.5 !important; font-family: var(--sans) !important; padding: 0 !important; background: none !important; }
.features .check { color: var(--green) !important; flex-shrink: 0 !important; font-size: 0.78rem !important; }
.features li.denied { opacity: 0.4 !important; }
.features .x { color: var(--red) !important; flex-shrink: 0 !important; font-size: 0.78rem !important; }

/* BUY BUTTON */
.buy-btn { display: flex !important; align-items: center !important; justify-content: center !important; gap: 8px !important; width: 100% !important; padding: 11px 16px !important; margin-top: auto !important; background: var(--red) !important; color: #fff !important; border: none !important; border-radius: 8px !important; font-family: var(--display) !important; font-size: 0.82rem !important; font-weight: 700 !important; letter-spacing: 0.5px !important; text-transform: uppercase !important; text-decoration: none !important; cursor: pointer !important; transition: all 0.2s !important; box-shadow: 0 4px 16px rgba(232,0,13,0.25) !important; background-image: none !important; }
.buy-btn:hover { background: #ff1422 !important; box-shadow: 0 6px 24px rgba(232,0,13,0.42) !important; transform: translateY(-1px) !important; color: #fff !important; }

/* FOOTER */
.footer { border-top: 1px solid var(--border); padding: 40px 0; }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 700; font-size: 0.9rem; }
.footer-brand img { width: 24px; height: 24px; border-radius: 50%; opacity: 0.7; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-links a { text-decoration: none; color: var(--text-muted); font-size: 0.82rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--red); }
.footer-copy { font-size: 0.72rem; color: #2e2e3a; font-family: var(--mono); letter-spacing: 1px; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.cards .card { opacity: 0; animation: fadeUp 0.5s forwards; }
.cards .card:nth-child(1){animation-delay:.05s} .cards .card:nth-child(2){animation-delay:.10s} .cards .card:nth-child(3){animation-delay:.15s} .cards .card:nth-child(4){animation-delay:.20s} .cards .card:nth-child(5){animation-delay:.25s} .cards .card:nth-child(6){animation-delay:.30s}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 99px; }

@media (max-width: 600px) {
  :root { --navbar-h: 56px; }
  .page { padding-top: calc(var(--navbar-h) + 36px); padding-left: 16px; padding-right: 16px; }
  .nav-inner { padding: 0 12px; gap: 8px; }
  .nav-brand span { font-size: 0.9rem; }
  .nav-links { gap: 0; flex-shrink: 0; }
  .nav-links a { padding: 8px 10px; gap: 0; }
  .nav-links a i { font-size: 1.1rem; }
  .nav-links .nav-text { display: none; }
  .status-label { display: none; }
  .hero-title { font-size: 1.9rem; }
  .cards { grid-template-columns: 1fr; }
  .card { padding: 20px !important; }
}

/* ── SVG inline (novo script) ── */
.card-icon-container svg {
  width: 22px !important; height: 22px !important;
  stroke: var(--red) !important; fill: none !important;
  stroke-width: 1.8 !important; stroke-linecap: round !important; stroke-linejoin: round !important;
  filter: none !important;
}

/* ── card highlight (VIP/Infinito) ── */
.card--highlight {
  border-color: rgba(251,191,36,0.25) !important;
}
.card--highlight:hover {
  border-color: rgba(251,191,36,0.5) !important;
  box-shadow: 0 16px 40px rgba(251,191,36,0.08) !important;
}
.card--highlight::before {
  background: linear-gradient(90deg, transparent, #fbbf24, transparent) !important;
}
.card--highlight .price { color: #fbbf24 !important; text-shadow: 0 0 20px rgba(251,191,36,0.5) !important; }
.card--highlight .buy-btn { background: #d97706 !important; box-shadow: 0 4px 16px rgba(217,119,6,0.3) !important; }
.card--highlight .buy-btn:hover { background: #f59e0b !important; }

/* ── SKELETON ── */
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.card--skeleton {
  pointer-events: none !important;
  border-color: var(--border) !important;
}
.sk {
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 75%);
  background-size: 400px 100%;
  animation: shimmer 1.4s infinite linear;
}
.sk-badge  { height: 20px; width: 90px; margin-bottom: 14px; border-radius: 99px; }
.sk-icon   { height: 44px; width: 44px; border-radius: 10px; margin-bottom: 16px; }
.sk-title  { height: 18px; width: 70%; margin-bottom: 10px; }
.sk-price  { height: 28px; width: 40%; margin-bottom: 14px; }
.sk-line   { height: 12px; width: 90%; margin-bottom: 8px; }
.sk-line--short { width: 65%; }
.sk-btn    { height: 40px; width: 100%; border-radius: 8px; margin-top: 8px; }

/* ── ERROR STATE ── */
.cards-error {
  grid-column: 1 / -1;
  padding: 24px;
  text-align: center;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  border: 1px dashed var(--border2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.cards-error i { color: var(--red); }
