:root {
  --am-bg: #08080a;
  --am-bg-alt: #101012;
  --am-surface: #17171a;
  --am-surface-2: #1f1f23;
  --am-border: #2c2c31;
  --am-text: #f5f5f2;
  --am-text-dim: #949499;
  --am-accent: #e2001a;
  --am-accent-2: #ff3b4e;
  --am-accent-glow: rgba(226, 0, 26, 0.4);
  --am-green: #ffffff;
  --am-radius: 3px;
}

* { box-sizing: border-box; }

body {
  background: var(--am-bg);
  color: var(--am-text);
  font-family: 'Barlow', system-ui, sans-serif;
  min-height: 100vh;
}

h1, h2, h3, .am-brand, .am-hero-title {
  font-family: 'Anton', 'Barlow', sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

a { text-decoration: none; }

/* ── Ticker de confiança ────────────────────────────────────────────── */
.brn-ticker {
  background: var(--am-accent);
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid #000;
}
.brn-ticker-track {
  display: inline-block;
  padding: 0.4rem 0;
  font-family: 'Anton', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  animation: brn-ticker-scroll 28s linear infinite;
}
.brn-ticker-track span { margin: 0 1.75rem; }
.brn-ticker-track span i { margin-right: 0.4rem; }
@keyframes brn-ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .brn-ticker-track { animation: none; }
}

/* ── Navbar ─────────────────────────────────────────────────────────── */
.am-navbar {
  background: #000;
  border-bottom: 3px solid var(--am-accent);
}
.am-brand {
  font-size: 1.6rem;
  letter-spacing: 1px;
  color: var(--am-text) !important;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.am-brand i { color: var(--am-accent); }
.am-brand-logo {
  height: 50px;
  width: auto;
}
.navbar-nav .nav-link {
  color: var(--am-text-dim);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.6px;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px !important;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--am-text);
  border-bottom-color: var(--am-accent);
}
.am-btn-cart {
  background: var(--am-accent);
  border: 1px solid var(--am-accent);
  color: #fff;
  border-radius: 0;
  clip-path: polygon(10px 0, 100% 0, 100% 100%, 0 100%, 0 10px);
  padding: 0.45rem 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.4px;
}
.am-btn-cart:hover { background: var(--am-accent-2); border-color: var(--am-accent-2); color: #fff; }
.am-badge {
  background: #000;
  color: #fff;
  margin-left: 0.35rem;
}

/* ── Mock banner ────────────────────────────────────────────────────── */
.am-mock-banner {
  background: var(--am-surface);
  border-bottom: 1px solid var(--am-border);
  color: var(--am-text-dim);
}
.am-mock-banner code { color: var(--am-accent-2); }

/* ── Hero ───────────────────────────────────────────────────────────── */
.am-hero {
  position: relative;
  background: #000;
  border-bottom: 1px solid var(--am-border);
  overflow: hidden;
}
.am-hero::before {
  content: '';
  position: absolute;
  top: 0; right: -10%; bottom: 0;
  width: 60%;
  background: linear-gradient(120deg, transparent 0%, var(--am-accent) 0%, var(--am-accent) 100%);
  clip-path: polygon(35% 0, 100% 0, 100% 100%, 10% 100%);
  opacity: 0.9;
}
.am-hero::after {
  content: '';
  position: absolute;
  top: 0; right: -10%; bottom: 0;
  width: 60%;
  background: repeating-linear-gradient(120deg, transparent, transparent 38px, rgba(0,0,0,0.25) 38px, rgba(0,0,0,0.25) 40px);
  clip-path: polygon(35% 0, 100% 0, 100% 100%, 10% 100%);
}
.am-hero-inner {
  position: relative;
  z-index: 1;
}
.am-hero-art-wrap {
  position: relative;
}
.am-hero-art {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}
.am-hero-title {
  font-size: 3rem;
  color: var(--am-text);
  line-height: 1.05;
}
.am-hero-title .brn-n { color: var(--am-accent); }
.am-hero-sub { color: var(--am-text-dim); font-size: 1.05rem; max-width: 480px; }
.am-hero-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.5rem; }
.am-hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.25rem;
  flex-wrap: wrap;
}
.am-hero-stat-num {
  font-family: 'Anton', sans-serif;
  font-size: 1.9rem;
  color: var(--am-text);
  line-height: 1;
}
.am-hero-stat-num .brn-n { color: var(--am-accent); }
.am-hero-stat-label {
  color: var(--am-text-dim);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-top: 0.2rem;
}

/* ── Filters ────────────────────────────────────────────────────────── */
.am-filters { margin-top: 2rem; }
.am-input {
  background: var(--am-surface) !important;
  border: 1px solid var(--am-border) !important;
  color: var(--am-text) !important;
  border-radius: 0 !important;
}
.am-input::placeholder { color: var(--am-text-dim); }
.am-input:focus { box-shadow: 0 0 0 2px var(--am-accent-glow); border-color: var(--am-accent) !important; }
.am-input-icon {
  background: var(--am-surface) !important;
  border: 1px solid var(--am-border) !important;
  color: var(--am-text-dim) !important;
  border-radius: 0 !important;
}

.am-category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid var(--am-border);
}
.am-pill {
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--am-text-dim);
  border-radius: 0;
  padding: 0.55rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  transition: all .15s ease;
}
.am-pill:hover { color: var(--am-text); }
.am-pill.active {
  background: transparent;
  border-bottom-color: var(--am-accent);
  color: var(--am-text);
}

/* ── Menu de categoria com hover (mostra armas específicas) ──────────── */
.am-nav-item { position: relative; }
.am-nav-dropdown {
  /* top:100% sem vão nenhum até o botão de propósito — qualquer espaço
     em branco entre os dois quebra o :hover no meio do caminho do mouse
     (área sem elemento nenhum embaixo do cursor = sai do hover antes de
     chegar no menu). padding-top aqui dentro dá o respiro visual sem
     criar essa zona morta. */
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 8px;
  z-index: 20;
  display: none;
}
.am-nav-dropdown-inner {
  display: flex;
  flex-direction: column;
  min-width: 190px;
  max-height: 320px;
  overflow-y: auto;
  background: #000;
  border: 1px solid var(--am-border);
  border-top: 2px solid var(--am-accent);
  padding: 0.4rem;
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.8);
}
.am-nav-item:hover .am-nav-dropdown,
.am-nav-item.open .am-nav-dropdown {
  display: block;
}
.am-nav-dropdown button {
  background: transparent;
  border: none;
  color: var(--am-text-dim);
  text-align: left;
  padding: 0.45rem 0.6rem;
  font-size: 0.85rem;
  text-transform: none;
  font-weight: 500;
  letter-spacing: normal;
}
.am-nav-dropdown button:hover {
  background: var(--am-surface);
  color: var(--am-text);
}

/* ── Skin card ──────────────────────────────────────────────────────── */
.am-card {
  background: var(--am-surface);
  border: 1px solid var(--am-border);
  border-radius: var(--am-radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.am-card:hover {
  transform: translateY(-3px);
  border-color: var(--am-accent);
  box-shadow: 6px 6px 0 0 var(--am-accent);
}

.am-card-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 50% 40%, color-mix(in srgb, var(--rarity, var(--am-accent)) 30%, transparent), transparent 70%),
    var(--am-bg-alt);
  border-bottom: 1px solid var(--am-border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.am-card-category {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--am-accent);
  color: #fff;
  font-size: 0.65rem;
  padding: 0.25rem 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 700;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0% 100%);
}
.am-thumb-img {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.am-thumb-placeholder {
  font-size: 2.4rem;
  color: color-mix(in srgb, var(--rarity, var(--am-accent)) 70%, white 10%);
  opacity: 0.85;
}
.am-card-thumb::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--rarity, var(--am-accent));
}

.am-card-body { padding: 0.85rem; flex: 1; display: flex; flex-direction: column; gap: 0.15rem; }
.am-card-wear { font-size: 0.7rem; color: var(--am-text-dim); text-transform: uppercase; letter-spacing: 0.4px; }
.am-card-name { font-size: 0.95rem; font-weight: 600; margin: 0 0 0.4rem; line-height: 1.25; min-height: 2.4em; color: var(--am-text); text-transform: none; font-family: 'Barlow', sans-serif; }
.am-card-price {
  display: inline-block;
  align-self: flex-start;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--am-green);
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--am-accent);
  padding: 0.15rem 0.5rem;
  margin-bottom: 0.6rem;
}
.am-card-actions { display: flex; gap: 0.4rem; margin-top: auto; }
.am-card-actions .btn { flex: 1; font-size: 0.78rem; padding: 0.4rem 0.4rem; }

.am-btn-solid {
  background: var(--am-accent);
  border: none;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border-radius: 0;
  clip-path: polygon(8px 0, 100% 0, 100% 100%, 0 100%, 0 8px);
}
.am-btn-solid:hover { color: #fff; background: var(--am-accent-2); }
.am-btn-outline {
  background: transparent;
  border: 1px solid var(--am-border);
  color: var(--am-text);
  border-radius: 0;
  font-weight: 600;
}
.am-btn-outline:hover { border-color: var(--am-accent); color: var(--am-text); background: var(--am-surface-2); }

.am-spinner { color: var(--am-accent); }

.am-card-clickable { cursor: pointer; }
.am-card-clickable:focus-visible { outline: 2px solid var(--am-accent); outline-offset: 2px; }

/* ── Página de produto (skin.php) ──────────────────────────────────── */
.am-breadcrumb a { color: var(--am-text-dim); }
.am-breadcrumb a:hover { color: var(--am-accent); }
.am-breadcrumb i { font-size: 0.7rem; margin: 0 0.2rem; }

.am-product-image {
  aspect-ratio: 1 / 1;
  border-radius: var(--am-radius);
  background:
    radial-gradient(circle at 50% 40%, color-mix(in srgb, var(--rarity, var(--am-accent)) 30%, transparent), transparent 70%),
    var(--am-surface);
  border: 1px solid var(--am-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.am-product-image img { max-width: 85%; max-height: 85%; object-fit: contain; }

.am-product-title { font-size: 1.8rem; margin: 0.35rem 0 0.15rem; text-transform: none; font-family: 'Barlow', sans-serif; font-weight: 700; }
.am-product-price { font-size: 2.1rem; font-weight: 800; color: var(--am-green); }

.am-wear-list-inline { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.am-wear-list-inline .am-wear-option { flex: 0 0 auto; min-width: 160px; }

.am-float-section {
  background: var(--am-surface);
  border: 1px solid var(--am-border);
  border-left: 3px solid var(--am-accent);
  border-radius: var(--am-radius);
  padding: 1rem 1.25rem;
  margin-top: 1rem;
}
.am-float-range-text { font-size: 1.1rem; font-weight: 700; color: var(--am-text); }
.am-float-bar {
  position: relative;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #fff, #999, var(--am-accent));
  opacity: 0.3;
  margin-top: 0.6rem;
}
.am-float-bar-fill {
  position: absolute;
  top: -3px;
  height: 14px;
  border-radius: 999px;
  background: var(--am-accent);
  box-shadow: 0 0 0 2px var(--am-bg), 0 0 10px var(--am-accent);
}
.am-float-disclaimer { color: var(--am-text-dim); }

.am-product-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.am-product-actions .btn { min-width: 200px; }
.am-product-actions .btn:disabled { opacity: 0.4; }

/* ── Modal de desgastes ─────────────────────────────────────────────── */
.am-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(3px);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.am-modal {
  background: var(--am-surface);
  border: 1px solid var(--am-border);
  border-top: 3px solid var(--am-accent);
  border-radius: var(--am-radius);
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.8);
}
.am-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--am-surface-2);
  border: 1px solid var(--am-border);
  color: var(--am-text-dim);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  z-index: 2;
}
.am-modal-close:hover { color: #fff; border-color: var(--am-accent); background: var(--am-accent); }

.am-modal-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  border-bottom: 1px solid var(--am-border);
}
.am-modal-thumb {
  width: 84px;
  height: 84px;
  flex-shrink: 0;
  border-radius: 4px;
  background:
    radial-gradient(circle at 50% 40%, color-mix(in srgb, var(--rarity, var(--am-accent)) 35%, transparent), transparent 70%),
    var(--am-bg-alt);
  border: 1px solid var(--am-border);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.am-modal-title { font-size: 1.1rem; margin: 0.2rem 0 0; text-transform: none; font-family: 'Barlow', sans-serif; font-weight: 700; }

.am-modal-body { padding: 1.25rem; }
.am-wear-list { display: flex; flex-direction: column; gap: 0.5rem; }
.am-wear-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--am-surface-2);
  border: 1px solid var(--am-border);
  border-radius: 2px;
  padding: 0.65rem 0.9rem;
  color: var(--am-text);
  font-weight: 500;
  transition: all .15s ease;
}
.am-wear-option:hover { border-color: var(--am-accent); }
.am-wear-option.selected {
  border-color: var(--am-accent);
  background: color-mix(in srgb, var(--am-accent) 15%, var(--am-surface-2));
  box-shadow: 0 0 0 1px var(--am-accent);
}
.am-wear-option-price { color: var(--am-green); font-weight: 700; }

.am-modal-footer {
  padding: 1.25rem;
  border-top: 1px solid var(--am-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.am-modal-selected-price { font-size: 1.3rem; font-weight: 700; color: var(--am-green); }
.am-modal-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.am-modal-actions .btn:disabled { opacity: 0.4; }

/* ── Cart page ──────────────────────────────────────────────────────── */
.am-page-title { font-size: 1.7rem; }
.am-cart-list { display: flex; flex-direction: column; gap: 0.75rem; }
.am-cart-item {
  background: var(--am-surface);
  border: 1px solid var(--am-border);
  border-radius: var(--am-radius);
  padding: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.am-cart-item-thumb {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 4px;
  background:
    radial-gradient(circle at 50% 40%, color-mix(in srgb, var(--rarity, var(--am-accent)) 35%, transparent), transparent 70%),
    var(--am-bg-alt);
  border: 1px solid var(--am-border);
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.am-cart-item-info { flex: 1; min-width: 0; }
.am-cart-item-wear { font-size: 0.68rem; color: var(--am-text-dim); text-transform: uppercase; }
.am-cart-item-name { font-size: 0.95rem; font-weight: 600; margin: 0.1rem 0; }
.am-cart-item-price { color: var(--am-green); font-weight: 700; font-size: 0.9rem; }
.am-cart-item-price-tbd { color: var(--am-text-dim); font-weight: 500; font-style: italic; font-size: 0.8rem; }
.am-cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--am-surface-2);
  border-radius: 2px;
  padding: 0.2rem 0.4rem;
}
.am-qty-btn {
  background: transparent;
  border: none;
  color: var(--am-text);
  font-size: 1.1rem;
  width: 26px;
  height: 26px;
  border-radius: 2px;
}
.am-qty-btn:hover { background: var(--am-border); }
.qty-value { min-width: 1.2rem; text-align: center; font-weight: 600; }
.am-cart-item-remove {
  background: transparent;
  border: none;
  color: var(--am-text-dim);
  font-size: 1rem;
  padding: 0.4rem;
}
.am-cart-item-remove:hover { color: var(--am-accent); }

.am-cart-summary {
  background: var(--am-surface);
  border: 1px solid var(--am-border);
  border-top: 3px solid var(--am-accent);
  border-radius: var(--am-radius);
  padding: 1.25rem;
}
.am-cart-total { font-size: 1.5rem; font-weight: 800; color: var(--am-green); }

/* ── Paginação ──────────────────────────────────────────────────────── */
.am-pagination .page-link {
  background: var(--am-surface);
  border: 1px solid var(--am-border);
  color: var(--am-text-dim);
  margin: 0 3px;
  border-radius: 0 !important;
  min-width: 40px;
  text-align: center;
}
.am-pagination .page-link:hover { border-color: var(--am-accent); color: var(--am-text); background: var(--am-surface-2); }
.am-pagination .page-item.active .page-link {
  background: var(--am-accent);
  border-color: var(--am-accent);
  color: #fff;
}
.am-pagination .page-item.disabled .page-link {
  background: transparent;
  border-color: transparent;
  color: var(--am-text-dim);
  opacity: 0.5;
}

/* ── Alertas (login, feedback de forms) ────────────────────────────── */
.alert-danger {
  background: rgba(226, 0, 26, 0.12);
  border: 1px solid rgba(226, 0, 26, 0.4);
  color: #ff8a95;
}
.alert-info {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #e8e8e8;
}

/* ── Admin ──────────────────────────────────────────────────────────── */
.am-login-box {
  background: var(--am-surface);
  border: 1px solid var(--am-border);
  border-top: 3px solid var(--am-accent);
  border-radius: var(--am-radius);
  padding: 2rem;
  width: 100%;
  max-width: 360px;
}
.am-order-card {
  background: var(--am-surface);
  border: 1px solid var(--am-border);
  border-left: 3px solid var(--am-accent);
  border-radius: var(--am-radius);
  padding: 1rem 1.25rem;
  margin-bottom: 0.9rem;
}
.am-order-total { font-size: 1.2rem; font-weight: 800; color: var(--am-green); }
.am-order-items { list-style: none; padding: 0; color: var(--am-text-dim); font-size: 0.9rem; }
.am-order-items li { padding: 0.15rem 0; }
.am-status-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.15rem 0.55rem;
  border-radius: 0;
  margin-left: 0.5rem;
}
.am-status-novo { background: rgba(255, 255, 255, 0.12); color: #fff; }
.am-status-atendido { background: var(--am-accent); color: #fff; }
.am-status-cancelado { background: rgba(255, 255, 255, 0.06); color: var(--am-text-dim); }

/* ── FAQ ────────────────────────────────────────────────────────────── */
.am-faq-list { max-width: 760px; }
.am-faq-item {
  background: var(--am-surface);
  border: 1px solid var(--am-border);
  border-radius: var(--am-radius);
  margin-bottom: 0.75rem;
  padding: 0 1.1rem;
}
.am-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 0;
  font-weight: 600;
  color: var(--am-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.am-faq-item summary::-webkit-details-marker { display: none; }
.am-faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--am-accent);
  flex-shrink: 0;
  transition: transform 0.15s ease;
}
.am-faq-item[open] summary::after { transform: rotate(45deg); }
.am-faq-item summary:hover { color: var(--am-accent); }
.am-faq-answer { padding: 0 0 1.1rem; color: var(--am-text-dim); }
.am-faq-answer p { margin-bottom: 0; line-height: 1.6; }
.am-faq-answer a { color: var(--am-accent); }

/* ── Footer ─────────────────────────────────────────────────────────── */
.am-footer {
  border-top: 3px solid var(--am-accent);
  background: #000;
}
.brn-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}
.brn-footer-brand { font-size: 1.3rem; margin-bottom: 0.6rem; }
.brn-footer-blurb { color: var(--am-text-dim); font-size: 0.88rem; max-width: 340px; }
.brn-footer-heading {
  font-family: 'Anton', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.6px;
  color: var(--am-text);
  margin-bottom: 0.75rem;
}
.brn-footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.brn-footer-links a { color: var(--am-text-dim); font-size: 0.88rem; }
.brn-footer-links a:hover { color: var(--am-accent); }
.brn-footer-bottom {
  border-top: 1px solid var(--am-border);
  margin-top: 2rem;
  padding-top: 1.25rem;
  color: var(--am-text-dim);
  font-size: 0.78rem;
}
@media (max-width: 768px) {
  .brn-footer-grid { grid-template-columns: 1fr; gap: 1.5rem; text-align: left; }
}

@media (max-width: 991.98px) {
  /* A faixa diagonal só faz sentido acompanhando a arte na coluna direita
     do hero — abaixo de lg essa coluna some (d-lg-block) e o hero vira
     uma coluna só, então a faixa passava por cima do texto (inclusive o
     "aqui" em vermelho, ilegível em cima do próprio vermelho). */
  .am-hero::before, .am-hero::after { display: none; }
}

@media (max-width: 576px) {
  .am-hero-title { font-size: 2.1rem; }
  .am-cart-item { flex-wrap: wrap; }
}

/* ── Kits ───────────────────────────────────────────────────────────── */
.am-kit-product-item {
  display: none;
  background: var(--am-surface);
  border: 1px solid var(--am-border);
  border-left: 3px solid var(--rarity, var(--am-accent));
  border-radius: var(--am-radius);
  padding: 1rem;
  margin-bottom: 1rem;
}
.am-kit-product-item.am-kit-active { display: block; }

.am-kit-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.am-kit-carousel-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--am-border);
  background: var(--am-surface);
  color: var(--am-text);
  font-size: 1.1rem;
  cursor: pointer;
  transition: .15s;
}
.am-kit-carousel-arrow:hover:not(:disabled) { border-color: var(--am-accent); color: var(--am-accent); }
.am-kit-carousel-arrow:disabled { opacity: 0.3; cursor: default; }

.am-kit-carousel-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.am-kit-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--am-border);
  background: var(--am-bg-alt);
  padding: 0;
  cursor: pointer;
}
.am-kit-dot.done { background: var(--am-green); border-color: var(--am-green); }
.am-kit-dot.skipped { background: var(--am-text-dim); border-color: var(--am-text-dim); }
.am-kit-dot.active { border-color: var(--am-accent); transform: scale(1.25); }

.am-kit-skipped-banner {
  background: var(--am-bg-alt);
  border: 1px dashed var(--am-border);
  border-radius: 2px;
  padding: 0.8rem 1rem;
  color: var(--am-text-dim);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}
.am-kit-product-image {
  aspect-ratio: 1 / 1;
  height: auto;
  padding: 0.5rem;
}
.am-kit-item-title { font-size: 1.05rem; margin: 0.2rem 0 0.3rem; text-transform: none; font-family: 'Barlow', sans-serif; font-weight: 700; }
.am-kit-item-price { font-size: 1.3rem; font-weight: 800; color: var(--am-green); margin-bottom: 0.6rem; }

.am-kit-summary {
  background: var(--am-surface);
  border: 1px solid var(--am-border);
  border-top: 3px solid var(--am-accent);
  border-radius: var(--am-radius);
  padding: 1.4rem;
  text-align: center;
  position: sticky;
  top: 90px;
}

.am-kit-card-price { color: var(--am-green); font-weight: 700; }

/* ── Monte seu kit ──────────────────────────────────────────────────── */
.am-mk-step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.am-mk-step-title { font-size: 1.2rem; margin: 0; text-transform: none; font-family: 'Barlow', sans-serif; font-weight: 700; }
.am-mk-browse-tools .am-category-pills { display: flex; flex-wrap: wrap; gap: 0.4rem; }

.am-mk-summary-list { text-align: left; display: flex; flex-direction: column; gap: 0.6rem; max-height: 320px; overflow-y: auto; }
.am-mk-summary-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--am-border);
}
.am-mk-summary-item:last-child { border-bottom: none; padding-bottom: 0; }
.am-mk-summary-thumb {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--am-bg);
  border-radius: 2px;
}
.am-mk-summary-info { flex: 1; min-width: 0; }
.am-mk-summary-name { font-size: 0.8rem; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.am-mk-summary-wear { font-size: 0.7rem; color: var(--am-text-dim); }
.am-mk-summary-price { font-size: 0.78rem; font-weight: 600; color: var(--am-green); white-space: nowrap; }

.am-cart-kit-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--am-accent);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin: 1rem 0 0.4rem;
}
.am-cart-kit-header:first-child { margin-top: 0; }

.am-order-kit-header {
  color: var(--am-accent);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  list-style: none;
  margin-top: 0.4rem;
}

/* ── Sobre nós ──────────────────────────────────────────────────────── */
.am-about-story p {
  color: var(--am-text-dim);
  line-height: 1.75;
  font-size: 1.02rem;
  margin-bottom: 1.1rem;
  max-width: 800px;
}
.am-about-story strong { color: var(--am-text); }

.am-about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.am-about-stat {
  background: var(--am-surface);
  border: 1px solid var(--am-border);
  border-top: 3px solid var(--am-accent);
  border-radius: var(--am-radius);
  padding: 1.6rem 1rem;
  text-align: center;
}
.am-about-stat-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--am-text);
  line-height: 1.1;
}
.am-about-stat-label {
  color: var(--am-text-dim);
  font-size: 0.85rem;
  margin-top: 0.4rem;
}

.am-about-cta {
  background: var(--am-surface);
  border: 1px solid var(--am-border);
  border-radius: var(--am-radius);
  padding: 2rem 1rem;
}

@media (max-width: 576px) {
  .am-about-stats { grid-template-columns: 1fr; }
}

/* ── Botão flutuante WhatsApp ──────────────────────────────────────── */
.am-whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 1.7rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  animation: am-whatsapp-pulse 2.4s infinite;
  transition: transform .15s;
}
.am-whatsapp-float:hover { color: #fff; transform: scale(1.08); }

@keyframes am-whatsapp-pulse {
  0% { box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70% { box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5), 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5), 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 576px) {
  .am-whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; font-size: 1.5rem; }
}
