.npe-shop {
  --npe-black: #080808;
  --npe-ink: #151515;
  --npe-muted: #666;
  --npe-line: #e7e7e7;
  --npe-lime: #b7ff2a;
  --npe-soft: #f7f8f3;
  color: var(--npe-ink);
  font-family: Inter, Manrope, Arial, sans-serif;
}

.npe-hero {
  background: var(--npe-black);
  color: #fff;
  padding: 48px;
}

.npe-hero h1 {
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
  max-width: 920px;
  margin: 8px 0 16px;
}

.npe-hero p {
  max-width: 760px;
}

.npe-eyebrow {
  color: var(--npe-lime);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.npe-layout {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 32px;
  padding: 32px;
  background: #fff;
}

.npe-category h3 {
  font-size: 14px;
  margin: 24px 0 10px;
}

.npe-product-grid {
  display: grid;
  gap: 10px;
}

.npe-product-card {
  align-items: center;
  background: #fff;
  border: 1px solid var(--npe-line);
  border-radius: 8px;
  cursor: pointer;
  display: grid;
  gap: 12px;
  grid-template-columns: 54px 1fr;
  padding: 10px;
  text-align: left;
}

.npe-product-card.is-active {
  border-color: var(--npe-black);
  box-shadow: inset 4px 0 0 var(--npe-lime);
}

.npe-product-card img {
  aspect-ratio: 1;
  background: var(--npe-soft);
  border-radius: 6px;
  object-fit: cover;
  width: 54px;
}

.npe-calculator,
.npe-quote {
  border: 1px solid var(--npe-line);
  border-radius: 8px;
  padding: 24px;
}

.npe-calculator-head {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: 120px 1fr;
  margin-bottom: 24px;
}

.npe-calculator-head img {
  background: var(--npe-soft);
  border-radius: 8px;
  width: 120px;
}

.npe-calculator h2,
.npe-quote h2 {
  margin: 0;
}

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

.npe-fields label {
  color: var(--npe-muted);
  display: grid;
  font-size: 13px;
  gap: 6px;
}

.npe-fields input,
.npe-fields select {
  border: 1px solid var(--npe-line);
  border-radius: 6px;
  min-height: 44px;
  padding: 8px 10px;
  width: 100%;
}

.npe-check {
  align-items: center;
  display: flex;
  gap: 8px;
  margin: 18px 0;
}

.npe-primary {
  background: var(--npe-black);
  border: 0;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  min-height: 48px;
  padding: 0 24px;
}

.npe-quote {
  background: var(--npe-soft);
  margin-top: 24px;
}

.npe-quote dl {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
}

.npe-quote dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

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

.npe-quote dd {
  font-weight: 700;
  margin: 0;
  text-align: right;
}

@media (max-width: 860px) {
  .npe-hero,
  .npe-layout {
    padding: 24px;
  }

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

  .npe-fields {
    grid-template-columns: 1fr;
  }

  .npe-calculator-head {
    grid-template-columns: 1fr;
  }
}
