:root {
  --ink: #0b0d0f;
  --ink-soft: #15181b;
  --graphite: #24282c;
  --orange: #f36a16;
  --orange-bright: #ff8640;
  --paper: #f3f3ef;
  --white: #ffffff;
  --muted: #70777d;
  --muted-light: #a9afb3;
  --line: rgba(11, 13, 15, .14);
  --line-dark: rgba(255, 255, 255, .16);
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "DM Sans", "Segoe UI", Arial, sans-serif;
  --shadow: 0 22px 50px rgba(11, 13, 15, .16);
  --radius: 3px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--orange) var(--ink);
  scrollbar-width: thin;
}

html::-webkit-scrollbar { width: 10px; }
html::-webkit-scrollbar-track { background: var(--ink); }
html::-webkit-scrollbar-thumb {
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--orange);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  accent-color: var(--orange);
}

body,
button,
input { -webkit-font-smoothing: antialiased; }

body::selection,
body *::selection { background: var(--orange); color: var(--white); }

a {
  color: inherit;
  text-decoration-thickness: .08em;
  text-underline-offset: .2em;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--orange-bright);
  outline-offset: 4px;
}

button,
input { font: inherit; }

input { caret-color: var(--orange); }

button { cursor: pointer; }

img { display: block; max-width: 100%; }

.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;
}

.site-shell { overflow: hidden; }

.container {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
}

.header-inner {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.brand {
  display: inline-flex;
  min-width: 152px;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: 150px;
  max-height: 52px;
  object-fit: contain;
  object-position: left center;
}

.brand-fallback,
.footer-brand {
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1;
}

.brand-fallback { display: none; }

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 3vw, 3rem);
  margin-left: auto;
}

.main-nav a,
.header-call {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
}

.main-nav a { color: rgba(255, 255, 255, .73); transition: color .2s ease; }
.main-nav a:hover { color: var(--orange-bright); }

.header-call {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .72rem .9rem;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: var(--radius);
  transition: border-color .2s ease, background-color .2s ease;
}

.header-call:hover { border-color: var(--orange); background: rgba(243, 106, 22, .12); }

.header-actions {
  display: flex;
  align-items: center;
  gap: .48rem;
  margin-left: clamp(.7rem, 1.8vw, 1.5rem);
}

.header-session,
.header-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  color: var(--white);
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.header-session {
  padding: 0 .85rem;
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-cart { width: 2.4rem; }
.header-cart svg { width: 1.05rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.header-session:hover,
.header-cart:hover { border-color: var(--orange); background: var(--orange); color: var(--ink); }

.header-call svg,
.search-field svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-section {
  position: relative;
  display: flex;
  min-height: 790px;
  align-items: center;
  background: var(--ink);
  color: var(--white);
}

.hero-section::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 52%;
  background: rgba(11, 13, 15, .46);
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(440px, 1.08fr);
  gap: clamp(3rem, 7vw, 7.5rem);
  align-items: center;
  padding-top: 7rem;
  padding-bottom: 3.4rem;
}

.hero-copy { position: relative; z-index: 2; }

.section-tag {
  margin: 0 0 1.4rem;
  color: var(--orange);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .19em;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
h3,
p { margin-top: 0; }

h1,
h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: .87;
  text-transform: uppercase;
}

h1 {
  max-width: 660px;
  font-size: clamp(4.1rem, 7.5vw, 7.5rem);
}

h2 { font-size: clamp(3.3rem, 6.4vw, 6.1rem); }

h1 em,
h2 em {
  color: var(--orange);
  font-style: normal;
}

.hero-lede {
  max-width: 590px;
  margin: 2.2rem 0 0;
  color: rgba(255, 255, 255, .7);
  font-size: 1.03rem;
  line-height: 1.75;
}

.hero-actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .8rem;
  margin-top: 2.15rem;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  padding: .9rem 1.35rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-orange { background: var(--orange); color: var(--white); }
.button-orange:hover { background: var(--orange-bright); color: var(--white); }
.button-ghost { border-color: rgba(255, 255, 255, .34); color: var(--white); }
.button-ghost:hover { border-color: var(--orange); color: var(--orange-bright); }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover { background: var(--graphite); color: var(--white); }

.hero-footnote {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-top: 5rem;
  color: rgba(255, 255, 255, .45);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(243, 106, 22, .14);
}

.inventory-board {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  padding: 1.55rem;
  border: 1px solid rgba(255, 255, 255, .32);
  background: rgba(15, 18, 20, .86) url("../media/arsenio-refacciones-hero.webp") center / cover;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .35);
}

.inventory-board::before {
  position: absolute;
  inset: 0;
  background: rgba(11, 13, 15, .84);
  content: "";
}

.inventory-board > * { position: relative; z-index: 1; }

.board-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, .52);
  font-family: var(--display);
  font-size: .71rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.board-search-wrap { padding-top: 2.15rem; }

.board-search-wrap label {
  display: block;
  margin-bottom: .85rem;
  color: var(--white);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1;
  text-transform: uppercase;
}

.search-field {
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: .75rem;
  padding: 0 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

.search-field-large { border-color: var(--orange); }

.search-field input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: .88rem;
}

.search-field input::placeholder { color: #8c9297; }

.search-field:focus-within {
  border-color: var(--orange);
  outline: 3px solid rgba(255, 100, 8, .24);
  outline-offset: 3px;
  box-shadow: 0 10px 24px rgba(10, 10, 11, .12);
}

kbd {
  min-width: 1.6rem;
  padding: .12rem .35rem;
  border: 1px solid #cdd0d1;
  border-bottom-width: 2px;
  border-radius: 2px;
  color: #737a7f;
  font-family: var(--body);
  font-size: .65rem;
  text-align: center;
}

.board-signal {
  display: flex;
  align-items: flex-end;
  gap: 1.1rem;
  padding: 2.5rem 0 1.9rem;
}

.board-signal strong {
  font-family: var(--display);
  font-size: clamp(5.3rem, 8vw, 7.7rem);
  font-weight: 900;
  letter-spacing: -.07em;
  line-height: .72;
}

.board-signal span {
  padding-bottom: .25rem;
  color: rgba(255, 255, 255, .58);
  font-size: .72rem;
  line-height: 1.5;
  text-transform: uppercase;
}

.board-rule { height: 1px; background: var(--line-dark); }

.board-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-left: 1px solid var(--line-dark);
}

.board-mini-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: 1.05rem .8rem;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, .7);
  font-family: var(--display);
  font-size: .87rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease;
}

.board-mini-grid a:hover { background: rgba(243, 106, 22, .17); color: var(--white); }
.board-mini-grid b { color: var(--orange); font-size: 1rem; }

.board-image {
  position: absolute !important;
  right: -14%;
  bottom: -24%;
  width: 62%;
  height: 32%;
  opacity: .2;
  transform: rotate(-7deg);
  background: url("../media/arsenio-refacciones-hero.webp") center / cover;
  mix-blend-mode: screen;
}

.category-rail,
.reviews-section { background: var(--ink-soft); color: var(--white); }

.category-rail { padding: 7.5rem 0 8rem; }

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3.6rem;
}

.section-heading-dark .section-intro { color: rgba(255, 255, 255, .58); }

.section-intro {
  max-width: 370px;
  margin: 0 0 .3rem;
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.75;
}

.category-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.category-item {
  position: relative;
  display: grid;
  min-height: 142px;
  grid-template-columns: 42px 1fr auto 28px;
  align-items: end;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  color: var(--white);
  text-decoration: none;
  transition: background-color .22s ease, color .22s ease;
}

.category-item:hover,
.category-item.is-active { background: #202529; }

.category-index,
.category-count { align-self: start; color: rgba(255, 255, 255, .38); font-size: .7rem; font-weight: 700; letter-spacing: .12em; }
.category-name { font-family: var(--display); font-size: clamp(1.55rem, 3vw, 2.55rem); font-weight: 800; letter-spacing: -.02em; line-height: .92; text-transform: uppercase; }
.category-count { color: var(--orange); font-size: .73rem; text-align: right; }
.category-arrow { color: var(--orange); font-size: 1.5rem; line-height: .7; text-align: right; }

.catalog-section { padding: 8.5rem 0 9rem; background: var(--paper); }

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1rem;
}

.catalog-toolbar .search-field { width: min(100%, 520px); }

.result-count {
  margin: 0;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: 2.4rem;
}

.filter-button {
  min-height: 36px;
  padding: .45rem .75rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: transparent;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.filter-button:hover,
.filter-button.is-active { border-color: var(--ink); background: var(--ink); color: var(--white); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: var(--white);
  text-decoration: none;
  transition: background-color .2s ease;
}

.product-card:hover { background: #fbfbf8; }

.product-media {
  position: relative;
  display: grid;
  min-height: 190px;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #e8e8e3;
}

.product-media::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(135deg, rgba(11, 13, 15, .025) 25%, transparent 25%, transparent 50%, rgba(11, 13, 15, .025) 50%, rgba(11, 13, 15, .025) 75%, transparent 75%);
  background-size: 18px 18px;
  content: "";
}

.product-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 190px;
  object-fit: contain;
  padding: 1.2rem;
  transition: transform .3s ease;
}

.product-card:hover .product-media img { transform: scale(1.05); }

.product-fallback {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  height: 100%;
  padding: 2rem;
  place-items: center;
}
.product-media img.product-fallback-logo,
.ebike-media img.product-fallback-logo { display: block; width: min(5.3rem, 44%); height: auto; padding: 0; object-fit: contain; filter: drop-shadow(0 8px 13px rgba(10, 10, 11, .12)); transform: none; transition: none; }

.availability {
  position: absolute;
  z-index: 2;
  top: .75rem;
  left: .75rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .5rem;
  background: var(--ink);
  color: var(--white);
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.availability::before { width: 5px; height: 5px; border-radius: 50%; background: var(--orange); content: ""; }

.product-body { display: flex; flex: 1; flex-direction: column; padding: 1.25rem 1.25rem 1.35rem; }

.product-family {
  margin-bottom: .65rem;
  color: var(--orange);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.product-name {
  min-height: 3.2em;
  margin: 0;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: .98;
  text-transform: uppercase;
}

.product-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.4rem;
  padding-top: .9rem;
  border-top: 1px solid var(--line);
}

.product-price { font-size: 1.1rem; font-weight: 700; }
.product-stock { color: var(--muted); font-size: .68rem; text-align: right; }

.empty-state {
  padding: 5rem 1rem;
  border: 1px solid var(--line);
  background: var(--white);
  text-align: center;
}

.empty-mark { color: var(--orange); font-family: var(--display); font-size: 4rem; font-weight: 900; }
.empty-state h3 { margin: .8rem 0 .4rem; font-family: var(--display); font-size: 2.2rem; text-transform: uppercase; }
.empty-state p { margin-bottom: 1.6rem; color: var(--muted); }

.help-section { padding: 8.5rem 0; background: var(--orange); color: var(--ink); }

.help-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(260px, .72fr) minmax(280px, .95fr);
  gap: 3rem;
  align-items: end;
}

.help-section .section-tag { color: var(--ink); }
.help-section h2 em { color: var(--white); }
.help-copy > p:not(.section-tag) { max-width: 420px; margin: 2rem 0 0; font-size: .98rem; line-height: 1.75; }
.help-copy .button { margin-top: 2rem; }

.steps-list { border-top: 1px solid rgba(11, 13, 15, .3); }

.step-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: .8rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(11, 13, 15, .3);
}

.step-item > span { font-family: var(--display); font-size: 1rem; font-weight: 700; }
.step-item strong { font-family: var(--display); font-size: 1.35rem; line-height: 1; text-transform: uppercase; }
.step-item p { margin: .35rem 0 0; font-size: .78rem; line-height: 1.45; }

.help-image {
  min-height: 420px;
  background: url("../media/arsenio-asesoria-refacciones.webp") center / cover;
  filter: grayscale(.35) contrast(1.05);
}

.reviews-section { padding: 8.5rem 0; }

.review-score {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  justify-content: flex-end;
  column-gap: .45rem;
  max-width: 250px;
  color: var(--orange);
}

.review-score img { width: 5.5rem; height: 6rem; object-fit: contain; }
.review-score small { width: 100%; margin-top: .8rem; color: rgba(255, 255, 255, .48); font-size: .68rem; line-height: 1.5; text-align: right; }

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-dark); }

.review-item { min-height: 235px; margin: 0; padding: 1.7rem 1.7rem 1.7rem 0; border-right: 1px solid var(--line-dark); }
.review-item + .review-item { padding-left: 1.7rem; }
.review-item:last-child { padding-right: 0; border-right: 0; }
.stars { color: var(--orange); font-size: .75rem; letter-spacing: .1em; }
.review-item blockquote { max-width: 260px; margin: 2rem 0 2.5rem; font-family: var(--display); font-size: 2rem; font-weight: 700; letter-spacing: -.01em; line-height: .98; text-transform: uppercase; }
.review-item figcaption { color: rgba(255, 255, 255, .42); font-size: .66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.location-section { padding: 8.5rem 0; background: var(--paper); }

.location-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr); gap: clamp(3rem, 8vw, 8rem); align-items: center; }

.location-map {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #deded8;
}

.map-grid {
  position: absolute;
  inset: -20%;
  opacity: .65;
  transform: rotate(-7deg);
  background-image: linear-gradient(22deg, transparent 46%, rgba(255, 255, 255, .85) 47%, rgba(255, 255, 255, .85) 50%, transparent 51%), linear-gradient(109deg, transparent 47%, rgba(255, 255, 255, .75) 48%, rgba(255, 255, 255, .75) 51%, transparent 52%), linear-gradient(155deg, transparent 48%, rgba(159, 164, 158, .55) 49%, rgba(159, 164, 158, .55) 52%, transparent 53%);
  background-size: 155px 115px, 205px 180px, 260px 220px;
}

.map-pin {
  position: absolute;
  top: 47%;
  left: 52%;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 8px solid rgba(243, 106, 22, .22);
  border-radius: 50% 50% 50% 0;
  background: var(--orange);
  box-shadow: 0 8px 18px rgba(11, 13, 15, .18);
  transform: rotate(-45deg);
}

.map-pin span { width: 9px; height: 9px; border-radius: 50%; background: var(--white); }
.map-label { position: absolute; color: rgba(11, 13, 15, .56); font-family: var(--display); font-size: .75rem; font-weight: 700; letter-spacing: .12em; }
.map-label-one { top: 26%; left: 18%; }
.map-label-two { right: 12%; bottom: 28%; }
.map-coordinate { position: absolute; right: 1rem; bottom: 1rem; color: rgba(11, 13, 15, .45); font-size: .64rem; letter-spacing: .1em; }

.location-copy h2 { max-width: 410px; }
.address-block { margin-top: 2.4rem; padding-left: 1.2rem; border-left: 2px solid var(--orange); }
.address-block strong { font-family: var(--display); font-size: 1.7rem; text-transform: uppercase; }
.address-block p { margin: .45rem 0 0; color: var(--muted); line-height: 1.7; }
.address-block .location-note { margin-top: .8rem; color: #9a6f57; font-size: .7rem; line-height: 1.55; }
.text-link { color: var(--ink); font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; transition: color .2s ease; }
.text-link:hover { color: var(--orange); }
.text-link span { display: inline-block; transition: transform .24s cubic-bezier(.16, 1, .3, 1); }
.text-link:hover span,
.text-link:focus-visible span { transform: translateX(.2rem); }
.hours { margin-top: 2.4rem; color: var(--muted); font-size: .75rem; line-height: 1.65; }
.hours strong { color: var(--ink); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; }

.site-footer { background: var(--ink); color: var(--white); }
.footer-main { display: grid; grid-template-columns: 1fr auto 1fr; gap: 3rem; padding-top: 4.5rem; padding-bottom: 4.5rem; }
.footer-brand { display: inline-block; color: var(--white); text-decoration: none; }
.footer-brand span { color: var(--orange); }
.footer-main p { margin: 1rem 0 0; color: rgba(255, 255, 255, .5); font-size: .8rem; line-height: 1.7; }
.footer-links { display: flex; flex-direction: column; gap: .75rem; }
.footer-links a,
.footer-contact a { color: rgba(255, 255, 255, .65); font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.footer-links a:hover,
.footer-contact a:hover { color: var(--orange); }
.footer-contact { display: flex; flex-direction: column; align-items: flex-end; gap: .75rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; padding-top: 1rem; padding-bottom: 1rem; border-top: 1px solid var(--line-dark); color: rgba(255, 255, 255, .35); font-size: .64rem; letter-spacing: .08em; text-transform: uppercase; }

@media (max-width: 1040px) {
  .hero-grid { grid-template-columns: minmax(0, .9fr) minmax(360px, 1fr); gap: 3rem; }
  .inventory-board { min-height: 530px; }
  .help-grid { grid-template-columns: minmax(0, 1fr) minmax(250px, .8fr); }
  .help-image { grid-column: 1 / -1; min-height: 300px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 36px, 620px); }
  .header-inner { min-height: 72px; }
  .brand { min-width: 120px; }
  .brand-logo { width: 34px; height: 34px; max-height: 34px; }
  .main-nav { display: none; }
  .header-call { margin-left: auto; }
  .hero-section { min-height: auto; }
  .hero-section::after { top: 50%; left: 0; background: rgba(11, 13, 15, .52); }
  .hero-grid { display: block; padding-top: 9.2rem; padding-bottom: 3rem; }
  h1 { font-size: clamp(4rem, 17vw, 6.3rem); }
  h2 { font-size: clamp(3.25rem, 16vw, 5.2rem); }
  .hero-lede { font-size: .95rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-footnote { margin-top: 2rem; }
  .inventory-board { min-height: 520px; margin-top: 3.5rem; }
  .board-signal strong { font-size: 5.5rem; }
  .category-rail,
  .catalog-section,
  .help-section,
  .reviews-section,
  .location-section { padding: 5.5rem 0; }
  .section-heading { display: block; margin-bottom: 2.5rem; }
  .section-intro { margin-top: 1.4rem; }
  .category-list { grid-template-columns: 1fr; }
  .category-item { min-height: 108px; }
  .catalog-toolbar { display: block; }
  .catalog-toolbar .search-field { width: 100%; }
  .result-count { margin-top: 1rem; }
  .filter-row { flex-wrap: nowrap; overflow-x: auto; padding-bottom: .4rem; margin-right: -18px; }
  .filter-button { flex: 0 0 auto; }
  .catalogue-pagination { gap: .3rem; }
  .pagination-tabs { gap: .3rem; }
  .pagination-tab { width: 2.3rem; height: 2.3rem; }
  .pagination-ellipsis { width: 1rem; height: 2.3rem; }
  .catalogue-subcategories { margin-bottom: 1.9rem; }
  .subcategory-level { display: block; }
  .subcategory-level-label { display: block; padding: 0 0 .55rem; }
  .subcategory-list { margin-right: -18px; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .product-media,
  .product-media img { min-height: 145px; height: 145px; }
  .product-body { padding: 1rem; }
  .product-name { min-height: 4.2em; font-size: 1.22rem; }
  .product-meta { display: block; }
  .product-stock { margin-top: .35rem; text-align: left; }
  .help-grid { display: flex; flex-direction: column; align-items: stretch; gap: 2.5rem; }
  .help-image { min-height: 340px; order: 3; }
  .review-score { justify-content: flex-start; margin-top: 2.2rem; }
  .review-score small { text-align: left; }
  .review-grid { grid-template-columns: 1fr; }
  .review-item,
  .review-item + .review-item { min-height: auto; padding: 1.5rem 0; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .review-item:last-child { border-bottom: 0; }
  .review-item blockquote { margin: 1.2rem 0 1.5rem; }
  .location-grid { grid-template-columns: 1fr; gap: 3rem; }
  .location-map { min-height: 350px; }
  .location-map iframe { height: 350px; }
  .location-actions { align-items: flex-start; flex-direction: column; }
  .footer-main { grid-template-columns: 1fr 1fr; padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .footer-contact { grid-column: 1 / -1; align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: .5rem; }
}

@media (max-width: 480px) {
  .container { width: min(100% - 28px, 620px); }
  .header-call { padding: .64rem .65rem; }
  .header-call span { display: none; }
  .inventory-board { padding: 1.15rem; }
  .board-topline { font-size: .6rem; }
  .board-search-wrap label { font-size: 1.65rem; }
  .board-signal { gap: .8rem; }
  .board-signal strong { font-size: 4.7rem; }
  .board-signal span { font-size: .62rem; }
  .board-mini-grid a { font-size: .72rem; }
  .product-grid { grid-template-columns: 1fr; }
  .product-media,
  .product-media img { min-height: 190px; height: 190px; }
  .product-name { min-height: auto; }
}

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

/* Reference-led visual direction: airy editorial mobility catalog. */
:root {
  --ink: #12141b;
  --ink-soft: #ffffff;
  --graphite: #1c5d88;
  --orange: #f45150;
  --orange-bright: #ff6a60;
  --paper: #f6f9fa;
  --white: #ffffff;
  --muted: #6f7880;
  --muted-light: #aab4bb;
  --line: rgba(18, 20, 27, .12);
  --line-dark: rgba(18, 20, 27, .13);
  --sky: #c6edf7;
  --blue: #1f6391;
  --yellow: #f2c34c;
  --display: "Manrope", "Segoe UI", Arial, sans-serif;
  --body: "Manrope", "Segoe UI", Arial, sans-serif;
  --shadow: 0 18px 45px rgba(37, 73, 91, .1);
}

body { background: var(--white); }

.site-header { color: var(--ink); }
.header-inner { border-bottom-color: rgba(18, 20, 27, .12); }
.main-nav a { color: rgba(18, 20, 27, .72); }
.main-nav a:hover { color: var(--orange); }
.header-call { border-color: transparent; background: var(--ink); color: var(--white); border-radius: 999px; }
.header-call:hover { border-color: transparent; background: var(--orange); color: var(--white); }
.brand-fallback { color: var(--ink); }
.brand { min-width: 150px; gap: .55rem; }
.brand-logo { width: 38px; height: 38px; max-height: 38px; padding: 5px; border-radius: 50%; background: var(--ink); object-fit: contain; }
.brand-name { color: var(--ink); font-size: 1.1rem; font-weight: 800; letter-spacing: -.06em; }
.brand-name span { color: var(--orange); }

.section-tag { display: none; }

h1,
h2,
h3,
.board-search-wrap label,
.category-name,
.product-name,
.review-item blockquote,
.step-item strong,
.address-block strong,
.footer-brand {
  font-family: var(--display);
  text-transform: none;
}

h1,
h2 { letter-spacing: -.075em; line-height: .98; }
h1 { max-width: 650px; font-size: clamp(4.1rem, 7.2vw, 7.1rem); }
h2 { font-size: clamp(3.3rem, 6vw, 5.9rem); }
h1 em,
h2 em { font-family: "Caveat", cursive; font-size: 1.13em; font-weight: 600; letter-spacing: -.02em; }

.hero-section { min-height: 800px; background: var(--paper); color: var(--ink); }
.hero-section::after { display: none; }
.hero-grid { grid-template-columns: minmax(0, .83fr) minmax(500px, 1.17fr); gap: clamp(3rem, 5vw, 6.5rem); padding-top: 8.4rem; }
.hero-lede { color: var(--muted); }
.hero-footnote { color: var(--muted); }
.pulse-dot { background: var(--orange); box-shadow: 0 0 0 5px rgba(244, 81, 80, .13); }
.button-orange { background: var(--orange); border-radius: 999px; }
.button-orange:hover { background: var(--orange-bright); }
.button-ghost { border-color: rgba(18, 20, 27, .18); color: var(--ink); border-radius: 999px; }
.button-ghost:hover { border-color: var(--ink); color: var(--ink); }
.button-dark { border-radius: 999px; }

.inventory-board {
  min-height: 600px;
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  background: var(--sky);
  box-shadow: none;
}

.inventory-board::before { display: none; }
.board-topline { border-bottom-color: rgba(18, 20, 27, .14); color: rgba(18, 20, 27, .55); }
.board-search-wrap { max-width: 370px; padding-top: 1.7rem; }
.board-search-wrap label { color: var(--ink); font-size: 1.65rem; font-weight: 800; letter-spacing: -.05em; }
.search-field { border: 1px solid rgba(18, 20, 27, .1); border-radius: 999px; box-shadow: 0 7px 16px rgba(37, 73, 91, .08); }
.search-field-large { border-color: transparent; }
.hero-video {
  position: absolute;
  z-index: 0;
  top: 15%;
  right: -7%;
  width: 98%;
  height: 56%;
  max-width: none;
  mix-blend-mode: multiply;
  transform: rotate(-1deg);
  object-fit: contain;
  border-radius: 22px;
}
.board-signal {
  position: absolute;
  z-index: 2;
  right: 1.2rem;
  bottom: 8.6rem;
  display: block;
  width: 40%;
  min-width: 210px;
  margin: 0;
  padding: 1.15rem 1.25rem;
  border-radius: 18px;
  background: var(--blue);
  color: var(--white);
}
.board-signal strong { display: block; color: var(--white); font-size: 4.3rem; line-height: .8; }
.board-signal span { display: block; padding: .6rem 0 0; color: rgba(255, 255, 255, .8); font-size: .64rem; }
.board-rule { display: none; }
.board-mini-grid {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  left: 1.2rem;
  grid-template-columns: repeat(4, 1fr);
  gap: .45rem;
  border: 0;
}
.board-mini-grid a { display: block; padding: .7rem .65rem; border: 0; border-radius: 12px; background: rgba(255, 255, 255, .72); color: var(--ink); font-size: .65rem; }
.board-mini-grid a:hover { background: var(--white); color: var(--ink); }
.board-mini-grid b { display: block; margin-top: .2rem; color: var(--blue); font-size: .8rem; }
.board-image { display: none; }

.category-rail { padding: 7rem 0 8rem; background: var(--white); color: var(--ink); }
.section-heading { align-items: flex-start; margin-bottom: 3rem; }
.section-heading-dark .section-intro { color: var(--muted); }
.section-intro { margin-top: 1rem; }
.category-list { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; border: 0; }
.category-item {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: .5rem;
  padding: 1.25rem;
  border: 0;
  border-radius: 19px;
  background: var(--paper);
  box-shadow: 0 8px 22px rgba(39, 67, 79, .06);
  color: var(--ink);
}
.category-item:hover,
.category-item.is-active { background: var(--sky); color: var(--ink); }
.category-item:nth-child(2n) { background: #e6f5f8; }
.category-item:nth-child(3n) { background: #e9e9e5; }
.category-index { align-self: auto; color: var(--muted); }
.category-name { font-size: 1.8rem; font-weight: 800; line-height: .95; }
.category-count { align-self: auto; color: var(--blue); }
.category-arrow { align-self: flex-end; color: var(--orange); }

.catalog-section { padding: 8rem 0 9rem; background: var(--paper); }
.catalog-toolbar .search-field { width: min(100%, 530px); }
.filter-button { border-color: rgba(18, 20, 27, .13); border-radius: 999px; }
.filter-button:hover,
.filter-button.is-active { border-color: var(--blue); background: var(--blue); }
.product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; border: 0; background: transparent; }
.product-card { overflow: hidden; border-radius: 18px; background: var(--white); box-shadow: var(--shadow); }
.product-card:hover { background: var(--white); box-shadow: 0 24px 44px rgba(37, 73, 91, .14); }
.product-media { min-height: 205px; border-bottom: 0; background: var(--white); }
.product-media::before { display: none; }
.product-media img { height: 205px; }
.product-zoom-trigger {
  position: absolute;
  z-index: 3;
  top: .85rem;
  right: .85rem;
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(18, 20, 27, .12);
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 10px 28px rgba(37, 73, 91, .14);
  color: var(--ink);
  backdrop-filter: blur(8px);
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}
.product-zoom-trigger svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}
.product-zoom-trigger:hover,
.product-zoom-trigger:focus-visible {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
  transform: scale(1.06);
}
.product-zoom-trigger:focus-visible,
.product-zoom-close:focus-visible {
  outline: 3px solid rgba(255, 100, 8, .34);
  outline-offset: 3px;
}

.product-zoom-open { overflow: hidden; }
.product-zoom-dialog {
  width: min(960px, calc(100vw - 2rem));
  max-width: none;
  max-height: calc(100dvh - 2rem);
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 36px 100px rgba(0, 0, 0, .38);
  color: var(--ink);
}
.product-zoom-dialog::backdrop {
  background: rgba(7, 9, 12, .78);
  backdrop-filter: blur(9px);
}
.product-zoom-dialog[open] { animation: product-zoom-dialog-in .42s cubic-bezier(.16, 1, .3, 1) both; }
.product-zoom-dialog[open]::backdrop { animation: product-zoom-backdrop-in .34s ease-out both; }
.product-zoom-shell { position: relative; display: grid; grid-template-rows: minmax(0, 1fr) auto; }
.product-zoom-dialog[open] .product-zoom-shell { animation: product-zoom-shell-in .46s .04s cubic-bezier(.16, 1, .3, 1) both; }
.product-zoom-visual {
  display: grid;
  min-height: min(68dvh, 650px);
  padding: clamp(1.25rem, 5vw, 4rem);
  place-items: center;
  overflow: hidden;
  background: var(--white);
}
.product-zoom-image {
  display: block;
  width: 100%;
  max-width: 780px;
  height: min(66dvh, 620px);
  object-fit: contain;
}
.product-zoom-error {
  display: none;
  max-width: 26rem;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
}
.product-zoom-visual.is-error .product-zoom-image { display: none; }
.product-zoom-visual.is-error .product-zoom-error { display: block; }
.product-zoom-dialog[open] .product-zoom-image { animation: product-zoom-image-in .56s .09s cubic-bezier(.16, 1, .3, 1) both; }
.product-zoom-close {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(18, 20, 27, .12);
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 10px 28px rgba(37, 73, 91, .14);
  color: var(--ink);
}
.product-zoom-close:hover { background: var(--ink); color: var(--white); }
.product-zoom-close svg { width: 1.15rem; height: 1.15rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 1.8; }
.product-zoom-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.5rem;
  padding: 1rem 1.4rem;
  border-top: 1px solid var(--line);
  background: #fbfbf8;
}
.product-zoom-footer span {
  color: var(--orange);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.product-zoom-footer strong { font-size: .95rem; line-height: 1.3; text-align: right; }
@keyframes product-zoom-backdrop-in {
  from { background: rgba(7, 9, 12, 0); backdrop-filter: blur(0); }
  to { background: rgba(7, 9, 12, .78); backdrop-filter: blur(9px); }
}
@keyframes product-zoom-dialog-in {
  from { opacity: 0; transform: translateY(1.6rem) scale(.91); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes product-zoom-shell-in {
  from { opacity: 0; transform: scale(.975); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes product-zoom-image-in {
  0% { opacity: 0; transform: scale(.78) rotate(-1.25deg); filter: blur(7px); }
  62% { opacity: 1; transform: scale(1.025) rotate(0); filter: blur(0); }
  100% { opacity: 1; transform: scale(1) rotate(0); filter: blur(0); }
}
.availability { top: .85rem; left: .85rem; border-radius: 999px; background: var(--white); color: var(--ink); }
.availability::before { background: var(--orange); }
.product-body { padding: 1.25rem 1.3rem 1.35rem; }
.product-family { color: var(--blue); }
.product-name { font-size: 1.45rem; line-height: 1.02; }
.product-meta { border-top-color: var(--line); }
.product-price { color: var(--orange); }
.product-link { display: inline-flex; margin-top: 1.15rem; color: var(--blue); }
.product-link:hover { color: var(--orange); }

.brand-strip { 
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin: 2.2rem 0 1.7rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.brand-strip-label { color: var(--muted); font-size: .68rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.brand-list { display: flex; flex: 1 1 auto; flex-wrap: nowrap; gap: .45rem; min-width: 0; overflow-x: auto; padding: .15rem .1rem .45rem; scrollbar-width: thin; scrollbar-color: var(--orange) transparent; }
.brand-list::-webkit-scrollbar { height: 4px; }
.brand-list::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 999px; }
.brand-button { flex: 0 0 auto; min-height: 34px; padding: .38rem .8rem; border: 1px solid rgba(18, 20, 27, .14); border-radius: 999px; background: var(--white); color: var(--ink); font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; transition: background-color .2s ease, color .2s ease, border-color .2s ease; }
.brand-button:hover,
.brand-button.is-active { border-color: var(--orange); background: var(--orange); color: var(--white); }

.models-section { padding: 8rem 0 7rem; background: var(--white); }
.models-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.model-card { overflow: hidden; border-radius: 20px; background: var(--paper); box-shadow: 0 12px 30px rgba(37, 73, 91, .08); }
.model-card-featured { grid-column: span 2; }
.model-card-wide { grid-column: span 2; }
.model-media { position: relative; min-height: 265px; overflow: hidden; background: var(--white); }
.model-media img { width: 100%; height: 265px; padding: .35rem .65rem 0; object-fit: contain; mix-blend-mode: normal; transition: transform .35s ease; }
.model-card:hover .model-media img { transform: scale(1.04); }
.model-badge { position: absolute; z-index: 1; top: 1rem; left: 1rem; padding: .4rem .65rem; border-radius: 999px; background: var(--white); color: var(--ink); font-size: .6rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.model-body { display: flex; min-height: 125px; flex-direction: column; justify-content: space-between; padding: 1.25rem 1.3rem 1.3rem; }
.model-body h3 { margin: 0; color: var(--ink); font-size: 1.6rem; font-weight: 800; letter-spacing: -.06em; }
.model-body p { max-width: 260px; margin: .3rem 0 0; color: var(--muted); font-size: .77rem; line-height: 1.5; }
.model-body a { align-self: flex-start; margin-top: 1rem; color: var(--blue); font-size: .66rem; font-weight: 800; letter-spacing: .07em; text-decoration: none; text-transform: uppercase; }
.model-body a:hover { color: var(--orange); }
.models-note { margin: 1.5rem 0 0; color: var(--muted); font-size: .66rem; }

.help-section { padding: 8rem 0; background: var(--sky); color: var(--ink); }
.help-section .section-tag { color: var(--ink); }
.help-section h2 em { color: var(--orange); }
.steps-list { border-top-color: rgba(18, 20, 27, .17); }
.step-item { border-bottom-color: rgba(18, 20, 27, .17); }
.step-item > span { color: var(--blue); }
.step-item strong { font-size: 1.35rem; }
.help-image {
  position: relative;
  display: grid;
  min-height: 390px;
  overflow: hidden;
  place-items: end center;
  border-radius: 24px;
  background: var(--sky);
  isolation: isolate;
  box-shadow: 0 18px 35px rgba(37, 73, 91, .12);
}
.help-image::before,
.help-image::after {
  position: absolute;
  border: 1px solid rgba(10, 10, 11, .16);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}
.help-image::before { width: 19rem; height: 19rem; transform: translate(-18%, -22%); }
.help-image::after { right: -1.6rem; bottom: 2rem; width: 8rem; height: 8rem; background: rgba(255, 100, 8, .9); }
.help-image img {
  position: relative;
  z-index: 1;
  width: 88%;
  max-width: 390px;
  height: 94%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 22px 22px rgba(10, 10, 11, .18));
  transition: transform .5s cubic-bezier(.16, 1, .3, 1);
}
.help-image:hover img { transform: translateY(-10px) rotate(-2deg) scale(1.025); }
.mascot-caption {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  padding: .45rem .6rem;
  background: var(--ink);
  color: var(--white);
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.reviews-section { padding: 8rem 0; background: var(--white); color: var(--ink); }
.review-score img { width: 5.5rem; height: 6rem; object-fit: contain; filter: drop-shadow(0 10px 18px rgba(10, 10, 11, .18)); }
.review-score small { color: var(--muted); }
.review-grid { border-top-color: var(--line); }
.review-item { border-right-color: var(--line); }
.review-item blockquote { font-size: 1.85rem; }
.review-item figcaption { color: var(--muted); }

.location-section { padding: 8rem 0; background: var(--paper); }
.location-map { min-height: 490px; border: 0; border-radius: 26px; background: var(--sky); box-shadow: var(--shadow); }
.location-map iframe { display: block; width: 100%; height: 490px; border: 0; }
.map-grid { opacity: .42; }
.map-pin { background: var(--orange); }
.map-label { color: rgba(18, 20, 27, .55); }
.map-coordinate { color: rgba(18, 20, 27, .45); }
.address-block { border-left-color: var(--orange); }
.address-block .location-note { color: #9c6760; }

.site-footer { background: var(--white); color: var(--ink); }
.footer-brand { color: var(--ink); }
.footer-main p { color: var(--muted); }
.footer-links a,
.footer-contact a { color: var(--muted); }
.footer-links a:hover,
.footer-contact a:hover { color: var(--orange); }
.footer-bottom { border-top-color: var(--line); color: var(--muted); }

/* La mascota ocupa el respiro visual del extremo izquierdo, sin competir con el cierre. */
.footer-main { position: relative; padding-left: clamp(11.5rem, 17vw, 14.5rem); }
.footer-mascot-working {
  position: absolute;
  z-index: 0;
  bottom: 1.55rem;
  left: clamp(-.5rem, 1vw, 1rem);
  width: clamp(10.5rem, 13vw, 12.75rem);
  aspect-ratio: 220 / 174;
  pointer-events: none;
}
.footer-mascot-working img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 13px rgba(10, 10, 11, .16));
}
.footer-main > :not(.footer-mascot-working) { position: relative; z-index: 1; }

@media (max-width: 1040px) {
  .hero-grid { grid-template-columns: minmax(0, .83fr) minmax(390px, 1.17fr); }
  .category-list { grid-template-columns: repeat(2, 1fr); }
  .models-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .hero-section { min-height: auto; }
  .hero-section::after { display: none; }
  .hero-grid { display: block; padding-top: 8.8rem; }
  .inventory-board { min-height: 570px; margin-top: 3.5rem; }
  .hero-video { top: 18%; right: -18%; width: 120%; }
  .board-signal { right: 1rem; bottom: 8.2rem; width: 48%; min-width: 170px; }
  .board-signal strong { font-size: 3.45rem; }
  .board-mini-grid { right: 1rem; bottom: 1rem; left: 1rem; }
  .board-mini-grid a { font-size: .57rem; }
  .category-list { grid-template-columns: 1fr 1fr; }
  .models-section { padding: 5.5rem 0; }
  .model-card-featured,
  .model-card-wide { grid-column: span 2; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .brand-strip { display: block; }
  .brand-strip-label { display: block; margin-bottom: .8rem; }
}

@media (max-width: 480px) {
  h1 { font-size: clamp(3.7rem, 17vw, 5.4rem); }
  .inventory-board { min-height: 510px; padding: 1rem; }
  .board-search-wrap { max-width: 250px; }
  .board-search-wrap label { font-size: 1.3rem; }
  .hero-video { top: 22%; right: -27%; width: 135%; }
  .board-signal { bottom: 6.2rem; }
  .board-signal span { font-size: .56rem; }
  .board-mini-grid { grid-template-columns: repeat(2, 1fr); }
  .category-list,
  .product-grid { grid-template-columns: 1fr; }
  .models-grid { grid-template-columns: 1fr; }
  .model-card-featured,
  .model-card-wide { grid-column: span 1; }
  .category-item { min-height: 130px; }
}

/* Arsenio black / white / orange direction: the video owns the first impression. */
:root {
  --ink: #0a0a0b;
  --ink-soft: #121214;
  --graphite: #242426;
  --orange: #ff6408;
  --orange-bright: #ff8a3d;
  --paper: #f0efeb;
  --white: #ffffff;
  --muted: #737477;
  --muted-light: #b4b4b2;
  --line: rgba(10, 10, 11, .15);
  --line-dark: rgba(255, 255, 255, .18);
  --display: "Manrope", "Segoe UI", Arial, sans-serif;
  --body: "Manrope", "Segoe UI", Arial, sans-serif;
  --shadow: 0 20px 50px rgba(10, 10, 11, .14);
}

html { background: #0a0a0b; }
body { background: var(--paper); }

.top-ticker {
  position: absolute;
  z-index: 40;
  top: 0;
  right: 0;
  left: 0;
  overflow: hidden;
  height: 34px;
  border-bottom: 1px solid var(--orange);
  background: #09090b;
  color: rgba(255, 255, 255, .56);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .17em;
  line-height: 34px;
  text-transform: uppercase;
  white-space: nowrap;
}

.top-ticker-track {
  display: flex;
  width: max-content;
  min-width: max-content;
  align-items: center;
  height: 100%;
  animation: ticker-scroll var(--ticker-loop-duration, 28s) linear infinite;
  will-change: transform;
}

.ticker-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 4rem;
  padding-right: 4rem;
}
.ticker-item {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, .55);
  white-space: nowrap;
}
.ticker-item::before { color: var(--orange); content: "◆"; font-size: .45rem; }

.brand-marquee i {
  display: inline-block;
  width: .35rem;
  height: .35rem;
  flex: 0 0 auto;
  transform: rotate(45deg);
  background: currentColor;
}

@keyframes ticker-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-1 * var(--ticker-loop-distance, 0px)), 0, 0); }
}

.site-header { top: 34px; color: var(--white); }
.header-inner { min-height: 82px; border-bottom-color: rgba(255, 255, 255, .27); }
.brand { min-width: 250px; gap: .65rem; }
.brand-logo { width: 42px; height: 42px; max-height: 42px; padding: 0; border-radius: 0; background: transparent; object-fit: contain; }
.brand-name { color: var(--white); font-size: 1.05rem; font-weight: 800; letter-spacing: -.035em; white-space: nowrap; }
.main-nav a { color: rgba(255, 255, 255, .78); }
.main-nav a:hover { color: var(--orange); }
.header-call { border-color: rgba(255, 255, 255, .35); background: var(--orange); color: var(--ink); }
.header-call:hover { border-color: var(--white); background: var(--white); color: var(--ink); }

.hero-video-section {
  min-height: max(790px, 100svh);
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-video-section::after { display: none; }
.hero-backdrop,
.hero-overlay,
.hero-glow { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-backdrop { z-index: 0; object-fit: cover; object-position: center; opacity: 0; filter: saturate(.84) contrast(1.08) brightness(.73); transition: opacity .48s ease; }
.hero-video-section.video-ready .hero-backdrop { opacity: 1; }
.hero-overlay { z-index: 1; background: linear-gradient(90deg, rgba(6, 6, 7, .91) 0%, rgba(6, 6, 7, .69) 42%, rgba(6, 6, 7, .29) 100%); }
.hero-glow { z-index: 1; background: radial-gradient(circle at 76% 47%, rgba(255, 100, 8, .16), transparent 32%); mix-blend-mode: screen; pointer-events: none; }

.hero-video-section .hero-grid {
  z-index: 2;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, .72fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 9rem);
  min-height: max(790px, 100svh);
  padding-top: 11rem;
  padding-bottom: 8.6rem;
}
.hero-video-section .hero-copy { grid-column: 1; grid-row: 1; justify-self: start; }
.hero-video-section .hero-side-panel { grid-column: 2; grid-row: 1; width: 100%; min-width: 0; justify-self: end; }

.hero-copy { max-width: 660px; }
.hero-copy h1 { max-width: 650px; color: var(--white); font-size: clamp(4.6rem, 9.2vw, 9.2rem); line-height: .82; letter-spacing: -.1em; }
.hero-copy h1 .hero-line { display: block; color: var(--white); -webkit-text-stroke: 0; }
.hero-copy h1 .hero-outline { color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, .86); }
.hero-copy h1 strong { color: var(--orange); font-weight: 800; }
.hero-line { opacity: 0; clip-path: inset(0 0 100% 0); transform: translateY(1.1em); animation: hero-line-in .9s cubic-bezier(.22, 1, .36, 1) forwards; }
.hero-line:nth-child(2) { animation-delay: .12s; }
.hero-line:nth-child(3) { animation-delay: .24s; }
@keyframes hero-line-in { to { opacity: 1; clip-path: inset(0); transform: translateY(0); } }
.hero-types,
.hero-lede,
.hero-actions,
.hero-footnote,
.hero-side-panel { opacity: 0; transform: translateY(28px); animation: hero-detail-in .75s cubic-bezier(.22, 1, .36, 1) forwards; }
.hero-types { animation-delay: .42s; }
.hero-lede { animation-delay: .52s; }
.hero-actions { animation-delay: .62s; }
.hero-footnote { animation-delay: .72s; }
.hero-side-panel { animation-delay: .5s; }
@keyframes hero-detail-in { to { opacity: 1; transform: translateY(0); } }
.hero-types { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.65rem 0 1.6rem; }
.hero-types span { padding: .36rem .68rem; border: 1px solid rgba(255, 255, 255, .35); border-radius: 999px; color: rgba(255, 255, 255, .78); font-size: .63rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.hero-types span:first-child { border-color: var(--orange); color: var(--orange); }
.hero-lede { max-width: 48ch; color: rgba(255, 255, 255, .7); }
.hero-actions { margin-top: 2rem; }
.hero-video-section .button-ghost { border-color: rgba(255, 255, 255, .4); color: var(--white); }
.hero-video-section .button-ghost:hover { border-color: var(--white); background: var(--white); color: var(--ink); }
.hero-footnote { color: rgba(255, 255, 255, .56); }
.hero-footnote .pulse-dot { background: var(--orange); box-shadow: 0 0 0 5px rgba(255, 100, 8, .18); }

.hero-side-panel { align-self: end; max-width: 440px; margin: 0 0 1.3rem auto; padding: 1.4rem; border: 1px solid rgba(255, 255, 255, .26); background: rgba(7, 7, 8, .72); color: var(--white); }
.hero-side-line { display: flex; justify-content: space-between; gap: 1rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255, 255, 255, .2); color: rgba(255, 255, 255, .58); font-size: .6rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.hero-side-panel > p { margin: 2.4rem 0 .8rem; font-size: 1.2rem; font-weight: 700; letter-spacing: -.04em; }
.hero-search { border-color: rgba(255, 255, 255, .24); background: var(--white); color: var(--ink); }
.hero-search input { color: var(--ink); }
.hero-search input::placeholder { color: #8b8d91; }
.hero-side-stat { display: flex; align-items: baseline; gap: .6rem; margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, .2); }
.hero-side-stat strong { color: var(--orange); font-size: 2.4rem; letter-spacing: -.08em; line-height: 1; }
.hero-side-stat span { max-width: 18ch; color: rgba(255, 255, 255, .62); font-size: .66rem; line-height: 1.25; text-transform: uppercase; }
.hero-bottom-mark { position: absolute; z-index: 3; right: 32px; bottom: 1.35rem; left: 32px; display: flex; justify-content: space-between; gap: 1rem; color: rgba(255, 255, 255, .55); font-size: .59rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.hero-bottom-mark span:nth-child(2) { color: var(--orange); }

.category-rail {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, .13);
  border-bottom: 1px solid rgba(255, 100, 8, .3);
  background:
    radial-gradient(circle at 82% 6%, rgba(255, 100, 8, .22), transparent 27rem),
    radial-gradient(circle at 10% 90%, rgba(190, 52, 8, .14), transparent 24rem),
    linear-gradient(135deg, #080809 0%, #15100e 52%, #090909 100%);
  color: var(--white);
}
.category-rail::after {
  position: absolute;
  top: -1px;
  left: clamp(2rem, 10vw, 12rem);
  width: min(9rem, 18vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  content: "";
  opacity: .9;
}
.section-heading-dark h2,
.category-rail h2 { color: var(--white); }
.section-heading-dark .section-intro,
.category-rail .section-intro { color: rgba(255, 255, 255, .58); }
.category-list { gap: 10px; }
.category-item,
.category-item:nth-child(2n),
.category-item:nth-child(3n) { border: 1px solid rgba(255, 255, 255, .15); background: #151517; box-shadow: none; color: var(--white); }
.category-item:hover,
.category-item.is-active { border-color: var(--orange); background: var(--orange); color: var(--ink); }
.category-item:hover .category-count,
.category-item.is-active .category-count,
.category-item:hover .category-index,
.category-item.is-active .category-index { color: var(--ink); }
.category-index { color: rgba(255, 255, 255, .45); }
.category-count { color: var(--orange); }
.category-arrow { color: var(--orange); }
.category-item:hover .category-arrow,
.category-item.is-active .category-arrow { color: var(--ink); }

.ebikes-section { padding: 8rem 0 7rem; background: var(--paper); color: var(--ink); }
.ebikes-section h2 { color: var(--ink); }
.ebikes-section h2 em { color: var(--orange); }
.ebikes-section .section-intro { max-width: 34ch; color: var(--muted); }
.ebike-carousel-wrap { position: relative; }
.ebike-carousel { display: flex; gap: 16px; overflow-x: auto; padding: 0 0 1.25rem; scroll-behavior: smooth; scrollbar-width: none; }
.ebike-carousel::-webkit-scrollbar { display: none; }
.ebike-card { flex: 0 0 clamp(280px, 28vw, 360px); overflow: hidden; border: 1px solid rgba(10, 10, 11, .14); background: var(--white); scroll-snap-align: start; }
.ebike-card.is-featured { flex-basis: clamp(360px, 42vw, 540px); }
.ebike-media { position: relative; height: 300px; overflow: hidden; background: var(--white); }
.ebike-card.is-featured .ebike-media { height: 350px; }
.ebike-media img { width: 100%; height: 100%; padding: 1.2rem; object-fit: contain; transition: transform .4s ease; }
.ebike-card:hover .ebike-media img { transform: scale(1.04); }
.ebike-badge { position: absolute; z-index: 1; top: .7rem; left: .65rem; display: block; width: 6.1rem; aspect-ratio: 1942 / 809; }
.ebike-media img.ebike-brand-badge { display: block; width: 100%; height: 100%; padding: 0; object-fit: contain; transform: none; transition: none; }
.ebike-body { display: flex; min-height: 174px; flex-direction: column; justify-content: space-between; padding: 1.15rem 1.25rem 1.25rem; border-top: 1px solid rgba(10, 10, 11, .14); }
.ebike-stock { display: block; margin-bottom: .6rem; color: #47733d; font-size: .61rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.ebike-body h3 { margin: 0; color: var(--ink); font-family: var(--display); font-size: 1.75rem; letter-spacing: -.07em; line-height: .95; }
.ebike-body p { max-width: 28ch; margin: .45rem 0 0; color: var(--muted); font-size: .72rem; line-height: 1.45; }
.ebike-footer { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-top: 1.25rem; }
.ebike-footer strong { color: var(--orange); font-size: 1.5rem; letter-spacing: -.07em; }
.ebike-footer a { color: var(--ink); font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.ebike-footer a:hover { color: var(--orange); }
.carousel-button { position: absolute; z-index: 2; top: 45%; display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid var(--ink); border-radius: 50%; background: var(--ink); color: var(--white); font-size: 1.3rem; transition: background-color .2s ease, color .2s ease; }
.carousel-button:hover { background: var(--orange); color: var(--ink); }
.carousel-prev { left: -22px; }
.carousel-next { right: -22px; }
.ebikes-note { margin: 1.2rem 0 0; color: var(--muted); font-size: .65rem; }
.catalogue-price-disclaimer { margin: .8rem 0 1.25rem; color: var(--muted); font-size: .72rem; font-weight: 700; letter-spacing: .02em; }
.bicycle-showcase-section { border-top: 1px solid rgba(10, 10, 11, .1); }

.ebikes-intro-wrap { position: relative; width: min(100%, 370px); }
.scene-swing {
  position: absolute;
  top: calc(-8rem - 6px);
  right: -7rem;
  width: 180px;
  height: 270px;
  pointer-events: none;
}
.scene-swing::before,
.scene-swing::after { display: none; }
.scene-swing img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: 50% 0;
  object-fit: contain;
  filter: drop-shadow(0 18px 14px rgba(10, 10, 11, .14));
}
.scene-swing.is-swinging img { animation: mascot-swing 1.9s cubic-bezier(.45, .05, .55, .95) infinite alternate; }
.scene-swing-line { display: none; }
@keyframes mascot-swing {
  from { transform: rotate(-2.35deg); }
  to { transform: rotate(2.35deg); }
}

.mascot-bridge { position: relative; z-index: 1; overflow: hidden; background: var(--paper); color: var(--ink); }
.mascot-bridge-inner { position: relative; min-height: 325px; }
.bridge-line { position: absolute; z-index: 0; right: 4%; bottom: .45rem; left: 4%; display: flex; align-items: center; gap: .8rem; color: var(--orange); pointer-events: none; }
.bridge-line span { height: 1px; flex: 1; background: rgba(10, 10, 11, .13); }
.bridge-line i { display: block; width: .48rem; height: .48rem; transform: rotate(45deg); background: var(--orange); }
.bridge-ride { position: absolute; z-index: 2; bottom: .15rem; left: -26rem; width: 330px; aspect-ratio: 31 / 30; pointer-events: none; will-change: transform; }
.scene-motorcycle {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: auto;
  transform: translateZ(0);
  backface-visibility: hidden;
  filter: none;
}
.bridge-note { position: absolute; z-index: 4; right: 12%; bottom: 3.5rem; margin: 0; color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.brands-section { overflow: hidden; padding: 7rem 0 0; background: var(--white); color: var(--ink); }
.brands-heading { display: flex; align-items: end; justify-content: space-between; gap: 3rem; padding-bottom: 3rem; }
.brands-heading h2 { color: var(--ink); }
.brands-heading h2 em { color: var(--orange); }
.brands-heading p { max-width: 31ch; margin: 0; color: var(--muted); font-size: .82rem; }
.brand-marquee { overflow: hidden; padding-bottom: 7rem; }
.brand-marquee-track {
  display: flex;
  min-width: max-content;
  align-items: stretch;
  color: var(--ink);
  animation: brand-scroll var(--brand-loop-duration, 42s) linear infinite;
  animation-delay: 1.35s;
  transform: translate3d(var(--brand-initial-offset, 24px), 0, 0);
  will-change: transform;
}
.brand-logo-group { display: flex; flex: 0 0 auto; gap: 1.1rem; }
.brand-logo-card { display: flex; width: 13.5rem; min-height: 10.2rem; flex: 0 0 13.5rem; flex-direction: column; align-items: stretch; justify-content: space-between; gap: .75rem; padding: 1rem 1rem .85rem; border: 1px solid rgba(10, 10, 11, .12); border-radius: .85rem; background: var(--white); box-shadow: 0 .7rem 1.5rem rgba(10, 10, 11, .08); color: var(--ink); text-decoration: none; transition: transform .25s ease, box-shadow .25s ease; }
.brand-logo-card:hover { transform: translateY(-.35rem); box-shadow: 0 1rem 1.8rem rgba(10, 10, 11, .14); }
.brand-logo-image { position: relative; display: grid; width: 100%; height: 6.1rem; place-items: center; overflow: hidden; border-radius: .45rem; background: #fbfbfa; }
.brand-logo-image-dark { background: #151619; }
.brand-logo-image img { position: absolute; inset: 0; display: block; width: 100%; height: 100%; max-width: none; max-height: none; object-fit: contain; object-position: center; }
.brand-logo-card strong { display: block; color: var(--ink); font-size: .64rem; font-weight: 800; letter-spacing: .1em; line-height: 1.1; text-align: center; text-transform: uppercase; }
@keyframes brand-scroll {
  from { transform: translate3d(var(--brand-initial-offset, 24px), 0, 0); }
  to { transform: translate3d(calc(var(--brand-initial-offset, 24px) - var(--brand-loop-distance, 0px)), 0, 0); }
}

.catalog-section { background: var(--paper); }
.catalog-section h2 { color: var(--ink); }
.filter-button { border-color: rgba(10, 10, 11, .18); color: var(--ink); }
.filter-button:hover,
.filter-button.is-active { border-color: var(--orange); background: var(--orange); color: var(--ink); }
.brand-button:hover,
.brand-button.is-active { border-color: var(--orange); background: var(--orange); color: var(--ink); }
.product-card { border: 1px solid rgba(10, 10, 11, .1); border-radius: 0; box-shadow: none; }
.product-card:hover,
.product-card:focus-within { box-shadow: 0 18px 34px rgba(10, 10, 11, .14); }
.product-card:focus-within .product-media img { transform: scale(1.05); }
.product-price { color: var(--orange); }

.cursor-dot,
.cursor-ring { position: fixed; z-index: 100; top: 0; left: 0; pointer-events: none; opacity: 1; transform: translate3d(-100px, -100px, 0); transition: opacity .16s ease; }
.cursor-dot {
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  background: var(--orange);
}
.cursor-ring {
  width: 34px;
  height: 34px;
  margin: -17px 0 0 -17px;
  border: 1px solid rgba(255, 100, 8, .9);
  border-radius: 50%;
  transition: opacity .16s ease, border-color .18s ease, background-color .18s ease;
}
.cursor-ring.is-hovering { border-color: var(--orange); background: transparent; }
.cursor-dot.is-hidden,
.cursor-ring.is-hidden { opacity: 0; }
.has-custom-cursor,
.has-custom-cursor a,
.has-custom-cursor button,
.has-custom-cursor input { cursor: none; }

/* A native dialog is rendered above the decorative cursor layer. */
html.product-zoom-open .cursor-dot,
html.product-zoom-open .cursor-ring { opacity: 0; }
html.product-zoom-open .has-custom-cursor,
html.product-zoom-open .product-zoom-dialog,
html.product-zoom-open .product-zoom-dialog * { cursor: default; }
html.product-zoom-open .product-zoom-close { cursor: pointer; }

.mascot-float {
  position: fixed;
  z-index: 50;
  right: clamp(1rem, 3vw, 2.5rem);
  bottom: clamp(1rem, 4vw, 2.5rem);
  display: flex;
  align-items: end;
  gap: .65rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(1.5rem) scale(.9);
  transition: opacity .45s ease, transform .55s cubic-bezier(.16, 1, .3, 1);
}
.mascot-float.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.mascot-float-message {
  max-width: 14rem;
  padding: .72rem .85rem;
  border: 1px solid rgba(10, 10, 11, .15);
  border-radius: .8rem .8rem .15rem .8rem;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(10, 10, 11, .13);
  color: var(--ink);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1.35;
  text-transform: uppercase;
}
.mascot-float img {
  display: block;
  width: 5.5rem;
  height: 5.5rem;
  border: 2px solid var(--orange);
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 14px 30px rgba(10, 10, 11, .18);
  object-fit: contain;
  mix-blend-mode: normal;
  transition: opacity .16s ease, transform .35s cubic-bezier(.16, 1, .3, 1);
}
.mascot-float img.is-changing { opacity: 0; transform: rotate(-9deg) scale(.86); }
.mascot-float:hover img { transform: translateY(-.4rem) rotate(4deg); }

/* Split CTA: the copy and directional action stay as two clean, separate controls. */
.button-gooey {
  --cta-fill: var(--orange);
  position: relative;
  display: inline-grid;
  min-height: 0;
  grid-template-columns: max-content 0;
  align-items: center;
  gap: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  isolation: isolate;
  transition: grid-template-columns .34s cubic-bezier(.16, 1, .3, 1), gap .34s cubic-bezier(.16, 1, .3, 1), transform .28s cubic-bezier(.16, 1, .3, 1);
}
.button-gooey .button-label {
  display: grid;
  min-height: 3.25rem;
  align-items: center;
  padding: 0 1.2rem;
  border-radius: 999px;
  background: var(--cta-fill);
  white-space: nowrap;
  transition: background-color .22s ease, color .22s ease;
}
.button-gooey .button-icon {
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  place-items: center;
  border-radius: 50%;
  background: var(--cta-fill);
  color: inherit;
  font-size: 1.18rem;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-.85rem) scale(.72);
  transform-origin: left center;
  transition: opacity .18s ease, transform .34s cubic-bezier(.16, 1, .3, 1), background-color .22s ease, color .22s ease;
}
.button-gooey:hover,
.button-gooey:focus-visible { grid-template-columns: max-content 3.25rem; gap: .55rem; }
.button-gooey:hover .button-icon,
.button-gooey:focus-visible .button-icon { opacity: 1; pointer-events: auto; transform: translateX(0) scale(1); }
.button-gooey:hover,
.button-gooey:focus-visible { transform: translateY(-2px); }
.button-gooey:hover .button-label,
.button-gooey:focus-visible .button-label { padding-right: 1.45rem; }
.button-gooey:hover .button-icon,
.button-gooey:focus-visible .button-icon { transform: translateX(0) scale(1); }
.button-gooey:active { transform: translateY(1px) scale(.985); }
.button-gooey:focus-visible { outline: none; }
.button-gooey:focus-visible .button-label,
.button-gooey:focus-visible .button-icon { box-shadow: 0 0 0 2px var(--white); }
.button-gooey.button-orange { --cta-fill: var(--orange); color: var(--ink); }
.button-gooey.button-orange:hover { background: transparent; color: var(--ink); }
.button-gooey.button-dark { --cta-fill: var(--ink); color: var(--white); }
.button-gooey.button-dark:hover { background: transparent; color: var(--white); }
.button-gooey.button-ghost { --cta-fill: rgba(9, 9, 11, .46); color: var(--white); }
.button-gooey.button-ghost .button-label { border: 1px solid rgba(255, 255, 255, .42); background: rgba(9, 9, 11, .4); }
.button-gooey.button-ghost .button-icon { border: 1px solid rgba(255, 255, 255, .42); background: rgba(9, 9, 11, .4); }
.button-gooey.button-ghost:hover { background: transparent; color: var(--white); }
.button-gooey.button-ghost:hover .button-label,
.button-gooey.button-ghost:hover .button-icon,
.button-gooey.button-ghost:focus-visible .button-label,
.button-gooey.button-ghost:focus-visible .button-icon { border-color: var(--orange); background: var(--orange); color: var(--ink); }
.button-gooey.button-ghost:focus-visible .button-label,
.button-gooey.button-ghost:focus-visible .button-icon { box-shadow: 0 0 0 2px var(--orange); }

@media (max-width: 700px) {
  .hero-actions .button-gooey {
    width: 100%;
    grid-template-columns: minmax(0, 1fr) 0;
  }
  .hero-actions .button-gooey:hover,
  .hero-actions .button-gooey:focus-visible { grid-template-columns: minmax(0, 1fr) 3.25rem; gap: .55rem; }
  .hero-actions .button-gooey .button-label { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .button-gooey,
  .button-gooey .button-label,
  .button-gooey .button-icon { transition: none; }
  .button-gooey:hover,
  .button-gooey:focus-visible,
  .button-gooey:active { transform: none; }
  .button-gooey:hover .button-icon,
  .button-gooey:focus-visible .button-icon { transform: none; }
}

body { animation: body-in .8s ease-out both; }
@keyframes body-in { from { opacity: 0; } to { opacity: 1; } }

.scroll-reveal { opacity: 0; transform: translateY(42px); transition: opacity .72s cubic-bezier(.22, 1, .36, 1), transform .72s cubic-bezier(.22, 1, .36, 1); transition-delay: var(--reveal-delay, 0s); }
.scroll-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* The landing provides its own editorial header and footer; keep Odoo's shared
   chrome intact everywhere else in the website. */
body:has(.arsenio-page) #top,
body:has(.arsenio-page) #bottom { display: none !important; }
body:has(.arsenio-page) #wrapwrap { min-height: 0; }
body:has(.arsenio-page) #wrap { min-height: 0; }

/* Full catalogue: same editorial system, with an intentionally quieter
   opening so visitors can get straight to thousands of real Odoo products. */
.arsenio-catalogue-page .catalogue-header { top: 34px; }
.full-catalogue-hero {
  position: relative;
  overflow: hidden;
  padding: 12.5rem 0 4.75rem;
  background:
    radial-gradient(circle at 80% 4%, rgba(243, 106, 22, .42), transparent 28rem),
    linear-gradient(112deg, #070809 0%, #111316 64%, #301606 100%);
  color: var(--white);
}
.full-catalogue-hero::after {
  position: absolute;
  inset: auto -6rem -11rem auto;
  width: 29rem;
  height: 29rem;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
  content: "";
}
.full-catalogue-hero .container { position: relative; z-index: 1; }
.full-catalogue-hero .section-tag { margin-bottom: 1rem; }
.full-catalogue-hero h1 {
  max-width: 10ch;
  color: var(--white);
  font-size: clamp(4rem, 7vw, 7.25rem);
  line-height: .86;
}
.full-catalogue-hero h1 span { color: var(--orange); }
.full-catalogue-hero > .container > p:last-child {
  max-width: 40rem;
  margin: 1.8rem 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 1rem;
  line-height: 1.7;
}
.catalogue-complete { min-height: 70vh; padding-top: 4.25rem; }
.catalogue-complete .product-grid {
  transition: opacity .22s ease, filter .22s ease;
}
.catalogue-complete.is-loading .product-grid {
  opacity: .46;
  filter: saturate(.62);
  pointer-events: none;
}
.catalogue-state {
  display: grid;
  min-height: 320px;
  margin: 1.25rem 0 0;
  padding: clamp(3rem, 8vw, 6rem) 1.25rem;
  place-items: center;
  align-content: center;
  gap: .9rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.catalogue-state[hidden] { display: none; }
.catalogue-state > svg {
  width: 3.25rem;
  height: 3.25rem;
  fill: none;
  stroke: var(--orange);
  stroke-linecap: round;
  stroke-width: 2;
}
.catalogue-state h3 {
  max-width: 21ch;
  margin: .25rem 0 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: .98;
  overflow-wrap: anywhere;
}
.catalogue-state p {
  max-width: 48ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.catalogue-state-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .65rem;
  margin-top: .65rem;
}
.catalogue-state .button-ghost-dark {
  border-color: rgba(18, 20, 27, .28);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
}
.catalogue-state .button-ghost-dark:hover,
.catalogue-state .button-ghost-dark:focus-visible { border-color: var(--ink); background: var(--ink); color: var(--white); }
.catalogue-pagination-wrap > [data-full-loading] {
  position: relative;
  padding-left: 1.15rem;
  font-weight: 700;
}
.catalogue-pagination-wrap > [data-full-loading]::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: var(--orange);
  content: "";
  transform: translateY(-50%);
  animation: catalogue-loading-pulse .8s ease-in-out infinite alternate;
}
@keyframes catalogue-loading-pulse {
  to { opacity: .32; transform: translateY(-50%) scale(.72); }
}
.catalogue-toolbar-full { margin-bottom: 1.85rem; }
.catalogue-pagination-wrap {
  display: grid;
  justify-items: center;
  gap: .85rem;
  padding-top: 3rem;
}
.catalogue-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  max-width: 100%;
}
.pagination-tabs {
  display: flex;
  align-items: center;
  gap: .45rem;
}
.pagination-tab {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  border: 1px solid rgba(18, 20, 27, .16);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: .72rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  transition: border-color .2s ease, background-color .2s ease, color .2s ease, transform .2s ease;
}
.pagination-tab:hover:not(:disabled),
.pagination-tab:focus-visible,
.pagination-tab.is-active {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--ink);
}
.pagination-tab:hover:not(:disabled) { transform: translateY(-2px); }
.pagination-tab:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
.pagination-tab:disabled { cursor: not-allowed; opacity: .34; }
.pagination-tab-nav { font-size: 1.1rem; }
.pagination-ellipsis {
  display: grid;
  width: 1.4rem;
  height: 2.7rem;
  place-items: center;
  color: var(--muted);
  font-weight: 800;
}
.catalogue-pagination-status,
.catalogue-pagination-wrap > p[hidden] {
  margin: 0;
  color: var(--muted);
  font-size: .78rem;
}
.catalogue-pagination-status { font-variant-numeric: tabular-nums; }
.catalogue-filter-group {
  display: grid;
  gap: .8rem;
}
.brand-strip.catalogue-filter-group {
  align-items: stretch;
  justify-content: stretch;
  gap: .8rem;
  padding: .9rem 0;
}
.catalogue-category-group {
  margin-bottom: 2.35rem;
  padding-bottom: .15rem;
}
.catalogue-filter-heading {
  display: flex;
  min-height: 2.2rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.catalogue-filter-toggle {
  display: inline-flex;
  min-height: 2.2rem;
  align-items: center;
  gap: .35rem;
  padding: .25rem .1rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.catalogue-filter-toggle:hover { color: var(--orange); }
.catalogue-filter-toggle svg {
  width: .9rem;
  height: .9rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: transform .28s cubic-bezier(.16, 1, .3, 1);
}
.catalogue-filter-group.is-expanded .catalogue-filter-toggle svg { transform: rotate(180deg); }
.catalogue-filter-items > [hidden] { display: none !important; }
.brand-list.catalogue-filter-items {
  flex-wrap: wrap;
  overflow: hidden;
  padding: 0;
}
.catalogue-filter-group.is-expanded .catalogue-filter-items {
  animation: catalogue-filter-reveal .3s cubic-bezier(.16, 1, .3, 1) both;
}
.brand-strip.catalogue-filter-group.is-expanded .brand-list {
  max-height: 10.5rem;
  overflow-y: auto;
  padding: 0 .35rem .5rem 0;
  scrollbar-color: var(--orange) transparent;
  scrollbar-width: thin;
}
.catalogue-pos-filter-row {
  margin: 0;
  padding-bottom: .5rem;
}
@keyframes catalogue-filter-reveal {
  from { opacity: .55; clip-path: inset(0 0 20%); transform: translateY(-.25rem); }
  to { opacity: 1; clip-path: inset(0); transform: translateY(0); }
}
.catalogue-subcategories {
  display: grid;
  gap: .8rem;
  margin: -.55rem 0 2.35rem;
  padding: 1rem 0 0;
  border-top: 1px solid var(--line);
}
.subcategory-level {
  display: grid;
  grid-template-columns: minmax(10rem, 13rem) minmax(0, 1fr);
  align-items: start;
  gap: 1rem;
}
.subcategory-level-label {
  padding-top: .62rem;
  color: var(--muted);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.subcategory-list {
  display: flex;
  gap: .45rem;
  min-width: 0;
  overflow-x: auto;
  padding-bottom: .45rem;
  scrollbar-width: thin;
}
.subcategory-button {
  flex: 0 0 auto;
  min-height: 34px;
  padding: .42rem .7rem;
  border: 1px solid rgba(18, 20, 27, .14);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: border-color .2s ease, color .2s ease, background-color .2s ease;
}
.subcategory-button:hover,
.subcategory-button:focus-visible,
.subcategory-button.is-active {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--ink);
}
.subcategory-button:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.arsenio-catalogue-page .product-name {
  min-height: 3.4em;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: anywhere;
}
.arsenio-catalogue-page .product-family {
  display: block;
  min-height: 1.7em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.arsenio-catalogue-page .product-meta { gap: 1rem; }
.arsenio-catalogue-page .product-stock { flex: 0 0 auto; }

@media (max-width: 760px) {
  .arsenio-catalogue-page .catalogue-header { top: 29px; }
  .full-catalogue-hero { padding: 9.5rem 0 3.8rem; }
  .full-catalogue-hero h1 { font-size: clamp(3.8rem, 18vw, 5.8rem); }
  .catalogue-complete { padding-top: 3.25rem; }
  .arsenio-catalogue-page .product-meta { display: flex; align-items: flex-end; }
  .arsenio-catalogue-page .product-stock { margin-top: 0; text-align: right; }
}

@media (max-width: 1040px) {
  .hero-video-section .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(300px, .7fr); gap: 3rem; }
  .hero-copy h1 { font-size: clamp(4.2rem, 9vw, 7rem); }
  .carousel-prev { left: -10px; }
  .carousel-next { right: -10px; }
}

@media (max-width: 760px) {
  .top-ticker { height: 29px; font-size: .54rem; line-height: 29px; }
  .site-header { top: 29px; }
  .header-inner { min-height: 72px; gap: .6rem; }
  .brand { min-width: 0; }
  .header-actions { margin-left: auto; gap: .35rem; }
  .header-session { min-height: 2.2rem; padding: 0 .62rem; font-size: .56rem; }
  .header-cart { width: 2.2rem; min-height: 2.2rem; }
  .brand-logo { width: 36px; height: 36px; max-height: 36px; }
  .hero-video-section { min-height: 840px; }
  .hero-video-section .hero-grid { display: block; min-height: 840px; padding-top: 9rem; padding-bottom: 7rem; }
  .hero-copy h1 { font-size: clamp(4.1rem, 18vw, 6.4rem); }
  .hero-side-panel { max-width: none; margin: 3rem 0 0; }
  .hero-bottom-mark { right: 18px; bottom: 1rem; left: 18px; font-size: .5rem; }
  .hero-bottom-mark span:nth-child(2) { display: none; }
  .brands-heading { display: block; }
  .brands-heading p { margin-top: 1.5rem; }
  .brand-marquee { padding-bottom: 5.5rem; }
  .brand-logo-card { width: 11.5rem; min-height: 9rem; flex-basis: 11.5rem; padding: .8rem .8rem .7rem; }
  .brand-logo-image { height: 5.15rem; }
  .location-map { min-height: 350px; }
  .location-map iframe { height: 350px; }
  .ebikes-section { padding: 5.5rem 0; }
  .ebike-card { flex-basis: min(82vw, 330px); }
  .ebike-card.is-featured { flex-basis: min(88vw, 370px); }
  .ebike-media,
  .ebike-card.is-featured .ebike-media { height: 280px; }
  .carousel-button { display: none; }
  .ebikes-intro-wrap { width: 100%; }
  .scene-swing { position: relative; top: auto; right: auto; width: 145px; height: 220px; margin: 1rem 0 -1.2rem auto; }
  .scene-swing-line { display: none; }
  .mascot-bridge-inner { min-height: 265px; }
  .bridge-line { right: 0; bottom: .35rem; left: 0; }
  .bridge-ride { left: -18rem; width: 255px; }
  .scene-motorcycle { width: 100%; height: 100%; }
  .bridge-note { right: 3%; bottom: 3rem; max-width: 18ch; font-size: .58rem; text-align: right; }
  .help-image { min-height: 340px; }
  .mascot-float { right: .8rem; bottom: .8rem; gap: .4rem; }
  .mascot-float-message { max-width: 10rem; padding: .55rem .65rem; font-size: .55rem; }
  .mascot-float img { width: 4.4rem; height: 4.4rem; }
  .footer-main { padding-left: 0; }
  .footer-mascot-working { display: none; }
}

@media (min-width: 481px) and (max-width: 760px) {
  .ebikes-intro-wrap { display: grid; grid-template-columns: minmax(0, 1fr) 150px; align-items: end; gap: .5rem; }
  .ebikes-intro-wrap .section-intro { max-width: none; margin-top: 1rem; }
  .scene-swing { width: 150px; height: 220px; margin: -1.8rem 0 -1.2rem auto; }
}

@media (max-width: 480px) {
  .brand-name { font-size: 0; }
  .brand-name::after {
    content: "Arsenio.";
    font-size: .95rem;
    font-weight: 800;
    letter-spacing: -.035em;
  }
  .scene-swing { position: relative; width: 145px; height: 220px; margin: 1rem 0 -1.2rem auto; }
  .product-zoom-trigger { top: .65rem; right: .65rem; width: 2.5rem; height: 2.5rem; }
  .product-zoom-dialog { width: calc(100vw - 1rem); max-height: calc(100dvh - 1rem); border-radius: 18px; }
  .product-zoom-visual { min-height: min(66dvh, 480px); padding: 2.8rem .75rem 1rem; }
  .product-zoom-image { height: min(61dvh, 440px); }
  .product-zoom-close { top: .65rem; right: .65rem; width: 2.55rem; height: 2.55rem; }
  .product-zoom-footer { display: block; min-height: 0; padding: .85rem 1rem 1rem; }
  .product-zoom-footer strong { display: block; margin-top: .3rem; text-align: left; }
  .scene-swing::before {
    position: absolute;
    z-index: 0;
    display: block;
    top: 0;
    left: calc(-1 * (100vw - 28px - 145px));
    width: calc(100vw - 28px);
    height: 7px;
    border: 1px solid rgba(10, 10, 11, .9);
    border-radius: 999px;
    background: var(--ink);
    box-shadow: 0 4px 12px rgba(10, 10, 11, .18);
    content: "";
  }
  .mascot-bridge-inner { min-height: 250px; }
  .bridge-ride { bottom: 3.5rem; left: -13rem; width: 185px; }
  .scene-motorcycle { width: 100%; height: 100%; }
  .bridge-note { right: 0; bottom: 1.15rem; left: 0; width: 100%; max-width: none; text-align: center; }
}

@media (min-width: 761px) and (max-width: 1040px) {
  .scene-swing { right: -2rem; width: 112px; height: 168px; }
}

/* Adaptive navigation and touch ergonomics. */
.header-menu-toggle,
.mobile-nav { display: none; }
.header-session svg {
  display: none;
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .header-inner { gap: .8rem; }
  .brand { min-width: 0; min-height: 44px; }
  .header-actions { margin-left: auto; }
  .search-field input { min-height: 44px; }
  .header-menu-toggle {
    position: relative;
    display: grid;
    width: 2.75rem;
    min-width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    place-content: center;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 50%;
    background: transparent;
    color: var(--white);
  }
  .header-menu-toggle span {
    display: block;
    width: 1rem;
    height: 1px;
    background: currentColor;
    transition: transform .28s cubic-bezier(.16, 1, .3, 1), opacity .18s ease;
  }
  .header-menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(5px) rotate(45deg); }
  .header-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .header-menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-5px) rotate(-45deg); }
  .mobile-nav {
    position: absolute;
    z-index: 30;
    top: 82px;
    right: max(32px, env(safe-area-inset-right));
    left: max(32px, env(safe-area-inset-left));
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(255, 100, 8, .65);
    background: rgba(12, 12, 14, .98);
    box-shadow: 0 24px 55px rgba(0, 0, 0, .42);
    color: var(--white);
    transform-origin: 50% 0;
  }
  .mobile-nav[hidden] { display: none; }
  .mobile-nav a {
    display: flex;
    min-height: 3.35rem;
    align-items: center;
    padding: .8rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: linear-gradient(115deg, rgba(255, 100, 8, .07), transparent 58%);
    color: rgba(255, 255, 255, .82);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-decoration: none;
    text-transform: uppercase;
  }
  .mobile-nav a:hover,
  .mobile-nav a:focus-visible,
  .mobile-nav a[aria-current="page"] { background: var(--orange); color: var(--ink); }
  .mobile-nav.is-opening { animation: mobile-nav-in .34s cubic-bezier(.16, 1, .3, 1) both; }
}

@keyframes mobile-nav-in {
  from { opacity: .2; clip-path: inset(0 0 100%); transform: translateY(-.5rem); }
  to { opacity: 1; clip-path: inset(0); transform: translateY(0); }
}

@media (max-width: 760px) {
  .mobile-nav { top: 72px; right: 18px; left: 18px; }
  .header-session,
  .header-cart { min-height: 2.75rem; }
  .header-cart { width: 2.75rem; }
  .header-session { padding-right: .72rem; padding-left: .72rem; }
  .catalogue-pagination { width: 100%; gap: .25rem; }
  .pagination-tabs { min-width: 0; gap: .25rem; }
  .pagination-tab { width: 2.75rem; min-width: 2.75rem; height: 2.75rem; }
  .pagination-ellipsis { width: .8rem; height: 2.75rem; }
  .brand-list,
  .filter-row,
  .subcategory-list { scroll-snap-type: x proximity; overscroll-behavior-inline: contain; }
  .brand-button,
  .filter-button,
  .subcategory-button { scroll-snap-align: start; }
  .catalogue-filter-heading { min-height: 2.75rem; }
  .catalogue-filter-toggle { min-height: 2.75rem; }
  .brand-strip.catalogue-filter-group.is-expanded .brand-list { max-height: 13rem; }
  .product-link { min-height: 2.75rem; align-items: center; }
  .ebike-footer a { display: inline-flex; min-height: 2.75rem; align-items: center; }
  .search-field input { min-height: 2.75rem; }
  .site-footer { padding-bottom: env(safe-area-inset-bottom); }
  .mascot-float { bottom: max(.8rem, env(safe-area-inset-bottom)); }
}

@media (max-width: 480px) {
  .mobile-nav { grid-template-columns: 1fr; right: 14px; left: 14px; }
  .search-field { gap: .5rem; padding-right: .8rem; padding-left: .9rem; }
  .search-field kbd { display: none; }
  .search-field input { font-size: 16px; }
  .catalogue-state { min-height: 280px; padding-right: .75rem; padding-left: .75rem; }
  .catalogue-state-actions { width: 100%; }
  .catalogue-state-actions .button { width: 100%; justify-content: center; }
}

@media (max-width: 360px) {
  .brand { width: 2.25rem; }
  .brand-name,
  .brand-name::after { display: none; }
  .header-session { width: 2.75rem; padding: 0; }
  .header-session svg { display: block; }
  .header-session span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }
}

@media (pointer: coarse) {
  .header-session,
  .header-cart,
  .header-menu-toggle,
  .product-zoom-trigger,
  .product-zoom-close,
  .filter-button,
  .brand-button,
  .subcategory-button,
  .pagination-tab { min-height: 44px; }
  .product-zoom-trigger,
  .product-zoom-close { min-width: 44px; }
  .filter-button,
  .brand-button,
  .subcategory-button { padding-top: .65rem; padding-bottom: .65rem; }
  .text-link,
  .product-link,
  .ebike-footer a { display: inline-flex; min-height: 44px; align-items: center; }
}

@media (max-width: 900px) and (max-height: 500px) {
  .hero-video-section { min-height: 650px; }
  .hero-video-section .hero-grid { min-height: 650px; padding-top: 7.5rem; padding-bottom: 3.5rem; }
  .hero-copy h1 { max-width: 8ch; font-size: clamp(3.4rem, 10vw, 4.4rem); }
  .hero-types { margin-top: 1rem; }
  .hero-lede { max-width: 34rem; margin-top: 1.25rem; }
  .hero-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 31rem; margin-top: 1.25rem; }
  .hero-side-panel { margin-top: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  .top-ticker-track,
  .brand-marquee-track { animation-play-state: paused; }
  .hero-backdrop { display: none; }
  .hero-video-section { background: #09090b; }
  .hero-line,
  .hero-types,
  .hero-lede,
  .hero-actions,
  .hero-footnote,
  .hero-side-panel { opacity: 1; transform: none; clip-path: none; animation: none; }
  .scene-swing.is-swinging img,
  .mascot-bridge.is-riding .bridge-ride,
  .mascot-bridge.is-riding .scene-motorcycle { animation: none; }
  .scroll-reveal { opacity: 1; transform: none; transition: none; }
  .mascot-float { opacity: 1; transform: none; }
  .mascot-float img { transition: none; }
  .product-zoom-dialog[open],
  .product-zoom-dialog[open]::backdrop,
  .product-zoom-dialog[open] .product-zoom-shell,
  .product-zoom-dialog[open] .product-zoom-image { animation: none; }
  .catalogue-complete .product-grid { transition: none; }
  .catalogue-pagination-wrap > [data-full-loading]::before { animation: none; }
  .catalogue-filter-group.is-expanded .catalogue-filter-items { animation: none; }
}

@media (forced-colors: active) {
  .catalogue-state,
  .product-zoom-dialog,
  .product-card { border: 1px solid CanvasText; }
}

/* Harden: teclado, etiquetas extremas y enlaces compartibles sin alterar el layout. */
.skip-link {
  position: fixed;
  z-index: 10050;
  top: max(.75rem, env(safe-area-inset-top));
  left: max(.75rem, env(safe-area-inset-left));
  max-width: calc(100vw - 1.5rem);
  padding: .75rem 1rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--orange);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(calc(-100% - 2rem));
  transition: transform .18s ease;
}
.skip-link:focus { transform: translateY(0); }
.brand-button,
.filter-button,
.subcategory-button {
  max-width: min(20rem, 100%);
  line-height: 1.2;
  overflow-wrap: anywhere;
  text-align: center;
  white-space: normal;
}
@media (prefers-reduced-motion: reduce) {
  .skip-link { transition: none; }
}
