:root {
  --bg: #0a0a0a;
  --bg2: #0a0a0a;
  --surface: #1a1a1a;
  --surface2: #171717;
  --text: #e5e5e5;
  --silver: #c0c0c0;
  --silver-bright: #dedede;
  --muted: #9a9a9a;
  --line: rgba(192, 192, 192, 0.14);
  --cta: #ff3333;
  --cta-hover: #ff5555;
  --cta-press: #cc2929;
  /* совместимость со старыми именами */
  --purple: var(--silver);
  --pink: #a3a3a3;
  --orange: var(--silver-bright);
  --font-display: "Share Tech Mono", ui-monospace, monospace;
  --font-body: "Share Tech Mono", ui-monospace, monospace;
  --radius: 12px;
  --radius-sm: 8px;
  --crt-line: rgba(0, 0, 0, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
}

body.matrix-theme {
  background: radial-gradient(ellipse 120% 90% at 50% -10%, #141414 0%, var(--bg) 55%);
}

.matrix-rain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.28;
  mix-blend-mode: lighten;
}

.crt-lines {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 4;
  background: repeating-linear-gradient(
    transparent 0 2px,
    var(--crt-line) 2px 4px
  );
  opacity: 0.22;
}

.vignette {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 3;
  box-shadow:
    inset 0 0 100px rgba(0, 0, 0, 0.92),
    inset 0 0 40px rgba(0, 0, 0, 0.55);
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 2;
  opacity: 0.07;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.top-strip,
.header,
.marquee,
main,
.footer {
  position: relative;
  z-index: 5;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--silver-bright);
}

.top-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 1.25rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  box-shadow: inset 0 -1px 0 rgba(255, 51, 51, 0.35);
}

.top-strip p {
  margin: 0;
}

.top-strip p strong {
  color: var(--cta);
  font-weight: 700;
}

.top-strip a {
  color: var(--silver);
  white-space: nowrap;
}

.top-strip a:hover {
  color: var(--cta);
}

.header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--silver);
}

.logo:hover {
  color: var(--silver-bright);
}

.logo-mark-img {
  flex-shrink: 0;
  width: auto;
  height: 2.35rem;
  display: block;
  object-fit: contain;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-lockup-img {
  display: block;
  width: auto;
  max-width: min(100%, 220px);
  height: auto;
  max-height: 2.75rem;
  object-fit: contain;
  opacity: 0.95;
}

.logo-text {
  display: inline-flex;
  align-items: baseline;
  gap: 0.12em;
}

.logo-accent {
  font-weight: 800;
  background: linear-gradient(105deg, #9a9a9a, var(--silver) 40%, var(--silver-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav {
  display: none;
  align-items: center;
  gap: 1.35rem;
  font-size: 0.88rem;
  font-weight: 500;
}

.nav a {
  color: var(--muted);
}

.nav a:hover {
  color: var(--text);
}

@media (min-width: 900px) {
  .nav {
    display: flex;
  }

  #navToggle {
    display: none;
  }
}

@media (max-width: 899px) {
  .nav.is-open {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.25rem 1rem;
    background: rgba(10, 10, 10, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .nav.is-open a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--line);
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  color: var(--text);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.icon-btn:hover {
  border-color: var(--line);
  color: var(--purple);
}

.burger {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: currentColor;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}

.cart-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.25rem;
  padding: 0.5rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--silver);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.cart-pill:hover {
  border-color: rgba(192, 192, 192, 0.45);
  box-shadow: 0 0 0 1px rgba(192, 192, 192, 0.1);
}

.cart-badge {
  min-width: 1.35rem;
  padding: 0.1rem 0.4rem;
  font-size: 0.72rem;
  text-align: center;
  border-radius: 6px;
  background: var(--silver);
  color: var(--bg);
  font-weight: 700;
}

.marquee {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(140deg, rgba(26, 26, 26, 0.95), var(--bg));
  box-shadow: inset 0 1px 0 rgba(192, 192, 192, 0.06);
}

.marquee-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  padding: 0.55rem 0;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(192, 192, 192, 0.65);
  animation: marquee 28s linear infinite;
}

.marquee .dot {
  color: var(--cta);
  font-size: 0.42rem;
  opacity: 0.95;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
}

.hero {
  display: grid;
  gap: 2.5rem;
  padding: 2.5rem 0 3rem;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 880px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    padding: 3.5rem 0 4rem;
  }
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 7vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--silver);
}

.hero-title .line {
  display: block;
}

.hero-title .accent {
  background: linear-gradient(100deg, var(--silver-bright), var(--silver) 50%, #8a8a8a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 24px rgba(192, 192, 192, 0.22));
}

.lead {
  max-width: 34rem;
  margin: 0 0 1.5rem;
  color: var(--muted);
}

.lead strong {
  color: var(--text);
  font-weight: 600;
}

.lead a {
  color: var(--cta);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.lead a:hover {
  color: var(--cta-hover);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.12s, opacity 0.15s, box-shadow 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-solid {
  color: var(--bg);
  background: linear-gradient(165deg, var(--silver-bright), var(--silver) 55%, #9a9a9a);
  border: 1px solid rgba(192, 192, 192, 0.65);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  text-shadow: none;
}

.btn-solid:hover {
  opacity: 0.95;
  color: var(--bg);
}

.btn-cta {
  color: #fafafa;
  background: linear-gradient(165deg, var(--cta-hover), var(--cta));
  border: 1px solid rgba(255, 80, 80, 0.6);
  box-shadow:
    0 0 24px rgba(255, 51, 51, 0.28),
    inset 0 1px 0 rgba(255, 200, 200, 0.2);
  text-shadow: none;
}

.btn-cta:hover:not(:disabled) {
  background: linear-gradient(165deg, #ff7070, var(--cta-hover));
  color: #fff;
}

.btn-cta:disabled {
  filter: grayscale(0.85);
  opacity: 0.45;
}

.btn-ghost {
  color: var(--text);
  background: transparent;
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  border-color: rgba(192, 192, 192, 0.4);
  color: var(--silver);
}

.btn-block {
  width: 100%;
}

.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 1.1rem 0 0;
  border-top: 1px solid var(--line);
}

.hero-stats dt {
  margin: 0 0 0.2rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-stats dd {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--silver);
}

.hero-visual {
  position: relative;
  min-height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}

@media (min-width: 880px) {
  .hero-visual {
    min-height: 380px;
  }
}

.hero-blob {
  position: absolute;
  inset: -20%;
  z-index: 0;
  background:
    radial-gradient(ellipse 85% 65% at 28% 28%, rgba(192, 192, 192, 0.12), transparent 55%),
    radial-gradient(ellipse 72% 55% at 78% 32%, rgba(255, 51, 51, 0.09), transparent 52%),
    radial-gradient(ellipse 70% 50% at 50% 88%, rgba(26, 26, 26, 0.9), transparent 48%),
    linear-gradient(165deg, #121212, #050505);
}

.hero-logo-water {
  position: absolute;
  left: 50%;
  top: 48%;
  z-index: 1;
  width: min(62%, 240px);
  height: auto;
  transform: translate(-50%, -50%);
  opacity: 0.38;
  pointer-events: none;
  user-select: none;
}

.hero-card {
  position: absolute;
  z-index: 2;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius-sm);
  background: rgba(10, 10, 10, 0.86);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.hero-card-tag {
  display: inline-block;
  margin-bottom: 0.35rem;
  padding: 0.2rem 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 6px;
  background: rgba(255, 51, 51, 0.18);
  color: #ffb3b3;
}

.hero-card-name {
  margin: 0 0 0.15rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--silver);
}

.hero-card-price {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cta);
}

.hero-card-link:hover {
  color: var(--cta-hover);
}

.cats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  padding: 2rem 0;
}

.cats-single {
  grid-template-columns: 1fr;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.cats-single .cat-tile {
  text-align: center;
  align-items: center;
}

.cat-tile {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--surface), var(--bg2));
  transition: border-color 0.15s, transform 0.15s;
}

.cat-tile:hover {
  border-color: rgba(192, 192, 192, 0.35);
  transform: translateY(-2px);
  color: var(--text);
}

.cat-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--silver);
}

.cat-hint {
  font-size: 0.82rem;
  color: var(--muted);
}

.catalog-block {
  padding: 1rem 0 3rem;
  border-bottom: 1px solid var(--line);
}

.catalog-head {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

@media (min-width: 720px) {
  .catalog-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.section-title {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  letter-spacing: -0.03em;
  color: var(--silver);
}

.section-title.tight {
  line-height: 1.1;
}

.section-sub {
  margin: 0;
  max-width: 26rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.chip {
  padding: 0.45rem 0.95rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.chip:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.15);
}

.chip.is-active {
  color: var(--bg);
  background: linear-gradient(130deg, var(--silver-bright), var(--silver));
  border-color: rgba(192, 192, 192, 0.5);
  text-shadow: none;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 1rem;
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
  }
}

.pcard {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pcard:hover {
  border-color: rgba(192, 192, 192, 0.22);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.pcard.is-hidden {
  display: none;
}

.pcard-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--surface2);
}

.pcard-img::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  mix-blend-mode: soft-light;
  background: var(--card-mesh, linear-gradient(145deg, #1f1f1f, #101010));
}

@media (prefers-reduced-motion: reduce) {
  .matrix-rain {
    display: none !important;
  }

  .marquee-inner {
    animation: none;
  }

  .gallery-scroller {
    scroll-behavior: auto;
  }
}

.pcard-img span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: rgba(192, 192, 192, 0.12);
}

.pcard-img--photo {
  padding: 0;
  background: #e4e4e4;
}

.pcard-img--photo::after {
  opacity: 0.04;
  z-index: 2;
}

.pcard-img.has-gallery .gallery-nav,
.pcard-img.has-gallery .gallery-hint {
  z-index: 3;
}

.pcard-img--photo .gallery-scroller figure img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
}

.gallery-scroller {
  display: flex;
  flex-flow: row nowrap;
  gap: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  width: 100%;
  height: 100%;
  scrollbar-width: none;
  outline: none;
}

.gallery-scroller::-webkit-scrollbar {
  display: none;
}

.gallery-slide {
  flex: 0 0 100%;
  min-width: 100%;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  scroll-snap-align: start;
}

.gallery-slide img {
  height: 100%;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.35rem;
  height: 2.35rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 400;
  color: var(--text);
  background: rgba(10, 10, 10, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition:
    opacity 0.15s,
    border-color 0.15s;
}

.gallery-prev {
  left: 0.45rem;
}

.gallery-next {
  right: 0.45rem;
}

.gallery-nav:hover {
  opacity: 0.94;
  border-color: rgba(192, 192, 192, 0.4);
}

.gallery-hint {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  padding: 0.2rem 0.55rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(42, 42, 42, 0.9);
}

.product-grid.is-single {
  justify-content: center;
  justify-items: center;
  grid-template-columns: minmax(auto, 22rem);
}

@media (min-width: 768px) {
  .product-grid.is-single {
    grid-template-columns: minmax(auto, 24rem);
  }
}

.variant-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.5rem 0 0.65rem;
}

.variant-chip {
  padding: 0.35rem 0.65rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.variant-chip:hover {
  color: var(--text);
  border-color: rgba(192, 192, 192, 0.35);
}

.variant-chip.is-active {
  color: var(--bg);
  background: linear-gradient(130deg, var(--silver-bright), var(--silver));
  border-color: rgba(192, 192, 192, 0.5);
}

.pcard-body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.05rem 1.1rem;
  flex: 1;
}

.pcard-cat {
  margin: 0;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.pcard-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--silver);
}

.pcard-meta {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.pcard-price {
  margin: 0.25rem 0 0.6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  background: linear-gradient(92deg, var(--text), var(--silver));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pcard .btn-add {
  margin-top: auto;
  width: 100%;
  padding: 0.65rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fafafa;
  background: linear-gradient(165deg, var(--cta-hover), var(--cta));
  border: 1px solid rgba(255, 80, 80, 0.45);
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.12s, opacity 0.15s, box-shadow 0.15s;
  box-shadow: 0 0 18px rgba(255, 51, 51, 0.2);
}

.pcard .btn-add:hover {
  opacity: 0.95;
  transform: translateY(-1px);
  box-shadow: 0 0 22px rgba(255, 51, 51, 0.3);
}

.pcard .btn-add:active {
  transform: scale(0.98);
}

.about {
  padding: 3rem 0;
  border-bottom: 1px solid var(--line);
}

.about-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 800px) {
  .about-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
  }
}

.about-visual {
  position: relative;
  min-height: 220px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 30% 30%, rgba(192, 192, 192, 0.08), transparent 52%),
    radial-gradient(circle at 80% 65%, rgba(255, 51, 51, 0.06), transparent 48%),
    var(--surface);
  overflow: hidden;
}

.about-logo-mark {
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(72%, 280px);
  height: auto;
  max-height: 78%;
  object-fit: contain;
  opacity: 0.2;
  pointer-events: none;
  user-select: none;
}

.about-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  max-width: 36rem;
}

.about-copy .about-extra {
  margin-top: 1rem;
}

.origin-card {
  margin-top: 1.5rem;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  scroll-margin-top: 5.5rem;
  background:
    linear-gradient(135deg, rgba(26, 26, 26, 0.85), rgba(10, 10, 10, 0.92));
  box-shadow: inset 0 1px 0 rgba(192, 192, 192, 0.06);
}

.origin-card p {
  margin: 0;
  color: var(--muted);
}

.origin-card-title {
  margin: 0 0 0.65rem !important;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver);
}

.origin-card-foot {
  margin-top: 1rem !important;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.88rem !important;
}

.about-copy a {
  color: var(--cta);
}

.about-copy a:hover {
  color: var(--cta-hover);
}

.newsletter {
  padding: 2.75rem 0;
  border-bottom: 1px solid var(--line);
}

.newsletter-inner {
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, var(--surface), var(--bg2));
}

.newsletter-inner > p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  max-width: 28rem;
}

.news-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.news-form input {
  flex: 1 1 200px;
  padding: 0.78rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: none;
}

.news-form input:focus {
  border-color: rgba(192, 192, 192, 0.5);
}

.news-form input::placeholder {
  color: rgba(229, 229, 229, 0.35);
}

.contacts {
  padding: 2.5rem 0 0;
}

.contacts .section-title {
  margin-bottom: 0.5rem;
}

.contacts p {
  margin: 0.35rem 0;
}

.social-links {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  max-width: 32rem;
}

.social-links li {
  margin: 0.5rem 0;
  padding-left: 0;
}

.social-links a {
  color: var(--silver);
  font-weight: 600;
}

.social-links a:hover {
  color: var(--cta);
}

.newsletter-inner a {
  color: var(--cta);
}

.newsletter-inner a:hover {
  color: var(--cta-hover);
}

.fine {
  font-size: 0.85rem;
  color: var(--muted);
}

.footer {
  display: grid;
  gap: 1.75rem;
  padding: 2.5rem 1.25rem 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  font-size: 0.88rem;
}

@media (min-width: 768px) {
  .footer {
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 2rem 1.5rem;
    padding: 2.5rem 2rem 1.25rem;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
  }
}

.footer-brand p {
  margin: 0.6rem 0 0;
  max-width: 22rem;
  color: var(--muted);
  line-height: 1.5;
}

.footer-brand p a {
  color: var(--cta);
  font-weight: 600;
}

.footer-brand p a:hover {
  color: var(--cta-hover);
}

.footer-col h3 {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-col a {
  color: var(--text);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--muted);
}

.footer-bottom a {
  color: var(--cta);
}

.footer-bottom a:hover {
  color: var(--cta-hover);
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.55);
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 300;
  width: min(100%, 400px);
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.drawer.open {
  transform: translateX(0);
}

.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.25rem 1rem;
  border-bottom: 1px solid var(--line);
}

.drawer-top h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--silver);
  text-shadow: 0 0 20px rgba(192, 192, 192, 0.15);
}

.drawer-close {
  width: 2.35rem;
  height: 2.35rem;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.drawer-close:hover {
  border-color: var(--purple);
}

.cart-lines {
  list-style: none;
  margin: 0;
  padding: 1rem 1.25rem;
  flex: 1;
  overflow-y: auto;
}

.cart-lines li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--line);
}

.cart-lines li span:last-child {
  color: var(--muted);
  white-space: nowrap;
}

.cart-empty {
  margin: 0;
  padding: 0 1.25rem 1rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.cart-empty.hidden {
  display: none;
}

.drawer-bottom {
  padding: 1.25rem;
  border-top: 1px solid var(--line);
}

.cart-sum {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.cart-sum strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  background: linear-gradient(92deg, var(--silver-bright), var(--silver));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body.drawer-open {
  overflow: hidden;
}

body.drawer-open .overlay {
  display: block;
}

.overlay[hidden] {
  display: none !important;
}
