/* Prysm Store — tema escuro/roxo */
:root {
  --bg: #08080b;
  --surface: #121216;
  --surface-2: #1a1a20;
  --border: #26262e;
  --text: #f4f4f5;
  --muted: #9d9da8;
  --accent: #8b5cf6;
  --accent-strong: #7c3aed;
  --accent-soft: rgba(139, 92, 246, 0.14);
  --radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; interpolate-size: allow-keywords; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  min-height: 100vh;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(60% 50% at 50% 100%, rgba(88, 28, 135, 0.45), transparent 70%);
}
#stars { position: fixed; inset: 0; z-index: -2; }

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
img { max-width: 100%; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(8, 8, 11, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.navbar-inner {
  display: flex; align-items: center; gap: 16px;
  height: 60px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-name { font-weight: 800; font-size: 18px; letter-spacing: -0.02em; }
.brand-name .check { color: var(--accent); font-size: 13px; }
.brand-sub { font-size: 10px; letter-spacing: 0.12em; color: var(--muted); }
.support-btn {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--surface-2); border: 1px solid var(--border);
  color: var(--text); font-size: 15px;
}
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.nav-search {
  display: flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; padding: 8px 12px; min-width: 200px;
  color: var(--muted); font-size: 13px; text-align: left;
}
.nav-search kbd {
  margin-left: auto; font-size: 10px; padding: 2px 6px;
  border: 1px solid var(--border); border-radius: 5px; color: var(--muted);
}
.nav-link { font-size: 14px; color: var(--text); }
.cart-btn { position: relative; background: none; border: none; color: var(--text); font-size: 19px; padding: 4px; }
.cart-badge {
  position: absolute; top: -4px; right: -6px;
  background: var(--accent-strong); color: #fff;
  font-size: 10px; font-weight: 700;
  min-width: 16px; height: 16px; border-radius: 8px;
  display: grid; place-items: center; padding: 0 4px;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--accent-strong); color: #fff;
  border: none; border-radius: 999px;
  padding: 9px 20px; font-size: 14px; font-weight: 600;
  transition: filter 0.15s;
}
.btn:hover { filter: brightness(1.12); }
.btn-ghost {
  background: var(--surface-2); border: 1px solid var(--border); color: var(--text);
}
.btn-block { width: 100%; border-radius: 10px; padding: 13px; font-size: 15px; }

/* ---------- Página / títulos ---------- */
.page { padding: 40px 0 80px; }
.page-title { display: flex; align-items: center; gap: 18px; margin: 8px 0 24px; }
.page-title h1 { font-size: 34px; font-weight: 800; letter-spacing: -0.02em; margin: 0; }
.back-circle {
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--surface-2); border: 1px solid var(--border); color: var(--text);
}
.breadcrumb { display: flex; gap: 8px; font-size: 13px; color: var(--muted); margin-bottom: 28px; }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb .current { color: var(--text); font-weight: 600; }

.section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.section-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 18px; font-weight: 700;
}
.section-title::before {
  content: ""; width: 4px; height: 20px; border-radius: 2px; background: var(--accent);
}
.section-meta { font-size: 13px; color: var(--muted); }

.cat-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.cat-header-left { display: flex; align-items: center; gap: 14px; }
.cat-thumb {
  width: 52px; height: 52px; border-radius: 12px;
  display: grid; place-items: center; font-size: 26px;
  border: 1px solid var(--border);
}

/* ---------- Grids / cards ---------- */
.grid { display: grid; gap: 20px; }
.grid-cats { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
/* gap maior: dá respiro pro halo de fogo dos cards fx-fire sem invadir o vizinho */
.grid-products { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 30px; }

.cat-card {
  position: relative; height: 200px; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
  display: flex; align-items: flex-end;
  transition: transform 0.18s, border-color 0.18s;
}
.cat-card:hover { transform: translateY(-3px); border-color: var(--accent); }
.cat-card .art {
  position: absolute; inset: 0;
  display: grid; place-items: center; font-size: 64px;
}
.cat-card .info {
  position: relative; width: 100%; padding: 14px 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
}
.cat-card .info b { display: block; font-size: 15px; text-transform: uppercase; }
.cat-card .info span { font-size: 12px; color: var(--muted); }

.product-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.18s, border-color 0.18s;
}
.product-card:hover { transform: translateY(-3px); border-color: var(--accent); }
.product-art {
  position: relative; overflow: hidden;
  height: 220px; display: grid; place-items: center; font-size: 84px;
}
.product-art::before, .package-art::before {
  content: ""; position: absolute; inset: 0;
  background: var(--grad); opacity: 0.3;
  transition: opacity 0.25s;
}
.product-card:hover .product-art::before { opacity: 0.55; }
.product-art::after, .package-art::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(255, 255, 255, 0.13), transparent 60%);
}
.emoji-main {
  position: relative; z-index: 2;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.55));
  transition: transform 0.25s;
}
.product-card:hover .emoji-main { transform: scale(1.15) rotate(-4deg); }
.product-body { padding: 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-name { font-size: 14px; font-weight: 700; text-transform: uppercase; }
.product-stock { font-size: 12px; color: var(--muted); }
.product-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 10px; }
.product-price { color: var(--accent); font-weight: 800; font-size: 17px; }
.add-cart-btn {
  width: 36px; height: 36px; border-radius: 10px; border: none;
  background: var(--accent-strong); color: #fff; font-size: 16px;
  display: grid; place-items: center;
}
.add-cart-btn:hover { filter: brightness(1.15); }

/* ---------- Hero (index) ---------- */
.hero { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; padding: 70px 0 40px; }
.hero-badges { display: flex; gap: 10px; margin-bottom: 20px; }
.pill {
  font-size: 11px; letter-spacing: 0.08em; font-weight: 600;
  padding: 6px 12px; border-radius: 999px;
  border: 1px solid var(--border); color: var(--muted);
  display: inline-flex; align-items: center; gap: 6px;
}
.pill .dot { color: var(--accent); }
.hero h1 { font-size: 52px; line-height: 1.05; letter-spacing: -0.03em; margin: 0 0 18px; }
.hero p { color: var(--muted); font-size: 15px; line-height: 1.6; max-width: 420px; margin: 0 0 26px; }
.hero-note { font-size: 12px; color: var(--muted); margin-top: 16px; display: flex; align-items: center; gap: 6px; }
.hero-art {
  height: 300px; border-radius: 20px;
  background: linear-gradient(145deg, #17171c, #0d0d11);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  font-size: 130px; font-weight: 900; color: var(--accent-strong);
  text-shadow: 0 0 60px rgba(139, 92, 246, 0.6);
}

.stats { display: flex; justify-content: center; gap: 70px; padding: 50px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.stat { text-align: center; }
.stat b { font-size: 26px; font-weight: 800; display: block; }
.stat span { font-size: 11px; letter-spacing: 0.1em; color: var(--muted); }

.coupon-banner {
  margin: 28px 0; text-align: center;
  border: 1px solid rgba(139, 92, 246, 0.35); border-radius: 12px;
  background: rgba(139, 92, 246, 0.07);
  color: var(--accent); font-size: 13px; font-weight: 600;
  padding: 14px;
}

/* ---------- Features ---------- */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; padding: 40px 0 10px; }
.feature {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 18px; text-align: center;
}
.feature .icon {
  width: 42px; height: 42px; margin: 0 auto 12px;
  border-radius: 12px; display: grid; place-items: center; font-size: 19px;
  background: var(--accent-soft); color: var(--accent);
  border: 1px solid rgba(139, 92, 246, 0.3);
}
.feature b { display: block; font-size: 14px; margin-bottom: 5px; }
.feature span { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ---------- Produto (package) ---------- */
.package-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.package-art {
  position: relative; overflow: hidden;
  border-radius: 20px; aspect-ratio: 1; display: grid; place-items: center;
  font-size: 180px; border: 1px solid var(--border);
}
.package-art .emoji-main { animation: float 4s ease-in-out infinite; }
.package-cat { font-size: 12px; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; }
.package-name { font-size: 30px; font-weight: 800; margin: 6px 0 4px; text-transform: uppercase; }
.package-price { font-size: 34px; font-weight: 800; color: var(--accent); margin: 6px 0 18px; }
.buy-row { display: flex; gap: 10px; }
.buy-row .btn { flex: 1; border-radius: 10px; padding: 13px; }
.buy-row .btn-ghost { flex: 0 0 auto; width: 50px; }
.package-stock-note { font-size: 12px; color: var(--muted); margin: 12px 0 22px; }

.accordion { border-top: 1px solid var(--border); }
.accordion details { border-bottom: 1px solid var(--border); }
.accordion summary {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 0; cursor: pointer; list-style: none;
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}
.accordion summary::before { content: "◎"; color: var(--accent); }
.accordion summary::after { content: "⌄"; margin-left: auto; color: var(--muted); transition: transform 0.2s; }
.accordion details[open] summary::after { transform: rotate(180deg); }
/* recolher/expandir suave (Chrome 131+; nos demais só abre/fecha sem animação) */
.accordion details::details-content {
  block-size: 0; overflow: hidden;
  transition: block-size 0.3s ease, content-visibility 0.3s allow-discrete;
}
.accordion details[open]::details-content { block-size: auto; }
.accordion .acc-body { padding: 0 0 18px; font-size: 13.5px; color: var(--muted); line-height: 1.7; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.check-list li { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--text); }
.check-list li::before { content: "◎"; color: var(--accent); }

/* ---------- Checkout ---------- */
.checkout-layout { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 24px; align-items: start; }
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px;
}
.card + .card { margin-top: 18px; }
.card h3 { margin: 0 0 16px; font-size: 15px; }
.pay-option {
  display: flex; align-items: center; gap: 14px;
  border: 1px solid var(--accent); border-radius: 12px;
  background: var(--accent-soft); padding: 14px 16px;
}
.pay-option .icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--accent-strong); color: #fff;
}
.pay-option b { display: block; font-size: 14px; }
.pay-option span { font-size: 12px; color: var(--muted); }
.pay-tag {
  margin-left: auto; font-size: 11px; font-weight: 700;
  background: var(--accent-strong); color: #fff;
  border-radius: 999px; padding: 5px 12px;
}
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 12.5px; font-weight: 600; margin-bottom: 7px; }
.field label .req { color: var(--accent); }
.input {
  width: 100%; background: #0d0d11; border: 1px solid var(--border);
  border-radius: 9px; padding: 11px 13px; color: var(--text); font-size: 13.5px;
}
.input:focus { outline: none; border-color: var(--accent); }
.terms-row { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted); }
.terms-row input { accent-color: var(--accent-strong); width: 16px; height: 16px; }
.summary-item { display: flex; gap: 12px; align-items: center; }
.summary-thumb {
  width: 52px; height: 52px; border-radius: 10px; flex: 0 0 auto;
  display: grid; place-items: center; font-size: 26px; border: 1px solid var(--border);
}
.summary-item b { font-size: 13px; display: block; text-transform: uppercase; }
.summary-item .price { color: var(--accent); font-weight: 700; font-size: 13px; }
.qty-stepper { display: inline-flex; align-items: center; gap: 12px; margin-top: 10px; }
.qty-stepper button {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--surface-2); border: 1px solid var(--border); color: var(--text);
}
.coupon-row { display: flex; gap: 10px; }
.coupon-row .input { text-transform: uppercase; }
.summary-line { display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); padding: 6px 0; }
.summary-total { display: flex; justify-content: space-between; font-weight: 800; padding-top: 10px; margin-top: 6px; border-top: 1px solid var(--border); }
.summary-total .val { color: var(--accent); }

/* ---------- Cart drawer ---------- */
.drawer-overlay {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 91;
  width: 340px; max-width: 92vw;
  background: #0e0e12; border-left: 1px solid var(--border);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.25s ease;
}
body.drawer-open .drawer { transform: none; }
body.drawer-open .drawer-overlay { opacity: 1; pointer-events: auto; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 18px; }
.drawer-head b { font-size: 15px; }
.drawer-close { background: none; border: none; color: var(--muted); font-size: 18px; }
.drawer-items { flex: 1; overflow-y: auto; padding: 0 14px; display: grid; gap: 12px; align-content: start; }
.cart-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 12px; display: flex; gap: 12px;
}
.cart-item .thumb {
  width: 46px; height: 46px; border-radius: 9px; flex: 0 0 auto;
  display: grid; place-items: center; font-size: 24px; border: 1px solid var(--border);
}
.cart-item b { font-size: 12px; display: block; text-transform: uppercase; }
.cart-item .price { color: var(--accent); font-size: 12px; font-weight: 700; }
.cart-item .remove { margin-left: auto; align-self: flex-start; background: none; border: none; color: #ef4444; font-size: 14px; }
.drawer-empty { text-align: center; color: var(--muted); font-size: 13px; padding: 60px 20px; }
.drawer-empty .icon { font-size: 40px; margin-bottom: 12px; }
.drawer-foot { padding: 16px; border-top: 1px solid var(--border); }
.drawer-total { display: flex; justify-content: space-between; font-weight: 800; margin-bottom: 12px; }
.drawer-total .val { color: var(--accent); }

/* ---------- Dialog de busca ---------- */
.search-dialog {
  border: 1px solid var(--border); border-radius: 14px;
  background: #131318; color: var(--text);
  width: 480px; max-width: 92vw; padding: 0;
}
.search-dialog::backdrop { background: rgba(0, 0, 0, 0.7); }
.search-dialog .search-head {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px; border-bottom: 1px solid var(--border);
}
.search-dialog input {
  flex: 1; background: none; border: none; color: var(--text);
  font-size: 14px; outline: none;
}
.search-results { max-height: 320px; overflow-y: auto; padding: 8px; }
.search-hint { text-align: center; color: var(--muted); font-size: 13px; padding: 32px 16px; }
.search-result {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 10px;
}
.search-result:hover { background: var(--surface-2); }
.search-result .thumb {
  width: 38px; height: 38px; border-radius: 8px;
  display: grid; place-items: center; font-size: 20px;
}
.search-result b { font-size: 13px; display: block; }
.search-result span { font-size: 11.5px; color: var(--muted); }
.search-result .price { margin-left: auto; color: var(--accent); font-weight: 700; font-size: 13px; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px);
  z-index: 120; background: #1c1c22; border: 1px solid var(--border);
  border-radius: 10px; padding: 11px 18px;
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 600;
  opacity: 0; pointer-events: none; transition: opacity 0.2s, transform 0.2s;
}
.toast.show { opacity: 1; transform: translateX(-50%); }
.toast .check-icon { color: #22c55e; }

/* ---------- Auth / forms centrados ---------- */
.auth-card { max-width: 400px; margin: 60px auto; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 36px 0; margin-top: 60px;
  color: var(--muted); font-size: 13px;
}
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 20px; }
.footer-links a:hover { color: var(--text); }

/* ---------- Terms / prose ---------- */
.prose { max-width: 720px; color: var(--muted); font-size: 14px; line-height: 1.8; }
.prose h2 { color: var(--text); font-size: 17px; margin-top: 32px; }

/* ---------- Widgets ---------- */
.widget { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; }
.widget h4 { margin: 0 0 12px; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; }
.goal-bar { height: 8px; border-radius: 4px; background: var(--surface-2); overflow: hidden; }
.goal-bar span { display: block; height: 100%; background: var(--accent-strong); }
.donator { display: flex; justify-content: space-between; font-size: 13px; padding: 6px 0; }
.donator .val { color: var(--accent); font-weight: 700; }

/* ---------- Animações ---------- */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
}
.hero > *, .stat, .feature, .coupon-banner, .cat-card, .product-card,
.page-title, .section-head, .cat-header, .breadcrumb,
.checkout-layout .card, .auth-card, .package-art, .package-layout > div, .prose {
  animation: fade-up 0.55s ease backwards;
  animation-delay: calc(var(--i, 0) * 70ms);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes glow-pulse {
  from { text-shadow: 0 0 40px rgba(139, 92, 246, 0.4); }
  to { text-shadow: 0 0 90px rgba(139, 92, 246, 0.9); }
}
.hero-art { animation: glow-pulse 2.6s ease-in-out infinite alternate, fade-up 0.55s ease backwards; }

/* ---------- Fogo estilo card.html (canvas em scripts/fx-fire.js) ---------- */
.fire-canvas {
  position: fixed; inset: 0; z-index: 40;
  width: 100vw; height: 100vh;
  pointer-events: none;
}
/* brilho ardente na borda (box-shadow porque overflow:hidden cortaria pseudo-elementos) */
.fx-fire {
  border-color: rgba(255, 168, 32, 0.45) !important;
  box-shadow:
    0 0 0 1px rgba(255, 200, 90, 0.32),
    0 0 34px rgba(255, 110, 30, 0.42),
    0 22px 42px rgba(20, 4, 2, 0.75);
  animation:
    fade-up 0.55s ease backwards,
    fire-breathe 3.2s ease-in-out infinite;
}
.product-card.fx-fire:hover { border-color: rgba(255, 200, 90, 0.8) !important; }
@keyframes fire-breathe {
  50% {
    box-shadow:
      0 0 0 1px rgba(255, 214, 120, 0.5),
      0 0 52px rgba(255, 130, 30, 0.62),
      0 22px 42px rgba(20, 4, 2, 0.75);
  }
}
/* variante azul (Kitsune) */
.fx-fire.fx-blue {
  border-color: rgba(80, 190, 255, 0.45) !important;
  box-shadow:
    0 0 0 1px rgba(150, 220, 255, 0.32),
    0 0 34px rgba(50, 140, 255, 0.42),
    0 22px 42px rgba(2, 8, 24, 0.75);
  animation:
    fade-up 0.55s ease backwards,
    fire-breathe-blue 3.2s ease-in-out infinite;
}
.product-card.fx-fire.fx-blue:hover { border-color: rgba(150, 220, 255, 0.8) !important; }
@keyframes fire-breathe-blue {
  50% {
    box-shadow:
      0 0 0 1px rgba(180, 230, 255, 0.5),
      0 0 52px rgba(60, 150, 255, 0.62),
      0 22px 42px rgba(2, 8, 24, 0.75);
  }
}
/* variante roxa (Gojo — Hollow Purple) */
.fx-fire.fx-gojo {
  border-color: rgba(190, 120, 255, 0.45) !important;
  box-shadow:
    0 0 0 1px rgba(215, 170, 255, 0.32),
    0 0 34px rgba(140, 60, 255, 0.42),
    0 22px 42px rgba(12, 2, 24, 0.75);
  animation:
    fade-up 0.55s ease backwards,
    fire-breathe-gojo 3.2s ease-in-out infinite;
}
.product-card.fx-fire.fx-gojo:hover { border-color: rgba(215, 170, 255, 0.8) !important; }
@keyframes fire-breathe-gojo {
  50% {
    box-shadow:
      0 0 0 1px rgba(230, 195, 255, 0.5),
      0 0 52px rgba(155, 70, 255, 0.62),
      0 22px 42px rgba(12, 2, 24, 0.75);
  }
}
/* variante carmesim (Sukuna) */
.fx-fire.fx-sukuna {
  border-color: rgba(255, 80, 70, 0.45) !important;
  box-shadow:
    0 0 0 1px rgba(255, 140, 120, 0.32),
    0 0 34px rgba(220, 30, 40, 0.42),
    0 22px 42px rgba(24, 2, 4, 0.75);
  animation:
    fade-up 0.55s ease backwards,
    fire-breathe-sukuna 3.2s ease-in-out infinite;
}
.product-card.fx-fire.fx-sukuna:hover { border-color: rgba(255, 140, 120, 0.8) !important; }
@keyframes fire-breathe-sukuna {
  50% {
    box-shadow:
      0 0 0 1px rgba(255, 170, 150, 0.5),
      0 0 52px rgba(235, 40, 50, 0.62),
      0 22px 42px rgba(24, 2, 4, 0.75);
  }
}

/* ---------- Imagens reais de produto/categoria (CentralCart) ---------- */
.cat-card img.art, .product-art .art-img, .package-art .art-img {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.25s;
}
.product-card:hover .art-img { transform: scale(1.05); }
.nav-avatar { width: 22px; height: 22px; border-radius: 50%; }
.cart-item .thumb img, .summary-thumb img, .search-result .thumb img {
  width: 100%; height: 100%; object-fit: cover; border-radius: inherit;
}
.price-compare { color: var(--muted); text-decoration: line-through; font-size: 13px; }
.discount-tag {
  font-size: 11px; font-weight: 700; margin-left: 8px;
  background: var(--accent-soft); color: var(--accent);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 999px; padding: 3px 10px;
}
.variation-list { display: flex; flex-wrap: wrap; gap: 8px; }
.variation-btn {
  background: var(--surface-2); border: 1px solid var(--border); color: var(--text);
  border-radius: 9px; padding: 9px 14px; font-size: 13px;
}
.variation-btn.active { border-color: var(--accent); background: var(--accent-soft); color: var(--accent); }
.gateway-option { width: 100%; text-align: left; opacity: 0.6; border-color: var(--border); background: var(--surface-2); }
.gateway-option.selected { opacity: 1; border-color: var(--accent); background: var(--accent-soft); }

/* ---------- Responsivo ---------- */
@media (max-width: 860px) {
  .hero, .package-layout, .checkout-layout { grid-template-columns: 1fr; }
  .hero h1 { font-size: 36px; }
  .nav-search { min-width: 0; }
  .nav-search .label, .nav-search kbd { display: none; }
  .stats { gap: 32px; flex-wrap: wrap; }
}

@media (max-width: 600px) {
  .container { padding-inline: 16px; }
  .page { padding: 24px 0 56px; }

  .navbar-inner { gap: 10px; }
  .brand-sub, .nav-link { display: none; }
  .nav-right { gap: 10px; }
  .nav-search, .support-btn, .cart-btn { min-width: 44px; height: 44px; justify-content: center; }

  .hero { gap: 28px; padding: 40px 0 28px; }
  .hero-badges { flex-wrap: wrap; }
  .hero h1 { font-size: clamp(32px, 10vw, 40px); overflow-wrap: anywhere; }
  .hero p { font-size: 16px; }
  .hero .btn { width: 100%; min-height: 44px; }
  .hero-art { height: 220px; font-size: 96px; }

  .stats { gap: 24px; padding: 32px 0; }
  .stat { flex: 1 1 90px; }
  .features { grid-template-columns: 1fr; padding-top: 28px; }
  .grid-cats, .grid-products { grid-template-columns: 1fr; gap: 18px; }

  .page-title { gap: 12px; margin-bottom: 20px; }
  .page-title h1, .package-name { font-size: 26px; overflow-wrap: anywhere; }
  .section-head, .cat-header { align-items: flex-start; gap: 12px; }
  .cat-header { flex-direction: column; }
  .breadcrumb { overflow-x: auto; white-space: nowrap; padding-bottom: 4px; }

  .package-layout { gap: 28px; }
  .package-art { font-size: 110px; }
  .package-price { font-size: 29px; }
  .buy-row { flex-wrap: wrap; }
  .buy-row .btn:first-child { flex-basis: 100%; }

  .checkout-layout { gap: 18px; }
  .card { padding: 18px 16px; }
  .pay-option { align-items: flex-start; }
  .pay-tag { margin-left: 0; }
  .coupon-row { flex-direction: column; }
  .coupon-row .btn { min-height: 44px; }

  .footer { margin-top: 40px; padding: 28px 0; }
  .footer-inner, .footer-links { justify-content: center; text-align: center; }
  .footer-links { width: 100%; flex-wrap: wrap; }
  .toast { width: calc(100% - 32px); justify-content: center; bottom: 16px; }
}

@media (max-width: 380px) {
  .brand-sub, .support-btn { display: none; }
  .section-head { flex-direction: column; }
  .hero-badges .pill { width: 100%; justify-content: center; }
  .pay-option { flex-wrap: wrap; }
}

@media (hover: none) {
  .cat-card:hover, .product-card:hover { transform: none; }
  .product-card:hover .emoji-main, .product-card:hover .art-img { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}