:root {
  color-scheme: light;
  --ink: #17191f;
  --muted: #656b76;
  --line: #d8dde5;
  --soft: #f4f6f8;
  --panel: #ffffff;
  --dark: #111318;
  --accent: #f2cf45;
  --blue: #46a9d8;
  --green: #71b86d;
  --violet: #8c67ce;
  --danger: #bd4a4a;
  --shadow: 0 18px 55px rgba(17, 19, 24, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fbfcfd;
  color: var(--ink);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.app-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 18px;
  min-height: 72px;
  padding: 12px clamp(16px, 4vw, 46px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(216, 221, 229, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 38px;
  place-items: center;
  color: #101216;
  background: var(--accent);
  font-weight: 900;
  letter-spacing: 0;
  transform: skew(-12deg);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 2px;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-nav a {
  color: var(--muted);
  font-weight: 700;
  padding: 10px 12px;
  text-decoration: none;
}

.top-nav a:hover {
  color: var(--ink);
}

.cart-pill,
.primary-button,
.ghost-button,
.text-button,
.icon-button,
.primary-link,
.secondary-link {
  min-height: 42px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
}

.cart-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 15px;
  color: #101216;
  background: var(--accent);
  border-radius: 999px;
}

.cart-icon {
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 2px 2px 5px 5px;
  position: relative;
}

.cart-icon::before {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  top: -7px;
  height: 8px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.shop-hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: stretch;
  background: var(--dark);
  color: #fff;
}

.shop-hero img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: clamp(28px, 6vw, 72px);
  background: linear-gradient(120deg, #111318 0%, #23262b 100%);
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2.35rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.65rem, 2.5vw, 2.7rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.02rem;
  line-height: 1.2;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 0;
  color: #d7dbe2;
  font-size: 1.07rem;
  line-height: 1.7;
}

.hero-actions,
.form-actions,
.cart-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.primary-link,
.secondary-link,
.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 7px;
}

.primary-link,
.primary-button {
  color: #111318;
  background: var(--accent);
}

.secondary-link,
.ghost-button {
  color: inherit;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.stats-band div {
  padding: 22px clamp(16px, 4vw, 42px);
  background: #fff;
}

.stats-band strong,
.stats-band span {
  display: block;
}

.stats-band strong {
  font-size: 1.55rem;
}

.stats-band span {
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: clamp(42px, 7vw, 82px) clamp(16px, 4vw, 46px);
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.section-title.compact {
  display: block;
  margin-bottom: 20px;
}

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

.promo-card,
.product-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 26px rgba(17, 19, 24, 0.05);
}

.promo-card {
  display: grid;
  gap: 18px;
  padding: 22px;
  overflow: hidden;
}

.promo-card strong {
  color: var(--muted);
  font-size: 0.86rem;
}

.promo-products {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #27303a;
  background: #edf1f6;
  font-size: 0.78rem;
  font-weight: 800;
}

.tag.yellow {
  background: #fff3b8;
}

.tag.blue {
  background: #dff3fb;
}

.tag.green {
  background: #e0f2df;
}

.tag.violet {
  background: #eee8fb;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  background: var(--soft);
}

.filters-panel {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 18px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.search-box,
.filter-row label,
.order-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cfd6df;
  border-radius: 7px;
  padding: 10px 12px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #252a33;
  box-shadow: 0 0 0 3px rgba(242, 207, 69, 0.35);
}

.filter-group {
  display: grid;
  gap: 9px;
}

.filter-group > span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.segmented {
  display: grid;
  gap: 8px;
}

.segmented button {
  min-height: 38px;
  padding: 8px 10px;
  color: #343a44;
  background: #f4f6f8;
  border: 1px solid #e0e5ec;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 800;
  text-align: left;
}

.segmented button.active {
  color: #111318;
  background: var(--accent);
  border-color: #d8b72d;
}

.filter-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.text-button {
  justify-self: start;
  min-height: 36px;
  padding: 0;
  color: #3f4754;
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.catalog-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 7px;
  border: 1px solid var(--line);
}

.products-area {
  min-width: 0;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.catalog-toolbar strong,
.catalog-toolbar span {
  display: block;
}

.catalog-toolbar span {
  color: var(--muted);
  margin-top: 4px;
}

.catalog-toolbar select {
  max-width: 220px;
}

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

.product-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 325px;
  overflow: hidden;
}

.product-visual {
  display: grid;
  min-height: 118px;
  padding: 18px;
  color: #fff;
  background: linear-gradient(135deg, #22262d, #434a56);
}

.product-visual.lana {
  background: linear-gradient(135deg, #22262d, #6d7b64);
}

.product-visual.poliespuma {
  background: linear-gradient(135deg, #253040, #55a8d4);
}

.product-visual.accesorios {
  background: linear-gradient(135deg, #2e2a36, #8166aa);
}

.product-visual.tacos {
  background: linear-gradient(135deg, #26323b, #d6b834);
}

.product-code {
  align-self: start;
  justify-self: start;
  padding: 6px 9px;
  color: #111318;
  background: #fff;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.product-body {
  padding: 16px;
}

.product-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.product-actions {
  display: grid;
  grid-template-columns: 98px 1fr;
  gap: 10px;
  padding: 0 16px 16px;
}

.qty-control {
  display: grid;
  grid-template-columns: 31px 1fr 31px;
  align-items: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 7px;
  overflow: hidden;
}

.qty-control button {
  height: 100%;
  border: 0;
  background: #f2f4f7;
  cursor: pointer;
  font-weight: 900;
}

.qty-control input {
  min-height: 40px;
  padding: 0;
  border: 0;
  border-radius: 0;
  text-align: center;
  font-weight: 900;
}

.add-button {
  min-height: 42px;
  color: #111318;
  background: var(--accent);
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 900;
}

.technical-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: center;
}

.technical-band p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.7;
}

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

.catalog-previews img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: var(--shadow);
}

.order-section {
  background: #17191f;
  color: #fff;
}

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

.order-form .full,
.form-actions {
  grid-column: 1 / -1;
}

.order-form input,
.order-form textarea {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.order-form input::placeholder,
.order-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  justify-items: end;
  background: rgba(17, 19, 24, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.cart-drawer.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-shell {
  width: min(460px, 100vw);
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 16px;
  padding: 22px;
  background: #fff;
  transform: translateX(20px);
  transition: transform 180ms ease;
}

.cart-drawer.open .cart-shell {
  transform: translateX(0);
}

.cart-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.icon-button {
  width: 38px;
  min-height: 38px;
  color: var(--ink);
  background: #eef1f5;
  border-radius: 999px;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 12px;
  overflow: auto;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cart-line strong,
.cart-line span {
  display: block;
}

.cart-line span {
  color: var(--muted);
  margin-top: 3px;
  font-size: 0.86rem;
}

.cart-line button {
  align-self: start;
  color: var(--danger);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 900;
}

.cart-empty {
  color: var(--muted);
  align-self: start;
}

.disabled {
  opacity: 0.45;
  pointer-events: none;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 60;
  min-width: min(420px, calc(100vw - 30px));
  padding: 13px 16px;
  color: #fff;
  background: #17191f;
  border-radius: 7px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translate(-50%, 10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 1080px) {
  .product-grid,
  .promo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-hero,
  .technical-band {
    grid-template-columns: 1fr;
  }

  .shop-hero {
    min-height: 0;
  }

  .shop-hero img {
    min-height: 380px;
  }
}

@media (max-width: 860px) {
  .app-header {
    grid-template-columns: 1fr auto;
  }

  .top-nav {
    display: none;
  }

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

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

  .filters-panel {
    position: static;
  }

  .order-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .app-header {
    min-height: 64px;
    padding: 10px 12px;
  }

  .brand-mark {
    width: 42px;
    height: 34px;
  }

  .brand small {
    display: none;
  }

  .cart-pill {
    padding: 8px 12px;
  }

  .hero-copy {
    padding: 28px 18px 36px;
  }

  h1 {
    font-size: 2.35rem;
  }

  .section {
    padding: 42px 14px;
  }

  .product-grid,
  .promo-grid,
  .catalog-previews {
    grid-template-columns: 1fr;
  }

  .catalog-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .catalog-toolbar select {
    max-width: none;
  }

  .stats-band {
    grid-template-columns: 1fr;
  }
}

/* 2026 institutional theme */
:root {
  color-scheme: dark;
  --ink: #f5f5f2;
  --muted: #a7a9ae;
  --line: #34363b;
  --soft: #0d0e10;
  --panel: #121315;
  --dark: #070708;
  --accent: #f2d900;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
}

body,
body * {
  letter-spacing: 0;
}

body {
  background: #09090a;
  color: var(--ink);
}

.app-header {
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 58px);
  color: #fff;
  background: rgba(5, 5, 6, 0.96);
  border-color: #2c2d31;
}

.brand {
  color: #fff;
  gap: 14px;
}

.brand-mark {
  width: auto;
  height: auto;
  color: #fff;
  background: transparent;
  font-size: 2.2rem;
  font-style: italic;
  line-height: 1;
  transform: skew(-10deg);
}

.brand-divider {
  width: 1px;
  height: 38px;
  background: var(--accent);
  transform: skew(-12deg);
}

.brand strong {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
}

.top-nav {
  gap: 2px;
}

.top-nav a {
  position: relative;
  color: #d5d5d7;
  font-size: 0.88rem;
  font-weight: 500;
}

.top-nav a::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 2px;
  left: 12px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.top-nav a:hover {
  color: #fff;
}

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

.cart-pill {
  color: #111;
  background: var(--accent);
  border: 1px solid var(--accent);
}

.shop-hero {
  min-height: min(620px, calc(100svh - 178px));
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, 0.95fr);
  border-bottom: 2px solid var(--accent);
  background: #070708;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  gap: 20px;
  padding: clamp(44px, 6vw, 82px) clamp(22px, 5vw, 82px);
  background: linear-gradient(90deg, #070708 72%, rgba(7, 7, 8, 0.7));
}

.hero-copy::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--accent);
}

.eyebrow {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
}

h1 {
  max-width: 780px;
  color: #f7f7f5;
  font-size: 3.55rem;
  line-height: 1.06;
}

h2 {
  color: #f7f7f5;
  font-size: 2.25rem;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 580px;
  color: #c6c7ca;
  font-size: 1.05rem;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 6px;
}

.primary-link,
.secondary-link,
.primary-button,
.ghost-button {
  min-height: 50px;
  gap: 20px;
  padding: 13px 20px;
  border-radius: 4px;
}

.primary-link,
.primary-button {
  color: #0a0a0a;
  background: var(--accent);
}

.secondary-link,
.ghost-button {
  color: #f5f5f2;
  background: rgba(10, 10, 10, 0.66);
  border-color: #77797e;
}

.hero-media {
  position: relative;
  min-width: 0;
  background: #070708;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #070708 0%, transparent 28%), linear-gradient(0deg, rgba(0, 0, 0, 0.42), transparent 44%);
  pointer-events: none;
}

.shop-hero .hero-media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: contrast(1.08) saturate(0.62);
}

.hero-media p {
  position: absolute;
  right: 34px;
  bottom: 24px;
  z-index: 2;
  margin: 0;
  padding-left: 42px;
  color: #e8e8e6;
  font-size: 0.69rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-media p::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--accent);
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 58px);
  background: #09090a;
}

.category-strip a {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
  min-height: 128px;
  padding: 18px;
  color: #f5f5f2;
  border: 1px solid #3b3d42;
  border-radius: 4px;
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease;
}

.category-strip a:hover {
  background: #121315;
  border-color: var(--accent);
}

.category-strip strong {
  position: relative;
  padding-bottom: 16px;
  font-size: 1.1rem;
}

.category-strip strong::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 34px;
  height: 2px;
  background: var(--accent);
}

.category-symbol {
  position: relative;
  display: block;
  width: 64px;
  height: 64px;
  border: 1px solid #b5b7bc;
  border-radius: 50%;
  opacity: 0.82;
}

.category-symbol::before,
.category-symbol::after {
  content: "";
  position: absolute;
}

.category-symbol.hybrid {
  border-radius: 4px;
  transform: rotate(45deg) scale(0.72);
  background: repeating-linear-gradient(0deg, transparent 0 9px, #9a9ca1 10px 11px), repeating-linear-gradient(90deg, transparent 0 9px, #9a9ca1 10px 11px);
}

.category-symbol.wool::before {
  inset: 16px 5px;
  border-top: 2px solid #aeb0b5;
  border-bottom: 2px solid #aeb0b5;
  border-radius: 50%;
  transform: rotate(12deg);
}

.category-symbol.foam {
  border: 0;
  border-radius: 0;
  background: radial-gradient(circle at 25% 35%, transparent 0 12px, #aeb0b5 13px 14px, transparent 15px), radial-gradient(circle at 70% 35%, transparent 0 12px, #aeb0b5 13px 14px, transparent 15px), radial-gradient(circle at 48% 70%, transparent 0 12px, #aeb0b5 13px 14px, transparent 15px);
}

.category-symbol.backing::before {
  inset: 9px;
  border: 1px solid #aeb0b5;
  border-radius: 50%;
}

.category-symbol.backing::after {
  inset: 21px;
  border: 1px solid #aeb0b5;
  border-radius: 50%;
}

.stats-band {
  background: #2b2d31;
}

.stats-band div {
  color: #f2f2ef;
  background: #111214;
}

.stats-band span,
.catalog-toolbar span,
.product-body p,
.technical-band p:not(.eyebrow),
.cart-line span,
.cart-empty {
  color: var(--muted);
}

.section {
  background: #0b0b0c;
}

#promos {
  border-top: 1px solid #232529;
}

.promo-card,
.product-card,
.filters-panel {
  background: #121315;
  border-color: #34363b;
  box-shadow: none;
}

.promo-card:hover,
.product-card:hover {
  border-color: #5a5c62;
}

.catalog-layout {
  background: #09090a;
}

input,
select,
textarea,
.segmented button {
  color: #f5f5f2;
  background: #191a1d;
  border-color: #3f4146;
}

.segmented button.active {
  color: #09090a;
  background: var(--accent);
  border-color: var(--accent);
}

.catalog-thumb {
  border-color: #3f4146;
  filter: grayscale(0.55) contrast(1.05);
}

.product-visual,
.product-visual.lana,
.product-visual.poliespuma,
.product-visual.accesorios,
.product-visual.tacos {
  background: #0a0a0b;
  border-bottom: 1px solid #34363b;
}

.product-visual.lana {
  box-shadow: inset 5px 0 #8ca77a;
}

.product-visual.poliespuma {
  box-shadow: inset 5px 0 #4aa9d6;
}

.product-visual.accesorios {
  box-shadow: inset 5px 0 #8f77b3;
}

.product-visual.tacos {
  box-shadow: inset 5px 0 var(--accent);
}

.product-code {
  color: #0a0a0a;
  background: #f0f0ed;
}

.qty-control {
  border-color: #3f4146;
}

.qty-control button {
  color: #f5f5f2;
  background: #222327;
}

.qty-control input {
  color: #fff;
  background: #111214;
}

.add-button {
  color: #09090a;
  background: var(--accent);
}

.technical-band {
  border-top: 1px solid #26272b;
  background: #101113;
}

.catalog-previews img {
  border-color: #3d3f44;
}

.order-section {
  border-top: 2px solid var(--accent);
  background: #080809;
}

.cart-shell {
  color: #f5f5f2;
  background: #111214;
  border-left: 1px solid #3c3e43;
}

.cart-line {
  border-color: #3c3e43;
}

.icon-button {
  color: #fff;
  background: #25262a;
}

.toast {
  color: #111;
  background: var(--accent);
}

@media (max-width: 1180px) {
  .top-nav a {
    padding-inline: 8px;
    font-size: 0.8rem;
  }

  .shop-hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  }

  h1 {
    font-size: 3rem;
  }

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

@media (max-width: 860px) {
  .shop-hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 520px;
    background: linear-gradient(180deg, rgba(7, 7, 8, 0.2), #070708), url("./assets/catalog/catalog-page-1.png") 62% center / cover no-repeat;
  }

  .hero-copy::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(0, 0, 0, 0.54);
  }

  .hero-media {
    display: none;
  }
}

@media (max-width: 620px) {
  .brand-divider,
  .brand strong {
    display: none;
  }

  .brand-mark {
    font-size: 1.8rem;
  }

  .hero-copy {
    min-height: 520px;
    padding: 42px 18px;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-actions a {
    width: 100%;
  }

  .category-strip {
    grid-template-columns: 1fr;
    padding: 18px 14px;
  }

  .category-strip a {
    min-height: 100px;
  }
}
