:root {
  --black: #050505;
  --ink: #202323;
  --muted: #8a8f8e;
  --line: #e9e9e6;
  --soft: #f5f5f2;
  --sand: #ebe6d5;
  --orange: #ff7417;
  --green: #7da244;
  --sea: #dceee6;
  --page: #ffffff;
  --white: #ffffff;
  --dark: #050505;
  --surface: #ffffff;
  --surface-alt: #f6f7f2;
  --media: #e6e6e4;
  --panel: #ffffff;
  --footer-bg: #303d40;
  --footer-text: #ffffff;
  --footer-muted: rgba(255,255,255,.72);
  --text-soft: #555555;
  --text-subtle: #777777;
  --text-faint: #aaaaaa;
  --success-bg: #f4f7ef;
  --success-text: #527130;
  --success-border: #e4edda;
  --swatch-red: #cf4429;
  --swatch-green: #5f7935;
  --swatch-black: #111111;
  --header-bg: rgba(255,255,255,.96);
  --shadow-soft: 0 12px 30px rgba(0,0,0,.075);
  --shadow-medium: 0 14px 34px rgba(0,0,0,.08);
  --shadow-large: 0 22px 60px rgba(0,0,0,.14);
  --shadow-accent: 0 24px 60px rgba(255, 105, 24, .26);
  --hero-text-color: rgba(255,255,255,.52);
  --hero-image-glow: radial-gradient(circle at 50% 48%, rgba(255,255,255,.36), rgba(255,255,255,0) 38%), linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.02) 42%, rgba(0,0,0,.1));
  --hero-text-shadow: 0 18px 70px rgba(0,0,0,.14);
  --hero-button-shadow: 0 18px 50px rgba(0,0,0,.18);
  --newsletter-overlay: linear-gradient(180deg, rgba(0,0,0,.28), rgba(0,0,0,.16));
  --overlay-soft: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.5));
  --overlay-medium: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.52));
  --overlay-strong: linear-gradient(90deg, rgba(0,0,0,.6), rgba(0,0,0,.08));
  --heading: "Bebas Neue", "Impact", sans-serif;
  --condensed: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Inter", Arial, sans-serif;
  --header-max: 1640px;
  --content-max: 1320px;
  --section-max: 1640px;
  --narrow-max: 1500px;
  --page-gutter: 58px;
  --card-radius: 8px;
  --button-radius: 999px;
  --button-height: 52px;
  --button-large-height: 66px;
  --button-padding-x: 32px;
  --button-large-padding-x: 44px;
  --button-font-size: 16px;
  --button-icon-size: 46px;
  --button-carousel-size: 54px;
  --button-gallery-nav-size: 56px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  color: var(--black);
  background: var(--page);
  font-family: var(--body);
  font-size: 16px;
  overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
button { cursor: pointer; border: 0; background: none; color: inherit; }
a,
summary,
label,
select,
.category-tile,
.product-card a,
.product-media,
.promo-card,
.collection-hero,
.filter-chips button,
.view-buttons button,
.filter-panel input[type="checkbox"],
.filter-panel input[type="range"],
.tabs button,
.swatches button,
.sizes button,
.qty-control button,
[data-wishlist],
[data-add-cart],
[data-quick-view],
[data-open-cart],
[data-open-search],
[data-open-menu] {
  cursor: pointer;
}

.promo-top {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  background: var(--orange);
  color: var(--white);
  text-transform: uppercase;
  font-family: var(--condensed);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0;
}
.promo-top button { color: var(--white); width: 34px; height: 34px; display: grid; place-items: center; }
.promo-top svg { width: 18px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.header-inner {
  height: 104px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: var(--header-max);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
}
.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.mobile-menu-button svg { width: 28px; height: 28px; stroke-width: 2.7; }
.main-nav, .header-actions { display: flex; align-items: center; gap: 27px; }
.main-nav a, .nav-trigger, .header-tool {
  font-family: var(--condensed);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 18px;
}
.main-nav .active { color: var(--green); }
.header-actions { justify-content: flex-end; gap: 20px; }
.header-tool, .nav-trigger { display: inline-flex; align-items: center; gap: 7px; }
.header-tool svg, .header-actions svg { width: 22px; height: 22px; stroke-width: 2.8; }
.nav-trigger svg { width: 16px; height: 16px; }
.cart-tool,
.wishlist-tool {
  position: relative;
}
.cart-tool span,
.wishlist-tool span {
  position: absolute;
  top: -12px;
  right: -14px;
  min-width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 800;
}
.nav-dropdown {
  position: relative;
  z-index: 25;
}
.nav-dropdown::after {
  content: "";
  position: absolute;
  left: -24px;
  right: -24px;
  top: 100%;
  height: 26px;
}
.mega-menu {
  position: absolute;
  z-index: 3;
  top: calc(100% + 14px);
  left: -24px;
  width: 560px;
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-large);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: .22s ease;
}
.nav-dropdown:hover .mega-menu,
.nav-dropdown.is-open .mega-menu {
  display: grid;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-menu a {
  display: grid;
  gap: 4px;
  padding: 18px;
  border-radius: 4px;
}
.mega-menu a:hover { background: var(--soft); }
.mega-menu span {
  font-family: var(--condensed);
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
}
.mega-menu small {
  color: var(--text-subtle);
  font-size: 13px;
  line-height: 1.35;
}

.brand-mark, .footer-brand {
  display: inline-grid;
  justify-items: center;
  gap: 2px;
  font-family: var(--condensed);
  font-weight: 900;
  line-height: 1;
}
.brand-logo-img {
  width: 150px;
  height: auto;
  max-width: 150px;
  max-height: 58px;
  object-fit: contain;
}
.footer-brand .brand-logo-img {
  width: 170px;
  max-width: 170px;
  max-height: 64px;
}
.mountain-logo {
  width: 58px;
  height: 46px;
  display: block;
  background:
    linear-gradient(120deg, transparent 0 44%, var(--white) 44% 52%, transparent 52%),
    linear-gradient(65deg, transparent 0 49%, var(--white) 49% 56%, transparent 56%),
    conic-gradient(from 225deg at 50% 84%, var(--dark) 0 90deg, transparent 0);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.hero {
  position: relative;
  height: 650px;
  overflow: hidden;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center 56%;
  transform: translateY(var(--parallax, 0px)) scale(1.04);
  z-index: -2;
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--hero-image-glow);
}
.hero-content {
  width: min(100%, var(--section-max));
  padding: 0 var(--page-gutter);
  display: grid;
  justify-items: center;
  text-align: center;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  color: var(--hero-text-color);
  font-family: var(--heading);
  font-size: clamp(180px, 24vw, 430px);
  line-height: .7;
  letter-spacing: 0;
  mix-blend-mode: screen;
  text-shadow: var(--hero-text-shadow);
}
.pill-btn, .dark-btn, .green-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--button-height);
  padding: 0 var(--button-padding-x);
  border-radius: var(--button-radius);
  text-transform: uppercase;
  font-family: var(--condensed);
  font-weight: 900;
  font-size: var(--button-font-size);
}
.pill-btn {
  min-height: var(--button-large-height);
  margin-top: -8px;
  padding: 0 var(--button-large-padding-x);
  background: var(--surface);
  color: var(--dark);
  box-shadow: var(--hero-button-shadow);
  transition: color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.pill-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .42s cubic-bezier(.22, 1, .36, 1);
}
.pill-btn:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}
.pill-btn:hover::before {
  transform: scaleX(1);
}
.pill-btn > * {
  position: relative;
  z-index: 1;
}
.dark-btn { background: var(--dark); color: var(--white); }
.green-btn { background: var(--green); color: var(--white); }
.pill-btn svg, .dark-btn svg, .green-btn svg { width: 20px; }

.benefits {
  max-width: var(--narrow-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}
.benefits.compact { padding: 34px var(--page-gutter); }
.benefits.wide { max-width: none; background: var(--soft); padding: 42px 11vw; border: 0; }
.benefits div {
  display: grid;
  grid-template-columns: 52px 1fr;
  column-gap: 18px;
  padding: 0 34px;
  border-right: 1px solid var(--line);
}
.benefits div:last-child { border-right: 0; }
.benefits svg { grid-row: span 2; width: 39px; height: 39px; stroke-width: 1.5; color: var(--text-soft); }
.benefits strong { font-family: var(--condensed); text-transform: uppercase; font-size: 20px; font-weight: 900; }
.benefits span { color: var(--muted); font-size: 14px; line-height: 1.45; }

@media (min-width: 1101px) {
  .hero {
    height: calc(100svh - 146px);
    min-height: 680px;
  }
  .benefits.compact {
    min-height: 124px;
    align-items: center;
  }
}

.section {
  max-width: var(--section-max);
  margin: 0 auto;
  padding: 104px var(--page-gutter);
}
.eyebrow {
  margin: 0 0 7px;
  color: var(--green);
  font-family: var(--condensed);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 15px;
}
h1, h2, h3 { margin: 0; letter-spacing: 0; }
.section h2, .reviews h2, .faqs h2, .recently h2, .page-title {
  font-family: var(--heading);
  text-transform: uppercase;
  font-weight: 400;
  line-height: .9;
}
.section > h2, .reviews h2, .faqs h2, .recently h2 {
  text-align: center;
  font-size: clamp(64px, 6vw, 104px);
  margin-bottom: 48px;
}
.categories { padding-top: 68px; }
.categories .eyebrow, .categories h2 { text-align: center; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.category-tile {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--card-radius);
  background: var(--line);
}
.category-tile img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform .6s ease; }
.category-tile::after { content: ""; position: absolute; inset: 0; background: var(--overlay-soft); }
.category-tile span {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 1;
  color: var(--white);
  font-family: var(--condensed);
  text-transform: uppercase;
  font-size: 36px;
  font-weight: 900;
}
.category-tile:hover img { transform: scale(1.08); }

.marquee {
  overflow: hidden;
  background: var(--orange);
  color: var(--white);
  height: 56px;
  display: flex;
  align-items: center;
  font-family: var(--condensed);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 21px;
}
.marquee div { display: flex; gap: 60px; min-width: max-content; animation: marquee 22s linear infinite; }
.marquee span::before { content: ""; display: inline-block; width: 7px; height: 7px; margin: 0 14px 1px 0; border-radius: 50%; background: var(--surface); }
@keyframes marquee { to { transform: translateX(-50%); } }

.product-row, .product-grid {
  display: grid;
  gap: 30px;
}
.product-row { grid-template-columns: repeat(3, 1fr); }
.product-row.four { grid-template-columns: repeat(4, 1fr); }
.product-row.slim { grid-template-columns: repeat(4, 1fr); margin-top: 18px; }
.product-grid.two { grid-template-columns: repeat(2, 1fr); }
.product-grid.catalog { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 46px 28px; }
.product-card {
  position: relative;
  min-width: 0;
  padding: 10px 10px 58px;
  border: 1px solid transparent;
  border-radius: var(--card-radius);
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease, background .22s ease;
}
.product-card:hover {
  border-color: var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}
.product-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 460px;
  background: var(--media);
  border-radius: 4px;
  overflow: hidden;
}
.product-row.slim .product-media { min-height: 300px; }
.catalog .product-media { min-height: 0; }
.product-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .5s ease, opacity .32s ease;
}
.product-media .hover-image {
  opacity: 0;
  transform: scale(1.015);
}
.product-media img[src*="/prod-"] { object-fit: contain; }
.product-card:hover .product-media img:first-child { opacity: 0; transform: scale(1.045); }
.product-card:hover .product-media .hover-image { opacity: 1; transform: scale(1.035); }
.vendor {
  height: 18px;
  margin: 8px 0 0;
  color: var(--text-faint);
  text-transform: uppercase;
  font-family: var(--condensed);
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  overflow: hidden;
}
.product-card h3 {
  margin: 0;
  font-family: var(--condensed);
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 900;
  max-width: 92%;
}
.product-media + h3 {
  margin-top: 15px;
}
.rating { margin: 8px 0 3px; font-size: 14px; color: var(--dark); }
.rating span { color: var(--text-subtle); }
.product-card > .rating { display: none; }
.price {
  margin: 7px 0 0;
  font-family: var(--condensed);
  font-size: 24px;
  font-weight: 700;
}
.price.sale { color: var(--orange); }
del { color: var(--text-faint); margin-left: 7px; font-size: .82em; }
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--orange);
  color: var(--white);
  border-radius: 3px;
  padding: 7px 10px;
  text-transform: uppercase;
  font-family: var(--condensed);
  font-weight: 900;
  font-size: 15px;
}
.mini-cart {
  position: absolute;
  right: 0;
  bottom: 0;
  min-height: calc(var(--button-height) - 10px);
  padding: 0 calc(var(--button-padding-x) - 12px);
  border-radius: var(--button-radius);
  background: var(--dark);
  color: var(--white);
  font-family: var(--condensed);
  font-size: calc(var(--button-font-size) - 2px);
  font-weight: 900;
  text-transform: uppercase;
}

.featured-commerce {
  padding: 104px var(--page-gutter);
  overflow: hidden;
}
.featured-commerce-inner {
  max-width: var(--section-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: stretch;
}
.featured-products-block {
  min-width: 0;
}
.compact-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}
.compact-head h2 {
  max-width: 620px;
  font-size: clamp(46px, 4vw, 72px);
}
.text-link,
.carousel-controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--condensed);
  font-weight: 900;
  text-transform: uppercase;
}
.text-link {
  gap: 8px;
  min-height: 42px;
  font-size: 18px;
}
.carousel-controls {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}
.carousel-controls button {
  width: var(--button-carousel-size);
  height: 42px;
  color: var(--text-faint);
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.carousel-controls button:hover {
  background: var(--dark);
  color: var(--white);
}
.text-link svg {
  width: 18px;
}
.spotlight-products {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 18px max(var(--page-gutter), calc((100vw - var(--section-max)) / 2)) 64px 14px;
  margin: -18px calc(-1 * max(var(--page-gutter), calc((100vw - var(--section-max)) / 2))) -34px -14px;
  scrollbar-width: none;
}
.spotlight-products::-webkit-scrollbar {
  display: none;
}
.spotlight-products .product-card {
  flex: 0 0 calc((100% - 66px) / 4.25);
  scroll-snap-align: start;
  box-shadow: none;
}
.spotlight-products .product-card:hover {
  box-shadow: var(--shadow-soft);
}
.spotlight-products .product-media {
  aspect-ratio: 1 / 1.08;
}
.spotlight-products .product-card h3 {
  font-size: 24px;
}
.promo-mosaic,
.promo-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(250px, 1fr);
  gap: 18px;
}
.promo-panel-grid.below-products {
  max-width: 1460px;
  margin: 48px auto 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 320px;
  justify-content: center;
}
.promo-panel-grid.below-products .promo-card-large,
.promo-panel-grid.below-products .promo-card:nth-child(2) {
  grid-row: span 1;
}
.promo-card { position: relative; overflow: hidden; color: var(--white); padding: 38px; display: flex; flex-direction: column; justify-content: flex-end; isolation: isolate; min-height: 320px; }
.promo-card-large,
.promo-card:nth-child(2) { grid-row: span 2; }
.promo-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .65s ease; }
.promo-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--overlay-medium); }
.promo-card:hover img { transform: scale(1.07); }
.promo-card span, .promo-card em { font-family: var(--condensed); font-weight: 900; text-transform: uppercase; font-style: normal; }
.promo-card strong { display: block; max-width: 520px; font-family: var(--heading); font-size: clamp(46px, 4.8vw, 86px); line-height: .85; text-transform: uppercase; font-weight: 400; }
.promo-card em { margin-top: 14px; }

.split-products {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 46px;
  align-items: start;
}
.side-title { position: sticky; top: 120px; padding-top: 18px; }
.side-title h2 { text-align: left; font-size: 92px; }

.brand-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: center;
  min-height: 132px;
  padding: 0 80px;
  background: var(--sand);
  text-align: center;
  font-family: Georgia, serif;
  font-size: 27px;
}

.collection-feature { padding-top: 104px; }
.collection-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: var(--white);
  cursor: pointer;
}
.collection-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.95); }
.collection-hero::after { content: ""; position: absolute; inset: 0; background: var(--overlay-strong); }
.collection-hero div { position: relative; z-index: 1; padding: 54px; text-transform: uppercase; }
.collection-hero span { font-family: var(--condensed); font-weight: 900; }
.collection-hero h2 { text-align: left; color: var(--white); font-size: 108px; max-width: 440px; }

.reviews {
  background: var(--surface-alt);
  padding: 112px var(--page-gutter);
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.review-track {
  max-width: var(--section-max);
  margin: 46px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.review-track article {
  min-height: 230px;
  background: var(--surface);
  padding: 36px;
  text-align: left;
  font-family: var(--condensed);
  text-transform: uppercase;
  font-size: 28px;
  line-height: 1.08;
  font-weight: 900;
}
.review-track strong { display: block; margin-top: 18px; color: var(--orange); font-size: 16px; }
.video-review { position: relative; padding: 0 !important; overflow: hidden; }
.video-review img { width: 100%; height: 100%; object-fit: cover; }
.video-review button { position: absolute; inset: 0; margin: auto; width: 68px; height: 68px; border-radius: 50%; background: var(--surface); display: grid; place-items: center; }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 38px;
}
.section-head h2 { text-align: left; margin: 0; }
.tips .section-head {
  align-items: end;
}
.tips-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 34px; align-items: stretch; }
.tip-main img { width: 100%; height: 450px; object-fit: cover; }
.tip-main h3, .tip-list h3 { margin-top: 20px; font-family: var(--condensed); font-size: 46px; line-height: .95; text-transform: uppercase; font-weight: 900; }
.tip-main p { color: var(--text-subtle); }
.tip-list { display: grid; gap: 18px; }
.tip-list article,
.tip-list a { display: grid; grid-template-columns: 270px 1fr; gap: 22px; align-items: center; min-height: 170px; }
.tip-list img { height: 170px; width: 100%; object-fit: cover; }
.tip-list h3 { margin: 0; font-size: 36px; }

.site-footer {
  background: var(--footer-bg);
  color: var(--white);
  padding: 82px var(--page-gutter) 32px;
}
.light-footer { background: var(--surface); color: var(--dark); border-top: 1px solid var(--line); }
.footer-top {
  max-width: var(--section-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr 620px;
  gap: 60px;
  align-items: start;
}
.footer-brand { justify-items: start; font-size: 25px; }
.footer-brand .mountain-logo { background:
    linear-gradient(120deg, transparent 0 44%, var(--footer-bg) 44% 52%, transparent 52%),
    linear-gradient(65deg, transparent 0 49%, var(--footer-bg) 49% 56%, transparent 56%),
    conic-gradient(from 225deg at 50% 84%, currentColor 0 90deg, transparent 0); }
.footer-top p { margin: 0; max-width: 450px; color: var(--footer-muted); line-height: 1.7; }
.light-footer .footer-top p { color: var(--text-soft); }
.newsletter-form { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: end; }
.newsletter-form label { grid-column: 1 / -1; font-family: var(--condensed); text-transform: uppercase; font-size: 38px; font-weight: 900; }
.newsletter-form input, .newsletter-banner input { height: 50px; border: 0; border-bottom: 2px solid currentColor; background: transparent; color: inherit; outline: 0; text-transform: uppercase; font-family: var(--condensed); font-size: 18px; font-weight: 800; }
.newsletter-form button, .newsletter-banner button { height: 50px; color: inherit; text-transform: uppercase; font-family: var(--condensed); font-size: 18px; font-weight: 900; line-height: 1; white-space: nowrap; }
.footer-nav {
  max-width: var(--section-max);
  margin: 38px auto 0;
  display: flex;
  gap: 34px;
  text-transform: uppercase;
  font-family: var(--condensed);
  font-weight: 900;
  color: var(--footer-muted);
}
.footer-nav.inline { margin: 0; color: inherit; justify-content: flex-end; }
.light-footer .footer-nav { color: var(--text-soft); }
.footer-bottom {
  max-width: var(--section-max);
  margin: 50px auto 0;
  padding-top: 22px;
  border-top: 1px solid color-mix(in srgb, var(--white) 14%, transparent);
  display: flex;
  justify-content: space-between;
  color: var(--footer-muted);
  font-size: 13px;
  text-transform: uppercase;
}
.light-footer .footer-bottom { color: var(--text-subtle); border-top-color: var(--line); }
.footer-bottom a { color: inherit; }

.breadcrumb {
  max-width: 1680px;
  margin: 24px auto 0;
  padding: 0 var(--page-gutter);
  color: var(--text-subtle);
  font-size: 14px;
}
.page-title {
  text-align: center;
  font-size: clamp(98px, 10vw, 170px);
  margin: 88px 0 104px;
}
.catalog-hero {
  max-width: 1820px;
  margin: 0 auto 54px;
  padding: 54px var(--page-gutter) 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
.catalog-hero .breadcrumb {
  max-width: none;
  margin: 0 0 24px;
  padding: 0;
}
.catalog-hero .page-title {
  margin: 0;
  text-align: left;
  max-width: min(100%, 1120px);
  font-size: clamp(112px, 8.2vw, 168px);
  overflow-wrap: anywhere;
}
.catalog-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--text-soft);
  font-size: 22px;
  line-height: 1.55;
}
.catalog-layout {
  max-width: 1820px;
  margin: 0 auto;
  padding: 0 var(--page-gutter) 80px;
  display: grid;
  grid-template-columns: 390px 1fr;
  gap: 70px;
}
.catalog-content,
.catalog-tools,
.catalog-tool-right,
.product-grid {
  min-width: 0;
}
.filter-panel h2 {
  font-family: var(--condensed);
  text-transform: uppercase;
  font-size: 24px;
  margin: 0 0 28px;
}
.filter-panel details { border-top: 1px solid var(--line); padding: 24px 0; }
.filter-panel summary { list-style: none; display: flex; justify-content: space-between; font-weight: 700; }
.filter-panel summary::after { content: "+"; }
.filter-panel label { display: block; margin-top: 16px; color: var(--text-soft); font-size: 16px; }
.filter-panel label:hover { color: var(--dark); }
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}
.filter-chips button {
  min-width: 46px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--condensed);
  font-size: 18px;
  font-weight: 900;
}
.filter-chips button.is-active {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.range-line { margin: 24px 0; height: 4px; background: var(--dark); border-radius: 99px; position: relative; }
.range-line::before, .range-line::after { content: ""; position: absolute; top: -7px; width: 16px; height: 16px; border-radius: 50%; border: 2px solid var(--dark); background: var(--surface); }
.range-line::before { left: 0; }
.range-line::after { right: 0; }
.price-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.price-inputs label {
  display: grid;
  gap: 7px;
  margin: 0;
}
.price-inputs span {
  color: var(--text-subtle);
  font-family: var(--condensed);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}
.price-inputs input { width: 100%; height: 46px; border: 1px solid var(--line); padding: 0 12px; }
.catalog-tools {
  min-height: 50px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 28px;
  color: var(--text-soft);
  text-transform: uppercase;
  font-family: var(--condensed);
  font-weight: 800;
}
.catalog-tools [data-product-count] {
  color: var(--dark);
  font-size: 18px;
  font-weight: 900;
}
.catalog-tool-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}
.catalog-tools div { display: flex; align-items: center; gap: 8px; }
.view-buttons button { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); color: var(--text-faint); }
.view-buttons .is-active { color: var(--dark); background: var(--surface-alt); }
.quick-actions {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  display: grid;
  gap: 9px;
}
.quick-actions button { width: var(--button-icon-size); height: var(--button-icon-size); display: grid; place-items: center; border-radius: 50%; background: var(--surface); box-shadow: var(--shadow-soft); }
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 58px;
  font-family: var(--condensed);
  font-weight: 900;
  text-transform: uppercase;
}
.pagination button,
.pagination span {
  min-width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--surface);
}
.pagination .active { background: var(--dark); color: var(--white); border-color: var(--dark); }
.pagination .pagination-status {
  width: auto;
  min-width: 132px;
  padding: 0 18px;
  color: var(--text-soft);
}

.newsletter-banner {
  position: relative;
  max-width: var(--section-max);
  margin: 0 auto 80px;
  min-height: 560px;
  border-radius: 5px;
  overflow: hidden;
  color: var(--white);
}
.newsletter-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.newsletter-banner::after { content: ""; position: absolute; inset: 0; background: var(--newsletter-overlay); }
.newsletter-banner div { position: relative; z-index: 1; min-height: 560px; display: flex; flex-direction: column; justify-content: space-between; padding: 54px; }
.newsletter-banner h2 { font-family: var(--heading); font-size: 104px; line-height: 1.05; text-transform: uppercase; font-weight: 400; }
.newsletter-banner form { display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: end; }

.product-page .breadcrumb { max-width: 1820px; }
.product-detail {
  max-width: 1820px;
  margin: 25px auto 88px;
  padding: 0 var(--page-gutter);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(520px, .75fr);
  gap: 66px;
  align-items: start;
}
.gallery { display: grid; grid-template-columns: 104px 1fr; gap: 22px; }
.thumbs { display: grid; gap: 14px; align-content: start; }
.thumbs button { border: 2px solid transparent; background: var(--media); border-radius: 3px; overflow: hidden; }
.thumbs .is-active { border-color: var(--orange); }
.thumbs img { width: 100%; aspect-ratio: 1 / 1.15; object-fit: cover; }
.main-photo {
  position: relative;
  min-height: 830px;
  background: var(--media);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.main-photo img { width: 100%; height: 100%; object-fit: contain; }
.main-photo button { position: absolute; top: 50%; translate: 0 -50%; width: var(--button-gallery-nav-size); height: var(--button-gallery-nav-size); border-radius: 50%; background: var(--surface); color: var(--text-faint); display: grid; place-items: center; }
.main-photo button:first-child { left: 18px; }
.main-photo button:last-child { right: 18px; }
.product-info { position: sticky; top: 116px; }
.product-info .badge { position: static; display: inline-flex; margin-bottom: 12px; }
.product-info h1 {
  font-family: var(--condensed);
  text-transform: uppercase;
  font-size: 44px;
  line-height: .95;
  font-weight: 900;
}
.pdp-short {
  max-width: 560px;
  margin: 12px 0 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.6;
}
.product-info .price { font-size: 31px; }
.stock, .hurry { color: var(--orange); font-size: 16px; font-weight: 700; }
.pdp-status {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}
.pdp-status span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 14px;
  background: var(--success-bg);
  color: var(--success-text);
  border: 1px solid var(--success-border);
  border-radius: 4px;
  font-family: var(--condensed);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}
.pdp-status svg {
  width: 19px;
  height: 19px;
}
.swatches, .sizes, .quantity, .meta-actions { display: flex; align-items: center; gap: 10px; margin-top: 18px; }
.variant-row {
  flex-wrap: wrap;
}
.swatches span, .sizes span {
  min-width: 122px;
  font-weight: 700;
}
.swatches b, .sizes b {
  font-family: var(--condensed);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}
.swatches button { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--white); box-shadow: 0 0 0 1px var(--line); }
.swatches .red { background: var(--swatch-red); }
.swatches .green { background: var(--swatch-green); }
.swatches .black { background: var(--dark); }
.swatches .is-active { box-shadow: 0 0 0 2px var(--dark); }
.sizes button, .quantity > button:not(.dark-btn):not(.green-btn) { min-width: var(--button-height); height: calc(var(--button-height) - 4px); border: 1px solid var(--line); }
.sizes button.is-active {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.quantity .dark-btn, .quantity .green-btn { flex: 1; }
.pdp-trust-bar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.pdp-trust-bar div {
  min-height: 84px;
  display: grid;
  grid-template-columns: 28px 1fr;
  align-content: center;
  column-gap: 10px;
  padding: 14px;
  background: var(--surface-alt);
  border: 1px solid var(--success-border);
  border-radius: 6px;
}
.pdp-trust-bar svg {
  grid-row: span 2;
  width: 24px;
  height: 24px;
  color: var(--green);
  stroke-width: 2.4;
}
.pdp-trust-bar strong {
  font-family: var(--condensed);
  font-size: 18px;
  line-height: .95;
  text-transform: uppercase;
  font-weight: 900;
}
.pdp-trust-bar span {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.35;
}
.meta-actions { color: var(--text-soft); font-size: 15px; }
.care { margin-top: 24px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 16px 0; }
.care summary { font-weight: 800; }
.checkout-box { margin-top: 18px; border: 1px solid var(--line); padding: 22px; display: flex; gap: 10px; align-items: center; justify-content: center; flex-wrap: wrap; text-transform: uppercase; font-size: 14px; }
.checkout-box strong { flex-basis: 100%; text-align: center; }
.checkout-box span { padding: 4px 8px; background: var(--soft); }
.checkout-box img {
  width: 62px;
  height: 38px;
  padding: 6px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 5px;
  object-fit: contain;
}

.product-copy {
  max-width: var(--section-max);
  margin: 0 auto 88px;
  padding: 0 var(--page-gutter);
  display: grid;
  grid-template-columns: 1.35fr .75fr;
  gap: 84px;
}
.product-copy.pdp-tabs {
  grid-template-columns: 1fr;
  max-width: 1260px;
  min-height: 360px;
}
.tabs { grid-column: 1 / -1; display: flex; gap: 24px; border-bottom: 1px solid var(--line); }
.tabs button {
  padding: 0 0 18px;
  color: var(--text-subtle);
  font-family: var(--condensed);
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
}
.tabs .is-active { border-bottom: 2px solid var(--dark); }
.tabs button.is-active { color: var(--dark); }
.product-copy h2 { font-family: var(--condensed); text-transform: uppercase; font-size: 40px; line-height: 1; font-weight: 900; }
.product-copy p { color: var(--text-soft); line-height: 1.7; }
.tab-panel {
  display: none;
  max-width: 960px;
  min-height: 250px;
}
.tab-panel.is-active {
  display: block;
}
.spec-table {
  width: 100%;
  max-width: 860px;
  border-collapse: collapse;
  margin-top: 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.spec-table tr {
  border-bottom: 1px solid var(--line);
}
.spec-table tr:last-child {
  border-bottom: 0;
}
.spec-table th,
.spec-table td {
  padding: 18px 0;
  text-align: left;
  vertical-align: top;
}
.spec-table th {
  width: 230px;
  color: var(--text-subtle);
  font-family: var(--condensed);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
}
.spec-table td {
  color: var(--dark);
  font-size: 16px;
  font-weight: 700;
}
.material-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin: 8px 8px 0 0;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--dark);
  color: var(--white);
  font-family: var(--condensed);
  font-weight: 900;
  text-transform: uppercase;
}
.mini-products { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.mini-products img { height: 230px; width: 100%; object-fit: cover; background: var(--media); }
.mini-products h3 { margin-top: 12px; font-family: var(--condensed); text-transform: uppercase; font-size: 18px; line-height: 1; }

.wide-story, .explorers {
  position: relative;
  min-height: 520px;
  color: var(--white);
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.wide-story img, .explorers img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.wide-story::after, .explorers::after { content: ""; position: absolute; inset: 0; background: color-mix(in srgb, var(--dark) 38%, transparent); z-index: -1; }
.wide-story p, .wearable p { margin: 0 0 8px; font-family: var(--condensed); text-transform: uppercase; font-weight: 900; }
.wide-story h2, .wearable h2, .explorers h2, .quote-block h2 {
  font-family: var(--heading);
  text-transform: uppercase;
  font-size: clamp(58px, 8vw, 108px);
  line-height: .86;
  font-weight: 400;
}
.wide-story span { max-width: 520px; display: block; margin: 12px auto 0; }
.wearable {
  max-width: var(--narrow-max);
  margin: 100px auto;
  padding: 0 var(--page-gutter);
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: 90px;
  align-items: center;
}
.wearable img { width: 100%; min-height: 520px; object-fit: cover; }
.wearable h2 { color: var(--dark); }
.wearable span { display: block; color: var(--text-soft); line-height: 1.7; margin: 12px 0 28px; }

.quote-block {
  max-width: var(--narrow-max);
  margin: 88px auto;
  padding: 0 var(--page-gutter);
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 70px;
  align-items: center;
}
.quote-block h2 { font-size: clamp(38px, 4.8vw, 62px); }
.quote-block img { width: 100%; height: 340px; object-fit: cover; }
.explorers { min-height: 450px; }
.explorers span { font-family: var(--condensed); font-weight: 900; }
.explorers p { margin: 8px 0 0; }

.faqs {
  max-width: 980px;
  margin: 88px auto;
  padding: 0 var(--page-gutter);
  text-align: center;
}
.faqs p { color: var(--text-subtle); }
.faqs details { border-bottom: 1px solid var(--line); text-align: left; }
.faqs summary { list-style: none; padding: 22px 0; display: flex; justify-content: space-between; font-family: var(--condensed); text-transform: uppercase; font-size: 18px; font-weight: 900; }
.faqs summary::after { content: "+"; }
.faqs span { display: block; color: var(--text-soft); padding-bottom: 18px; }
.sale-event {
  max-width: var(--narrow-max);
  min-height: 94px;
  margin: 0 auto 70px;
  padding: 20px 34px;
  background: var(--dark);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr repeat(4, auto) 1fr;
  gap: 22px;
  align-items: center;
  text-transform: uppercase;
  font-family: var(--condensed);
  font-weight: 900;
}
.sale-event strong { font-size: 35px; }
.sale-event span { font-size: 42px; line-height: .8; }
.sale-event small { display: block; color: var(--text-subtle); font-size: 10px; }
.sale-event a { justify-self: end; }
.recently { text-align: center; margin: 30px 0 80px; }
.recently > div { display: flex; justify-content: center; gap: 26px; margin-top: 30px; }
.recently article { width: 170px; }
.recently img { width: 100%; height: 200px; object-fit: cover; background: var(--media); }
.recently h3 { margin-top: 10px; font-family: var(--condensed); text-transform: uppercase; font-size: 16px; line-height: 1; }
.recently p { color: var(--orange); font-family: var(--condensed); font-weight: 800; margin: 4px 0 0; }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.site-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease;
}
.site-overlay.is-open {
  display: block;
  pointer-events: auto;
  opacity: 1;
}
.overlay-backdrop {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--dark) 48%, transparent);
}
.drawer,
.modal-panel {
  position: absolute;
  background: var(--surface);
  color: var(--dark);
  box-shadow: var(--shadow-large);
}
.drawer {
  top: 0;
  right: 0;
  width: min(520px, 100vw);
  height: 100%;
  padding: 28px;
  transform: translateX(100%);
  transition: transform .28s ease;
  display: flex;
  flex-direction: column;
}
.site-overlay.is-open .drawer { transform: translateX(0); }
.modal-panel {
  top: 50%;
  left: 50%;
  width: min(820px, calc(100vw - 34px));
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 42px;
  transform: translate(-50%, -46%);
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
}
.site-overlay.is-open .modal-panel {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
  margin-bottom: 28px;
}
.panel-head h2 {
  font-family: var(--heading);
  font-size: 70px;
  line-height: .88;
  text-transform: uppercase;
  font-weight: 400;
}
.panel-close {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-alt);
}
.cart-items {
  display: grid;
  align-content: start;
  gap: 0;
  flex: 1;
  overflow: auto;
  padding-right: 6px;
}
.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr 34px;
  gap: 13px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.cart-item img {
  width: 72px;
  height: 84px;
  object-fit: cover;
  background: var(--media);
  border-radius: 3px;
}
.cart-item h3,
.search-result h3 {
  font-family: var(--condensed);
  font-size: 21px;
  line-height: 1;
  text-transform: uppercase;
}
.cart-item p,
.search-result p { margin: 6px 0 0; color: var(--orange); font-weight: 800; }
.cart-item .cart-variant {
  color: var(--dark);
  font-family: var(--condensed);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}
.cart-item button { color: var(--text-subtle); }
.cart-qty {
  display: inline-grid;
  grid-template-columns: 32px 38px 32px;
  align-items: center;
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: var(--surface);
}
.cart-qty button,
.cart-qty span {
  height: 32px;
  display: grid;
  place-items: center;
  font-family: var(--condensed);
  font-size: 18px;
  font-weight: 900;
  color: var(--dark);
}
.cart-qty span {
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 2px solid var(--dark);
  font-family: var(--condensed);
  font-size: 25px;
  font-weight: 900;
  text-transform: uppercase;
}
.checkout-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}
.search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  margin-bottom: 24px;
}
.search-form input,
.auth-form input {
  width: 100%;
  height: 56px;
  border: 1px solid var(--line);
  padding: 0 16px;
  font-size: 17px;
}
.search-results { display: grid; gap: 14px; }
.search-result {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
}
.search-result img {
  width: 110px;
  height: 120px;
  object-fit: cover;
  background: var(--media);
}
.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 22px;
  border: 1px solid var(--line);
}
.auth-tabs button {
  height: 52px;
  font-family: var(--condensed);
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
}
.auth-tabs button.is-active { background: var(--dark); color: var(--white); }
.auth-form {
  display: none;
  gap: 14px;
}
.auth-form.is-active { display: grid; }
.auth-note { color: var(--text-soft); line-height: 1.65; }
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 120;
  transform: translate(-50%, 20px);
  opacity: 0;
  padding: 14px 20px;
  background: var(--dark);
  color: var(--white);
  border-radius: 999px;
  font-family: var(--condensed);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  transition: .25s ease;
}
.toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}
.hidden-by-filter { display: none !important; }

.info-page {
  min-height: 70vh;
}
.info-hero {
  max-width: var(--section-max);
  margin: 0 auto;
  padding: 110px var(--page-gutter) 80px;
  text-align: center;
}
.info-hero h1 {
  font-family: var(--heading);
  font-size: clamp(96px, 11vw, 190px);
  line-height: .86;
  text-transform: uppercase;
  font-weight: 400;
}
.info-hero > p:last-child {
  max-width: 820px;
  margin: 24px auto 0;
  color: var(--text-soft);
  font-size: 20px;
  line-height: 1.7;
}
.info-band,
.contact-grid {
  max-width: var(--section-max);
  margin: 0 auto 110px;
  padding: 0 var(--page-gutter);
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: center;
}
.info-band img {
  width: 100%;
  min-height: 500px;
  object-fit: cover;
}
.info-band h2,
.contact-grid h2 {
  font-family: var(--heading);
  font-size: clamp(60px, 6vw, 110px);
  line-height: .88;
  text-transform: uppercase;
  font-weight: 400;
}
.info-band p,
.contact-grid p {
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.75;
}
.contact-grid {
  align-items: start;
}
.contact-grid .auth-form {
  display: grid;
}
.article-page {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 72px var(--page-gutter) 120px;
}
.article-page > img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  margin-bottom: 54px;
}
.article-page article {
  max-width: 860px;
  margin: 0 auto;
}
.article-page h1,
.legal-page h1 {
  font-family: var(--heading);
  font-size: clamp(72px, 8vw, 140px);
  line-height: .88;
  text-transform: uppercase;
  font-weight: 400;
}
.article-page h2 {
  margin-top: 42px;
  font-family: var(--condensed);
  font-size: 42px;
  line-height: .95;
  text-transform: uppercase;
  font-weight: 900;
}
.article-page p,
.legal-page p {
  color: var(--ink);
  font-size: 19px;
  line-height: 1.8;
}
.article-page .dark-btn {
  margin-top: 28px;
}
.legal-page {
  max-width: 980px;
  min-height: 62vh;
  margin: 0 auto;
  padding: 100px var(--page-gutter) 130px;
}

.header-rebuilt {
  grid-template-columns: 220px minmax(0, 1fr) 220px;
}
.header-rebuilt .brand-mark {
  justify-self: start;
}
.nav-centered {
  justify-content: center;
  min-width: 0;
}
.category-nav {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.category-link {
  font-family: var(--condensed);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}
.icon-only-mini {
  width: 24px;
  height: 24px;
  justify-content: center;
}
.compact-menu {
  width: 390px;
  grid-template-columns: repeat(2, 1fr);
  top: calc(100% + 20px);
}
.compact-menu a {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: var(--card-radius);
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.compact-menu svg {
  width: 42px;
  height: 42px;
  padding: 9px;
  color: var(--dark);
  background: color-mix(in srgb, var(--orange) 10%, var(--white));
  border: 1px solid color-mix(in srgb, var(--orange) 32%, var(--white));
  border-radius: var(--card-radius);
  stroke-width: 2.4;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.compact-menu a:hover {
  background: color-mix(in srgb, var(--orange) 7%, var(--white));
  transform: translateX(2px);
}
.compact-menu a:hover svg {
  color: var(--orange);
  background: var(--surface);
  border-color: var(--orange);
}
.compact-menu .menu-feature {
  grid-column: 1 / -1;
  min-height: 76px;
  background: var(--dark);
  color: var(--white);
}
.compact-menu .menu-feature svg {
  color: var(--white);
}
.compact-menu span {
  font-size: 22px;
}
.icon-actions {
  gap: 24px;
}
.icon-actions .header-tool {
  width: 34px;
  height: 34px;
  justify-content: center;
}
.icon-actions .header-tool b {
  display: none;
}
.icon-actions .header-tool svg {
  width: 26px;
  height: 26px;
}
.cart-tool svg {
  width: 29px !important;
  height: 29px !important;
  stroke-width: 2.55;
}

.product-card {
  display: grid;
  grid-template-rows: auto 30px 78px 58px 34px;
  align-content: start;
  min-height: 100%;
}
.product-card .product-media {
  aspect-ratio: 1 / .96;
  min-height: 0;
}
.product-card h3 {
  height: 78px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.product-attrs {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 6px;
  height: 58px;
  overflow: hidden;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}
.product-attrs li {
  height: 24px;
  padding: 4px 8px;
  background: var(--surface-alt);
  color: var(--text-soft);
  border-radius: 999px;
  font-size: 12px;
  line-height: 1.2;
}
.product-card .price {
  align-self: end;
  margin-top: 0;
  padding-top: 0;
}
.product-card .mini-cart {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 4;
  width: auto;
  min-height: 38px;
  margin-top: 0;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--dark);
  color: var(--white);
  opacity: 0;
  transform: translateY(7px);
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
}
.product-card:hover .mini-cart {
  opacity: 1;
  transform: translateY(0);
}
.product-card .mini-cart:hover {
  background: var(--orange);
}
.wishlist-card .mini-cart,
.product-grid.catalog.view-list .mini-cart {
  position: static;
  width: 100%;
  opacity: 1;
  transform: none;
}
.quick-actions {
  opacity: 0;
  transform: translateX(8px);
  transition: .2s ease;
}
.product-card:hover .quick-actions {
  opacity: 1;
  transform: translateX(0);
}

.marquee div {
  animation: marquee 34s linear infinite;
}
.marquee div span {
  white-space: nowrap;
}
@keyframes marquee { to { transform: translateX(-50%); } }

.brand-strip {
  display: block;
  overflow: hidden;
  min-height: 130px;
  padding: 0;
}
.brand-marquee {
  min-width: max-content;
  display: flex;
  align-items: center;
  gap: 90px;
  min-height: 130px;
  animation: brandLoop 26s linear infinite;
}
.brand-marquee span {
  font-family: var(--condensed);
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}
@keyframes brandLoop { to { transform: translateX(-50%); } }

.polished-reviews {
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.polished-reviews article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 5px solid var(--dark);
  box-shadow: var(--shadow-soft);
  min-height: 270px;
}
.polished-reviews .stars {
  color: var(--orange);
  font-family: var(--body);
  font-size: 18px;
  margin-bottom: 22px;
  letter-spacing: 3px;
}
.polished-reviews p {
  margin: 0;
  color: var(--dark);
}
.polished-reviews strong {
  color: var(--success-text);
  font-family: var(--body);
  font-size: 13px;
  letter-spacing: .08em;
}

.unified-footer {
  background: var(--footer-bg);
  color: var(--surface-alt);
  padding: 76px 0 34px;
}
.footer-main {
  width: min(calc(100% - 116px), 1480px);
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 1.55fr) repeat(4, minmax(130px, 1fr));
  gap: clamp(34px, 4.5vw, 68px);
}
.footer-company p {
  max-width: 340px;
  margin: 24px 0 0;
  color: var(--text-faint);
  font-weight: 700;
  line-height: 1.6;
}
.unified-footer .footer-brand {
  color: var(--white);
  font-size: 28px;
}
.unified-footer .footer-brand .mountain-logo {
  background:
    linear-gradient(120deg, transparent 0 44%, var(--footer-bg) 44% 52%, transparent 52%),
    linear-gradient(65deg, transparent 0 49%, var(--footer-bg) 49% 56%, transparent 56%),
    conic-gradient(from 225deg at 50% 84%, currentColor 0 90deg, transparent 0);
}
.footer-col {
  display: grid;
  align-content: start;
  gap: 16px;
}
.footer-col h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-family: var(--body);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}
.footer-col a,
.footer-col span {
  color: var(--text-faint);
  font-size: 16px;
  line-height: 1.35;
}
.footer-col span {
  margin-top: 8px;
  color: var(--text-subtle);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.footer-payments {
  width: min(calc(100% - 116px), 1480px);
  max-width: 1480px;
  margin: 58px auto 0;
  padding-top: 28px;
  border-top: 1px solid color-mix(in srgb, var(--dark) 80%, var(--white));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  color: var(--text-faint);
  font-size: 14px;
}
.footer-payments > a {
  justify-self: end;
}
.payment-icons {
  display: flex;
  gap: 10px;
}
.payment-icons img {
  width: 62px;
  height: 34px;
  padding: 0 10px;
  border-radius: 4px;
  background: var(--surface);
  object-fit: contain;
}

.account-page {
  background: var(--surface);
}
.account-hero {
  max-width: 1760px;
  margin: 0 auto;
  padding: 82px var(--page-gutter) 64px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 70px;
  align-items: end;
}
.account-hero h1 {
  font-family: var(--heading);
  font-size: clamp(88px, 8vw, 158px);
  line-height: .86;
  text-transform: uppercase;
  font-weight: 400;
}
.account-hero p:last-child {
  max-width: 680px;
  color: var(--text-soft);
  font-size: 20px;
  line-height: 1.7;
}
.account-hero img {
  width: 100%;
  height: 470px;
  object-fit: cover;
}
.account-grid {
  max-width: 1360px;
  margin: 0 auto 120px;
  padding: 0 var(--page-gutter);
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 54px;
  align-items: start;
}
.account-panel {
  border: 1px solid var(--line);
  padding: 34px;
}
.account-benefits {
  background: var(--dark);
  color: var(--white);
  padding: 42px;
}
.account-benefits h2 {
  margin-bottom: 26px;
  font-family: var(--heading);
  font-size: 72px;
  line-height: .88;
  text-transform: uppercase;
  font-weight: 400;
}
.account-benefits div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid color-mix(in srgb, var(--white) 14%, transparent);
  color: var(--text-faint);
}
.account-benefits svg {
  color: var(--orange);
}

.checkout-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.checkout-form div {
  display: grid;
  gap: 8px;
}
.checkout-form label {
  font-family: var(--condensed);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}
.checkout-form input,
.checkout-form select {
  height: 54px;
  border: 1px solid var(--line);
  padding: 0 14px;
  background: var(--surface);
}
.checkout-form button {
  grid-column: 1 / -1;
}

.compact-menu {
  width: 300px;
  min-width: 300px;
  grid-template-columns: 1fr;
  gap: 4px;
}
.compact-menu a {
  grid-template-columns: 42px 1fr;
  padding: 10px 12px;
}
.compact-menu span { font-size: 21px; }

.sort-control {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.sort-control select {
  height: 42px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 0 38px 0 12px;
  font-family: var(--condensed);
  font-weight: 900;
  text-transform: uppercase;
}
.product-grid.catalog.view-compact { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 46px 28px; }
.product-grid.catalog.view-list { grid-template-columns: 1fr; gap: 24px; }
.product-grid.catalog.view-list .product-card {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  grid-template-rows: auto;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
}
.product-grid.catalog.view-list .product-card h3,
.product-grid.catalog.view-list .product-attrs {
  height: auto;
}
.product-grid.catalog.view-list .product-media {
  width: 220px;
  min-height: 0;
  aspect-ratio: 1 / 1.05;
}
.product-grid.catalog.view-list .mini-cart {
  align-self: end;
  min-width: 180px;
}

.mobile-menu-drawer {
  position: absolute;
  top: 0;
  left: 0;
  width: min(330px, 86vw);
  height: 100%;
  overflow: auto;
  background: var(--surface);
  color: var(--dark);
  padding: 18px 14px 26px;
  box-shadow: var(--shadow-large);
  transform: translateX(-100%);
  transition: transform .28s ease;
}
.site-overlay.is-open .mobile-menu-drawer { transform: translateX(0); }
.mobile-menu-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding-bottom: 18px;
}
.mobile-menu-head .brand-mark { justify-items: start; }
.mobile-menu-head button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
}
.mobile-menu-list { display: grid; }
.mobile-menu-list > a,
.mobile-menu-section > button {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-family: var(--condensed);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  width: 100%;
}
.mobile-menu-section > button svg { width: 18px; height: 18px; transition: transform .2s ease; }
.mobile-menu-section > button.is-open svg { transform: rotate(45deg); }
.mobile-submenu {
  display: none;
  padding: 10px 0 12px 18px;
  border-bottom: 1px solid var(--line);
}
.mobile-submenu.is-open { display: grid; }
.mobile-submenu a { padding: 9px 0; color: var(--text-soft); font-size: 16px; }
.mobile-account-links {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px 0 0;
  color: var(--text-soft);
}

.search-panel { width: min(980px, calc(100vw - 34px)); }
.quick-view-panel {
  width: min(1040px, calc(100vw - 34px));
  padding: 34px;
}
.quick-view-panel .panel-head {
  margin-bottom: 22px;
}
.quick-view-panel .panel-head h2 {
  font-size: 54px;
}
.quick-view-product {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) 1fr;
  gap: 34px;
  align-items: stretch;
}
.quick-view-media {
  display: grid;
  place-items: center;
  min-height: 520px;
  background: var(--media);
  overflow: hidden;
}
.quick-view-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.quick-view-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.quick-view-info h3 {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(58px, 6vw, 104px);
  line-height: .86;
  text-transform: uppercase;
  font-weight: 400;
}
.quick-view-info .product-attrs {
  min-height: 0;
  margin-top: 18px;
}
.quick-view-info .price {
  margin-top: 18px;
  font-size: 34px;
}
.quick-view-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.upgraded-search {
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  min-height: 72px;
  padding: 8px 10px 8px 18px;
  border: 2px solid var(--dark);
}
.upgraded-search input {
  height: 54px;
  border: 0;
  padding: 0;
  font-family: var(--condensed);
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  outline: 0;
}
.upgraded-search > svg { width: 26px; height: 26px; }

.wishlist-grid {
  max-width: var(--section-max);
  margin: 0 auto 110px;
  padding: 0 var(--page-gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}
.wishlist-remove {
  margin-top: 12px;
  color: var(--text-subtle);
  font-family: var(--condensed);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}
.empty-state {
  grid-column: 1 / -1;
  min-height: 360px;
  display: grid;
  place-items: center;
  justify-items: center;
  text-align: center;
  border: 1px solid var(--line);
  padding: 42px;
}
.empty-state h2 {
  font-family: var(--heading);
  font-size: clamp(60px, 7vw, 110px);
  line-height: .9;
  text-transform: uppercase;
  font-weight: 400;
}
.empty-state p { max-width: 520px; color: var(--text-soft); line-height: 1.7; }

.checkout-hero {
  max-width: 1480px;
  margin: 0 auto;
  padding: 86px var(--page-gutter) 36px;
}
.checkout-hero h1 {
  font-family: var(--heading);
  font-size: clamp(92px, 9vw, 170px);
  line-height: .86;
  text-transform: uppercase;
  font-weight: 400;
}
.checkout-hero p:last-child { max-width: 650px; color: var(--text-soft); font-size: 19px; line-height: 1.7; }
.checkout-layout {
  max-width: 1480px;
  margin: 0 auto 120px;
  padding: 0 var(--page-gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 48px;
  align-items: start;
}
.checkout-page-form { padding: 34px; border: 1px solid var(--line); }
.checkout-form .wide-field { grid-column: 1 / -1; }
.checkout-summary {
  position: sticky;
  top: 130px;
  padding: 30px;
  background: var(--dark);
  color: var(--white);
}
.checkout-summary h2 {
  font-family: var(--heading);
  font-size: 58px;
  line-height: .9;
  text-transform: uppercase;
  font-weight: 400;
}
.checkout-summary-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--white) 14%, transparent);
}
.checkout-summary-item img { width: 72px; height: 84px; object-fit: cover; background: var(--media); }
.checkout-summary-item h3 { font-family: var(--condensed); font-size: 20px; line-height: 1; text-transform: uppercase; }
.checkout-summary-item p { margin: 6px 0 0; color: var(--text-faint); }
.checkout-total {
  display: flex;
  justify-content: space-between;
  padding: 22px 0;
  font-family: var(--condensed);
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
}
.checkout-summary .payment-icons { flex-wrap: wrap; }

@media (max-width: 1100px) {
  .header-inner { grid-template-columns: auto 1fr; padding: 0 22px; height: auto; min-height: 76px; gap: 12px; }
  .brand-mark { justify-self: start; }
  .main-nav { order: 3; grid-column: 1 / -1; overflow-x: auto; padding-bottom: 12px; }
  .main-nav::-webkit-scrollbar { display: none; }
  .main-nav { scrollbar-width: none; }
  .header-actions { gap: 12px; }
  .header-actions span, .header-actions b { display: none; }
  .hero { height: 520px; }
  .hero-content { padding: 0 28px; }
  .hero h1 { font-size: clamp(132px, 25vw, 250px); }
  .benefits, .category-grid, .product-row, .product-row.four, .product-row.slim, .spotlight-products, .review-track, .brand-strip { grid-template-columns: repeat(2, 1fr); }
  .product-grid.catalog,
  .product-grid.catalog.view-compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .spotlight-products {
    margin-right: -22px;
    margin-left: -12px;
    padding-right: 22px;
    padding-left: 12px;
  }
  .spotlight-products .product-card {
    flex-basis: calc((100% - 22px) / 2.35);
  }
  .featured-commerce-inner, .promo-mosaic, .split-products, .tips-grid, .catalog-layout, .product-detail, .product-copy, .catalog-hero, .account-hero, .account-grid, .wearable, .quote-block { grid-template-columns: 1fr; }
  .side-title { position: static; }
  .filter-panel { display: none; }
  .gallery { grid-template-columns: 1fr; }
  .main-photo { order: 1; }
  .thumbs { order: 2; display: flex; overflow-x: auto; }
  .thumbs button { width: 72px; flex: 0 0 auto; }
  .main-photo { min-height: 560px; }
  .product-info { position: static; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-nav.inline { justify-content: flex-start; }
  .header-rebuilt { grid-template-columns: auto 1fr; }
  .icon-actions { justify-self: end; }
  .nav-centered { justify-content: flex-start; }
  .category-link { font-size: 17px; }
  .compact-menu { width: 300px; min-width: 300px; }
  .footer-main,
  .footer-payments { width: calc(100% - 44px); }
  .footer-main { grid-template-columns: repeat(2, 1fr); gap: 42px; }
  .footer-company { grid-column: 1 / -1; }
  .footer-payments { grid-template-columns: 1fr; justify-items: start; }
  .footer-payments > a { justify-self: start; }
  .checkout-form { grid-template-columns: 1fr; }
  .checkout-layout, .wishlist-grid { grid-template-columns: 1fr 1fr; }
  .checkout-summary { position: static; }
  .info-band, .contact-grid { grid-template-columns: 1fr; }
  .catalog-hero { gap: 24px; margin-bottom: 34px; }
  .catalog-hero p { margin: 0; }
  .account-hero img { height: 360px; }
  .promo-panel-grid { grid-auto-rows: 260px; }
  .promo-card { min-height: 260px; }
  .promo-card-large,
  .promo-card:nth-child(2) { grid-row: span 1; }
}

@media (max-width: 720px) {
  body { font-size: 13px; }
  .promo-top { gap: 8px; font-size: 11px; padding: 0 8px; }
  .header-inner, .section, .featured-commerce, .catalog-layout, .catalog-hero, .product-detail, .product-copy, .account-hero, .account-grid, .checkout-hero, .checkout-layout, .wishlist-grid, .wearable, .quote-block, .faqs, .site-footer { padding-left: 18px; padding-right: 18px; }
  .header-rebuilt {
    min-height: 84px;
    grid-template-columns: 44px 1fr auto;
    padding-top: 0;
    padding-bottom: 0;
  }
  .mobile-menu-button { display: inline-flex; justify-self: start; }
  .header-rebuilt .brand-mark { justify-self: center; }
  .nav-centered { display: none; }
  .desktop-tool { display: none !important; }
  .icon-actions { justify-self: end; gap: 16px; }
  .icon-actions .cart-tool span { display: grid; }
  .hero { height: 460px; }
  .hero img { object-position: center 55%; }
  .hero h1 { font-size: clamp(96px, 31vw, 142px); line-height: .78; }
  .pill-btn { min-height: calc(var(--button-large-height) - 10px); padding: 0 var(--button-padding-x); font-size: calc(var(--button-font-size) + 1px); }
  .mega-menu { width: calc(100vw - 36px); left: 0; grid-template-columns: 1fr; }
  .compact-menu { width: calc(100vw - 36px); min-width: 0; }
  .icon-actions { gap: 12px; }
  .icon-actions .header-tool { width: 30px; height: 30px; }
  .icon-actions .header-tool svg { width: 23px; height: 23px; }
  .header-rebuilt .brand-mark strong { font-size: 14px; }
  .header-rebuilt .mountain-logo { width: 42px; height: 34px; }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .category-grid, .product-row, .product-row.four, .product-row.slim, .spotlight-products, .product-grid.two, .product-grid.catalog, .product-grid.catalog.view-compact, .product-grid.catalog.view-list, .review-track, .brand-strip, .promo-panel-grid, .mini-products, .checkout-layout, .wishlist-grid { grid-template-columns: 1fr; }
  .benefits div { border-right: 0; border-bottom: 1px solid var(--line); padding: 18px 10px; }
  .benefits div:nth-child(odd) { border-right: 1px solid var(--line); }
  .benefits div:nth-last-child(-n + 2) { border-bottom: 0; }
  .benefits strong { font-size: 17px; }
  .benefits span { font-size: 13px; }
  .category-tile { min-height: 220px; }
  .featured-commerce { padding-top: 68px; padding-bottom: 68px; }
  .compact-head { display: grid; gap: 16px; align-items: start; }
  .compact-head > div,
  .compact-head .text-link,
  .compact-head .carousel-controls { width: max-content; min-width: 0; }
  .compact-head h2 { max-width: 100%; font-size: 50px; overflow-wrap: anywhere; }
  .spotlight-products {
    margin-right: -18px;
    margin-left: -10px;
    padding-right: 18px;
    padding-left: 10px;
    gap: 16px;
  }
  .spotlight-products .product-card {
    flex: 0 0 82%;
  }
  .product-card .mini-cart {
    opacity: 1;
    transform: none;
  }
  .quick-actions {
    opacity: 1;
    transform: none;
  }
  .promo-mosaic, .promo-panel-grid { grid-auto-rows: 260px; }
  .promo-panel-grid.below-products { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .promo-card:nth-child(2) { grid-row: span 1; }
  .promo-card { padding: 26px; }
  .promo-card strong { font-size: 50px; }
  .reviews { padding: 74px 18px; }
  .review-track article,
  .polished-reviews article { min-height: 0; padding: 28px; }
  .tips .section-head { display: grid; gap: 18px; align-items: start; }
  .tips .section-head .dark-btn { justify-self: start; }
  .tip-main img { height: 260px; }
  .tip-main h3, .tip-list h3 { font-size: 34px; line-height: .98; }
  .tip-list a { grid-template-columns: 1fr; gap: 14px; min-height: 0; }
  .tip-list img { height: 210px; }
  .product-copy.pdp-tabs { min-height: 410px; }
  .tab-panel { min-height: 300px; }
  .catalog-tools { min-height: 0; grid-template-columns: 1fr; gap: 14px; font-size: 12px; }
  .catalog-tools .catalog-tool-right {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 12px;
  }
  .catalog-tools .view-buttons {
    display: flex;
  }
  .generated-card .quick-actions {
    opacity: 1;
    transform: none;
  }
  .sort-control {
    min-width: 0;
    width: 100%;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    justify-content: stretch;
  }
  .sort-control select { width: 100%; min-width: 0; }
  .catalog-tools [data-product-count] { display: block; }
  .product-grid.catalog.view-list .product-card {
    display: flex;
    border-bottom: 0;
    padding-bottom: 0;
  }
  .product-grid.catalog.view-list .product-media {
    width: 100%;
    aspect-ratio: 1 / 1.18;
  }
  .main-photo { min-height: 430px; }
  .pdp-status { grid-template-columns: 1fr; }
  .quantity { flex-wrap: wrap; }
  .quantity .dark-btn, .quantity .green-btn { flex: 1 1 100%; }
  .pdp-trust-bar { grid-template-columns: 1fr; }
  .pdp-trust-bar div { min-height: 76px; }
  .tabs { gap: 18px; overflow-x: auto; }
  .tabs button { font-size: 20px; white-space: nowrap; }
  .catalog-hero { padding-top: 34px; }
  .catalog-hero .page-title { font-size: 86px; }
  .catalog-hero p { font-size: 17px; }
  .account-hero { padding-top: 46px; gap: 30px; }
  .account-hero img { height: 280px; }
  .account-grid { margin-bottom: 70px; }
  .account-panel, .account-benefits { padding: 24px; }
  .account-benefits h2 { font-size: 54px; }
  .checkout-hero { padding-top: 46px; }
  .checkout-layout { margin-bottom: 70px; }
  .checkout-page-form, .checkout-summary { padding: 24px; }
  .checkout-form .wide-field { grid-column: auto; }
  .search-panel { width: calc(100vw - 24px); padding: 24px; }
  .quick-view-panel { width: calc(100vw - 24px); padding: 22px; }
  .quick-view-product { grid-template-columns: 1fr; gap: 18px; }
  .quick-view-media { min-height: 300px; }
  .quick-view-panel .panel-head h2 { font-size: 44px; }
  .quick-view-info h3 { font-size: 52px; }
  .quick-view-actions { display: grid; }
  .upgraded-search { grid-template-columns: 28px 1fr; }
  .upgraded-search button { grid-column: 1 / -1; }
  .drawer { padding: 22px 18px; }
  .panel-head h2 { font-size: 54px; }
  .cart-item { grid-template-columns: 64px 1fr 30px; }
  .cart-item img { width: 64px; height: 76px; }
  .cart-item h3 { font-size: 18px; }
  .newsletter-banner { min-height: 360px; margin-left: 18px; margin-right: 18px; }
  .newsletter-banner div { min-height: 360px; padding: 24px; }
  .newsletter-banner h2, .collection-hero h2 { font-size: 54px; }
  .newsletter-banner form, .newsletter-form { grid-template-columns: 1fr; }
  .sale-event { margin-left: 18px; margin-right: 18px; grid-template-columns: repeat(4, 1fr); text-align: center; }
  .sale-event strong, .sale-event a { grid-column: 1 / -1; justify-self: center; }
  .tip-list article { grid-template-columns: 1fr; }
  .tip-list a { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .unified-footer { padding: 54px 0 28px; }
  .footer-main,
  .footer-payments { width: calc(100% - 36px); }
  .footer-main { grid-template-columns: 1fr; gap: 34px; }
  .footer-payments { margin-top: 42px; gap: 18px; }
  .payment-icons { flex-wrap: wrap; }
  .article-page, .legal-page, .info-hero, .info-band, .contact-grid { padding-left: 22px; padding-right: 22px; }
  .article-page > img, .info-band img { min-height: 280px; }
}

/* Client skin */
.promo-top {
  height: 34px;
  background: var(--dark);
  color: var(--white);
  font-family: var(--body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}
.promo-top p {
  margin: 0;
}
.promo-top button {
  color: var(--orange);
}

.site-header {
  box-shadow: 0 8px 24px rgba(11, 13, 16, .04);
}
.header-inner {
  height: 78px;
}
.brand-logo-img {
  width: 176px;
  max-width: 176px;
  max-height: 46px;
}
.main-nav,
.header-actions {
  gap: 18px;
}
.main-nav a,
.nav-trigger,
.header-tool,
.category-link {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}
.category-link:hover,
.main-nav .active,
.header-tool:hover {
  color: var(--orange);
}
.icon-actions .header-tool svg {
  width: 22px;
  height: 22px;
}
.cart-tool span,
.wishlist-tool span {
  background: var(--orange);
}

.hero {
  height: 470px;
  min-height: 470px;
  place-items: stretch;
  background: var(--dark);
}
.hero img {
  height: 100%;
  object-position: center center;
  transform: translateY(var(--parallax, 0px)) scale(1.02);
}
.hero-content {
  align-self: stretch;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: clamp(28px, 6vw, 96px);
  align-items: center;
  justify-items: stretch;
  text-align: left;
  text-transform: none;
}
.hero-copy {
  max-width: 560px;
  color: var(--white);
}
.hero-kicker {
  margin: 0 0 10px;
  color: var(--orange);
  font-family: var(--condensed);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  color: var(--white);
  font-family: var(--heading);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 700;
  line-height: .95;
  max-width: 560px;
  mix-blend-mode: normal;
  text-shadow: var(--hero-text-shadow);
  text-transform: uppercase;
}
.hero-copy > p:not(.hero-kicker) {
  max-width: 440px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 15px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 26px;
}
.pill-btn {
  min-height: var(--button-large-height);
  margin-top: 0;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--button-radius);
  box-shadow: var(--hero-button-shadow);
}
.pill-btn::before {
  background: var(--white);
}
.pill-btn:hover {
  color: var(--dark);
}
.hero-secondary {
  min-height: var(--button-large-height);
  display: inline-flex;
  align-items: center;
  color: var(--white);
  border-bottom: 2px solid currentColor;
  font-family: var(--condensed);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
.hero-finder {
  width: min(100%, 360px);
  justify-self: end;
  display: grid;
  gap: 12px;
  padding: 24px;
  background: var(--surface);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-large);
}
.hero-finder h2 {
  margin: 0 0 4px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}
.hero-finder label {
  display: grid;
  gap: 6px;
}
.hero-finder span {
  color: var(--text-subtle);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.hero-finder select {
  width: 100%;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--surface-alt);
  color: var(--text-soft);
  padding: 0 12px;
  font-size: 13px;
}
.hero-finder .dark-btn {
  background: var(--orange);
}

.benefits.compact {
  max-width: var(--section-max);
  padding: 24px var(--page-gutter);
}
.benefits div {
  grid-template-columns: 38px 1fr;
  padding: 0 24px;
}
.benefits svg {
  width: 30px;
  height: 30px;
  color: var(--orange);
  stroke-width: 2;
}
.benefits strong {
  font-family: var(--body);
  font-size: 14px;
}
.benefits span {
  font-size: 12px;
}

.section {
  padding-top: 66px;
  padding-bottom: 66px;
}
.section > h2,
.reviews h2,
.faqs h2,
.recently h2 {
  font-family: var(--heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 34px;
}
.eyebrow {
  color: var(--orange);
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0;
}

.categories {
  padding-top: 48px;
  padding-bottom: 52px;
}
.category-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 16px;
}
.category-tile {
  min-height: 0;
  display: grid;
  justify-items: center;
  gap: 12px;
  overflow: visible;
  border-radius: 0;
  background: transparent;
}
.category-tile::after {
  display: none;
}
.category-tile img {
  position: static;
  width: 112px;
  height: 112px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface-alt);
  object-fit: contain;
  box-shadow: var(--shadow-soft);
}
.category-tile span {
  position: static;
  color: var(--dark);
  font-family: var(--body);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-transform: none;
}
.category-tile:hover img {
  border-color: var(--orange);
  transform: translateY(-4px);
}

.marquee {
  height: 44px;
  background: var(--dark);
  font-family: var(--body);
  font-size: 13px;
}
.featured-commerce {
  padding-top: 58px;
  padding-bottom: 68px;
  background: var(--surface-alt);
}
.compact-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
}
.carousel-controls {
  border-radius: 4px;
}
.carousel-controls button:hover {
  background: var(--orange);
}
.spotlight-products .product-card {
  flex-basis: calc((100% - 66px) / 4.35);
}

.product-card {
  padding: 10px 10px 54px;
  border-color: var(--line);
  background: var(--surface);
  grid-template-rows: auto 22px 58px 52px 30px;
}
.product-card:hover {
  border-color: color-mix(in srgb, var(--orange) 60%, var(--line));
  box-shadow: var(--shadow-medium);
}
.product-card .product-media {
  aspect-ratio: 1 / .9;
  background: var(--media);
}
.vendor {
  height: 18px;
  color: var(--text-subtle);
  font-family: var(--body);
  font-size: 11px;
}
.product-card h3 {
  height: 58px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.28;
  text-transform: none;
}
.product-attrs {
  height: 52px;
}
.product-attrs li {
  border-radius: 3px;
  font-size: 11px;
}
.price {
  color: var(--orange);
  font-family: var(--body);
  font-size: 16px;
  font-weight: 800;
}
.price.sale {
  color: var(--orange);
}
.badge {
  background: var(--orange);
  border-radius: 3px;
  font-family: var(--body);
  font-size: 11px;
}
.quick-actions button {
  border: 1px solid var(--line);
}
.product-card .mini-cart {
  right: 10px;
  bottom: 10px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 3px;
  background: var(--dark);
  font-family: var(--body);
  font-size: 11px;
}
.product-card .mini-cart:hover {
  background: var(--orange);
}

.promo-panel-grid.below-products {
  max-width: var(--section-max);
  margin-top: 34px;
  grid-auto-rows: 255px;
}
.promo-card {
  min-height: 255px;
  padding: 28px;
  border-radius: var(--card-radius);
}
.promo-card strong {
  font-family: var(--heading);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.05;
}
.promo-card span,
.promo-card em {
  font-family: var(--body);
  font-size: 12px;
}

.split-products {
  grid-template-columns: 270px 1fr;
}
.side-title h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
}
.product-grid.two {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.brand-strip {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.brand-marquee span {
  color: var(--text-subtle);
  font-family: var(--body);
  font-size: 18px;
  font-weight: 800;
}

.collection-feature {
  padding-top: 68px;
}
.collection-hero {
  min-height: 440px;
  border-radius: var(--card-radius);
}
.collection-hero h2 {
  font-size: clamp(42px, 5vw, 74px);
  font-weight: 700;
  line-height: 1.02;
}
.collection-hero span {
  color: var(--orange);
}
.product-row.slim {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.reviews {
  padding-top: 72px;
  padding-bottom: 78px;
  background: var(--dark);
  color: var(--white);
}
.reviews h2 {
  color: var(--white);
}
.polished-reviews article {
  border-top-color: var(--orange);
}
.polished-reviews p {
  color: var(--dark);
  font-size: 22px;
}
.polished-reviews strong {
  color: var(--orange);
}

.tips-grid {
  gap: 24px;
}
.tip-main img,
.tip-list img {
  border-radius: var(--card-radius);
}
.tip-main h3,
.tip-list h3 {
  font-family: var(--body);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.12;
  text-transform: none;
}
.tip-list a {
  grid-template-columns: 210px 1fr;
}

.unified-footer {
  padding-top: 64px;
}
.footer-main {
  grid-template-columns: minmax(260px, 1.5fr) repeat(4, minmax(120px, 1fr));
}
.footer-col h3 {
  font-size: 13px;
}
.footer-col a,
.footer-col span,
.footer-company p,
.footer-payments {
  font-size: 13px;
}
.payment-icons img {
  width: 54px;
  height: 32px;
}

.catalog-hero {
  padding-top: 42px;
  margin-bottom: 36px;
}
.catalog-hero .page-title,
.page-title {
  font-size: clamp(54px, 7vw, 92px);
  line-height: 1;
}
.catalog-layout {
  grid-template-columns: 300px 1fr;
  gap: 44px;
}
.product-grid.catalog,
.product-grid.catalog.view-compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.filter-panel h2,
.filter-panel summary,
.sort-control,
.catalog-tools {
  font-family: var(--body);
}

.product-detail {
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  gap: 48px;
}
.main-photo {
  min-height: 650px;
}
.product-info h1 {
  font-family: var(--body);
  font-size: 34px;
  line-height: 1.12;
  text-transform: none;
}
.pdp-status span,
.pdp-trust-bar strong,
.tabs button,
.product-copy h2 {
  font-family: var(--body);
}

@media (max-width: 1100px) {
  .header-inner {
    min-height: 76px;
  }
  .hero {
    height: auto;
    min-height: 600px;
  }
  .hero-content {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 24px;
  }
  .hero-finder {
    justify-self: start;
  }
  .category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .product-grid.catalog,
  .product-grid.catalog.view-compact,
  .product-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .spotlight-products .product-card {
    flex-basis: calc((100% - 22px) / 2.35);
  }
}

@media (max-width: 720px) {
  .promo-top {
    height: 36px;
    font-size: 10px;
  }
  .header-rebuilt {
    min-height: 68px;
  }
  .brand-logo-img {
    width: 132px;
    max-width: 132px;
    max-height: 38px;
  }
  .hero {
    min-height: 650px;
  }
  .hero-content {
    padding: 34px 18px;
  }
  .hero h1 {
    font-size: clamp(38px, 13vw, 54px);
  }
  .hero-copy > p:not(.hero-kicker) {
    font-size: 14px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-finder {
    width: 100%;
    padding: 18px;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .hero-finder h2,
  .hero-finder .dark-btn {
    grid-column: 1 / -1;
  }
  .hero-finder select {
    height: 38px;
    padding: 0 8px;
    font-size: 12px;
  }
  .hero-finder span {
    font-size: 10px;
  }
  .benefits {
    grid-template-columns: 1fr;
  }
  .benefits div,
  .benefits div:nth-child(odd) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .benefits div:last-child {
    border-bottom: 0;
  }
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 12px;
  }
  .category-tile img {
    width: 96px;
    height: 96px;
  }
  .spotlight-products .product-card {
    flex: 0 0 82%;
  }
  .product-grid.two,
  .product-grid.catalog,
  .product-grid.catalog.view-compact,
  .product-row.slim {
    grid-template-columns: 1fr;
  }
  .product-card {
    grid-template-rows: auto 22px auto auto 30px;
  }
  .product-card h3,
  .product-attrs {
    height: auto;
  }
  .collection-hero {
    min-height: 360px;
  }
  .collection-hero div {
    padding: 28px;
  }
  .tip-list a {
    grid-template-columns: 1fr;
  }
  .product-grid.catalog.view-list .product-card {
    display: grid;
  }
  .catalog-layout {
    gap: 24px;
  }
  .product-detail {
    gap: 28px;
  }
  .main-photo {
    min-height: 420px;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }
}

/* Reference-matching iteration */
.promo-top {
  height: 52px;
  padding: 0;
  background: #050505;
}
.top-info-inner {
  width: min(calc(100% - 64px), 1410px);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
.top-info-left,
.top-info-right {
  display: flex;
  align-items: center;
  gap: 42px;
}
.top-info-inner span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.top-info-inner svg {
  width: 17px;
  height: 17px;
}
.top-info-inner strong {
  color: var(--orange);
}

.site-header {
  position: relative;
  background: var(--surface);
  border-bottom: 0;
  box-shadow: none;
}
.header-main-row,
.header-nav-row {
  width: min(calc(100% - 64px), 1410px);
  margin: 0 auto;
  display: grid;
  align-items: center;
}
.header-main-row {
  height: 112px;
  grid-template-columns: 330px 270px minmax(400px, 1fr) 190px;
  gap: 14px;
}
.header-nav-row {
  height: 68px;
  grid-template-columns: minmax(0, 1fr) auto;
}
.header-main-row .brand-mark {
  justify-self: start;
}
.brand-logo-img {
  width: 248px;
  max-width: 248px;
  max-height: 64px;
}
.departments-button {
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 5px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--body);
  font-size: 15px;
  font-weight: 800;
}
.departments-button svg {
  width: 18px;
  height: 18px;
}
.header-search {
  height: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px;
  border: 1px solid #d9dde4;
  border-radius: 5px;
  overflow: hidden;
  background: var(--surface);
}
.header-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  padding: 0 22px;
  color: var(--text-soft);
  font-size: 14px;
  outline: 0;
}
.header-search button {
  display: grid;
  place-items: center;
  color: var(--dark);
}
.header-search svg {
  width: 24px;
  height: 24px;
}
.header-actions.icon-actions {
  justify-content: flex-end;
  gap: 24px;
}
.icon-actions .header-tool {
  width: 34px;
  height: 34px;
}
.icon-actions .header-tool svg,
.cart-tool svg {
  width: 28px !important;
  height: 28px !important;
  stroke-width: 2.7;
}
.cart-tool span,
.wishlist-tool span {
  top: -10px;
  right: -10px;
  min-width: 18px;
  height: 18px;
  font-size: 10px;
}
.mobile-search-tool {
  display: none;
}
.header-nav-row {
  border-top: 1px solid var(--line);
}
.primary-menu {
  display: flex;
  align-items: center;
  gap: 48px;
}
.primary-menu a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 68px;
  color: var(--dark);
  font-family: var(--body);
  font-size: 14px;
  font-weight: 800;
  text-transform: none;
}
.primary-menu a:first-child {
  color: var(--orange);
}
.primary-menu svg,
.header-review-tools svg {
  width: 13px;
  height: 13px;
}
.header-review-tools {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--dark);
  font-size: 13px;
}
.review-stars {
  color: #f7b500;
  font-size: 19px;
  letter-spacing: 0;
}

.hero {
  height: 680px;
  min-height: 680px;
}
.hero-content {
  width: min(calc(100% - 64px), 1410px);
  grid-template-columns: minmax(0, 780px) 410px;
  justify-content: space-between;
  gap: 80px;
  padding: 0;
  margin: 0 auto;
}
.hero-kicker {
  font-size: 34px;
}
.hero-copy {
  max-width: 780px;
}
.hero h1 {
  max-width: 900px;
  font-size: clamp(70px, 5.35vw, 92px);
  line-height: .98;
}
.hero h1 .nowrap {
  white-space: nowrap;
}
.hero-copy > p:not(.hero-kicker) {
  max-width: 660px;
  font-size: 18px;
  line-height: 1.7;
}
.hero-actions {
  margin-top: 48px;
}
.pill-btn {
  min-width: 202px;
  min-height: 64px;
  border-radius: 7px;
  font-size: 14px;
}
.hero-secondary {
  display: none;
}
.hero-finder {
  width: 410px;
  padding: 44px;
  gap: 18px;
  border-radius: 6px;
  align-self: center;
  transform: translateY(40px);
}
.hero-finder h2 {
  width: max-content;
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: -108px 0 8px;
  padding: 0 24px;
  border-radius: 6px 6px 0 0;
  background: #050505;
  color: var(--white);
  font-family: var(--body);
  font-size: 14px;
}
.hero-finder h2::before {
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  background: currentColor;
  clip-path: path("M2 11h12v3H2z M4 7h8l2 4H2l2-4z M5 4h6v3H5z");
}
.hero-finder label {
  gap: 0;
}
.hero-finder span {
  display: none;
}
.hero-finder select {
  height: 62px;
  border-color: #dfe3ea;
  background: var(--surface);
  font-size: 14px;
}
.hero-finder .dark-btn {
  min-height: 62px;
  border-radius: 6px;
  font-size: 14px;
}

.benefits.compact {
  display: none;
}
.section.categories {
  max-width: none;
  padding-top: 92px;
  padding-bottom: 92px;
}
.section.categories.reveal {
  opacity: 1;
  transform: none;
}
.categories .eyebrow {
  display: none;
}
.categories h2 {
  text-align: left;
  width: min(calc(100% - 64px), 1410px);
  margin: 0 auto 44px;
  color: var(--dark);
  font-family: var(--heading);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.22;
}
.category-grid {
  width: min(calc(100% - 64px), 1410px);
  margin: 0 auto;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 38px;
}
.category-tile {
  gap: 18px;
}
.category-tile img {
  width: 150px;
  height: 150px;
  padding: 16px;
  border: 0;
  background: #f0edf9;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: normal;
  box-shadow: none;
}
.category-tile:first-child img {
  padding: 0;
  background: transparent;
  mix-blend-mode: normal;
}
.category-tile span {
  font-size: 14px;
  font-weight: 900;
}
.categories .promo-panel-grid {
  width: min(calc(100% - 64px), 1410px);
  max-width: 1410px;
  margin: 64px auto 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 340px;
  gap: 30px;
}
.categories .promo-card {
  min-height: 340px;
  padding: 42px;
  border-radius: 6px;
}
.categories .promo-card strong {
  max-width: 560px;
  font-size: 38px;
  line-height: 1.2;
}
.categories .promo-card em {
  width: max-content;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  margin-top: 28px;
  padding: 0 24px;
  border-radius: 5px;
  background: var(--orange);
}

.featured-commerce {
  padding-top: 88px;
  background: #f0eef8;
}
.featured-commerce-inner {
  max-width: 1410px;
}
.compact-head {
  margin-bottom: 44px;
}
.compact-head h2 {
  font-size: 30px;
}
.spotlight-products {
  padding-right: max(var(--page-gutter), calc((100vw - 1410px) / 2));
}
.spotlight-products .product-card {
  flex: 0 0 calc((100% - 96px) / 5);
}
.product-card {
  padding: 18px 18px 62px;
  grid-template-rows: auto 25px 92px 56px 32px;
}
.product-card .product-media {
  aspect-ratio: 1 / .86;
}
.product-card h3 {
  height: 92px;
  font-size: 16px;
  line-height: 1.18;
}
.price {
  font-size: 19px;
}
.vendor {
  font-size: 12px;
}
.product-card .mini-cart {
  min-height: 40px;
  font-size: 12px;
}

@media (max-width: 1100px) {
  .top-info-inner,
  .header-main-row,
  .header-nav-row,
  .hero-content,
  .categories h2,
  .category-grid,
  .categories .promo-panel-grid {
    width: min(calc(100% - 44px), 1410px);
  }
  .top-info-right,
  .header-review-tools,
  .departments-button,
  .header-search,
  .header-nav-row {
    display: none;
  }
  .header-main-row {
    height: 92px;
    grid-template-columns: 52px 1fr auto;
  }
  .mobile-menu-button,
  .mobile-search-tool {
    display: inline-flex;
  }
  .header-main-row .brand-mark {
    justify-self: center;
  }
  .brand-logo-img {
    width: 194px;
  }
  .hero {
    height: auto;
    min-height: 820px;
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 58px 0;
  }
  .hero-finder {
    justify-self: start;
    width: min(100%, 386px);
  }
  .category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .categories .promo-panel-grid {
    grid-template-columns: 1fr;
  }
  .spotlight-products .product-card {
    flex-basis: calc((100% - 44px) / 3);
  }
}

@media (max-width: 720px) {
  .promo-top {
    height: 44px;
  }
  .top-info-inner {
    width: calc(100% - 28px);
    justify-content: center;
    font-size: 11px;
  }
  .top-info-left span:nth-child(2) {
    display: none;
  }
  .header-main-row {
    width: calc(100% - 28px);
    height: 84px;
    grid-template-columns: 42px 1fr auto;
  }
  .brand-logo-img {
    width: 164px;
  }
  .hero {
    min-height: 760px;
  }
  .hero-content {
    width: calc(100% - 36px);
    padding: 42px 0;
    gap: 28px;
  }
  .hero-kicker {
    font-size: 22px;
  }
  .hero h1 {
    font-size: clamp(50px, 14vw, 64px);
  }
  .hero h1 .nowrap {
    white-space: normal;
  }
  .hero-actions {
    margin-top: 28px;
  }
  .hero-finder {
    width: 100%;
    padding: 22px;
    grid-template-columns: 1fr 1fr;
  }
  .hero-finder h2,
  .hero-finder .dark-btn {
    grid-column: 1 / -1;
  }
  .hero-finder h2 {
    min-height: 42px;
    margin: -64px 0 4px;
    padding: 0 16px;
  }
  .hero-finder select {
    height: 42px;
  }
  .section.categories {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .categories h2,
  .category-grid,
  .categories .promo-panel-grid {
    width: calc(100% - 36px);
  }
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 18px;
  }
  .category-tile img {
    width: 122px;
    height: 122px;
  }
  .categories .promo-panel-grid {
    grid-auto-rows: 260px;
    margin-top: 42px;
  }
  .categories .promo-card {
    min-height: 260px;
    padding: 28px;
  }
  .categories .promo-card strong {
    font-size: 30px;
  }
  .spotlight-products .product-card {
    flex: 0 0 82%;
  }
}
