:root {
  --ink: #151515;
  --muted: #676767;
  --line: #e5e1dc;
  --paper: #fffdf9;
  --soft: #f4f0ea;
  --accent: #d74124;
  --accent-dark: #912818;
  --olive: #5f6e48;
  --steel: #27323a;
  --gold: #c9983f;
  --shadow: 0 18px 45px rgba(21, 21, 21, 0.13);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; object-fit: cover; }
a, button { color: inherit; }
button, input { font: inherit; }
button { cursor: pointer; border: 0; background: none; }

.announcement {
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: 9px 16px;
  font-size: 13px;
  letter-spacing: 0.2px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 249, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  overflow: visible;
}

.topbar {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 0 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.8px;
  white-space: nowrap;
}
.brand-logo {
  width: 104px;
  height: 58px;
  object-fit: contain;
}
.footer-logo {
  width: 122px;
  height: 76px;
  filter: invert(1);
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 34px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--steel));
  font-size: 13px;
  border-radius: 4px;
}
.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;
}

.searchbar {
  position: relative;
  min-width: 260px;
  height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--soft);
  border: 1px solid var(--line);
  padding: 0 14px;
}
.searchbar input { width: 100%; border: 0; outline: 0; background: transparent; }
.search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 130;
  display: none;
  max-height: 420px;
  overflow: auto;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.search-suggestions.open { display: grid; gap: 10px; }
.search-suggestions p {
  margin: 0;
  padding: 12px;
  color: var(--muted);
}

.utility-nav { display: flex; align-items: center; gap: 12px; }
.utility-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--steel);
}
.utility-link svg, .icon-btn svg { width: 20px; height: 20px; }
.utility-link b {
  min-width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
}

.main-nav {
  position: relative;
  height: 48px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 2px;
  border-top: 1px solid var(--line);
  overflow: visible;
}
.nav-item { position: static; }
.nav-item > button, .main-nav > a {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}
.nav-item > button svg { width: 15px; }
.sale-link { color: var(--accent); }

.mega-menu {
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: min(900px, 92vw);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  background: #fff;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  transition: 160ms ease;
  z-index: 100;
}
.nav-item:first-child .mega-menu,
.nav-item:nth-child(2) .mega-menu {
  left: 0;
  transform: translateY(10px);
}
.nav-item:last-of-type .mega-menu {
  left: auto;
  right: 0;
  transform: translateY(10px);
}
.nav-item:hover .mega-menu, .nav-item:focus-within .mega-menu, .nav-item.open .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-item:first-child:hover .mega-menu,
.nav-item:first-child:focus-within .mega-menu,
.nav-item:nth-child(2):hover .mega-menu,
.nav-item:nth-child(2):focus-within .mega-menu,
.nav-item:first-child.open .mega-menu,
.nav-item:nth-child(2).open .mega-menu,
.nav-item:last-of-type:hover .mega-menu,
.nav-item:last-of-type:focus-within .mega-menu,
.nav-item:last-of-type.open .mega-menu {
  transform: translateY(0);
}
.mega-menu h4 { margin: 0 0 12px; font-size: 14px; text-transform: uppercase; }
.mega-menu a {
  display: block;
  padding: 7px 0;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
}
.mega-menu a:hover { color: var(--accent); }
.mega-menu.compact { grid-template-columns: repeat(4, 1fr); width: min(720px, 92vw); }
.bike-menu { grid-template-columns: repeat(4, 1fr); }

.hero {
  min-height: 640px;
  display: flex;
  align-items: end;
  padding: 60px 6vw;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.78), rgba(0,0,0,0.22) 55%, rgba(0,0,0,0.05)),
    url("https://images.unsplash.com/photo-1558981852-426c6c22a060?auto=format&fit=crop&w=1800&q=80") center/cover;
}
.hero-copy { width: min(650px, 100%); }
.hero p, .promo-band p, .style-panel p, .eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1.7px;
  font-size: 12px;
}
.hero h1 {
  margin: 0 0 26px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: 0;
}
.primary-btn, .light-btn, .checkout-btn, .newsletter button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  border-radius: 4px;
}
.light-btn { background: #fff; color: var(--ink); }

.section { padding: 64px 6vw; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}
.section-head h2 { margin: 0; font-size: clamp(26px, 4vw, 42px); }
.section-head a { color: var(--accent); font-weight: 800; text-decoration: none; }

.tabs, .filter-row, .style-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.tabs button, .filter, .style-tabs button {
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  font-weight: 700;
}
.tabs .active, .filter.active, .style-tabs .active { background: var(--ink); color: #fff; border-color: var(--ink); }

.bike-finder {
  background: #fff;
  padding-top: 28px;
  padding-bottom: 34px;
  overflow: hidden;
}
.bike-section-head {
  text-align: center;
  margin-bottom: 18px;
}
.bike-section-head h2 {
  margin: 0;
  color: #000;
  font-size: 28px;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 900;
}
.bike-finder .tabs {
  justify-content: center;
  gap: 18px;
  margin-bottom: 20px;
  overflow-x: auto;
  flex-wrap: nowrap;
  scrollbar-width: none;
}
.bike-finder .tabs::-webkit-scrollbar { display: none; }
.bike-finder .tabs button {
  min-width: max-content;
  min-height: 35px;
  padding: 0 22px;
  border: 1px solid transparent;
  background: #fff;
  color: #111;
  border-radius: 0;
  font-weight: 700;
}
.bike-finder .tabs .active {
  background: #fff;
  color: #db1215;
  border-color: #db1215;
}
.bike-grid {
  display: flex;
  gap: 34px;
  overflow-x: auto;
  padding: 0 0 12px;
  scroll-snap-type: x mandatory;
  scrollbar-color: #8d8d8d #e6e6e6;
}
.bike-grid::-webkit-scrollbar { height: 8px; }
.bike-grid::-webkit-scrollbar-track { background: #e6e6e6; }
.bike-grid::-webkit-scrollbar-thumb { background: #8d8d8d; border-radius: 999px; }
.bike-card {
  flex: 0 0 clamp(240px, 21vw, 330px);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  gap: 6px;
  color: #111;
  text-align: center;
  text-decoration: none;
  scroll-snap-align: start;
}
.bike-card img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  background: #fff;
}
.bike-card h3 {
  margin: 0;
  color: #111;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 500;
}
.collection-grid, .review-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.collection-grid article {
  min-height: 190px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--steel);
}
.collection-grid article[data-collection-link],
.brand-marquee span[data-collection-link],
.look-grid article[data-collection-link],
.brand-strip h2[data-collection-link] {
  cursor: pointer;
}
.collection-grid img { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.68; }
.collection-grid article > :not(img) { position: relative; z-index: 1; }
.collection-grid h3 { margin: 0 0 6px; }
.collection-grid p { margin: 0; color: rgba(255,255,255,0.82); }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
}
.product-media { position: relative; aspect-ratio: 1 / 1.05; background: var(--soft); overflow: hidden; }
.product-image-link { display: block; width: 100%; height: 100%; color: inherit; text-decoration: none; }
.product-media img { width: 100%; height: 100%; transition: transform 220ms ease; }
.product-card:hover img { transform: scale(1.05); }
.badge {
  position: absolute;
  left: 12px;
  top: 12px;
  background: var(--accent);
  color: #fff;
  padding: 5px 8px;
  font-size: 12px;
  font-weight: 800;
  border-radius: 3px;
}
.quick-actions {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  opacity: 0;
  transform: translateY(8px);
  transition: 160ms ease;
}
.product-card:hover .quick-actions { opacity: 1; transform: translateY(0); }
.quick-actions button {
  min-height: 38px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.quick-actions svg { width: 18px; height: 18px; }
.product-info { padding: 14px; }
.sizes { min-height: 24px; display: flex; flex-wrap: wrap; gap: 6px; color: var(--muted); font-size: 12px; }
.product-info h3 { min-height: 42px; margin: 8px 0; font-size: 15px; line-height: 1.35; }
.product-info h3 a { color: inherit; text-decoration: none; }
.price { display: flex; gap: 8px; align-items: center; font-weight: 900; }
.price s { color: var(--muted); font-weight: 400; }
.swatches { display: flex; gap: 6px; margin-top: 12px; }
.swatches span { width: 18px; height: 18px; border-radius: 999px; border: 1px solid rgba(0,0,0,0.18); }

.promo-band {
  min-height: 460px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 6vw;
  color: #fff;
  overflow: hidden;
  background: #000;
}
.promo-band img { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.54; }
.promo-band div { position: relative; width: min(560px, 100%); }
.promo-band h2, .style-panel h2 { margin: 0 0 24px; font-size: clamp(32px, 5vw, 56px); line-height: 1; }

.look-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 18px; }
.look-grid article { position: relative; min-height: 340px; overflow: hidden; background: var(--steel); }
.look-grid img { width: 100%; height: 100%; opacity: 0.76; }
.look-grid span {
  position: absolute;
  left: 20px;
  bottom: 20px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.collection-grid article { min-height: 260px; padding: 18px; display: flex; flex-direction: column; justify-content: end; }
.collection-grid button {
  width: max-content;
  margin-top: 14px;
  padding: 10px 14px;
  background: #fff;
  color: var(--ink);
  border-radius: 4px;
  font-weight: 800;
}

.brand-strip { background: var(--soft); overflow: hidden; }
.brand-marquee { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 22px; }
.brand-marquee span {
  padding: 18px 24px;
  min-width: 130px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 900;
}

.style-discovery { padding: 64px 6vw; background: var(--steel); color: #fff; }
.style-tabs { margin-bottom: 18px; }
.style-tabs button { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.2); }
.style-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}
.style-panel img { width: 100%; height: 440px; }

.compact-products .product-card:nth-child(n+5) { display: none; }
.review-grid { grid-template-columns: repeat(3, 1fr); }
.review-grid article {
  background: #fff;
  border: 1px solid var(--line);
  padding: 24px;
}
.review-grid p { font-size: 19px; line-height: 1.45; }
.review-grid h3 { margin-bottom: 5px; }
.review-grid span { color: var(--muted); }

.site-footer {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 1fr 1.05fr;
  gap: 54px;
  padding: 58px 6vw 64px;
  background: #0f0f0f;
  color: #fff;
}
.site-footer h3 {
  margin: 0 0 14px;
  font-size: 17px;
  font-weight: 900;
}
.site-footer p,
.site-footer a {
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  line-height: 1.65;
}
.site-footer a {
  display: block;
  margin: 7px 0;
  text-decoration: none;
}
.footer-contact h3:not(:first-child) { margin-top: 22px; }
.footer-contact p,
.footer-contact a {
  max-width: 330px;
}
.footer-contact svg {
  width: 15px;
  height: 15px;
  margin-right: 7px;
  color: #ff3a43;
  vertical-align: -2px;
}
.footer-links a { margin: 10px 0; }
.footer-news p {
  max-width: 390px;
  margin: 0 0 26px;
}
.newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 116px;
  gap: 0;
  width: 100%;
  max-width: 390px;
  padding: 8px;
  background: #fff;
}
.newsletter input {
  width: 100%;
  height: 44px;
  border: 0;
  background: #fff;
  color: #111;
  padding: 0 12px;
  outline: 0;
}
.newsletter button {
  width: 100%;
  min-height: 44px;
  background: #070707;
  color: #fff;
  border-radius: 0;
}
.terms-check {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}
.terms-check input {
  width: 16px;
  height: 16px;
  accent-color: #fff;
}
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.social-row a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 999px;
  margin: 0;
  color: #fff;
  font-weight: 800;
}
.social-row svg {
  width: 17px;
  height: 17px;
  margin: 0;
  color: #fff;
}
.floating-contact {
  position: fixed;
  right: 0;
  bottom: 116px;
  z-index: 70;
  display: grid;
  gap: 10px;
  padding: 8px;
  background: rgba(227, 25, 35, 0.68);
}
.floating-contact a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: #f5222d;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}
.floating-contact svg {
  width: 24px;
  height: 24px;
}

.drawer, .mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 80;
  width: min(420px, 92vw);
  height: 100vh;
  padding: 22px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateX(110%);
  transition: 180ms ease;
}
.drawer.open, .mobile-menu.open { transform: translateX(0); }
.drawer-head { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line); padding-bottom: 14px; }
.drawer-head h2 { margin: 0; }
.icon-btn { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 4px; background: #fff; }
.drawer-list { display: grid; gap: 12px; margin: 20px 0; max-height: 55vh; overflow: auto; }
.drawer-item { display: grid; grid-template-columns: 72px 1fr; gap: 12px; align-items: center; }
.drawer-item img { width: 72px; height: 72px; background: var(--soft); }
.drawer-item h3 { margin: 0 0 4px; font-size: 14px; }
.drawer-item p { margin: 0; color: var(--muted); }
.drawer-total { display: flex; justify-content: space-between; padding: 18px 0; border-top: 1px solid var(--line); font-size: 18px; }
.checkout-btn { width: 100%; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  place-items: center;
  padding: 22px;
  background: rgba(0,0,0,0.55);
}
.modal.open { display: grid; }
.modal-card {
  position: relative;
  width: min(920px, 100%);
  max-height: 90vh;
  overflow: auto;
  background: #fff;
  padding: 28px;
}
.modal-close { position: absolute; right: 14px; top: 14px; z-index: 2; }
.toast {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 120;
  max-width: min(320px, calc(100vw - 36px));
  padding: 13px 16px;
  background: var(--ink);
  color: #fff;
  border-radius: 4px;
  box-shadow: var(--shadow);
  font-size: 14px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: 180ms ease;
}
.toast.show {
  opacity: 1;
  transform: translateY(0);
}
.quick-view { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.quick-view img { width: 100%; height: 480px; background: var(--soft); }
.quick-view h2 { margin-top: 0; font-size: 34px; }
.quick-view .primary-btn { width: 100%; margin-top: 18px; }
.auth-popup {
  display: grid;
  grid-template-columns: minmax(250px, 0.82fr) minmax(360px, 1fr);
  min-height: 560px;
  margin: -28px;
  background: #fff;
}
.auth-side {
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 18px;
  padding: 34px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(15,15,15,0.22), rgba(15,15,15,0.88)),
    url("https://images.unsplash.com/photo-1558981852-426c6c22a060?auto=format&fit=crop&w=900&q=80") center/cover;
}
.auth-side img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  background: rgba(255,255,255,0.9);
  border-radius: 999px;
  padding: 8px;
}
.auth-side h2,
.auth-main h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.1;
}
.auth-side p {
  max-width: 310px;
  margin: 0;
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
}
.auth-benefits {
  display: grid;
  gap: 9px;
  margin-top: 8px;
}
.auth-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}
.auth-benefits svg { width: 18px; height: 18px; color: #ffcc66; }
.auth-main {
  display: grid;
  align-content: start;
  gap: 22px;
  padding: 34px;
}
.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 4px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 6px;
}
.auth-tabs button {
  min-height: 42px;
  border-radius: 4px;
  font-weight: 900;
}
.auth-tabs button.active {
  background: var(--ink);
  color: #fff;
}
.auth-form { display: none; }
.auth-form.active { display: grid; }
.login-form {
  gap: 14px;
}
.login-form label {
  display: grid;
  gap: 7px;
}
.login-form label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.login-form input {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid var(--line);
  background: var(--soft);
  outline: 0;
  border-radius: 4px;
}
.login-form input:focus {
  border-color: var(--accent);
  background: #fff;
}
.auth-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.password-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px;
  border: 1px solid var(--line);
  background: var(--soft);
  border-radius: 4px;
}
.password-field:focus-within {
  border-color: var(--accent);
  background: #fff;
}
.password-field input {
  border: 0;
  background: transparent;
}
.password-field button {
  display: grid;
  place-items: center;
  border-left: 1px solid var(--line);
}
.password-field svg { width: 18px; height: 18px; }
.auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 13px;
}
.auth-row button {
  color: var(--accent);
  font-weight: 900;
}
.remember-check {
  display: flex !important;
  align-items: center;
  gap: 8px !important;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.remember-check input {
  width: 16px;
  min-height: 16px;
  accent-color: var(--accent);
}
.login-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.account-summary {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--soft);
}
.account-summary > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.account-summary p {
  margin: 4px 0 0;
  color: var(--muted);
}
.account-actions {
  display: grid;
  grid-template-columns: 1fr 130px;
  gap: 10px;
}
.account-popup { min-height: 420px; }
.search-results { display: grid; gap: 12px; margin-top: 18px; }
.search-result {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  width: 100%;
  padding: 10px;
  border: 1px solid var(--line);
  background: #fff;
  text-align: left;
}
.search-result img {
  width: 86px;
  height: 86px;
  background: var(--soft);
}
.search-result span {
  display: grid;
  gap: 4px;
}
.search-result small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.search-result strong {
  font-size: 16px;
  line-height: 1.35;
}
.search-result b {
  color: var(--accent);
}
.saved-panel h2 { margin: 0; font-size: 30px; }
.saved-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-right: 46px;
  margin-bottom: 22px;
}
.saved-total {
  min-width: 150px;
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--soft);
  text-align: right;
}
.saved-total span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.saved-list { display: grid; gap: 12px; }
.saved-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  background: #fff;
}
.saved-thumb {
  width: 96px;
  height: 96px;
  padding: 0;
  background: var(--soft);
  overflow: hidden;
}
.saved-thumb img { width: 100%; height: 100%; }
.saved-item p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.saved-item h3 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.35;
}
.saved-actions {
  display: grid;
  gap: 8px;
  min-width: 132px;
}
.saved-actions .primary-btn {
  min-height: 38px;
  padding: 0 14px;
}
.remove-btn {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--line);
  color: var(--accent);
  font-weight: 800;
}
.remove-btn svg { width: 17px; height: 17px; }
.empty-state {
  margin: 0;
  padding: 22px;
  border: 1px dashed var(--line);
  color: var(--muted);
  text-align: center;
}
.compare-scroll {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
}
.compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: #fff;
}
.compare-table th,
.compare-table td {
  min-width: 190px;
  padding: 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.compare-table th:first-child,
.compare-table td:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
  min-width: 130px;
  background: var(--soft);
  font-weight: 900;
}
.compare-table thead th {
  background: #fff;
}
.compare-table thead th:first-child {
  z-index: 2;
  background: var(--soft);
}
.compare-table img {
  width: 100%;
  height: 150px;
  margin-bottom: 10px;
  background: var(--soft);
}
.compare-table h3 {
  min-height: 44px;
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.35;
}
.compare-table .primary-btn {
  width: 100%;
  min-height: 38px;
  padding: 0 12px;
}
.compare-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.compare-swatches span {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.18);
}
.mobile-menu a { display: block; padding: 15px 0; border-bottom: 1px solid var(--line); text-decoration: none; font-weight: 800; }
.mobile-only { display: none; }

.product-page {
  padding: 28px 6vw 64px;
  background: #fff;
}
.product-page[hidden] { display: none; }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
}
.breadcrumb a { color: var(--ink); text-decoration: none; font-weight: 800; }
.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: 42px;
  align-items: start;
}
.product-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.product-gallery-tile {
  display: block;
  width: 100%;
  min-height: 260px;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--soft);
  overflow: hidden;
}
.product-gallery-tile.large { grid-column: 1 / -1; min-height: 560px; }
.product-gallery-tile img { width: 100%; height: 100%; object-fit: cover; }
.product-buybox {
  position: sticky;
  top: 132px;
  padding: 4px 0 24px;
}
.stock-label {
  width: max-content;
  margin: 0 0 12px;
  padding: 6px 10px;
  background: var(--soft);
  border: 1px solid var(--line);
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.product-buybox h1 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}
.product-page-price {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 24px;
}
.product-page-price strong { font-size: 26px; }
.product-page-price s { color: var(--muted); }
.discount-note {
  padding: 5px 8px;
  background: #e33b24;
  color: #fff;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 900;
}
.variant-block {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.variant-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.variant-head span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.color-choices, .size-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.color-choices button {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.2);
}
.color-choices button.active { box-shadow: 0 0 0 2px var(--ink); }
.size-choices button {
  min-width: 54px;
  min-height: 42px;
  padding: 0 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-weight: 800;
}
.size-choices button.active {
  background: var(--ink);
  color: #fff;
}
.quantity-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.quantity-row > span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.qty-control {
  display: grid;
  grid-template-columns: 42px 56px 42px;
  border: 1px solid var(--line);
}
.qty-control button, .qty-control input {
  height: 42px;
  border: 0;
  background: #fff;
  text-align: center;
  font-weight: 900;
}
.qty-control input { border-inline: 1px solid var(--line); }
.product-actions-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 12px 0 18px;
}
.product-actions-row button {
  min-height: 44px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 4px;
  font-weight: 800;
}
.product-meta {
  padding: 16px;
  background: var(--soft);
  border: 1px solid var(--line);
}
.product-meta p { margin: 0 0 8px; color: var(--muted); }
.product-meta p:last-child { margin-bottom: 0; }
.product-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 52px 0;
}
.product-highlights article {
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--soft);
}
.product-highlights svg { color: var(--accent); }
.product-highlights h3 { margin: 12px 0 6px; }
.product-highlights p { margin: 0; color: var(--muted); line-height: 1.45; }
.product-info-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.product-info-tabs h2 { margin-top: 0; }
.product-info-tabs p, .product-info-tabs li {
  color: var(--muted);
  line-height: 1.65;
}
.related-products { padding-inline: 0; }
.collection-hero {
  min-height: 230px;
  display: grid;
  align-content: end;
  gap: 8px;
  margin-bottom: 28px;
  padding: 34px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(21,21,21,0.84), rgba(21,21,21,0.22)),
    url("https://images.unsplash.com/photo-1558981403-c5f9899a28bc?auto=format&fit=crop&w=1600&q=80") center/cover;
}
.collection-hero p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  font-weight: 900;
}
.collection-hero h1 {
  margin: 0;
  font-size: clamp(34px, 6vw, 66px);
  line-height: 1;
}
.collection-hero span { font-weight: 800; }
.subcategory-rail-section {
  margin: 0 0 24px;
  padding: 22px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 28px rgba(21, 21, 21, 0.06);
}
.subcategory-rail-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}
.subcategory-rail-head h2 {
  margin: 0;
  font-size: 24px;
}
.subcategory-rail-head span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.subcategory-rail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
  padding: 2px 0 0;
}
.subcategory-pill {
  min-height: 78px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--soft);
  border-radius: 6px;
  text-align: left;
  transition: 160ms ease;
}
.subcategory-pill small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.subcategory-pill strong {
  font-size: 15px;
  line-height: 1.25;
}
.subcategory-pill:hover,
.subcategory-pill.active {
  border-color: var(--accent);
  background: #fff;
  color: var(--accent);
  box-shadow: 0 12px 24px rgba(215, 65, 36, 0.12);
}
.collection-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}
.collection-sidebar {
  position: sticky;
  top: 132px;
  display: grid;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 28px rgba(21, 21, 21, 0.05);
}
.filter-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.collection-sidebar h2,
.filter-block h3 {
  margin: 0 0 8px;
  font-size: 18px;
}
.filter-panel-head h2 { margin: 0; }
.filter-panel-head button {
  min-height: 34px;
  padding: 0 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.filter-block {
  display: grid;
  gap: 8px;
}
.filter-block h3 {
  margin: 0 0 2px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}
.collection-sidebar button,
.filter-block select,
.sort-control select,
.price-inputs input {
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 4px;
  font-weight: 800;
}
.collection-sidebar button { text-align: left; }
.collection-sidebar button.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.subcategory-block {
  padding-top: 4px;
  border-top: 1px solid var(--line);
}
.subcategory-group {
  display: grid;
  gap: 3px;
}
.subcategory-group + .subcategory-group {
  margin-top: 8px;
}
.subcategory-group h4 {
  margin: 8px 0 3px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.subcategory-group button {
  min-height: 34px;
  padding: 0 10px 0 14px;
  border-color: transparent;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
.subcategory-group button:hover {
  background: var(--soft);
  color: var(--accent);
}
.subcategory-group button.active {
  background: var(--soft);
  color: var(--accent);
  border-color: var(--line);
}
.price-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.range-values {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}
.range-slider {
  position: relative;
  min-height: 32px;
  display: grid;
  align-items: center;
}
.range-slider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--soft);
  border-radius: 999px;
}
.range-slider input {
  position: absolute;
  width: 100%;
  height: 32px;
  margin: 0;
  pointer-events: none;
  appearance: none;
  background: transparent;
}
.range-slider input::-webkit-slider-thumb {
  width: 18px;
  height: 18px;
  border: 3px solid #fff;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(21, 21, 21, 0.25);
  pointer-events: auto;
  appearance: none;
}
.range-slider input::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 3px solid #fff;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(21, 21, 21, 0.25);
  pointer-events: auto;
}
.price-inputs label,
.sort-control {
  display: grid;
  gap: 5px;
}
.price-inputs span,
.sort-control span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.price-inputs input { width: 100%; font-weight: 700; }
.apply-filter-btn {
  justify-content: center;
  background: var(--soft) !important;
  text-align: center !important;
}
.filter-check {
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--steel);
  font-size: 14px;
  font-weight: 700;
}
.filter-check input {
  width: 16px;
  height: 16px;
  accent-color: var(--ink);
}
.collection-toolbar {
  min-height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 28px rgba(21, 21, 21, 0.05);
}
.collection-toolbar span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.active-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 8px;
}
.active-chips span {
  padding: 6px 9px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
}
.active-chips b { color: var(--ink); }
.sort-control {
  width: min(230px, 100%);
}
.sort-control select {
  width: 100%;
  min-height: 42px;
  font-weight: 800;
}
.product-card-meta {
  min-height: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}
.product-card-meta span {
  padding: 4px 7px;
  background: var(--soft);
  color: var(--muted);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.info-hero {
  min-height: 280px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
  padding: 36px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(15,15,15,0.9), rgba(39,50,58,0.72)),
    url("https://images.unsplash.com/photo-1558981285-6f0c94958bb6?auto=format&fit=crop&w=1600&q=80") center/cover;
}
.info-hero p {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 12px;
  font-weight: 900;
}
.info-hero h1 {
  max-width: 760px;
  margin: 0 0 14px;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1;
}
.info-hero span {
  display: block;
  max-width: 720px;
  color: rgba(255,255,255,0.84);
  font-size: 18px;
  line-height: 1.55;
}
.info-hero-icon {
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  justify-self: end;
  margin-bottom: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(8px);
}
.info-hero-icon svg {
  width: 48px;
  height: 48px;
}
.info-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}
.info-sidebar {
  position: sticky;
  top: 132px;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 28px rgba(21, 21, 21, 0.05);
}
.info-sidebar h2 {
  margin: 0 0 8px;
  font-size: 20px;
}
.info-sidebar a {
  min-height: 44px;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  color: var(--steel);
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
}
.info-sidebar a svg {
  width: 18px;
  height: 18px;
  color: var(--muted);
}
.info-sidebar a:hover,
.info-sidebar a.active {
  background: var(--soft);
  border-color: var(--line);
  color: var(--accent);
}
.info-sidebar a.active svg,
.info-sidebar a:hover svg {
  color: var(--accent);
}
.info-content {
  display: grid;
  gap: 22px;
}
.policy-sections {
  display: grid;
  gap: 16px;
}
.policy-sections article,
.faq-list details,
.blog-grid article,
.sitemap-grid article,
.info-form,
.info-support {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 28px rgba(21, 21, 21, 0.05);
}
.policy-sections article {
  padding: 24px;
}
.policy-sections h2,
.sitemap-grid h2,
.blog-grid h2 {
  margin: 0 0 10px;
  font-size: 22px;
}
.policy-sections p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.75;
}
.policy-sections p:last-child { margin-bottom: 0; }
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-list details {
  padding: 0;
}
.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 900;
}
.faq-list summary::after {
  content: "+";
  color: var(--accent);
  font-size: 22px;
}
.faq-list details[open] summary::after { content: "-"; }
.faq-list p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  line-height: 1.65;
}
.blog-grid,
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.blog-grid article,
.sitemap-grid article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 210px;
  padding: 24px;
}
.blog-grid span {
  width: max-content;
  padding: 5px 8px;
  background: var(--soft);
  color: var(--accent);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.blog-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.blog-grid a,
.sitemap-grid a {
  color: var(--accent);
  font-weight: 900;
  text-decoration: none;
}
.sitemap-grid a {
  display: block;
  padding: 8px 0;
  border-top: 1px solid var(--line);
  color: var(--steel);
}
.info-form {
  display: grid;
  gap: 14px;
  padding: 22px;
}
.info-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.info-form label {
  display: grid;
  gap: 7px;
}
.info-form label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.info-form input,
.info-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid var(--line);
  background: var(--soft);
  border-radius: 4px;
  outline: 0;
  font: inherit;
}
.info-form textarea {
  min-height: 130px;
  padding-top: 12px;
  resize: vertical;
}
.info-form input:focus,
.info-form textarea:focus {
  background: #fff;
  border-color: var(--accent);
}
.info-form p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
.info-support {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  background: var(--steel);
  color: #fff;
}
.info-support h2 {
  margin: 0 0 8px;
  font-size: 26px;
}
.info-support span {
  color: rgba(255,255,255,0.76);
  line-height: 1.55;
}
.info-support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.info-support-actions a {
  min-width: 130px;
  gap: 8px;
}
.info-support-actions svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 1120px) {
  .topbar { grid-template-columns: auto 1fr auto; padding: 0 20px; }
  .searchbar { display: none; }
  .main-nav { justify-content: start; overflow-x: auto; padding: 0 12px; }
  .product-grid, .bike-grid, .collection-grid { grid-template-columns: repeat(3, 1fr); }
  .product-detail { grid-template-columns: 1fr; }
  .product-buybox { position: static; }
  .product-highlights { grid-template-columns: repeat(2, 1fr); }
  .collection-layout { grid-template-columns: 1fr; }
  .collection-sidebar { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .filter-panel-head { grid-column: 1 / -1; }
  .info-layout { grid-template-columns: 1fr; }
  .info-sidebar { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .info-sidebar h2 { grid-column: 1 / -1; }
  .subcategory-pill { flex-basis: 170px; }
  .site-footer { grid-template-columns: 1fr 1fr; gap: 34px; }
}

@media (max-width: 760px) {
  .mobile-only { display: grid; }
  .topbar { min-height: 68px; grid-template-columns: auto 1fr auto; gap: 10px; padding: 0 12px; }
  .brand-logo { width: 82px; height: 48px; }
  .brand-mark { width: 40px; height: 30px; }
  .utility-link span { display: none; }
  .utility-nav .utility-link:not(.cart-link) { display: none; }
  .main-nav { display: none; }
  .hero { min-height: 560px; padding: 36px 20px; }
  .section, .style-discovery { padding: 44px 20px; }
  .section-head { align-items: start; flex-direction: column; }
  .product-grid, .bike-grid, .collection-grid, .review-grid, .look-grid, .style-panel, .site-footer, .quick-view { grid-template-columns: 1fr; }
  .quick-actions { opacity: 1; transform: none; }
  .look-grid article, .style-panel img { height: 320px; }
  .promo-band { min-height: 420px; padding: 34px 20px; }
  .modal-card { padding: 18px; }
  .auth-popup {
    grid-template-columns: 1fr;
    min-height: 0;
    margin: -18px;
  }
  .auth-side {
    min-height: 220px;
    padding: 24px;
  }
  .auth-side img {
    width: 66px;
    height: 66px;
  }
  .auth-main { padding: 22px; }
  .auth-two,
  .account-actions { grid-template-columns: 1fr; }
  .auth-row {
    align-items: start;
    flex-direction: column;
  }
  .quick-view img { height: 320px; }
  .search-result { grid-template-columns: 72px 1fr; gap: 10px; }
  .search-result img { width: 72px; height: 72px; }
  .saved-head { align-items: start; flex-direction: column; padding-right: 42px; }
  .saved-total { width: 100%; text-align: left; }
  .saved-item { grid-template-columns: 78px 1fr; align-items: start; }
  .saved-thumb { width: 78px; height: 78px; }
  .saved-actions { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; min-width: 0; }
  .compare-table { min-width: 640px; }
  .compare-table th, .compare-table td { min-width: 160px; padding: 11px; }
  .compare-table img { height: 120px; }
  .product-page { padding: 20px; }
  .product-gallery { grid-template-columns: 1fr; }
  .product-gallery-tile, .product-gallery-tile.large { min-height: 340px; }
  .product-actions-row, .product-highlights, .product-info-tabs { grid-template-columns: 1fr; }
  .collection-hero { min-height: 190px; padding: 24px; }
  .subcategory-rail-section { padding: 16px; }
  .subcategory-rail-head { align-items: start; flex-direction: column; }
  .subcategory-pill { flex-basis: 158px; min-height: 72px; }
  .collection-sidebar { grid-template-columns: 1fr; }
  .filter-panel-head { grid-column: auto; }
  .collection-toolbar { align-items: start; flex-direction: column; }
  .sort-control { width: 100%; }
  .info-hero { grid-template-columns: 1fr; min-height: 250px; padding: 24px; }
  .info-hero-icon { justify-self: start; width: 76px; height: 76px; }
  .info-hero-icon svg { width: 34px; height: 34px; }
  .info-sidebar,
  .blog-grid,
  .sitemap-grid,
  .info-form-grid { grid-template-columns: 1fr; }
  .info-sidebar h2 { grid-column: auto; }
  .info-support { align-items: start; flex-direction: column; }
  .info-support-actions { width: 100%; }
  .info-support-actions a { flex: 1 1 150px; }
  .site-footer { gap: 26px; padding: 38px 22px 52px; }
  .newsletter { grid-template-columns: 1fr; }
  .floating-contact { bottom: 88px; }
}
