:root {
  color-scheme: light;
  --green: #76b900;
  --green-dark: #5a8d00;
  --black: #000000;
  --ink: #1a1a1a;
  --white: #ffffff;
  --soft: #f7f7f7;
  --line: #cccccc;
  --line-strong: #5e5e5e;
  --mute: #757575;
  --error: #e52020;
  --shell: 1280px;
  --radius: 2px;
  --header-height: 96px;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.5;
}

body.cart-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

button,
a,
input,
select,
textarea {
  border-radius: var(--radius);
}

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

img {
  display: block;
  max-width: 100%;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  user-select: none;
  pointer-events: none;
}

svg {
  display: block;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

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

h1,
h2,
h3 {
  color: var(--black);
  font-weight: 700;
  line-height: 1.25;
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 120;
  padding: 11px 16px;
  background: var(--green);
  color: var(--black);
  font-weight: 700;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--black);
}

.utility-bar {
  height: 32px;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid var(--line-strong);
  font-size: 14px;
  line-height: 1.43;
}

.utility-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.utility-bar p {
  margin: 0;
}

.language-control {
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-control select {
  min-height: 30px;
  padding: 2px 26px 2px 8px;
  border: 0;
  background: var(--black);
  color: var(--white);
  font-size: 14px;
}

.primary-nav {
  height: 64px;
  background: var(--black);
  color: var(--white);
}

.primary-nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}

.brand__square,
.corner-square {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  background: var(--green);
}

.brand--large {
  font-size: 28px;
}

.nav-link {
  display: grid;
  min-height: 44px;
  place-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 700;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  margin-inline-start: auto;
  padding: 8px 12px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
}

.cart-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.cart-count {
  display: grid;
  min-width: 24px;
  min-height: 24px;
  place-items: center;
  padding: 2px 5px;
  background: var(--green);
  color: var(--black);
  font-size: 14px;
  line-height: 1;
}

.hero {
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.68fr);
  min-height: 420px;
}

.hero__content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  max-width: 720px;
  padding: 72px 48px 80px 0;
}

.eyebrow {
  margin-bottom: 8px;
  color: var(--mute);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.43;
  text-transform: uppercase;
}

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

.hero h1 {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(36px, 4vw, 48px);
}

.hero--exclusive .hero__inner {
  display: block;
  min-height: 0;
}

.hero--exclusive .hero__content {
  max-width: none;
  min-height: 220px;
  padding: 64px 0;
}

.hero--exclusive h1 {
  max-width: none;
  margin: 0;
}

.hero__content > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  line-height: 1.5;
}

.hero__graphic {
  position: relative;
  min-height: 100%;
  border-left: 1px solid var(--line-strong);
  background-color: #1a1a1a;
  isolation: isolate;
}

.hero__graphic::before {
  position: absolute;
  inset: 64px 0 0 64px;
  z-index: -1;
  border: 1px solid var(--line-strong);
  background: var(--black);
  content: "";
}

.hero__graphic::after {
  position: absolute;
  top: 64px;
  left: 64px;
  width: 16px;
  height: 16px;
  background: var(--green);
  content: "";
}

.hero__line {
  position: absolute;
  right: 0;
  bottom: 80px;
  left: 64px;
  height: 1px;
  background: var(--green);
}

.hero__number,
.hero__label {
  position: absolute;
  right: 32px;
  color: var(--white);
  font-weight: 700;
  line-height: 1;
}

.hero__number {
  bottom: 96px;
  font-size: clamp(72px, 9vw, 128px);
}

.hero__label {
  bottom: 56px;
  color: var(--green);
  font-size: 16px;
  letter-spacing: 0.14em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 24px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 700;
  line-height: 1.25;
}

.button--primary {
  background: var(--green);
  color: var(--black);
}

.button--primary:active {
  background: var(--green-dark);
}

.button--outline {
  border: 2px solid var(--green);
  background: transparent;
  color: var(--black);
}

.button--hero {
  font-size: 18px;
}

.catalog-section {
  padding: 64px 0 80px;
  background: var(--white);
}

.catalog-section--products {
  padding-top: 32px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 32px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: 36px;
}

.section-heading > p {
  max-width: 460px;
  margin-bottom: 2px;
  color: var(--mute);
  font-size: 17px;
  line-height: 1.5;
}

.filters {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) minmax(180px, 0.75fr) minmax(180px, 0.75fr) auto;
  align-items: end;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.field {
  display: grid;
  align-content: start;
  gap: 8px;
}

.field label {
  color: var(--black);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.43;
}

.field input,
.field select,
.field textarea,
.gate-form input {
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  font-size: 16px;
}

.field textarea {
  min-height: 84px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.gate-form input:focus {
  border-color: var(--green);
}

.search-control {
  position: relative;
}

.search-control svg {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--mute);
  stroke-linecap: round;
  stroke-width: 1.75;
  transform: translateY(-50%);
}

.search-control input {
  padding-left: 42px;
}

.filters__clear {
  min-width: 92px;
  padding-inline: 16px;
}

.results-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 64px;
}

.results-bar p {
  flex: 0 0 auto;
  margin: 0;
  color: var(--black);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.results-bar__rule {
  width: 100%;
  height: 1px;
  background: var(--line);
}

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

.product-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  min-height: 280px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.product-card::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 12px;
  height: 12px;
  background: var(--green);
  content: "";
}

.product-media,
.product-card__media {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: var(--soft);
  -webkit-touch-callout: none;
  user-select: none;
}

.product-media::after,
.product-card__media::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
}

.product-image,
.product-media img,
.product-card__media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: contain;
  padding: 24px;
}

.product-card__body,
.product-content {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-content: start;
  min-width: 0;
  padding: 24px 32px;
}

.product-eyebrow,
.product-code,
.product-card__code {
  margin-bottom: 8px;
  color: var(--mute);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.43;
  text-transform: uppercase;
}

.product-title,
.product-card__title {
  margin-bottom: 12px;
  color: var(--black);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
}

.product-meta,
.product-card__meta,
.product-description {
  color: var(--mute);
  font-size: 16px;
  line-height: 1.5;
}

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

.product-meta > div {
  min-width: 0;
  margin: 0;
}

.product-meta dt {
  margin-bottom: 4px;
  color: var(--mute);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.product-meta dd {
  margin: 0;
  color: var(--black);
  overflow-wrap: anywhere;
}

.product-subtitle {
  margin: -6px 0 0;
  color: var(--mute);
  font-size: 16px;
  line-height: 1.5;
}

.vehicle-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.vehicle-tags span,
.fit-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.fit-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 4;
  max-width: calc(100% - 24px);
  border: 1px solid var(--green);
  background: var(--white);
  text-align: center;
}

.product-purchase {
  display: grid;
  grid-template-columns: minmax(140px, 0.45fr) minmax(0, 1fr);
  align-items: end;
  gap: 24px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.product-price {
  display: grid;
  gap: 2px;
}

.product-price > span,
.product-price small {
  color: var(--mute);
  font-size: 14px;
  line-height: 1.4;
  text-transform: uppercase;
}

.product-price strong {
  color: var(--black);
  font-size: 22px;
  line-height: 1.25;
}

.badge,
.product-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 10px;
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-actions,
.product-card__actions {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px;
}

.add-to-cart,
.product-add {
  min-height: 48px;
  padding: 11px 24px;
  border: 2px solid var(--green);
  background: transparent;
  color: var(--black);
  font-size: 16px;
  font-weight: 700;
}

.add-to-cart.is-added,
.product-add.is-added {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.add-to-cart.is-modified,
.product-add.is-modified {
  border-color: var(--green);
  background: var(--green);
  color: var(--black);
}

.add-to-cart:disabled,
.product-add:disabled {
  border-color: var(--line);
  background: var(--soft);
  color: var(--mute);
  cursor: not-allowed;
}

.original-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 36px;
  padding: 6px 12px;
  border: 2px solid var(--green);
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quantity-control {
  display: inline-flex;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.quantity-control label {
  display: flex;
  min-width: 64px;
  min-height: 48px;
}

.quantity-control button,
.quantity-control input,
.quantity-control span {
  display: grid;
  min-width: 56px;
  min-height: 48px;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: var(--white);
  color: var(--black);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.quantity-control button {
  padding: 0 14px;
}

.product-card [data-action="increase-draft-10"] {
  background: var(--green);
  color: var(--black);
}

.product-card [data-action="increase-draft-100"] {
  background: var(--black);
  color: var(--white);
}

.product-card [data-action="increase-draft-10"]:active {
  background: var(--green-dark);
}

.product-card [data-action="increase-draft-100"]:active {
  background: var(--ink);
}

.quantity-control input {
  width: 64px;
  padding: 0 4px;
  appearance: textfield;
}

.quantity-control input::-webkit-inner-spin-button,
.quantity-control input::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

.quantity-control > * + * {
  border-left: 1px solid var(--line);
}

.cart-fly {
  position: fixed;
  z-index: 100;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 2px solid var(--black);
  border-radius: var(--radius);
  background: var(--green);
  color: var(--black);
  font-size: 18px;
  font-weight: 700;
  pointer-events: none;
}

.empty-state {
  position: relative;
  padding: 48px 32px;
  border: 1px solid var(--line);
  text-align: center;
}

.empty-state .corner-square {
  position: absolute;
  top: 0;
  left: 0;
}

.empty-state h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.empty-state p {
  margin-bottom: 24px;
  color: var(--mute);
}

.site-footer {
  padding: 64px 0;
  border-top: 1px solid var(--line-strong);
  background: var(--black);
  color: rgba(255, 255, 255, 0.7);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(180px, 0.6fr) minmax(260px, 1fr) auto;
  align-items: start;
  gap: 48px;
}

.site-footer__copy p {
  margin-bottom: 8px;
  font-size: 16px;
}

.site-footer__legal {
  color: var(--mute);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: var(--green);
  font-size: 16px;
  font-weight: 700;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0, 0, 0, 0.72);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(100%, 520px);
  background: var(--white);
  color: var(--ink);
  transform: translateX(100%);
  transition: transform 180ms ease-out;
  visibility: hidden;
}

.cart-drawer.is-open,
.cart-drawer[aria-hidden="false"] {
  transform: translateX(0);
  visibility: visible;
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 96px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.cart-drawer__header h2 {
  margin: 0;
  font-size: 26px;
}

.cart-drawer__header .eyebrow {
  margin-bottom: 4px;
}

.icon-button {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--black);
}

.icon-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.75;
}

.cart-drawer__body {
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 24px;
}

.cart-items {
  display: grid;
  gap: 12px;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.cart-item img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: var(--soft);
}

.cart-item__body {
  min-width: 0;
}

.cart-item__heading,
.cart-item__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-item__heading h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.4;
}

.cart-item__heading button {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--black);
  font-size: 20px;
}

.cart-item__code {
  margin: 4px 0 12px;
  color: var(--mute);
  font-size: 14px;
  line-height: 1.43;
}

.quantity-control--small {
  min-height: 44px;
}

.quantity-control--small button,
.quantity-control--small span {
  min-width: 44px;
  min-height: 44px;
  padding-inline: 10px;
}

.cart-empty {
  padding: 32px 0;
  font-size: 17px;
  text-align: center;
}

.cart-empty p {
  color: var(--mute);
}

.cart-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--black);
  font-size: 17px;
  font-weight: 700;
}

.cart-summary strong {
  color: var(--green-dark);
  font-size: 24px;
}

.checkout-form {
  margin-top: 24px;
}

.form-message {
  min-height: 24px;
  margin: 16px 0;
  font-size: 16px;
  line-height: 1.5;
}

.form-message--error {
  color: var(--error);
}

.checkout-form__submit {
  width: 100%;
  min-height: 48px;
  font-size: 18px;
}

.access-gate {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--black);
  color: var(--white);
}

.access-gate[hidden] {
  display: none;
}

.access-gate__panel {
  position: relative;
  display: grid;
  gap: 48px;
  width: min(100%, 620px);
  padding: 48px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #1a1a1a;
}

.access-gate__panel::before {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 16px;
  height: 16px;
  background: var(--green);
  content: "";
}

.access-gate h1 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 36px;
}

.access-gate__copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
}

.gate-form {
  display: grid;
  gap: 8px;
}

.gate-form label {
  font-size: 15px;
  font-weight: 700;
}

.gate-form__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

[dir="rtl"] .search-control svg {
  right: 14px;
  left: auto;
}

[dir="rtl"] .search-control input {
  padding-right: 42px;
  padding-left: 14px;
}

[dir="rtl"] .product-card::before,
[dir="rtl"] .empty-state .corner-square {
  right: 0;
  left: auto;
}

[dir="rtl"] .product-media,
[dir="rtl"] .product-card__media {
  border-right: 0;
  border-left: 1px solid var(--line);
}

[dir="rtl"] .cart-drawer {
  right: auto;
  left: 0;
  transform: translateX(-100%);
}

[dir="rtl"] .cart-drawer.is-open,
[dir="rtl"] .cart-drawer[aria-hidden="false"] {
  transform: translateX(0);
}

@media (max-width: 920px) {
  :root {
    --header-height: 96px;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
  }

  .hero__content {
    padding-right: 32px;
  }

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

  .field--search {
    grid-column: 1 / -1;
  }

  .filters__clear {
    width: 100%;
  }

  .product-card {
    grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  }

  .product-purchase {
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
  }

  .product-actions,
  .product-card__actions {
    justify-content: flex-start;
  }

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

  .footer-link {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 72px;
  }

  .shell {
    width: min(100% - 32px, var(--shell));
  }

  .utility-bar {
    display: none;
  }

  .primary-nav {
    height: 72px;
  }

  .primary-nav__inner {
    gap: 16px;
  }

  button,
  .button,
  .icon-button,
  .footer-link {
    min-height: 48px;
  }

  .field input,
  .field select,
  .gate-form input {
    min-height: 48px;
  }

  .nav-link {
    display: none;
  }

  .cart-button {
    min-width: 48px;
    min-height: 48px;
    padding: 10px;
  }

  .cart-button > span:not(.cart-count) {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .hero__inner {
    display: block;
    min-height: auto;
  }

  .hero__content {
    min-height: 392px;
    padding: 48px 0;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero--exclusive .hero__content {
    min-height: 176px;
    padding: 40px 0;
  }

  .hero--exclusive h1 {
    font-size: 32px;
  }

  .hero__content > p:not(.eyebrow) {
    font-size: 18px;
  }

  .hero__graphic {
    display: none;
  }

  .catalog-section {
    padding: 48px 0 64px;
  }

  .catalog-section--products {
    padding-top: 24px;
  }

  .section-heading {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
  }

  .section-heading h2 {
    font-size: 30px;
  }

  .section-heading > p {
    margin: 0;
  }

  .filters {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    padding: 16px;
  }

  .field--search {
    grid-column: auto;
  }

  .product-card {
    display: block;
    min-height: 0;
  }

  .product-media,
  .product-card__media {
    aspect-ratio: 4 / 3;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  [dir="rtl"] .product-media,
  [dir="rtl"] .product-card__media {
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-image,
  .product-media img,
  .product-card__media img {
    min-height: 0;
    padding: 16px;
  }

  .product-card__body,
  .product-content {
    padding: 24px;
  }

  .product-title,
  .product-card__title {
    font-size: 22px;
  }

  .product-actions,
  .product-card__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .quantity-control {
    width: 100%;
    min-height: 52px;
  }

  .quantity-control > button,
  .quantity-control > label,
  .quantity-control > span {
    flex: 1 1 0;
    min-width: 0;
    min-height: 52px;
  }

  .quantity-control input {
    width: 100%;
    min-height: 52px;
  }

  .cart-item__actions {
    flex-wrap: wrap;
  }

  .cart-item__heading button {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .product-meta {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .product-purchase {
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
  }

  .add-to-cart,
  .product-add {
    width: 100%;
  }

  .site-footer {
    padding: 48px 0;
  }

  .site-footer__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .footer-link {
    grid-column: auto;
  }

  .access-gate__panel {
    gap: 32px;
    padding: 32px 24px;
  }

  .gate-form__row {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 420px) {
  .brand {
    font-size: 18px;
  }

  .cart-drawer__header,
  .cart-drawer__body {
    padding-right: 16px;
    padding-left: 16px;
  }

  .cart-item {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .cart-item img {
    width: 56px;
    height: 56px;
  }

  .cart-item > :last-child {
    grid-column: auto;
  }
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .cart-drawer {
    transition: none;
  }

  .cart-fly {
    display: none;
  }
}
