:root {
  --orange: #ff6b00;
  --orange-2: #f97316;
  --black: #05070a;
  --panel: #10151d;
  --panel-2: #151b24;
  --line: rgba(148, 163, 184, 0.18);
  --muted: #9aa7b8;
  --text: #f8fafc;
  --green: #22c55e;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 75% 0, rgba(249, 115, 22, .15), transparent 30%),
    linear-gradient(180deg, #090c12 0%, #05070a 42%, #070a0f 100%);
}
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }
.is-hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.promo-bar {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 5vw, 110px);
  flex-wrap: wrap;
  padding: 9px 18px;
  background: var(--orange);
  color: #111316;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .02em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(7, 10, 15, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.header-wrap, .page-wrap {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 0 22px;
}
.header-main {
  display: grid;
  grid-template-columns: 220px minmax(320px, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 18px 0 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  border: 2px solid rgba(249, 115, 22, .8);
}
.header-search {
  display: flex;
  min-height: 50px;
  min-width: 0;
  max-width: 100%;
  width: 100%;
  border: 1px solid rgba(148, 163, 184, .24);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,.035);
}
.header-search input, .results-search input, .filter-search, .price-field input, .toolbar select {
  min-width: 0;
  border: 0;
  outline: none;
  color: #fff;
  background: transparent;
}
.header-search input {
  flex: 1 1 auto;
  width: 100%;
  min-height: 50px;
  min-width: 0;
  padding: 0 17px;
}
.header-search button, .orange-btn {
  border: 0;
  background: linear-gradient(180deg, #ff7a18, #f05a00);
  color: #fff;
  font-weight: 950;
  min-width: 96px;
  min-height: 50px;
  padding: 0 18px;
  display: grid;
  place-items: center;
  line-height: 1;
  white-space: nowrap;
}
.header-search button {
  flex: 0 0 96px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #e5edf8;
}
.header-action {
  display: grid;
  grid-template-columns: 32px auto;
  gap: 9px;
  align-items: center;
  color: #e5edf8;
}
.header-action svg { color: #fff; }
.header-action small { display:block; color:#cbd5e1; font-size:11px; }
.header-action strong { display:block; color:#fff; font-size:13px; line-height:1.15; }
.header-action .account-menu-label,
.header-action .account-menu-chevron { display:none !important; }
.cart-link { position: relative; }
.cart-count, .count {
  position: absolute;
  top: -8px;
  left: 18px;
  min-width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--orange);
  color: #111316;
  font-size: 11px;
  font-weight: 950;
}
.nav-row {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 4vw, 58px);
  padding: 0 0 16px;
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
}
.nav-row a { color: #f8fafc; }
.nav-row a:hover,
.nav-row a.is-active { color: var(--orange); }
.nav-row a.is-active {
  text-shadow: 0 0 18px rgba(255, 107, 0, .32);
}

.hero-products {
  position: relative;
  min-height: 340px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(5,7,10,.96), rgba(5,7,10,.72) 38%, rgba(5,7,10,.45)),
    url("/assets/banners/produtos-hero.png") center right/cover no-repeat;
}
.hero-products::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(5,7,10,.9));
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 760px);
  gap: 24px;
  align-items: center;
  justify-content: start;
  padding: 42px 22px;
}
.breadcrumb {
  color: #b8c3d2;
  font-size: 13px;
  margin-bottom: 18px;
}
.hero-products h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: .92;
  font-weight: 950;
  letter-spacing: .02em;
}
.hero-products p { margin: 15px 0 0; color: #e5edf8; font-size: 17px; }
.hero-count {
  display: none;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  background: rgba(15, 21, 30, .78);
  box-shadow: 0 18px 55px rgba(0,0,0,.32);
}
.hero-count span { color:#aab6c5; font-size:12px; font-weight:950; text-transform:uppercase; }
.hero-count strong { display:block; margin-top:8px; color: var(--orange); font-size:40px; }
.hero-count small { color:#cbd5e1; }

.catalog-shell {
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr);
  gap: 26px;
  padding: 26px 22px 56px;
}
.filter-toggle { display:none; }
.filters {
  align-self: start;
  position: sticky;
  top: 136px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(19,25,34,.95), rgba(12,16,23,.96));
  overflow: hidden;
}
.filters-head {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 16px 17px;
  border-bottom:1px solid var(--line);
}
.filters-head strong, .filter-block h3 {
  margin:0;
  font-size:13px;
  font-weight:950;
  text-transform:uppercase;
}
.clear-filters {
  border:0;
  background:transparent;
  color:var(--orange);
  font-size:12px;
  font-weight:950;
}
.filter-block {
  padding: 16px 17px;
  border-bottom:1px solid var(--line);
}
.filter-title {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:12px;
}
.filter-list { display:grid; gap:8px; }
.category-group {
  display: grid;
  gap: 8px;
  padding: 2px 0;
}
.category-row {
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:center;
  color:#d8e1ed;
  font-size:13px;
}
.category-row label {
  display:flex;
  align-items:center;
  gap:9px;
  min-width:0;
}
.category-meta {
  display:flex;
  align-items:center;
  gap:8px;
  color:#8ea0b5;
}
.category-toggle {
  width:25px;
  height:25px;
  display:grid;
  place-items:center;
  border:1px solid rgba(249,115,22,.4);
  border-radius:6px;
  background:rgba(249,115,22,.08);
  color:var(--orange);
  line-height:1;
  font-weight:950;
}
.category-children {
  display:grid;
  gap:8px;
  margin-left:16px;
  padding:2px 0 2px 14px;
  border-left:2px solid rgba(249,115,22,.28);
}
.category-children .check-line {
  font-size:12px;
  color:#cbd5e1;
}
.category-children input {
  transform: scale(.92);
}
.check-line {
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:center;
  color:#d8e1ed;
  font-size:13px;
}
.check-line label {
  display:flex;
  align-items:center;
  gap:9px;
  min-width:0;
}
.check-line input { accent-color: var(--orange); }
.check-line span:last-child { color:#8ea0b5; }
.filter-search {
  width:100%;
  margin-bottom:10px;
  padding:10px;
  border:1px solid rgba(148,163,184,.22);
  border-radius:6px;
  background:rgba(255,255,255,.035);
}
.price-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
}
.price-field {
  border:1px solid rgba(148,163,184,.22);
  border-radius:6px;
  padding:8px 10px;
}
.price-field small { display:block; color:#94a3b8; font-size:11px; }
.price-field input { width:100%; margin-top:4px; }

.catalog-main { min-width: 0; }
.brand-strip {
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  margin-bottom:18px;
}
.brand-strip span {
  color:#aab6c5;
  font-size:11px;
  font-weight:950;
  text-transform:uppercase;
}
.brand-chip {
  border:1px solid var(--line);
  border-radius:8px;
  background:rgba(255,255,255,.035);
  color:#fff;
  padding:10px 14px;
  font-size:13px;
  font-weight:950;
}
.brand-chip.is-active, .brand-chip:hover {
  border-color:rgba(249,115,22,.72);
  color:#fff;
  background:rgba(249,115,22,.16);
}
.toolbar {
  display:grid;
  grid-template-columns:minmax(220px,1fr) auto auto auto;
  gap:14px;
  align-items:center;
  margin-bottom:16px;
  padding:14px;
  border:1px solid var(--line);
  border-radius:10px;
  background:linear-gradient(180deg, rgba(19,25,34,.95), rgba(12,16,23,.96));
}
.results-search {
  display:flex;
  min-height:44px;
  min-width:0;
  max-width:100%;
  width:100%;
  border:1px solid rgba(148,163,184,.22);
  border-radius:7px;
  overflow:hidden;
  background:rgba(255,255,255,.035);
}
.results-search input {
  flex:1 1 auto;
  width:100%;
  min-height:44px;
  min-width:0;
  padding:0 13px;
}
.results-search button {
  border:0;
  background:rgba(255,255,255,.045);
  color:#cbd5e1;
  min-width:86px;
  min-height:44px;
  padding:0 14px;
  display:grid;
  place-items:center;
  font-weight:950;
  line-height:1;
  white-space:nowrap;
}
.results-search button {
  flex:0 0 86px;
}
.results-search button:hover {
  color:#fff;
  background:rgba(255,107,0,.18);
}
.toolbar label { display:flex; align-items:center; gap:9px; color:#cbd5e1; font-size:12px; font-weight:900; }
.toolbar select {
  border:1px solid rgba(148,163,184,.22);
  border-radius:7px;
  padding:11px 12px;
  background:#111822;
}
.view-buttons { display:flex; border:1px solid rgba(148,163,184,.22); border-radius:7px; overflow:hidden; }
.view-buttons button {
  width:40px;
  height:40px;
  border:0;
  background:#111822;
  color:#cbd5e1;
  display:grid;
  place-items:center;
  font-size:19px;
  font-weight:950;
}
.view-buttons button.is-active { background:var(--orange); color:#111316; }
.result-summary {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin:0 0 14px;
  color:#aab6c5;
  font-size:13px;
}

.catalog-grid {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}
.catalog-grid.is-list { grid-template-columns:1fr; }
.product-card {
  position:relative;
  display:flex;
  flex-direction:column;
  min-height:100%;
  border:1px solid var(--line);
  border-radius:10px;
  background:linear-gradient(180deg, rgba(20,26,35,.96), rgba(10,14,20,.98));
  overflow:hidden;
  box-shadow:0 14px 38px rgba(0,0,0,.28);
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.product-card:hover {
  transform:translateY(-3px);
  border-color:rgba(249,115,22,.6);
  box-shadow:0 20px 55px rgba(0,0,0,.36);
}
.product-image-wrap {
  position:relative;
  aspect-ratio: 1.12 / 1;
  display:grid;
  place-items:center;
  background:#f8fafc;
  padding:18px;
}
.product-image-wrap img {
  width:100%;
  height:100%;
  object-fit:contain;
}
.badges {
  position:absolute;
  top:12px;
  left:12px;
  display:grid;
  gap:6px;
  z-index:2;
}
.badge {
  width:max-content;
  border-radius:4px;
  background:var(--orange);
  color:#fff;
  padding:6px 8px;
  font-size:11px;
  font-weight:950;
  text-transform:uppercase;
}
.badge.soldout { background:#f59e0b; color:#111316; }
.favorite {
  position:absolute;
  right:12px;
  top:12px;
  display:grid;
  place-items:center;
  width:38px;
  height:38px;
  border:1px solid rgba(15,23,42,.2);
  border-radius:50%;
  background:#fff;
  color:#111827;
}
.product-info {
  display:flex;
  flex-direction:column;
  flex:1;
  gap:8px;
  padding:16px;
}
.brand-name {
  color:var(--orange);
  font-size:12px;
  font-weight:950;
  text-transform:uppercase;
}
.product-title {
  min-height:44px;
  margin:0;
  color:#fff;
  font-size:15px;
  line-height:1.35;
  font-weight:950;
}
.compatibility {
  color:#94a3b8;
  font-size:12px;
  line-height:1.35;
}
.rating {
  color:#ff8a00;
  font-size:12px;
}
.price-old {
  min-height:16px;
  color:#7f8ea3;
  font-size:12px;
  text-decoration:line-through;
}
.price {
  color:#fff;
  font-size:24px;
  font-weight:950;
}
.installments { color:#cbd5e1; font-size:12px; }
.free-shipping { color:var(--green); font-size:13px; font-weight:950; }
.product-card-actions {
  margin-top:auto;
  display:grid;
  grid-template-columns:minmax(0,1fr) 46px;
  gap:8px;
}
.product-card .orange-btn,
.product-card-add {
  display:grid;
  place-items:center;
  min-height:44px;
  border:0;
  border-radius:6px;
  text-transform:uppercase;
  letter-spacing:.03em;
  font-size:13px;
  font-weight:950;
  cursor:pointer;
}
.product-card-add {
  background:var(--orange);
  color:#111316;
}
.product-card-add:disabled {
  cursor:not-allowed;
  opacity:.45;
}
.catalog-grid.is-list .product-card {
  display:grid;
  grid-template-columns:220px minmax(0,1fr);
}
.catalog-grid.is-list .product-image-wrap { aspect-ratio:auto; min-height:220px; }

.pagination {
  display:flex;
  justify-content:center;
  gap:8px;
  flex-wrap:wrap;
  margin-top:26px;
}
.page-btn {
  min-width:38px;
  height:38px;
  border:1px solid var(--line);
  border-radius:7px;
  background:#111822;
  color:#e5edf8;
  font-weight:950;
}
.page-btn.is-active { background:var(--orange); color:#111316; border-color:var(--orange); }
.empty-results {
  grid-column:1/-1;
  padding:40px;
  border:1px dashed var(--line);
  border-radius:12px;
  color:#cbd5e1;
  text-align:center;
}

@media (max-width: 1180px) {
  .header-main { grid-template-columns: 190px 1fr auto; }
  .header-actions { grid-column: 3; }
  .nav-row { overflow-x:auto; justify-content:flex-start; padding-bottom:12px; }
  .catalog-grid { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .toolbar { grid-template-columns:1fr 1fr; }
}
@media (max-width: 900px) {
  .header-main { grid-template-columns:1fr; }
  .header-actions { grid-column:auto; justify-content:space-between; }
  .hero-inner { grid-template-columns:1fr; }
  .hero-count { width:min(100%,280px); }
  .catalog-shell { grid-template-columns:1fr; }
  .filter-toggle { display:inline-flex; align-items:center; justify-content:center; width:100%; margin:18px 0 0; min-height:44px; border:0; border-radius:8px; background:var(--orange); color:#111316; font-weight:950; }
  .filters { display:none; position:static; }
  body.filters-open .filters { display:block; }
  .catalog-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width: 620px) {
  .promo-bar { justify-content:flex-start; gap:8px; font-size:11px; }
  .header-wrap, .page-wrap { padding:0 14px; }
  .brand { font-size:21px; }
  .header-search {
    display:grid;
    grid-template-columns:1fr;
    gap:8px;
    width:calc(100vw - 28px);
    max-width:calc(100vw - 28px);
    border:0;
    background:transparent;
    overflow:visible;
  }
  .header-search input {
    border:1px solid rgba(148, 163, 184, .24);
    border-radius:8px;
    background:rgba(255,255,255,.035);
  }
  .header-search button {
    width:100%;
    flex-basis:auto;
    min-width:82px;
    padding:0 10px;
    border-radius:8px;
    font-size:13px;
  }
  .results-search {
    display:grid;
    grid-template-columns:1fr;
    gap:8px;
    border:0;
    background:transparent;
    overflow:visible;
  }
  .results-search input {
    border:1px solid rgba(148,163,184,.22);
    border-radius:7px;
    background:rgba(255,255,255,.035);
  }
  .results-search button {
    width:100%;
    flex-basis:auto;
    min-width:82px;
    padding:0 10px;
    border-radius:7px;
    font-size:13px;
  }
  .toolbar { grid-template-columns:1fr; }
  .catalog-grid { grid-template-columns:1fr; }
  .catalog-grid.is-list .product-card { grid-template-columns:1fr; }
  .hero-products { min-height:250px; background-position:center right; }
  .hero-products h1 { font-size:42px; }
  .catalog-shell { padding-inline:14px; }
}
