:root {
  color-scheme: light;
  --bg: #f3f3f0;
  --surface: #fff;
  --surface-soft: #e9e9e5;
  --ink: #0e0e11;
  --ink-soft: #26262b;
  --muted: #6a6a70;
  --muted-strong: #505057;
  --line: #d9d9d3;
  --line-strong: #bdbdb6;
  --cobalt: #3155f5;
  --cobalt-dark: #2445d8;
  --success: #187344;
  --danger: #b32828;
  --warning-bg: #f7ead7;
  --container: 1480px;
  --header-height: 68px;
  --radius: 8px;
  --radius-small: 5px;
  --shadow-menu: 0 24px 70px rgba(14, 14, 17, .16);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  text-size-adjust: 100%;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -.012em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.overlay-open {
  overflow: hidden;
}

main {
  display: block;
  min-height: 55vh;
}

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

svg {
  width: 1em;
  height: 1em;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  margin: 0;
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

button {
  border: 0;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-small);
  outline: 0;
  background: var(--surface);
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

input {
  min-height: 50px;
  padding: 0 14px;
}

select {
  min-height: 46px;
  padding: 0 38px 0 13px;
}

textarea {
  min-height: 116px;
  padding: 13px 14px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #8c8c91;
  opacity: 1;
}

input:hover,
select:hover,
textarea:hover {
  border-color: #98989f;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--cobalt);
  box-shadow: 0 0 0 3px rgba(49, 85, 245, .13);
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--cobalt);
  outline-offset: 3px;
}

::selection {
  color: #fff;
  background: var(--cobalt);
}

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

h1,
h2,
h3,
strong,
b {
  text-wrap: balance;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  font-weight: 680;
  line-height: .98;
  letter-spacing: -.052em;
}

h1 {
  font-size: clamp(46px, 6vw, 92px);
}

h2 {
  font-size: clamp(34px, 4vw, 62px);
}

h3 {
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.page {
  padding-block: 26px 120px;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.mobile-only {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 300;
  padding: 10px 14px;
  color: #fff;
  background: var(--cobalt);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.eyebrow {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, .65);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: var(--cobalt);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 22px;
  border: 1px solid var(--cobalt);
  border-radius: var(--radius-small);
  color: #fff;
  background: var(--cobalt);
  font-size: 14px;
  font-weight: 680;
  line-height: 1.15;
  text-align: center;
  transition: color .18s ease, background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.button:hover {
  border-color: var(--cobalt-dark);
  background: var(--cobalt-dark);
  transform: translateY(-1px);
}

.button:active {
  transform: none;
}

.button--light {
  border-color: #fff;
  color: var(--ink);
  background: #fff;
}

.button--light:hover {
  border-color: #e6e6e2;
  background: #e6e6e2;
}

.button--full {
  width: 100%;
}

.button--large {
  min-height: 58px;
  padding-inline: 28px;
  font-size: 16px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  color: var(--cobalt);
  background: transparent;
  font-size: 14px;
  font-weight: 680;
}

.text-link span {
  transition: transform .18s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.text-link--on-dark {
  color: #fff;
}

.text-button {
  padding: 0;
  color: var(--muted);
  background: transparent;
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.text-button:hover {
  color: var(--danger);
}

.badge {
  width: max-content;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 8px;
  border-radius: 3px;
  color: #fff;
  background: var(--cobalt);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.section-kicker,
.section-heading {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(420px, 1.28fr);
  align-items: end;
  gap: 64px;
  margin-bottom: 48px;
}

.section-kicker > p,
.section-heading > div > p:not(.eyebrow) {
  max-width: 580px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.section-heading > a {
  justify-self: end;
}

.content-section {
  margin-top: 96px;
}

.breadcrumbs {
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.breadcrumbs a {
  color: var(--muted-strong);
}

.breadcrumbs a:hover {
  color: var(--cobalt);
}

.title-line {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-block: 22px 38px;
  border-bottom: 1px solid var(--line);
}

.title-line > div {
  min-width: 0;
}

.title-line h1 {
  font-size: clamp(46px, 6vw, 78px);
}

.title-line > span {
  flex: 0 0 auto;
  padding-bottom: 5px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 640px) {
  .title-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .title-line > span {
    padding-bottom: 0;
  }
}

/* Header, catalog panel and search */
.service-bar {
  min-height: 30px;
  color: rgba(255, 255, 255, .68);
  background: var(--ink);
  font-size: 11px;
  letter-spacing: .02em;
}

.service-bar > div {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.service-bar a {
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(160%) blur(18px);
}

.header-shell {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 132px max-content minmax(0, 1fr) minmax(230px, 350px) auto;
  align-items: center;
  gap: 22px;
}

.logo {
  width: max-content;
  display: inline-flex;
  align-items: baseline;
  line-height: 1;
}

.logo img {
  width: 132px;
  height: 36px;
  object-fit: contain;
  object-position: left center;
}

.logo strong {
  font-size: 27px;
  letter-spacing: -.06em;
}

.logo span {
  font-size: 20px;
  letter-spacing: -.04em;
}

.catalog-trigger {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid var(--ink);
  border-radius: var(--radius-small);
  color: #fff;
  background: var(--ink);
  font-size: 13px;
  font-weight: 680;
  white-space: nowrap;
  transition: color .18s ease, background-color .18s ease, border-color .18s ease;
}

.catalog-trigger > span,
.catalog-trigger > span::before,
.catalog-trigger > span::after {
  width: 15px;
  height: 1.5px;
  display: block;
  background: currentColor;
  transition: transform .22s ease;
}

.catalog-trigger > span {
  position: relative;
}

.catalog-trigger > span::before,
.catalog-trigger > span::after {
  position: absolute;
  left: 0;
  content: "";
}

.catalog-trigger > span::before {
  top: -5px;
}

.catalog-trigger > span::after {
  top: 5px;
}

.catalog-trigger:hover,
.catalog-open .catalog-trigger {
  border-color: var(--cobalt);
  background: var(--cobalt);
}

.catalog-open .catalog-trigger > span {
  background: transparent;
}

.catalog-open .catalog-trigger > span::before {
  top: 0;
  transform: rotate(45deg);
}

.catalog-open .catalog-trigger > span::after {
  top: 0;
  transform: rotate(-45deg);
}

.main-nav {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(14px, 1.1vw, 20px);
  overflow: hidden;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

@media (min-width: 1121px) and (max-width: 1500px) {
  .main-nav a:nth-child(n + 5) {
    display: none;
  }
}

@media (min-width: 1121px) and (max-width: 1420px) {
  .main-nav a:nth-child(n + 4) {
    display: none;
  }
}

.main-nav a {
  position: relative;
  min-height: var(--header-height);
  display: inline-flex;
  align-items: center;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--cobalt);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.main-nav a:hover {
  color: var(--cobalt);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-search {
  position: relative;
  min-width: 0;
  height: 40px;
  display: grid;
  grid-template-columns: 1fr 42px;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-small);
  background: #fafaf8;
}

.header-search:focus-within {
  border-color: var(--cobalt);
  box-shadow: 0 0 0 3px rgba(49, 85, 245, .11);
  background: #fff;
}

.header-search input {
  min-width: 0;
  min-height: 38px;
  padding: 0 10px 0 13px;
  border: 0;
  background: transparent;
  box-shadow: none;
  font-size: 13px;
}

.header-search button {
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--ink);
  background: transparent;
}

.header-search button:hover {
  color: var(--cobalt);
}

.search-suggestions {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  left: 0;
  z-index: 140;
  max-height: min(520px, calc(100vh - 120px));
  display: none;
  overflow-y: auto;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-menu);
}

.search-suggestions.is-open {
  display: block;
}

.search-suggestion {
  min-height: 68px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 12px 15px;
  border-bottom: 1px solid var(--line);
}

.search-suggestion:last-child {
  border-bottom: 0;
}

.search-suggestion:hover,
.search-suggestion.is-active {
  background: #f1f3ff;
}

.search-suggestion__copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.search-suggestion__copy b {
  overflow: hidden;
  font-size: 13px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-suggestion__copy small {
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-suggestion > strong {
  font-size: 13px;
  white-space: nowrap;
}

.search-suggestions__section + .search-suggestions__section {
  border-top: 1px solid var(--line-strong);
}

.search-suggestions__label {
  margin: 0;
  padding: 10px 15px 7px;
  color: var(--muted);
  background: #f7f7f4;
  font-size: 10px;
  font-weight: 730;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.search-suggestion--compact {
  min-height: 44px;
  padding-block: 9px;
  color: var(--muted-strong);
  font-size: 12px;
  font-weight: 650;
}

.search-suggestion--compact > span:last-child {
  color: var(--cobalt);
}

.search-suggestions__status,
.search-suggestions__empty {
  padding: 18px;
  color: var(--muted);
  font-size: 13px;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.header-actions a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.header-actions a:hover {
  color: var(--cobalt);
}

.cart-link {
  gap: 8px;
}

.cart-link em {
  min-width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  padding-inline: 5px;
  border-radius: 4px;
  color: #fff;
  background: var(--ink);
  font-size: 10px;
  font-style: normal;
}

.menu-toggle,
.mobile-search-toggle {
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  color: var(--ink);
  background: transparent;
}

.menu-toggle {
  align-content: center;
  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 1.5px;
  display: block;
  background: currentColor;
  transition: transform .22s ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

.mobile-search-toggle {
  font-size: 20px;
}

.mega-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 130;
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-menu);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  visibility: hidden;
  transition: opacity .2s ease, transform .28s var(--ease), visibility .2s;
}

.catalog-open .mega-menu,
.mega-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: none;
  visibility: visible;
}

.mega-menu__inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(250px, .9fr);
  gap: 64px;
  padding-block: 34px 46px;
}

.mega-menu__inner > aside {
  padding-left: 32px;
  border-left: 1px solid var(--line);
}

.mega-menu__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.mega-menu__heading p,
.mega-menu__inner > aside > p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.mega-menu__heading a,
.mega-all {
  color: var(--cobalt);
  font-size: 12px;
  font-weight: 650;
}

.mega-categories {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.mega-category {
  min-height: 104px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-content: center;
  column-gap: 12px;
  padding: 15px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mega-category:hover {
  color: var(--cobalt);
  background: #f6f7ff;
}

.mega-category > span {
  grid-row: 1 / 3;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--cobalt);
  border: 1px solid #dde2f7;
  border-radius: 10px;
  background: linear-gradient(145deg, #f8f9ff, #edf0fb);
  font-size: 22px;
}

.mega-category b {
  align-self: end;
  overflow: hidden;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.15;
  text-overflow: ellipsis;
}

.mega-category small {
  align-self: start;
  color: var(--muted);
  font-size: 10px;
}

.mega-brands {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 12px;
  border-top: 1px solid var(--line);
}

.mega-brands a {
  min-width: 0;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 5px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.mega-brands a:nth-child(odd) {
  padding-right: 12px;
  border-right: 1px solid var(--line);
}

.mega-brands a:nth-child(even) {
  padding-left: 12px;
}

.mega-brands a:hover {
  color: var(--cobalt);
}

.mega-brands span {
  color: var(--muted);
}

.mega-brands .brand-lockup {
  flex: 1 1 auto;
}

.mega-brands .brand-lockup__name {
  color: var(--ink);
}

.mega-brands .brand-count {
  flex: 0 0 auto;
  color: var(--muted);
}

.brand-lockup {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.brand-lockup img {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-lockup__name {
  overflow: hidden;
  color: var(--ink);
  font-weight: 680;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-lockup--compact {
  width: 100%;
  justify-content: center;
}

.brand-lockup--compact img {
  width: auto;
  max-width: min(86px, 78%);
  height: 25px;
}

.brand-lockup--text .brand-lockup__name {
  letter-spacing: -.015em;
}

.brand-lockup--compact.brand-lockup--text .brand-lockup__name {
  color: var(--muted-strong);
  font-size: 14px;
}

.mega-all {
  display: inline-flex;
  gap: 7px;
  margin-top: 18px;
}

.mega-account {
  display: none;
}

.page-scrim {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(14, 14, 17, .42);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.page-scrim.is-visible,
.overlay-open .page-scrim {
  opacity: 1;
  pointer-events: auto;
}

.toast {
  position: fixed;
  top: calc(var(--header-height) + 18px);
  right: 20px;
  z-index: 220;
  max-width: min(410px, calc(100vw - 32px));
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
  box-shadow: 0 14px 44px rgba(14, 14, 17, .15);
  font-size: 13px;
}

.toast::before {
  width: 4px;
  align-self: stretch;
  background: var(--cobalt);
  content: "";
}

.toast--success::before {
  background: var(--success);
}

.toast--error::before {
  background: var(--danger);
}

.toast button {
  margin-left: auto;
  padding: 0;
  color: var(--muted);
  background: transparent;
  font-size: 20px;
  line-height: 1;
}

.toast.is-leaving {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .18s ease, transform .18s ease;
}

/* Home */
.home-hero {
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.home-hero__inner {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(440px, .9fr) minmax(560px, 1.1fr);
  align-items: stretch;
}

.home-hero__copy {
  z-index: 1;
  align-self: center;
  padding: 88px 64px 88px 0;
}

.home-hero h1 {
  max-width: 780px;
  font-size: clamp(64px, 7vw, 110px);
}

.home-hero h1 span {
  color: #8da1ff;
}

.home-hero__lead {
  max-width: 650px;
  margin: 34px 0 0;
  color: #b2b2b8;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.48;
}

.home-hero__actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 36px;
}

.home-facts {
  max-width: 690px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 72px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.home-facts > div {
  padding: 20px 18px 0 0;
}

.home-facts > div + div {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, .18);
}

.home-facts dt {
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 690;
  letter-spacing: -.045em;
}

.home-facts dd {
  margin: 4px 0 0;
  color: #898990;
  font-size: 11px;
}

.home-hero__visual {
  position: relative;
  min-width: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, .12);
  background: #17171b;
}

.home-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-rail {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.brand-rail__track {
  width: 100%;
  min-height: 80px;
  display: grid;
  grid-template-columns: repeat(14, minmax(0, 1fr));
}

.brand-rail a {
  min-width: 0;
  min-height: 80px;
  display: grid;
  place-items: center;
  padding: 12px 10px;
  border-left: 1px solid var(--line);
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 650;
}

.brand-rail a:last-child {
  border-right: 1px solid var(--line);
}

.brand-rail a:hover {
  color: var(--cobalt);
}

.home-section {
  padding-block: 112px;
}

.home-categories {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line);
}

.home-category {
  min-height: 150px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.home-category:hover {
  background: #f7f7f4;
}

.home-category__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--cobalt);
  border: 1px solid #dde2f7;
  border-radius: 16px;
  background: linear-gradient(145deg, #f8f9ff, #edf0fb);
  font-size: 29px;
}

.home-category h3 {
  font-size: 20px;
}

.home-category p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.home-category i {
  color: var(--muted);
  font-style: normal;
  transition: color .18s ease, transform .18s ease;
}

.home-category:hover i {
  color: var(--cobalt);
  transform: translateX(4px);
}

.home-clarity {
  padding-block: 104px;
  color: #fff;
  background: var(--cobalt);
}

.home-clarity__grid {
  display: grid;
  grid-template-columns: minmax(320px, .76fr) minmax(560px, 1.24fr);
  gap: 80px;
}

.home-clarity h2 {
  max-width: 640px;
}

.home-clarity .eyebrow {
  color: #cbd4ff;
}

.clarity-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .35);
}

.clarity-points article {
  padding: 24px 24px 0 0;
}

.clarity-points article + article {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, .35);
}

.clarity-points span {
  color: #cbd4ff;
  font-size: 12px;
  font-weight: 700;
}

.clarity-points h3 {
  margin-top: 34px;
  font-size: 20px;
}

.clarity-points p {
  margin: 12px 0 0;
  color: #e0e5ff;
  font-size: 14px;
}

.home-featured {
  padding-top: 124px;
}

.product-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.scenarios {
  padding-top: 40px;
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line);
}

.scenario-grid a {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.scenario-grid a:hover {
  background: #f7f7f4;
}

.scenario-grid small {
  color: var(--cobalt);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.scenario-grid h3 {
  margin-top: auto;
  font-size: clamp(32px, 3vw, 48px);
}

.scenario-grid p {
  margin: 16px 0 0;
  color: var(--muted);
}

.scenario-grid span {
  margin-top: 24px;
  color: var(--cobalt);
  font-size: 13px;
  font-weight: 650;
}

.process {
  padding-top: 34px;
}

.process ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.process li {
  display: grid;
  grid-template-columns: 90px minmax(240px, .55fr) minmax(360px, 1fr);
  gap: 26px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.process li > span {
  color: var(--cobalt);
  font-size: 13px;
  font-weight: 720;
}

.process li h3 {
  font-size: 26px;
}

.process li p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
}

.faq {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(480px, 1.3fr);
  gap: 76px;
  padding-top: 42px;
}

.faq .section-kicker {
  display: block;
  margin: 0;
}

.faq > div:last-child {
  border-top: 1px solid var(--line-strong);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  position: relative;
  padding: 23px 48px 23px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 650;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  position: absolute;
  top: 20px;
  right: 4px;
  color: var(--cobalt);
  content: "+";
  font-size: 22px;
  font-weight: 400;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  max-width: 720px;
  margin: -4px 0 24px;
  color: var(--muted);
  font-size: 14px;
}

/* Product cards and generated product visuals */
.product-card {
  min-width: 0;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: #fff;
  transition: border-color .2s ease, transform .2s ease;
}

.product-card:hover {
  border-color: #a9a9a2;
  transform: translateY(-2px);
}

.product-card__top {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 10px;
}

.product-card__top span {
  overflow: hidden;
  color: var(--muted-strong);
  font-weight: 680;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-card__top small {
  flex: 0 0 auto;
}

.product-image {
  height: 262px;
  display: grid;
  place-items: center;
  margin: 6px 0 16px;
  overflow: hidden;
  background: #f4f4f1;
}

.product-image img {
  width: 100%;
  height: 100%;
  padding: 18px;
  object-fit: contain;
  transition: transform .35s var(--ease);
}

.product-card:hover .product-image img {
  transform: scale(1.025);
}

.product-card__body {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-name {
  display: -webkit-box;
  overflow: hidden;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: -.02em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-name:hover {
  color: var(--cobalt);
}

.product-variant {
  min-height: 37px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.catalog-stock,
.stock {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  color: var(--success);
  font-size: 11px;
}

.catalog-stock::before,
.stock::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.product-card__buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
}

.card-price {
  font-size: 20px;
  font-weight: 720;
  letter-spacing: -.035em;
  white-space: nowrap;
}

.product-card form {
  flex: 0 0 auto;
}

.card-add {
  min-height: 40px;
  padding: 8px 14px;
  font-size: 12px;
}

.product-visual {
  --visual-bg: #e6e8ee;
  --visual-ink: #273047;
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--visual-ink);
  background: var(--visual-bg);
}

.product-visual--smartphones {
  --visual-bg: #e6e9f5;
  --visual-ink: #243b91;
}

.product-visual--tablets {
  --visual-bg: #ece8df;
  --visual-ink: #665640;
}

.product-visual--computers {
  --visual-bg: #e1e6e4;
  --visual-ink: #344c48;
}

.product-visual--wearables {
  --visual-bg: #e9e3e1;
  --visual-ink: #684b45;
}

.product-visual--audio {
  --visual-bg: #e4e6ed;
  --visual-ink: #3d4663;
}

.product-visual--photo-video {
  --visual-bg: #dfe8e9;
  --visual-ink: #315a61;
}

.product-visual--gaming-vr {
  --visual-bg: #e7e1ee;
  --visual-ink: #58416f;
}

.product-visual--smart-devices {
  --visual-bg: #e3e9e1;
  --visual-ink: #3d5d3a;
}

.product-visual--home-care {
  --visual-bg: #eee6df;
  --visual-ink: #74533a;
}

.product-visual--navigation-sport {
  --visual-bg: #e6eadf;
  --visual-ink: #4a6135;
}

.product-visual--ereaders {
  --visual-bg: #e4e5df;
  --visual-ink: #485047;
}

.product-visual--accessories {
  --visual-bg: #e8e8e4;
  --visual-ink: #4d4d49;
}

.product-visual--sale {
  --visual-bg: #eee1df;
  --visual-ink: #7b3737;
}

.product-visual__mark {
  position: absolute;
  top: -20px;
  right: -12px;
  z-index: -1;
  max-width: 92%;
  overflow: hidden;
  color: currentColor;
  font-size: clamp(76px, 10vw, 170px);
  font-weight: 760;
  letter-spacing: -.09em;
  line-height: 1;
  opacity: .08;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-visual__icon {
  width: 42%;
  max-width: 170px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: currentColor;
  font-size: clamp(70px, 8vw, 136px);
}

.product-visual__icon svg {
  width: 100%;
  height: 100%;
}

.product-visual__copy {
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.product-visual__copy b {
  overflow: hidden;
  font-size: 11px;
  font-weight: 720;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-visual__copy small {
  flex: 0 0 auto;
  font-size: 10px;
  opacity: .72;
}

.product-visual--card {
  height: 100%;
}

.product-visual--detail .product-visual__mark {
  top: -4%;
  right: -3%;
  font-size: clamp(130px, 15vw, 270px);
}

.product-visual--detail .product-visual__icon {
  max-width: 340px;
  font-size: clamp(130px, 17vw, 280px);
}

.product-visual--detail .product-visual__copy {
  right: 30px;
  bottom: 26px;
  left: 30px;
}

.product-visual--detail .product-visual__copy b {
  font-size: 14px;
}

/* Catalog */
.catalog-intro {
  min-height: 550px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  align-items: end;
  gap: 72px;
  padding: 64px;
  color: #fff;
  background: var(--ink);
}

.catalog-intro h1 {
  max-width: 880px;
}

.catalog-intro > div > p:not(.eyebrow) {
  max-width: 670px;
  margin: 30px 0 34px;
  color: #acacb3;
  font-size: 19px;
}

.catalog-intro aside {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-left: 34px;
  border-left: 1px solid rgba(255, 255, 255, .2);
}

.catalog-intro aside span {
  color: #888890;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.catalog-intro aside strong {
  margin-top: 10px;
  font-size: clamp(30px, 3vw, 47px);
  letter-spacing: -.05em;
}

.catalog-intro aside p {
  max-width: 330px;
  margin: 22px 0 0;
  color: #929299;
  font-size: 13px;
}

.catalog-categories,
.rubricator,
.brand-index {
  padding-top: 112px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line);
}

.category-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.category-card:hover {
  background: #f7f7f4;
}

.category-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--cobalt);
  border: 1px solid #dde2f7;
  border-radius: 15px;
  background: linear-gradient(145deg, #f8f9ff, #edf0fb);
  font-size: 27px;
}

.category-icon {
  width: 1em;
  height: 1em;
  display: block;
  overflow: visible;
}

.category-card > div {
  margin-top: auto;
}

.category-card h2 {
  font-size: 28px;
}

.category-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.category-card i {
  margin-top: 22px;
  color: var(--cobalt);
  font-size: 12px;
  font-style: normal;
  font-weight: 650;
}

.rubric-group {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: 48px;
  padding: 30px 0;
  border-top: 1px solid var(--line-strong);
}

.rubric-group:last-child {
  border-bottom: 1px solid var(--line-strong);
}

.rubric-title {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  align-items: start;
  gap: 15px;
}

.rubric-title > span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--cobalt);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  font-size: 24px;
}

.rubric-title h2 {
  font-size: 23px;
}

.rubric-title p {
  max-width: 420px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.rubric-title > a {
  grid-column: 2;
  color: var(--cobalt);
  font-size: 12px;
  font-weight: 650;
}

.rubric-links {
  align-content: start;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.rubric-links a {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  font-size: 12px;
}

.rubric-links a:hover {
  color: var(--cobalt);
  background: #f7f7f4;
}

.rubric-links span {
  color: var(--muted);
  font-size: 10px;
}

.brand-index > div:last-child {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line);
}

.brand-index > div:last-child a {
  min-width: 0;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 15px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.brand-index b {
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-index span {
  color: var(--muted);
  font-size: 10px;
}

.brand-index .brand-lockup {
  flex: 1 1 auto;
}

.brand-index .brand-lockup__name {
  color: var(--ink);
  font-size: 14px;
}

.brand-index .brand-count {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 12px;
}

.brand-index a:hover {
  color: var(--cobalt);
  background: #f7f7f4;
}

/* Listing and facets */
.listing-intro {
  min-height: 290px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .6fr);
  align-items: end;
  gap: 60px;
  padding: 42px 0 38px;
  border-bottom: 1px solid var(--line-strong);
}

.listing-intro h1 {
  font-size: clamp(52px, 7vw, 90px);
}

.listing-intro > div > p:last-child {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.listing-search {
  display: grid;
  grid-template-columns: 1fr auto;
  align-self: end;
}

.listing-search input {
  min-width: 0;
  border-radius: var(--radius-small) 0 0 var(--radius-small);
}

.listing-search button {
  min-width: 92px;
  padding-inline: 17px;
  border-radius: 0 var(--radius-small) var(--radius-small) 0;
  color: #fff;
  background: var(--ink);
  font-size: 13px;
  font-weight: 650;
}

.listing-search button:hover {
  background: var(--cobalt);
}

.category-tabs {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  border-bottom: 1px solid var(--line-strong);
  scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar {
  display: none;
}

.category-tabs a {
  position: relative;
  flex: 0 0 auto;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted-strong);
  font-size: 12px;
  font-weight: 620;
  white-space: nowrap;
}

.category-tabs a::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--cobalt);
  content: "";
  transform: scaleX(0);
}

.category-tabs a:hover,
.category-tabs a.active {
  color: var(--ink);
}

.category-tabs a.active::after {
  transform: scaleX(1);
}

.category-tabs span {
  color: var(--muted);
  font-size: 10px;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  align-items: start;
  gap: 34px;
  padding-top: 34px;
}

.filters {
  position: sticky;
  top: calc(var(--header-height) + 20px);
  align-self: start;
  max-height: calc(100dvh - var(--header-height) - 40px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.filters > form {
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.filters__scroll {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

.filters__head {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
}

.filters__head h2 {
  font-size: 18px;
  letter-spacing: -.025em;
}

.filter-group {
  border-bottom: 1px solid var(--line);
}

.filter-group summary {
  position: relative;
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 0 38px 0 18px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 680;
  list-style: none;
}

.filter-group summary::-webkit-details-marker {
  display: none;
}

.filter-group summary::after {
  position: absolute;
  right: 18px;
  color: var(--muted);
  content: "+";
  font-size: 18px;
  font-weight: 400;
}

.filter-group[open] summary::after {
  content: "−";
}

.filter-group > div {
  padding: 0 12px 14px;
}

.filter-group label {
  min-height: 34px;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  padding: 5px 6px;
  color: var(--muted-strong);
  font-size: 12px;
}

.filter-group label:hover {
  color: var(--ink);
  background: #f4f4f1;
}

.filter-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-height: 0;
  margin: 0;
  padding: 0;
  border-radius: 2px;
  accent-color: var(--cobalt);
}

.filter-group label span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.filter-group label em {
  color: var(--muted);
  font-size: 10px;
  font-style: normal;
}

.filter-price {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding-top: 2px;
}

.filter-price input {
  min-width: 0;
  min-height: 42px;
  padding-inline: 10px;
  font-size: 12px;
}

.filters__actions {
  padding: 14px 12px 10px;
  border-top: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 -10px 24px rgba(18, 18, 22, .035);
}

.filters__actions .button {
  width: 100%;
}

.filter-reset {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.filter-reset:hover {
  color: var(--cobalt);
}

.sort-bar {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.sort-bar form {
  margin-left: auto;
}

.sort-bar label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sort-bar select {
  width: auto;
  min-height: 38px;
  padding-left: 10px;
  border-color: var(--line);
  background: #fff;
  font-size: 11px;
}

.filter-button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--ink);
  border-radius: var(--radius-small);
  color: #fff;
  background: var(--ink);
  font-size: 12px;
  font-weight: 650;
}

.filter-close {
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  color: var(--muted);
  background: transparent;
  font-size: 25px;
}

.active-filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 16px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}

.active-filters > span {
  color: var(--muted);
}

.active-filters a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 8px;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  background: #fff;
}

.active-filters a:hover {
  color: var(--cobalt);
  border-color: var(--cobalt);
}

.active-filters .active-filters__reset {
  border-color: transparent;
  color: var(--cobalt);
  background: transparent;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 46px;
}

.pagination a,
.pagination > span {
  min-width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  font-size: 12px;
}

.pagination a:hover {
  border-color: var(--line-strong);
  background: #fff;
}

.pagination a.active {
  color: #fff;
  background: var(--ink);
}

.empty-state {
  min-height: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 24px;
  text-align: center;
}

.empty-state > span {
  margin-bottom: 20px;
  color: var(--cobalt);
  font-size: 48px;
}

.empty-state h1,
.empty-state h2 {
  font-size: clamp(34px, 4vw, 54px);
}

.empty-state h3 {
  font-size: 25px;
}

.empty-state p {
  max-width: 520px;
  margin: 17px auto 25px;
  color: var(--muted);
}

.empty-state.compact {
  min-height: 260px;
}

/* Product detail */
.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(390px, .85fr);
  gap: 72px;
  margin: 12px 0 120px;
}

.product-gallery {
  min-width: 0;
}

.product-stage {
  min-height: 690px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
}

.product-stage > img {
  width: 100%;
  height: 100%;
  max-height: 660px;
  padding: 34px;
  object-fit: contain;
}

.product-stage > .product-visual {
  min-height: 690px;
}

.product-gallery > p {
  max-width: 600px;
  margin: 13px auto 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.product-buy {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  align-self: start;
  padding-top: 36px;
}

.product-buy h1 {
  margin: 18px 0 20px;
  font-size: clamp(42px, 4.6vw, 68px);
}

.product-lead {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 16px;
}

.detail-price {
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 720;
  line-height: 1;
  letter-spacing: -.052em;
}

.price-caption {
  margin: 7px 0 24px;
  color: var(--muted);
  font-size: 11px;
}

.product-facts {
  margin: 0 0 26px;
  border-top: 1px solid var(--line-strong);
}

.product-facts > div {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.product-facts dt {
  color: var(--muted);
  font-size: 11px;
}

.product-facts dd {
  margin: 0;
  font-size: 12px;
  font-weight: 620;
}

.purchase-note {
  margin: 14px 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.product-variants-link {
  margin-top: 3px;
}

.product-caution {
  margin: 0 0 22px;
  padding: 16px;
  border-left: 4px solid #a06426;
  background: var(--warning-bg);
}

.product-caution strong {
  font-size: 12px;
}

.product-caution p {
  margin: 5px 0 0;
  color: #6f4a2d;
  font-size: 11px;
}

.product-information {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(360px, 1.15fr) minmax(240px, .6fr);
  gap: 60px;
  padding: 64px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: #fff;
}

.product-information h2 {
  font-size: clamp(34px, 3.4vw, 52px);
}

.spec-list {
  margin: 0;
  border-top: 1px solid var(--line-strong);
}

.spec-list > div {
  display: grid;
  grid-template-columns: minmax(110px, .7fr) minmax(0, 1fr);
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.spec-list dt {
  color: var(--muted);
  font-size: 11px;
}

.spec-list dd {
  margin: 0;
  font-size: 12px;
  font-weight: 620;
}

.product-information aside {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.product-information aside h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.product-information aside h3:not(:first-child) {
  margin-top: 30px;
}

.product-information aside p {
  color: var(--muted);
  font-size: 12px;
}

.related-products {
  padding-top: 112px;
}

.mobile-buy-bar {
  display: none;
}

/* Guides, editorial and news */
.page-intro {
  max-width: 980px;
  padding: 28px 0 50px;
}

.page-intro h1 {
  font-size: clamp(52px, 7vw, 88px);
}

.page-intro p {
  max-width: 720px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line);
}

.guide-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.guide-card:hover {
  background: #f7f7f4;
}

.guide-card > span {
  color: var(--cobalt);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.guide-card > div {
  margin-top: auto;
}

.guide-card h2,
.guide-card h3 {
  margin: 0;
  font-size: clamp(27px, 2.4vw, 40px);
}

.guide-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.guide-card > i {
  margin-top: 24px;
  color: var(--cobalt);
  font-size: 12px;
  font-weight: 650;
  font-style: normal;
}

.guide-article {
  max-width: 900px;
  margin-inline: auto;
  padding-bottom: 80px;
}

.guide-article > header {
  padding: 40px 0 52px;
  border-bottom: 1px solid var(--line-strong);
}

.guide-article h1 {
  font-size: clamp(50px, 7vw, 88px);
}

.guide-article h2 {
  margin: 70px 0 22px;
  font-size: clamp(30px, 3.5vw, 47px);
}

.guide-article h3 {
  margin: 42px 0 15px;
}

.guide-article p,
.guide-article li {
  color: var(--muted-strong);
  font-size: 17px;
  line-height: 1.75;
}

.guide-article__body {
  border-top: 1px solid var(--line-strong);
}

.guide-article__body section {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 26px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}

.guide-article__body section > span {
  padding-top: 8px;
  color: var(--cobalt);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: .08em;
}

.guide-article__body h2 {
  margin: 0 0 12px;
}

.guide-article__body p {
  max-width: 720px;
  margin: 0;
}

.guide-article > footer {
  margin-top: 70px;
  padding: 48px;
  color: #fff;
  background: var(--ink);
}

.guide-article > footer h2 {
  margin: 0;
}

.guide-article > footer p {
  margin: 15px 0 28px;
  color: #aaaab1;
}

.guide-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .7fr);
  align-items: end;
  gap: 70px;
  margin-top: 70px;
  padding: 52px;
  color: #fff;
  background: var(--ink);
}

.guide-callout h2 {
  max-width: 760px;
  margin-top: 12px;
  font-size: clamp(35px, 4.5vw, 62px);
}

.guide-callout form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.guide-callout input {
  min-width: 0;
  min-height: 50px;
  border-color: rgba(255, 255, 255, .35);
  border-right: 0;
  border-radius: var(--radius-small) 0 0 var(--radius-small);
  color: #fff;
  background: rgba(255, 255, 255, .06);
}

.guide-callout .button {
  border-radius: 0 var(--radius-small) var(--radius-small) 0;
}

.guide-article table,
.article-body table {
  width: 100%;
  margin: 28px 0;
  border-collapse: collapse;
  font-size: 13px;
}

.guide-article th,
.guide-article td,
.article-body th,
.article-body td {
  padding: 13px 12px;
  border: 1px solid var(--line);
  text-align: left;
}

.guide-article th,
.article-body th {
  background: #e9e9e5;
}

.trust-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-block: 54px;
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line);
}

.trust-notes > * {
  min-height: 150px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.trust-notes b {
  display: block;
  margin-bottom: 10px;
}

.trust-notes p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.news-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 38px;
  padding-block: 18px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.news-toolbar > div {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}

.chip {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: #fff;
  font-size: 12px;
}

.chip:hover,
.chip.active {
  color: #fff;
  border-color: var(--ink);
  background: var(--ink);
}

.news-toolbar > label {
  width: min(320px, 100%);
}

.news-toolbar input {
  min-height: 42px;
}

.featured-article {
  min-height: 480px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .8fr);
  align-items: center;
  gap: 40px;
  padding: 54px;
  color: #fff;
  background: var(--ink);
}

.featured-article h2 {
  margin: 20px 0;
  font-size: clamp(34px, 4vw, 58px);
}

.featured-article p {
  max-width: 680px;
  color: #aaaab1;
}

.featured-article a {
  color: #9db0ff;
  font-weight: 650;
}

.featured-article img {
  width: 100%;
  height: 360px;
  object-fit: contain;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.article-card {
  min-width: 0;
  border: 1px solid var(--line);
  background: #fff;
}

.article-image {
  height: 230px;
  display: grid;
  place-items: center;
  background: #f3f3f0;
}

.article-image img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}

.article-card > div:last-child {
  padding: 22px;
}

.article-card small {
  margin-left: 8px;
  color: var(--muted);
  font-size: 10px;
}

.article-card h2 {
  margin: 22px 0 14px;
  font-size: 25px;
}

.article-card p {
  color: var(--muted);
  font-size: 13px;
}

.article-card a {
  color: var(--cobalt);
  font-size: 12px;
  font-weight: 650;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: start;
  gap: 60px;
}

.article-body {
  max-width: 920px;
  padding-bottom: 80px;
}

.article-hero {
  height: 500px;
  display: grid;
  place-items: center;
  margin-bottom: 38px;
  background: #fff;
}

.article-hero img {
  width: 76%;
  height: 88%;
  object-fit: contain;
}

.article-body > h1 {
  margin: 22px 0 24px;
  font-size: clamp(46px, 6vw, 78px);
}

.article-body .lead {
  color: var(--muted-strong);
  font-size: 20px;
  line-height: 1.6;
}

.article-meta {
  margin: 20px 0 52px;
  color: var(--muted);
  font-size: 11px;
}

.article-body > h2 {
  margin: 64px 0 22px;
  font-size: clamp(30px, 3vw, 46px);
}

.article-body > p,
.article-body > li {
  color: var(--muted-strong);
  font-size: 16px;
  line-height: 1.75;
}

.article-body blockquote {
  margin: 32px 0;
  padding: 26px 0 26px 28px;
  border-left: 4px solid var(--cobalt);
  color: var(--ink);
  font-size: 21px;
  font-weight: 620;
}

.conclusion {
  margin-top: 50px;
  padding: 28px;
  border: 1px solid var(--line-strong);
  background: #fff;
}

.conclusion p {
  margin: 10px 0 0;
  color: var(--muted);
}

.article-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.sidebar-card {
  padding: 22px;
  border: 1px solid var(--line);
  background: #fff;
}

.sidebar-card + .sidebar-card {
  margin-top: 14px;
}

.sidebar-card h3 {
  font-size: 18px;
}

.sidebar-card ol {
  padding-left: 19px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
}

.product-aside img {
  width: 100%;
  height: 160px;
  object-fit: contain;
}

.product-aside b {
  display: block;
  margin: 14px 0;
}

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

.news-mini {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  gap: 15px;
  padding: 14px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.news-mini img {
  width: 110px;
  height: 82px;
  object-fit: contain;
  background: var(--bg);
}

.news-mini b {
  display: block;
  font-size: 13px;
}

.news-mini small {
  color: var(--muted);
  font-size: 10px;
}

.newsletter {
  min-height: 230px;
  display: grid;
  grid-template-columns: 1fr minmax(340px, .7fr);
  align-items: center;
  gap: 50px;
  margin-top: 80px;
  padding: 44px;
  color: #fff;
  background: var(--ink);
}

.newsletter > div {
  display: flex;
  gap: 20px;
}

.newsletter > div > span {
  color: #9db0ff;
  font-size: 34px;
}

.newsletter h2 {
  font-size: 35px;
}

.newsletter p {
  margin: 14px 0 0;
  color: #aaaab1;
}

.newsletter form,
.footer-subscribe {
  display: grid;
  grid-template-columns: 1fr auto;
}

.newsletter input {
  border-radius: var(--radius-small) 0 0 var(--radius-small);
}

.newsletter .button {
  border-radius: 0 var(--radius-small) var(--radius-small) 0;
}

/* Auth and account */
.auth-grid {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(380px, .85fr) minmax(480px, 1.15fr);
  border: 1px solid var(--line);
  background: #fff;
}

.auth-form-card {
  align-self: center;
  width: min(100%, 520px);
  padding: 56px;
  justify-self: center;
}

.auth-form-card h1 {
  font-size: clamp(40px, 4vw, 58px);
}

.auth-form-card > p {
  margin: 18px 0 30px;
  color: var(--muted);
}

.auth-form-card form > label:not(.check),
.checkout-card > label:not(.choice) {
  display: grid;
  gap: 7px;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 620;
}

.auth-form-card form > label:first-of-type {
  margin-top: 0;
}

.form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 16px 0 22px;
  font-size: 11px;
}

.check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.check input {
  width: 16px;
  height: 16px;
  min-height: 0;
  margin: 0;
  accent-color: var(--cobalt);
}

.form-row a,
.auth-switch a {
  color: var(--cobalt);
}

.auth-switch {
  margin: 18px 0 0;
  font-size: 12px;
  text-align: center;
}

.auth-divider {
  position: relative;
  margin: 24px 0;
  border-top: 1px solid var(--line);
  text-align: center;
}

.auth-divider span {
  position: relative;
  top: -11px;
  padding: 0 10px;
  color: var(--muted);
  background: #fff;
  font-size: 11px;
}

.social-login {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-small);
  background: #fff;
  font-size: 13px;
  font-weight: 620;
}

.social-login:hover {
  border-color: var(--ink);
}

.auth-benefits,
.auth-proof {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px;
  color: #fff;
  background: var(--ink);
}

.auth-benefits h2,
.auth-proof h2 {
  font-size: clamp(38px, 4vw, 60px);
}

.auth-benefits > p,
.auth-proof > p {
  max-width: 570px;
  margin: 22px 0 36px;
  color: #aaaab1;
}

.auth-benefits ul,
.auth-proof ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
  list-style: none;
}

.auth-benefits li,
.auth-proof li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.auth-benefits li > span,
.auth-proof li > span {
  color: #9db0ff;
  font-size: 20px;
}

.auth-benefits li b,
.auth-proof li b {
  display: block;
  font-size: 13px;
}

.auth-benefits li small,
.auth-proof li p {
  margin: 4px 0 0;
  color: #8d8d94;
  font-size: 11px;
  line-height: 1.55;
}

.account-layout,
.account-shell {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  align-items: start;
  gap: 34px;
  margin-top: 34px;
}

.account-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding: 24px 0 30px;
  border-bottom: 1px solid var(--line-strong);
}

.account-heading h1 {
  font-size: clamp(44px, 6vw, 74px);
}

.account-heading form button {
  padding: 8px 0;
  color: var(--muted);
  background: transparent;
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.account-heading form button:hover {
  color: var(--ink);
}

.account-nav {
  position: sticky;
  top: calc(var(--header-height) + 20px);
  border-top: 1px solid var(--line-strong);
}

.account-nav a,
.account-nav form button {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  border-bottom: 1px solid var(--line);
  color: var(--muted-strong);
  background: transparent;
  font-size: 12px;
  text-align: left;
}

.account-nav a:hover,
.account-nav a.active {
  color: var(--cobalt);
}

.account-nav form {
  margin: 0;
}

.welcome-card,
.account-profile {
  min-height: 190px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) minmax(190px, .4fr);
  align-items: center;
  gap: 24px;
  padding: 30px;
  color: #fff;
  background: var(--ink);
}

.account-shell .account-profile {
  min-height: 0;
  display: block;
  padding: 26px;
}

.account-shell .account-profile .avatar {
  margin-bottom: 24px;
}

.account-shell .account-profile h2 {
  font-size: 25px;
  overflow-wrap: anywhere;
}

.account-profile dl {
  margin: 26px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.account-profile dt,
.account-profile dd {
  margin: 0;
  padding-top: 10px;
}

.account-profile dt {
  color: #85858e;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.account-profile dd {
  overflow-wrap: anywhere;
  color: #fff;
  font-size: 12px;
}

.account-shell .account-profile > p {
  margin: 26px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  font-size: 11px;
  line-height: 1.6;
}

.avatar {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: #fff;
  font-size: 30px;
  font-weight: 720;
}

.welcome-card h2,
.account-profile h2 {
  font-size: 32px;
}

.welcome-card p,
.account-profile p {
  margin: 8px 0 18px;
  color: #aaaab1;
}

.welcome-card .button,
.account-profile .button {
  min-height: 40px;
}

.level {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, .2);
}

.level small,
.level b {
  display: block;
}

.level small {
  color: #93939a;
  font-size: 10px;
}

.level b {
  margin: 4px 0 12px;
}

progress {
  width: 100%;
  height: 5px;
  overflow: hidden;
  border: 0;
  background: #d7d7d2;
  appearance: none;
}

progress::-webkit-progress-bar {
  background: #d7d7d2;
}

progress::-webkit-progress-value {
  background: var(--cobalt);
}

progress::-moz-progress-bar {
  background: var(--cobalt);
}

.account-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  margin-top: 16px;
}

.panel {
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
}

.panel-heading h2 {
  font-size: 24px;
}

.panel-heading a {
  color: var(--cobalt);
  font-size: 11px;
}

.panel dl {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  margin: 0;
  font-size: 12px;
}

.panel dt,
.panel dd {
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.panel dt {
  color: var(--muted);
}

.order-row {
  min-height: 68px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.order-row div {
  display: grid;
}

.order-row small {
  color: var(--muted);
}

.order-status {
  color: var(--muted);
  font-size: 10px;
}

.order-status--success {
  color: var(--success);
}

.order-status--error {
  color: var(--danger);
}

.order-status--pending {
  color: var(--cobalt);
}

.order-state {
  justify-items: start;
  gap: 4px;
}

.order-pay-link {
  color: var(--cobalt);
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bonus-panel {
  color: #fff;
  background: var(--cobalt);
}

.bonus-panel > div {
  margin-top: 28px;
}

.bonus-panel small,
.bonus-panel strong {
  display: block;
}

.bonus-panel strong {
  font-size: 36px;
}

/* Cart and checkout */
.cart-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: start;
  gap: 34px;
  margin-top: 34px;
}

.cart-list {
  border-top: 1px solid var(--line-strong);
}

.cart-item {
  min-height: 220px;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item > img,
.cart-item__visual {
  width: 190px;
  height: 172px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
  object-fit: contain;
}

.cart-item > img {
  padding: 14px;
}

.cart-item__visual .product-visual__mark,
.summary-product__visual .product-visual__mark,
.cart-item__visual .product-visual__copy,
.summary-product__visual .product-visual__copy {
  display: none;
}

.cart-item__visual .product-visual__icon {
  width: 48%;
  font-size: 72px;
}

.cart-item-info h2 {
  font-size: 22px;
  line-height: 1.15;
}

.cart-item-info p {
  margin: 10px 0 18px;
  color: var(--muted);
  font-size: 12px;
}

.cart-item-info > b {
  font-size: 20px;
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
}

.cart-note {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  margin: 24px 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cart-note > span {
  color: var(--cobalt);
  font-size: 11px;
  font-weight: 720;
}

.cart-note p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.cart-note b {
  color: var(--ink);
}

.quantity {
  display: grid;
  grid-template-columns: 38px 42px 38px;
  align-items: center;
  border: 1px solid var(--line-strong);
  background: #fff;
}

.quantity button {
  width: 38px;
  height: 38px;
  padding: 0;
  background: transparent;
  font-size: 18px;
}

.quantity button:hover {
  color: var(--cobalt);
  background: #f3f3f0;
}

.quantity strong {
  text-align: center;
}

.delivery-progress {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 180px;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  padding: 18px;
  border: 1px solid var(--line);
  background: #fff;
}

.delivery-progress > span {
  color: var(--cobalt);
  font-size: 23px;
}

.delivery-progress b {
  font-size: 13px;
}

.delivery-progress p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.order-summary {
  position: sticky;
  top: calc(var(--header-height) + 20px);
  padding: 24px;
  border: 1px solid var(--line-strong);
  background: #fff;
}

.order-summary h2 {
  margin-bottom: 20px;
  font-size: 27px;
}

.order-summary > div:not(.summary-product):not(.summary-total) {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 9px 0;
  color: var(--muted-strong);
  font-size: 12px;
}

.order-summary .success {
  color: var(--success);
}

.order-summary .discount {
  color: var(--danger);
}

.order-summary > label {
  display: block;
  margin: 18px 0;
  font-size: 11px;
}

.promo-input {
  display: grid;
  grid-template-columns: 1fr 44px;
  margin-top: 7px;
}

.promo-input input {
  min-width: 0;
  min-height: 44px;
  border-radius: var(--radius-small) 0 0 var(--radius-small);
}

.promo-input button {
  color: #fff;
  border-radius: 0 var(--radius-small) var(--radius-small) 0;
  background: var(--ink);
}

.summary-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin: 18px 0 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line-strong);
}

.summary-total span {
  font-size: 14px;
  font-weight: 650;
}

.summary-total strong {
  font-size: 28px;
  letter-spacing: -.04em;
}

.summary-note {
  margin: -3px 0 22px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.order-summary > small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.checkout-steps {
  min-height: 62px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--line-strong);
}

.checkout-steps span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.checkout-steps span:last-child {
  border-right: 1px solid var(--line);
  color: var(--cobalt);
  font-weight: 650;
}

.checkout-main {
  display: grid;
  gap: 14px;
}

.checkout-card {
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
}

.checkout-card h2 {
  margin-bottom: 22px;
  font-size: 22px;
}

.checkout-card__heading {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.checkout-card__heading > span {
  padding-top: 4px;
  color: var(--cobalt);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: .08em;
}

.checkout-card__heading h2 {
  margin: 0;
}

.checkout-card__heading p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-grid > label:first-child {
  grid-column: 1 / -1;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.choice {
  min-height: 72px;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 13px;
  border: 1px solid var(--line);
  cursor: pointer;
}

.choice:last-of-type {
  border-bottom: 1px solid var(--line);
}

.choice:has(input:checked) {
  border-color: var(--cobalt);
  background: #f4f6ff;
}

.choice input {
  width: 17px;
  height: 17px;
  min-height: 0;
  margin: 0;
  accent-color: var(--cobalt);
}

.choice span {
  display: grid;
}

.choice b {
  font-size: 13px;
}

.choice small {
  color: var(--muted);
  font-size: 10px;
}

.choice em {
  color: var(--muted-strong);
  font-size: 10px;
  font-style: normal;
  text-align: right;
}

.payment-notice {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 26px;
  padding: 28px;
  color: #fff;
  background: var(--ink);
}

.payment-notice > span {
  padding-top: 6px;
  color: #9db0ff;
  font-size: 10px;
  font-weight: 720;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.payment-notice h2 {
  font-size: 24px;
}

.payment-notice p {
  max-width: 600px;
  margin: 8px 0 0;
  color: #aaaab1;
  font-size: 12px;
  line-height: 1.6;
}

.checkout-summary {
  grid-column: 2;
}

.summary-product {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.summary-product > img,
.summary-product__visual {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--bg);
  object-fit: contain;
}

.summary-product > img {
  padding: 5px;
}

.summary-product__visual .product-visual__icon {
  width: 48%;
  font-size: 24px;
}

.summary-product > div:not(.summary-product__visual) {
  min-width: 0;
  display: grid;
}

.summary-product b {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.summary-product small {
  color: var(--muted);
  font-size: 9px;
}

.summary-product strong {
  font-size: 11px;
  white-space: nowrap;
}

.success-page {
  min-height: 630px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.success-page > span {
  width: auto;
  min-width: 96px;
  min-height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  padding: 8px 14px;
  color: #fff;
  background: var(--success);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.success-page--fail > span {
  background: #9a392f;
}

.success-page h1 {
  font-size: clamp(48px, 6vw, 76px);
}

.success-page p {
  max-width: 600px;
  margin: 18px auto;
  color: var(--muted);
}

.success-page > strong {
  font-size: 24px;
  letter-spacing: .03em;
}

.success-page > div {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.one-click {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-small);
  background: #fff;
  font-size: 14px;
  font-weight: 650;
}

/* Supporting blocks and footer */
.benefits {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 70px;
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line);
}

.benefits article {
  min-height: 116px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 11px;
  padding: 17px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.benefits article > span {
  color: var(--cobalt);
  font-size: 23px;
}

.benefits b {
  display: block;
  font-size: 12px;
}

.benefits small {
  color: var(--muted);
  font-size: 10px;
}

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

.category-strip a {
  min-height: 150px;
  display: grid;
  grid-template-columns: 1fr 100px;
  align-items: center;
  gap: 10px;
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.category-strip small {
  display: block;
  color: var(--muted);
}

.category-strip img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.site-footer {
  margin-top: 100px;
  padding: 70px 0 24px;
  color: #fff;
  background: var(--ink);
}

.footer-lead {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .55fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid #333339;
}

.footer-lead .logo {
  display: inline-flex;
  margin-bottom: 26px;
}

.footer-lead h2 {
  max-width: 850px;
  font-size: clamp(42px, 5.5vw, 76px);
}

.footer-lead > p {
  margin: 0;
  color: #a3a3aa;
  font-size: 14px;
  line-height: 1.65;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr .8fr 1.2fr;
  gap: 42px;
}

.logo--inverse img {
  display: block;
}

.footer-grid .logo {
  margin-bottom: 18px;
}

.footer-grid .logo img {
  filter: brightness(0) invert(1);
}

.footer-grid .logo strong,
.footer-grid .logo span {
  color: #fff;
}

.footer-grid h3 {
  margin-bottom: 18px;
  color: #8f8f97;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-grid p {
  color: #96969e;
  font-size: 12px;
}

.footer-grid b {
  display: block;
  margin-bottom: 3px;
}

.footer-grid small {
  color: #85858d;
}

.footer-grid > div > a:not(.logo) {
  display: block;
  padding: 5px 0;
  color: #c8c8cc;
  font-size: 12px;
}

.footer-grid > div > a:hover {
  color: #fff;
}

.footer-principle ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid #333339;
  list-style: none;
  counter-reset: footer-step;
}

.footer-principle li {
  min-height: 44px;
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  border-bottom: 1px solid #333339;
  color: #c8c8cc;
  font-size: 11px;
  counter-increment: footer-step;
}

.footer-principle li::before {
  color: #778cff;
  font-size: 9px;
  content: "0" counter(footer-step);
}

.socials,
.payments {
  display: flex;
  gap: 7px;
  margin-top: 18px;
}

.socials span,
.payments b {
  min-width: 34px;
  min-height: 26px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 4px 7px;
  border: 1px solid #3f3f45;
  font-size: 10px;
}

.footer-subscribe input {
  min-width: 0;
  min-height: 42px;
  border-color: #48484f;
  border-radius: var(--radius-small) 0 0 var(--radius-small);
  color: #fff;
  background: #1b1b1f;
}

.footer-subscribe button {
  width: 42px;
  border-radius: 0 var(--radius-small) var(--radius-small) 0;
  color: #fff;
  background: var(--cobalt);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 30px;
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid #333339;
  color: #77777f;
  font-size: 10px;
}

/* Tablet */
@media (max-width: 1320px) {
  .header-shell {
    grid-template-columns: 122px 100px minmax(330px, 1fr) minmax(210px, 280px) auto;
    gap: 16px;
  }

  .logo img {
    width: 122px;
  }

  .main-nav {
    justify-content: flex-start;
    gap: 14px;
  }

  .main-nav a:nth-child(n + 4) {
    display: none;
  }

  .mega-categories,
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .brand-index > div:last-child {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1120px) {
  :root {
    --header-height: 64px;
  }

  .mobile-only {
    display: inline-grid !important;
  }

  .header-shell {
    grid-template-columns: 42px 122px 100px minmax(230px, 1fr) auto;
    gap: 12px;
  }

  .mobile-search-toggle {
    display: none !important;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    bottom: 0;
    left: 0;
    z-index: 125;
    width: min(390px, 90vw);
    display: flex;
    align-items: stretch;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    padding: 24px;
    overflow-y: auto;
    background: #fff;
    box-shadow: var(--shadow-menu);
    opacity: 0;
    pointer-events: none;
    transform: translateX(-104%);
    visibility: hidden;
    transition: opacity .2s ease, transform .28s var(--ease), visibility .2s;
  }

  .menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .main-nav a {
    display: inline-flex;
    min-height: 58px;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
    font-weight: 650;
  }

  .main-nav a:nth-child(n + 4) {
    display: inline-flex;
  }

  .main-nav a::after {
    display: none;
  }

  .home-hero__inner {
    min-height: 650px;
    grid-template-columns: minmax(390px, .9fr) minmax(400px, 1.1fr);
  }

  .home-hero__copy {
    padding-right: 38px;
  }

  .home-hero h1 {
    font-size: clamp(58px, 8vw, 86px);
  }

  .home-categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-kicker,
  .section-heading {
    gap: 38px;
  }

  .catalog-intro {
    padding: 48px;
  }

  .rubric-group {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .brand-index > div:last-child {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .catalog-layout {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 22px;
  }

  .product-detail {
    gap: 38px;
  }

  .product-stage,
  .product-stage > .product-visual {
    min-height: 570px;
  }

  .product-information {
    grid-template-columns: 1fr 1.2fr;
    padding: 44px;
  }

  .product-information aside {
    grid-column: 1 / -1;
    padding: 28px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .benefits {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.25fr repeat(3, .75fr);
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-subscribe {
    max-width: 480px;
  }
}

/* Compact tablet and mobile drawers */
@media (max-width: 900px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .page {
    padding-block: 18px 82px;
  }

  .header-shell {
    grid-template-columns: 112px 96px 1fr 42px auto;
    gap: 8px;
  }

  .menu-toggle {
    display: none !important;
  }

  .logo img {
    width: 112px;
    height: 32px;
  }

  .header-search {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 135;
    height: auto;
    display: none;
    grid-template-columns: 1fr 48px;
    padding: 14px 16px;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: #fff;
    box-shadow: var(--shadow-menu);
  }

  .search-open .header-search {
    display: grid;
  }

  .header-search input {
    min-height: 48px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-small) 0 0 var(--radius-small);
    background: #f8f8f6;
  }

  .header-search button {
    height: 48px;
    color: #fff;
    border-radius: 0 var(--radius-small) var(--radius-small) 0;
    background: var(--ink);
  }

  .mobile-search-toggle {
    display: grid !important;
  }

  .search-suggestions {
    top: calc(100% - 5px);
    right: 16px;
    left: 16px;
  }

  .mega-menu {
    position: absolute;
    top: 100%;
    bottom: auto;
    height: calc(100vh - var(--header-height));
    max-height: calc(100vh - var(--header-height));
  }

  .mega-menu__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-block: 24px 50px;
  }

  .mega-menu__inner > aside {
    padding: 28px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .mega-categories {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-hero__inner {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .home-hero__copy {
    padding: 72px 0 54px;
  }

  .home-hero__visual {
    min-height: 480px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    border-left: 0;
  }

  .home-section {
    padding-block: 84px;
  }

  .home-clarity__grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .clarity-points {
    grid-template-columns: 1fr;
  }

  .clarity-points article,
  .clarity-points article + article {
    display: grid;
    grid-template-columns: 42px 190px 1fr;
    align-items: start;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .35);
    border-left: 0;
  }

  .clarity-points h3,
  .clarity-points p {
    margin: 0;
  }

  .section-kicker,
  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading > a {
    justify-self: start;
  }

  .process li {
    grid-template-columns: 50px 210px 1fr;
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .catalog-intro {
    min-height: 600px;
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .catalog-intro aside {
    align-self: auto;
    padding: 24px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .2);
    border-left: 0;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-index > div:last-child {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .listing-intro {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .catalog-layout {
    display: block;
  }

  .filters {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 160;
    width: min(420px, 94vw);
    height: 100dvh;
    max-height: 100dvh;
    overflow: hidden;
    box-shadow: var(--shadow-menu);
    opacity: 0;
    pointer-events: none;
    transform: translateX(104%);
    visibility: hidden;
    transition: opacity .2s ease, transform .28s var(--ease), visibility .2s;
  }

  .filters-open .filters {
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .filters__head {
    position: relative;
    z-index: 2;
    min-height: 64px;
    background: #fff;
  }

  .filters__actions {
    padding-bottom: max(10px, env(safe-area-inset-bottom));
  }

  .brand-rail__track {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(116px, 1fr);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }

  .brand-rail a {
    scroll-snap-align: start;
  }

  .filter-button,
  .filter-close {
    display: inline-grid !important;
  }

  .product-detail {
    grid-template-columns: 1fr;
    margin-bottom: 80px;
  }

  .product-buy {
    position: static;
    padding-top: 10px;
  }

  .product-information {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .product-information aside {
    grid-column: auto;
  }

  .guide-grid,
  .articles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guide-callout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .featured-article {
    grid-template-columns: 1fr;
  }

  .featured-article img {
    height: 280px;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .sidebar-card + .sidebar-card {
    margin-top: 0;
  }

  .auth-grid {
    grid-template-columns: 1fr;
  }

  .auth-benefits,
  .auth-proof {
    min-height: 500px;
  }

  .account-layout,
  .account-shell {
    grid-template-columns: 1fr;
  }

  .account-nav {
    position: static;
    display: flex;
    overflow-x: auto;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .account-nav a,
  .account-nav form button {
    width: auto;
    flex: 0 0 auto;
    padding-inline: 16px;
    border-right: 1px solid var(--line);
    white-space: nowrap;
  }

  .cart-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .order-summary,
  .checkout-summary {
    position: static;
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-lead {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* Phones */
@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .service-bar {
    display: none;
  }

  .header-shell {
    grid-template-columns: 106px 42px 1fr 42px auto;
    gap: 5px;
  }

  .logo img {
    width: 106px;
  }

  .catalog-trigger {
    width: 42px;
    padding: 0;
    font-size: 0;
  }

  .catalog-trigger > span {
    width: 18px;
  }

  .header-actions > a:first-child {
    display: none;
  }

  .cart-link {
    font-size: 0;
  }

  .cart-link::before {
    font-size: 12px;
    content: "Корзина";
  }

  .mega-categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mega-category {
    min-height: 96px;
    grid-template-columns: 32px 1fr;
    padding: 11px;
  }

  .mega-category > span {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }

  .mega-brands {
    grid-template-columns: 1fr;
  }

  .mega-brands a:nth-child(odd) {
    padding-right: 5px;
    border-right: 0;
  }

  .mega-brands a:nth-child(even) {
    padding-left: 5px;
  }

  .mega-account {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 18px;
    padding: 14px 5px 2px;
    border-top: 1px solid var(--line);
    color: var(--cobalt);
    font-size: 14px;
    font-weight: 700;
  }

  .order-row {
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 10px 16px;
    padding-block: 14px;
  }

  .order-row > div:first-child,
  .order-state {
    grid-column: 1;
  }

  .order-row > strong {
    grid-column: 2;
    grid-row: 1;
    white-space: nowrap;
  }

  h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  h2 {
    font-size: clamp(32px, 10vw, 46px);
  }

  .home-hero__copy {
    padding-block: 58px 44px;
  }

  .home-hero h1 {
    font-size: clamp(50px, 15vw, 70px);
  }

  .home-hero__lead {
    margin-top: 25px;
    font-size: 17px;
  }

  .home-hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .home-facts {
    margin-top: 50px;
  }

  .home-facts > div {
    padding-right: 8px;
  }

  .home-facts > div + div {
    padding-left: 8px;
  }

  .home-facts dt {
    font-size: 24px;
  }

  .home-facts dd {
    font-size: 9px;
  }

  .home-hero__visual {
    min-height: 360px;
  }

  .brand-rail a {
    padding-inline: 16px;
  }

  .home-section {
    padding-block: 72px;
  }

  .home-categories {
    grid-template-columns: 1fr;
  }

  .home-category {
    min-height: 118px;
    padding: 18px;
  }

  .home-clarity {
    padding-block: 72px;
  }

  .clarity-points article,
  .clarity-points article + article {
    grid-template-columns: 34px 1fr;
  }

  .clarity-points p {
    grid-column: 2;
    margin-top: 9px;
  }

  .product-row {
    grid-template-columns: 1fr;
  }

  .scenario-grid {
    grid-template-columns: 1fr;
  }

  .scenario-grid a {
    min-height: 245px;
    padding: 26px;
  }

  .process li {
    grid-template-columns: 38px 1fr;
    gap: 13px;
  }

  .process li p {
    grid-column: 2;
  }

  .catalog-intro {
    min-height: 560px;
    padding: 34px 24px;
  }

  .catalog-intro h1 {
    font-size: 52px;
  }

  .catalog-categories,
  .rubricator,
  .brand-index {
    padding-top: 76px;
  }

  .category-grid,
  .brand-index > div:last-child {
    grid-template-columns: 1fr 1fr;
  }

  .category-card {
    min-height: 205px;
    padding: 18px;
  }

  .category-card h2 {
    font-size: 22px;
  }

  .rubric-title {
    grid-template-columns: 42px 1fr;
  }

  .rubric-title > span {
    width: 42px;
    height: 42px;
  }

  .rubric-links {
    grid-template-columns: 1fr;
  }

  .listing-intro {
    min-height: 250px;
    padding-top: 28px;
  }

  .listing-intro h1 {
    font-size: 52px;
  }

  .category-tabs {
    margin-inline: -12px;
    padding-inline: 12px;
  }

  .sort-bar > span {
    display: none;
  }

  .sort-bar label {
    font-size: 0;
  }

  .sort-bar select {
    max-width: 180px;
    font-size: 11px;
  }

  .active-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .active-filters a,
  .active-filters > span {
    flex: 0 0 auto;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 510px;
  }

  .product-image {
    height: 280px;
  }

  .product-stage,
  .product-stage > .product-visual {
    min-height: 390px;
  }

  .product-stage > img {
    padding: 16px;
  }

  .product-buy h1 {
    font-size: 42px;
  }

  .product-facts > div {
    grid-template-columns: 110px 1fr;
  }

  .product-information {
    gap: 32px;
    padding: 34px 20px;
  }

  .product-information h2 {
    font-size: 38px;
  }

  .related-products {
    padding-top: 78px;
  }

  .mobile-buy-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 85;
    min-height: 70px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 9px 12px max(9px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(16px);
  }

  .mobile-buy-bar strong {
    font-size: 19px;
  }

  .mobile-buy-bar small {
    display: block;
    color: var(--muted);
    font-size: 9px;
  }

  .mobile-buy-bar .button {
    min-height: 48px;
  }

  .guide-grid,
  .articles-grid {
    grid-template-columns: 1fr;
  }

  .guide-card {
    min-height: 270px;
  }

  .guide-callout {
    padding: 30px 22px;
  }

  .guide-callout form {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .guide-callout input,
  .guide-callout .button {
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: var(--radius-small);
  }

  .guide-article__body section {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
    padding: 28px 0;
  }

  .guide-article > footer {
    margin-inline: -12px;
    padding: 34px 22px;
  }

  .guide-card {
    min-height: 270px;
  }

  .trust-notes {
    grid-template-columns: 1fr;
  }

  .featured-article {
    padding: 30px 22px;
  }

  .article-hero {
    height: 350px;
  }

  .article-sidebar {
    grid-template-columns: 1fr;
  }

  .news-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .news-toolbar > label {
    width: 100%;
  }

  .news-preview {
    grid-template-columns: 1fr;
  }

  .newsletter {
    grid-template-columns: 1fr;
    padding: 30px 22px;
  }

  .newsletter form {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .newsletter input,
  .newsletter .button {
    border-radius: var(--radius-small);
  }

  .auth-form-card {
    padding: 36px 22px;
  }

  .auth-benefits,
  .auth-proof {
    min-height: 460px;
    padding: 42px 24px;
  }

  .welcome-card,
  .account-profile {
    grid-template-columns: 58px 1fr;
    padding: 22px;
  }

  .avatar {
    width: 58px;
    height: 58px;
  }

  .level {
    grid-column: 1 / -1;
    padding: 18px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .2);
    border-left: 0;
  }

  .account-grid {
    grid-template-columns: 1fr;
  }

  .account-heading {
    align-items: start;
    flex-direction: column;
  }

  .cart-item {
    grid-template-columns: 94px minmax(0, 1fr);
    gap: 15px;
  }

  .cart-item > img,
  .cart-item__visual {
    width: 94px;
    height: 112px;
  }

  .cart-item-info h2 {
    font-size: 17px;
  }

  .cart-item-actions {
    grid-column: 1 / -1;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }

  .delivery-progress {
    grid-template-columns: 30px 1fr;
  }

  .delivery-progress progress {
    grid-column: 1 / -1;
  }

  .checkout-steps {
    display: flex;
    margin-inline: -12px;
    padding-inline: 12px;
    overflow-x: auto;
  }

  .checkout-steps span {
    flex: 0 0 128px;
    min-height: 54px;
  }

  .checkout-card {
    padding: 22px 18px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-grid > label:first-child {
    grid-column: auto;
  }

  .choice-grid {
    grid-template-columns: 1fr;
  }

  .choice {
    grid-template-columns: 18px 1fr;
  }

  .choice em {
    grid-column: 2;
    text-align: left;
  }

  .payment-notice {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 20px;
  }

  .success-page > div {
    align-items: stretch;
    flex-direction: column;
  }

  .benefits {
    grid-template-columns: 1fr;
  }

  .category-strip {
    grid-template-columns: 1fr;
  }

  .site-footer {
    margin-top: 72px;
    padding-top: 52px;
  }

  .footer-lead {
    margin-bottom: 38px;
    padding-bottom: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 22px;
  }

  .footer-grid > div:first-child,
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 420px) {
  .header-shell {
    grid-template-columns: 94px 40px 1fr 40px auto;
  }

  .logo img {
    width: 94px;
  }

  .header-actions .cart-link::before {
    display: none;
  }

  .category-grid,
  .brand-index > div:last-child {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > div {
    grid-column: auto !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media (forced-colors: active) {
  .page-scrim,
  .product-visual__mark {
    display: none;
  }

  .button,
  .catalog-trigger,
  .filter-button {
    border: 1px solid ButtonText;
  }
}

/* Larger, more readable type scale */
body {
  font-size: 17px;
}

.eyebrow,
.breadcrumbs {
  font-size: 13px;
}

.button {
  font-size: 15px;
}

.button--large {
  font-size: 17px;
}

.text-link {
  font-size: 15px;
}

.text-button {
  font-size: 14px;
}

.badge {
  font-size: 11px;
}

.service-bar {
  font-size: 12px;
}

.catalog-trigger {
  font-size: 14px;
}

.main-nav,
.header-actions {
  font-size: 13px;
}

.header-search input {
  font-size: 14px;
}

.search-suggestion__copy b {
  font-size: 15px;
}

.search-suggestion__copy small {
  font-size: 13px;
}

.search-suggestion > strong {
  font-size: 14px;
}

.search-suggestions__label {
  font-size: 12px;
}

.search-suggestion--compact,
.search-suggestions__status,
.search-suggestions__empty {
  font-size: 14px;
}

.cart-link em {
  font-size: 11px;
}

.mega-menu__heading p,
.mega-menu__inner > aside > p {
  font-size: 12px;
}

.mega-menu__heading a,
.mega-all,
.mega-brands a {
  font-size: 13px;
}

.mega-category b {
  font-size: 14px;
}

.mega-category small {
  font-size: 12px;
}

.home-hero__lead {
  font-size: clamp(19px, 1.6vw, 24px);
}

.home-facts dd {
  font-size: 12px;
}

.brand-rail a {
  font-size: 14px;
}

.home-category p,
.category-card p {
  font-size: 14px;
}

.clarity-points span {
  font-size: 13px;
}

.clarity-points p {
  font-size: 16px;
}

.scenario-grid small {
  font-size: 12px;
}

.scenario-grid span {
  font-size: 15px;
}

.process li > span {
  font-size: 14px;
}

.faq summary {
  font-size: 18px;
}

.faq details p {
  font-size: 16px;
}

.product-card__top {
  font-size: 12px;
}

.product-name {
  font-size: 17px;
}

.product-variant,
.catalog-stock,
.stock {
  font-size: 13px;
}

.card-price {
  font-size: 22px;
}

.card-add {
  font-size: 14px;
}

.product-visual__copy b {
  font-size: 12px;
}

.product-visual__copy small {
  font-size: 11px;
}

.catalog-intro aside span,
.rubric-links span,
.brand-index span,
.category-tabs span {
  font-size: 12px;
}

.catalog-intro aside p,
.rubric-title p,
.rubric-title > a,
.rubric-links a,
.category-card i,
.category-tabs a {
  font-size: 14px;
}

.brand-index b {
  font-size: 14px;
}

.listing-intro > div > p:last-child {
  font-size: 18px;
}

.listing-search button,
.filter-button {
  font-size: 14px;
}

.filters__head h2 {
  font-size: 19px;
}

.filter-group summary,
.filter-group label {
  font-size: 14px;
}

.filter-group label {
  min-height: 38px;
}

.filter-group label em {
  font-size: 12px;
}

.filter-price input,
.sort-bar select {
  font-size: 14px;
}

.filter-reset,
.sort-bar,
.active-filters {
  font-size: 13px;
}

.pagination a,
.pagination > span {
  font-size: 14px;
}

.product-gallery > p,
.price-caption,
.product-facts dt,
.spec-list dt,
.purchase-note,
.product-caution p {
  font-size: 13px;
}

.product-lead {
  font-size: 18px;
}

.product-facts dd,
.spec-list dd,
.product-caution strong,
.product-information aside p {
  font-size: 14px;
}

.product-information aside h3 {
  font-size: 20px;
}

.guide-card > span,
.guide-card > i,
.guide-article__body section > span,
.article-meta {
  font-size: 13px;
}

.guide-card p,
.article-card p,
.guide-article table,
.article-body table {
  font-size: 15px;
}

.guide-article p,
.guide-article li {
  font-size: 18px;
}

.trust-notes p,
.chip,
.article-card a,
.sidebar-card ol {
  font-size: 14px;
}

.auth-form-card form > label:not(.check),
.checkout-card > label:not(.choice) {
  font-size: 14px;
}

.form-row,
.auth-divider span {
  font-size: 13px;
}

.auth-switch {
  font-size: 14px;
}

.social-login {
  font-size: 15px;
}

.auth-benefits li b,
.auth-proof li b {
  font-size: 15px;
}

.auth-benefits li small,
.auth-proof li p {
  font-size: 13px;
}

.account-heading form button,
.account-nav a,
.account-nav form button,
.panel dl,
.order-row {
  font-size: 14px;
}

.account-profile dt,
.level small,
.order-status {
  font-size: 12px;
}

.account-profile dd {
  font-size: 14px;
}

.account-shell .account-profile > p,
.panel-heading a {
  font-size: 13px;
}

.cart-item-info p,
.cart-note p,
.order-summary > div:not(.summary-product):not(.summary-total),
.order-summary > label {
  font-size: 14px;
}

.cart-note > span,
.delivery-progress p,
.summary-note,
.checkout-card__heading > span,
.checkout-card__heading p {
  font-size: 13px;
}

.delivery-progress b,
.checkout-steps span,
.summary-product b,
.summary-product strong {
  font-size: 13px;
}

.summary-total span {
  font-size: 16px;
}

.order-summary > small,
.summary-product small {
  font-size: 11px;
}

.choice b {
  font-size: 15px;
}

.choice small,
.choice em {
  font-size: 13px;
}

.payment-notice > span {
  font-size: 12px;
}

.payment-notice p,
.benefits b {
  font-size: 14px;
}

.benefits small {
  font-size: 12px;
}

.one-click {
  font-size: 15px;
}

.footer-lead > p {
  font-size: 16px;
}

.footer-grid h3 {
  font-size: 13px;
}

.footer-grid p,
.footer-grid > div > a:not(.logo) {
  font-size: 14px;
}

.footer-principle li {
  font-size: 13px;
}

.socials span,
.payments b,
.footer-bottom {
  font-size: 12px;
}

@media (max-width: 900px) {
  input,
  select,
  textarea {
    font-size: 16px;
  }

  .header-search input,
  .filter-price input {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .catalog-trigger,
  .cart-link,
  .sort-bar label {
    font-size: 0;
  }

  .cart-link::before {
    font-size: 13px;
  }

  .mega-category {
    min-height: 104px;
  }

  .home-hero__lead {
    font-size: 18px;
  }

  .home-facts dd {
    font-size: 11px;
  }

  .product-name {
    font-size: 18px;
  }

  .product-variant {
    font-size: 14px;
  }

  .card-price {
    font-size: 24px;
  }

  .card-add {
    font-size: 15px;
  }

  .sort-bar select {
    font-size: 16px;
  }

  .mobile-buy-bar {
    min-height: 76px;
  }

  .mobile-buy-bar strong {
    font-size: 21px;
  }

  .mobile-buy-bar small {
    font-size: 12px;
  }

  .cart-item-info h2 {
    font-size: 18px;
  }
}
