/* ==========================================================================
   M חשמל — Design System v1.1 — Component foundation (BEM, prefix np-)
   Mobile-first. Uses --np-* tokens only. Logical properties for RTL.
   ========================================================================== */

/* ---------- Base / a11y ---------- */
:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: var(--np-focus-ring);
  outline-offset: 2px;
  border-radius: var(--np-radius-sm);
}
.np-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;
}
.np-num { font-variant-numeric: tabular-nums; }
.np-ltr { direction: ltr; unicode-bidi: isolate; }

/* ---------- Containers ---------- */
.np-container,
.np-container--wide,
.np-container--narrow {
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--np-gutter);
  box-sizing: border-box;
}
.np-container         { max-width: calc(var(--np-container) + 2 * var(--np-gutter)); }
.np-container--wide   { max-width: calc(var(--np-container-wide) + 2 * var(--np-gutter)); }   /* product archive / grid only */
.np-container--narrow { max-width: calc(var(--np-container-narrow) + 2 * var(--np-gutter)); }

/* ---------- Typography utilities (np-t-*) ---------- */
.np-t-h1, .np-t-h2, .np-t-h3, .np-t-h4 { color: var(--np-color-neutral-900); margin: 0; letter-spacing: 0; }
.np-t-h1 { font-size: var(--np-font-h1-size); font-weight: var(--np-font-h1-weight); line-height: var(--np-font-h1-lh); }
.np-t-h2 { font-size: var(--np-font-h2-size); font-weight: var(--np-font-h2-weight); line-height: var(--np-font-h2-lh); }
.np-t-h3 { font-size: var(--np-font-h3-size); font-weight: var(--np-font-h3-weight); line-height: var(--np-font-h3-lh); }
.np-t-h4 { font-size: var(--np-font-h4-size); font-weight: var(--np-font-h4-weight); line-height: var(--np-font-h4-lh); }
.np-t-body-large { font-size: var(--np-font-body-large-size); font-weight: var(--np-font-body-large-weight); line-height: var(--np-font-body-large-lh); }
.np-t-body       { font-size: var(--np-font-body-size); font-weight: var(--np-font-body-weight); line-height: var(--np-font-body-lh); }
.np-t-body-small { font-size: var(--np-font-body-small-size); font-weight: var(--np-font-body-small-weight); line-height: var(--np-font-body-small-lh); }
.np-t-caption    { font-size: var(--np-font-caption-size); font-weight: var(--np-font-caption-weight); line-height: var(--np-font-caption-lh); }
.np-t-label      { font-size: var(--np-font-label-size); font-weight: var(--np-font-label-weight); line-height: var(--np-font-label-lh); }
.np-t-secondary  { color: var(--np-color-text-secondary); }
.np-t-muted      { color: var(--np-color-text-muted); }

/* ---------- Icons (inline SVG, Lucide subset) ---------- */
.np-icon { display: inline-block; flex: none; vertical-align: middle; width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.np-icon--16 { width: 16px; height: 16px; }
.np-icon--20 { width: 20px; height: 20px; }
.np-icon--24 { width: 24px; height: 24px; }
.np-icon--32 { width: 32px; height: 32px; }
[dir="rtl"] .np-icon--dir { transform: scaleX(-1); }

/* ---------- Buttons ---------- */
/* Guard: Elementor Theme Style targets `.elementor-kit-N button` (0,1,1); `button.np-btn` matches it and loads later. */
.np-btn {
  --_bg: var(--np-color-brand-primary);
  --_bg-hover: var(--np-color-brand-primary-hover);
  --_fg: var(--np-color-text-inverse);
  --_border: transparent;
}
.np-btn, button.np-btn, a.np-btn, input.np-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--np-space-2);
  min-height: var(--np-touch); padding-block: 0; padding-inline: 20px;
  font-family: var(--np-font-family); font-size: var(--np-font-button-size); font-weight: var(--np-font-button-weight); line-height: var(--np-font-button-lh);
  color: var(--_fg); background: var(--_bg); border: 1px solid var(--_border); border-radius: var(--np-radius-md);
  text-decoration: none; cursor: pointer; user-select: none; white-space: nowrap; position: relative;
  transition: background-color var(--np-motion-fast) var(--np-ease), border-color var(--np-motion-fast) var(--np-ease), color var(--np-motion-fast) var(--np-ease), box-shadow var(--np-motion-fast) var(--np-ease);
  -webkit-appearance: none; appearance: none;
}
.np-btn:focus, button.np-btn:focus, a.np-btn:focus { background: var(--_bg); color: var(--_fg); }
.np-btn:hover, button.np-btn:hover, a.np-btn:hover { background: var(--_bg-hover); color: var(--_fg); text-decoration: none; }
.np-btn:active, button.np-btn:active { filter: brightness(.95); }
.np-btn:focus-visible, button.np-btn:focus-visible, a.np-btn:focus-visible { outline: var(--np-focus-ring); outline-offset: 2px; }

.np-btn.np-btn--sm { min-height: 36px; padding-inline: 16px; font-size: var(--np-font-body-small-size); }
.np-btn.np-btn--md { min-height: 44px; }
.np-btn.np-btn--lg { min-height: 52px; padding-inline: 28px; }
.np-btn.np-btn--block { display: flex; width: 100%; }

.np-btn--primary   { /* defaults above */ }
.np-btn.np-btn--secondary { --_bg: var(--np-color-brand-secondary); --_bg-hover: var(--np-color-brand-secondary-hover); }
.np-btn.np-btn--outline   { --_bg: transparent; --_bg-hover: var(--np-color-brand-primary-soft); --_fg: var(--np-color-brand-primary); --_border: var(--np-color-brand-primary); }
.np-btn.np-btn--text { --_bg: transparent; --_bg-hover: transparent; --_fg: var(--np-color-brand-primary); padding-inline: var(--np-space-2); }
.np-btn--text:hover { text-decoration: underline; }
.np-btn.np-btn--icon {
  --_bg: var(--np-color-bg-surface); --_bg-hover: var(--np-color-bg-subtle); --_fg: var(--np-color-neutral-800); --_border: var(--np-color-border);
  width: var(--np-touch); min-height: var(--np-touch); padding: 0; border-radius: var(--np-radius-pill);
}
.np-btn--icon.is-active { --_fg: var(--np-color-brand-primary); --_border: var(--np-color-brand-primary); --_bg: var(--np-color-brand-primary-soft); }

/* States */
.np-btn:disabled, button.np-btn:disabled, .np-btn[aria-disabled="true"], .np-btn.is-disabled {
  --_bg: var(--np-color-neutral-200); --_bg-hover: var(--np-color-neutral-200); --_fg: var(--np-color-neutral-400); --_border: transparent;
  cursor: not-allowed; pointer-events: none;
}
.np-btn--outline:disabled, .np-btn--outline[aria-disabled="true"] { --_bg: transparent; --_border: var(--np-color-neutral-300); }
.np-btn.is-loading, .np-btn[aria-busy="true"], button.np-btn.is-loading { color: transparent !important; pointer-events: none; }
.np-btn.is-loading::after, .np-btn[aria-busy="true"]::after {
  content: ""; position: absolute; inset: 0; margin: auto; width: 16px; height: 16px;
  border: 2px solid var(--_fg); border-inline-end-color: transparent; border-radius: 50%;
  animation: np-spin .8s linear infinite;
}
.np-btn--outline.is-loading::after, .np-btn--text.is-loading::after, .np-btn--icon.is-loading::after { border-color: var(--np-color-brand-primary); border-inline-end-color: transparent; }
.np-btn.is-success { --_bg: var(--np-color-success); --_bg-hover: var(--np-color-success); --_fg: var(--np-color-text-inverse); }
@keyframes np-spin { to { transform: rotate(360deg); } }

@media (min-width: 1025px) {
  .np-btn.np-btn--icon { width: 40px; min-height: 40px; }
  .np-btn.np-btn--icon.np-btn--lg { width: var(--np-touch); min-height: var(--np-touch); }
}

/* ---------- Forms ---------- */
.np-field { display: flex; flex-direction: column; gap: var(--np-space-2); }
.np-field__label { font-size: var(--np-font-label-size); font-weight: var(--np-font-label-weight); line-height: var(--np-font-label-lh); color: var(--np-color-text); }
.np-field__required { color: var(--np-color-error); margin-inline-start: 2px; }
.np-field__hint  { font-size: var(--np-font-caption-size); line-height: var(--np-font-caption-lh); color: var(--np-color-text-muted); }
.np-field__error { display: inline-flex; align-items: center; gap: var(--np-space-1); font-size: var(--np-font-caption-size); line-height: var(--np-font-caption-lh); color: var(--np-color-error); }

.np-field__control { position: relative; display: flex; align-items: stretch; }
/* Guard: Elementor Theme Style targets `.elementor-kit-N input:not([type="button"]):not([type="submit"])` (0,3,1) and `textarea` (0,1,1);
   the selectors below match that specificity and load later, so np-* controls win without !important. */
.np-input, .np-select, .np-textarea,
input.np-input:not([type="button"]):not([type="submit"]), select.np-select, textarea.np-textarea {
  width: 100%; min-height: var(--np-field-height); padding-block: 0; padding-inline: var(--np-space-4);
  font-family: var(--np-font-family); font-size: var(--np-font-body-size); line-height: var(--np-font-body-lh); color: var(--np-color-text);
  background: var(--np-color-bg-surface); border: 1px solid var(--np-color-border); border-radius: var(--np-radius-md);
  transition: border-color var(--np-motion-fast) var(--np-ease), box-shadow var(--np-motion-fast) var(--np-ease);
  -webkit-appearance: none; appearance: none; box-sizing: border-box;
}
.np-textarea, textarea.np-textarea { min-height: 120px; padding-block: var(--np-space-3); resize: vertical; }
.np-input::placeholder, .np-textarea::placeholder { color: var(--np-color-neutral-400); opacity: 1; }
input.np-input:not([type="button"]):not([type="submit"]):hover, select.np-select:hover, textarea.np-textarea:hover { border-color: var(--np-color-border-strong); }
input.np-input:not([type="button"]):not([type="submit"]):focus, select.np-select:focus, textarea.np-textarea:focus { border-color: var(--np-color-brand-primary); outline: var(--np-focus-ring); outline-offset: 2px; }
input.np-input:not([type="button"]):not([type="submit"]):disabled, select.np-select:disabled, textarea.np-textarea:disabled { background: var(--np-color-bg-subtle); color: var(--np-color-neutral-400); cursor: not-allowed; }
.np-field--error input.np-input:not([type="button"]):not([type="submit"]), .np-field--error select.np-select, .np-field--error textarea.np-textarea, input.np-input[aria-invalid="true"]:not([type="button"]):not([type="submit"]) { border-color: var(--np-color-error); }
.np-field--success input.np-input:not([type="button"]):not([type="submit"]), .np-field--success select.np-select { border-color: var(--np-color-success); }
input.np-input--ltr:not([type="button"]):not([type="submit"]), input.np-input[type="tel"], input.np-input[type="number"], input.np-input[type="email"] { direction: ltr; text-align: end; }

/* Select chevron (inline SVG, currentColor via data URI in neutral-600) */
.np-select, select.np-select {
  padding-inline-end: calc(var(--np-space-4) + 24px);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9 6 6 6-6'/></svg>");
  background-repeat: no-repeat; background-position: left var(--np-space-3) center; background-size: 20px;
}
[dir="ltr"] .np-select { background-position: right var(--np-space-3) center; }

/* Prefix / suffix addons */
.np-field__addon {
  display: inline-flex; align-items: center; padding-inline: var(--np-space-3); flex: none;
  font-size: var(--np-font-body-small-size); color: var(--np-color-text-secondary);
  background: var(--np-color-bg-subtle); border: 1px solid var(--np-color-border);
}
.np-field__addon:first-child { border-start-start-radius: var(--np-radius-md); border-end-start-radius: var(--np-radius-md); border-inline-end: 0; }
.np-field__addon:last-child  { border-start-end-radius: var(--np-radius-md); border-end-end-radius: var(--np-radius-md); border-inline-start: 0; }
.np-field__addon:first-child + input.np-input:not([type="button"]):not([type="submit"]) { border-start-start-radius: 0; border-end-start-radius: 0; }
input.np-input:not([type="button"]):not([type="submit"]):has(+ .np-field__addon:last-child) { border-start-end-radius: 0; border-end-end-radius: 0; }

/* Icon inside field (search icon at inline-end, password toggle) */
.np-field__icon, .np-field__toggle {
  position: absolute; inset-block: 0; inset-inline-end: var(--np-space-3); display: inline-flex; align-items: center;
  color: var(--np-color-text-muted); pointer-events: none;
}
button.np-field__toggle, button.np-field__clear, .np-field__toggle, .np-field__clear { pointer-events: auto; background: none; border: 0; border-radius: var(--np-radius-sm); padding: 0 var(--np-space-1); cursor: pointer; min-width: 32px; justify-content: center; color: var(--np-color-text-muted); }
button.np-field__toggle:hover, button.np-field__clear:hover, button.np-field__toggle:focus, button.np-field__clear:focus { background: none; color: var(--np-color-text); }
.np-field--search input.np-input:not([type="button"]):not([type="submit"]), .np-field--password input.np-input:not([type="button"]):not([type="submit"]), .np-field--icon input.np-input:not([type="button"]):not([type="submit"]) { padding-inline-end: calc(var(--np-space-4) + 32px); }
.np-field__clear { position: absolute; inset-block: 0; inset-inline-end: calc(var(--np-space-3) + 32px); display: inline-flex; align-items: center; color: var(--np-color-text-muted); }
.np-field--search .np-input:placeholder-shown ~ .np-field__clear { display: none; }

/* Checkbox / radio */
.np-check { display: inline-flex; align-items: center; gap: var(--np-space-2); min-height: var(--np-touch); cursor: pointer; font-size: var(--np-font-body-size); color: var(--np-color-text); }
.np-check__input, input.np-check__input:not([type="button"]):not([type="submit"]) {
  -webkit-appearance: none; appearance: none; flex: none; width: 20px; height: 20px; min-height: 0; margin: 0; padding: 0;
  border: 1px solid var(--np-color-border-strong); border-radius: var(--np-radius-sm); background: var(--np-color-bg-surface);
  display: grid; place-content: center; cursor: pointer;
  transition: background-color var(--np-motion-fast) var(--np-ease), border-color var(--np-motion-fast) var(--np-ease);
}
input.np-check__input[type="radio"]:not([type="button"]):not([type="submit"]) { border-radius: var(--np-radius-pill); }
input.np-check__input:not([type="button"]):not([type="submit"]):hover { border-color: var(--np-color-brand-primary); }
input.np-check__input:not([type="button"]):not([type="submit"]):focus { outline: var(--np-focus-ring); outline-offset: 2px; }
input.np-check__input:not([type="button"]):not([type="submit"]):checked { background: var(--np-color-brand-primary); border-color: var(--np-color-brand-primary); }
.np-check__input[type="checkbox"]:checked::before {
  content: ""; width: 12px; height: 12px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6 9 17l-5-5'/></svg>") center/contain no-repeat;
}
.np-check__input[type="radio"]:checked::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--np-color-text-inverse); }
input.np-check__input:not([type="button"]):not([type="submit"]):disabled { background: var(--np-color-bg-subtle); border-color: var(--np-color-border); cursor: not-allowed; }
.np-check__input:disabled + .np-check__label { color: var(--np-color-neutral-400); }

/* Quantity */
.np-qty { display: inline-flex; align-items: stretch; height: var(--np-field-height); border: 1px solid var(--np-color-border); border-radius: var(--np-radius-md); overflow: hidden; background: var(--np-color-bg-surface); }
.np-qty__btn, button.np-qty__btn { width: var(--np-touch); padding: 0; border-radius: 0; display: inline-flex; align-items: center; justify-content: center; background: transparent; border: 0; color: var(--np-color-text); cursor: pointer; }
button.np-qty__btn:hover, button.np-qty__btn:focus { background: var(--np-color-bg-subtle); color: var(--np-color-text); }
button.np-qty__btn:focus-visible { outline: var(--np-focus-ring); outline-offset: -2px; }
.np-qty__input, input.np-qty__input:not([type="button"]):not([type="submit"]) { width: 56px; min-height: 0; height: 100%; padding: 0; border-radius: 0; text-align: center; border: 0; border-inline: 1px solid var(--np-color-border); background: transparent; font: inherit; font-weight: 600; color: var(--np-color-text); direction: ltr; -moz-appearance: textfield; }
input.np-qty__input:not([type="button"]):not([type="submit"]):focus { outline: var(--np-focus-ring); outline-offset: -2px; border-color: var(--np-color-border); }
.np-qty__input::-webkit-outer-spin-button, .np-qty__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* ---------- Cards ---------- */
.np-card {
  display: flex; flex-direction: column; background: var(--np-color-bg-surface);
  border: 1px solid var(--np-color-border); border-radius: var(--np-radius-lg); overflow: hidden; position: relative;
  transition: border-color var(--np-motion-fast) var(--np-ease), box-shadow var(--np-motion-fast) var(--np-ease);
}
.np-card__body { padding: var(--np-space-4); display: flex; flex-direction: column; gap: var(--np-space-2); }
.np-card__actions { display: flex; gap: var(--np-space-2); margin-top: auto; }
.np-card:focus-within { outline: var(--np-focus-ring); outline-offset: 2px; }
.np-card--flat { border-color: transparent; background: var(--np-color-bg-subtle); }
@media (hover: hover) and (min-width: 1025px) {
  .np-card:hover { border-color: var(--np-color-border-strong); box-shadow: var(--np-shadow-sm); }
}

/* Media (product image container — padding comes from here, not from the asset) */
.np-media { position: relative; aspect-ratio: 1 / 1; background: var(--np-color-neutral-0); padding: var(--np-space-3); box-sizing: border-box; overflow: hidden; }
.np-media--4x3 { aspect-ratio: 4 / 3; }
.np-media--3x2 { aspect-ratio: 3 / 2; }
.np-media > img { display: block; width: 100%; height: 100%; object-fit: contain; }
.np-media--placeholder { background: var(--np-color-bg-subtle); }
.np-media__badges { position: absolute; top: var(--np-space-2); inset-inline-start: var(--np-space-2); display: flex; flex-direction: column; gap: var(--np-space-1); z-index: var(--np-z-raised); }
.np-media__actions { position: absolute; top: var(--np-space-2); inset-inline-end: var(--np-space-2); display: flex; flex-direction: column; gap: var(--np-space-1); z-index: var(--np-z-raised); }

/* ---------- Badges ---------- */
.np-badge {
  display: inline-flex; align-items: center; gap: var(--np-space-1); height: 24px; padding-inline: var(--np-space-2);
  font-size: 13px; font-weight: 600; line-height: 1; white-space: nowrap;
  border-radius: var(--np-radius-pill); background: var(--np-color-bg-subtle); color: var(--np-color-text-secondary);
}
.np-badge--sm { height: 20px; font-size: var(--np-font-caption-size); }
.np-badge--square { border-radius: var(--np-radius-sm); }
.np-badge--neutral { background: var(--np-color-bg-subtle); color: var(--np-color-text-secondary); }
.np-badge--sale    { background: var(--np-color-sale); color: var(--np-color-text-inverse); }
.np-badge--accent  { background: var(--np-color-accent); color: var(--np-color-text-inverse); }
.np-badge--success { background: var(--np-color-success-soft); color: var(--np-color-success); }
.np-badge--info    { background: var(--np-color-info-soft); color: var(--np-color-info); }
.np-badge--warning { background: var(--np-color-warning-soft); color: var(--np-color-warning); }

/* ---------- Status (color + icon + text) ---------- */
.np-status { display: inline-flex; align-items: center; gap: var(--np-space-1); font-size: var(--np-font-body-small-size); font-weight: 600; line-height: var(--np-font-body-small-lh); }
.np-status--success { color: var(--np-color-success); }
.np-status--warning { color: var(--np-color-warning); }
.np-status--error   { color: var(--np-color-error); }
.np-status--info    { color: var(--np-color-info); }
.np-status--muted   { color: var(--np-color-text-muted); }

.np-alert { display: flex; gap: var(--np-space-3); align-items: flex-start; padding: var(--np-space-3) var(--np-space-4); border-radius: var(--np-radius-md); border: 1px solid transparent; font-size: var(--np-font-body-small-size); line-height: var(--np-font-body-small-lh); }
.np-alert--info    { background: var(--np-color-info-soft);    color: var(--np-color-info);    border-color: color-mix(in srgb, var(--np-color-info) 20%, transparent); }
.np-alert--success { background: var(--np-color-success-soft); color: var(--np-color-success); border-color: color-mix(in srgb, var(--np-color-success) 20%, transparent); }
.np-alert--warning { background: var(--np-color-warning-soft); color: var(--np-color-warning); border-color: color-mix(in srgb, var(--np-color-warning) 20%, transparent); }
.np-alert--error   { background: var(--np-color-error-soft);   color: var(--np-color-error);   border-color: color-mix(in srgb, var(--np-color-error) 20%, transparent); }

/* ---------- Product UI foundations (classes only — card built in a later phase) ---------- */
.np-product__brand { font-size: var(--np-font-body-small-size); font-weight: 600; line-height: var(--np-font-body-small-lh); color: var(--np-color-text-secondary); }
.np-product__title { font-size: var(--np-font-body-size); font-weight: 600; line-height: 1.4; color: var(--np-color-neutral-900); margin: 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.np-product__title a { color: inherit; text-decoration: none; }
.np-product__title a:hover { color: var(--np-color-brand-primary); }
.np-product__title--page { font-size: var(--np-font-h4-size); font-weight: var(--np-font-h4-weight); line-height: var(--np-font-h4-lh); -webkit-line-clamp: unset; display: block; }
.np-product__model { font-size: var(--np-font-caption-size); line-height: var(--np-font-caption-lh); color: var(--np-color-text-muted); }
.np-product__features { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--np-space-1); }
.np-product__feature { display: flex; align-items: center; gap: var(--np-space-2); font-size: var(--np-font-body-small-size); line-height: var(--np-font-body-small-lh); color: var(--np-color-text-secondary); font-variant-numeric: tabular-nums; }
.np-product__feature .np-icon { color: var(--np-color-text-muted); }

.np-price { display: flex; flex-wrap: wrap; align-items: baseline; gap: var(--np-space-2); font-variant-numeric: tabular-nums; }
.np-price__current { font-size: var(--np-font-price-regular-size); font-weight: var(--np-font-price-regular-weight); line-height: var(--np-font-price-regular-lh); color: var(--np-color-price); }
.np-price--large .np-price__current { font-size: var(--np-font-price-large-size); font-weight: var(--np-font-price-large-weight); line-height: var(--np-font-price-large-lh); }
.np-price__old { font-size: var(--np-font-body-small-size); color: var(--np-color-old-price); text-decoration: line-through; }
.np-price__installments { flex-basis: 100%; font-size: var(--np-font-caption-size); line-height: var(--np-font-caption-lh); color: var(--np-color-text-muted); }
.np-stock { display: inline-flex; align-items: center; gap: var(--np-space-1); font-size: var(--np-font-body-small-size); font-weight: 600; line-height: var(--np-font-body-small-lh); }

/* ---------- Layout helpers ---------- */
.np-grid { display: grid; gap: var(--np-space-4); grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 768px)  { .np-grid { gap: var(--np-space-5); grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1367px) { .np-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.np-stack   { display: flex; flex-direction: column; gap: var(--np-space-4); }
.np-cluster { display: flex; flex-wrap: wrap; gap: var(--np-space-2); align-items: center; }
.np-section { padding-block: var(--np-space-7); }
@media (min-width: 1025px) { .np-section { padding-block: var(--np-space-8); } }
.np-divider { border: 0; border-top: 1px solid var(--np-color-border); margin: 0; }
