/* ============================================
   ПРИМБАС — Engineering aesthetic
   
     --c-brand: #0F76EA;
  --c-brand-deep: #0855B8;
   ============================================ */

:root {
  --c-ink: #0A0E1A;
  --c-ink-2: #121829;
  --c-paper: #FFFFFF;
  --c-soft: #F4F7FC;
  --c-soft-2: #ECF1F8;
  --c-rule: #08a2ba;
  --c-rule-2: #D2DCEA;
  --c-text: #1A1A2E;
  --c-muted: #6B7A99;
  --c-muted-2: #95A2BD;
  --c-brand: #096a79;
  --c-brand-deep: #08a2ba;
  --c-brand-tint: #DDEBFD;
  --c-success: #16A34A;
  --c-warn: #D97706;

  --r-card: 14px;
  --r-pill: 999px;

  --nav-h: 72px;
  --container: 1440px;
  --pad-x: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Onest', system-ui, -apple-system, sans-serif;
  color: var(--c-text);
  background: var(--c-paper);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.mono {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-feature-settings: 'ss01' on;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
.text-primary {
    color: #096a79 !important;
}
/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  width: 100%;
}


.col { display: flex; flex-direction: column; }
.between { justify-content: space-between; }
.grow { flex: 1; }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--c-rule);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
}
.account .nav {
    position:relative;
    border:none;
    z-index: auto;
    height: auto;
}
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: var(--c-ink);
}
.logo .mark {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--c-brand);
  position: relative; overflow: hidden;
  flex-shrink: 0;
}
.logo .mark::before {
  content: ''; position: absolute; left: -20%; right: -20%; top: 50%;
  height: 80%;
  background: rgba(255,255,255,0.45);
  border-radius: 50% 50% 0 0 / 80% 80% 0 0;
}
.logo .mark::after {
  content: ''; position: absolute; left: -30%; right: -30%; top: 68%;
  height: 80%;
  background: rgba(255,255,255,0.6);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.nav__sep {
  height: 28px;
  width: 1px;
  background: var(--c-rule);
}
.nav__loc {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--c-muted);
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  align-items: center;
}
.nav__links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--c-text);
  position: relative;
  padding: 4px 0;
}
.nav__links a:hover { color: var(--c-brand); }
.nav__links a.active {
  color: var(--c-brand);
}
.nav__links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--c-brand);
}


/* ============================================
   TYPE
   ============================================ */
h1, h2, h3, h4, h5, p { margin: 0; }

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--c-muted);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow .num { color: var(--c-brand); }
.eyebrow .bar {
  display: inline-block;
  width: 32px;
  height: 1.5px;
  background: currentColor;
  opacity: 0.45;
}

.h1 {
  font-size: clamp(48px, 6.5vw, 100px);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.h2 {
  font-size: clamp(36px, 4.4vw, 64px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.h3 {
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.h4 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.lead {
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.4;
  font-weight: 400;
  color: var(--c-text);
}
.body { font-size: 17px; line-height: 1.55; color: var(--c-text); }
.small { font-size: 14px; line-height: 1.45; color: var(--c-muted); }
.muted { color: var(--c-muted); }
.accent { color: var(--c-brand); }

/* ============================================
   SECTIONS
   ============================================ */
section { position: relative; }
.section {
  padding-top: 120px;
  padding-bottom: 120px;
}
.section--sm { padding-top: 38px; padding-bottom: 72px; }
.section--soft { background: var(--c-soft); }
.section--ink { background: var(--c-ink); color: #fff; }
.section--ink .muted { color: rgba(255,255,255,0.6); }
.section--ink .eyebrow { color: rgba(255,255,255,0.55); }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--c-rule);
  padding-bottom: 28px;
  gap: 32px;
}
.section--ink .section-head { border-color: rgba(255,255,255,0.1); }
.section-head .idx {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--c-muted);
  text-transform: uppercase;
  white-space: nowrap;
}

/* ============================================
   GRIDS
   ============================================ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.grid-asym { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; }

@media (max-width: 980px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-6 { grid-template-columns: 1fr 1fr 1fr; }
  .grid-asym { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4, .grid-6 { grid-template-columns: 1fr; }
  .section { padding-top: 32px; padding-bottom: 72px; }
  .nav__links a:not(.nav__cta):not(.nav__cart) { display: none; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--c-paper);
  border: 1px solid var(--c-rule);
  border-radius: var(--r-card);
  padding: 28px 28px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color .15s, transform .15s;
}
@media (max-width: 980px) {
    .card {
        padding: 10px;
    }
}
.card:hover { border-color: var(--c-rule-2); }
.card .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--c-brand);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.card h3, .card .h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.card p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--c-muted);
  margin-top: 10px;
}
.section--ink .card {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.08);
}
.section--ink .card p { color: rgba(255,255,255,0.65); }

/* ============================================
   PILL / TAG / CHIP
   ============================================ */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 32px;
  padding: 0 14px;
  border-radius: var(--r-pill);
  background: var(--c-brand-tint);
  color: var(--c-brand-deep);
  font-size: 13px;
  font-weight: 500;
}
.pill.dark { background: rgba(255,255,255,0.08); color: #fff; }
.pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-brand);
}
.tag {
  display: inline-flex;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
  padding: 5px 9px;
  border: 1px solid var(--c-rule);
  border-radius: 4px;
}
.tag.accent { color: var(--c-brand); border-color: var(--c-brand); }

/* ============================================
   BUTTONS
   ============================================ */
 .btn {
  display: inline-flex; align-items: center; gap: 10px;
  height: 52px;
  padding: 0 24px;
  border-radius: 10px;
  background: var(--c-brand);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 0;
  transition: background .15s, transform .1s;
}
.btn:hover { background: var(--c-brand-deep); }
.btn:active { transform: translateY(1px); }
.btn--ink { background: var(--c-ink); }
.btn--ink:hover { background: var(--c-brand); }
.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn--ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.5); }
.btn--outline {
  background: transparent;
  color: var(--c-ink);
  border: 1.5px solid var(--c-ink);
}
.btn--outline:hover { background: var(--c-ink); color: #fff; }
.btn--sm { height: 40px; padding: 0 16px; font-size: 14px; border-radius: 8px; }
.btn .arr {
  display: inline-block;
  width: 14px; height: 14px;
  position: relative;
}
.btn .arr::before, .btn .arr::after {
  content: '';
  position: absolute;
  background: currentColor;
}
.btn .arr::before { top: 50%; left: 0; right: 0; height: 1.5px; transform: translateY(-50%); }
.btn .arr::after { top: 50%; right: 0; width: 8px; height: 8px; border-top: 1.5px solid currentColor; border-right: 1.5px solid currentColor; background: transparent; transform: translate(0, -50%) rotate(45deg); }

/* ============================================
   CHECK / BULLETS
   ============================================ */
.check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--c-brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.check::after {
  content: '';
  width: 9px; height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translate(1px, -1px);
}
.checks { display: flex; flex-direction: column; gap: 14px; padding: 0; margin: 0; list-style: none; }
.checks li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: start;
  font-size: 16px;
  line-height: 1.45;
}

/* ============================================
   STAT
   ============================================ */
.stat {
  display: flex;
  flex-direction: column;
}
.stat__num {
  font-size: clamp(56px, 7vw, 112px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.9;
}
.stat__num sup {
  font-size: 0.3em;
  font-weight: 500;
  vertical-align: top;
  color: var(--c-brand);
  margin-left: 6px;
  letter-spacing: 0;
}
.stat__label {
  font-size: 14px;
  color: var(--c-muted);
  margin-top: 16px;
  max-width: 240px;
}
.section--ink .stat__label { color: rgba(255,255,255,0.55); }

/* ============================================
   FOOTER
   ============================================ */
/* .footer {
  background: var(--c-ink);
  color: #fff;
  padding: 80px 0 32px;
} */
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__col h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
}
.footer__col a, .footer__col p { display: block; padding: 6px 0; font-size: 15px; color: rgba(255,255,255,0.8); }
.footer__col a:hover { color: var(--c-brand); }
.footer__bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
}
@media (max-width: 880px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__bot { flex-direction: column; gap: 12px; align-items: flex-start; }
}

/* ============================================
   FORMS
   ============================================ */
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.field input, .field textarea, .field select {
  font-family: inherit;
  font-size: 16px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--c-rule);
  border-radius: 10px;
  outline: none;
  transition: border-color .15s;
  color: var(--c-text);
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--c-brand);
}
.field textarea { resize: vertical; min-height: 100px; font-family: inherit; }
.field .err {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #DC2626;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.field input.invalid, .field textarea.invalid { border-color: #DC2626; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--c-ink);
  color: #fff;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,14,26,0.5) 0%, rgba(10,14,26,0.3) 30%, rgba(10,14,26,0.92) 100%),
    radial-gradient(80% 60% at 80% 20%, rgba(15,118,234,0.3), transparent 60%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  flex: 1;
  justify-content: flex-end;
}
.hero__stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero__stat {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid rgba(255,255,255,0.08);
  padding-right: 24px;
}
.hero__stat:nth-child(n+2) { padding-left: 24px; }
.hero__stat:last-child { border-right: 0; }
.hero__stat .lab {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.hero__stat .val {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
@media (max-width: 760px) {
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .hero__stat:nth-child(2) { border-right: 0; }
  .hero__stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
}

/* ============================================
   SCHEMA / DIAGRAM ELEMENTS
   ============================================ */
.spec {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 40px;
  padding: 14px 0;
  border-top: 1px solid var(--c-rule);
  font-size: 15px;
  line-height: 1.4;
}
.section--ink .spec { border-color: rgba(255,255,255,0.08); }
.spec dt {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.spec dd { margin: 0; font-weight: 500; }
.spec:first-of-type { border-top: 1px solid var(--c-rule); }

/* Crosshair markers */
.crosshair {
  position: relative;
}
.crosshair::before,
.crosshair::after {
  content: '';
  position: absolute;
  background: var(--c-rule);
}
.crosshair::before {
  top: 0; bottom: 0; left: 0; width: 1px;
}
.crosshair::after {
  left: 0; right: 0; top: 0; height: 1px;
}

/* ============================================
   IMAGE PLACEHOLDER (when real photo fails)
   ============================================ */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(135deg, rgba(15,118,234,0.04) 0 14px, transparent 14px 28px),
    var(--c-soft);
  border: 1px solid var(--c-rule);
  overflow: hidden;
}
.ph__label {
  position: absolute;
  bottom: 16px; left: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted);
  background: rgba(255,255,255,0.9);
  padding: 4px 8px;
  border-radius: 3px;
  border: 1px solid var(--c-rule);
}

/* image with frame */
.img-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-card);
  background: var(--c-soft);
  border: 1px solid var(--c-rule);
}
.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-frame .tag-bl {
  position: absolute;
  left: 14px; bottom: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(10,14,26,0.85);
  color: #fff;
  padding: 5px 9px;
  border-radius: 4px;
  backdrop-filter: blur(8px);
}
.img-frame .tag-tr {
  position: absolute;
  right: 14px; top: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.9);
  color: var(--c-ink);
  padding: 5px 9px;
  border-radius: 4px;
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 8px; right: 8px;
  top: 18px;
  height: 1px;
  background: var(--c-rule);
}
.section--ink .timeline::before { background: rgba(255,255,255,0.12); }
.timeline .step {
  padding-right: 20px;
  padding-top: 0;
  position: relative;
}
.timeline .dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--c-brand);
  margin-bottom: 22px;
  margin-left: 4px;
  position: relative;
  z-index: 2;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--c-brand);
}
.section--ink .timeline .dot { border-color: var(--c-ink); }
.timeline .n {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--c-brand);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.timeline h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 8px 0 8px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.timeline p {
  font-size: 13px;
  color: var(--c-muted);
  line-height: 1.45;
}
.section--ink .timeline p { color: rgba(255,255,255,0.6); }
@media (max-width: 980px) {
  .timeline { grid-template-columns: 1fr 1fr; gap: 32px 0; }
  .timeline::before { display: none; }
}

/* ============================================
   FAQ
   ============================================ */
.faq-row {
  display: grid;
  grid-template-columns: 40px 1fr 24px;
  gap: 28px;
  padding: 24px 0;
  border-top: 1px solid var(--c-rule);
  cursor: pointer;
  align-items: start;
}
.faq-row:last-of-type { border-bottom: 1px solid var(--c-rule); }
.faq-row .qn {
  font-family: 'JetBrains Mono', monospace;
  color: var(--c-brand);
  font-size: 13px;
  letter-spacing: 0.08em;
  padding-top: 4px;
}
.faq-row .q {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.faq-row .a {
  font-size: 16px;
  line-height: 1.5;
  color: var(--c-muted);
  margin-top: 12px;
  display: none;
  grid-column: 2 / 3;
}
.faq-row.open .a { display: block; }
.faq-row .toggle {
  width: 24px; height: 24px;
  position: relative;
  margin-top: 4px;
}
.faq-row .toggle::before,
.faq-row .toggle::after {
  content: '';
  position: absolute;
  background: var(--c-ink);
}
.faq-row .toggle::before {
  left: 4px; right: 4px;
  top: 50%;
  height: 1.5px;
  transform: translateY(-50%);
}
.faq-row .toggle::after {
  top: 4px; bottom: 4px;
  left: 50%;
  width: 1.5px;
  transform: translateX(-50%);
  transition: transform .15s;
}
.faq-row.open .toggle::after { transform: translateX(-50%) rotate(90deg); }

/* ============================================
   SHOP — PRODUCT CARD
   ============================================ */
.product-card {
  background: #fff;
  border: 1px solid var(--c-rule);
  border-radius: var(--r-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .15s;
}
.product-card:hover { border-color: var(--c-rule-2); }
.product-card__img {
/*   aspect-ratio: 4 / 3; */
  background: var(--c-soft);
  position: relative;
  overflow: hidden;
}
.product-card__img img { width: 100%; height: 100%; object-fit: cover; }
.product-card__img .tag {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(255,255,255,0.95);
  z-index: 2;
}
.product-card__body { padding: 18px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.product-card__cat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.product-card__name {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin-top: 6px;
  line-height: 1.25;
  flex: 1;
}
.product-card__specs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.product-card__specs span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--c-muted);
}
.product-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--c-rule);
}
.product-card__price {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.product-card__add {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--c-ink);
  color: #fff;
  border: 0;
  font-size: 20px;
  font-weight: 400;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.product-card__add:hover { background: var(--c-brand); }

/* ============================================
   SHOP — FILTER SIDEBAR
   ============================================ */
.shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
}
@media (max-width: 980px) {
  .shop-layout { grid-template-columns: 1fr; gap: 2px;}
}
.filter h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 14px;
}
.filter__group { padding: 18px 0; border-top: 1px solid var(--c-rule); }
.filter__group:first-of-type { border-top: 0; padding-top: 0; }
.filter__opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 16px;
  cursor: pointer;
  color: var(--c-text);
  transition: color .12s;
}
.filter__opt--check{
     padding: 0;
    margin: 0;
}
.filter__opt:hover { color: var(--c-brand); }
.filter__opt.active { color: var(--c-brand); font-weight: 600; }
.filter__opt .cnt {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--c-muted);
}

/* ============================================
   CTA strip
   ============================================ */
.cta-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.cta-strip > div {
  padding: 24px 0;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.cta-strip > div:not(:first-child) { padding-left: 28px; }
.cta-strip > div:last-child { border-right: 0; }
.cta-strip .l {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}
.cta-strip .v {
  font-size: 22px;
  font-weight: 500;
  margin-top: 8px;
  line-height: 1.2;
}
@media (max-width: 760px) {
  .cta-strip { grid-template-columns: 1fr; }
  .cta-strip > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.1); padding-left: 0 !important; }
}

/* ============================================
   FLOATING TWEAK PANEL
   ============================================ */
.tweaks {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  background: rgba(10,14,26,0.96);
  color: #fff;
  border-radius: 14px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.08);
}
.tweaks.on { display: flex; }
.tweaks h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0 0 6px;
}
.tweaks__swatches { display: flex; gap: 8px; }
.tweaks__swatch {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
}
.tweaks__swatch.on { border-color: #fff; }

/* ============================================
   BREADCRUMB
   ============================================ */
.crumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.crumb a { color: var(--c-muted); transition: color .12s; }
.crumb a:hover { color: var(--c-brand); }
.crumb .sep { opacity: 0.4; }
.crumb .cur { color: var(--c-ink); }

/* ============================================
   UTILITY
   ============================================ */
.bg-soft { background: var(--c-soft); }
.bg-ink { background: var(--c-ink); color: #fff; }
.mt-8 { margin-top: 8px; } .mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; } .mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; } .mt-56 { margin-top: 56px; }
.mt-72 { margin-top: 72px; }
.mb-12 { margin-bottom: 12px; }

.scroll-mask {
  mask-image: linear-gradient(90deg, transparent 0, #000 20px, #000 calc(100% - 20px), transparent 100%);
}

.product-tab-link {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 14px 20px;
    color: var(--c-muted);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    display: inline-block;
}
.product-tab-link {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 14px 20px;
    color: var(--c-muted);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    display: inline-block;
}
.product-tab-link.active,
.product-tab-link:hover { color: var(--c-text); border-bottom-color: var(--c-ink); }
.specs-dl { display: grid; grid-template-columns: 1fr 1fr; max-width: 900px; }
@media (max-width: 768px) { 
    .product-tab-link {
        padding: 14px 6px;
    }
    .specs-dl { grid-template-columns: 1fr; } }
    
.subcategory-link span {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    color:white;
}
.category-list-parents .card,
.subcategories .card {
    background: var(--c-rule);
    padding: 0 0 12px;
}
.product_page .dropdown .dropdown-menu {
    z-index: 1030;
}