:root {
  --black: #080808;
  --ink: #121212;
  --muted: #6f7175;
  --line: #dedede;
  --soft: #f3f3f3;
  --white: #fff;
  --clio: #d61f2c;
  --gamemax: #9fcf32;
  --accent: var(--clio);
  --shell: min(1440px, calc(100vw - 64px));
  --display: "Rajdhani", sans-serif;
  --body: "Inter", sans-serif;
}

[data-brand="gamemax"] { --accent: var(--gamemax); }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.modern-site {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.is-locked { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
.shell { width: var(--shell); margin-inline: auto; }
.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;
}
.eyebrow {
  display: inline-block;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1;
  text-transform: uppercase;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid transparent;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary { border-color: var(--clio); color: var(--clio); }
.button--primary:hover { background: var(--clio); color: var(--white)}
.button--outline { border-color: var(--gamemax); color: var(--gamemax); }
.button--outline:hover { border-color: var(--gamemax); background: var(--gamemax); color: var(--white); }
.button--light { background: var(--white); color: var(--black); }
.button--light:hover { background: var(--clio); color: var(--white); }
.button--dark { background: var(--black); color: var(--white); }
.button--brand { background: var(--accent); color: var(--white); width: 100%; }
[data-brand="gamemax"] .button--brand { color: var(--black); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.text-link b { transition: transform .2s ease; }
.text-link:hover b { transform: translateX(5px); }
.text-link--dark { color: var(--ink); }

.top-strip { background: #1b1b1b; color: #aaa; font-size: 11px; letter-spacing: .04em; }
.top-strip__inner { height: 32px; display: flex; align-items: center; justify-content: space-between; }
.top-strip a { color: #ddd; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--white);
  background: rgba(8,8,8,.97);
  border-bottom: 1px solid rgba(255,255,255,.12);
  transition: box-shadow .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 12px 30px rgba(0,0,0,.18); }
.site-header__inner { height: 78px; display: grid; grid-template-columns: 270px 1fr 260px; align-items: center; }
.brand-lockup { width: max-content; max-width: 100%; display: flex; align-items: center; gap: 18px; }
.brand-lockup img { flex: 0 0 auto; width: auto; height: 32px; object-fit: contain; filter: brightness(0) invert(1); }
.brand-lockup img:first-child { order: 1; }
.brand-lockup img:last-child { order: 2; }
.desktop-nav { height: 100%; display: flex; align-items: stretch; justify-content: center; gap: 34px; }
.nav-group { display: flex; align-items: stretch; }
.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ddd;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 3px;
  background: var(--clio);
  transition: right .25s ease;
}
.nav-link:hover, .nav-link.is-active { color: var(--white); }
.nav-link:hover::after, .nav-link.is-active::after { right: 0; }
.nav-link span { color: #777; }
.nav-chevron {
  display: inline-block;
  vertical-align: middle;
  margin-left: 2px;
  transition: transform .3s ease;
}
.nav-group:hover .nav-chevron,
.nav-group.is-open .nav-chevron {
  transform: rotate(180deg);
}
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(280px, 36%) 1fr;
  background: var(--white);
  color: var(--ink);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,.2);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}
.nav-group:hover .mega-menu, .nav-group.is-open .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-menu__intro { padding: 46px 42px 46px 300px; background: var(--clio); color: var(--white); }
.mega-menu--gamemax .mega-menu__intro { background: var(--gamemax); color: var(--black); }
.mega-menu__intro strong { display: block; max-width: 360px; margin: 18px 0 28px; font-family: var(--display); font-size: 34px; line-height: 1.02; text-transform: uppercase; }
.mega-menu__intro a { position: relative; display: inline-block; padding-bottom: 4px; font-family: var(--display); font-weight: 700; text-transform: uppercase; }
.mega-menu__intro a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: currentColor; transition: right .25s ease; }
.mega-menu__intro a:hover::after { right: 0; }
.mega-menu__links { display: grid; grid-template-columns: repeat(3, minmax(140px, 1fr)); align-content: start; gap: 0 34px; padding: 38px 42px; }
.mega-menu__links a { padding: 13px 0; border-bottom: 1px solid #e5e5e5; font-family: var(--display); font-weight: 700; text-transform: uppercase; transition: color .2s ease, padding .2s ease; }
.mega-menu__links a:hover { color: var(--clio); padding-left: 5px; }
.mega-menu--gamemax .mega-menu__links a:hover { color: #709700; }
.header-actions { display: flex; justify-content: flex-end; gap: 10px; }
.header-search-form { position: relative; width: 250px; height: 42px; display: grid; grid-template-columns: 1fr 42px; border: 1px solid #444; background: #151515; }
.header-search-form input { min-width: 0; padding: 0 12px; border: 0; outline: 0; background: transparent; color: var(--white); font-size: 12px; }
.header-search-form input::placeholder { color: #888; }
.header-search-form button { display: grid; place-items: center; border: 0; border-left: 1px solid #333; background: transparent; color: var(--white); cursor: pointer; }
.header-search-form svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.header-search-results { position: absolute; top: calc(100% + 10px); right: 0; z-index: 120; width: 390px; max-height: 390px; overflow-y: auto; border: 1px solid #303030; background: #101010; box-shadow: 0 20px 45px rgba(0,0,0,.42); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .2s ease, visibility .2s ease, transform .2s ease; }
.header-search-results.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.header-search-result { position: relative; display: grid; grid-template-columns: 64px minmax(0, 1fr); align-items: center; gap: 13px; min-height: 86px; padding: 10px 42px 10px 10px; border-bottom: 1px solid #292929; transition: background .2s ease, padding-left .2s ease; }
.header-search-result:last-child { border-bottom: 0; }
.header-search-result::after { content: "→"; position: absolute; top: 50%; right: 16px; color: #777; transform: translateY(-50%); transition: color .2s ease, transform .2s ease; }
.header-search-result:hover { padding-left: 14px; background: #1b1b1b; }
.header-search-result__image { width: 64px; height: 64px; padding: 4px; background: var(--white); object-fit: contain; }
.header-search-result__content { min-width: 0; }
.header-search-result:hover::after { color: var(--white); transform: translate(4px, -50%); }
.header-search-result__meta { display: flex; align-items: center; gap: 8px; margin-bottom: 5px; color: #777; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.header-search-result__meta b { color: var(--clio); }
.header-search-result--gamemax .header-search-result__meta b { color: var(--gamemax); }
.header-search-result__name { display: block; color: var(--white); font-family: var(--display); font-size: 15px; line-height: 1.05; text-transform: uppercase; }
.header-search-result__name .product-name__sku { display: block; margin: 4px 0 0; color: var(--clio); font-size: 12px; letter-spacing: .04em; }
.header-search-result--gamemax .header-search-result__name .product-name__sku { color: var(--gamemax); }
.header-search-results__empty { display: block; padding: 18px 16px; color: #888; font-size: 12px; }
.header-actions .search-toggle { display: none; }
.icon-button, .menu-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid #444;
  background: transparent;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}
.icon-button:hover, .menu-toggle:hover { border-color: var(--white); }
.icon-button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.menu-toggle { display: none; padding: 12px 10px; }
.menu-toggle span { display: block; width: 20px; height: 1px; margin: 3px 0; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.nav-search {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--white);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}
.nav-search.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-search__form { height: 92px; display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: 18px; }
.nav-search__form svg { width: 24px; fill: none; stroke: #555; stroke-width: 1.8; }
.nav-search__form input { width: 100%; border: 0; outline: 0; font-size: 21px; }
.nav-search__form button { height: 46px; padding: 0 24px; border: 0; background: var(--black); color: var(--white); font-family: var(--display); font-weight: 700; text-transform: uppercase; cursor: pointer; }
.mobile-panel { display: none; }

.hero { position: relative; min-height: 720px; overflow: hidden; background: var(--black); color: var(--white); }
.hero__backdrop { position: absolute; inset: 0; background: radial-gradient(circle at 72% 45%, #4a1118 0, #19090b 14%, #080808 38%); }
.hero__backdrop::after { content: ""; position: absolute; inset: 0; opacity: .28; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 48px 48px; }
.hero__grid { position: relative; min-height: 640px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 50px; }
.hero__content { z-index: 2; padding: 74px 0 90px; }
.hero__content .eyebrow { color: #aaa; }
.hero h1 { margin: 20px 0 24px; font-family: var(--display); font-size: clamp(64px, 7vw, 112px); line-height: .84; letter-spacing: -.045em; text-transform: uppercase; }
.hero h1 em { color: var(--clio); font-style: normal; }
.hero__content > p { max-width: 560px; margin: 0 0 35px; color: #b9b9b9; font-size: 17px; line-height: 1.7; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__visual { position: relative; height: 560px; display: grid; place-items: center; }
.hero__visual > img { position: relative; z-index: 2; width: min(900px, 125%); height: 620px; object-fit: contain; filter: drop-shadow(0 30px 35px rgba(0,0,0,.5)); animation: productFloat 6s ease-in-out infinite; }
.hero__glow { position: absolute; width: 55%; aspect-ratio: 1; border-radius: 50%; background: rgba(214,31,44,.22); filter: blur(65px); }
.hero-product { position: absolute; z-index: 3; right: 0; bottom: 25px; width: 270px; padding: 18px 50px 18px 20px; border-left: 3px solid var(--clio); background: rgba(18,18,18,.88); backdrop-filter: blur(12px); }
.hero-product span { display: block; color: #999; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.hero-product strong { display: block; margin-top: 4px; font-family: var(--display); font-size: 17px; line-height: 1.1; text-transform: uppercase; }
.hero-product b { position: absolute; right: 18px; top: 50%; transform: translateY(-50%); }
.hero__ticker { position: relative; height: 80px; display: flex; align-items: center; border-top: 1px solid #242424; background: #0d0d0d; overflow: hidden; }
.hero__ticker-track { display: flex; width: max-content; color: #4b4b4b; font-family: var(--display); font-size: 25px; font-weight: 700; letter-spacing: .15em; white-space: nowrap; animation: ticker 24s linear infinite; will-change: transform; }
.hero__ticker-item { flex: 0 0 auto; padding-left: 35px; }
.hero__ticker-item b { margin: 0 35px; color: var(--clio); font-weight: 700; }
@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes productFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.section { padding: 110px 0; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 42px; }
.section-heading h2, .results-bar h2 { margin: 8px 0 0; font-family: var(--display); font-size: clamp(40px, 5vw, 66px); line-height: .95; letter-spacing: -.03em; text-transform: uppercase; }
.slider-controls { display: flex; gap: 8px; }
.slider-controls button { width: 52px; height: 52px; border: 1px solid #ccc; background: transparent; font-size: 20px; cursor: pointer; transition: background .2s ease, color .2s ease; }
.slider-controls button:hover { background: var(--black); color: var(--white); }
.category-section { overflow: hidden; background: var(--soft); }
.category-rail { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(270px, 24%); gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.category-rail::-webkit-scrollbar { display: none; }
.category-card { position: relative; height: 420px; overflow: hidden; background: var(--white); scroll-snap-align: start; }
.category-card::after { content: ""; position: absolute; z-index: 1; inset: 35% 0 0; background: linear-gradient(transparent 0%, rgba(32,32,32,.16) 30%, rgba(12,12,12,.72) 100%); pointer-events: none; }
.category-card--clio::after, .category-card--gamemax::after { background: linear-gradient(transparent 0%, rgba(32,32,32,.16) 30%, rgba(12,12,12,.72) 100%); }
.category-card img { width: 100%; height: 100%; object-fit: contain; padding: 28px 20px 78px; background: var(--white); mix-blend-mode: normal; filter: none; transition: transform .55s cubic-bezier(.2,.7,.2,1), filter .55s ease; }
.category-card:hover img { transform: scale(1.06); filter: saturate(.7); }
.category-card__index { position: absolute; z-index: 2; top: 18px; left: 18px; color: var(--white); font-family: var(--display); font-size: 12px; }
.category-card > div { position: absolute; z-index: 2; left: 22px; right: 55px; bottom: 24px; color: var(--white); }
.category-card small { color: #bbb; font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.category-card--clio small, .category-card--gamemax small { color: var(--white); }
.category-card h3 { margin: 5px 0 0; font-family: var(--display); font-size: 28px; line-height: 1; text-transform: uppercase; }
.category-card > b { position: absolute; z-index: 2; right: 22px; bottom: 29px; color: var(--white); font-size: 20px; transition: transform .2s ease; }
.category-card:hover > b { transform: translate(3px, -3px); }

.brand-split { display: grid; grid-template-columns: 1fr 1fr; }
.brand-panel { position: relative; min-height: 520px; padding: 90px max(5vw, 55px); display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; overflow: hidden; color: var(--white); }
.brand-panel::before, .brand-panel::after { content: ""; position: absolute; pointer-events: none; }
.brand-panel::before { inset: 0; background: linear-gradient(135deg, rgba(255,255,255,.08), transparent 40%), repeating-linear-gradient(135deg, transparent 0 32px, rgba(255,255,255,.025) 32px 33px); }
.brand-panel::after { width: 320px; height: 320px; right: -110px; top: -80px; border: 60px solid rgba(255,255,255,.08); transform: rotate(35deg); transition: transform .5s ease; }
.brand-panel:hover::after { transform: rotate(50deg) scale(1.1); }
.brand-panel > * { position: relative; z-index: 1; }
.brand-panel--clio { background: #b81420; }
.brand-panel--gamemax { background: #739f17; }
.brand-panel h2 { max-width: 570px; margin: 15px 0; font-family: var(--display); font-size: clamp(48px, 5vw, 74px); line-height: .9; text-transform: uppercase; }
.brand-panel p { max-width: 480px; margin: 0 0 32px; color: rgba(255,255,255,.76); }

.products-section { background: var(--white); }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 42px 18px; }
.product-card { min-width: 0; }
.product-card__media { position: relative; height: 340px; display: block; overflow: hidden; background: #f0f0f0; }
.product-card__media img { width: 100%; height: 100%; object-fit: contain; padding: 24px; mix-blend-mode: multiply; transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.product-card:hover .product-card__media img { transform: scale(1.07); }
.product-card__brand { position: absolute; z-index: 2; top: 14px; left: 14px; padding: 6px 9px; background: var(--clio); color: var(--white); font-family: var(--display); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.product-card__brand--gamemax { background: var(--gamemax); color: var(--black); }
.product-card__action { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; background: var(--black); color: var(--white); font-family: var(--display); font-size: 13px; font-weight: 700; text-transform: uppercase; transform: translateY(100%); transition: transform .25s ease; }
.product-card__action--clio { background: var(--clio); color: var(--white); }
.product-card__action--gamemax { background: var(--gamemax); color: var(--black); }
.product-card:hover .product-card__action { transform: translateY(0); }
.product-card__content { padding: 18px 5px 0; }
.product-card__content > span { color: #888; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.product-card__content h3 { margin: 7px 0 0; font-family: var(--display); font-size: 20px; line-height: 1.08; text-transform: uppercase; }
.product-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 8px 0 0; }
.product-card__tag { display: inline-block; padding: 5px 11px; border-radius: 999px; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; background: #222; color: #fff; border: 1px solid #222; box-shadow: 0 2px 5px rgba(0,0,0,.25); }
.product-card__content a { transition: color .2s ease; }
.product-card__content a:hover { color: var(--clio); }
.statement { padding: 115px 0; background: var(--black); color: var(--white); }
.statement__inner { display: grid; grid-template-columns: 170px 1fr auto; align-items: center; gap: 50px; }
.statement p { max-width: 900px; margin: 0; color: #777; font-family: var(--display); font-size: clamp(40px, 4vw, 64px); line-height: .96; text-transform: uppercase; }
.statement strong { color: var(--white); font-weight: 700; }

.page-hero { padding: 105px 0 90px; background: var(--black); color: var(--white); }
.page-hero--search { background: var(--black); }
.page-hero h1 { margin: 16px 0 40px; max-width: 1000px; font-family: var(--display); font-size: clamp(52px, 7vw, 94px); line-height: .88; text-transform: uppercase; }
.search-hero-form { max-width: 900px; height: 74px; display: grid; grid-template-columns: 1fr auto; background: var(--white); }
.search-hero-form input { min-width: 0; padding: 0 28px; border: 0; outline: 0; color: var(--ink); font-size: 18px; }
.search-hero-form button { min-width: 145px; border: 0; background: var(--clio); color: var(--white); font-family: var(--display); font-weight: 700; text-transform: uppercase; cursor: pointer; }
.catalog-crosslink { max-width: 900px; min-height: 74px; display: flex; align-items: center; gap: 12px; padding: 0 28px; border: 1px solid currentColor; font-family: var(--display); text-transform: uppercase; transition: background .25s ease, color .25s ease; }
.catalog-crosslink span { color: var(--white); font-family: var(--body); font-size: 12px; font-weight: 600; letter-spacing: .12em; }
.catalog-crosslink strong { color: var(--white); font-size: 24px; letter-spacing: .06em; }
.catalog-crosslink b { margin-left: auto; font-size: 24px; transition: transform .25s ease; }
.catalog-crosslink--clio { color: var(--clio); }
.catalog-crosslink--gamemax { color: var(--gamemax); }
.catalog-crosslink:hover { background: currentColor; }
.catalog-crosslink:hover span, .catalog-crosslink:hover strong, .catalog-crosslink:hover b { color: var(--black); }
.catalog-crosslink--clio:hover span, .catalog-crosslink--clio:hover strong, .catalog-crosslink--clio:hover b { color: var(--white); }
.catalog-crosslink:hover b { transform: translateX(5px); }
.catalog-section { min-height: 500px; }
.results-bar { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 45px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.results-bar h2 { font-size: clamp(36px, 4vw, 58px); }
.results-bar p { margin: 0; color: var(--muted); }
.results-bar p strong { color: var(--ink); font-size: 24px; }
.empty-state { max-width: 620px; margin: 50px auto; text-align: center; }
.empty-state > span { color: #ddd; font-family: var(--display); font-size: 100px; font-weight: 700; line-height: 1; }
.empty-state h2 { margin: 20px 0 8px; font-family: var(--display); font-size: 42px; text-transform: uppercase; }
.empty-state p { margin: 0 0 28px; color: var(--muted); }
.pagination { margin-top: 70px; display: flex; align-items: center; justify-content: center; gap: 28px; }
.pagination a { padding: 13px 18px; border: 1px solid var(--black); font-family: var(--display); font-weight: 700; text-transform: uppercase; }
.pagination a:hover { background: var(--black); color: var(--white); }
.pagination span { color: var(--muted); font-size: 13px; }

.category-hero { position: relative; min-height: 390px; display: grid; align-items: end; overflow: hidden; isolation: isolate; background: var(--black); color: var(--white); }
.category-hero::before { content: ""; position: absolute; inset: 0; z-index: 0; opacity: .22; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 42px 42px; transform: perspective(500px) rotateX(55deg) scale(1.5) translateY(18%); transform-origin: bottom; }
.category-hero::after { content: ""; position: absolute; inset: 0; z-index: 0; background: linear-gradient(90deg, rgba(0,0,0,.95), rgba(0,0,0,.72) 58%, rgba(0,0,0,.9)); pointer-events: none; }
.category-hero__image { position: absolute; inset: 0; }
.category-hero__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.9) 0, rgba(0,0,0,.65) 42%, rgba(0,0,0,.15)), linear-gradient(0deg, rgba(0,0,0,.55), transparent 55%); }
.category-hero__image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.65) contrast(1.08); }
.category-hero__brand-bg { position: absolute; top: 50%; left: 50%; z-index: 0; width: max-content; padding: .08em .16em; color: var(--white); font-family: var(--display); font-size: clamp(70px, 14vw, 220px); font-weight: 700; letter-spacing: .08em; line-height: .8; opacity: .32; text-transform: uppercase; transform: translate(-50%, -50%) skew(-10deg); text-shadow: 0 0 24px rgba(255,255,255,.22); white-space: nowrap; user-select: none; }
.category-hero__brand-bg::before { content: ""; position: absolute; inset: -.12em -.06em; z-index: -1; border: 2px solid var(--white); opacity: .7; clip-path: polygon(0 0, 91% 0, 100% 22%, 100% 78%, 91% 100%, 0 100%, 4% 78%, 4% 22%); background: repeating-linear-gradient(90deg, transparent 0 34px, rgba(255,255,255,.18) 35px 36px); }
.category-hero__brand-bg::after { content: ""; position: absolute; left: .08em; bottom: -.24em; width: 1.5em; height: .045em; background: var(--white); box-shadow: .45em .18em 0 -.02em var(--white), 1.05em 0 0 -.01em var(--white); opacity: .8; }
.category-hero__tech { position: absolute; top: 50%; left: 100%; width: .55em; height: .28em; margin-left: .12em; transform: translateY(-50%) skew(10deg); pointer-events: none; }
.category-hero__tech::after { content: ""; position: absolute; top: 50%; left: .34em; width: .48em; height: .025em; background: currentColor; transform: translateY(-50%); }
.category-hero__tech i { position: absolute; top: 50%; width: .12em; height: .12em; border: .018em solid currentColor; transform: translateY(-50%); }
.category-hero__tech i:first-child { left: 0; background: currentColor; }
.category-hero__tech i:last-child { left: .17em; }
.category-hero--gamemax { --accent: var(--gamemax); }
.category-hero__content { position: relative; z-index: 1; padding-bottom: 48px; }
.category-hero__content .eyebrow { color: var(--accent); }
.category-hero h1 { max-width: 950px; margin: 14px 0 14px; font-family: var(--display); font-size: clamp(50px, 7vw, 92px); line-height: .84; text-transform: uppercase; }
.category-hero p { max-width: 550px; margin: 0 0 22px; color: #ccc; }
.category-tabs { position: sticky; top: 78px; z-index: 30; background: var(--white); border-bottom: 1px solid var(--line); }
.category-tabs__inner { position: relative; }
.category-tabs__toggle { display: none; }
.category-tabs__rail { display: flex; gap: 22px; width: var(--shell); max-width: 100%; margin-inline: auto; padding: 0 12px; overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: auto; scrollbar-color: #aaa #ededed; cursor: grab; }
.category-tabs__rail.is-dragging { cursor: grabbing; scroll-snap-type: none; user-select: none; }
.category-tabs__rail::-webkit-scrollbar { height: 10px; }
.category-tabs__rail::-webkit-scrollbar-track { background: #ededed; border-radius: 10px; }
.category-tabs__rail::-webkit-scrollbar-thumb { min-width: 70px; background: #aaa; border: 2px solid #ededed; border-radius: 10px; }
.category-tabs__rail::-webkit-scrollbar-thumb:hover { background: #777; }
.category-tabs a { flex: 0 0 auto; min-width: 0; padding: 22px 0 18px; border-bottom: 3px solid transparent; color: #777; font-family: var(--display); font-size: 13px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; white-space: nowrap; scroll-snap-align: start; }
.category-tabs a:hover, .category-tabs a.is-active { color: var(--ink); border-color: var(--accent); }
.category-tabs__all { position: relative; color: var(--accent) !important; }
.category-tabs__all::after { content: ''; position: absolute; right: -11px; top: 50%; transform: translateY(-50%); width: 1px; height: 14px; background: var(--line); }

.product-detail { padding: 35px 0 100px; background: #f4f4f4; }
.product-detail__breadcrumbs { display: flex; gap: 9px; align-items: center; padding-bottom: 28px; color: #777; font-size: 11px; text-transform: uppercase; overflow: hidden; white-space: nowrap; }
.product-detail__breadcrumbs a:hover { color: var(--accent); }
.product-detail__grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: 70px; align-items: start; width: 100%; min-width: 0; }
.product-detail__grid > * { min-width: 0; max-width: 100%; }
.product-gallery { width: 100%; min-width: 0; overflow: hidden; }
.product-gallery__stage { position: relative; width: 100%; height: 640px; overflow: hidden; background: var(--white); }
.product-gallery__slide { position: absolute; inset: 0; width: 100%; height: 100%; display: grid; place-items: center; padding: 45px; border: 0; background: transparent; opacity: 0; visibility: hidden; cursor: zoom-in; transition: opacity .3s ease, visibility .3s ease; }
.product-gallery__slide.is-active { opacity: 1; visibility: visible; }
.product-gallery__slide img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.product-gallery__slide > span { position: absolute; right: 18px; bottom: 18px; padding: 8px 11px; background: var(--black); color: var(--white); font-family: var(--display); font-size: 11px; text-transform: uppercase; }
.gallery-arrow { position: absolute; z-index: 3; top: 50%; width: 46px; height: 46px; border: 1px solid #ccc; background: rgba(255,255,255,.9); cursor: pointer; }
.gallery-arrow--prev { left: 14px; }
.gallery-arrow--next { right: 14px; }
.product-gallery__thumbs { display: flex; gap: 10px; margin-top: 10px; overflow-x: auto; }
.product-gallery__thumbs button { flex: 0 0 90px; height: 76px; padding: 5px; border: 2px solid transparent; background: var(--white); cursor: pointer; }
.product-gallery__thumbs button.is-active { border-color: var(--accent); }
.product-gallery__thumbs img { width: 100%; height: 100%; object-fit: contain; }
.product-summary { position: sticky; top: 118px; padding: 35px 0; }
@media (min-width: 1101px) {
  .product-summary { padding-right: 32px; }
  .product-gallery__thumbs { padding-left: 24px; }
}
.product-summary__brand { color: var(--accent); font-family: var(--display); font-size: 13px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.product-name__sku { display: inline-block; margin-left: .35em; font-size: .62em; font-style: italic; font-weight: inherit; letter-spacing: .02em; white-space: nowrap; }
.product-name__sku--clio { color: var(--clio); }
.product-name__sku--gamemax { color: var(--gamemax); }
.hero-product .product-name__sku { display: block; margin: 4px 0 0; font-size: .72em; }
.product-card__content .product-name__sku { display: block; margin: 3px 0 0; font-size: .78em; }
.product-summary h1 .product-name__sku { display: block; margin: 10px 0 0; font-size: .38em; }
.product-summary h1 { max-width: 100%; min-width: 0; margin: 15px 0 20px; font-family: var(--display); font-size: clamp(48px, 5vw, 74px); line-height: .9; letter-spacing: -.025em; overflow-wrap: anywhere; word-break: break-word; text-transform: uppercase; }
.product-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: -10px 0 18px; }
.product-tag { display: inline-flex; align-items: center; padding: 5px 12px; border: 1px solid var(--line); border-radius: 20px; font-size: 13px; color: var(--muted); transition: all .2s ease; }
.product-tag:hover { border-color: var(--accent); color: var(--accent); }
[data-brand="gamemax"] .product-tag:hover { color: var(--black); }
.product-summary__category { display: inline-flex; gap: 15px; color: #666; font-size: 13px; font-weight: 600; text-transform: uppercase; }
.product-summary__category:hover { color: var(--accent); }
.product-summary__rule { height: 1px; margin: 30px 0; background: #ccc; }
.product-summary__highlights { margin-bottom: 32px; }
.product-summary__highlights > div { display: grid; grid-template-columns: 34px 1fr; gap: 15px; padding: 13px 0; border-bottom: 1px solid #ddd; }
.product-summary__highlights span { color: var(--accent); font-family: var(--display); font-weight: 700; }
.product-summary__highlights p { margin: 0; font-size: 13px; }
.download-link { display: block; margin-top: 18px; text-align: center; color: #555; font-family: var(--display); font-size: 13px; font-weight: 700; text-transform: uppercase; }
.product-description-section { padding: 110px 0; background: var(--black); color: var(--white); }
.product-description-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.product-description-grid h2 { margin: 15px 0 0; font-family: var(--display); font-size: clamp(50px, 6vw, 80px); line-height: .9; text-transform: uppercase; }
.product-description-copy { color: #bbb; font-size: 17px; line-height: 1.8; }
.product-description-copy p:first-child { margin-top: 0; }
.product-description-copy img { width: auto; max-width: 100%; height: auto !important; }
.product-description-tags { display: block; margin-top: 40px; }
.product-description-tags .filter-label { color: var(--white); }
.product-description-tags__list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.product-description-tags__list .product-tag { color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.25); }
.product-description-tags__list .product-tag:hover { color: var(--white); border-color: var(--white); }
.product-back { padding: 70px 0; background: var(--accent); color: var(--white); }
[data-brand="gamemax"] .product-back { color: var(--black); }
.product-back .shell { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.product-back span { font-size: 13px; font-weight: 600; text-transform: uppercase; }
.product-back a { position: relative; isolation: isolate; display: inline-flex; align-items: center; gap: 18px; overflow: hidden; padding: 12px 18px; font-family: var(--display); font-size: clamp(28px, 4vw, 50px); font-weight: 700; text-transform: uppercase; transition: color .35s ease, transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease; }
.product-back a::before { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--black); transform: scaleX(0); transform-origin: right center; transition: transform .4s cubic-bezier(.2,.8,.2,1); }
.product-back a b { display: inline-block; transition: transform .35s cubic-bezier(.2,.8,.2,1); }
.product-back a:hover { color: var(--white); transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0,0,0,.18); }
.product-back a:hover::before { transform: scaleX(1); transform-origin: left center; }
.product-back a:hover b { transform: translateX(7px); }
.gallery-lightbox { position: fixed; z-index: 300; inset: 0; display: grid; place-items: center; padding: 50px; background: rgba(0,0,0,.94); opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; }
.gallery-lightbox.is-open { opacity: 1; visibility: visible; }
.gallery-lightbox__content { display: flex; flex-direction: column; align-items: center; gap: 24px; max-width: min(1100px, 88vw); max-height: calc(100vh - 70px); }
.gallery-lightbox__content > img { display: block; max-width: 100%; max-height: calc(100vh - 190px); width: auto; height: auto; object-fit: contain; }
.gallery-lightbox__close { position: absolute; z-index: 2; top: 20px; right: 24px; width: 48px; height: 48px; border: 1px solid #666; background: var(--black); color: var(--white); font-size: 28px; cursor: pointer; }
.gallery-lightbox__arrow { position: absolute; z-index: 2; top: 50%; width: 46px; height: 46px; border: 1px solid #666; background: rgba(0,0,0,.75); color: var(--white); font-size: 22px; cursor: pointer; transform: translateY(-50%); }
.gallery-lightbox__arrow:hover, .gallery-lightbox__close:hover { border-color: var(--accent); color: var(--accent); }
.gallery-lightbox__arrow--prev { left: 24px; }
.gallery-lightbox__arrow--next { right: 24px; }
.gallery-lightbox__thumbs { display: flex; justify-content: center; gap: 10px; max-width: 88vw; overflow-x: auto; padding: 4px; }
.gallery-lightbox__thumbs button { flex: 0 0 76px; height: 60px; padding: 4px; border: 1px solid #555; background: rgba(255,255,255,.08); cursor: pointer; }
.gallery-lightbox__thumbs button.is-active { border-color: var(--accent); }
.gallery-lightbox__thumbs img { display: block; width: 100%; height: 100%; object-fit: contain; }
body.lightbox-open { overflow: hidden; }

.story-hero, .contact-hero { padding: 130px 0; background: var(--black); color: var(--white); }
.story-hero__grid, .contact-hero__grid { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 90px; }
.story-hero h1, .contact-hero h1 { max-width: 900px; margin: 18px 0 0; font-family: var(--display); font-size: clamp(62px, 8vw, 116px); line-height: .84; letter-spacing: -.045em; text-transform: uppercase; }
.story-hero h1 em, .contact-hero h1 em { color: var(--clio); font-style: normal; }
.story-hero__copy { padding: 30px 0; border-top: 1px solid #444; }
.story-hero__copy span { color: var(--clio); font-family: var(--display); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.story-hero__copy p { margin: 18px 0 0; color: #aaa; font-size: 17px; line-height: 1.8; }
.story-values { padding: 100px 0; background: var(--soft); }
.story-values__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #ccc; }
.story-values article { min-height: 330px; padding: 42px; background: var(--white); }
.story-values article > span { color: var(--clio); font-family: var(--display); font-weight: 700; }
.story-values h2 { margin: 70px 0 14px; font-family: var(--display); font-size: 36px; text-transform: uppercase; }
.story-values p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.story-banner { padding: 120px 0; background: var(--clio); color: var(--white); }
.story-banner h2 { margin: 18px 0; font-family: var(--display); font-size: clamp(60px, 8vw, 110px); line-height: .82; text-transform: uppercase; }
.story-banner p { margin: 0 0 30px; color: rgba(255,255,255,.76); font-size: 18px; }
.contact-hero { background-image: radial-gradient(circle at 75% 30%, rgba(214,31,44,.22), transparent 34%); }
.contact-card { position: relative; padding: 45px; background: var(--white); color: var(--ink); }
.contact-card__number { position: absolute; top: 22px; right: 24px; color: #ddd; font-family: var(--display); font-size: 54px; font-weight: 700; }
.contact-card small { color: var(--clio); font-family: var(--display); font-weight: 700; letter-spacing: .13em; }
.contact-card h2 { margin: 42px 0 15px; font-family: var(--display); font-size: 38px; line-height: .95; text-transform: uppercase; }
.contact-card p { color: var(--muted); font-size: 14px; line-height: 1.7; }
.contact-card a { display: flex; justify-content: space-between; margin-top: 35px; padding-top: 18px; border-top: 1px solid var(--line); font-family: var(--display); font-size: 18px; font-weight: 700; }
.contact-options { padding: 100px 0; }
.contact-options__grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 18px; align-items: stretch; }
.contact-options h2 { max-width: 500px; margin: 14px 0 0; font-family: var(--display); font-size: 48px; line-height: .95; text-transform: uppercase; }
.contact-option { min-height: 190px; display: flex; align-items: flex-end; justify-content: space-between; padding: 28px; background: var(--soft); font-family: var(--display); font-size: 23px; font-weight: 700; text-transform: uppercase; transition: background .25s ease, color .25s ease; }
.contact-option:hover { background: var(--black); color: var(--white); }

.site-footer { background: #0a0a0a; color: var(--white); }
.footer-main { display: grid; grid-template-columns: 1.3fr .65fr .65fr 1.1fr; gap: 60px; padding: 90px 0 70px; }
.footer-brand img { width: 120px; margin-bottom: 25px; }
.footer-brand p { max-width: 330px; color: #777; font-size: 13px; line-height: 1.7; }
.footer-email { display: inline-block; margin-top: 14px; border-bottom: 1px solid #555; font-family: var(--display); font-weight: 700; }
.footer-column h2 { margin: 0 0 22px; color: #777; font-family: var(--display); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.footer-column a { display: block; margin: 11px 0; color: #bbb; font-family: var(--display); font-size: 14px; font-weight: 600; text-transform: uppercase; }
.footer-column a:hover { color: var(--white); }
.footer-cta { padding-left: 45px; border-left: 1px solid #333; }
.footer-cta h2 { margin: 13px 0 25px; font-family: var(--display); font-size: 34px; line-height: .95; text-transform: uppercase; }
.footer-bottom { min-height: 65px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid #242424; color: #666; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   FILTROS DE CATÁLOGO (responsive)
   ========================================================================== */
.catalog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 42px;
  align-items: start;
}

.catalog-layout > .catalog-main:only-child {
  grid-column: 1 / -1;
}

.filter-sidebar {
  position: sticky;
  top: 110px;
  max-height: calc(100vh - 130px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.filter-sidebar__toggle {
  display: none;
  width: 100%;
  padding: 16px 20px;
  background: var(--white);
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-align: left;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
}

.filter-sidebar__toggle b {
  font-size: 22px;
  font-weight: 300;
  color: var(--accent);
}

.filter-sidebar__panel {
  padding: 24px;
  overflow-y: auto;
  min-height: 0;
}

.filter-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 0;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-label {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
}

.filter-select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23333' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.filter-select:hover {
  border-color: #bbb;
}

.filter-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(214,31,44,.08);
}

.filter-select option {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  padding: 8px 12px;
  color: var(--ink);
}

/* Custom Select Component */
.custom-select {
  position: relative;
  width: 100%;
}

.custom-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.custom-select__trigger:hover {
  border-color: #aaa;
}

.custom-select__trigger svg {
  flex-shrink: 0;
  margin-left: 10px;
  color: #888;
  transition: transform .25s ease;
}

.custom-select.is-open .custom-select__trigger {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(214,31,44,.08);
}

.custom-select.is-open .custom-select__trigger svg {
  transform: rotate(180deg);
}

.custom-select__dropdown {
  display: none;
  position: absolute;
  z-index: 100;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  max-height: 280px;
  overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  padding: 6px 0;
}

.custom-select.is-open .custom-select__dropdown {
  display: block;
  animation: customSelectFadeIn .18s ease;
}

@keyframes customSelectFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.custom-select__option {
  padding: 10px 16px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 400;
  color: var(--ink);
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}

.custom-select__option:hover {
  background: #f5f5f5;
}

.custom-select__option.is-selected {
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
}

.custom-select__option.is-hidden {
  display: none;
}

.filter-tags {
  display: block;
  max-height: 360px;
  overflow-y: auto;
  padding-right: 4px;
}

@media (min-width: 1200px) {
  .filter-tags {
    max-height: 460px;
  }
}

.filter-tags-search {
  width: 100%;
  padding: 10px 34px 10px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  font-size: 13px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Ccircle cx='11' cy='11' r='6.5' fill='none' stroke='%23999' stroke-width='2'/%3E%3Cpath d='m16 16 4 4' fill='none' stroke='%23999' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.filter-tags-search:not(:placeholder-shown) {
  background-image: none;
}

.filter-tags-search:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(214,31,44,.08);
}

.filter-tags-empty {
  display: block;
  padding: 10px 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.filter-tag-group {
  display: block;
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 1px solid var(--line);
}

.filter-tag-group:last-child {
  border-bottom: 0;
}

.filter-tag-group__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  margin: 0;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  user-select: none;
  transition: color .2s ease;
}

.filter-tag-group__title:hover {
  color: var(--accent);
}

.filter-tag-group__title::after {
  content: '+';
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: #999;
  transition: transform .25s ease;
}

.filter-tag-group.is-expanded .filter-tag-group__title::after {
  content: '−';
}

.filter-tag-group__tags {
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 14px;
}

.filter-tag-group.is-expanded .filter-tag-group__tags {
  display: flex;
}

.filter-tag.is-filter-hidden,
.filter-tag-group.is-filter-hidden {
  display: none !important;
}

.filter-tag {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  transition: all .2s ease;
  background: var(--white);
}

.filter-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.filter-tag input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.filter-tag.is-checked {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

[data-brand="gamemax"] .filter-tag.is-checked {
  color: var(--black);
}

.filter-tag-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 10px;
  background: var(--line);
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  line-height: 20px;
}

.filter-tag.is-checked .filter-tag-count {
  background: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

[data-brand="gamemax"] .filter-tag.is-checked .filter-tag-count {
  background: rgba(0, 0, 0, 0.15);
  color: var(--black);
}

.filter-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  position: sticky;
  bottom: -24px;
  margin: 0 -24px -24px;
  padding: 12px 24px 24px;
  background: var(--white);
}

.filter-actions .button {
  width: 100%;
  min-height: 46px;
  font-size: 13px;
  gap: 8px;
}

.filter-clear {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.filter-clear:hover {
  color: var(--accent);
}

@media (max-width: 1180px) {
  :root { --shell: min(100% - 40px, 1100px); }
  .site-header__inner { grid-template-columns: 230px 1fr 250px; }
  .brand-lockup { gap: 14px; }
  .brand-lockup img { height: 28px; }
  .header-search-form { width: 240px; }
  .desktop-nav { gap: 20px; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .statement__inner { grid-template-columns: 1fr; }
  .statement__inner .button { justify-self: start; }
  .footer-main { grid-template-columns: 1.3fr .7fr .7fr; }
  .footer-cta { grid-column: 1 / -1; padding: 40px 0 0; border-left: 0; border-top: 1px solid #333; }
}

@media (max-width: 1100px) {
  :root { --shell: calc(100% - 40px); }
  .site-header__inner { grid-template-columns: 215px 1fr auto; }
  .brand-lockup img { height: 26px; }
  .desktop-nav { gap: 14px; }
  .product-detail__grid { grid-template-columns: 1fr; gap: 25px; }
  .product-gallery__stage { height: clamp(380px, 55vw, 520px); aspect-ratio: auto; }
  .product-gallery__slide { padding: 0; }
  .product-gallery__slide img { display: block; max-width: calc(100% - 120px); max-height: calc(100% - 60px); width: auto; height: auto; object-fit: contain; transform: translateY(-7%); }
  .product-summary { position: static; padding: 20px; }
}

@media (max-width: 1030px) {
  :root { --shell: calc(100% - 32px); }
  .top-strip { display: none; }
  .site-header__inner { height: 70px; grid-template-columns: 1fr auto; }
  .brand-lockup { gap: 12px; }
  .brand-lockup img { height: 24px; }
  .desktop-nav { display: none; }
  .header-actions { grid-column: 2; }
  .header-search-form { display: none; }
  .header-actions .search-toggle { display: grid; }
  .menu-toggle { display: block; }
  .menu-toggle.is-open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }
  .mobile-panel { position: fixed; top: 70px; right: 0; bottom: 0; width: min(420px, 100%); display: block; padding: 22px; overflow-y: auto; background: #111; transform: translateX(100%); transition: transform .3s ease; }
  .mobile-panel.is-open { transform: translateX(0); }
  .mobile-panel > a, .mobile-submenu-toggle { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 18px 4px; border: 0; border-bottom: 1px solid #333; background: none; color: var(--white); font-family: var(--display); font-size: 18px; font-weight: 700; text-align: left; text-transform: uppercase; }
  .mobile-submenu { display: none; padding: 8px 0 14px 15px; }
  .mobile-submenu.is-open { display: block; }
  .mobile-submenu a { display: block; padding: 9px 0; color: #999; font-size: 13px; }
  .nav-search__form { height: 75px; }
  .hero { min-height: auto; }
  .hero__backdrop { background: var(--black); }
  .hero__grid { grid-template-columns: 1fr; padding-top: 40px; }
  .hero__content { padding: 35px 0 0; }
  .hero__visual { height: 440px; }
  .hero__visual > img { height: 360px; }
  .hero-product { right: 0; bottom: 18px; }
  .section { padding: 80px 0; }
  .category-rail { grid-auto-columns: minmax(260px, 43%); }
  .category-tabs { top: 70px; }
  .category-tabs__toggle { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 15px 0; border: 0; background: transparent; color: var(--ink); font-family: var(--display); font-size: 14px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
  .category-tabs__toggle b { color: var(--accent); font-size: 22px; font-weight: 400; }
  .category-tabs__toggle[aria-expanded="true"] b { transform: rotate(45deg); }
  .category-tabs__rail { display: none; width: 100%; padding: 8px 0 14px; border-top: 1px solid var(--line); overflow-x: visible; }
  .category-tabs__rail.is-open { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 20px; }
  .category-tabs a { min-width: 0; padding: 12px 0; font-size: 13px; }
  .brand-panel { min-height: 450px; padding: 60px 35px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-detail__grid { grid-template-columns: 1fr; gap: 25px; }
  .product-gallery__thumbs { padding-inline: 20px; }
  .product-summary { position: static; padding-inline: 20px; }
  .gallery-lightbox__arrow { display: none; }
  .gallery-lightbox__content > img { touch-action: pan-y; }
  .product-description-grid { grid-template-columns: minmax(0, 1fr); gap: 45px; min-width: 0; }
  .product-description-grid > * { min-width: 0; max-width: 100%; }
  .product-description-tags { display: none; }
  .story-hero__grid, .contact-hero__grid { grid-template-columns: 1fr; gap: 55px; }
  .story-values__grid { grid-template-columns: 1fr; }
  .story-values article { min-height: 250px; }
  .story-values h2 { margin-top: 40px; }
  .contact-options__grid { grid-template-columns: 1fr 1fr; }
  .contact-options__grid > div:first-child { grid-column: 1 / -1; margin-bottom: 25px; }
  .footer-main { grid-template-columns: 1.2fr 1fr 1fr; gap: 35px; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 24px); scrollbar-width: none; }
  html::-webkit-scrollbar { display: none; }
  body.modern-site { width: auto; min-width: 0; }
  .brand-lockup { width: max-content; gap: 9px; }
  .brand-lockup img { height: 20px; }
  .search-toggle { width: 40px; height: 40px; }
  .menu-toggle { width: 40px; height: 40px; }
  .nav-search__form { grid-template-columns: 22px 1fr 44px; gap: 10px; }
  .nav-search__form input { font-size: 14px; }
  .nav-search__form button { width: 44px; min-width: 0; padding: 0; font-size: 0; }
  .nav-search__form button::after { content: "→"; font-size: 18px; }
  .hero__grid { gap: 0; }
  .hero h1 { font-size: clamp(53px, 17vw, 75px); }
  .hero__content > p { font-size: 14px; }
  .hero__actions { display: grid; grid-template-columns: 1fr; }
  .hero__visual { height: 350px; }
  .hero__visual > img { height: 280px; }
  .hero-product { width: 230px; }
  .hero__ticker { height: 60px; }
  .hero__ticker div { font-size: 18px; }
  .section { padding: 65px 0; }
  .section-heading { align-items: end; }
  .section-heading h2 { font-size: 39px; }
  .section-heading > .text-link { display: none; }
  .slider-controls button { width: 43px; height: 43px; }
  .category-rail { grid-auto-columns: 82%; }
  .category-card { height: 390px; }
  .brand-split { grid-template-columns: 1fr; }
  .brand-panel { min-height: 420px; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 30px 10px; }
  .product-card__media { height: 220px; }
  .product-card__media img { padding: 12px; }
  .product-card__action { display: none; }
  .product-card__content h3 { font-size: 16px; }
  .product-card__brand { top: 8px; left: 8px; }
  .statement { padding: 75px 0; }
  .statement__inner { gap: 25px; }
  .statement p { font-size: 39px; }
  .page-hero { padding: 70px 0 60px; }
  .page-hero h1 { font-size: 52px; }
  .search-hero-form { height: 62px; }
  .catalog-crosslink { min-height: 62px; padding: 0 18px; }
  .catalog-crosslink span { font-size: 10px; }
  .catalog-crosslink strong { font-size: 20px; }
  .search-hero-form input { padding: 0 16px; font-size: 14px; }
  .search-hero-form button { min-width: 64px; }
  .search-hero-form button span { display: none; }
  .results-bar { align-items: flex-start; flex-direction: column; gap: 12px; }
  .results-bar h2 { font-size: 37px; }
  .pagination { gap: 8px; }
  .pagination a { padding: 10px; font-size: 11px; }
  .category-hero { min-height: 330px; }
  .category-hero::before { background-size: 28px 28px; transform: perspective(420px) rotateX(55deg) scale(1.7) translateY(18%); }
  .category-hero__brand-bg { font-size: clamp(55px, 18vw, 120px); letter-spacing: .04em; }
  .category-hero__content { padding-bottom: 32px; }
  .category-hero h1 { font-size: 52px; }
  .category-hero p { max-width: 430px; margin-bottom: 18px; }
  .category-tabs { top: 70px; }
  .category-tabs__rail { gap: 20px; }
  .product-detail { padding: 20px 14px 70px; }
  .product-detail > .shell { width: 100%; }
  .product-detail__breadcrumbs { padding-bottom: 18px; font-size: 9px; }
  .product-gallery__stage { height: auto; aspect-ratio: 1 / 1; }
  .product-gallery__slide { padding: 0; }
  .product-gallery__slide img { max-width: calc(100% - 24px); max-height: calc(100% - 24px); transform: none; }
  .product-gallery__thumbs { gap: 7px; padding-inline: 0; }
  .product-gallery__thumbs button { flex-basis: 70px; height: 62px; }
  .product-summary { padding: 12px 0 0; }
  .product-summary h1 { font-size: clamp(38px, 12vw, 52px); }
  .product-summary__rule { margin: 22px 0; }
  .product-summary .button--brand { width: 100%; }
  .product-description-copy { min-width: 0; font-size: 15px; }
  .product-description-copy table { display: block; max-width: 100%; overflow-x: auto; }
  .product-summary h1 { overflow-wrap: anywhere; }
  .product-description-section { padding: 75px 0; }
  .product-description-grid h2 { font-size: 48px; }
  .product-back .shell { align-items: flex-start; flex-direction: column; }
  .gallery-lightbox { padding: 20px; }
  .story-hero, .contact-hero { padding: 80px 0; }
  .story-hero h1, .contact-hero h1 { font-size: 58px; }
  .story-values { padding: 65px 0; }
  .story-banner { padding: 80px 0; }
  .story-banner h2 { font-size: 58px; }
  .contact-card { padding: 30px 24px; }
  .contact-options { padding: 65px 0; }
  .contact-options__grid { grid-template-columns: 1fr; }
  .contact-options__grid > div:first-child { grid-column: auto; }
  .footer-main { grid-template-columns: 1fr 1fr; padding: 70px 0 50px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-cta { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 5px; }
}

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

/* Responsive: Filtros de catálogo */
@media (max-width: 991px) {
  .catalog-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .filter-sidebar {
    position: static;
  }
  .filter-sidebar__toggle {
    display: flex;
  }
  .filter-sidebar__panel {
    display: none;
    padding: 20px;
    border-top: 1px solid var(--line);
  }
  .filter-sidebar__panel.is-open {
    display: block;
  }
  .filter-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 24px;
  }
  .filter-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
  }
  .filter-actions .button {
    width: auto;
    min-height: 44px;
  }
  .filter-tags {
    max-height: 140px;
    overflow-y: auto;
  }
}

@media (max-width: 640px) {
  .filter-form {
    grid-template-columns: 1fr;
  }
  .filter-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .filter-actions .button {
    width: 100%;
  }
  .filter-sidebar__toggle {
    padding: 14px 16px;
  }
  .filter-sidebar__panel {
    padding: 16px;
  }
}
